workrave-1.10.50/0000755000000000000000000000000014221624441013514 5ustar00rootroot00000000000000workrave-1.10.50/configure.ac0000644000175100001710000011466014221624107014720 0ustar00gdm00000000000000dnl Process this file with autoconf to produce a configure script. dnl dnl Copyright (C) 2001 - 2014 Rob Caelers & Raymond Penners dnl m4_define([workrave_major_version], [1]) m4_define([workrave_minor_version], [10]) m4_define([workrave_micro_version], [50]) m4_define([workrave_version_suffix], []) m4_define([workrave_version], workrave_major_version.workrave_minor_version.workrave_micro_version[]m4_ifset([workrave_version_suffix],-[workrave_version_suffix])) m4_define([workrave_resource_version], [workrave_major_version,workrave_minor_version,workrave_micro_version,0]) AC_PREREQ([2.67]) AC_INIT([workrave], [workrave_version], [https://github.com/rcaelers/workrave/issues], [workrave], [http://www.workrave.org]) AC_CANONICAL_HOST AC_CANONICAL_TARGET AC_CONFIG_SRCDIR([backend/include/ICore.hh]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign silent-rules tar-ustar subdir-objects]) dnl AM_SILENT_RULES([yes]) GNOME_SHELL_VERSION=3.26.1 AC_SUBST(GNOME_SHELL_VERSION) if test -n "$WORKRAVE_GIT_VERSION"; then AC_DEFINE_UNQUOTED(GIT_VERSION, "$WORKRAVE_GIT_VERSION", [GIT Version]) fi if test "X$prefix" != "XNONE" ; then pkg_config_prefix="--define-variable=prefix=$prefix" fi dnl dnl Command line options. dnl AC_ARG_ENABLE(app-gtk, [AS_HELP_STRING([--disable-app-gtk], [compile without Gtk support (NOT recommended)])]) AC_ARG_ENABLE(app-text, [AS_HELP_STRING([--enable-app-text], [compile with dummy text GUI support (NOT recommended)])]) AC_ARG_ENABLE(xml, [AS_HELP_STRING([--disable-xml], [compile without XML support])]) AC_ARG_ENABLE(gconf, [AS_HELP_STRING([--enable-gconf], [compile with Gnome gconf2 support])]) AC_ARG_ENABLE(gsettings, [AS_HELP_STRING([--disable-gsettings], [compile without GSettings support])]) AC_ARG_ENABLE(gnome3, [AS_HELP_STRING([--disable-gnome3], [compile without Gnome 3 support])]) AC_ARG_ENABLE(indicator, [AS_HELP_STRING([--enable-indicator], [compile with Unity/Ayatana indicator applet support])]) AC_ARG_ENABLE(xfce, [AS_HELP_STRING([--enable-xfce], [compile with preliminary XFCE applet support])]) AC_ARG_ENABLE(mate, [AS_HELP_STRING([--enable-mate], [compile with preliminary MATE applet support])]) AC_ARG_ENABLE(dbus, [AS_HELP_STRING([--disable-dbus], [compile without DBus support])]) AC_ARG_ENABLE(gstreamer, [AS_HELP_STRING([--disable-gstreamer], [compile without GStreamer audio support])]) AC_ARG_ENABLE(pulse, [AS_HELP_STRING([--disable-pulse], [compile without PulseAudio support])]) AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug], [compile with debugging flags set])]) AC_ARG_ENABLE(distribution, [AS_HELP_STRING([--disable-distribution], [compile without support for distributed operation])]) AC_ARG_ENABLE(experimental, [AS_HELP_STRING([--enable-experimental], [compile with experimental features])]) AC_ARG_ENABLE(exercises, [AS_HELP_STRING([--disable-exercises], [compile without exercises support])]) AC_ARG_ENABLE(tests, [AS_HELP_STRING([--enable-tests], [compile with test code])]) AC_ARG_ENABLE(tracing, [AS_HELP_STRING([--enable-tracing], [compile with method call tracing])], [test "x$enable_tracing" = "xyes" && enable_debug=yes]) AC_ARG_ENABLE(monitors, [AS_HELP_STRING([--enable-monitors=LIST], [comma separated list of activity monitors to use, currently support: record, screensaver, x11events (Unix Only) @<:@default=yes@:>@])]) case x"$target" in xNONE | x) target_or_host="$host" ;; *) target_or_host="$target" ;; esac dnl dnl Checks for programs dnl AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC AM_PROG_CC_C_O AM_PROG_AR AC_PROG_OBJC AC_PROG_OBJCXX AC_PROG_CXX AC_PROG_CPP AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_LIBTOOL AC_CHECK_PROGS(M4, gm4 m4, m4) AC_CHECK_PROGS(WINDRES, ${target_or_host}-windres,false) dnl dnl checks for compiler characteristics dnl AC_LANG([C++]) AC_REQUIRE_CPP AC_C_INLINE AC_C_CONST AC_DEFUN([ADD_COMPILER_FLAG],[ AX_CHECK_COMPILE_FLAG([$1],[ CPPFLAGS="$CPPFLAGS $1" ])]) ADD_COMPILER_FLAG([-Wno-cast-function-type]) AX_CXX_COMPILE_STDCXX_11(ext, mandatory) dnl dnl Headers/Types/Functions dnl AC_HEADER_STDC AC_CHECK_HEADERS([errno.h stdlib.h sys/time.h sys/select.h unistd.h]) AC_CHECK_MEMBER(MOUSEHOOKSTRUCT.hwnd,AC_DEFINE(HAVE_STRUCT_MOUSEHOOKSTRUCT,,[struct MOUSEHOOKSTRUCT]),, [#include ]) AC_CHECK_MEMBER(MOUSEHOOKSTRUCTEX.mouseData,AC_DEFINE(HAVE_STRUCT_MOUSEHOOKSTRUCTEX,,[struct MOUSEHOOKSTRUCTEX]),, [#include ]) have_ishelldispatch=no AC_MSG_CHECKING([IShellDispatch]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ IShellDispatch* pShellDispatch = NULL; ]])],[have_ishelldispatch=yes AC_DEFINE(HAVE_ISHELLDISPATCH, 1, "IShellDispatch") AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)]) AC_CHECK_FUNCS([gettimeofday nanosleep select setlocale realpath]) have_extern_timezone_defined=no AC_MSG_CHECKING([external timezone variable defined in time.h]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ timezone += 1; return 0;]])],[have_extern_timezone_defined=yes AC_DEFINE(HAVE_EXTERN_TIMEZONE_DEFINED, 1, "External timezone") AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)]) have_extern_timezone=no AC_MSG_CHECKING([external timezone variable]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ extern long timezone; timezone += 1; return 0;]])],[have_extern_timezone=yes AC_DEFINE(HAVE_EXTERN_TIMEZONE, 1, "External timezone") AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)]) dnl Update version and date. AC_SUBST(VERSION) ISODATE=`date +%Y-%m-%d` AC_SUBST(ISODATE) RESOURCE_VERSION=workrave_resource_version AC_SUBST(RESOURCE_VERSION) AC_CANONICAL_HOST AC_PREFIX_PROGRAM(workrave) dnl dnl Checking target platform. dnl AC_MSG_CHECKING([for platform]) PLATFORM_OS_WINDOWS=no PLATFORM_OS_MACOS=no platform_os_unix=no platform_variant_x11=no case "$target_or_host" in *-*mingw*|*-*-mingw*|*-*-cygwin*) PLATFORM_OS_WINDOWS=yes platform_os_name="Windows" AC_DEFINE(PLATFORM_OS_WINDOWS,,[Define if compiling for the Win32 platform]) AC_DEFINE(HAVE_LANGUAGE_SELECTION,,[Define if the UI language can be defined in the preferences]) ;; *-*-darwin* | *-*-rhapsody*) PLATFORM_OS_MACOS=yes platform_os_name="OS X" AC_DEFINE(PLATFORM_OS_MACOS,,[Define if compiling for the OS X platform]) ;; *) platform_os_unix=yes platform_os_name="Unix" AC_DEFINE(PLATFORM_OS_UNIX,,[Define if compiling for a Unix platform]) ;; esac AC_MSG_RESULT([$platform_os_name]) AM_CONDITIONAL(PLATFORM_OS_WINDOWS, test "x$PLATFORM_OS_WINDOWS" = "xyes") AM_CONDITIONAL(PLATFORM_OS_MACOS, test "x$PLATFORM_OS_MACOS" = "xyes") AM_CONDITIONAL(PLATFORM_OS_UNIX, test "x$platform_os_unix" = "xyes") AM_CONDITIONAL(HAVE_LANGUAGE_SELECTION, test "x$PLATFORM_OS_WINDOWS" = "xyes") dnl dnl Debug dnl config_debug=no config_tracing=no if test "x$enable_debug" = "xyes" then config_debug=yes CFLAGS="${CFLAGS} -O0 -g -Wall" CXXFLAGS="${CXXFLAGS} -O0 -g -Wall" LDFLAGS="${LDFLAGS} -g" AC_DEFINE([GLIBCXX_FORCE_NEW], , [Define for debugging purposes]) AC_DEFINE([GLIBCPP_FORCE_NEW], , [Define for debugging purposes]) else AC_DEFINE([NDEBUG], , [Define if debugging code should be disabled]) fi if test "x$enable_tracing" = "xyes" then config_tracing=yes AC_DEFINE([TRACING], , [Define to enable method call tracing]) fi dnl dnl Windows specific checks dnl have_dsound=no LIBSTDCPP_LIBS= WIN32CONSOLE= DIRECTSOUNDLIBS= if test "x$PLATFORM_OS_WINDOWS" = "xyes" then LIBSTDCPP_LIBS=-lstdc++ AC_DEFINE([_WIN32_IE], [0x0600], [Windows version]) AC_DEFINE([_WIN32_WINNT], [0x0600], [Windows version]) #if test "x$enable_debug" != "xyes" #then WIN32CONSOLE=-mwindows #else # WIN32CONSOLE=-mconsole #fi enable_gconf=no enable_gnome3=no enable_xml=no enable_indicator=no enable_xfce=no enable_mate=no AC_CHECK_HEADER(dsound.h, [ AC_DEFINE(HAVE_DSOUND, 1, [Define if we have DirectSound]) have_dsound=yes DIRECTSOUNDLIBS="-ldsound -luuid -ldxguid -ldxerr8" ]) AC_CHECK_HEADERS([dxerr.h dxerr8.h], [], [], [[#include ]]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include #include static REFIID foo = __uuidof(IAudioEndpointVolume); ]], [[ IMMDeviceEnumerator *device_enum = NULL; ]])],[ have_mmdeviceapi=yes AC_DEFINE(HAVE_MMDEVICEAPI_H, 1, [Define if we have mm device api]) AC_MSG_RESULT(yes) ],[AC_MSG_RESULT(no)]) fi AC_SUBST(LIBSTDCPP_LIBS) AC_SUBST(WIN32CONSOLE) AC_SUBST(DIRECTSOUNDLIBS) AM_CONDITIONAL(HAVE_DSOUND, test "x$have_dsound" = "xyes") dnl dnl MacOS specific checks dnl PKG_PROG_PKG_CONFIG AC_SUBST(MacOS_CFLAGS) if test "x$PLATFORM_OS_MACOS" = "xyes" then PKG_CHECK_MODULES(IGE, gtk-mac-integration >= 2.0, [AC_DEFINE(HAVE_GTK_MAC_INTEGRATION, 1, [Define if we have gtk-mac-integration 2.0+])], [PKG_CHECK_MODULES(IGE, ige-mac-integration >= 0.6, AC_DEFINE(HAVE_IGE_MAC_INTEGRATION, 1, [Define if we have ige-mac-integration 0.6+]))]) AC_CHECK_LIB(resolv, res_query) AC_CHECK_HEADER(CoreFoundation/CoreFoundation.h, [ AC_CHECK_HEADER(IOKit/IOKitLib.h, [ AC_DEFINE(HAVE_IOKIT, 1, [Define if we have IOKit]) LIBS="$LIBS -framework IOKit -framework CoreFoundation" ])]) config_gnome3=no config_gconf=no LDFLAGS="$LDFLAGS -headerpad_max_install_names" LIBS="$LIBS -framework CoreServices -framework Carbon -framework Cocoa -framework Foundation" MacOS_CFLAGS="" fi AC_SUBST(IGE_LIBS) AC_SUBST(IGE_CFLAGS) dnl dnl Unix specific checks dnl if test "x$platform_os_unix" = "xyes" then AC_PATH_X AC_PATH_XTRA if test x$have_x != xyes ; then AC_MSG_ERROR(X11 required on Unix platform) fi LIBS_save=$LIBS if test -n "$ac_x_libraries" then LIBS="$LIBS -L$x_libraries" fi CPPFLAGS_save="$CPPFLAGS" if test -n "$x_includes" then CPPFLAGS="$CPPFLAGS -I$x_includes" fi have_xrecord=no AC_CHECK_LIB(Xtst, XRecordEnableContext, have_xrecord=yes X_LIBS="$X_LIBS -lXtst" AC_DEFINE(HAVE_XRECORD,,[Define if the RECORD extension is available]), ) if test x$have_xrecord != xyes ; then AC_MSG_ERROR(X RECORD extension headers files required on Unix platform) fi AC_CHECK_LIB(Xext, XScreenSaverRegister, have_xscreensaver=yes X_LIBS="$X_LIBS -lX11 -lXext", [], [-lX11 -lXext -lm]) AC_CHECK_LIB(Xss, XScreenSaverRegister, have_xscreensaver=yes X_LIBS="$X_LIBS -lX11 -lXss", [], [-lX11 -lXext -lm]) if test "x$have_xscreensaver" = "xyes"; then AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include #include ]], [[]])], [], [have_xscreensaver=no]) fi if test "x$have_xscreensaver" = "xyes" ; then AC_DEFINE(HAVE_SCREENSAVER, 1, [Define if XScreenSaver is available.]) fi PKG_CHECK_MODULES(X11SM, sm ice) LIBS=$LIBS_save CPPFLAGS=$CPPFLAGS_save fi dnl dnl Monitors dnl if test "x$platform_os_unix" = "xyes" then if test "x$enable_monitors" = "x"; then enable_monitors="mutter" if test "x$have_xrecord" = "xyes" ; then if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}record" fi if test "x$have_xscreensaver" = "xyes" ; then if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}screensaver" fi if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}x11events" fi loop=${enable_monitors}, while echo $loop | grep \, &> /dev/null do monitor=${loop%%\,*} loop=${loop#*\,} case "$monitor" in record) if test "x$have_xrecord" != "xyes" ; then AC_MSG_ERROR([record activity monitor not supported.]) fi ;; x11events) ;; mutter) ;; screensaver) if test "x$have_xscreensaver" != "xyes" ; then AC_MSG_ERROR([screensaver activity monitor not supported.]) fi ;; *) AC_MSG_ERROR([unknown activity monitor: $monitor]) ;; esac done AC_DEFINE_UNQUOTED(HAVE_MONITORS, "$enable_monitors", "Enabled activity monitors") fi dnl dnl DBus dnl config_dbus=no have_python_jinja2=no if test "x$enable_dbus" != "xno" -a "x$PLATFORM_OS_WINDOWS" != "xyes" -a "x$PLATFORM_OS_MACOS" != "xyes" then PKG_CHECK_MODULES([GIO], [gio-2.0 >= 2.26.0], [ config_dbus=yes ], [ config_dbus=no]) fi if test "x$config_dbus" = "xyes" then # For now, only needed for DBus. AX_BOOST_BASE([1.52],, AC_MSG_ERROR([requires boost library >= 1.52.])) AC_DEFINE(HAVE_DBUS, , [DBus support]) AS_AC_EXPAND(DATADIR, "$datadir") DBUS_SERVICES_DIR="$DATADIR/dbus-1/services" AC_SUBST(DBUS_SERVICES_DIR) AC_DEFINE_UNQUOTED(DBUS_SERVICES_DIR, "$DBUS_SERVICES_DIR", [Where services dir for DBUS is]) AM_PATH_PYTHON([3.0]) AX_PYTHON_MODULE([jinja2], [needed], python3) fi AM_CONDITIONAL(HAVE_DBUS, test x$config_dbus = xyes) AM_CONDITIONAL(HAVE_PYTHON_JINJA2, test x$HAVE_PYMOD_jinja2 = xyes) dnl dnl Gnome dnl config_gnome3=no config_panelapplet4=no config_panelapplet5=no config_libgnome_panel=no if test "x$enable_gnome3" != "xno" -a "x$config_dbus" = "xyes" then PKG_CHECK_MODULES([GNOME3], [libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0], [config_gnome3=yes config_libgnome_panel=yes LIBGNOME_PANEL_MODULES_DIR=`$PKG_CONFIG ${pkg_config_prefix} --variable=modulesdir libgnome-panel` AC_SUBST([LIBGNOME_PANEL_MODULES_DIR], [$LIBGNOME_PANEL_MODULES_DIR]) AC_DEFINE([HAVE_LIBGNOME_PANEL], 1, [Support for GNOME Panel applet])], [ ]) if test "x$config_libgnome_panel" != "xyes" then PKG_CHECK_MODULES(GNOME3, [libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0], [config_gnome3=yes config_panelapplet5=yes AC_DEFINE([HAVE_PANELAPPLET], [1], [Support for Gnome panel applet v4/v5]) AC_DEFINE([HAVE_PANELAPPLET5], [1], [Support for Gnome panel applet v5])], [ ]) if test "x$config_panelapplet5" != "xyes" then PKG_CHECK_MODULES([GNOME3], [libpanelapplet-4.0 gio-2.0 >= 2.26.0], [config_gnome3=yes config_panelapplet4=yes AC_DEFINE(HAVE_PANELAPPLET, 1, [Support for Gnome panel applet v4/v5]), AC_DEFINE(HAVE_PANELAPPLET4, 1, [Support for Gnome panel applet v4])], [if test "x$enable_gnome3" = "xyes"; then AC_MSG_ERROR([Gnome 3 development headers not found.]) fi]) fi fi fi AM_CONDITIONAL(HAVE_PANELAPPLET, test "x$config_panelapplet4" = "xyes" -o "x$config_panelapplet5" = "xyes") AM_CONDITIONAL(HAVE_PANELAPPLET4, test "x$config_panelapplet4" = "xyes") AM_CONDITIONAL(HAVE_PANELAPPLET5, test "x$config_panelapplet5" = "xyes") AM_CONDITIONAL(HAVE_LIBGNOME_PANEL, test "x$config_libgnome_panel" = "xyes") dnl dnl GLIB dnl PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0], [AC_DEFINE(HAVE_GLIB, , [Define if GLib is available])]) config_gsettings=no if test "x$enable_gsettings" != "xno" then if test "x$platform_os_unix" = "xyes"; then GLIB_GSETTINGS config_gsettings=yes AC_DEFINE(HAVE_GSETTINGS, 1, [Have GSettings]) fi fi AM_CONDITIONAL(HAVE_GSETTINGS, test "x$config_gsettings" = "xyes") dnl dnl GTK+ dnl config_gtk=no config_gtk_version=none if test "x$PLATFORM_OS_WINDOWS" != "xyes" then PKG_CHECK_MODULES(GTK, glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0, [config_gtk=yes config_gtk_version=3 AC_DEFINE(HAVE_GTK3, 1, Support for GTK3) AC_DEFINE([HAVE_APP_GTK], , [Define if GTK+ is available])], [ ] ) fi if test x$config_gtk = xno then PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10, [config_gtk=yes config_gtk_version=2 AC_DEFINE([HAVE_APP_GTK], , [Define if GTK+ is available])]) fi AM_CONDITIONAL(HAVE_APP_GTKMM, test $config_gtk = yes) AM_CONDITIONAL(HAVE_GTK3, test "x$config_gtk_version" = "x3") dnl dnl Introspection dnl if test "x$PLATFORM_OS_WINDOWS" != "xyes" then GOBJECT_INTROSPECTION_CHECK([0.6.7]) else AM_CONDITIONAL(HAVE_INTROSPECTION, false) fi dnl dnl Indicator applet dnl config_indicator=no config_indicator_package=none INDICATOR_REQUIRED_VERSION=0.3.19 DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 DBUSMENUGTK_REQUIRED_VERSION=0.3.95 if test "x$enable_indicator" != "xno" -a "x$config_gtk_version" = "x3" then if test "x$found_introspection" != "xyes" then AC_MSG_ERROR([Introspection development headers not found.]) else PKG_CHECK_MODULES(INDICATOR, ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION, [ config_indicator=yes config_indicator_package=ayatana-indicator3-0.4 AC_DEFINE(HAVE_INDICATOR, 1, [Support for indicator applet]) AC_DEFINE(HAVE_INDICATOR_AYATANA, 1, [Support for ayatana indicator applet]) ], [ PKG_CHECK_MODULES(INDICATOR, indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION, [ config_indicator=yes config_indicator_package=indicator3-0.4 AC_DEFINE(HAVE_INDICATOR, 1, [Support for indicator applet])], [if test "x$enable_indicator" = "xyes"; then AC_MSG_ERROR([Indicator development headers not found.]) fi]) ]) if test "x$config_indicator" != "xno" then PKG_CHECK_EXISTS(dbusmenu-gtk3-0.4 >= 0.5.90, [ AC_DEFINE(HAVE_DBUSMENU_NEW_INCLUDES, 1, [DBusmenu header in new location])], [ true ] ) fi fi fi with_localinstall="no" AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall], [install all of the files localy instead of system directories (for distcheck)]), with_localinstall=$enableval, with_localinstall=no) AS_IF([test "x$with_localinstall" = "xyes" -a "x$config_indicator_package" != "xnone"], INDICATORDIR="${libdir}/indicators3/7" INDICATORICONSDIR="${datadir}/libindicate/icons" , INDICATORDIR=`$PKG_CONFIG --variable=indicatordir $config_indicator_package | sed -e 's%/$%%'` INDICATORICONSDIR=`$PKG_CONFIG --variable=iconsdir $config_indicator_package` ) AM_CONDITIONAL(LOCALINSTALL, test "x$with_localinstall" = "xyes") AC_SUBST(INDICATORDIR) AC_SUBST(INDICATORICONSDIR) AC_SUBST(INDICATORDIR) AC_SUBST(INDICATORICONSDIR) AM_CONDITIONAL(HAVE_INDICATOR, test "x$config_indicator" = "xyes") dnl dnl Xfce dnl config_xfce=no config_xfce_gtk_version=none if test "x$enable_xfce" != "xno" then PKG_CHECK_MODULES([LIBXFCE4PANEL], [libxfce4panel-2.0 >= 4.12], [config_xfce=yes config_xfce_gtk_version=3 AC_DEFINE(HAVE_XFCE, 1, [Support for xfce applet]) AC_DEFINE(HAVE_XFCE_GTK3, 1, [Support for xfce applet]) XFCE4LIBDIR=`$PKG_CONFIG ${pkg_config_prefix} --variable=libdir libxfce4panel-2.0` ], [ true ]) if test x$config_xfce != xyes then PKG_CHECK_MODULES([LIBXFCE4PANEL], [libxfce4panel-1.0 >= 4.4], [config_xfce=yes config_xfce_gtk_version=2 AC_DEFINE(HAVE_XFCE, 1, [Support for xfce applet]) AC_DEFINE(HAVE_XFCE_GTK2, 1, [Support for xfce applet]) ], [if test "x$enable_xfce" = "xyes"; then AC_MSG_ERROR([XFCE Panel applet development headers not found.]) fi]) fi fi AC_SUBST(XFCE4LIBDIR) AM_CONDITIONAL(HAVE_XFCE, test "x$config_xfce" = "xyes") AM_CONDITIONAL(HAVE_XFCE_GTK2, test "x$config_xfce_gtk_version" = "x2") AM_CONDITIONAL(HAVE_XFCE_GTK3, test "x$config_xfce_gtk_version" = "x3") dnl dnl Mate dnl config_mate=no if test "x$enable_mate" != "xno" then PKG_CHECK_MODULES([LIBMATEPANEL], [libmatepanelapplet-4.0], [config_mate=yes AC_DEFINE(HAVE_MATE, 1, [Support for mate applet])], [if test "x$enable_mate" = "xyes"; then AC_MSG_ERROR([MATE Panel applet development headers not found.]) fi]) config_mate_gtk_version=none if test "x$config_mate" = "xyes" then MATE_GTK=`$PKG_CONFIG --print-requires libmatepanelapplet-4.0 2>/dev/null | grep -m 1 '^gtk+-'` case "$MATE_GTK" in gtk+-2*) config_mate_gtk_version=2 ;; gtk+-3*) config_mate_gtk_version=3 ;; esac fi fi AM_CONDITIONAL(HAVE_MATE, test "x$config_mate" = "xyes") AM_CONDITIONAL(HAVE_MATE_GTK2, test "x$config_mate_gtk_version" = "x2") AM_CONDITIONAL(HAVE_MATE_GTK3, test "x$config_mate_gtk_version" = "x3") if test "x$config_mate_gtk_version" = "x2" -o "x$config_xfce_gtk_version" = "x2" then PKG_CHECK_MODULES([GTK2], [gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 ], [config_gtk2=yes AC_DEFINE(HAVE_GTK2, 1, [Support for GTK2])], [AC_MSG_ERROR([GTK2 development headers not found.])]) fi AM_CONDITIONAL(HAVE_GTK2, test "x$config_gtk2" = "xyes") dnl dnl GConf dnl config_gconf=no if test "x$enable_gconf" != "xno" -a "x$config_gnome3" != "xyes" then PKG_CHECK_MODULES([GCONF], [gconf-2.0 >= 2.31.1], [config_gconf=yes AC_DEFINE([HAVE_GCONF], , [Define if GConf is available])], [if test "x$enable_gconf" = "xyes"; then AC_MSG_ERROR([GConf development headers not found.]) fi]) fi AM_CONDITIONAL(HAVE_GCONF, test "x$config_gconf" = "xyes") dnl dnl XML dnl config_xml=no if test "x$enable_xml" != "xno" then PKG_CHECK_MODULES([GDOME], [gdome2], [config_xml=yes AC_DEFINE([HAVE_GDOME], ,[Define if GDome is available])], [if test "x$enable_xml" = "xyes"; then AC_MSG_ERROR([GDome2 development headers not found.]) fi]) fi AM_CONDITIONAL(HAVE_GDOME, test "x$config_xml" = "xyes") dnl dnl GIO/GNet2 networking dnl config_distribution=no have_gnet=no if test "x$enable_distribution" != "xno" then PKG_CHECK_MODULES([GIO], [gio-2.0 >= 2.22.0], [config_distribution=yes AC_DEFINE(HAVE_GIO_NET, 1, [Have GIO networking support])], [PKG_CHECK_MODULES([GNET], [gnet-2.0], [config_distribution=yes have_gnet=yes AC_DEFINE([HAVE_GNET], , [Define if GNet is available]) AC_DEFINE([HAVE_GNET2], , [Define if GNet2 is available])], [if test "x$enable_distribution" = "xyes"; then AC_MSG_ERROR([GIO/GNet development headers not found.]) fi])]) fi if test $config_distribution = yes then AC_DEFINE([HAVE_DISTRIBUTION], , [Define if network-distributed operation is available]) fi AM_CONDITIONAL(HAVE_DISTRIBUTION, test "x$config_distribution" = "xyes") AM_CONDITIONAL(HAVE_GNET, test $have_gnet = yes) dnl dnl GStreamer dnl config_gstreamer=no if test "x$enable_gstreamer" != "xno"; then PKG_CHECK_MODULES([GSTREAMER], [gstreamer-0.10], [config_gstreamer=yes AC_DEFINE(HAVE_GSTREAMER, 1, [Use GStreamer for playing sounds])], [ ]) if test "x$config_gstreamer" != "xyes"; then PKG_CHECK_MODULES([GSTREAMER], [gstreamer-1.0], [config_gstreamer=yes AC_DEFINE(HAVE_GSTREAMER, 1, [Use GStreamer for playing sounds])], [if test "x$enable_gstreamer" = "xyes"; then AC_MSG_ERROR([GStreamer development headers not found.]) fi]) fi fi dnl dnl PulseAudio dnl config_pulse=no if test "$platform_os_unix" = "yes" -a "x$enable_pulse" != "xno" then PA_REQUIRED_VERSION=0.9.15 PKG_CHECK_MODULES([PULSE], [glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION], [config_pulse=yes AC_DEFINE(CONFIG_PULSE, 1, [Define if PULSE sound server should be used])], [if test "x$enable_pulse" = "xyes"; then AC_MSG_ERROR([Pulseaudio development headers not found.]) fi]) fi AM_CONDITIONAL(CONFIG_PULSE, test "x$config_pulse" = "xyes") dnl dnl Internationalization dnl AM_GNU_GETTEXT_VERSION([0.18]) AM_GNU_GETTEXT([external]) dnl Hack because windows gettext package is SEVERELY broken... if test "x$PLATFORM_OS_WINDOWS" = "xyes" then USE_NLS=yes AC_DEFINE(ENABLE_NLS,1,[Define to 1 if translation of program messages to the user's native language is requested.]) AC_DEFINE(USE_INCLUDED_LIBINTL, "no", [Dont]) AC_DEFINE(BUILD_INCLUDED_LIBINTL, "no", [Dont]) USE_INCLUDED_LIBINTL=no BUILD_INCLUDED_LIBINTL=no fi GETTEXT_PACKAGE=workrave AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Define to the gettext domain name.]) IT_PROG_INTLTOOL([0.40.0]) dnl dnl Manual dnl dnl (taken from clutter) dnl AC_ARG_ENABLE(manual, AS_HELP_STRING([--enable-manual], [Build user manual. Requires jw and xmlto binaries.])) if test "x$enable_manual" = "xyes"; then AC_PATH_PROG(JW, jw, no) if test "x$JW" = "xno"; then AC_MSG_ERROR(['jw' program needed by the manual not found in path]) fi AC_PATH_PROG(XMLTO, xmlto, no) if test "x$XMLTO" = "xno"; then AC_MSG_ERROR(['xmlto' program needed by the manual not found in path]) fi fi AM_CONDITIONAL(ENABLE_MANUAL, test "x$enable_manual" = "xyes") dnl dnl What variant to build dnl variant="" if test "x$PLATFORM_OS_WINDOWS" = "xyes" then variant="$variant win32" elif test "x$PLATFORM_OS_MACOS" = "xyes" then variant="$variant macos unix" elif test "x$platform_os_unix" = "xyes" then variant="$variant x11 unix" fi WR_BACKEND_INCLUDES="-I\$(top_srcdir)/backend/include" WR_COMMON_INCLUDES="-I\$(top_srcdir)/common/include -I\$(top_srcdir)/libs/dbus/include" WR_FRONTEND_COMMON_INCLUDES="-I\$(top_srcdir)/frontend/common/include" for v in $variant; do if test -d common/src/$v then WR_COMMON_INCLUDES="$WR_COMMON_INCLUDES -I\$(top_srcdir)/common/include/$v" fi done WR_LDADD="-lworkrave-backend -lworkrave-frontend-common -lworkrave-common" if test "x$config_dbus" = "xyes"; then WR_LDADD="$WR_LDADD -lworkrave-dbus" fi WR_LDFLAGS="-L\$(top_builddir)/common/src/ -L\$(top_builddir)/backend/src/ -L\$(top_builddir)/frontend/common/src -L\$(top_builddir)/libs/dbus/src/" AC_SUBST(WR_LDADD) AC_SUBST(WR_LDFLAGS) AC_SUBST(WR_FRONTEND_COMMON_INCLUDES) AC_SUBST(WR_COMMON_INCLUDES) AC_SUBST(WR_BACKEND_INCLUDES) dnl dnl Defines dnl config_tests=no if test "x$enable_tests" = "xyes"; then config_tests=yes AC_DEFINE([HAVE_TESTS], , [Define if test code is enabled]) fi AM_CONDITIONAL(HAVE_TESTS, test "x$config_tests" = "xyes") config_exercises=no if test "x$enable_exercises" != "xno"; then config_exercises=yes AC_DEFINE(HAVE_EXERCISES,,[Define if exercises are available]) fi AM_CONDITIONAL(HAVE_EXERCISES, test "x$config_exercises" = "xyes") config_experimental=no if test "x$enable_experimental" = "xyes"; then config_experimental=yes AC_DEFINE(HAVE_EXPERIMENTAL,,[Define if experimental features are available]) fi AM_CONDITIONAL(HAVE_EXPERIMENTAL, test "x$config_experimental" = "xyes") config_text=no if test "x$enable_app_text" = "xyes"; then config_text=yes AC_DEFINE(HAVE_APP_TEXT,,[Define if Text is available]) fi AM_CONDITIONAL(HAVE_APP_TEXT, test "x$config_text" = "xyes") dnl dnl Generate language list. dnl if test "x$PLATFORM_OS_WINDOWS" = "xyes" then LANGFILE="./frontend/gtkmm/win32/setup/lang.iss" ALL_LINGUAS="$(cat ./po/LINGUAS |grep -v '^#' | tr '\n' ' ' | awk '{$1=$1;print}')" AC_DEFINE_UNQUOTED(ALL_LINGUAS, "$ALL_LINGUAS" ,[All available languages]) echo -n "; language.iss --- Inno setup file, support languages" > $LANGFILE echo -en "\r\n" >> $LANGFILE for a in $ALL_LINGUAS; do X="Source: \"..\\..\\..\\..\\po\\$a.gmo\"; DestDir: \"{app}\\lib\\locale\\$a\\LC_MESSAGES\"; DestName: \"workrave.mo\"; Flags: ignoreversion;" echo -n $X >> $LANGFILE echo -en "\r\n" >> $LANGFILE done fi dnl dnl Makefile output dnl AC_CONFIG_FILES([Makefile backend/Makefile backend/test/Makefile backend/src/Makefile backend/src/org.workrave.gschema.xml.in backend/src/unix/Makefile backend/src/macos/Makefile backend/src/win32/Makefile backend/include/Makefile common/Makefile common/bin/Makefile common/src/Makefile common/src/win32/Makefile common/include/Makefile common/include/win32/Makefile common/win32/Makefile common/win32/harpoon/Makefile common/win32/harpoon/include/Makefile common/win32/harpoon/src/Makefile common/win32/harpoonHelper/Makefile common/win32/harpoonHelper/include/Makefile common/win32/harpoonHelper/src/Makefile libs/Makefile libs/dbus/Makefile libs/dbus/bin/Makefile libs/dbus/data/Makefile libs/dbus/include/Makefile libs/dbus/include/dbus/Makefile libs/dbus/src/Makefile frontend/Makefile frontend/common/Makefile frontend/common/include/Makefile frontend/common/share/Makefile frontend/common/share/sounds/Makefile frontend/common/share/sounds/bells/Makefile frontend/common/share/sounds/subtle/Makefile frontend/common/share/sounds/default/Makefile frontend/common/share/images/Makefile frontend/common/share/images/16x16/Makefile frontend/common/share/images/24x24/Makefile frontend/common/share/images/32x32/Makefile frontend/common/share/images/48x48/Makefile frontend/common/share/images/64x64/Makefile frontend/common/share/images/96x96/Makefile frontend/common/share/images/128x128/Makefile frontend/common/share/images/scalable/Makefile frontend/common/share/images/win32/Makefile frontend/common/share/images/macos/Makefile frontend/common/src/Makefile frontend/common/src/win32/Makefile frontend/common/src/x11/Makefile frontend/common/src/macos/Makefile frontend/applets/Makefile frontend/applets/win32/Makefile frontend/applets/win32/src/Makefile frontend/applets/win32/include/Makefile frontend/applets/common/Makefile frontend/applets/common/src/Makefile frontend/applets/common/include/Makefile frontend/applets/gnome3/Makefile frontend/applets/gnome3/src/Makefile frontend/applets/indicator/Makefile frontend/applets/indicator/src/Makefile frontend/applets/indicator/include/Makefile frontend/applets/xfce/Makefile frontend/applets/xfce/src/Makefile frontend/applets/xfce/include/Makefile frontend/applets/mate/Makefile frontend/applets/mate/src/Makefile frontend/applets/mate/include/Makefile frontend/applets/gnome-shell/Makefile frontend/applets/gnome-shell/src/Makefile frontend/applets/cinnamon/Makefile frontend/applets/cinnamon/src/Makefile frontend/gtkmm/Makefile frontend/gtkmm/macos/Makefile frontend/gtkmm/win32/Makefile frontend/gtkmm/win32/setup/Makefile frontend/gtkmm/win32/setup/setup.iss frontend/gtkmm/win32/setup/src/Makefile frontend/gtkmm/src/Makefile frontend/gtkmm/src/org.workrave.gui.gschema.xml.in frontend/gtkmm/src/win32/Makefile frontend/gtkmm/src/unix/Makefile frontend/gtkmm/src/macos/Makefile frontend/text/Makefile frontend/text/src/Makefile frontend/plugin/Makefile frontend/plugin/distribution/Makefile frontend/plugin/distribution/gtkmm/Makefile frontend/plugin/distribution/gtkmm/src/Makefile frontend/plugin/statistics/Makefile frontend/plugin/statistics/gtkmm/Makefile frontend/plugin/statistics/gtkmm/src/Makefile frontend/plugin/exercises/Makefile frontend/plugin/exercises/common/Makefile frontend/plugin/exercises/common/share/Makefile frontend/plugin/exercises/common/src/Makefile frontend/plugin/exercises/gtkmm/Makefile frontend/plugin/exercises/gtkmm/src/Makefile po/Makefile.in contrib/Makefile contrib/plot/Makefile contrib/send_menu_command/Makefile contrib/send_menu_command/win32/Makefile contrib/send_dbus_command/Makefile contrib/send_dbus_command/kde/Makefile build/Makefile m4/Makefile ]) AC_OUTPUT dnl ======================================================================== echo "" echo " Workrave $VERSION" echo " ===================" echo "" echo " prefix: ${prefix}" echo "" echo " OS : ${platform_os_name}" echo "" echo " GConf configuration : ${config_gconf}" echo " GSettings configuration : ${config_gsettings}" echo " XML configuration : ${config_xml}" echo "" if test "$platform_os_unix" = "yes"; then echo " Activity Monitors : ${enable_monitors}" echo "" fi echo " Gtk GUI : ${config_gtk} (Gtk${config_gtk_version})" echo " Gnome 3 support : ${config_gnome3}" echo "GObject-Introspection support : ${found_introspection}" echo " Indicator support : ${config_indicator}" echo " XFCE support : ${config_xfce} (Gtk${config_xfce_gtk_version})" echo " MATE support : ${config_mate} (Gtk${config_mate_gtk_version})" echo " DBUS support : ${config_dbus}" echo " Networking support : ${config_distribution}" echo " GStreamer support : ${config_gstreamer}" if test "$platform_os_unix" = "yes"; then echo " Pulseaudio support : ${config_pulse}" fi echo " Exercises : ${config_exercises}" echo "" echo " Experimental features : ${config_experimental}" echo " Debugging : ${config_debug}" echo " Debug logs : ${config_tracing}" echo " Test code : ${config_tests}" echo "" workrave-1.10.50/NEWS0000644000175100001710000006636014221624106013133 0ustar00gdm00000000000000Workrave NEWS -- history of user-visible changes. 01 April 2022 Copyright (C) 2001-2022 Rob Caelers, Raymond Penners, Ray Satiro See the end for copying conditions. Please report Workrave bug reports. Visit our bug tracker located at: https://github.com/rcaelers/workrave/issues * Workrave 1.10.50 ** The "Restbreak now" button in the main window no longer responds to keyboard (#368) ** Allow installation on Windows without administrator rights. ** Fix vertical alignment of GNOME shell applet (#356) ** Support GNOME Shell 42 (#396) ** Restore support for Windows Vista and up (#367) ** The 'Backward shoulder stretch' exercises now plays a sound twice matching the description (#354) * Workrave 1.10.49 ** Adds support for GNOME Shell 41 (#342, Timo Jyrinki) ** Inno Setup improvement (#353, Kaleb Luedtke) * Workrave 1.10.48 ** Fixed GNOME Shell applet on Ubuntu 18.04 (#281) * Workrave 1.10.47 ** Fixed a crash of the GNOME Shell applet (#281) ** Adds support for GNOME Shell 40 (#288) ** Fixed issue where the installer would fail when installing as system user (#291) ** Fixed incorrect disabling of postpone/skip button (#301) ** Warn if operation mode is not 'normal' after unlocking the screen (Windows only for now) * Workrave 1.10.45 ** Micro breaks without a postpone button could be postponed by starting a rest break while the break prompt window was visible and then clicking postpone in the rest break window. The postpone button is now disabled when the micro break is overdue, and the maximum number of break prompts was reached. ** A new sound theme calls 'Bells' has been added (#225, Pieter De Decker) ** Added support for High-DPI displays in the Windows Applet. ** The Windows applet now correctly enforces a minimum size (#252) ** Initial support for icon themes. ** Fixes: - Fixed build issue with libayatana-indicator3 - Fixed issue where Workrave would show 2 status icons on Linux (#258) - Fixed a deprecation warning in the Gnome Shell applet (#251) - The cinnamon applet is no longer bouncing up and down (#253) - Fixed issue where the current language was always "Unrecognized language" - Fixed issue where activity monitoring would stop after restarting Gnome Shell - Fixed issue that caused the main window to disappear (#244, #259) ** Translation updates: - Updated Chinese translation (#232, wintertee) - Updated French translation (Darialalala) - Updated Dutch translation (Matthias Huijgen) - Fixed typo in the Italian translation (#234, albanobattistella) * Workrave 1.10.44 ** Update Italian translation (Albano Battistella) ** Support libayatana-indicator3 (Kentaro Hayashi/Rob Caelers) ** Fixed issue on Gnome where Workrave would not detect that the user is idle (#181) * Workrave 1.10.43 ** Fix issue where a break window could disappear after a few seconds. ** Fix issue where the Gnome Shell applet would be reload on Ubuntu 18.04. ** Update Traditional Chinese translation (Yuenfu Chiu) * Workrave 1.10.42 ** Fix Gnome Shell applet compatibility issue with Ubuntu 18.04. * Workrave 1.10.41 ** Fix incomplete Gnome Shell applet menu with latest version of Gnome Shell * Workrave 1.10.40 ** Fix creation for source tarball. * Workrave 1.10.39 ** When it is time to take a micro break, Workrave may start a rest break instead. This happens when the rest break would start within 30 seconds of the micro break. If the postpone or skip buttons are disabled on the micro break, they will be temporarily disabled on the rest break window. A small progress bar indicates how long the buttons are disabled. Previously, Workrave would restart the micro break when pressing the skip or postpone button. ** Support applets on Gnome 3.35.1+ using libgnome-panel (Alberts Muktupāvels). ** Added Indonesian translation (Andika Triwidada). ** Fixed issue where Workrave was not properly terminated on reinstall. * Workrave 1.10.38 ** Show operation mode in Gnome applet. ** Fixed focus issue on rest break window that caused muted (grey) text. * Workrave 1.10.37 ** Add Ubuntu 19.10 / 20.04 to Workrave PPA * Workrave 1.10.36 ** Update Irish translation (Seanán Ó Coistín) ** new Portuguese translation (pmraps) ** Non-blocking break windows are now centered on Wayland/mutter (#163) ** Support display scaling * Workrave 1.10.34 ** Ubuntu Trusty and Xenial build fixes. * Workrave 1.10.33 ** Packaging fixes. * Workrave 1.10.32 ** Fixed a bug that caused high CPU load when the main window was open for a long time. ** [internal change] Python 2 is no longer required for building Workrave. The Python2-only Cheetah dependency has been replaced by Jinja 2 (python3-jinja2). Additionally, Boost >= 1.52 is now required (libboost-dev). * Workrave 1.10.31 ** Add GetTimerRemaining dbus function. * Workrave 1.10.30 ** Prevent "Workrave wants to inhibit shortcuts" on Wayland ** Fix timer bar text color under Wayland ** Do not dim text in time bar when window is not focused. * Workrave 1.10.29 ** Fix PPA upload * Workrave 1.10.28 ** Fix PPA upload * Workrave 1.10.27 ** Fix menu in Cinnamon applet ** Fix bouncing Cinnamon applet * Workrave 1.10.26 ** Fix Gnome Shell applet for Gnome Shell v3.30 ** Reduce padding in timer window * Workrave 1.10.25 ** Packaging fixes * Workrave 1.10.24 ** Fix AppStream metadata (Balló György) ** Update Slovak translation (Jose Riha) * Workrave 1.10.23 ** Packaging fixes * Workrave 1.10.22 ** Fix size of Xfce applet * Workrave 1.10.21 ** Support MATE applet with Gtk+3 ** Support Xfce applet with Gtk+3 * Workrave 1.10.20 ** Fix activity monitoring on non-Gnome desktop environments * Workrave 1.10.19 ** Fix crash because of missing setting ** Fix Gnome Shell applet * Workrave 1.10.18 ** Support Gnome Shell 3.24/26 ** macOS compilation fixes (Tom Parker) * Workrave 1.10.17 ** Update Czech translation (Pavel Bborecki) * Workrave 1.10.16 ** Mark applet as compatible with GNOME 3.22 (Francois Marier) ** Fix text alignment time bar. ** Fix resuming microbreak after postponing restbreak * Workrave 1.10.15 ** Fix crash when no shutdown/hibernate options are available. ** Updated traditional Chinese translation (Kevin Kuan) * Workrave 1.10.14 ** Fixed issue where pressing the down key during a restbreak would lock the screen (bug #1242) * Workrave 1.10.13 ** Use button instead of combobox if only 'Lock' is available in restbreak window (pedantic-git) ** Update german translation (rsnitsch) ** Support Gnome Shell 3.20 (Francois Marier) * Workrave 1.10.12 ** Updated Catalan translation (Jordi Mallach) ** Fixed Gnome Shell applet (Amir Mohammadi) * Workrave 1.10.11 ** Improved security of network protocol. NOTE: this is a backward incompatible change. This version of Workrave will no longer connect to older Workrave versions. ** Minor improvements * Workrave 1.10.9 ** UI tweak * Workrave 1.10.8 ** Extra statistics: - Weekly usage statistics (Rob Caelers) - Monthly usage statistics (Denis Nikolaenko) ** Fix gtkmm 3.18 compilation (Javier Tia, Denis Nikolaenko) ** Support Gnome 3.16 * Workrave 1.10.7 ** Update translations: - Spanish (Fco. Javier Serrador) * Workrave 1.10.6 ** Improved screen lock and shutdown in break window (Mateusz Jończyk) ** Add suspend/hibernate option to break window on Linux (Mateusz Jończyk) ** Gnome applet updated to work with latest Gnome 3 flashback (Dmitry Shachnev) ** Applets added for Cinnamon, XFCE and MATE. ** Bug fixes: - Break window was transparent when blocking mode was set to 'input and screen' - Text background in exercises window was black, making the text unreadable. - In some cases the timers were shown twice in the panel * Workrave 1.10.5 ** Updated translations: - Danish (Frederik Svarre) ** Updates Desktop files (Francois Marier, Mike Manger) * Workrave 1.10.4 ** Fix gnome-shell applet for Gnome 3.12. * Workrave 1.10.3 ** Bug fixes: - bug 1113: Unity Indicator icon doesn't change when in suspended mode - bug 1114: Closing timer window closes program. - bug 1120: make the GNOME shell extension compatible with GNOME 3.8 - bug 1136: Status window always appears on startup - bug 1137: Make Workrave start up optional - bug 1146: dconf changes not honored for /org/workrave/general/operation-mode - bug 1147: Suspend timer during screensaver - bug 1148: Double deallocation causes crashes during Workrave shutdown - Fix Workrave icon on Unity - Fix size of prelude window - Fix size of unity indicator timebar - Fixed compatibility with gnome-shell 3.10 - Allow Gnome Shell status icon to be enabled/disabled * Workrave 1.10.1 ** Fix uninstall on Windows. * Workrave 1.10 ** Split "show 'postpone' and 'skip'" checkbox into two checkboxes. (Egbert Teeselink) ** Add the capability to delete all stored statistics (Ray Satiro) ** Workrave now supports DBus on window. DBus can be used to control Workrave by an external program. ** Workrave now offers a Gnome 3 applet. Applets for both Gnome 3 classic and the Gnome shell are available. ** Workrave now offers an application indicator (applet) in Unity. ** On Windows, Workrave does not stay in the 'suspended' mode after resuming from hibernate/sleep. ** On Unix, Workrave adds a new activity monitoring method that can be used instead of the XRECORD based monitoring. XRECORD monitoring appear be causing X crashes for some people (See http://issues.workrave.org/show_bug.cgi?id=1066) ** Infrastructure update. Workrave now supports: - Gtk3/Gtkmm3 (only on Gnome 3; Gtk2/Gtkmm2 is still used on Gnome 2) - Configuration in GSettings (instead of GConf) - GIO based DBus (instead of freedesktop.org DBus) ** Obsolete KDE3 support has been dropped. ** Translation updates: - Mykola Rykov translated Workrave into Ukrainian. - Ivan Barkovic translated Workave into Croatian. - Moein Gh translated Workave into Persian. - Jyri-Petteri Paloposki translated Workrave into Finnish - Goran Maričić translated Workrave into Serbian. - Igor Zinovik updated the Russian translation. - Gabor Kelemen updated the Hungarian translation. - Alick Zhao updated the Chinese translation. - Andrey Bondrov updated the Russian translation. - Paweł Szerszon updated the Polish translation. ** Plus many small fixes and improvements (Ray Satiro, Rob Caelers) * Workrave 1.9.4 ** The automatic start of a restbreak when the screen is locked is now configurable. ** Fixed crash when the 'mute all audio during breaks' option is enabled. ** The skip and postpone button now have keyboard shortcuts (Alt-S and Alt-P in the English version). ** Fixed issue where Workrave remains suspended after hibernate/standby on Window 7. ** Fixed issue where the reading mode was reset after changing settings. ** On Windows, Workrave shows a reminder balloon when Workrave starts up in suspended or quiet mode. ** The (un)installer now automatically shuts down Workrave before (un)installation. ** It is no longer possible to disable both the notification icon and the main window. * Workrave 1.9.3 ** Seanán Ó Coistín translated Workrave into Irish. ** 김재용 translated Workrave into Korean. ** Workrave now stops all timers when the screen is locked. When the screen in unlocked, a natural restbreak is started. ** Audio muting improvements: - Audio is now muted after the start break sound is played. - Audio is now unmuted when the user becomes active after the break has ended instead of immediately after the break ended. ** By default, the RECORD extension is now mandatory on X windows systems. ** Bug fixes: - Fixed crash on Windows systems without audio installed. - Fixed translucency of Deskband applet on Windows 7/Vista. - Fixed Reading mode menu entry in Windows and Gnome applet. - Networking now supports IPV6 addresses. - Activity monitor should now filter out mouse jitter. - Fixed monitoring of (Wacom) tablets. * Workrave 1.9.2 ** Reading mode The activity insensitive breaks have been replaced by a 'reading mode'. This mode can easily be activated from the menu. ** Workrave can now mute all audio during breaks. ** Workrave now properly remembers the Window hide/show notification icon settings. ** The Workrave applet is functional again on Windows 7 ** Updated translations: - Brazilian Portuguese - Catalan - Hungarian - Hebrew - Polish ** Many bug fixes. * Workrave 1.9.1 ** Updated translations: - new Romanian translation (Alexandru Szasz) - new Estonian translation (Marko Väljaots) - Removed extra "2" character in the Hungarian translation (Márton Németh) - Update of Hungarian translation - Update of Swedish translation ** Many bug fixes. Including: - Fix saving the username in the networking preferences (Francois Marier) - Fix KDE compilation errors (Stanislav Brabec) - Fixed issue where autostart settings on Windows was not stored - Fixed crashes when trying to add a host in networking preferences - User activity is now recognized on Xorg 1.6.0 - Fixed color in dark UI themes on Gnome. - Workrave no longer shows two icons on GNOME notification panel - Fixed tray icon tranparency - Fixed issue on Vista where the break window is not on top of other windows (Ray Satiro) - Improved volume control on Windows * Workrave 1.9.0 ** Many small bugfixes ** Fixed transparency of tray icon on Linux. ** New alternate activity moniting for Windows (Ray Satiro) ** Additional tooltips (Ray Satiro) ** Improved 64 bit support (Ray Satiro) ** Improved Vista support (Ray Satiro) ** Exercises are now randomized ** On Windows, the language can now be selected in the preferences ** The option 'Start Workrave when windows starts' has been added to the preferences ** Extended DBUS support on Unix ** Initial OSX port ** Networking supports can now be enabled without accepting incoming connections from other Workraves (Francois Marier) ** Sounds: - A sound has been added that indicates a next step in the exercise. - The volume can now be configured - All sounds can now be configured - A new sound theme has been added (Ruairi Fullam) * Workrave 1.8.5 ** Lots of changes by Ray Satiro. ** Task manager is never blocked by Workrave (Ray Satiro) ** Workaround for focus loss on Vista (Ray Satiro) ** Vanja Cvelbar translated Workrave into Slovenian. ** Many bug fixes, the most visible ones: - Fixed breaks that have 'suspend timer when inactive' disabled (Ray Satiro) - Improved Windows responsiveness under high load. (by reverting a 1.8.4 change) - Mode menu fixed. - Gnome applet no longer 'hangs'. - Gnome applet no longer crashes Workrave. - Fixed crashes during startup on Windows. - Fixed 'end-of-microbreak' sound. - Fixed bug in multi-head support where Workrave showed multiple windows on a single screen. - Fixed locking on Gnome with xscreensaver installed (Philipp Kern) * Workrave 1.8.4 ** Eraldo Girardi translated Workrave into Italian. ** Better support for vertical applets on Unix. ** Tao WEI translated Workrave into simplified Chinese. ** Peter Tuharsky translated Workrave into Slovak. ** Prokopis Prokopidis translated Workrave into Greek. ** The status window used to appear empty, only to be resized and filled with the timers shortly thereafter. Now it appears right away in the proper size. ** The operation mode (normal/quiet/suspended) now persists across Workrave sessions. ** Enver Altin translated Workrave into Turkish. ** Masanobu Yokota translated Workrave into Japanese. ** Ivan Dimov translated Workrave into Bulgarian. ** ORY Mate translated Workrave into Hungarian. ** Fixed KDE sound events (Phuah Yee Keat) ** Fixed Gnome sound events ** Fixed negative mouse usage when date is changed. ** Fixed text color on Gnome themes with dark backgrounds (i.e. high contrast inverse) ** Gnome applets now support transparency. ** The 'datadir' configuration option in workrave.ini can now be a relative path: [general] datadir=.\\Data This will store all Workrave data in the 'Data' directory below the Workrave root directory. (Note the double backslash) ** Daily limit now properly resets when hibernated. * Workrave 1.8.3 ** Daniel Nylander translated Workrave into Swedish. ** Jordi Mallach translated Workrave into Catalan. ** Support for storing configuration in a .ini file This feature can be enabled by creating an empty 'workrave.ini' file in '~/.workrave' (on Unix) or in 'c:\Program files\Workrave\etc' (on Window, assuming Workrave is installed in this directory) ** Support for configuring the data storage directory. Add the following two lines to your workrave.ini [general] datadir=C:\\Workrave\\Data This feature can be used to run Workrave from an USB memory stick. Note: On Windows, you have to use double backslashes like in the example above! ** Support for Gnome screen saver added (Matt Zimmerman). ** Workrave no longer consumes 100% CPU is if a break is started while the screen is locked. ** The applet popup menu is now accessible when all timers hidden. ** Fix czech translation (Jiri Palecek). ** Fixed a bug that could cause breaks to stop running when 'suspend timer while inactive' was disabled. * Workrave 1.8.2 ** Fixed a crash when a third party gtk runtime is used. ** Fixed bug that caused status windows to be disabled when the microbreak timer was hidden. ** Fixed translations. ** Better hibernate/standby support on Unix. ** System tray menu on Windows now disappears when focus is lost. * Workrave 1.8.1 ** Fixed a crash when blocking mode is set to 'none' * Workrave 1.8.0 ** Jon Otegi translated Workrave into Basque. ** Artūras Šlajus translated Workrave into Lithuanian. ** Morten Lunde translated Workrave into Norwegian. ** Juraj Kubelka translated Workrave into Czech. ** Haggai Eran translated Workrave into Hebrew. ** Workrave now gives additional feedback when becoming active during a break by flashing the break window border. ** Workrave now uses the system tray icon to visualize the current mode (normal, suspended or quiet). ** Added "Restbreak now" button to microbreak window. ** KDE improvements. Workrave now has a native KDE applet and supports KDE sound events. ** Decent tooltips for Workrave system tray icon. ** Miscellaneous distribution improvements. * Workrave 1.6.2 ** Added a Brazilian Portuguese translation, thanks to Claudio Ferreira Filho! ** Workrave now respects the "gtk-button-images" property. ** Upgraded GTK runtime to version 2.4, fixing some minor UI quirks. ** Fixed some high-profile bugs, especially activity monitoring problems when running X. * Workrave 1.6.1 ** A bug was introduced in version 1.6.0 which could cause the status window to disappear. Version 1.6.1 is only a minor bug fix release that addresses this problem. * Workrave 1.6.0 ** Workrave has been translated into Chinese thanks to Rex Tsai, into Russian thanks to Sergey Kirkinsky, and into French thanks to Thomas Basset and Benjamin Siband. ** The explanation of an exercise is now scrollable, if it does not fit onscreen. ** The Windows version now includes a taskbar applet version of the status window. After installation of Workrave, right click your taskbar and select "Workrave" from the list of toolbars. ** Timers can be configured to ignore activity. ** Bloat removal: removed the "Resets at" option from the daily limit panel. ** Exercises are no longer read at program startup, and are released from memory when not needed anymore. ** Terminology: we now use the term "micro-break" instead of "micro-pause". ** When block mode "Block all" is used, we display the break window on top of your current desktop background (wallpaper), instead of on a semi-transparent screen snapshot. ** Fixed screen locking on X11: previously only xlock was detected and used without passing a display parameter. Now, the proper screen lock command is invoked on the right display. For example, if KDE is detected its kdesktop_lock is executed. ** High-profile bug fixes (Windows): activity monitoring when working in Exceed has been restored, and ZoneLab interaction problems (hangups) have been corrected. * Workrave 1.4.1 ** Replaced the "Block input" setting (which was available per break) by a global "Block mode" setting, located in the GUI preferences. The available block modes are "None" (NEW: no input is blocked and break windows have a title bar and can be dragged), "Block input" (blocks input, break windows are fixed), "Block all" (NEW: blocks input and display). ** The Windows installer now offers the option to install Workrave using the standalone Dropline GTK+ runtime. For more information, see http://www.dropline.net/gtk/. ** Removed the "Force break after maximum preludes" option. It is now on by default. ** Some strings in the German translation were too long, fixed. ** Added multihead support for Windows. ** Improved suspend (to ram) support. Workrave now assumes that you are idle while suspended instead of assuming that no time passes. ** Improved multihead support. The status window is now automatically relocated when the monitor on which it is displayed is removed. It moved back to its original location when the monitor returns. ** Exercises navigation can now be used without causing Workrave to remove the break window and show the warning windows again. ** If supported by your system, the daily limit window includes a "Shut down" button. ** There now is a "Lock" button on the rest break, so that you can safely lock your display while you are taking breaks. If the daily limit window does not include the "Shut down" button, it includes the "Lock" button instead. * Workrave 1.4.0 ** Added exercises. ** Workrave has been translated to Polish, Danish and Spanish. Many thanks to Mikolaj Machowski, Christian Vejlbo, and Pablo Rodriguez! ** Multihead support for X11. Workrave now shows break windows on all monitors. ** Workrave can now cope with changes in system time and OS features like suspend-to-ram. ** Previously, the end time that showed up in the stats dialog equaled the time at which the clock reset (typically equal to the start of the next working day). This lead to weird from/to times, as in: "From 8:46 to 9:10". Fixed. ** Added an icon to the skip/postpone buttons on break windows. ** Many laptop pointer devices "drift" over time. This used to cause Workrave to detect activity when there was in fact none. Fixed, thanks to Chung-chieh Shan. ** On Windows, Workrave now notices when Explorer crashes and will try to reinsert the tray icon in the new Explorer taskbar that is created when Explorer restarts. ** Rewrote the user input blocking mechanism on Windows. You should no longer experience visual quirks (like flashing windows or unexpectedly focusing random windows) during breaks. ** On Linux, Workrave now notices when the gnome-panel crashes and will reinsert the applet in the new panel. ** The content of the status window can now be configured. ** Breaks can now be disabled. * Workrave 1.2.2 ** If you stopped working during a prelude just before it was about to disappear, the prelude would still go away because Workrave assumed you wanted to continue working. This behaviour has been changed now: if there is no activity when the count-down has reached zero, Workrave waits a couple of seconds to see if you are really idle. If that is the case, a break window appears. If not, you can continue working. ** Redesigned the preferences panel. It used to have nested tabs, these have been replaced with an icon shortcut bar. ** The break windows have been given a title. ** The Window version now included GTK-Wimp. This makes the visual appearance of Workrave blend much better into the Windows desktop environment (http://gtk-wimp.sourceforge.net). ** Beter support for Gnome session management. Workrave is now properly restarted by the gnome session manager. ** The applet can now be configured to show only the Workrave sheep. Clicking on the sheep will toggle the visibility of the main window. * Workrave 1.2.1 ** Some errors in the build process have been fixed. Only a new source tarball is released, as this does not effect binary releases. * Workrave 1.2.0 ** Johannes Rohr provided a german translation, thanks! ** Added applet support. Workrave now supports both a native Gnome applet, as well as a system tray applet that should also work on KDE. ** Added statistics. Workrave shows break statistics and daily usage. More statistics will be added later. ** A leaflet promoting Workrave is now available. Please spread it as far as possible. For example, distribute several copies at the office. (http://workrave.sourceforge.net/leaflet/) ** Last but absolutely not least: increased sheep size in the about window. :) * Workrave 1.0.0 ** Removed the monitoring preferences. Good defaults is all you want here, and it was far too difficult to try and explain these settings to ordinary users. ** Added the daily limit break window. ** Added internationalisation support. Currently, only a Dutch translation is provided. We are still looking for volunteers to translate Workrave into other languages. ** The "Collective" has been renamed to "Network", which is far more meaningful to non-geek users. ** A network log window has been added. This window shows informational messages about the communication between different Workrave instances. * Workrave 0.3.0 ** Added experimental(!) distribution support, dubbed "The Collective". What this means is that you can now create a network of Workrave instances running on several computers. All instances that are part of "the collective" share the same timer information, meaning that if one computer informs you to take a break, it is futile to flee to another computer as it will also tell you to take a break. ** Added sound support. You can configure the samples that are played through the standard sound control panel provided by Gnome and Windows. For office PCs that do not have a sound card, you can choose to play sounds through the internal PC speaker. ** The window prompting you to brake now moves earlier to the top of the screen so that it does not interfere too much. Furthermore, the window has a new and improved "evasive maneuvers" algorithm. * Workrave 0.2.0 ** Activity during a persisted break is no longer ignored. Instead, the timer is stopped whenefer the user is active. ** Microsoft Windows specific changes - Added taskbar tray support. When the main window is closed, the program remains active in the tray. In the user interface preferences, you can select to hide the program when started. - The main window is now opened at the position where it was during the last program exit. * Workrave 0.1.0 ** First public release. ---------------------------------------------------------------------- Copyright information: Copyright (C) 2001-2022 Rob Caelers & Raymond Penners Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the copyright notice and this permission notice are preserved, thus giving the recipient permission to redistribute in turn. Permission is granted to distribute modified versions of this document, or of portions of it, under the above conditions, provided also that they carry prominent notices stating who last changed them. workrave-1.10.50/common/0000755000000000000000000000000014221624436015010 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/0000755000000000000000000000000014221624436015752 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/Makefile.in0000644000000000000000000005524714221624200020021 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008, 2010 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = harpoon harpoonHelper all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoon/0000755000000000000000000000000014221624436017420 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoon/include/0000755000000000000000000000000014221624436021043 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoon/include/Makefile.in0000644000000000000000000004073214221624200023103 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoon/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoon/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoon/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoon/include/Makefile.am0000644000175100001710000000030514221624107021777 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/common/win32/harpoon/include/harpoon.h0000644000175100001710000000663214221624107021573 0ustar00gdm00000000000000/* * harpoon.h * * Copyright (C) 2002, 2003, 2007, 2010 Raymond Penners * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef HARPOON_H #define HARPOON_H #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #ifndef FALSE # define FALSE 0 #endif #ifndef TRUE # define TRUE 1 #endif #define HARPOON_MAX_UNBLOCKED_APPS 3 #ifdef _WIN64 # define HARPOON_WINDOW_CLASS "Harpoon64NotificationWindow" #else # define HARPOON_WINDOW_CLASS "HarpoonNotificationWindow" #endif #ifdef __cplusplus extern "C" { #endif #ifdef HARPOON_EXPORTS # define HARPOON_API __declspec(dllexport) #else # define HARPOON_API __declspec(dllimport) #endif typedef enum { HARPOON_NOTHING = -1, HARPOON_BUTTON_PRESS = 0, HARPOON_BUTTON_RELEASE, HARPOON_2BUTTON_PRESS, HARPOON_MOUSE_WHEEL, HARPOON_KEY_PRESS, HARPOON_KEY_RELEASE, HARPOON_MOUSE_MOVE, HARPOON_EVENT__SIZEOF } HarpoonEventType; typedef enum { HARPOON_KEY_REPEAT_FLAG = (1 << 0) } HarpoonKeyFlags; typedef struct { HarpoonEventType type; int x; int y; int button; int wheel; } HarpoonEventMouse; typedef struct { HarpoonEventType type; int flags; } HarpoonEventKeyboard; typedef union HarpoonEventUnion { HarpoonEventType type; HarpoonEventMouse mouse; HarpoonEventKeyboard keyboard; } HarpoonEvent; typedef void (*HarpoonHookFunc)(HarpoonEvent *event); HARPOON_API BOOL harpoon_init(char imported_critical_filename_list[][511], BOOL debug); HARPOON_API void harpoon_exit(void); HARPOON_API void harpoon_unhook(); HARPOON_API BOOL harpoon_hook(HarpoonHookFunc func, BOOL keyboard_lowlevel, BOOL mouse_lowlevel); HARPOON_API void harpoon_block_input(void); HARPOON_API void harpoon_unblock_input(void); HARPOON_API char *_mbstrncpy_lowercase(const char *, const char *, int); #ifdef __cplusplus } #endif #ifndef XBUTTON1 # define XBUTTON1 0x0001 #endif #ifndef XBUTTON2 # define XBUTTON2 0x0002 #endif #ifndef PLATFORM_OS_WINDOWS_NATIVE # ifndef WM_XBUTTONDOWN # define WM_XBUTTONDOWN 523 # endif # ifndef WM_XBUTTONUP # define WM_XBUTTONUP 524 # endif # ifndef WM_XBUTTONDBLCLK # define WM_XBUTTONDBLCLK 525 # endif # ifndef WM_MOUSEHWHEEL # define WM_MOUSEHWHEEL 526 # endif # ifndef WM_NCXBUTTONDOWN # define WM_NCXBUTTONDOWN 171 # endif # ifndef WM_NCXBUTTONUP # define WM_NCXBUTTONUP 172 # endif # ifndef WM_NCXBUTTONDBLCLK # define WM_NCXBUTTONDBLCLK 173 # endif # ifndef WM_NCMOUSEHOVER # define WM_NCMOUSEHOVER 672 # endif # ifndef WM_NCMOUSELEAVE # define WM_NCMOUSELEAVE 674 # endif # ifndef WM_UNICHAR # define WM_UNICHAR 265 # endif # ifndef WM_APPCOMMAND # define WM_APPCOMMAND 793 # endif #endif #endif /* HARPOON_H */ workrave-1.10.50/common/win32/harpoon/src/0000755000000000000000000000000014221624436020207 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoon/src/harpoon.c0000644000175100001710000012232114221624107020724 0ustar00gdm00000000000000/* * harpoon.c * * Copyright (C) 2002-2008 Raymond Penners * Copyright (C) 2007 Ray Satiro * Copyright (C) 2009-2010 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #define _CRT_SECURE_NO_WARNINGS #include #include #include #include "harpoon.h" #ifndef WH_KEYBOARD_LL # error WH_KEYBOARD_LL not defined. #endif #if defined(__GNUC__) # define DLLSHARE(v) v __attribute__((section(".shared"), shared)) # ifndef INLINE # define INLINE inline # endif #else # ifndef INLINE # define INLINE # endif # define snprintf _snprintf # define DLLSHARE(v) v # pragma comment(linker, "/SECTION:.shared,RWS") # pragma data_seg(".shared") #endif HWND DLLSHARE(notification_window) = NULL; HHOOK DLLSHARE(mouse_hook) = NULL; HHOOK DLLSHARE(mouse_ll_hook) = NULL; HHOOK DLLSHARE(keyboard_hook) = NULL; HHOOK DLLSHARE(keyboard_ll_hook) = NULL; HHOOK DLLSHARE(msg_hook) = NULL; BOOL DLLSHARE(block_input) = FALSE; BOOL DLLSHARE(initialized) = FALSE; char DLLSHARE(critical_file_list[HARPOON_MAX_UNBLOCKED_APPS][511]) = { 0, }; HWND DLLSHARE(debug_hwnd) = NULL; int DLLSHARE(debug) = FALSE; #if !defined(__GNUC__) # pragma data_seg() #endif #define IDM_MENU_SAVE 0 #define IDM_MENU_MONITOR 1 #define IDM_MENU_CLEAR 2 #define IDM_MENU_UNHOOK 3 // Each instance of harpoon should have the // filename of the process it is attached to. static unsigned char exec_filename[511]; static int exec_filename_critical = FALSE; static int exec_filename_workrave = FALSE; static void _get_exec_filename(void); static DWORD exec_process_id = 0; static void debug_send_message(const char *); static INLINE void if_debug_send_message(const char *); static void debug_process_menu_selection(WORD); static void debug_save_data(); static HMENU menu = NULL; static HANDLE dll_handle = NULL; static volatile HarpoonHookFunc user_callback = NULL; static ATOM notification_class = 0; #if (_WIN32_WINNT < 0x0500) typedef struct { MOUSEHOOKSTRUCT MOUSEHOOKSTRUCT; DWORD mouseData; } MOUSEHOOKSTRUCTEX, *PMOUSEHOOKSTRUCTEX; #endif static void harpoon_hook_block_only(void); /********************************************************************** * Misc **********************************************************************/ #ifdef GRAVEYARD static DWORD harpoon_get_service_pack() { HKEY hKey; DWORD dwCSDVersion; DWORD dwSize; DWORD ret = 0; if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\Control\\Windows", 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) { dwSize = sizeof(dwCSDVersion); if (RegQueryValueEx(hKey, "CSDVersion", NULL, NULL, (unsigned char *)&dwCSDVersion, &dwSize) == ERROR_SUCCESS) { ret = (LOWORD(dwCSDVersion)); } RegCloseKey(hKey); } return ret; } #endif /********************************************************************** * Blocking **********************************************************************/ HARPOON_API void harpoon_unblock_input(void) { block_input = FALSE; if_debug_send_message("block_input = FALSE"); if (user_callback == NULL && initialized) { harpoon_unhook(); } } HARPOON_API void harpoon_block_input(void) { block_input = TRUE; if_debug_send_message("block_input = TRUE"); if (user_callback == NULL && initialized) { harpoon_hook_block_only(); } } static int is_app_blocked() // Ensures we don't block any critical applications { int i; static int runonce = TRUE; if (runonce) { runonce = FALSE; /* We only need to get the filename once per process. Workrave already has exec_filename_workrave set TRUE. See harpoon hook/init functions. */ if (exec_filename_workrave) exec_filename_critical = TRUE; _get_exec_filename(); // exec_filename[]should now contain the process filename for (i = 0; i < HARPOON_MAX_UNBLOCKED_APPS; ++i) if (strncmp(exec_filename, critical_file_list[i], 510) == 0) exec_filename_critical = TRUE; if (exec_filename_critical) if_debug_send_message("-->Harpoon hooked (exec_filename_critical == TRUE)"); else if_debug_send_message("-->Harpoon hooked"); } if (exec_filename_critical) // don't block input to critical app return FALSE; else return TRUE; } static INLINE LRESULT harpoon_generic_hook_return(int code, WPARAM wpar, LPARAM lpar, HHOOK hook, BOOL forcecallnext) { // note: make sure is_app_blocked() is evaluated second. // this way we can get the instance's process name asap. if (is_app_blocked() && !forcecallnext && block_input && code == HC_ACTION) // block mouse input: return (LRESULT)-1; else return CallNextHookEx(hook, code, wpar, lpar); } /********************************************************************** * Messaging **********************************************************************/ static INLINE void harpoon_post_message(HarpoonEventType evt, int par1, int par2) { PostMessage(notification_window, WM_USER + evt, (WPARAM)par1, (LPARAM)par2); } static LRESULT CALLBACK harpoon_window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { if (debug_hwnd) { if (HIWORD(wParam) == 0 && lParam == 0 && uMsg == WM_COMMAND) // Menu item selected debug_process_menu_selection(LOWORD(wParam)); else if (uMsg == WM_SIZE && wParam != SIZE_MINIMIZED) // If the notification window is resized, resize debug_hwnd. { MoveWindow(debug_hwnd, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE); if_debug_send_message("WM_SIZE: notification_window resized."); } else if (uMsg == WM_SYSCOMMAND && wParam == SC_CLOSE) // Prevent the user from closing the notification window. { if_debug_send_message("The notification window cannot be closed."); if_debug_send_message("Preferences > Advanced > harpoon > Disable Debug"); return (LRESULT)-1; } } if (user_callback) { HarpoonEvent evt; int evt_type; evt.type = HARPOON_NOTHING; evt_type = uMsg - WM_USER; if (evt_type >= 0 && evt_type < HARPOON_EVENT__SIZEOF) { evt.type = (HarpoonEventType)evt_type; switch (evt.type) { case HARPOON_KEY_PRESS: case HARPOON_KEY_RELEASE: evt.keyboard.flags = (int)lParam; break; case HARPOON_BUTTON_PRESS: case HARPOON_BUTTON_RELEASE: case HARPOON_2BUTTON_PRESS: case HARPOON_MOUSE_WHEEL: case HARPOON_MOUSE_MOVE: /* The x and y mouse coordinates are packed into lParam. Here we separate x and y. It's important to cast as signed, because the coordinate(s) could be negative. Casting to the signed type allows the compiler to properly promote the signed short to a signed int. */ evt.mouse.x = (short)LOWORD(lParam); evt.mouse.y = (short)HIWORD(lParam); if (evt.type == HARPOON_MOUSE_WHEEL) { evt.mouse.button = -1; evt.mouse.wheel = (int)wParam; } else { evt.mouse.button = (int)wParam; evt.mouse.wheel = 0; } break; default: evt.type = HARPOON_NOTHING; } if (evt.type != HARPOON_NOTHING) { (*user_callback)(&evt); } } } return DefWindowProc(hwnd, uMsg, wParam, lParam); } /********************************************************************** * Mouse hook **********************************************************************/ static LRESULT CALLBACK harpoon_mouse_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = FALSE; if (code == HC_ACTION) { PMOUSEHOOKSTRUCT pmhs = (PMOUSEHOOKSTRUCT)lpar; HarpoonEventType evt = HARPOON_NOTHING; int button = -1; int x = pmhs->pt.x; int y = pmhs->pt.y; // If WH_MOUSE_LL is hooked, // WH_MOUSE messages are not appended to the debug window. // This is mainly to avoid overflow. switch (wpar) { case WM_NCLBUTTONDOWN: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCLBUTTONDOWN"); case WM_LBUTTONDOWN: button = 0; evt = HARPOON_BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_LBUTTONDOWN) debug_send_message("WH_MOUSE: WM_LBUTTONDOWN"); break; case WM_NCMBUTTONDOWN: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCMBUTTONDOWN"); case WM_MBUTTONDOWN: button = 1; evt = HARPOON_BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_MBUTTONDOWN) debug_send_message("WH_MOUSE: WM_MBUTTONDOWN"); break; case WM_NCRBUTTONDOWN: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCRBUTTONDOWN"); case WM_RBUTTONDOWN: button = 2; evt = HARPOON_BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_RBUTTONDOWN) debug_send_message("WH_MOUSE: WM_RBUTTONDOWN"); break; case WM_NCXBUTTONDOWN: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCXBUTTONDOWN"); case WM_XBUTTONDOWN: button = (HIWORD(wpar) == XBUTTON1) ? 3 : 4; evt = HARPOON_BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_XBUTTONDOWN) debug_send_message("WH_MOUSE: WM_XBUTTONDOWN"); break; case WM_NCLBUTTONUP: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCLBUTTONUP"); case WM_LBUTTONUP: button = 0; evt = HARPOON_BUTTON_RELEASE; if (debug && !mouse_ll_hook && wpar == WM_LBUTTONUP) debug_send_message("WH_MOUSE: WM_LBUTTONUP"); break; case WM_NCMBUTTONUP: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCMBUTTONUP"); case WM_MBUTTONUP: button = 1; evt = HARPOON_BUTTON_RELEASE; if (debug && !mouse_ll_hook && wpar == WM_MBUTTONUP) debug_send_message("WH_MOUSE: WM_MBUTTONUP"); break; case WM_NCRBUTTONUP: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCRBUTTONUP"); case WM_RBUTTONUP: button = 2; evt = HARPOON_BUTTON_RELEASE; if (debug && !mouse_ll_hook && wpar == WM_RBUTTONUP) debug_send_message("WH_MOUSE: WM_RBUTTONUP"); break; case WM_NCXBUTTONUP: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCXBUTTONUP"); case WM_XBUTTONUP: button = (HIWORD(wpar) == XBUTTON1) ? 3 : 4; evt = HARPOON_BUTTON_RELEASE; if (debug && !mouse_ll_hook && wpar == WM_XBUTTONUP) debug_send_message("WH_MOUSE: WM_XBUTTONUP"); break; case WM_NCLBUTTONDBLCLK: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCLBUTTONDBLCLK"); case WM_LBUTTONDBLCLK: button = 0; evt = HARPOON_2BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_LBUTTONDBLCLK) debug_send_message("WH_MOUSE: WM_LBUTTONDBLCLK"); break; case WM_NCMBUTTONDBLCLK: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCMBUTTONDBLCLK"); case WM_MBUTTONDBLCLK: button = 1; evt = HARPOON_2BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_MBUTTONDBLCLK) debug_send_message("WH_MOUSE: WM_MBUTTONDBLCLK"); break; case WM_NCRBUTTONDBLCLK: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCRBUTTONDBLCLK"); case WM_RBUTTONDBLCLK: button = 2; evt = HARPOON_2BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_RBUTTONDBLCLK) debug_send_message("WH_MOUSE: WM_RBUTTONDBLCLK"); break; case WM_NCXBUTTONDBLCLK: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCXBUTTONDBLCLK"); case WM_XBUTTONDBLCLK: button = (HIWORD(wpar) == XBUTTON1) ? 3 : 4; evt = HARPOON_2BUTTON_PRESS; if (debug && !mouse_ll_hook && wpar == WM_XBUTTONDBLCLK) debug_send_message("WH_MOUSE: WM_XBUTTONDBLCLK"); break; case WM_MOUSEWHEEL: evt = HARPOON_MOUSE_WHEEL; button = 1; if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_MOUSEWHEEL"); break; #ifdef WM_MOUSEHWHEEL case WM_MOUSEHWHEEL: evt = HARPOON_MOUSE_WHEEL; button = 2; if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_MOUSEHWHEEL"); break; #endif case WM_NCMOUSEMOVE: if (debug && !mouse_ll_hook) debug_send_message("WH_MOUSE: WM_NCMOUSEMOVE"); case WM_MOUSEMOVE: evt = HARPOON_MOUSE_MOVE; if (debug && !mouse_ll_hook && wpar == WM_MOUSEMOVE) debug_send_message("WH_MOUSE: WM_MOUSEMOVE"); } /* The low-level mouse hook is always preferred over the regular mouse hook. The low-level hook posts its own message to the notification window. Here, we check to see if there is a low-level hook. If not, we post our own message. */ if (!mouse_ll_hook && evt != HARPOON_NOTHING) harpoon_post_message(evt, button, MAKELONG(x, y)); if (evt == HARPOON_BUTTON_RELEASE) { forcecallnext = TRUE; } } return harpoon_generic_hook_return(code, wpar, lpar, mouse_hook, forcecallnext); } static LRESULT CALLBACK harpoon_mouse_ll_hook(int code, WPARAM wpar, LPARAM lpar) { if (code == HC_ACTION) { PMSLLHOOKSTRUCT pmhs = (PMSLLHOOKSTRUCT)lpar; HarpoonEventType evt = HARPOON_NOTHING; int button = -1; int x = pmhs->pt.x; int y = pmhs->pt.y; switch (wpar) { case WM_LBUTTONDOWN: button = 0; evt = HARPOON_BUTTON_PRESS; if_debug_send_message("WH_MOUSE_LL: WM_LBUTTONDOWN"); break; case WM_MBUTTONDOWN: button = 1; evt = HARPOON_BUTTON_PRESS; if_debug_send_message("WH_MOUSE_LL: WM_MBUTTONDOWN"); break; case WM_RBUTTONDOWN: button = 2; evt = HARPOON_BUTTON_PRESS; if_debug_send_message("WH_MOUSE_LL: WM_RBUTTONDOWN"); break; case WM_XBUTTONDOWN: button = (HIWORD(wpar) == XBUTTON1) ? 3 : 4; evt = HARPOON_BUTTON_PRESS; if_debug_send_message("WH_MOUSE_LL: WM_XBUTTONDOWN"); break; case WM_LBUTTONUP: button = 0; evt = HARPOON_BUTTON_RELEASE; if_debug_send_message("WH_MOUSE_LL: WM_LBUTTONUP"); break; case WM_MBUTTONUP: button = 1; evt = HARPOON_BUTTON_RELEASE; if_debug_send_message("WH_MOUSE_LL: WM_MBUTTONUP"); break; case WM_RBUTTONUP: button = 2; evt = HARPOON_BUTTON_RELEASE; if_debug_send_message("WH_MOUSE_LL: WM_RBUTTONUP"); break; case WM_XBUTTONUP: button = (HIWORD(wpar) == XBUTTON1) ? 3 : 4; evt = HARPOON_BUTTON_RELEASE; if_debug_send_message("WH_MOUSE_LL: WM_XBUTTONUP"); break; case WM_MOUSEWHEEL: evt = HARPOON_MOUSE_WHEEL; button = 1; if_debug_send_message("WH_MOUSE_LL: WM_MOUSEWHEEL"); break; #ifdef WM_MOUSEHWHEEL case WM_MOUSEHWHEEL: evt = HARPOON_MOUSE_WHEEL; button = 2; if_debug_send_message("WH_MOUSE_LL: WM_MOUSEHWHEEL"); break; #endif case WM_MOUSEMOVE: evt = HARPOON_MOUSE_MOVE; if_debug_send_message("WH_MOUSE_LL: WM_MOUSEMOVE"); } if (evt != HARPOON_NOTHING) harpoon_post_message(evt, button, MAKELONG(x, y)); } return harpoon_generic_hook_return(code, wpar, lpar, mouse_ll_hook, TRUE); } static LRESULT CALLBACK harpoon_mouse_block_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = FALSE; if (code == HC_ACTION) { if_debug_send_message("WH_MOUSE"); switch (wpar) { case WM_LBUTTONUP: case WM_MBUTTONUP: case WM_RBUTTONUP: case WM_XBUTTONUP: forcecallnext = TRUE; } } return harpoon_generic_hook_return(code, wpar, lpar, mouse_hook, forcecallnext); } /********************************************************************** * Keyboard hook **********************************************************************/ #ifdef GRAVEYARD static BOOL harpoon_supports_keyboard_ll(void) { OSVERSIONINFO info; BOOL ret = FALSE; if (GetVersionEx(&info)) { if (info.dwPlatformId > VER_PLATFORM_WIN32_NT) { ret = TRUE; } else if (info.dwPlatformId == VER_PLATFORM_WIN32_NT) { /* Check for min. SP3. */ DWORD sp = harpoon_get_service_pack(); ret = (sp >= 0x300); } } return ret; } #endif static LRESULT CALLBACK harpoon_keyboard_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = FALSE; if (code == HC_ACTION) { BOOL pressed = (lpar & (1 << 31)) == 0; BOOL prevpressed = (lpar & (1 << 30)) != 0; HarpoonEventType evt; int flags = 0; if (pressed && prevpressed) { flags |= HARPOON_KEY_REPEAT_FLAG; } evt = pressed ? HARPOON_KEY_PRESS : HARPOON_KEY_RELEASE; forcecallnext = !pressed; /* The low-level keyboard hook is always preferred over the regular keyboard hook. The low-level hook posts its own message to the notification window. Here, we check to see if there is a low-level hook. If not, we post our own message. */ if (!keyboard_ll_hook) { // The low level hook also intercepts keys injected using keybd_event. // Some application use this function to toggle the keyboard lights... if (wpar != VK_NUMLOCK && wpar != VK_CAPITAL && wpar != VK_SCROLL) { harpoon_post_message(evt, 0, flags); } } if_debug_send_message("WH_KEYBOARD"); } return harpoon_generic_hook_return(code, wpar, lpar, keyboard_hook, forcecallnext); } static LRESULT CALLBACK harpoon_keyboard_ll_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = FALSE; if (code == HC_ACTION) { KBDLLHOOKSTRUCT *kb = (KBDLLHOOKSTRUCT *)lpar; BOOL pressed = !(kb->flags & (1 << 7)); forcecallnext = !pressed; // The low level hook also intercepts keys injected using keybd_event. // Some application use this function to toggle the keyboard lights... if (kb->vkCode != VK_NUMLOCK && kb->vkCode != VK_CAPITAL && kb->vkCode != VK_SCROLL) { HarpoonEventType evt = pressed ? HARPOON_KEY_PRESS : HARPOON_KEY_RELEASE; harpoon_post_message(evt, 0, 0); if_debug_send_message("WH_KEYBOARD_LL"); } } return harpoon_generic_hook_return(code, wpar, lpar, keyboard_ll_hook, forcecallnext); } static LRESULT CALLBACK harpoon_keyboard_block_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = FALSE; if (code == HC_ACTION) { BOOL pressed = (lpar & (1 << 31)) == 0; forcecallnext = !pressed; if_debug_send_message("WH_KEYBOARD"); } return harpoon_generic_hook_return(code, wpar, lpar, keyboard_hook, forcecallnext); } static LRESULT CALLBACK harpoon_msg_block_hook(int code, WPARAM wpar, LPARAM lpar) { BOOL forcecallnext = TRUE; if (code >= 0) { // if (is_app_blocked() && block_input) //{ // ((MSG*)lpar)->message = WM_NULL; //} if (((MSG *)lpar)->message == WM_KEYDOWN) { if (is_app_blocked() && block_input) { ((MSG *)lpar)->message = WM_NULL; } } if (((MSG *)lpar)->message >= WM_MOUSEFIRST && ((MSG *)lpar)->message <= WM_MOUSELAST) { if (is_app_blocked() && block_input) { ((MSG *)lpar)->message = WM_NULL; } } if (((MSG *)lpar)->message >= WM_NCMOUSEMOVE && ((MSG *)lpar)->message <= WM_NCMOUSEMOVE + 0x10) { if (is_app_blocked() && block_input) { ((MSG *)lpar)->message = WM_NULL; } } } return CallNextHookEx(msg_hook, code, wpar, lpar); } /********************************************************************** * Initialisation **********************************************************************/ HARPOON_API BOOL harpoon_init(char imported_critical_file_list[][511], BOOL debug_harpoon) { int i; RECT rect; HMENU menu_popup; DWORD dwStyle, dwExStyle; WNDCLASSEX wclass = { sizeof(WNDCLASSEX), 0, harpoon_window_proc, 0, 0, dll_handle, NULL, NULL, NULL, NULL, HARPOON_WINDOW_CLASS, NULL}; harpoon_exit(); /* This main init function is only called from workrave Set exec_filename_workrave/critical TRUE */ exec_filename_workrave = TRUE; exec_filename_critical = TRUE; notification_class = RegisterClassEx(&wclass); if (!notification_class) return FALSE; if (debug_harpoon) // The notification window should be visible and have a menu. { dwStyle = WS_OVERLAPPEDWINDOW | WS_VISIBLE; dwExStyle = WS_EX_APPWINDOW | WS_EX_STATICEDGE; menu = CreateMenu(); menu_popup = CreatePopupMenu(); if (menu && menu_popup) { AppendMenu(menu_popup, MF_STRING, IDM_MENU_SAVE, "&Save"); AppendMenu(menu_popup, MF_SEPARATOR, 0, 0); AppendMenu(menu_popup, MF_STRING | MF_CHECKED, IDM_MENU_MONITOR, "Capture &Debug Messages"); AppendMenu(menu_popup, MF_SEPARATOR, 0, 0); AppendMenu(menu_popup, MF_STRING, IDM_MENU_CLEAR, "&Clear Display"); AppendMenu(menu_popup, MF_STRING, IDM_MENU_UNHOOK, "&Unhook"); AppendMenu(menu, MF_POPUP, (UINT_PTR)menu_popup, "&Menu"); } else { DestroyMenu(menu); DestroyMenu(menu_popup); menu = menu_popup = NULL; } } else { dwStyle = WS_OVERLAPPED; dwExStyle = WS_EX_TOOLWINDOW; menu = menu_popup = NULL; } notification_window = CreateWindowEx(dwExStyle, HARPOON_WINDOW_CLASS, HARPOON_WINDOW_CLASS, dwStyle, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, menu, dll_handle, NULL); if (!notification_window) { DestroyMenu(menu); UnregisterClass(HARPOON_WINDOW_CLASS, dll_handle); notification_class = 0; return FALSE; } if (debug_harpoon) // We need an edit control to send debug messages to. { GetClientRect(notification_window, &rect); debug_hwnd = CreateWindow("EDIT", "", WS_CHILD | WS_VISIBLE | WS_VSCROLL | ES_AUTOVSCROLL | ES_MULTILINE | ES_WANTRETURN, rect.left, rect.top, rect.right, rect.bottom, notification_window, NULL, dll_handle, NULL); if (debug_hwnd) { SendMessage(debug_hwnd, EM_SETLIMITTEXT, 0x7FFFFFFE, 0); // Assign debug flag global. debug = debug_harpoon; debug_send_message( "Note: If both WH_MOUSE and WH_MOUSE_LL are hooked, " "WH_MOUSE messages are not appended to the debug window. " "This is done mainly to avoid overflow."); debug_send_message("Initializing..."); } else { debug = FALSE; } UpdateWindow(notification_window); } for (i = 0; i < HARPOON_MAX_UNBLOCKED_APPS; ++i) { strncpy(critical_file_list[i], imported_critical_file_list[i], 510); critical_file_list[i][510] = '\0'; if (critical_file_list[i][0] != '\0') { if_debug_send_message("Critical file will not have input blocked:"); if_debug_send_message(critical_file_list[i]); } } if_debug_send_message("harpoon_init() success"); initialized = TRUE; return TRUE; } HARPOON_API void harpoon_exit(void) { if_debug_send_message("harpoon_exit() called"); harpoon_unhook(); initialized = FALSE; block_input = FALSE; debug = FALSE; debug_hwnd = NULL; if (notification_window) { DestroyWindow(notification_window); notification_window = NULL; } if (notification_class) { UnregisterClass(HARPOON_WINDOW_CLASS, dll_handle); notification_class = 0; } } HARPOON_API void harpoon_unhook() { if_debug_send_message("harpoon_unhook() called"); if (msg_hook) { UnhookWindowsHookEx(msg_hook); if_debug_send_message("UnhookWindowsHookEx(msg_hook)"); msg_hook = NULL; } if (mouse_hook) { UnhookWindowsHookEx(mouse_hook); if_debug_send_message("UnhookWindowsHookEx(mouse_hook)"); mouse_hook = NULL; } if (mouse_ll_hook) { UnhookWindowsHookEx(mouse_ll_hook); if_debug_send_message("UnhookWindowsHookEx(mouse_ll_hook)"); mouse_ll_hook = NULL; } if (keyboard_hook) { UnhookWindowsHookEx(keyboard_hook); if_debug_send_message("UnhookWindowsHookEx(keyboard_hook)"); keyboard_hook = NULL; } if (keyboard_ll_hook) { UnhookWindowsHookEx(keyboard_ll_hook); if_debug_send_message("UnhookWindowsHookEx(keyboard_ll_hook)"); keyboard_ll_hook = NULL; } user_callback = NULL; } HARPOON_API BOOL harpoon_hook(HarpoonHookFunc func, BOOL keyboard_lowlevel, BOOL mouse_lowlevel) { if_debug_send_message("harpoon_hook() called"); /* This hook init function is only called from workrave Set exec_filename_workrave/critical TRUE */ exec_filename_workrave = TRUE; exec_filename_critical = TRUE; if (!notification_window || !func) { if_debug_send_message("!notification_window || !func"); if_debug_send_message("harpoon hook initialization failure"); return FALSE; } harpoon_unhook(); user_callback = func; if (mouse_lowlevel == TRUE) { mouse_ll_hook = SetWindowsHookEx(WH_MOUSE_LL, harpoon_mouse_ll_hook, dll_handle, 0); if (mouse_ll_hook) if_debug_send_message("SetWindowsHookEx: WH_MOUSE_LL (success)"); else if_debug_send_message("SetWindowsHookEx: WH_MOUSE_LL (failure)"); } /* WH_MOUSE is always hooked. It's needed to determine which applications to block. There is no way to determine the destination window/application when using only LL hooks. */ mouse_hook = SetWindowsHookEx(WH_MOUSE, harpoon_mouse_hook, dll_handle, 0); if (mouse_hook) if_debug_send_message("SetWindowsHookEx: WH_MOUSE (success)"); else if_debug_send_message("SetWindowsHookEx: WH_MOUSE (failure)"); if (keyboard_lowlevel == TRUE) { keyboard_ll_hook = SetWindowsHookEx(WH_KEYBOARD_LL, harpoon_keyboard_ll_hook, dll_handle, 0); if (keyboard_ll_hook) if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD_LL (success)"); else if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD_LL (failure)"); } keyboard_hook = SetWindowsHookEx(WH_KEYBOARD, harpoon_keyboard_hook, dll_handle, 0); if (keyboard_hook) if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD (success)"); else if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD (failure)"); if ((!keyboard_hook && !keyboard_ll_hook) || !mouse_hook) { if_debug_send_message("harpoon_hook() failure"); return FALSE; } else { if_debug_send_message("harpoon_hook() success"); return TRUE; } } static void harpoon_hook_block_only(void) { if_debug_send_message("harpoon_hook_block_only() called"); /* This hook init function is only called from workrave Set exec_filename_workrave/critical TRUE */ exec_filename_workrave = TRUE; exec_filename_critical = TRUE; if (user_callback == NULL) { harpoon_unhook(); #ifdef _WIN64 if (msg_hook == NULL) { msg_hook = SetWindowsHookEx(WH_GETMESSAGE, harpoon_msg_block_hook, dll_handle, 0); if (msg_hook) if_debug_send_message("SetWindowsHookEx: WH_GETMESSAGE (success)"); else { if_debug_send_message("SetWindowsHookEx: WH_GETMESSAGE (failure)"); harpoon_exit(); } } #else if (mouse_hook == NULL) { mouse_hook = SetWindowsHookEx(WH_MOUSE, harpoon_mouse_block_hook, dll_handle, 0); if (mouse_hook) if_debug_send_message("SetWindowsHookEx: WH_MOUSE (success)"); else { if_debug_send_message("SetWindowsHookEx: WH_MOUSE (failure)"); harpoon_exit(); } } if (keyboard_hook == NULL) { keyboard_hook = SetWindowsHookEx(WH_KEYBOARD, harpoon_keyboard_block_hook, dll_handle, 0); if (keyboard_hook) if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD (success)"); else { if_debug_send_message("SetWindowsHookEx: WH_KEYBOARD (failure)"); harpoon_exit(); } } #endif } } static void _get_exec_filename() { // keep this code out of dllmain. don't call from dllmain. // jay satiro, workrave project, august 2007 // no _pgmptr. no psapi, for compatibility. // GetModuleBaseNameA( GetCurrentProcess(), NULL, lpstr, 255 ); /* GetModuleFileNameA: MSDN does not note: -SetLastError code is not set on success (appears <= XP) -The maximum number of possible characters returned. -On Vista, the copied string is always null terminated: if ( bytes_copied == nSize ) dest_ptr[ nSize - 1 ] = '\0'; return bytes_copied; The last character could be lost if that null is unaccounted for. -- e.g. fullpath = "F:\f\f.exe" GetModuleFileNameA( NULL, buffer, 10 ): On XP and others, no termination: 'F',':','\','f','\','f','.','e','x','e' On Vista, ERROR_INSUFFICIENT_BUFFER: 'F',':','\','f','\','f','.','e','x','\0' */ int size; DWORD ret; unsigned char *p, *buffer; for (size = 1024, buffer = NULL; buffer = realloc(buffer, size + 1); size *= 2) // This doubles the buffer until it can hold the filename. { SetLastError(NO_ERROR); ret = GetModuleFileNameA(NULL, buffer, size); if (ret && GetLastError() == NO_ERROR) break; if (size >= 65536) // far enough { free(buffer); buffer = NULL; break; } } if (!buffer) { // Filename can't be ascertained :( exec_filename[0] = '\0'; if_debug_send_message("This application's filename can't be ascertained :("); return; } buffer[ret] = '\0'; // MS ANSI codepages include DBCS: // http://codesnipers.com/?q=node/34 // Search the path to find where the filename starts: if (p = (unsigned char *)_mbsrchr(buffer, '\\')) // Point to first (mb) filename character ++p; else // No path. Probably a Windows Me/98/95 filename p = buffer; _mbstrncpy_lowercase(exec_filename, p, 510); exec_filename[510] = '\0'; free(buffer); } /********************************************************************** * Main **********************************************************************/ BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) // don't call init or debug stuff from here { dll_handle = hModule; switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: exec_process_id = GetCurrentProcessId(); case DLL_PROCESS_DETACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: break; } return TRUE; } HARPOON_API char * _mbstrncpy_lowercase(const char *out, const char *in, int bytes) // keep this code out of dllmain. don't call from dllmain. { int mb = 0; unsigned char *src = (unsigned char *)in; unsigned char *dest = (unsigned char *)out; if (bytes <= 0 || !in || !out) return NULL; while ((mb = _mbsnextc(src)) > 0) // This makes a lowercase copy of the filename. { // Point to next (mb) character: (mb >> 8) ? (src += 2) : (src += 1); mb = _mbctolower(mb); *dest++ = (unsigned char)mb; if (--bytes == 0) break; if (*dest = (unsigned char)(mb >> 8)) { ++dest; if (--bytes == 0) break; } } memset(dest, 0, bytes); return (char *)out; } /********************************************************************** * Debug **********************************************************************/ static void debug_send_message(const char *str) /* Here we send a message to the edit control. debug_send_message( "WH_MOUSE" ) would append something like this: 1:55:05 PM: whatever.exe(123): WH_MOUSE The passed in str should be no more than 480 bytes long: max exec_filename len 510 pid/time/formatting chars about 30 buffer len is 1024 - 540 = ~480 max str len */ { static char str_previous_call[100] = {'\0'}; static WORD wHour_previous_call = 0; static WORD wMinute_previous_call = 0; static WORD wSecond_previous_call = 0; char buffer[1024]; char mer[3] = "AM"; SYSTEMTIME local; /* SCROLLINFO si = { sizeof( SCROLLINFO ), SIF_POS | SIF_RANGE, 0, 0, 0, 0, 0 }; */ GetLocalTime(&local); if (local.wSecond == wSecond_previous_call && local.wMinute == wMinute_previous_call && local.wHour == wHour_previous_call && strncmp(str, str_previous_call, 100) == 0) // we only update once per second if the message is the same // the first 100 chars of the message are compared to last msg return; else { wSecond_previous_call = local.wSecond; wMinute_previous_call = local.wMinute; wHour_previous_call = local.wHour; strncpy(str_previous_call, str, 99); str_previous_call[99] = '\0'; } if (local.wHour > 12) // Make clock 12 hour, set meridiem identifier to PM { local.wHour = local.wHour - 12; mer[0] = 'P'; } else if (local.wHour == 0) // 12am local.wHour = (WORD)12; snprintf(buffer, 1023, "%u:%02u:%02u %s:\t%s (%u):\t %s\r\n", (DWORD)local.wHour, (DWORD)local.wMinute, (DWORD)local.wSecond, mer, exec_filename, exec_process_id, str); buffer[1023] = '\0'; // Move caret to the end of current text SendMessage(debug_hwnd, EM_SETSEL, 0, -1); SendMessage(debug_hwnd, EM_SETSEL, -1, -1); // Append at caret position SendMessage(debug_hwnd, EM_REPLACESEL, 0, (LPARAM)buffer); /* GetScrollInfo( debug_hwnd, SB_VERT, &si ); if( si.nPos >= si.nMax ) // If the scrollbar position is at the bottom, scroll to caret SendMessage( debug_hwnd, EM_SCROLLCARET, 0, 0 ); */ } static INLINE void if_debug_send_message(const char *str) { if (debug) debug_send_message(str); } static void debug_process_menu_selection(WORD idm) { DWORD ret; switch (idm) { case IDM_MENU_SAVE: if_debug_send_message("IDM_MENU_SAVE"); debug_save_data(); break; case IDM_MENU_MONITOR: if_debug_send_message("IDM_MENU_MONITOR"); ret = CheckMenuItem(menu, IDM_MENU_MONITOR, MF_UNCHECKED); if (ret == MF_UNCHECKED) // Menu item was previously unchecked. Toggle to checked. { CheckMenuItem(menu, IDM_MENU_MONITOR, MF_CHECKED); debug = TRUE; debug_send_message("-->Message Capture Enabled."); } else // User selected to disable messages. { debug = FALSE; debug_send_message("-->Message Capture Disabled."); } break; case IDM_MENU_CLEAR: SetWindowText(debug_hwnd, ""); if_debug_send_message("IDM_MENU_CLEAR"); break; case IDM_MENU_UNHOOK: harpoon_unhook(); if_debug_send_message("IDM_MENU_UNHOOK"); break; } return; } static void debug_save_data() // This is called if the user opts to save the messages to a file. { char *buffer; char filename[MAX_PATH] = {'\0'}; int unload = FALSE; HANDLE handle; HMODULE hmm; DWORD ret, text_length; OPENFILENAME ofn = { #if defined(WINVER) && (_WIN32_WINNT >= 0x0500) OPENFILENAME_SIZE_VERSION_400, #else sizeof(OPENFILENAME), #endif debug_hwnd, // hwndOwner NULL, // hInstance "All Files\0*.*\0\0", // lpstrFilter NULL, // lpstrCustomFilter 0, // nMaxCustFilter 1, // nFilterIndex filename, // lpstrFile MAX_PATH, // nMaxFile NULL, // lpstrFileTitle 0, // nMaxFileTitle NULL, // lpstrInitialDir NULL, // lpstrTitle OFN_PATHMUSTEXIST | OFN_OVERWRITEPROMPT, // Flags 0, // nFileOffset 0, // nFileExtension "txt", // lpstrDefExt 0, // lCustData NULL, // lpfnHook NULL // lpTemplateName #if defined(WINVER) && (_WIN32_WINNT >= 0x0500) , NULL, 0, 0 #endif }; BOOL(WINAPI * GetSaveFileNameA)(OPENFILENAME *); if ((hmm = GetModuleHandleA("comdlg32.dll")) == NULL) { if ((hmm = LoadLibraryA("comdlg32.dll")) == NULL) { debug_send_message("-->Data not saved. LoadLibrary() failed"); return; } unload = TRUE; } GetSaveFileNameA = (BOOL(WINAPI *)(OPENFILENAME *))GetProcAddress(hmm, "GetSaveFileNameA"); if (GetSaveFileNameA == NULL) { debug_send_message("-->Data not saved. GetProcAddress() failed"); if (unload) FreeLibrary(hmm); return; } if ((*GetSaveFileNameA)(&ofn) == 0) { debug_send_message("-->Data not saved. GetSaveFileName() failed"); if (unload) FreeLibrary(hmm); return; } if (unload) FreeLibrary(hmm); handle = CreateFile(filename, // lpFileName GENERIC_WRITE, // dwDesiredAccess 0, // dwShareMode NULL, // lpSecurityAttributes CREATE_ALWAYS, // dwCreationDisposition FILE_ATTRIBUTE_NORMAL, // dwFlagsAndAttributes NULL // hTemplateFile ); if (handle == INVALID_HANDLE_VALUE) { debug_send_message("-->Data not saved. CreateFile() failed"); return; } text_length = (DWORD)GetWindowTextLength(debug_hwnd); if (!text_length) { debug_send_message("-->Data not saved. GetWindowTextLength() failed"); CloseHandle(handle); return; } if (!(buffer = malloc(text_length + 1))) { debug_send_message("-->Data not saved. malloc() failed"); CloseHandle(handle); return; } ret = (DWORD)GetWindowText(debug_hwnd, buffer, (int)text_length + 1); if (ret != text_length) { debug_send_message("-->Data not saved. GetWindowText() failed"); CloseHandle(handle); free(buffer); return; } buffer[text_length] = '\0'; WriteFile(handle, // hFile buffer, // lpBuffer text_length, // nNumberOfBytesToWrite &ret, // lpNumberOfBytesWritten (always first set to 0 by WriteFile) NULL // lpOverlapped ); if (ret != text_length) debug_send_message("-->Data possibly not saved. WriteFile() failed"); CloseHandle(handle); free(buffer); return; } workrave-1.10.50/common/win32/harpoon/src/Makefile.in0000644000000000000000000004112114221624200022240 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2008, 2010 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoon/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.vcproj) $(wildcard $(srcdir)/*.dsp) $(wildcard $(srcdir)/*.def) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoon/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoon/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoon/src/Makefile.am0000644000175100001710000000050714221624107021147 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2008, 2010 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.vcproj) $(wildcard $(srcdir)/*.dsp) $(wildcard $(srcdir)/*.def) workrave-1.10.50/common/win32/harpoon/src/harpoon.vcproj0000644000175100001710000002744114221624107022014 0ustar00gdm00000000000000 workrave-1.10.50/common/win32/harpoon/src/harpoon.def0000644000175100001710000000025614221624107021242 0ustar00gdm00000000000000EXPORTS harpoon_unblock_input @1 harpoon_block_input @2 harpoon_init @3 harpoon_exit @4 harpoon_unhook @5 harpoon_hook @6 _mbstrncpy_lowercase @7 workrave-1.10.50/common/win32/harpoon/Makefile.in0000644000000000000000000005525714221624200021470 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoon ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoon/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoon/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoon/Makefile.am0000644000175100001710000000027214221624107020357 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src workrave-1.10.50/common/win32/Makefile.am0000644000175100001710000000031214221624107016704 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008, 2010 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = harpoon harpoonHelper workrave-1.10.50/common/win32/harpoonHelper/0000755000000000000000000000000014221624436020560 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoonHelper/include/0000755000000000000000000000000014221624436022203 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoonHelper/include/Makefile.in0000644000000000000000000004075414221624201024250 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoonHelper/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoonHelper/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoonHelper/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoonHelper/include/Makefile.am0000644000175100001710000000030514221624107023137 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/common/win32/harpoonHelper/include/HarpoonHelper.h0000644000175100001710000000412214221624107024023 0ustar00gdm00000000000000// Harpoon.hh --- ActivityMonitor for W32 // // Copyright (C) 2002, 2004, 2006, 2007, 2010 Raymond Penners // Copyright (C) 2007 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef HARPOON_HELPER_H #define HARPOON_HELPER_H #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include #include "HarpoonHelper.h" #include "harpoon.h" #define HARPOON_HELPER_WINDOW_CLASS "HarpoonHelperNotificationWindow" typedef enum { HARPOON_HELPER_NOTHING = -1, HARPOON_HELPER_INIT = 0, HARPOON_HELPER_EXIT, HARPOON_HELPER_BLOCK, HARPOON_HELPER_UNBLOCK, HARPOON_HELPER_EVENT__SIZEOF } HarpoonHelperEventType; //! Activity monitor for a local X server. class HarpoonHelper { public: //! Constructor. HarpoonHelper(char *args); //! Destructor. virtual ~HarpoonHelper(); bool init(HINSTANCE hInstance); void run(); void terminate(); private: HINSTANCE hInstance; HWND notification_window; char *args; char critical_filename_list[HARPOON_MAX_UNBLOCKED_APPS][511]; ATOM notification_class; static LRESULT CALLBACK harpoon_window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); void init_critical_filename_list(); bool check_for_taskmgr_debugger(char *out); }; #endif // HARPOON_HELPER_H workrave-1.10.50/common/win32/harpoonHelper/src/0000755000000000000000000000000014221624436021347 5ustar00rootroot00000000000000workrave-1.10.50/common/win32/harpoonHelper/src/Debug.h0000644000175100001710000000451614221624107021456 0ustar00gdm00000000000000// Debug.hh // // Copyright (C) 2001 - 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DEBUG_HH #define DEBUG_HH #include #ifdef NDEBUG # define TRACE_ENTER(x) # define TRACE_ENTER_MSG(x, y) # define TRACE_RETURN(x) # define TRACE_EXIT() # define TRACE_MSG(x) #else # include # include # include # include # include extern std::ofstream g_log_stream; class Debug { public: static void init(); static std::string trace_get_time(); }; # define TRACE_ENTER(x) \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << std::endl; \ std::cerr.flush(); # define TRACE_ENTER_MSG(x, y) \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << " " << y << std::endl; \ std::cerr.flush(); # define TRACE_RETURN(y) \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << y << std::endl; \ std::cerr.flush(); # define TRACE_EXIT() \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << std::endl; \ std::cerr.flush(); # define TRACE_MSG(msg) \ std::cerr << Debug::trace_get_time() << " " << _trace_method_name << " " << msg << std::endl; \ std::cerr.flush(); #endif // TRACING #endif // DEBUG_H workrave-1.10.50/common/win32/harpoonHelper/src/HarpoonHelper.cpp0000644000175100001710000001643414221624107023533 0ustar00gdm00000000000000// Harpoon.cc --- ActivityMonitor for W32 // // Copyright (C) 2007 Ray Satiro // Copyright (C) 2007, 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #define _CRT_SECURE_NO_WARNINGS #include #include #include #include "HarpoonHelper.h" #include "Debug.h" #include "Config.h" using namespace std; HarpoonHelper::HarpoonHelper(char *args) : args(args) { } HarpoonHelper::~HarpoonHelper() { terminate(); } bool HarpoonHelper::init(HINSTANCE hInstance) { TRACE_ENTER("HarpoonHelper::init"); this->hInstance = hInstance; DWORD dwStyle, dwExStyle; dwStyle = WS_OVERLAPPED; dwExStyle = WS_EX_TOOLWINDOW; WNDCLASSEX wclass = { sizeof(WNDCLASSEX), 0, harpoon_window_proc, 0, 0, hInstance, NULL, NULL, NULL, NULL, HARPOON_HELPER_WINDOW_CLASS, NULL}; notification_class = RegisterClassEx(&wclass); if (!notification_class) return FALSE; notification_window = CreateWindowEx(dwExStyle, HARPOON_HELPER_WINDOW_CLASS, HARPOON_HELPER_WINDOW_CLASS, dwStyle, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL); if (!notification_window) { UnregisterClass(HARPOON_WINDOW_CLASS, hInstance); notification_class = 0; return FALSE; } init_critical_filename_list(); bool debug = false; bool mouse_lowlevel = false; bool keyboard_lowlevel = true; if (LOBYTE(LOWORD(GetVersion())) >= 6) { mouse_lowlevel = true; } Config config; config.get_value("advanced/harpoon/debug", debug); config.get_value("advanced/harpoon/mouse_lowlevel", mouse_lowlevel); config.get_value("advanced/harpoon/keyboard_lowlevel", keyboard_lowlevel); if (!harpoon_init(critical_filename_list, (BOOL)debug)) { TRACE_RETURN(false); return false; } TRACE_RETURN(true); return true; } //! Stops the activity monitoring. void HarpoonHelper::terminate() { harpoon_exit(); } void HarpoonHelper::run() { TRACE_ENTER("HarpoonHelper::run"); MSG msg; while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } TRACE_EXIT(); } void HarpoonHelper::init_critical_filename_list() { TRACE_ENTER("HarpoonHelper::init_critical_filename_list"); Config config; int i; for (i = 0; i < HARPOON_MAX_UNBLOCKED_APPS; ++i) critical_filename_list[i][0] = '\0'; // Task Manager is always on the critical_filename_list if (GetVersion() >= 0x80000000) { // Windows Me/98/95 strcpy(critical_filename_list[0], "taskman.exe"); } else if (!check_for_taskmgr_debugger(critical_filename_list[0])) { strcpy(critical_filename_list[0], "taskmgr.exe"); } strcpy(critical_filename_list[1], "workrave.exe"); strcpy(critical_filename_list[2], args); TRACE_MSG(args); int filecount = 0; config.get_value("advanced/critical_files/filecount", filecount); if (filecount > 0) { if (filecount >= HARPOON_MAX_UNBLOCKED_APPS - 2) { filecount = HARPOON_MAX_UNBLOCKED_APPS - 3; } char loc[40]; string buffer; for (i = 1; i <= filecount; ++i) { sprintf(loc, "advanced/critical_files/file%d", i); if (config.get_value(loc, buffer)) { strncpy_s(critical_filename_list[i + 2], buffer.c_str(), 510); critical_filename_list[i][510] = '\0'; } } } TRACE_EXIT(); } bool HarpoonHelper::check_for_taskmgr_debugger(char *out) { HKEY hKey = NULL; LONG err; DWORD size; unsigned char *p, *p2, *buffer; // If there is a debugger for taskmgr, it's always critical err = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\" "Image File Execution Options\\taskmgr.exe", 0, KEY_QUERY_VALUE, &hKey); if (err != ERROR_SUCCESS) { RegCloseKey(hKey); return false; } // get the size, in bytes, required for buffer err = RegQueryValueExA(hKey, "Debugger", NULL, NULL, NULL, &size); if (err != ERROR_SUCCESS || !size) { RegCloseKey(hKey); return false; } if (!(buffer = (unsigned char *)malloc(size + 1))) { RegCloseKey(hKey); return false; } err = RegQueryValueExA(hKey, "Debugger", NULL, NULL, (LPBYTE)buffer, &size); if (err != ERROR_SUCCESS || !size) { free(buffer); RegCloseKey(hKey); return false; } buffer[size] = '\0'; // get to innermost quoted for (p2 = buffer; *p2 == '\"'; ++p2) ; if (p2 != buffer) // e.g. "my debugger.exe" /y /x { if ((p = _mbschr(p2, '\"'))) *p = '\0'; } else // e.g. debugger.exe /y /x { if ((p = _mbschr(p2, ' '))) *p = '\0'; } // Search the path to find where the filename starts: if ((p = (unsigned char *)_mbsrchr(p2, '\\'))) // Point to first (mb) filename character ++p; else // No path. p = p2; _mbstrncpy_lowercase(out, (char *)p, 510); out[510] = '\0'; RegCloseKey(hKey); free(buffer); return true; } LRESULT CALLBACK HarpoonHelper::harpoon_window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { TRACE_ENTER("HarpoonHelper::harpoon_window_proc"); int evt_type; evt_type = uMsg - WM_USER; TRACE_MSG(evt_type); if (evt_type >= 0 && evt_type < HARPOON_HELPER_EVENT__SIZEOF) { switch ((HarpoonHelperEventType)evt_type) { case HARPOON_HELPER_INIT: TRACE_MSG("init"); break; case HARPOON_HELPER_EXIT: TRACE_MSG("exit"); PostQuitMessage(0); break; case HARPOON_HELPER_BLOCK: TRACE_MSG("block"); harpoon_block_input(); break; case HARPOON_HELPER_UNBLOCK: TRACE_MSG("unblock"); harpoon_unblock_input(); break; } } TRACE_EXIT(); return DefWindowProc(hwnd, uMsg, wParam, lParam); } workrave-1.10.50/common/win32/harpoonHelper/src/Makefile.in0000644000000000000000000004130014221624201023400 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2008, 2010 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoonHelper/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) \ $(wildcard $(srcdir)/*.cpp) \ $(wildcard $(srcdir)/*.dsp) $(wildcard $(srcdir)/*.vcproj) $(wildcard $(srcdir)/*.def) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoonHelper/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoonHelper/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoonHelper/src/main.cpp0000644000175100001710000000232314221624107021701 0ustar00gdm00000000000000// main.cc --- Main // // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "HarpoonHelper.h" #include "Debug.h" int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { #ifndef NDEBUG Debug::init(); #endif TRACE_ENTER_MSG("WinMain", szCmdLine); HarpoonHelper *h = new HarpoonHelper(szCmdLine); h->init(hInstance); h->run(); TRACE_EXIT(); return (0); } workrave-1.10.50/common/win32/harpoonHelper/src/Config.h0000644000175100001710000000272414221624107021634 0ustar00gdm00000000000000// Config.hh // // Copyright (C) 2002, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CONFIG_H #define CONFIG_H #include #include #include #include class Config { public: Config(); bool get_value(const std::string &key, std::string &out) const; bool get_value(const std::string &key, int &out) const; bool get_value(const std::string &key, bool &out) const; private: std::string key_win32ify(const std::string &key) const; std::string key_add_part(std::string s, std::string t) const; void key_split(const std::string &key, std::string &parent, std::string &child) const; void strip_trailing_slash(std::string &key) const; void add_trailing_slash(std::string &key) const; std::string key_root; PHKEY key_root_handle; }; #endif // CONFIG_H workrave-1.10.50/common/win32/harpoonHelper/src/Makefile.am0000644000175100001710000000064414221624107022311 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2008, 2010 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) \ $(wildcard $(srcdir)/*.cpp) \ $(wildcard $(srcdir)/*.dsp) $(wildcard $(srcdir)/*.vcproj) $(wildcard $(srcdir)/*.def) workrave-1.10.50/common/win32/harpoonHelper/src/Config.cpp0000644000175100001710000000735414221624107022173 0ustar00gdm00000000000000// Config.cpp --- Configuration Access // // Copyright (C) 2002, 2005, 2006, 2007, 2009 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #define _CRT_SECURE_NO_WARNINGS #include #include #include "Debug.h" #include "Config.h" using namespace std; Config::Config() { key_root = "Software/Workrave"; } bool Config::get_value(const string &key, string &out) const { TRACE_ENTER_MSG("Config::get_value", key << "," << out); HKEY handle; bool rc = false; string k, p, p32, c; LONG err; k = key_add_part(key_root, key); key_split(k, p, c); p32 = key_win32ify(p); err = RegOpenKeyEx(HKEY_CURRENT_USER, p32.c_str(), 0, KEY_ALL_ACCESS, &handle); if (err == ERROR_SUCCESS) { DWORD size, type; char *buffer; // get the size, in bytes, required for buffer err = RegQueryValueExA(handle, c.c_str(), NULL, NULL, NULL, &size); if (err != ERROR_SUCCESS || !size) { RegCloseKey(handle); TRACE_EXIT(); return false; } else if (!(buffer = (char *)malloc(size + 1))) { RegCloseKey(handle); TRACE_EXIT(); return false; } err = RegQueryValueExA(handle, c.c_str(), NULL, &type, (LPBYTE)buffer, &size); buffer[size] = '\0'; if (err == ERROR_SUCCESS && type == REG_SZ) { out = buffer; rc = true; } RegCloseKey(handle); free(buffer); } TRACE_EXIT(); return rc; } //! Returns the value of the specified attribute /*! * \retval true value successfully returned. * \retval false attribute not found. */ bool Config::get_value(const string &key, int &out) const { string s; bool rc = get_value(key, s); if (rc) { int f = sscanf(s.c_str(), "%d", &out); rc = (f == 1); } return rc; } bool Config::get_value(const string &key, bool &out) const { int l; bool rc = get_value(key, l); if (rc) { out = l ? true : false; } return rc; } string Config::key_add_part(string s, string t) const { string ret = s; add_trailing_slash(ret); return ret + t; } void Config::key_split(const string &key, string &parent, string &child) const { const char *s = key.c_str(); const char *slash = strrchr(s, '/'); if (slash) { parent = key.substr(0, slash - s); child = slash + 1; } else { parent = ""; child = ""; } } string Config::key_win32ify(const string &key) const { string rc = key; strip_trailing_slash(rc); for (unsigned int i = 0; i < rc.length(); i++) { if (rc[i] == '/') { rc[i] = '\\'; } } return rc; } //! Removes the trailing '/'. void Config::strip_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] == '/') { key = key.substr(0, len - 1); } } } //! Adds add trailing '/' if it isn't there yet. void Config::add_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] != '/') { key += '/'; } } } workrave-1.10.50/common/win32/harpoonHelper/src/harpoonHelper.vcproj0000644000175100001710000001674414221624107024320 0ustar00gdm00000000000000 workrave-1.10.50/common/win32/harpoonHelper/src/Debug.cpp0000644000175100001710000000262414221624107022007 0ustar00gdm00000000000000// debug.cc // // Copyright (C) 2001, 2002, 2003, 2007, 2009, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef NDEBUG # include "Debug.h" using namespace std; std::ofstream g_log_stream; std::string Debug::trace_get_time() { char logtime[128]; time_t ltime; time(<ime); struct tm tmlt; localtime_s(&tmlt, <ime); strftime(logtime, 128, "%d%b%Y %H:%M:%S ", &tmlt); return logtime; } void Debug::init() { char logfile[128]; time_t ltime; time(<ime); struct tm tmlt; localtime_s(&tmlt, <ime); strftime(logfile, 128, "C:\\temp\\workrave-harpoon-helper-%d%b%Y-%H%M%S", &tmlt); g_log_stream.open(logfile, std::ios::app); if (g_log_stream.is_open()) { std::cerr.rdbuf(g_log_stream.rdbuf()); } } #endif workrave-1.10.50/common/win32/harpoonHelper/Makefile.in0000644000000000000000000005532514221624201022625 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008, 2010 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/win32/harpoonHelper ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src EXTRA_DIST = all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/win32/harpoonHelper/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/win32/harpoonHelper/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/win32/harpoonHelper/Makefile.am0000644000175100001710000000031614221624107021516 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008, 2010 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src EXTRA_DIST = workrave-1.10.50/common/include/0000755000000000000000000000000014221624435016432 5ustar00rootroot00000000000000workrave-1.10.50/common/include/win32/0000755000000000000000000000000014221624435017374 5ustar00rootroot00000000000000workrave-1.10.50/common/include/win32/W32CriticalSection.hh0000644000175100001710000000417014221624106022174 0ustar00gdm00000000000000// W32CriticalSection.hh --- RAII for critical section objects // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32CRITICALSECTION_HH #define W32CRITICALSECTION_HH #include #include class W32CriticalSection : public CRITICAL_SECTION { public: W32CriticalSection() { InitializeCriticalSection(this); } W32CriticalSection(DWORD dwSpinCount) { InitializeCriticalSectionAndSpinCount(this, dwSpinCount); } ~W32CriticalSection() { DeleteCriticalSection(this); } class Guard { public: explicit Guard(W32CriticalSection &cs) : critsec_(cs) { EnterCriticalSection(&critsec_); } ~Guard() { LeaveCriticalSection(&critsec_); } private: W32CriticalSection &critsec_; Guard(const Guard &); Guard &operator=(const Guard &); }; class AdvancedGuard; private: W32CriticalSection(const W32CriticalSection &); W32CriticalSection &operator=(const W32CriticalSection &); }; class W32CriticalSection::AdvancedGuard : public W32CriticalSection { public: AdvancedGuard(); explicit AdvancedGuard(W32CriticalSection &cs); ~AdvancedGuard(); bool TryLock(W32CriticalSection &cs); bool TryLockFor(W32CriticalSection &cs, const DWORD milliseconds); void Lock(W32CriticalSection &cs); void Unlock(W32CriticalSection &cs); private: std::list list_; AdvancedGuard(const AdvancedGuard &); AdvancedGuard &operator=(const AdvancedGuard &); }; #endif // W32CRITICALSECTION_HH workrave-1.10.50/common/include/win32/Makefile.in0000644000000000000000000004074414221624200021440 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/include/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/include/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/include/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/include/win32/crashlog.h0000644000175100001710000000127114221624106020252 0ustar00gdm00000000000000#ifndef CRASHLOG_H #define CRASHLOG_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #include #include #include #include #include #include void print_module_list(FILE *log); EXCEPTION_DISPOSITION __cdecl exception_handler(struct _EXCEPTION_RECORD *exception_record, void *establisher_frame, struct _CONTEXT *context_record, void *dispatcher_context); LONG WINAPI exception_filter(EXCEPTION_POINTERS *ep); #ifdef __cplusplus } #endif /* __cplusplus */ #endif workrave-1.10.50/common/include/win32/Makefile.am0000644000175100001710000000034714221624106020336 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) workrave-1.10.50/common/include/StringUtil.hh0000644000175100001710000000216614221624106017766 0ustar00gdm00000000000000// StringUtil.hh --- General purpose string utility functions // // Copyright (C) 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef STRINGUTIL_HH #define STRINGUTIL_HH #include #include class StringUtil { public: static void split(const std::string &in, const char delim, std::vector &result); static std::string search_replace(const std::string &in, const std::string &search, const std::string &replace); }; #endif // STRINGUTIL_HH workrave-1.10.50/common/include/nls.h0000644000175100001710000000261414221624106016304 0ustar00gdm00000000000000/* * nls.h --- i18n-isation * * Copyright (C) 2002, 2003, 2006, 2008, 2009 Raymond Penners * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef WORKRAVE_NLS_H #define WORKRAVE_NLS_H #ifdef ENABLE_NLS # include # include # define _(String) ((const char *)gettext(String)) # ifdef gettext_noop # define N_(String) gettext_noop(String) # else # define N_(String) (String) # endif #else /* Stubs that do something close enough. */ # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain, Message) (Message) # define dcgettext(Domain, Message, Type) (Message) # define bindtextdomain(Domain, Directory) (Domain) # define _(String) (String) # define N_(String) (String) #endif #endif // WORKRAVE_NLS_H workrave-1.10.50/common/include/Exception.hh0000644000175100001710000000257714221624106017626 0ustar00gdm00000000000000// Exception.hh --- Base exception // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EXCEPTION_HH #define EXCEPTION_HH #include #include namespace workrave { class Exception : public std::exception { public: explicit Exception(const std::string &detail) : detailed_information(detail) { } explicit Exception(const Exception &parent, const std::string &detail) { detailed_information = parent.details() + ", " + detail; } virtual ~Exception() throw() {} virtual std::string details() const throw() { return detailed_information; } private: // std::string detailed_information; }; }; // namespace workrave #endif // EXCEPTION_HH workrave-1.10.50/common/include/Makefile.in0000644000000000000000000005533214221624200020475 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/include/MacOSHelpers.hh0000644000175100001710000000210614221624106020141 0ustar00gdm00000000000000// MacOSHelpers.hh --- Helpers for OS X // // Copyright (C) 2017 Tom Parker // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOS_HELPERS_HH #define MacOS_HELPERS_HH #include #ifndef _MACH_PORT_T # define _MACH_PORT_T # include /* __darwin_mach_port_t */ typedef __darwin_mach_port_t mach_port_t; mach_port_t pthread_mach_thread_np(pthread_t); #endif /* _MACH_PORT_T */ #include #include #endifworkrave-1.10.50/common/include/Thread.hh0000644000175100001710000000167314221624106017073 0ustar00gdm00000000000000// Thread.hh // // Copyright (C) 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef THREAD_HH #define THREAD_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_GLIB) # include "GlibThread.hh" #else # error Port missing #endif #endif // THREAD_HH workrave-1.10.50/common/include/Mutex.hh0000644000175100001710000000166614221624106016770 0ustar00gdm00000000000000// Mutex.hh // // Copyright (C) 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MUTEX_HH #define MUTEX_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_GLIB) # include "GlibMutex.hh" #else # error Port missing #endif #endif // MUTEX_HH workrave-1.10.50/common/include/Diagnostics.hh0000644000175100001710000002264414221624106020134 0ustar00gdm00000000000000// Copyright (C) 2020 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DIANOSTICS_HH #define DIANOSTICS_HH #include #include #include #include #include #include class TracedFieldBase { public: TracedFieldBase() noexcept = default; static bool debug; }; class DiagnosticsSink { public: virtual void diagnostics_log(const std::string &log) = 0; }; class Diagnostics { public: using request_t = std::function; static Diagnostics &instance() { static Diagnostics *diag = new Diagnostics(); return *diag; } void enable(DiagnosticsSink *sink); void disable(); void register_topic(const std::string &name, request_t func); void unregister_topic(const std::string &name); std::string trace_get_time(); template void report(const std::string &name, const T &value) { if (enabled) { std::stringstream ss; ss << value; log(name + " -> " + ss.str()); } } void log(const std::string &txt) { if (enabled) { sink->diagnostics_log(trace_get_time() + ": " + txt); } } private: bool enabled{false}; std::map topics; DiagnosticsSink *sink{nullptr}; }; template class TracedField : public TracedFieldBase { public: using value_type = ValueType; using base_type = TracedField; explicit TracedField(const TracedField &p) noexcept : _name{p._name} , _value{p._value} , _last_published_value{p._last_published_value} , _manual{p._manual} { Diagnostics::instance().register_topic(_name, [this]() { publish(); }); if (debug && !_manual) { Diagnostics::instance().report(_name, _value); } } explicit TracedField(TracedField &&p) noexcept : _name{std::move(p._name)} , _value{std::move(p._value)} , _last_published_value{p._last_published_value} , _manual{p._manual} { Diagnostics::instance().register_topic(_name, [this]() { report(); }); if (debug && !_manual) { Diagnostics::instance().report(_name, _value); } } TracedField(const std::string &name, const value_type &initial, bool manual = false) noexcept : _name{name} , _value{initial} , _manual{manual} { Diagnostics::instance().register_topic(_name, [this]() { report(); }); if (debug && !_manual) { Diagnostics::instance().report(_name, _value); } } TracedField(std::string &&name, value_type &&initial, bool manual = false) noexcept : _name{std::move(name)} , _value{std::move(initial)} , _manual{manual} { Diagnostics::instance().register_topic(_name, [this]() { report(); }); if (debug && !_manual) { Diagnostics::instance().report(_name, _value); } } ~TracedField() noexcept { Diagnostics::instance().unregister_topic(_name); } base_type &operator=(const TracedField &prop) noexcept { set(prop.get()); return *this; } base_type &operator=(TracedField &&prop) noexcept { set(std::move(prop.get())); return *this; } base_type &operator=(const value_type &value) noexcept { set(value); return *this; } base_type &operator=(value_type &&value) noexcept { set(std::move(value)); return *this; } value_type get() const noexcept { return _value; } void report() { Diagnostics::instance().report(_name, _value); } void publish() { if (debug && _manual && (_last_published_value != _value || !_last_published_value_valid)) { Diagnostics::instance().report(_name, _value); _last_published_value = _value; _last_published_value_valid = true; } } void set(const value_type &value) noexcept { if (debug && !_manual && value != _value) { Diagnostics::instance().report(_name, value); } _value = value; } void set(value_type &&value) { if (debug && !_manual && value != _value) { Diagnostics::instance().report(_name, value); } _value = std::move(value); } operator value_type() const { return get(); } bool operator==(const base_type &right) const { return get() == right.get(); } template bool operator==(const OtherValueType &value) const { return get() == value; } bool operator!=(const base_type &right) const { return get() != right.get(); } template bool operator!=(const OtherValueType &value) const { return get() != value; } base_type &operator++() { set(get() + 1); return *this; } value_type operator++(int) { value_type before = get(); set(get() + 1); return before; } base_type &operator--() { set(get() - 1); return *this; } value_type operator--(int) { value_type before = get(); set(get() - 1); return before; } value_type operator-() const { return -get(); } value_type operator~() const { return ~get(); } value_type operator+(const base_type &right) const { return get() + right.get(); } template value_type operator+(const T &right) const { return get() + right; } base_type &operator+=(const base_type &right) { set(get() + right.get()); return *this; } template base_type &operator+=(const T &right) { set(get() + right); return *this; } value_type operator-(const base_type &right) const { return get() - right.get(); } template value_type operator-(const T &right) const { return get() - right; } base_type &operator-=(const base_type &right) { set(get() - right.get()); return *this; } template base_type &operator-=(const T &right) { set(get() - right); return *this; } value_type operator*(const base_type &right) const { return get() * right.get(); } template value_type operator*(const T &right) const { return get() * right; } base_type &operator*=(const base_type &right) { set(get() * right.get()); return *this; } template base_type &operator*=(const T &right) { set(get() * right); return *this; } value_type operator/(const base_type &right) const { return get() / right.get(); } template value_type operator/(const T &right) const { return get() / right; } base_type &operator/=(const base_type &right) { set(get() / right.get()); return *this; } template base_type &operator/=(const T &right) { set(get() / right); return *this; } value_type operator%(const base_type &right) const { return get() % right.get(); } template value_type operator%(const T &right) const { return get() % right; } base_type &operator%=(const base_type &right) { set(get() % right.get()); return *this; } template base_type &operator%=(const T &right) { set(get() % right); return *this; } value_type operator&(const base_type &right) const { return get() & right.get(); } template value_type operator&(const T &right) const { return get() & right; } base_type &operator&=(const base_type &right) { set(get() & right.get()); return *this; } template base_type &operator&=(const T &right) { set(get() & right); return *this; }; value_type operator|(const base_type &right) const { return get() | right.get(); } template value_type operator|(const T &right) const { return get() | right; } base_type &operator|=(const base_type &right) { set(get() | right.get()); return *this; } template base_type &operator|=(const T &right) { set(get() | right); return *this; }; value_type operator^(const base_type &right) const { return get() ^ right.get(); } template value_type operator^(const T &right) const { return get() ^ right; } base_type &operator^=(const base_type &right) { set(get() ^ right.get()); return *this; } template base_type &operator^=(const T &right) { set(get() ^ right); return *this; }; value_type operator<<(int num) const { return get() << num; } template base_type &operator<<=(int num) { set(get() << num); return *this; } value_type operator>>(int num) const { return get() >> num; } template base_type &operator>>=(int num) { set(get() >> num); return *this; } private: std::string _name; value_type _value{}; value_type _last_published_value{}; bool _last_published_value_valid{false}; bool _manual{false}; }; template std::ostream & operator<<(std::ostream &s, const TracedField &v) { s << v.get(); return s; } #endif // DIANOSTICS_HH workrave-1.10.50/common/include/Util.hh0000644000175100001710000000377114221624106016602 0ustar00gdm00000000000000// Util.hh --- General purpose utility functions // // Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef UTIL_HH #define UTIL_HH #include #include using namespace std; class Util { public: // Grmbl. Ideally, this was call just SearchPath, however // Windows feels it is necessary to do a "#define SearchPath SearchPathA" enum SearchPathId { SEARCH_PATH_IMAGES = 0, SEARCH_PATH_SOUNDS, SEARCH_PATH_CONFIG, SEARCH_PATH_EXERCISES, SEARCH_PATH_SIZEOF }; static const std::string &get_home_directory(); static void set_home_directory(const std::string &home); #ifdef PLATFORM_OS_WINDOWS static string get_application_directory(); static bool registry_set_value(const char *path, const char *name, const char *value); static bool registry_get_value(const char *path, const char *name, char *out); #endif static const std::set &get_search_path(SearchPathId type); static bool file_exists(std::string path); static std::string complete_directory(std::string path, SearchPathId type); static bool complete_directory(std::string path, SearchPathId type, std::string &completed_path); static bool running_gnome(); private: static std::set search_paths[SEARCH_PATH_SIZEOF]; static std::string home_directory; }; #endif // UTIL_HH workrave-1.10.50/common/include/Locale.hh0000644000175100001710000000323514221624106017057 0ustar00gdm00000000000000// Locale.hh // // Copyright (C) 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef LOCALE_HH #define LOCALE_HH #include #include #include using namespace std; class Locale { public: struct Language { std::string language_name; std::string country_name; }; typedef std::map LanguageMap; typedef LanguageMap::iterator LanguageMapIter; typedef LanguageMap::const_iterator LanguageMapCIter; static bool get_language(const std::string &code, std::string &language); static bool get_country(const std::string &code, std::string &language); static void get_all_languages_in_current_locale(LanguageMap &list); static void get_all_languages_in_native_locale(LanguageMap &list); static void set_locale(const std::string &code); static std::string get_locale(); static void lookup(const string &domain, string &str); static LanguageMap languages_native_locale; static int get_week_start(); private: void init(); }; #endif // LOCALE_HH workrave-1.10.50/common/include/Makefile.am0000644000175100001710000000037114221624106017371 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) workrave-1.10.50/common/include/timeutil.h0000644000175100001710000000554514221624106017352 0ustar00gdm00000000000000/* * timeutil.h --- Utilities * * Copyright (C) 2001, 2002, 2003, 2007 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef TIMEUTIL_H #define TIMEUTIL_H #include /*****************************************************************************/ /* Time functions */ #define MICRO_PER_SEC 1000000 #define tvRESETTIME(tv) \ { \ (tv).tv_sec = 0; \ (tv).tv_usec = 0; \ } #define tvSETTIME(tv, sec, usec) \ { \ (tv).tv_sec = (sec); \ (tv).tv_usec = (usec); \ } #define tvADDTIME(ret, a, b) \ { \ (ret).tv_sec = (a).tv_sec + (b).tv_sec; \ if (((ret).tv_usec = (a).tv_usec + (b).tv_usec) >= MICRO_PER_SEC) \ { \ (ret).tv_sec++; \ (ret).tv_usec -= MICRO_PER_SEC; \ } \ } #define tvSUBTIME(ret, a, b) \ { \ (ret).tv_sec = (a).tv_sec - (b).tv_sec; \ if (((ret).tv_usec = (a).tv_usec - (b).tv_usec) < 0) \ { \ (ret).tv_sec--; \ (ret).tv_usec += MICRO_PER_SEC; \ } \ } #define tvTIMEGEQ(a, b) ((a).tv_sec > (b).tv_sec || ((a).tv_sec == (b).tv_sec && (a).tv_usec >= (b).tv_usec)) #define tvTIMEGT(a, b) ((a).tv_sec > (b).tv_sec || ((a).tv_sec == (b).tv_sec && (a).tv_usec > (b).tv_usec)) #define tvTIMELT(a, b) ((a).tv_sec < (b).tv_sec || ((a).tv_sec == (b).tv_sec && (a).tv_usec < (b).tv_usec)) #define tvTIMELEQ0(a) ((a).tv_sec < 0 || ((a).tv_sec == 0 && (a).tv_usec <= 0)) #define tvTIMELT0(a) ((a).tv_sec < 0 || ((a).tv_sec == 0 && (a).tv_usec < 0)) #define tvTIMEEQ0(a) (((a).tv_sec == 0 && (a).tv_usec == 0)) #endif /* TIMEUTIL_H */ workrave-1.10.50/common/include/Runnable.hh0000644000175100001710000000164314221624106017427 0ustar00gdm00000000000000// Runnable.hh --- Runnable interface // // Copyright (C) 2001, 2002, 2003, 2005 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef RUNNABLE_HH #define RUNNABLE_HH class Runnable { public: virtual ~Runnable() {} virtual void run() = 0; }; #endif // RUNNABLE_HH workrave-1.10.50/common/include/DBusProxy-gio.hh0000644000175100001710000000603314221624106020332 0ustar00gdm00000000000000// DBusProxy-gio.hh --- support for simple DBUS method execution // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // It is possible that it uses some code and ideas from the KShutdown utility: // file src/actions/lock.cpp // Copyright (C) 2009 Konrad Twardowski // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef DBUSPROXYGIO_HH #define DBUSPROXYGIO_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include class DBusProxy { private: GDBusProxy *proxy; GError *error; GDBusProxyFlags flags; public: DBusProxy() : proxy(NULL) , error(NULL) , flags(G_DBUS_PROXY_FLAGS_NONE) { } ~DBusProxy() { clear(); } bool init(GBusType bus_type, const char *name, const char *object_path, const char *interface_name, GDBusProxyFlags flags_in = static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS)); bool init_with_connection(GDBusConnection *connection, const char *name, const char *object_path, const char *interface_name, GDBusProxyFlags flags_in = static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS)); // Consumes (=deletes) method_parameters if it is floating // method_result may be null, in this case the result of the method is ignored bool call_method(const char *method_name, GVariant *method_parameters, GVariant **method_result); // Calls method asyncronously and does not accept result (no callback will be run) // Consumes (=deletes) method_parameters if it is floating bool call_method_asynch_no_result(const char *method_name, GVariant *method_parameters); void clear() { if (error != NULL) { g_error_free(error); error = NULL; } if (proxy != NULL) { g_object_unref(proxy); proxy = NULL; } } bool is_valid() { return proxy != NULL; } gchar *get_last_error_message() { if (error == NULL) return NULL; else return error->message; } }; #endif workrave-1.10.50/common/include/WRID.hh0000644000175100001710000000314114221624106016421 0ustar00gdm00000000000000// WRID.hh --- Definition of Workrave link ID // // Copyright (C) 2007, 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ // #ifndef WR_WRID_HH #define WR_WRID_HH #include "debug.hh" #include #include namespace workrave { class WRID { private: typedef unsigned char uuid_type[16]; public: WRID(); WRID(const WRID &rhs); WRID(const std::string &str); WRID &operator=(const WRID &lid); bool operator==(const WRID &lid) const; bool operator!=(const WRID &lid) const; bool operator<(const WRID &lid) const; std::string str() const; guint8 *raw() const; bool set(const std::string &str); const static size_t RAW_LENGTH = sizeof(uuid_type); const static size_t STR_LENGTH = sizeof(uuid_type) * 2; private: void create(); void get_random_bytes(unsigned char *buf, size_t length); //! Unique ID uuid_type id; }; }; // namespace workrave #endif // WRID_HH workrave-1.10.50/common/include/DBusProxy.hh0000644000175100001710000000200014221624106017544 0ustar00gdm00000000000000// DBusProxy.cc --- support for simple DBUS method execution // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DBUSPROXY_HH #define DBUSPROXY_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DBUS # include "DBusProxy-gio.hh" #else # error "This header file requires DBUS_GIO" #endif #endif // DBUSPROXY_HH workrave-1.10.50/common/include/GlibThread.hh0000644000175100001710000000235414221624106017666 0ustar00gdm00000000000000// GlibThread.hh --- GLib Thread class // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GLIBTHREAD_HH #define GLIBTHREAD_HH #include "Runnable.hh" #include /*! * Thread class. */ class Thread { public: Thread(bool autodelete = false); Thread(Runnable *runnable, bool autodelete = false); virtual ~Thread(); virtual void run(); void start(); void wait(); private: void internal_run(); private: static gpointer thread_handler(gpointer data); GThread *thread_handle; Runnable *runnable; bool autodelete; }; #endif // GLIBTHREAD_HH workrave-1.10.50/common/include/GlibMutex.hh0000644000175100001710000000257014221624106017561 0ustar00gdm00000000000000// GLibMutex.hh // // Copyright (C) 2007, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GLIBMUTEX_HH #define GLIBMUTEX_HH #include #if GLIB_CHECK_VERSION(2, 31, 18) class Mutex { public: Mutex() { g_rec_mutex_init(&gmutex); }; ~Mutex() { g_rec_mutex_clear(&gmutex); }; void lock() { g_rec_mutex_lock(&gmutex); } void unlock() { g_rec_mutex_unlock(&gmutex); } private: GRecMutex gmutex; }; #else class Mutex { public: Mutex() { g_static_rec_mutex_init(&gmutex); }; ~Mutex() { g_static_rec_mutex_free(&gmutex); }; void lock() { g_static_rec_mutex_lock(&gmutex); } void unlock() { g_static_rec_mutex_unlock(&gmutex); } private: GStaticRecMutex gmutex; }; #endif #endif // GLIBMUTEX_HH workrave-1.10.50/common/include/debug.hh0000644000175100001710000000632514221624106016751 0ustar00gdm00000000000000// debug.hh // // Copyright (C) 2001 - 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DEBUG_HH #define DEBUG_HH #include #ifndef TRACING # define TRACE_ENTER(x) # define TRACE_ENTER_MSG(x, y) # define TRACE_RETURN(x) # define TRACE_EXIT() # define TRACE_MSG(x) # define TRACE_MSG2(x, y) #else # include # include # include # include # include # include "Mutex.hh" extern Mutex g_log_mutex; extern std::ofstream g_log_stream; class Debug { public: static void init(); static std::string trace_get_time(); }; # define TRACE_ENTER(x) \ g_log_mutex.lock(); \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << std::endl; \ g_log_mutex.unlock(); # define TRACE_ENTER_MSG(x, y) \ g_log_mutex.lock(); \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << " " << y << std::endl; \ g_log_mutex.unlock(); # define TRACE_RETURN(y) \ g_log_mutex.lock(); \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << y << std::endl; \ g_log_mutex.unlock(); # define TRACE_EXIT() \ g_log_mutex.lock(); \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << std::endl; \ g_log_mutex.unlock(); # define TRACE_MSG(msg) \ g_log_mutex.lock(); \ std::cerr << Debug::trace_get_time() << " " << _trace_method_name << " " << msg << std::endl; \ g_log_mutex.unlock(); # define TRACE_MSG2(x, y) \ g_log_mutex.lock(); \ std::cerr << Debug::trace_get_time() << " " << _trace_method_name << " " << x << " " << y << std::endl; \ g_log_mutex.unlock(); #endif // TRACING #endif // DEBUG_HH workrave-1.10.50/common/src/0000755000000000000000000000000014221624435015576 5ustar00rootroot00000000000000workrave-1.10.50/common/src/win32/0000755000000000000000000000000014221624435016540 5ustar00rootroot00000000000000workrave-1.10.50/common/src/win32/Makefile.in0000644000000000000000000005630114221624200020600 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/src/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_common_win32_la_DEPENDENCIES = am__libworkrave_common_win32_la_SOURCES_DIST = crashlog.c @PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_common_win32_la_OBJECTS = \ @PLATFORM_OS_WINDOWS_TRUE@ crashlog.lo libworkrave_common_win32_la_OBJECTS = \ $(am_libworkrave_common_win32_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = @PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_common_win32_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/crashlog.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_common_win32_la_SOURCES) DIST_SOURCES = $(am__libworkrave_common_win32_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in @PLATFORM_OS_WINDOWS_TRUE@noinst_LTLIBRARIES = libworkrave-common-win32.la @PLATFORM_OS_WINDOWS_TRUE@libworkrave_common_win32_la_SOURCES = \ @PLATFORM_OS_WINDOWS_TRUE@ crashlog.c @PLATFORM_OS_WINDOWS_TRUE@libworkrave_common_win32_la_LIBADD = @PLATFORM_OS_WINDOWS_TRUE@libworkrave_common_win32_la_CXXFLAGS = @GLIB_CFLAGS@ AM_CPPFLAGS = -W -D_XOPEN_SOURCE=600 -I. -I$(top_srcdir)/common/include \ -I$(top_srcdir)/common/include/win32 -I$(top_srcdir)/common/win32/harpoon/include EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.c) \ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/src/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/src/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-common-win32.la: $(libworkrave_common_win32_la_OBJECTS) $(libworkrave_common_win32_la_DEPENDENCIES) $(EXTRA_libworkrave_common_win32_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(am_libworkrave_common_win32_la_rpath) $(libworkrave_common_win32_la_OBJECTS) $(libworkrave_common_win32_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crashlog.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/crashlog.Plo -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 -f ./$(DEPDIR)/crashlog.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/src/win32/crashlog.cc0000644000175100001710000005442714221624107017570 0ustar00gdm00000000000000/* * crashlog.c * * Copyright (C) 2003, 2004, 2005, 2007, 2011 Rob Caelers * Copyright (C) 2007 Ray Satiro * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Based on Dr. Mingw. and OpenTTD */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "crashlog.h" #include "harpoon.h" #include #include #ifndef _O_APPEND # define _O_APPEND 0x0008 #endif #ifndef _O_TEXT # define _O_TEXT 0x4000 #endif #ifdef PLATFORM_OS_WINDOWS_NATIVE # define snprintf _snprintf # define snwprintf _snwprintf #endif static void unwind_stack(FILE *log, HANDLE process, PCONTEXT context); static void dump_registers(FILE *log, PCONTEXT context); static void dump_registry(FILE *log, HKEY key, char *name); /* static void print_module_list(FILE *log); */ static DWORD GetModuleBase(DWORD dwAddress) { MEMORY_BASIC_INFORMATION Buffer; return VirtualQuery((LPCVOID)dwAddress, &Buffer, sizeof(Buffer)) ? (DWORD)Buffer.AllocationBase : 0; } #ifndef PLATFORM_OS_WINDOWS_NATIVE static EXCEPTION_DISPOSITION __cdecl double_exception_handler(struct _EXCEPTION_RECORD *exception_record, void *establisher_frame, struct _CONTEXT *context_record, void *dispatcher_context) { (void)exception_record; (void)establisher_frame; (void)context_record; (void)dispatcher_context; MessageBox(NULL, (LPCSTR)"Workrave has unexpectedly crashed and failed to create a crash " "log. This is serious. Please report this to crashes@workrave.org or " "file a bugreport at: http://issues.workrave.org/. " , (LPCSTR)"Double exception", MB_OK); exit(1); } #endif EXCEPTION_DISPOSITION __cdecl exception_handler(struct _EXCEPTION_RECORD *exception_record, void *establisher_frame, struct _CONTEXT *context_record, void *dispatcher_context) { char crash_log_name[MAX_PATH]; char crash_text[1024]; TCHAR szModule[MAX_PATH]; HMODULE hModule; /* Modified for Unicode >= WinNT. No UnicoWS check for Me/98/95. jay satiro, workrave project, july 2007 */ WCHAR env_var[20] = { '\0', }; WCHAR crashlog[] = L"\\workrave-crashlog.txt"; WCHAR *wbuffer = NULL; WCHAR *p_wbuffer = NULL; FILE *log; DWORD(WINAPI * GetEnvironmentVariableW)(LPCWSTR, LPWSTR, DWORD); HANDLE(WINAPI * CreateFileW)(LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE); SYSTEMTIME SystemTime; (void)establisher_frame; (void)dispatcher_context; #ifdef PLATFORM_OS_WINDOWS_NATIVE // FIXME: win32 #else __try1(double_exception_handler); #endif harpoon_unblock_input(); GetEnvironmentVariableW = (DWORD(WINAPI *)(LPCWSTR, LPWSTR, DWORD))GetProcAddress(GetModuleHandleA("kernel32.dll"), "GetEnvironmentVariableW"); CreateFileW = (HANDLE(WINAPI *)(LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE))GetProcAddress( GetModuleHandleA("kernel32.dll"), "CreateFileW"); if (GetEnvironmentVariableW && CreateFileW) // >= WinNT { HANDLE handle; DWORD bufsize, ret; int fd = 0; wcsncpy(env_var, L"APPDATA", 19); env_var[19] = '\0'; bufsize = (*GetEnvironmentVariableW)(env_var, NULL, 0); // bufsize is size in wide chars, including null if (!bufsize) // If %appdata% is unsuitable, try temp: { wcsncpy(env_var, L"TEMP", 19); env_var[19] = '\0'; bufsize = (*GetEnvironmentVariableW)(env_var, NULL, 0); } ret = 0; wbuffer = NULL; if (bufsize) { // We will need room for \\?\ so add 4 if ((wbuffer = (WCHAR *)calloc(4 + bufsize + wcslen(crashlog), sizeof(WCHAR))) != NULL) { wcscpy(wbuffer, L"\\\\?\\"); p_wbuffer = wbuffer + 4; ret = (*GetEnvironmentVariableW)(env_var, p_wbuffer, bufsize); } } if (!ret) // Environment unsuitable, notify & terminate. { free(wbuffer); snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. The environment is " "unsuitable to create a crash log. Please file a bug report:\n" "http://issues.workrave.org/\n" "Thanks."); MessageBoxA(NULL, crash_text, "Exception", MB_OK); #ifdef PLATFORM_OS_WINDOWS_NATIVE // FIXME: win32 #else __except1; #endif exit(1); } // last wchar p_wbuffer = wbuffer + wcslen(wbuffer) - 1; while (*p_wbuffer == L'\\') // remove trailing slashes { *p_wbuffer-- = L'\0'; } // append filename to end of string wcscpy(++p_wbuffer, crashlog); // compare first wchar of returned environment string if (wbuffer[4] == L'\\') /* If possible network path, don't include literal \\?\ \\?\\\1.2.3.4\workrave-crashlog.txt should be \\1.2.3.4\workrave-crashlog.txt */ p_wbuffer = wbuffer + 4; else // Point to start of wbuffer: p_wbuffer = wbuffer; handle = (*CreateFileW)(p_wbuffer, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); fd = _open_osfhandle((intptr_t)handle, _O_APPEND | _O_TEXT); log = _fdopen(fd, "w"); } else // if( GetVersion() & (DWORD) 0x80000000 ) // Windows Me/98/95 { char *s = NULL; GetModuleFileName(GetModuleHandle(NULL), crash_log_name, sizeof(crash_log_name)); // crash_log_name == c:\program files\workrave\lib\workrave.exe s = strrchr(crash_log_name, '\\'); assert(s); *s = '\0'; // crash_log_name == c:\program files\workrave\lib s = strrchr(crash_log_name, '\\'); assert(s); *s = '\0'; // crash_log_name == c:\program files\workrave strcat(crash_log_name, "\\workrave-crashlog.txt"); log = fopen(crash_log_name, "w"); } if (log == NULL) // workrave-crashlog.txt wasn't created. { snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. An attempt to create " "a crashlog has failed. Please file a bug report:\n" "http://issues.workrave.org/\n" "Thanks."); MessageBoxA(NULL, crash_text, "Exception", MB_OK); #ifdef PLATFORM_OS_WINDOWS_NATIVE // FIXME: win32 #else __except1; #endif exit(1); } GetLocalTime(&SystemTime); fprintf(log, "Crash log created on %02d/%02d/%04d at %02d:%02d:%02d.\n\n", SystemTime.wDay, SystemTime.wMonth, SystemTime.wYear, SystemTime.wHour, SystemTime.wMinute, SystemTime.wSecond); fprintf(log, "version = %s\n", PACKAGE_VERSION); fprintf(log, "compile date = %s\n", __DATE__); fprintf(log, "compile time = %s\n", __TIME__); fprintf(log, "features = " #ifdef HAVE_DISTRIBUTION "DISTRIBUTION " #endif #ifdef HAVE_EXERCISES "EXERCISES " #endif #ifdef HAVE_GCONF "GCONF?? " #endif #ifdef HAVE_GDOME "GDOME " #endif #ifdef HAVE_GNET "GNET " #endif #ifdef HAVE_GNET2 "GNET2 " #endif #ifdef HAVE_XRECORD "XRECORD?? " #endif #ifndef NDEBUG "DEBUG " #endif "\n"); // write locale info: char *buffer = NULL; int bufsize = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SENGLANGUAGE, buffer, 0); if (bufsize) buffer = (char *)calloc(bufsize + 1, 1); if (buffer) { GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SENGLANGUAGE, buffer, bufsize); buffer[bufsize] = '\0'; fprintf(log, "locale = %s\n", buffer); free(buffer); } fprintf(log, "\n\n"); fprintf(log, "code = %x\n", (int)exception_record->ExceptionCode); fprintf(log, "flags = %x\n", (int)exception_record->ExceptionFlags); fprintf(log, "address = %x\n", (int)exception_record->ExceptionAddress); fprintf(log, "params = %d\n", (int)exception_record->NumberParameters); fprintf(log, "%s caused ", GetModuleFileName(NULL, szModule, MAX_PATH) ? szModule : "Application"); switch (exception_record->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: fprintf(log, "an Access Violation"); break; case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: fprintf(log, "an Array Bound Exceeded"); break; case EXCEPTION_BREAKPOINT: fprintf(log, "a Breakpoint"); break; case EXCEPTION_DATATYPE_MISALIGNMENT: fprintf(log, "a Datatype Misalignment"); break; case EXCEPTION_FLT_DENORMAL_OPERAND: fprintf(log, "a Float Denormal Operand"); break; case EXCEPTION_FLT_DIVIDE_BY_ZERO: fprintf(log, "a Float Divide By Zero"); break; case EXCEPTION_FLT_INEXACT_RESULT: fprintf(log, "a Float Inexact Result"); break; case EXCEPTION_FLT_INVALID_OPERATION: fprintf(log, "a Float Invalid Operation"); break; case EXCEPTION_FLT_OVERFLOW: fprintf(log, "a Float Overflow"); break; case EXCEPTION_FLT_STACK_CHECK: fprintf(log, "a Float Stack Check"); break; case EXCEPTION_FLT_UNDERFLOW: fprintf(log, "a Float Underflow"); break; case EXCEPTION_GUARD_PAGE: fprintf(log, "a Guard Page"); break; case EXCEPTION_ILLEGAL_INSTRUCTION: fprintf(log, "an Illegal Instruction"); break; case EXCEPTION_IN_PAGE_ERROR: fprintf(log, "an In Page Error"); break; case EXCEPTION_INT_DIVIDE_BY_ZERO: fprintf(log, "an Integer Divide By Zero"); break; case EXCEPTION_INT_OVERFLOW: fprintf(log, "an Integer Overflow"); break; case EXCEPTION_INVALID_DISPOSITION: fprintf(log, "an Invalid Disposition"); break; case EXCEPTION_INVALID_HANDLE: fprintf(log, "an Invalid Handle"); break; case EXCEPTION_NONCONTINUABLE_EXCEPTION: fprintf(log, "a Noncontinuable Exception"); break; case EXCEPTION_PRIV_INSTRUCTION: fprintf(log, "a Privileged Instruction"); break; case EXCEPTION_SINGLE_STEP: fprintf(log, "a Single Step"); break; case EXCEPTION_STACK_OVERFLOW: fprintf(log, "a Stack Overflow"); break; case DBG_CONTROL_C: fprintf(log, "a Control+C"); break; case DBG_CONTROL_BREAK: fprintf(log, "a Control+Break"); break; case DBG_TERMINATE_THREAD: fprintf(log, "a Terminate Thread"); break; case DBG_TERMINATE_PROCESS: fprintf(log, "a Terminate Process"); break; case RPC_S_UNKNOWN_IF: fprintf(log, "an Unknown Interface"); break; case RPC_S_SERVER_UNAVAILABLE: fprintf(log, "a Server Unavailable"); break; default: fprintf(log, "an Unknown [0x%lX] Exception", exception_record->ExceptionCode); break; } fprintf(log, " at location %08x", (int)exception_record->ExceptionAddress); hModule = (HMODULE)GetModuleBase((DWORD)exception_record->ExceptionAddress); if ((hModule != NULL && GetModuleFileName(hModule, szModule, sizeof(szModule)))) fprintf(log, " in module %s", szModule); // If the exception was an access violation, print out some additional information, to the error log and the debugger. if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION && exception_record->NumberParameters >= 2) fprintf(log, " %s location %08x\n\n", exception_record->ExceptionInformation[0] ? "writing to" : "reading from", exception_record->ExceptionInformation[1]); DWORD pid = GetCurrentProcessId(); HANDLE process = OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid); dump_registers(log, context_record); unwind_stack(log, process, context_record); print_module_list(log); fprintf(log, "\nRegistry dump:\n\n"); dump_registry(log, HKEY_CURRENT_USER, "Software\\Workrave"); fclose(log); if (GetEnvironmentVariableW && CreateFileW) // >= WinNT { WCHAR *one = L"Workrave has unexpectedly crashed. A crash log has been saved to:\n"; WCHAR *two = L"\nPlease file a bug report: http://issues.workrave.org/\n" L"Thanks."; WCHAR *nomem = L"Workrave is out of memory!"; int size = wcslen(one) + wcslen(p_wbuffer) + wcslen(two) + 1; WCHAR *message = (WCHAR *)calloc(size, sizeof(WCHAR)); if (!message) // Low memory... { // % + % + null = 3 extra size = wcslen(one) + wcslen(env_var) + wcslen(crashlog) + wcslen(two) + 3; message = (WCHAR *)calloc(size, sizeof(WCHAR)); if (message) { snwprintf(message, size - 1, L"%ws%%%ws%%%ws%ws", one, env_var, crashlog, two); message[size - 1] = L'\0'; } else // No memory... message = nomem; } else // A buffer was allocated with enough memory to hold p_wbuffer { snwprintf(message, size - 1, L"%ws%ws%ws", one, p_wbuffer, two); message[size - 1] = L'\0'; } MessageBoxW(NULL, message, L"Exception", MB_OK); } else { snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. A crash log has been saved to " "%s. Please mail this file to crashes@workrave.org or " "file a bugreport at: http://issues.workrave.org/. " "Thanks.", crash_log_name); MessageBoxA(NULL, crash_text, "Exception", MB_OK); } #ifdef PLATFORM_OS_WINDOWS_NATIVE // FIXME: win32 #else __except1; #endif exit(1); } static BOOL WINAPI stack_walk(HANDLE process, LPSTACKFRAME stack_frame, PCONTEXT context_record) { if (!stack_frame->Reserved[0]) { stack_frame->Reserved[0] = 1; stack_frame->AddrPC.Mode = AddrModeFlat; stack_frame->AddrPC.Offset = context_record->Eip; stack_frame->AddrStack.Mode = AddrModeFlat; stack_frame->AddrStack.Offset = context_record->Esp; stack_frame->AddrFrame.Mode = AddrModeFlat; stack_frame->AddrFrame.Offset = context_record->Ebp; stack_frame->AddrReturn.Mode = AddrModeFlat; if (!ReadProcessMemory(process, (LPCVOID)(stack_frame->AddrFrame.Offset + sizeof(DWORD)), &stack_frame->AddrReturn.Offset, sizeof(DWORD), NULL)) return FALSE; } else { stack_frame->AddrPC.Offset = stack_frame->AddrReturn.Offset; if (!ReadProcessMemory(process, (LPCVOID)stack_frame->AddrFrame.Offset, &stack_frame->AddrFrame.Offset, sizeof(DWORD), NULL)) return FALSE; if (!ReadProcessMemory(process, (LPCVOID)(stack_frame->AddrFrame.Offset + sizeof(DWORD)), &stack_frame->AddrReturn.Offset, sizeof(DWORD), NULL)) return FALSE; } ReadProcessMemory( process, (LPCVOID)(stack_frame->AddrFrame.Offset + 2 * sizeof(DWORD)), stack_frame->Params, sizeof(stack_frame->Params), NULL); return TRUE; } static void unwind_stack(FILE *log, HANDLE process, PCONTEXT context) { STACKFRAME sf; fprintf(log, "Stack trace:\n\n"); ZeroMemory(&sf, sizeof(STACKFRAME)); sf.AddrPC.Offset = context->Eip; sf.AddrPC.Mode = AddrModeFlat; sf.AddrStack.Offset = context->Esp; sf.AddrStack.Mode = AddrModeFlat; sf.AddrFrame.Offset = context->Ebp; sf.AddrFrame.Mode = AddrModeFlat; fprintf(log, "PC Frame Ret\n"); while (TRUE) { if (!stack_walk(process, &sf, context)) break; if (sf.AddrFrame.Offset == 0) break; fprintf(log, "%08X %08X %08X\n", (int)sf.AddrPC.Offset, (int)sf.AddrFrame.Offset, (int)sf.AddrReturn.Offset); } } static void print_module_info(FILE *log, HMODULE mod) { TCHAR buffer[MAX_PATH]; HANDLE file; SYSTEMTIME file_time; FILETIME write_time; GetModuleFileName(mod, buffer, MAX_PATH); file = CreateFile(buffer, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0); if (file != INVALID_HANDLE_VALUE) { if (GetFileTime(file, NULL, NULL, &write_time)) { FileTimeToSystemTime(&write_time, &file_time); } CloseHandle(file); } fprintf(log, " %-20s handle: %p date: %d-%.2d-%.2d %.2d:%.2d:%.2d\n", buffer, mod, file_time.wYear, file_time.wMonth, file_time.wDay, file_time.wHour, file_time.wMinute, file_time.wSecond); } void print_module_list(FILE *log) { HMODULE lib; BOOL(WINAPI * EnumProcessModules)(HANDLE, HMODULE *, DWORD, LPDWORD); EnumProcessModules = NULL; lib = LoadLibrary("psapi.dll"); if (lib != NULL) { EnumProcessModules = (BOOL(WINAPI *)(HANDLE, HMODULE *, DWORD, LPDWORD))GetProcAddress(lib, "EnumProcessModules"); } if (EnumProcessModules != NULL) { HMODULE modules[100]; DWORD needed; BOOL res; int count, i; HANDLE proc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, GetCurrentProcessId()); if (proc != NULL) { res = EnumProcessModules(proc, modules, sizeof(modules), &needed); CloseHandle(proc); if (res) { count = min(needed / sizeof(HMODULE), 100); for (i = 0; i != count; i++) { print_module_info(log, modules[i]); } return; } } } print_module_info(log, NULL); } static void dump_registers(FILE *log, PCONTEXT context) { fprintf(log, "Registers:\n\n"); if (context->ContextFlags & CONTEXT_INTEGER) { fprintf(log, "eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n", context->Eax, context->Ebx, context->Ecx, context->Edx, context->Esi, context->Edi); } if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, "eip=%08lx esp=%08lx ebp=%08lx iopl=%1lx %s %s %s %s %s %s %s %s %s %s\n", context->Eip, context->Esp, context->Ebp, (context->EFlags >> 12) & 3, // IOPL level value context->EFlags & 0x00100000 ? "vip" : " ", // VIP (virtual interrupt pending) context->EFlags & 0x00080000 ? "vif" : " ", // VIF (virtual interrupt flag) context->EFlags & 0x00000800 ? "ov" : "nv", // VIF (virtual interrupt flag) context->EFlags & 0x00000400 ? "dn" : "up", // OF (overflow flag) context->EFlags & 0x00000200 ? "ei" : "di", // IF (interrupt enable flag) context->EFlags & 0x00000080 ? "ng" : "pl", // SF (sign flag) context->EFlags & 0x00000040 ? "zr" : "nz", // ZF (zero flag) context->EFlags & 0x00000010 ? "ac" : "na", // AF (aux carry flag) context->EFlags & 0x00000004 ? "po" : "pe", // PF (parity flag) context->EFlags & 0x00000001 ? "cy" : "nc" // CF (carry flag) ); } if (context->ContextFlags & CONTEXT_SEGMENTS) { fprintf(log, "cs=%04lx ss=%04lx ds=%04lx es=%04lx fs=%04lx gs=%04lx", context->SegCs, context->SegSs, context->SegDs, context->SegEs, context->SegFs, context->SegGs); if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, " efl=%08lx", context->EFlags); } } else { if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, " efl=%08lx", context->EFlags); } } fprintf(log, "\n\n"); } static void save_key(FILE *log, HKEY key, char *name) { DWORD i; char keyname[512]; int keyname_len = strlen(keyname); fprintf(log, "key = %s\n", name); for (i = 0;; i++) { char val[256]; DWORD val_size = sizeof(val); BYTE data[0x4000]; DWORD data_size = sizeof(data); DWORD type; LONG rc = RegEnumValue(key, i, val, &val_size, 0, &type, data, &data_size); if (rc != ERROR_SUCCESS) break; if (val_size) fprintf(log, " value = %s\n", val); if (strcmp("password", val) == 0) { fprintf(log, " string data = \n"); } else if (type == REG_SZ) { fprintf(log, " string data = %s\n", data); } else if (type == REG_DWORD && data_size == 4) { fprintf(log, " dword data = %08lx\n", (long)data); } else { fprintf(log, " hex data = [unsupported]\n"); } } fprintf(log, "\n"); strcpy(keyname, name); strcat(keyname, "\\"); keyname_len = strlen(keyname); for (i = 0;; i++) { HKEY subkey; LONG rc = RegEnumKey(key, i, keyname + keyname_len, sizeof(keyname) - keyname_len); if (rc != ERROR_SUCCESS) break; rc = RegOpenKey(key, keyname + keyname_len, &subkey); if (rc == ERROR_SUCCESS) { dump_registry(log, subkey, keyname); RegCloseKey(subkey); } } } static void dump_registry(FILE *log, HKEY key, char *name) { (void)key; HKEY handle; LONG rc = RegOpenKeyEx(HKEY_CURRENT_USER, name, 0, KEY_ALL_ACCESS, &handle); if (rc == ERROR_SUCCESS) { save_key(log, handle, name); RegCloseKey(handle); } } workrave-1.10.50/common/src/win32/W32CriticalSection.cc0000644000175100001710000001651414221624107021334 0ustar00gdm00000000000000// W32CriticalSection.cc --- RAII for critical section objects // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #include #include "W32CriticalSection.hh" /* A critical section is a fast and light thread synchronization object in Windows. Critical sections are used by creating a CRITICAL_SECTION object which must be initialized, can be locked and unlocked multiple times, and then can be deleted. http://msdn.microsoft.com/en-us/library/windows/desktop/ms682530.aspx This class, W32CriticalSection, is an RAII wrapper around Microsoft's CRITICAL_SECTION object that handles the initialization, locking/unlocking and deletion. The locking is thread re-entrant, unlike Microsoft's own critical_section class which is not. To use W32CriticalSection: Add a W32CriticalSection object to your class or somewhere that it's available to your threads. When creating the object you can specify the spin count, which specifies how many times to try for the locked object instead of taking a context switch. While the latter sounds expensive, remember that a context switch isn't needed unless the object is locked. Whether it's worthwhile to set the spin depends on how many threads are in contention and whether you've done some type of profiling. You then create a W32CriticalSection::Guard object in any scope of code that you need to lock and unlock. ***That is important: The W32CriticalSection::Guard object's destructor is called when it goes out of scope, and it will unlock the W32CriticalSection object that it locked. Example guard simple: W32CriticalSection section; // section's constructor creates and initializes a CRITICAL_SECTION void SomeFunction() { W32CriticalSection::Guard guard( section ); // guard's constructor locks section here shared_thread_variable = 123; // some awesome guarded code here } // the guard's destructor is called on return and it unlocks section here Advanced: There are two nested guard classes, W32CriticalSection::AdvancedGuard and W32CriticalSection::Guard. A single W32CriticalSection::AdvancedGuard object can be used to guard multiple W32CriticalSection objects and locking and unlocking can be controlled by its methods: bool TryLock( W32CriticalSection &cs ): Calls TryEnterCriticalSection() bool TryLockFor( W32CriticalSection &cs, DWORD milliseconds ): Calls TryEnterCriticalSection() void Lock( W32CriticalSection &cs ): Calls EnterCriticalSection() void Unlock( W32CriticalSection &cs ): Calls LeaveCriticalSection() W32CriticalSection::Guard cannot be used on multiple W32CriticalSection objects and has none of the above methods. Both W32CriticalSection::AdvancedGuard and W32CriticalSection::Guard destruct similar in that they unlock what that they had locked. To use W32CriticalSection::AdvancedGuard it is recommended to create and initialize in the scope of what needs to be locked for the RAII advantage, like W32CriticalSection::Guard (see its example). You can set an initial lock on construction or you can set one at any time by calling the Lock() method (you do not need to do both on the same W32CriticalSection object although it's fine to do). The destructor for W32CriticalSection::AdvancedGuard calls LeaveCriticalSection() for every section it has locked for the number of times it has not already unlocked. If you lock an object three times and later unlock it once via Unlock() then when the destructor is called it calls LeaveCriticalSection() twice for that object. And for multiple objects the unlocking order is reverse from the locking order. For (a convoluted) example: W32CriticalSection::AdvancedGuard guard( a ); // calls Lock( a ) guard.Lock( a ); guard.Lock( b ); guard.Lock( a ); guard.Lock( c ); guard.Unlock( a ); The AdvancedGuard object destructor would call LeaveCriticalSection() in this order: c, b, a, a Example guard advanced: W32CriticalSection section, section2; void SomeFunction() { W32CriticalSection::AdvancedGuard guard( section ); // guard's constructor locks section shared_thread_variable = 123; // some awesome guarded code here SomeOtherFunction(); // something will happen in some other thread that locks section2 for a bit guard.Lock( section2 ); // we're waiting for section2 mp_update_core(); // some awesome dangerous thing here } // when the guard's destructor is called on return it unlocks section and section2 here */ W32CriticalSection::AdvancedGuard::AdvancedGuard() : W32CriticalSection(500) { } // Lock 'cs' once. W32CriticalSection::AdvancedGuard::AdvancedGuard(W32CriticalSection &cs) : W32CriticalSection(500) { Lock(cs); } // Unlock all the locks held that have not yet been unlocked via Unlock(). W32CriticalSection::AdvancedGuard::~AdvancedGuard() { for (std::list::reverse_iterator i = list_.rbegin(); i != list_.rend(); ++i) { LeaveCriticalSection(*i); } } // Try to lock 'cs' once without blocking for it. // Returns true if acquired. bool W32CriticalSection::AdvancedGuard::TryLock(W32CriticalSection &cs) { if (!TryEnterCriticalSection(&cs)) return false; Guard guard(*this); list_.push_back(&cs); return true; } // Try to lock 'cs' once by blocking for it only for a specific number of 'milliseconds'. // Returns true if acquired. bool W32CriticalSection::AdvancedGuard::TryLockFor(W32CriticalSection &cs, const DWORD milliseconds) { const int spin = (milliseconds ? 4000 : 1); const DWORD start = GetTickCount(); DWORD remaining = milliseconds; for (DWORD interval = 1; /**/; interval *= 2) { for (int i = 0; i < spin; ++i) { if (TryEnterCriticalSection(&cs)) { Guard guard(*this); list_.push_back(&cs); return true; } if (milliseconds != INFINITE) { DWORD elapsed = GetTickCount() - start; if (elapsed >= milliseconds) return false; remaining = milliseconds - elapsed; } } if ((interval > 128) || (interval > remaining)) interval = 1; Sleep(interval); } } // Lock 'cs' once by blocking for it. // Returns after the lock has been acquired. void W32CriticalSection::AdvancedGuard::Lock(W32CriticalSection &cs) { EnterCriticalSection(&cs); Guard guard(*this); list_.push_back(&cs); } // Unlock 'cs' once. // Returns after the lock has been released. void W32CriticalSection::AdvancedGuard::Unlock(W32CriticalSection &cs) { Guard guard(*this); for (std::list::reverse_iterator i = list_.rbegin(); i != list_.rend(); ++i) { if (*i != &cs) continue; list_.erase((++i).base()); LeaveCriticalSection(&cs); return; } } workrave-1.10.50/common/src/win32/Makefile.am0000644000175100001710000000133414221624107017500 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in if PLATFORM_OS_WINDOWS noinst_LTLIBRARIES = libworkrave-common-win32.la libworkrave_common_win32_la_SOURCES = \ crashlog.c libworkrave_common_win32_la_LIBADD = libworkrave_common_win32_la_CXXFLAGS = @GLIB_CFLAGS@ endif AM_CPPFLAGS = -W -D_XOPEN_SOURCE=600 -I. -I$(top_srcdir)/common/include \ -I$(top_srcdir)/common/include/win32 -I$(top_srcdir)/common/win32/harpoon/include EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.c) \ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) workrave-1.10.50/common/src/win32/crashlog.c0000644000175100001710000005353014221624107017417 0ustar00gdm00000000000000/* * crashlog.c * * Copyright (C) 2003, 2004, 2005, 2007, 2010, 2011 Rob Caelers * Copyright (C) 2007 Ray Satiro * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Based on Dr. Mingw. and OpenTTD */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "crashlog.h" #include "harpoon.h" #include #ifndef _O_APPEND # define _O_APPEND 0x0008 #endif #ifndef _O_TEXT # define _O_TEXT 0x4000 #endif static void unwind_stack(FILE *log, HANDLE process, PCONTEXT context); static void dump_registers(FILE *log, PCONTEXT context); static void dump_registry(FILE *log, HKEY key, char *name); /* static void print_module_list(FILE *log); */ static DWORD GetModuleBase(DWORD dwAddress) { MEMORY_BASIC_INFORMATION Buffer; return VirtualQuery((LPCVOID)dwAddress, &Buffer, sizeof(Buffer)) ? (DWORD)Buffer.AllocationBase : 0; } static EXCEPTION_DISPOSITION __cdecl double_exception_handler(struct _EXCEPTION_RECORD *exception_record, void *establisher_frame, struct _CONTEXT *context_record, void *dispatcher_context) { (void)exception_record; (void)establisher_frame; (void)context_record; (void)dispatcher_context; MessageBox(NULL, "Workrave has unexpectedly crashed and failed to create a crash " "log. This is serious. Please report this to crashes@workrave.org or " "file a bugreport at: http://issues.workrave.org/. ", "Double exception", MB_OK); exit(1); } LONG WINAPI exception_filter(EXCEPTION_POINTERS *ep) { return exception_handler(ep->ExceptionRecord, NULL, ep->ContextRecord, NULL); } EXCEPTION_DISPOSITION __cdecl exception_handler(struct _EXCEPTION_RECORD *exception_record, void *establisher_frame, struct _CONTEXT *context_record, void *dispatcher_context) { char crash_log_name[MAX_PATH]; char crash_text[1024]; TCHAR szModule[MAX_PATH]; HMODULE hModule; FILE *log; (void)establisher_frame; (void)dispatcher_context; __try1(double_exception_handler); harpoon_unblock_input(); /* Modified for Unicode >= WinNT. No UnicoWS check for Me/98/95. jay satiro, workrave project, july 2007 */ WCHAR env_var[20] = { 0, }; WCHAR crashlog[] = L"\\workrave-crashlog.txt"; WCHAR *wbuffer = NULL; WCHAR *p_wbuffer = NULL; DWORD(WINAPI * GetEnvironmentVariableW)(LPCWSTR, LPWSTR, DWORD); HANDLE(WINAPI * CreateFileW)(LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE); GetEnvironmentVariableW = (DWORD(WINAPI *)(LPCWSTR, LPWSTR, DWORD))GetProcAddress(GetModuleHandleA("kernel32.dll"), "GetEnvironmentVariableW"); CreateFileW = (HANDLE(WINAPI *)(LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE))GetProcAddress( GetModuleHandleA("kernel32.dll"), "CreateFileW"); if (GetEnvironmentVariableW && CreateFileW) // >= WinNT { HANDLE handle; DWORD bufsize, ret; wcsncpy(env_var, L"APPDATA", 19); env_var[19] = '\0'; bufsize = (*GetEnvironmentVariableW)(env_var, NULL, 0); // bufsize is size in wide chars, including null if (!bufsize) // If %appdata% is unsuitable, try temp: { wcsncpy(env_var, L"TEMP", 19); env_var[19] = '\0'; bufsize = (*GetEnvironmentVariableW)(env_var, NULL, 0); } ret = 0; wbuffer = NULL; if (bufsize) { // We will need room for \\?\ so add 4 if ((wbuffer = (WCHAR *)calloc(4 + bufsize + wcslen(crashlog), sizeof(WCHAR))) != NULL) { wcscpy(wbuffer, L"\\\\?\\"); p_wbuffer = wbuffer + 4; ret = (*GetEnvironmentVariableW)(env_var, p_wbuffer, bufsize); } } if (!ret) // Environment unsuitable, notify & terminate. { free(wbuffer); snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. The environment is " "unsuitable to create a crash log. Please file a bug report:\n" "http://issues.workrave.org/\n" "Thanks."); MessageBoxA(NULL, crash_text, "Exception", MB_OK); __except1; exit(1); } // last wchar p_wbuffer = wbuffer + wcslen(wbuffer) - 1; while (*p_wbuffer == L'\\') // remove trailing slashes { *p_wbuffer-- = L'\0'; } // append filename to end of string wcscpy(++p_wbuffer, crashlog); // compare first wchar of returned environment string if (wbuffer[4] == L'\\') /* If possible network path, don't include literal \\?\ \\?\\\1.2.3.4\workrave-crashlog.txt should be \\1.2.3.4\workrave-crashlog.txt */ p_wbuffer = wbuffer + 4; else // Point to start of wbuffer: p_wbuffer = wbuffer; handle = (*CreateFileW)(p_wbuffer, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); int fd = _open_osfhandle((intptr_t)handle, _O_APPEND | _O_TEXT); log = _fdopen(fd, "w"); } else // if( GetVersion() & (DWORD) 0x80000000 ) // Windows Me/98/95 { GetModuleFileName(GetModuleHandle(NULL), crash_log_name, sizeof(crash_log_name)); // crash_log_name == c:\program files\workrave\lib\workrave.exe char *s = strrchr(crash_log_name, '\\'); assert(s); *s = '\0'; // crash_log_name == c:\program files\workrave\lib s = strrchr(crash_log_name, '\\'); assert(s); *s = '\0'; // crash_log_name == c:\program files\workrave strcat(crash_log_name, "\\workrave-crashlog.txt"); log = fopen(crash_log_name, "w"); } if (log == NULL) // workrave-crashlog.txt wasn't created. { snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. An attempt to create " "a crashlog has failed. Please file a bug report:\n" "http://issues.workrave.org/\n" "Thanks."); MessageBoxA(NULL, crash_text, "Exception", MB_OK); __except1; exit(1); } SYSTEMTIME SystemTime; GetLocalTime(&SystemTime); fprintf(log, "Crash log created on %02d/%02d/%04d at %02d:%02d:%02d.\n\n", SystemTime.wDay, SystemTime.wMonth, SystemTime.wYear, SystemTime.wHour, SystemTime.wMinute, SystemTime.wSecond); fprintf(log, "version = %s\n", VERSION); fprintf(log, "compile date = %s\n", __DATE__); fprintf(log, "compile time = %s\n", __TIME__); fprintf(log, "features = " #ifdef HAVE_DISTRIBUTION "DISTRIBUTION " #endif #ifdef HAVE_EXERCISES "EXERCISES " #endif #ifdef HAVE_GCONF "GCONF?? " #endif #ifdef HAVE_GDOME "GDOME " #endif #ifdef HAVE_GNET "GNET " #endif #ifdef HAVE_GNET2 "GNET2 " #endif #ifdef HAVE_XRECORD "XRECORD?? " #endif #ifndef NDEBUG "DEBUG " #endif "\n"); // write locale info: char *buffer = NULL; int bufsize = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SENGLANGUAGE, buffer, 0); if (bufsize) buffer = (char *)calloc(bufsize + 1, 1); if (buffer) { GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SENGLANGUAGE, buffer, bufsize); buffer[bufsize] = '\0'; fprintf(log, "locale = %s\n", buffer); free(buffer); } fprintf(log, "\n\n"); fprintf(log, "code = %x\n", (int)exception_record->ExceptionCode); fprintf(log, "flags = %x\n", (int)exception_record->ExceptionFlags); fprintf(log, "address = %x\n", (int)exception_record->ExceptionAddress); fprintf(log, "params = %d\n", (int)exception_record->NumberParameters); fprintf(log, "%s caused ", GetModuleFileName(NULL, szModule, MAX_PATH) ? szModule : "Application"); switch (exception_record->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: fprintf(log, "an Access Violation"); break; case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: fprintf(log, "an Array Bound Exceeded"); break; case EXCEPTION_BREAKPOINT: fprintf(log, "a Breakpoint"); break; case EXCEPTION_DATATYPE_MISALIGNMENT: fprintf(log, "a Datatype Misalignment"); break; case EXCEPTION_FLT_DENORMAL_OPERAND: fprintf(log, "a Float Denormal Operand"); break; case EXCEPTION_FLT_DIVIDE_BY_ZERO: fprintf(log, "a Float Divide By Zero"); break; case EXCEPTION_FLT_INEXACT_RESULT: fprintf(log, "a Float Inexact Result"); break; case EXCEPTION_FLT_INVALID_OPERATION: fprintf(log, "a Float Invalid Operation"); break; case EXCEPTION_FLT_OVERFLOW: fprintf(log, "a Float Overflow"); break; case EXCEPTION_FLT_STACK_CHECK: fprintf(log, "a Float Stack Check"); break; case EXCEPTION_FLT_UNDERFLOW: fprintf(log, "a Float Underflow"); break; case EXCEPTION_GUARD_PAGE: fprintf(log, "a Guard Page"); break; case EXCEPTION_ILLEGAL_INSTRUCTION: fprintf(log, "an Illegal Instruction"); break; case EXCEPTION_IN_PAGE_ERROR: fprintf(log, "an In Page Error"); break; case EXCEPTION_INT_DIVIDE_BY_ZERO: fprintf(log, "an Integer Divide By Zero"); break; case EXCEPTION_INT_OVERFLOW: fprintf(log, "an Integer Overflow"); break; case EXCEPTION_INVALID_DISPOSITION: fprintf(log, "an Invalid Disposition"); break; case EXCEPTION_INVALID_HANDLE: fprintf(log, "an Invalid Handle"); break; case EXCEPTION_NONCONTINUABLE_EXCEPTION: fprintf(log, "a Noncontinuable Exception"); break; case EXCEPTION_PRIV_INSTRUCTION: fprintf(log, "a Privileged Instruction"); break; case EXCEPTION_SINGLE_STEP: fprintf(log, "a Single Step"); break; case EXCEPTION_STACK_OVERFLOW: fprintf(log, "a Stack Overflow"); break; case DBG_CONTROL_C: fprintf(log, "a Control+C"); break; case DBG_CONTROL_BREAK: fprintf(log, "a Control+Break"); break; case DBG_TERMINATE_THREAD: fprintf(log, "a Terminate Thread"); break; case DBG_TERMINATE_PROCESS: fprintf(log, "a Terminate Process"); break; case RPC_S_UNKNOWN_IF: fprintf(log, "an Unknown Interface"); break; case RPC_S_SERVER_UNAVAILABLE: fprintf(log, "a Server Unavailable"); break; default: fprintf(log, "an Unknown [0x%lX] Exception", exception_record->ExceptionCode); break; } fprintf(log, " at location %08x", (int)exception_record->ExceptionAddress); if ((hModule = (HMODULE)GetModuleBase((DWORD)exception_record->ExceptionAddress) && GetModuleFileName(hModule, szModule, sizeof(szModule)))) fprintf(log, " in module %s", szModule); // If the exception was an access violation, print out some additional information, to the error log and the debugger. if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION && exception_record->NumberParameters >= 2) fprintf(log, " %s location %08x\n\n", exception_record->ExceptionInformation[0] ? "writing to" : "reading from", exception_record->ExceptionInformation[1]); DWORD pid = GetCurrentProcessId(); HANDLE process = OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid); dump_registers(log, context_record); unwind_stack(log, process, context_record); print_module_list(log); fprintf(log, "\nRegistry dump:\n\n"); dump_registry(log, HKEY_CURRENT_USER, "Software\\Workrave"); fclose(log); if (GetEnvironmentVariableW && CreateFileW) // >= WinNT { WCHAR *one = L"Workrave has unexpectedly crashed. A crash log has been saved to:\n"; WCHAR *two = L"\nPlease file a bug report: http://issues.workrave.org/\n" L"Thanks."; WCHAR *nomem = L"Workrave is out of memory!"; int size = wcslen(one) + wcslen(p_wbuffer) + wcslen(two) + 1; WCHAR *message = (WCHAR *)calloc(size, sizeof(WCHAR)); if (!message) // Low memory... { // % + % + null = 3 extra size = wcslen(one) + wcslen(env_var) + wcslen(crashlog) + wcslen(two) + 3; message = (WCHAR *)calloc(size, sizeof(WCHAR)); if (message) { snwprintf(message, size - 1, L"%S%S%S%S", one, env_var, crashlog, two); message[size - 1] = L'\0'; } else // No memory... message = nomem; } else // A buffer was allocated with enough memory to hold p_wbuffer { snwprintf(message, size - 1, L"%S%S%S", one, p_wbuffer, two); message[size - 1] = L'\0'; } MessageBoxW(NULL, message, L"Exception", MB_OK); } else { snprintf(crash_text, 1023, "Workrave has unexpectedly crashed. A crash log has been saved to " "%s. Please file a bugreport at: http://issues.workrave.org/. " "Thanks.", crash_log_name); MessageBoxA(NULL, crash_text, "Exception", MB_OK); } __except1; exit(1); } static BOOL WINAPI stack_walk(HANDLE process, LPSTACKFRAME stack_frame, PCONTEXT context_record) { if (!stack_frame->Reserved[0]) { stack_frame->Reserved[0] = 1; stack_frame->AddrPC.Mode = AddrModeFlat; stack_frame->AddrPC.Offset = context_record->Eip; stack_frame->AddrStack.Mode = AddrModeFlat; stack_frame->AddrStack.Offset = context_record->Esp; stack_frame->AddrFrame.Mode = AddrModeFlat; stack_frame->AddrFrame.Offset = context_record->Ebp; stack_frame->AddrReturn.Mode = AddrModeFlat; if (!ReadProcessMemory(process, (LPCVOID)(stack_frame->AddrFrame.Offset + sizeof(DWORD)), &stack_frame->AddrReturn.Offset, sizeof(DWORD), NULL)) return FALSE; } else { stack_frame->AddrPC.Offset = stack_frame->AddrReturn.Offset; if (!ReadProcessMemory(process, (LPCVOID)stack_frame->AddrFrame.Offset, &stack_frame->AddrFrame.Offset, sizeof(DWORD), NULL)) return FALSE; if (!ReadProcessMemory(process, (LPCVOID)(stack_frame->AddrFrame.Offset + sizeof(DWORD)), &stack_frame->AddrReturn.Offset, sizeof(DWORD), NULL)) return FALSE; } ReadProcessMemory( process, (LPCVOID)(stack_frame->AddrFrame.Offset + 2 * sizeof(DWORD)), stack_frame->Params, sizeof(stack_frame->Params), NULL); return TRUE; } static void unwind_stack(FILE *log, HANDLE process, PCONTEXT context) { STACKFRAME sf; fprintf(log, "Stack trace:\n\n"); ZeroMemory(&sf, sizeof(STACKFRAME)); sf.AddrPC.Offset = context->Eip; sf.AddrPC.Mode = AddrModeFlat; sf.AddrStack.Offset = context->Esp; sf.AddrStack.Mode = AddrModeFlat; sf.AddrFrame.Offset = context->Ebp; sf.AddrFrame.Mode = AddrModeFlat; fprintf(log, "PC Frame Ret\n"); while (TRUE) { if (!stack_walk(process, &sf, context)) break; if (sf.AddrFrame.Offset == 0) break; fprintf(log, "%08X %08X %08X\n", (int)sf.AddrPC.Offset, (int)sf.AddrFrame.Offset, (int)sf.AddrReturn.Offset); } } static void print_module_info(FILE *log, HMODULE mod) { TCHAR buffer[MAX_PATH]; HANDLE file; SYSTEMTIME file_time; FILETIME write_time; GetModuleFileName(mod, buffer, MAX_PATH); file = CreateFile(buffer, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0); if (file != INVALID_HANDLE_VALUE) { if (GetFileTime(file, NULL, NULL, &write_time)) { FileTimeToSystemTime(&write_time, &file_time); } CloseHandle(file); } fprintf(log, " %-20s handle: %p date: %d-%.2d-%.2d %.2d:%.2d:%.2d\n", buffer, mod, file_time.wYear, file_time.wMonth, file_time.wDay, file_time.wHour, file_time.wMinute, file_time.wSecond); } void print_module_list(FILE *log) { HMODULE lib; BOOL(WINAPI * EnumProcessModules)(HANDLE, HMODULE *, DWORD, LPDWORD); EnumProcessModules = NULL; lib = LoadLibrary("psapi.dll"); if (lib != NULL) { EnumProcessModules = GetProcAddress(lib, "EnumProcessModules"); } if (EnumProcessModules != NULL) { HMODULE modules[100]; DWORD needed; BOOL res; int count, i; HANDLE proc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, GetCurrentProcessId()); if (proc != NULL) { res = EnumProcessModules(proc, modules, sizeof(modules), &needed); CloseHandle(proc); if (res) { count = min(needed / sizeof(HMODULE), 100); for (i = 0; i != count; i++) { print_module_info(log, modules[i]); } return; } } } print_module_info(log, NULL); } static void dump_registers(FILE *log, PCONTEXT context) { fprintf(log, "Registers:\n\n"); if (context->ContextFlags & CONTEXT_INTEGER) { fprintf(log, "eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n", context->Eax, context->Ebx, context->Ecx, context->Edx, context->Esi, context->Edi); } if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, "eip=%08lx esp=%08lx ebp=%08lx iopl=%1lx %s %s %s %s %s %s %s %s %s %s\n", context->Eip, context->Esp, context->Ebp, (context->EFlags >> 12) & 3, // IOPL level value context->EFlags & 0x00100000 ? "vip" : " ", // VIP (virtual interrupt pending) context->EFlags & 0x00080000 ? "vif" : " ", // VIF (virtual interrupt flag) context->EFlags & 0x00000800 ? "ov" : "nv", // VIF (virtual interrupt flag) context->EFlags & 0x00000400 ? "dn" : "up", // OF (overflow flag) context->EFlags & 0x00000200 ? "ei" : "di", // IF (interrupt enable flag) context->EFlags & 0x00000080 ? "ng" : "pl", // SF (sign flag) context->EFlags & 0x00000040 ? "zr" : "nz", // ZF (zero flag) context->EFlags & 0x00000010 ? "ac" : "na", // AF (aux carry flag) context->EFlags & 0x00000004 ? "po" : "pe", // PF (parity flag) context->EFlags & 0x00000001 ? "cy" : "nc" // CF (carry flag) ); } if (context->ContextFlags & CONTEXT_SEGMENTS) { fprintf(log, "cs=%04lx ss=%04lx ds=%04lx es=%04lx fs=%04lx gs=%04lx", context->SegCs, context->SegSs, context->SegDs, context->SegEs, context->SegFs, context->SegGs); if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, " efl=%08lx", context->EFlags); } } else { if (context->ContextFlags & CONTEXT_CONTROL) { fprintf(log, " efl=%08lx", context->EFlags); } } fprintf(log, "\n\n"); } static void save_key(FILE *log, HKEY key, char *name) { DWORD i; char keyname[512]; int keyname_len = strlen(keyname); fprintf(log, "key = %s\n", name); for (i = 0;; i++) { char val[256]; DWORD val_size = sizeof(val); BYTE data[0x4000]; DWORD data_size = sizeof(data); DWORD type; LONG rc = RegEnumValue(key, i, val, &val_size, 0, &type, data, &data_size); if (rc != ERROR_SUCCESS) break; if (val_size) fprintf(log, " value = %s\n", val); if (strcmp("password", val) == 0) { fprintf(log, " string data = \n"); } else if (type == REG_SZ) { fprintf(log, " string data = %s\n", data); } else if (type == REG_DWORD && data_size == 4) { fprintf(log, " dword data = %08lx\n", (long)data); } else { fprintf(log, " hex data = [unsupported]\n"); } } fprintf(log, "\n"); strcpy(keyname, name); strcat(keyname, "\\"); keyname_len = strlen(keyname); for (i = 0;; i++) { HKEY subkey; LONG rc = RegEnumKey(key, i, keyname + keyname_len, sizeof(keyname) - keyname_len); if (rc != ERROR_SUCCESS) break; rc = RegOpenKey(key, keyname + keyname_len, &subkey); if (rc == ERROR_SUCCESS) { dump_registry(log, subkey, keyname); RegCloseKey(subkey); } } } static void dump_registry(FILE *log, HKEY key, char *name) { (void)key; HKEY handle; LONG rc = RegOpenKeyEx(HKEY_CURRENT_USER, name, 0, KEY_ALL_ACCESS, &handle); if (rc == ERROR_SUCCESS) { save_key(log, handle, name); RegCloseKey(handle); } } workrave-1.10.50/common/src/DBusProxy-gio.cc0000644000175100001710000000722714221624106017472 0ustar00gdm00000000000000// DBusProxy-gio.cc --- support for simple DBUS method execution // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // It is possible that it uses some code and ideas from the KShutdown utility: // file src/actions/lock.cpp // Copyright (C) 2009 Konrad Twardowski // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "DBusProxy-gio.hh" #include bool DBusProxy::init_with_connection(GDBusConnection *connection, const char *name, const char *object_path, const char *interface_name, GDBusProxyFlags flags_in) { TRACE_ENTER_MSG("DBus_proxy::init_with_connection", name); this->flags = flags_in; proxy = g_dbus_proxy_new_sync(connection, flags, NULL, name, object_path, interface_name, NULL, &error); if (error != NULL) { TRACE_MSG("Error: " << error->message); return false; } TRACE_EXIT(); return true; } bool DBusProxy::init(GBusType bus_type, const char *name, const char *object_path, const char *interface_name, GDBusProxyFlags flags_in) { TRACE_ENTER_MSG("DBus_proxy::init", name); this->flags = flags_in; error = NULL; proxy = g_dbus_proxy_new_for_bus_sync(bus_type, flags, NULL, name, object_path, interface_name, NULL, &error); if (error != NULL) { TRACE_MSG("Error: " << error->message); return false; } TRACE_EXIT(); return true; } // Consumes (=deletes) method_parameters if it is floating // method_result may be null, in this case the result of the method is ignored bool DBusProxy::call_method(const char *method_name, GVariant *method_parameters, GVariant **method_result) { TRACE_ENTER_MSG("DBus_proxy::call_method", method_name); if (proxy == NULL) return false; if (error != NULL) { g_error_free(error); error = NULL; } GVariant *result = g_dbus_proxy_call_sync(proxy, method_name, method_parameters, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (method_result == NULL) { if (result != NULL) { g_variant_unref(result); result = NULL; } } else { if (error != NULL) { *method_result = NULL; if (result != NULL) { g_variant_unref(result); result = NULL; } } else { *method_result = result; } } if (error != NULL) { TRACE_RETURN(error->message); return false; } TRACE_EXIT(); return true; } // Consumes (=deletes) method_parameters if it is floating bool DBusProxy::call_method_asynch_no_result(const char *method_name, GVariant *method_parameters) { TRACE_ENTER_MSG("DBus_proxy::call_method_asynch_no_result", method_name); if (proxy == NULL) return false; if (error != NULL) { g_error_free(error); error = NULL; } g_dbus_proxy_call(proxy, method_name, method_parameters, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL); TRACE_EXIT(); return true; } workrave-1.10.50/common/src/debug.cc0000644000175100001710000000421114221624106016073 0ustar00gdm00000000000000// debug.cc // // Copyright (C) 2001, 2002, 2003, 2007, 2009, 2011, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef TRACING # include # include # ifdef PLATFORM_OS_WINDOWS # define WIN32_LEAN_AND_MEAN # include # endif # include "Mutex.hh" # include "debug.hh" using namespace std; Mutex g_log_mutex; std::ofstream g_log_stream; std::string Debug::trace_get_time() { char logtime[128]; time_t ltime; time(<ime); struct tm *tmlt = localtime(<ime); strftime(logtime, 128, "%d%b%Y %H:%M:%S ", tmlt); return logtime; } void Debug::init() { std::string debug_filename; # if defined(WIN32) || defined(PLATFORM_OS_WINDOWS) char path_buffer[MAX_PATH]; DWORD ret = GetTempPath(MAX_PATH, path_buffer); if (ret > MAX_PATH || ret == 0) { debug_filename = "C:\\temp\\"; } else { debug_filename = path_buffer; } g_mkdir(debug_filename.c_str(), 0); # elif defined(PLATFORM_OS_MACOS) debug_filename = "/tmp/"; # elif defined(PLATFORM_OS_UNIX) debug_filename = "/tmp/"; # else # error Unknown platform. # endif char logfile[128]; time_t ltime; time(<ime); struct tm *tmlt = localtime(<ime); strftime(logfile, 128, "workrave-%d%b%Y-%H%M%S", tmlt); debug_filename += logfile; g_log_stream.open(debug_filename.c_str(), std::ios::app); if (g_log_stream.is_open()) { std::cerr.rdbuf(g_log_stream.rdbuf()); } } #endif workrave-1.10.50/common/src/Diagnostics.cc0000644000175100001710000000140714221624106017260 0ustar00gdm00000000000000#include "Diagnostics.hh" #include bool TracedFieldBase::debug = false; void Diagnostics::enable(DiagnosticsSink *sink) { this->sink = sink; enabled = true; TracedFieldBase::debug = true; for (const auto &kv: topics) { kv.second(); } } void Diagnostics::disable() { enabled = false; sink = nullptr; TracedFieldBase::debug = false; } void Diagnostics::register_topic(const std::string &name, request_t func) { topics[name] = func; } void Diagnostics::unregister_topic(const std::string &name) { topics.erase(name); } std::string Diagnostics::trace_get_time() { char logtime[128]; time_t ltime; time(<ime); struct tm *tmlt = localtime(<ime); strftime(logtime, 128, "%d %b %Y %H:%M:%S ", tmlt); return logtime; } workrave-1.10.50/common/src/locale.inc0000644000175100001710000004462614221624107016447 0ustar00gdm00000000000000struct language_t { const char *code; const char *lang; } languages []= { { "aa", "Afar" }, { "ab", "Abkhazian" }, { "ace", "Achinese" }, { "ach", "Acoli" }, { "ada", "Adangme" }, { "ady", "Adyghe; Adygei" }, { "ae", "Avestan" }, { "af", "Afrikaans" }, { "afa", "Afro-Asiatic (Other)" }, { "afh", "Afrihili" }, { "ain", "Ainu" }, { "ak", "Akan" }, { "akk", "Akkadian" }, { "ale", "Aleut" }, { "alg", "Algonquian languages" }, { "alt", "Southern Altai" }, { "am", "Amharic" }, { "an", "Aragonese" }, { "ang", "English, Old (ca. 450-1100)" }, { "anp", "Angika" }, { "apa", "Apache languages" }, { "ar", "Arabic" }, { "arc", "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)" }, { "arn", "Mapudungun; Mapuche" }, { "arp", "Arapaho" }, { "art", "Artificial (Other)" }, { "arw", "Arawak" }, { "as", "Assamese" }, { "ast", "Asturian; Bable; Leonese; Asturleonese" }, { "ath", "Athapascan languages" }, { "aus", "Australian languages" }, { "av", "Avaric" }, { "awa", "Awadhi" }, { "ay", "Aymara" }, { "az", "Azerbaijani" }, { "ba", "Bashkir" }, { "bad", "Banda languages" }, { "bai", "Bamileke languages" }, { "bal", "Baluchi" }, { "ban", "Balinese" }, { "bas", "Basa" }, { "bat", "Baltic (Other)" }, { "be", "Belarusian" }, { "bej", "Beja; Bedawiyet" }, { "bem", "Bemba" }, { "ber", "Berber (Other)" }, { "bg", "Bulgarian" }, { "bh", "Bihari" }, { "bho", "Bhojpuri" }, { "bi", "Bislama" }, { "bik", "Bikol" }, { "bin", "Bini; Edo" }, { "bla", "Siksika" }, { "bm", "Bambara" }, { "bn", "Bengali" }, { "bnt", "Bantu (Other)" }, { "bo", "Tibetan" }, { "br", "Breton" }, { "bra", "Braj" }, { "bs", "Bosnian" }, { "btk", "Batak languages" }, { "bua", "Buriat" }, { "bug", "Buginese" }, { "byn", "Blin; Bilin" }, { "ca", "Catalan; Valencian" }, { "cad", "Caddo" }, { "cai", "Central American Indian (Other)" }, { "car", "Galibi Carib" }, { "cau", "Caucasian (Other)" }, { "ce", "Chechen" }, { "ceb", "Cebuano" }, { "cel", "Celtic (Other)" }, { "ch", "Chamorro" }, { "chb", "Chibcha" }, { "chg", "Chagatai" }, { "chk", "Chuukese" }, { "chm", "Mari" }, { "chn", "Chinook jargon" }, { "cho", "Choctaw" }, { "chp", "Chipewyan; Dene Suline" }, { "chr", "Cherokee" }, { "chy", "Cheyenne" }, { "cmc", "Chamic languages" }, { "co", "Corsican" }, { "cop", "Coptic" }, { "cpe", "Creoles and pidgins, English based (Other)" }, { "cpf", "Creoles and pidgins, French-based (Other)" }, { "cpp", "Creoles and pidgins, Portuguese-based (Other)" }, { "cr", "Cree" }, { "crh", "Crimean Tatar; Crimean Turkish" }, { "crp", "Creoles and pidgins (Other)" }, { "cs", "Czech" }, { "csb", "Kashubian" }, { "cu", "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic" }, { "cus", "Cushitic (Other)" }, { "cv", "Chuvash" }, { "cy", "Welsh" }, { "da", "Danish" }, { "dak", "Dakota" }, { "dar", "Dargwa" }, { "day", "Land Dayak languages" }, { "de", "German" }, { "del", "Delaware" }, { "den", "Slave (Athapascan)" }, { "dgr", "Dogrib" }, { "din", "Dinka" }, { "doi", "Dogri" }, { "dra", "Dravidian (Other)" }, { "dsb", "Lower Sorbian" }, { "dua", "Duala" }, { "dum", "Dutch, Middle (ca. 1050-1350)" }, { "dv", "Divehi; Dhivehi; Maldivian" }, { "dyu", "Dyula" }, { "dz", "Dzongkha" }, { "ee", "Ewe" }, { "efi", "Efik" }, { "egy", "Egyptian (Ancient)" }, { "eka", "Ekajuk" }, { "el", "Greek, Modern (1453-)" }, { "elx", "Elamite" }, { "en", "English" }, { "enm", "English, Middle (1100-1500)" }, { "eo", "Esperanto" }, { "es", "Spanish; Castilian" }, { "et", "Estonian" }, { "eu", "Basque" }, { "ewo", "Ewondo" }, { "fa", "Persian" }, { "fan", "Fang" }, { "fat", "Fanti" }, { "ff", "Fulah" }, { "fi", "Finnish" }, { "fil", "Filipino; Pilipino" }, { "fiu", "Finno-Ugrian (Other)" }, { "fj", "Fijian" }, { "fo", "Faroese" }, { "fon", "Fon" }, { "fr", "French" }, { "frm", "French, Middle (ca. 1400-1600)" }, { "fro", "French, Old (842-ca. 1400)" }, { "frr", "Northern Frisian" }, { "frs", "Eastern Frisian" }, { "fur", "Friulian" }, { "fy", "Western Frisian" }, { "ga", "Irish" }, { "gaa", "Ga" }, { "gay", "Gayo" }, { "gba", "Gbaya" }, { "gd", "Gaelic; Scottish Gaelic" }, { "gem", "Germanic (Other)" }, { "gez", "Geez" }, { "gil", "Gilbertese" }, { "gl", "Galician" }, { "gmh", "German, Middle High (ca. 1050-1500)" }, { "gn", "Guarani" }, { "goh", "German, Old High (ca. 750-1050)" }, { "gon", "Gondi" }, { "gor", "Gorontalo" }, { "got", "Gothic" }, { "grb", "Grebo" }, { "grc", "Greek, Ancient (to 1453)" }, { "gsw", "Swiss German; Alemannic" }, { "gu", "Gujarati" }, { "gv", "Manx" }, { "gwi", "Gwich´in" }, { "ha", "Hausa" }, { "hai", "Haida" }, { "haw", "Hawaiian" }, { "he", "Hebrew" }, { "hi", "Hindi" }, { "hil", "Hiligaynon" }, { "him", "Himachali" }, { "hit", "Hittite" }, { "hmn", "Hmong" }, { "ho", "Hiri Motu" }, { "hr", "Croatian" }, { "hsb", "Upper Sorbian" }, { "ht", "Haitian; Haitian Creole" }, { "hu", "Hungarian" }, { "hup", "Hupa" }, { "hy", "Armenian" }, { "hz", "Herero" }, { "ia", "Interlingua (International Auxiliary Language Association)" }, { "iba", "Iban" }, { "id", "Indonesian" }, { "ie", "Interlingue; Occidental" }, { "ig", "Igbo" }, { "ii", "Sichuan Yi; Nuosu" }, { "ijo", "Ijo languages" }, { "ik", "Inupiaq" }, { "ilo", "Iloko" }, { "inc", "Indic (Other)" }, { "ine", "Indo-European (Other)" }, { "inh", "Ingush" }, { "io", "Ido" }, { "ira", "Iranian (Other)" }, { "iro", "Iroquoian languages" }, { "is", "Icelandic" }, { "it", "Italian" }, { "iu", "Inuktitut" }, { "ja", "Japanese" }, { "jbo", "Lojban" }, { "jpr", "Judeo-Persian" }, { "jrb", "Judeo-Arabic" }, { "jv", "Javanese" }, { "ka", "Georgian" }, { "kaa", "Kara-Kalpak" }, { "kab", "Kabyle" }, { "kac", "Kachin; Jingpho" }, { "kam", "Kamba" }, { "kar", "Karen languages" }, { "kaw", "Kawi" }, { "kbd", "Kabardian" }, { "kg", "Kongo" }, { "kha", "Khasi" }, { "khi", "Khoisan (Other)" }, { "kho", "Khotanese" }, { "ki", "Kikuyu; Gikuyu" }, { "kj", "Kuanyama; Kwanyama" }, { "kk", "Kazakh" }, { "kl", "Kalaallisut; Greenlandic" }, { "km", "Central Khmer" }, { "kmb", "Kimbundu" }, { "kn", "Kannada" }, { "ko", "Korean" }, { "kok", "Konkani" }, { "kos", "Kosraean" }, { "kpe", "Kpelle" }, { "kr", "Kanuri" }, { "krc", "Karachay-Balkar" }, { "krl", "Karelian" }, { "kro", "Kru languages" }, { "kru", "Kurukh" }, { "ks", "Kashmiri" }, { "ku", "Kurdish" }, { "kum", "Kumyk" }, { "kut", "Kutenai" }, { "kv", "Komi" }, { "kw", "Cornish" }, { "ky", "Kirghiz; Kyrgyz" }, { "la", "Latin" }, { "lad", "Ladino" }, { "lah", "Lahnda" }, { "lam", "Lamba" }, { "lb", "Luxembourgish; Letzeburgesch" }, { "lez", "Lezghian" }, { "lg", "Ganda" }, { "li", "Limburgan; Limburger; Limburgish" }, { "ln", "Lingala" }, { "lo", "Lao" }, { "lol", "Mongo" }, { "loz", "Lozi" }, { "lt", "Lithuanian" }, { "lu", "Luba-Katanga" }, { "lua", "Luba-Lulua" }, { "lui", "Luiseno" }, { "lun", "Lunda" }, { "luo", "Luo (Kenya and Tanzania)" }, { "lus", "Lushai" }, { "lv", "Latvian" }, { "mad", "Madurese" }, { "mag", "Magahi" }, { "mai", "Maithili" }, { "mak", "Makasar" }, { "man", "Mandingo" }, { "map", "Austronesian (Other)" }, { "mas", "Masai" }, { "mdf", "Moksha" }, { "mdr", "Mandar" }, { "men", "Mende" }, { "mg", "Malagasy" }, { "mga", "Irish, Middle (900-1200)" }, { "mh", "Marshallese" }, { "mi", "Maori" }, { "mic", "Mi'kmaq; Micmac" }, { "min", "Minangkabau" }, { "mis", "Uncoded languages" }, { "mk", "Macedonian" }, { "mkh", "Mon-Khmer (Other)" }, { "ml", "Malayalam" }, { "mn", "Mongolian" }, { "mnc", "Manchu" }, { "mni", "Manipuri" }, { "mno", "Manobo languages" }, { "mo", "Moldavian" }, { "moh", "Mohawk" }, { "mos", "Mossi" }, { "mr", "Marathi" }, { "ms", "Malay" }, { "mt", "Maltese" }, { "mul", "Multiple languages" }, { "mun", "Munda languages" }, { "mus", "Creek" }, { "mwl", "Mirandese" }, { "mwr", "Marwari" }, { "my", "Burmese" }, { "myn", "Mayan languages" }, { "myv", "Erzya" }, { "na", "Nauru" }, { "nah", "Nahuatl languages" }, { "nai", "North American Indian" }, { "nap", "Neapolitan" }, { "nb", "Norwegian Bokmål; Bokmål, Norwegian" }, { "nd", "Ndebele, North; North Ndebele" }, { "nds", "Low German; Low Saxon; German, Low; Saxon, Low" }, { "ne", "Nepali" }, { "new", "Newari; Nepal Bhasa" }, { "ng", "Ndonga" }, { "nia", "Nias" }, { "nic", "Niger-Kordofanian (Other)" }, { "niu", "Niuean" }, { "nl", "Dutch; Flemish" }, { "nn", "Norwegian Nynorsk; Nynorsk, Norwegian" }, { "no", "Norwegian" }, { "nog", "Nogai" }, { "non", "Norse, Old" }, { "nqo", "N'ko" }, { "nr", "Ndebele, South; South Ndebele" }, { "nso", "Northern Sotho, Pedi; Sepedi" }, { "nub", "Nubian languages" }, { "nv", "Navajo; Navaho" }, { "nwc", "Classical Newari; Old Newari; Classical Nepal Bhasa" }, { "ny", "Chichewa; Chewa; Nyanja" }, { "nym", "Nyamwezi" }, { "nyn", "Nyankole" }, { "nyo", "Nyoro" }, { "nzi", "Nzima" }, { "oc", "Occitan (post 1500); Provençal" }, { "oj", "Ojibwa" }, { "om", "Oromo" }, { "or", "Oriya" }, { "os", "Ossetian; Ossetic" }, { "osa", "Osage" }, { "ota", "Turkish, Ottoman (1500-1928)" }, { "oto", "Otomian languages" }, { "pa", "Panjabi; Punjabi" }, { "paa", "Papuan (Other)" }, { "pag", "Pangasinan" }, { "pal", "Pahlavi" }, { "pam", "Pampanga; Kapampangan" }, { "pap", "Papiamento" }, { "pau", "Palauan" }, { "peo", "Persian, Old (ca. 600-400 B.C.)" }, { "phi", "Philippine (Other)" }, { "phn", "Phoenician" }, { "pi", "Pali" }, { "pl", "Polish" }, { "pon", "Pohnpeian" }, { "pra", "Prakrit languages" }, { "pro", "Provençal, Old (to 1500)" }, { "ps", "Pushto" }, { "pt", "Portuguese" }, { "qaa-qtz", "Reserved for local use" }, { "qu", "Quechua" }, { "raj", "Rajasthani" }, { "rap", "Rapanui" }, { "rar", "Rarotongan; Cook Island Maori" }, { "rm", "Romansh" }, { "rn", "Rundi" }, { "ro", "Romanian" }, { "roa", "Romance (Other)" }, { "rom", "Romany" }, { "ru", "Russian" }, { "rup", "Aromanian; Arumanian; Macedo-Romanian" }, { "rw", "Kinyarwanda" }, { "sa", "Sanskrit" }, { "sad", "Sandawe" }, { "sah", "Yakut" }, { "sai", "South American Indian (Other)" }, { "sal", "Salishan languages" }, { "sam", "Samaritan Aramaic" }, { "sas", "Sasak" }, { "sat", "Santali" }, { "sc", "Sardinian" }, { "scn", "Sicilian" }, { "sco", "Scots" }, { "sd", "Sindhi" }, { "se", "Northern Sami" }, { "sel", "Selkup" }, { "sem", "Semitic (Other)" }, { "sg", "Sango" }, { "sga", "Irish, Old (to 900)" }, { "sgn", "Sign Languages" }, { "shn", "Shan" }, { "si", "Sinhala; Sinhalese" }, { "sid", "Sidamo" }, { "sio", "Siouan languages" }, { "sit", "Sino-Tibetan (Other)" }, { "sk", "Slovak" }, { "sl", "Slovenian" }, { "sla", "Slavic (Other)" }, { "sm", "Samoan" }, { "sma", "Southern Sami" }, { "smi", "Sami languages (Other)" }, { "smj", "Lule Sami" }, { "smn", "Inari Sami" }, { "sms", "Skolt Sami" }, { "sn", "Shona" }, { "snk", "Soninke" }, { "so", "Somali" }, { "sog", "Sogdian" }, { "son", "Songhai languages" }, { "sq", "Albanian" }, { "sr", "Serbian" }, { "srn", "Sranan Tongo" }, { "srr", "Serer" }, { "ss", "Swati" }, { "ssa", "Nilo-Saharan (Other)" }, { "st", "Sotho, Southern" }, { "su", "Sundanese" }, { "suk", "Sukuma" }, { "sus", "Susu" }, { "sux", "Sumerian" }, { "sv", "Swedish" }, { "sw", "Swahili" }, { "syc", "Classical Syriac" }, { "syr", "Syriac" }, { "ta", "Tamil" }, { "tai", "Tai (Other)" }, { "te", "Telugu" }, { "tem", "Timne" }, { "ter", "Tereno" }, { "tet", "Tetum" }, { "tg", "Tajik" }, { "th", "Thai" }, { "ti", "Tigrinya" }, { "tig", "Tigre" }, { "tiv", "Tiv" }, { "tk", "Turkmen" }, { "tkl", "Tokelau" }, { "tl", "Tagalog" }, { "tlh", "Klingon; tlhIngan-Hol" }, { "tli", "Tlingit" }, { "tmh", "Tamashek" }, { "tn", "Tswana" }, { "to", "Tonga (Tonga Islands)" }, { "tog", "Tonga (Nyasa)" }, { "tpi", "Tok Pisin" }, { "tr", "Turkish" }, { "ts", "Tsonga" }, { "tsi", "Tsimshian" }, { "tt", "Tatar" }, { "tum", "Tumbuka" }, { "tup", "Tupi languages" }, { "tut", "Altaic (Other)" }, { "tvl", "Tuvalu" }, { "tw", "Twi" }, { "ty", "Tahitian" }, { "tyv", "Tuvinian" }, { "udm", "Udmurt" }, { "ug", "Uighur; Uyghur" }, { "uga", "Ugaritic" }, { "uk", "Ukrainian" }, { "umb", "Umbundu" }, { "und", "Undetermined" }, { "ur", "Urdu" }, { "uz", "Uzbek" }, { "vai", "Vai" }, { "ve", "Venda" }, { "vi", "Vietnamese" }, { "vo", "Volapük" }, { "vot", "Votic" }, { "wa", "Walloon" }, { "wak", "Wakashan languages" }, { "wal", "Walamo" }, { "war", "Waray" }, { "was", "Washo" }, { "wen", "Sorbian languages" }, { "wo", "Wolof" }, { "xal", "Kalmyk; Oirat" }, { "xh", "Xhosa" }, { "yao", "Yao" }, { "yap", "Yapese" }, { "yi", "Yiddish" }, { "yo", "Yoruba" }, { "ypk", "Yupik languages" }, { "za", "Zhuang; Chuang" }, { "zap", "Zapotec" }, { "zbl", "Blissymbols; Blissymbolics; Bliss" }, { "zen", "Zenaga" }, { "zh", "Chinese" }, { "znd", "Zande languages" }, { "zu", "Zulu" }, { "zun", "Zuni" }, { "zxx", "No linguistic content" }, { "zza", "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki" }, }; struct country_t { const char *code; const char *country; } countries []= { { "AD", "Andorra" }, { "AE", "United Arab Emirates" }, { "AF", "Afghanistan" }, { "AG", "Antigua and Barbuda" }, { "AI", "Anguilla" }, { "AL", "Albania" }, { "AM", "Armenia" }, { "AN", "Netherlands Antilles" }, { "AO", "Angola" }, { "AQ", "Antarctica" }, { "AR", "Argentina" }, { "AS", "American Samoa" }, { "AT", "Austria" }, { "AU", "Australia" }, { "AW", "Aruba" }, { "AX", "Åland Islands" }, { "AZ", "Azerbaijan" }, { "BA", "Bosnia and Herzegovina" }, { "BB", "Barbados" }, { "BD", "Bangladesh" }, { "BE", "Belgium" }, { "BF", "Burkina Faso" }, { "BG", "Bulgaria" }, { "BH", "Bahrain" }, { "BI", "Burundi" }, { "BJ", "Benin" }, { "BM", "Bermuda" }, { "BN", "Brunei Darussalam" }, { "BO", "Bolivia" }, { "BR", "Brazil" }, { "BS", "Bahamas" }, { "BT", "Bhutan" }, { "BV", "Bouvet Island" }, { "BW", "Botswana" }, { "BY", "Belarus" }, { "BZ", "Belize" }, { "CA", "Canada" }, { "CC", "Cocos (Keeling) Islands" }, { "CD", "Congo, The Democratic Republic of the" }, { "CF", "Central African Republic" }, { "CG", "Congo" }, { "CH", "Switzerland" }, { "CI", "Côte d'Ivoire" }, { "CK", "Cook Islands" }, { "CL", "Chile" }, { "CM", "Cameroon" }, { "CN", "China" }, { "CO", "Colombia" }, { "CR", "Costa Rica" }, { "CU", "Cuba" }, { "CV", "Cape Verde" }, { "CX", "Christmas Island" }, { "CY", "Cyprus" }, { "CZ", "Czech Republic" }, { "DE", "Germany" }, { "DJ", "Djibouti" }, { "DK", "Denmark" }, { "DM", "Dominica" }, { "DO", "Dominican Republic" }, { "DZ", "Algeria" }, { "EC", "Ecuador" }, { "EE", "Estonia" }, { "EG", "Egypt" }, { "EH", "Western Sahara" }, { "ER", "Eritrea" }, { "ES", "Spain" }, { "ET", "Ethiopia" }, { "FI", "Finland" }, { "FJ", "Fiji" }, { "FK", "Falkland Islands (Malvinas)" }, { "FM", "Micronesia, Federated States of" }, { "FO", "Faroe Islands" }, { "FR", "France" }, { "GA", "Gabon" }, { "GB", "United Kingdom" }, { "GD", "Grenada" }, { "GE", "Georgia" }, { "GF", "French Guiana" }, { "GG", "Guernsey" }, { "GH", "Ghana" }, { "GI", "Gibraltar" }, { "GL", "Greenland" }, { "GM", "Gambia" }, { "GN", "Guinea" }, { "GP", "Guadeloupe" }, { "GQ", "Equatorial Guinea" }, { "GR", "Greece" }, { "GS", "South Georgia and the South Sandwich Islands" }, { "GT", "Guatemala" }, { "GU", "Guam" }, { "GW", "Guinea-Bissau" }, { "GY", "Guyana" }, { "HK", "Hong Kong" }, { "HM", "Heard Island and McDonald Islands" }, { "HN", "Honduras" }, { "HR", "Croatia" }, { "HT", "Haiti" }, { "HU", "Hungary" }, { "ID", "Indonesia" }, { "IE", "Ireland" }, { "IL", "Israel" }, { "IM", "Isle of Man" }, { "IN", "India" }, { "IO", "British Indian Ocean Territory" }, { "IQ", "Iraq" }, { "IR", "Iran, Islamic Republic of" }, { "IS", "Iceland" }, { "IT", "Italy" }, { "JE", "Jersey" }, { "JM", "Jamaica" }, { "JO", "Jordan" }, { "JP", "Japan" }, { "KE", "Kenya" }, { "KG", "Kyrgyzstan" }, { "KH", "Cambodia" }, { "KI", "Kiribati" }, { "KM", "Comoros" }, { "KN", "Saint Kitts and Nevis" }, { "KP", "Korea, Democratic People's Republic of" }, { "KR", "Korea, Republic of" }, { "KW", "Kuwait" }, { "KY", "Cayman Islands" }, { "KZ", "Kazakhstan" }, { "LA", "Lao People's Democratic Republic" }, { "LB", "Lebanon" }, { "LC", "Saint Lucia" }, { "LI", "Liechtenstein" }, { "LK", "Sri Lanka" }, { "LR", "Liberia" }, { "LS", "Lesotho" }, { "LT", "Lithuania" }, { "LU", "Luxembourg" }, { "LV", "Latvia" }, { "LY", "Libyan Arab Jamahiriya" }, { "MA", "Morocco" }, { "MC", "Monaco" }, { "MD", "Moldova, Republic of" }, { "ME", "Montenegro" }, { "MG", "Madagascar" }, { "MH", "Marshall Islands" }, { "MK", "Macedonia, Republic of" }, { "ML", "Mali" }, { "MM", "Myanmar" }, { "MN", "Mongolia" }, { "MO", "Macao" }, { "MP", "Northern Mariana Islands" }, { "MQ", "Martinique" }, { "MR", "Mauritania" }, { "MS", "Montserrat" }, { "MT", "Malta" }, { "MU", "Mauritius" }, { "MV", "Maldives" }, { "MW", "Malawi" }, { "MX", "Mexico" }, { "MY", "Malaysia" }, { "MZ", "Mozambique" }, { "NA", "Namibia" }, { "NC", "New Caledonia" }, { "NE", "Niger" }, { "NF", "Norfolk Island" }, { "NG", "Nigeria" }, { "NI", "Nicaragua" }, { "NL", "Netherlands" }, { "NO", "Norway" }, { "NP", "Nepal" }, { "NR", "Nauru" }, { "NU", "Niue" }, { "NZ", "New Zealand" }, { "OM", "Oman" }, { "PA", "Panama" }, { "PE", "Peru" }, { "PF", "French Polynesia" }, { "PG", "Papua New Guinea" }, { "PH", "Philippines" }, { "PK", "Pakistan" }, { "PL", "Poland" }, { "PM", "Saint Pierre and Miquelon" }, { "PN", "Pitcairn" }, { "PR", "Puerto Rico" }, { "PS", "Palestinian Territory, Occupied" }, { "PT", "Portugal" }, { "PW", "Palau" }, { "PY", "Paraguay" }, { "QA", "Qatar" }, { "RE", "Reunion" }, { "RO", "Romania" }, { "RS", "Serbia" }, { "RU", "Russian Federation" }, { "RW", "Rwanda" }, { "SA", "Saudi Arabia" }, { "SB", "Solomon Islands" }, { "SC", "Seychelles" }, { "SD", "Sudan" }, { "SE", "Sweden" }, { "SG", "Singapore" }, { "SH", "Saint Helena" }, { "SI", "Slovenia" }, { "SJ", "Svalbard and Jan Mayen" }, { "SK", "Slovakia" }, { "SL", "Sierra Leone" }, { "SM", "San Marino" }, { "SN", "Senegal" }, { "SO", "Somalia" }, { "SR", "Suriname" }, { "ST", "Sao Tome and Principe" }, { "SV", "El Salvador" }, { "SY", "Syrian Arab Republic" }, { "SZ", "Swaziland" }, { "TC", "Turks and Caicos Islands" }, { "TD", "Chad" }, { "TF", "French Southern Territories" }, { "TG", "Togo" }, { "TH", "Thailand" }, { "TJ", "Tajikistan" }, { "TK", "Tokelau" }, { "TL", "Timor-Leste" }, { "TM", "Turkmenistan" }, { "TN", "Tunisia" }, { "TO", "Tonga" }, { "TR", "Turkey" }, { "TT", "Trinidad and Tobago" }, { "TV", "Tuvalu" }, { "TW", "Taiwan" }, { "TZ", "Tanzania, United Republic of" }, { "UA", "Ukraine" }, { "UG", "Uganda" }, { "UM", "United States Minor Outlying Islands" }, { "US", "United States" }, { "UY", "Uruguay" }, { "UZ", "Uzbekistan" }, { "VA", "Holy See (Vatican City State)" }, { "VC", "Saint Vincent and the Grenadines" }, { "VE", "Venezuela" }, { "VG", "Virgin Islands, British" }, { "VI", "Virgin Islands, U.S." }, { "VN", "Viet Nam" }, { "VU", "Vanuatu" }, { "WF", "Wallis and Futuna" }, { "WS", "Samoa" }, { "YE", "Yemen" }, { "YT", "Mayotte" }, { "ZA", "South Africa" }, { "ZM", "Zambia" }, { "ZW", "Zimbabwe" }, }; workrave-1.10.50/common/src/Makefile.in0000644000000000000000000007140114221624200017634 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_common_la_DEPENDENCIES = $(ldadd_platform) am__objects_1 = Locale.lo am_libworkrave_common_la_OBJECTS = debug.lo GlibThread.lo Util.lo \ StringUtil.lo WRID.lo DBusProxy-gio.lo Diagnostics.lo \ $(am__objects_1) libworkrave_common_la_OBJECTS = $(am_libworkrave_common_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/DBusProxy-gio.Plo \ ./$(DEPDIR)/Diagnostics.Plo ./$(DEPDIR)/GlibThread.Plo \ ./$(DEPDIR)/Locale.Plo ./$(DEPDIR)/StringUtil.Plo \ ./$(DEPDIR)/Util.Plo ./$(DEPDIR)/WRID.Plo \ ./$(DEPDIR)/debug.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_common_la_SOURCES) DIST_SOURCES = $(libworkrave_common_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 noinst_LTLIBRARIES = libworkrave-common.la localesources = Locale.cc libworkrave_common_la_SOURCES = \ debug.cc \ GlibThread.cc \ Util.cc \ StringUtil.cc \ WRID.cc \ DBusProxy-gio.cc \ Diagnostics.cc \ ${localesources} @PLATFORM_OS_WINDOWS_TRUE@ldadd_platform = win32/libworkrave-common-win32.la libworkrave_common_la_LIBADD = ${ldadd_platform} AM_CPPFLAGS = -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -DWORKRAVE_DATADIR="\"${datadir}\"" \ -D_XOPEN_SOURCE=600 \ @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) locale.inc all: all-recursive .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-common.la: $(libworkrave_common_la_OBJECTS) $(libworkrave_common_la_DEPENDENCIES) $(EXTRA_libworkrave_common_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(libworkrave_common_la_OBJECTS) $(libworkrave_common_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusProxy-gio.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Diagnostics.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GlibThread.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Locale.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringUtil.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Util.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WRID.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-recursive -rm -f ./$(DEPDIR)/DBusProxy-gio.Plo -rm -f ./$(DEPDIR)/Diagnostics.Plo -rm -f ./$(DEPDIR)/GlibThread.Plo -rm -f ./$(DEPDIR)/Locale.Plo -rm -f ./$(DEPDIR)/StringUtil.Plo -rm -f ./$(DEPDIR)/Util.Plo -rm -f ./$(DEPDIR)/WRID.Plo -rm -f ./$(DEPDIR)/debug.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/DBusProxy-gio.Plo -rm -f ./$(DEPDIR)/Diagnostics.Plo -rm -f ./$(DEPDIR)/GlibThread.Plo -rm -f ./$(DEPDIR)/Locale.Plo -rm -f ./$(DEPDIR)/StringUtil.Plo -rm -f ./$(DEPDIR)/Util.Plo -rm -f ./$(DEPDIR)/WRID.Plo -rm -f ./$(DEPDIR)/debug.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile Locale.cc: locale.inc locale.inc: $(PYTHON) $(top_srcdir)/common/bin/create_locale.py > locale.inc # 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: workrave-1.10.50/common/src/WRID.cc0000644000175100001710000001155614221624106015564 0ustar00gdm00000000000000// WRID.c --- Definition of Workrave link ID // // Copyright (C) 2007, 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include "WRID.hh" #if defined(PLATFORM_OS_WINDOWS) # include # include #elif defined(PLATFORM_OS_UNIX) || defined(PLATFORM_OS_MACOS) # include # include # include # include # include # include #endif #include "WRID.hh" using namespace workrave; WRID::WRID() { TRACE_ENTER("WRID::WRID"); create(); TRACE_MSG(str()); TRACE_EXIT(); } WRID::WRID(const WRID &rhs) { TRACE_ENTER("WRID::WRID copy"); memcpy(id, rhs.id, sizeof(id)); TRACE_EXIT(); } WRID::WRID(const std::string &str) { TRACE_ENTER("WRID::WRID str"); set(str); TRACE_EXIT(); } WRID & WRID::operator=(const WRID &lid) { TRACE_ENTER("WRID::WRID::="); if (this != &lid) { memcpy(id, lid.id, sizeof(id)); } TRACE_EXIT(); return *this; } bool WRID::operator==(const WRID &lid) const { return memcmp(id, lid.id, sizeof(id)) == 0; } bool WRID::operator!=(const WRID &lid) const { return memcmp(id, lid.id, sizeof(id)) != 0; } bool WRID::operator<(const WRID &lid) const { return memcmp(id, lid.id, sizeof(id)) < 0; } std::string WRID::str() const { static const char *hex = "0123456789abcdef"; char uuid_str[STR_LENGTH + 1]; for (unsigned int i = 0; i < RAW_LENGTH; i++) { uuid_str[2 * i] = hex[(id[i] & 0xf0) >> 4]; uuid_str[2 * i + 1] = hex[id[i] & 0x0f]; } uuid_str[STR_LENGTH] = '\0'; return uuid_str; } guint8 * WRID::raw() const { return (guint8 *)&id; } void WRID::create() { gint64 now = g_get_real_time(); guint32 *id32 = ((guint32 *)&id); id32[3] = GUINT32_TO_BE(now / G_USEC_PER_SEC); get_random_bytes(id, sizeof(id) - 4); } bool WRID::set(const std::string &str) { size_t len = str.length(); bool ret = true; if (len != STR_LENGTH) { ret = false; } if (ret) { memset(id, 0, sizeof(id)); for (unsigned int i = 0; ret && i < len; i++) { char nibble = str[i]; if (nibble >= '0' && nibble <= '9') { nibble -= '0'; } else if (nibble >= 'a' && nibble <= 'f') { nibble -= 'a'; nibble += 10; } else if (nibble >= 'A' && nibble <= 'F') { nibble -= 'A'; nibble += 10; } else { nibble = 0; ret = false; } if (i % 2 == 0) { id[i / 2] |= ((nibble << 4) & 0xf0); } else { id[i / 2] |= (nibble & 0x0f); } } } return ret; } #if defined(PLATFORM_OS_UNIX) || defined(PLATFORM_OS_MACOS) void WRID::get_random_bytes(unsigned char *buf, size_t length) { int fd = -1; bool ok = false; do { fd = open("/dev/urandom", O_RDONLY); } while (fd < 0 && errno == EINTR); if (fd >= 0) { size_t s = 0; do { s = read(fd, buf, length); } while (errno == EINTR); if (s == length) { ok = true; } close(fd); } if (!ok) { GRand *grand = g_rand_new(); for (unsigned int i = 0; i < length; i++) { guint32 r = 0; if (i % 4 == 0) { r = g_rand_int(grand); } buf[i] = r & 0xff; r >>= 8; } g_rand_free(grand); } } #elif defined(PLATFORM_OS_WINDOWS) void WRID::get_random_bytes(unsigned char *buf, size_t length) { HCRYPTPROV hProv; /* 0x40 bit = CRYPT_SILENT, only introduced in more recent PSDKs * and will only work for Win2K and later. */ DWORD flags = CRYPT_VERIFYCONTEXT; if (LOBYTE(LOWORD(GetVersion())) >= 5) { flags |= 0x40; } if (CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, flags)) { CryptGenRandom(hProv, (DWORD)length, buf); } CryptReleaseContext(hProv, 0); } #else # error Unsupported platform #endif workrave-1.10.50/common/src/StringUtil.cc0000644000175100001710000000345014221624106017115 0ustar00gdm00000000000000// StringUtil.cc --- General purpose string utility functions // // Copyright (C) 2007, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include #include #include "StringUtil.hh" using namespace std; void StringUtil::split(const string &in, const char delim, vector &result) { string::size_type start_pos = 0; string::size_type end_pos = in.find(delim, 0); while ((end_pos = in.find(delim, start_pos)) != string::npos) { string s = in.substr(start_pos, end_pos - start_pos); result.push_back(s); start_pos = end_pos + 1; end_pos = in.find(delim, start_pos); } string s = in.substr(start_pos, in.size() - start_pos); result.push_back(s); } string StringUtil::search_replace(const string &in, const string &search, const string &replace) { string str = in; string::size_type pos = 0; while ((pos = str.find(search, pos)) != string::npos) { str.replace(pos, search.size(), replace); pos++; } return str; } workrave-1.10.50/common/src/Util.cc0000644000175100001710000002511314221624106015726 0ustar00gdm00000000000000// Util.cc --- General purpose utility functions // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include #include #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef PLATFORM_OS_WINDOWS # include // HACK: #include , need -fvtable-thunks. // Perhaps we should enable this, but let's hack it for now... //#include extern "C" { # define SHGetPathFromIDList SHGetPathFromIDListA HRESULT WINAPI SHGetSpecialFolderLocation(HWND, int, void **); BOOL WINAPI SHGetPathFromIDList(void *, LPSTR); # ifndef PLATFORM_OS_WINDOWS VOID WINAPI CoTaskMemFree(PVOID); # endif # define PathCanonicalize PathCanonicalizeA BOOL WINAPI PathCanonicalize(LPSTR, LPCSTR); # define CSIDL_APPDATA 26 } // (end of hack) #endif #include "Util.hh" #include using namespace std; set Util::search_paths[Util::SEARCH_PATH_SIZEOF]; string Util::home_directory = ""; //! Returns the user's home directory. const string & Util::get_home_directory() { // Already cached? static string ret; if (home_directory.length() != 0) { ret = home_directory; } else if (ret.length() == 0) { // Default to current directory ret = "./"; #if defined(PLATFORM_OS_UNIX) || defined(PLATFORM_OS_MACOS) const char *home = getenv("WORKRAVE_HOME"); if (home == NULL) { home = getenv("HOME"); } if (home != NULL) { ret = home; ret += "/.workrave/"; mkdir(ret.c_str(), 0700); } #elif defined(PLATFORM_OS_WINDOWS) void *pidl; char buf[MAX_PATH]; HRESULT hr = SHGetSpecialFolderLocation(HWND_DESKTOP, CSIDL_APPDATA, &pidl); if (SUCCEEDED(hr)) { SHGetPathFromIDList(pidl, buf); CoTaskMemFree(pidl); strcat(buf, "\\Workrave"); BOOL dirok = FALSE; dirok = CreateDirectory(buf, NULL); if (!dirok) { if (GetLastError() == ERROR_ALREADY_EXISTS) { dirok = TRUE; } } if (dirok) { ret = string(buf) + "\\"; } } #endif } return ret; } //! Returns the user's home directory. void Util::set_home_directory(const string &home) { #ifdef PLATFORM_OS_WINDOWS if (home.substr(0, 2) == ".\\" || home.substr(0, 3) == "..\\") { char buffer[MAX_PATH]; // Path relative to location of workrave root. string appdir = get_application_directory(); home_directory = appdir + "\\" + home + "\\"; PathCanonicalize(buffer, home_directory.c_str()); home_directory = buffer; } else #endif { home_directory = home + "/"; } #ifdef PLATFORM_OS_WINDOWS CreateDirectory(home_directory.c_str(), NULL); #else mkdir(home_directory.c_str(), 0777); #endif } //! Returns \c true if the specified file exists. bool Util::file_exists(string path) { // 'stat' might be faster. but this is portable.. FILE *f = NULL; bool ret = false; f = fopen(path.c_str(), "r"); if (f != NULL) { fclose(f); ret = true; } return ret; } #ifdef PLATFORM_OS_WINDOWS //! Returns the directory in which workrave is installed. string Util::get_application_directory() { char app_dir_name[MAX_PATH]; GetModuleFileName(GetModuleHandle(NULL), app_dir_name, sizeof(app_dir_name)); // app_dir_name == c:\program files\workrave\lib\workrave.exe char *s = strrchr(app_dir_name, '\\'); assert(s); *s = '\0'; // app_dir_name == c:\program files\workrave\lib s = strrchr(app_dir_name, '\\'); assert(s); *s = '\0'; // app_dir_name == c:\program files\workrave return string(app_dir_name); } bool Util::registry_get_value(const char *path, const char *name, char *out) { HKEY handle; bool rc = false; LONG err; err = RegOpenKeyEx(HKEY_CURRENT_USER, path, 0, KEY_ALL_ACCESS, &handle); if (err == ERROR_SUCCESS) { DWORD type, size; size = MAX_PATH; err = RegQueryValueExA(handle, name, 0, &type, (LPBYTE)out, &size); if (err == ERROR_SUCCESS) { rc = true; } RegCloseKey(handle); } return rc; } bool Util::registry_set_value(const char *path, const char *name, const char *value) { HKEY handle; bool rc = false; DWORD disp; LONG err; err = RegCreateKeyEx(HKEY_CURRENT_USER, path, 0, "", REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &handle, &disp); if (err == ERROR_SUCCESS) { if (value != NULL) { err = RegSetValueEx(handle, name, 0, REG_SZ, (BYTE *)value, strlen(value) + 1); } else { err = RegDeleteValue(handle, name); } RegCloseKey(handle); rc = (err == ERROR_SUCCESS); } return rc; } #endif //! Returns the searchpath for the specified file type. const set & Util::get_search_path(SearchPathId type) { if (search_paths[type].size() > 0) return search_paths[type]; set &searchPath = search_paths[type]; string home_dir = get_home_directory(); #if defined(PLATFORM_OS_WINDOWS) string app_dir = get_application_directory(); #elif defined(PLATFORM_OS_MACOS) char execpath[MAXPATHLEN + 1]; uint32_t pathsz = sizeof(execpath); _NSGetExecutablePath(execpath, &pathsz); gchar *dir_path = g_path_get_dirname(execpath); string app_dir = dir_path; g_free(dir_path); #endif if (type == SEARCH_PATH_IMAGES) { #if defined(PLATFORM_OS_UNIX) if (home_dir != "./") { searchPath.insert(home_dir + "/images"); } searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/images"); searchPath.insert(string(WORKRAVE_DATADIR) + "/icons/hicolor"); searchPath.insert("/usr/local/share/workrave/images"); searchPath.insert("/usr/share/workrave/images"); #elif defined(PLATFORM_OS_WINDOWS) # if defined(DATA_PATH) searchPath.insert(string(DATA_PATH) + "frontend\\common\\share\\images"); # endif searchPath.insert(app_dir + "\\share\\images"); searchPath.insert(app_dir + "\\share\\icons"); #elif defined(PLATFORM_OS_MACOS) searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/images"); searchPath.insert(app_dir + "/share/workrave/images"); searchPath.insert(app_dir + "/../Resources/images"); #endif } if (type == SEARCH_PATH_SOUNDS) { #if defined(PLATFORM_OS_UNIX) if (home_dir != "./") { searchPath.insert(home_dir + "/sounds"); } searchPath.insert(string(WORKRAVE_DATADIR) + "/sounds/workrave"); searchPath.insert("/usr/local/share/sounds/workrave"); searchPath.insert("/usr/share/sounds/workrave"); #elif defined(PLATFORM_OS_WINDOWS) # if defined(DATA_PATH) searchPath.insert(string(DATA_PATH) + "frontend\\common\\share\\sounds"); # endif searchPath.insert(app_dir + "\\share\\sounds"); #elif defined(PLATFORM_OS_MACOS) searchPath.insert(string(WORKRAVE_DATADIR) + "/sounds/workrave"); searchPath.insert(app_dir + "/share/sounds/workrave"); searchPath.insert(app_dir + "/../Resources/sounds"); #endif } else if (type == SEARCH_PATH_CONFIG) { #if defined(PLATFORM_OS_UNIX) if (home_dir != "./") { searchPath.insert(home_dir + "/"); searchPath.insert(home_dir + "/etc"); } searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/etc"); searchPath.insert("/usr/local/share/workrave/etc"); searchPath.insert("/usr/share/workrave/etc"); #elif defined(PLATFORM_OS_WINDOWS) searchPath.insert(home_dir + "\\"); searchPath.insert(app_dir + "\\etc"); #elif defined(PLATFORM_OS_MACOS) searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/etc"); searchPath.insert(app_dir + "/etc"); searchPath.insert(home_dir + "/"); searchPath.insert(app_dir + "/../Resources/config"); #endif } else if (type == SEARCH_PATH_EXERCISES) { #if defined(PLATFORM_OS_UNIX) searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/exercises"); #elif defined(PLATFORM_OS_WINDOWS) # if defined(DATA_PATH) searchPath.insert(string(DATA_PATH) + "frontend\\plugin\\exercises\\common\\share"); # endif searchPath.insert(app_dir + "\\share\\exercises"); #elif defined(PLATFORM_OS_MACOS) searchPath.insert(string(WORKRAVE_PKGDATADIR) + "/exercises"); searchPath.insert(app_dir + "/share/exercises"); searchPath.insert(app_dir + "/../Resources/exercises"); #else # error Not properly ported. #endif } return searchPath; } //! Completes the directory for the specified file and file type. string Util::complete_directory(string path, Util::SearchPathId type) { string fullPath; bool found = false; const set &searchPath = get_search_path(type); for (set::const_iterator i = searchPath.begin(); !found && i != searchPath.end(); i++) { fullPath = (*i) + G_DIR_SEPARATOR_S + path; found = file_exists(fullPath); } if (!found) { fullPath = path; } return fullPath; } //! Completes the directory for the specified file and file type. bool Util::complete_directory(string path, Util::SearchPathId type, std::string &completed_path) { bool found = false; const set &searchPath = get_search_path(type); for (set::const_iterator i = searchPath.begin(); !found && i != searchPath.end(); i++) { completed_path = (*i) + G_DIR_SEPARATOR_S + path; found = file_exists(completed_path); } return found; } bool Util::running_gnome() { bool ret = false; #ifdef PLATFORM_OS_UNIX gchar *tmp = g_find_program_in_path("gnome-open"); if (tmp != NULL) { g_free(tmp); tmp = (gchar *)g_getenv("GNOME_DESKTOP_SESSION_ID"); ret = ((tmp != NULL) && (*tmp != '\0')); } #endif return ret; } workrave-1.10.50/common/src/Locale.cc0000644000175100001710000001410114221624106016203 0ustar00gdm00000000000000// Locale.cc // // Copyright (C) 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "nls.h" #include #include #include #include #include "Locale.hh" #include "StringUtil.hh" #include "locale.inc" extern "C" int _nl_msg_cat_cntr; Locale::LanguageMap Locale::languages_native_locale; int compare_languages(const void *a, const void *b) { return strcmp(((language_t *)a)->code, ((language_t *)b)->code); } int compare_countries(const void *a, const void *b) { return strcmp(((country_t *)a)->code, ((country_t *)b)->code); } bool Locale::get_language(const string &code, string &language) { language_t key = {code.c_str(), NULL}; language_t *val; val = (language_t *)bsearch(&key, languages, sizeof(languages) / sizeof(language_t), sizeof(language_t), compare_languages); if (val != NULL) { language = val->lang; return true; } return false; } bool Locale::get_country(const string &code, string &country) { country_t key = {code.c_str(), NULL}; country_t *val; val = (country_t *)bsearch(&key, countries, sizeof(countries) / sizeof(country_t), sizeof(country_t), compare_countries); if (val != NULL) { country = val->country; return true; } return false; } void Locale::set_locale(const std::string &code) { if (code != "") { g_setenv("LANGUAGE", code.c_str(), 1); g_setenv("LANG", code.c_str(), 1); } else { g_unsetenv("LANGUAGE"); g_unsetenv("LANG"); } #ifndef PLATFORM_OS_WINDOWS_NATIVE ++_nl_msg_cat_cntr; #endif } std::string Locale::get_locale() { string ret; const char *lang_env = g_getenv("LANGUAGE"); if (lang_env == NULL) { lang_env = g_getenv("LANG"); } if (lang_env != NULL) { ret = lang_env; } return ret; } void Locale::lookup(const string &domain, string &str) { string ret; if (str != "") { ret = dgettext(domain.c_str(), str.c_str()); str = ret; } } void Locale::init() { } void Locale::get_all_languages_in_current_locale(LanguageMap &languages) { std::vector all_linguas; (void)languages; #ifdef HAVE_LANGUAGE_SELECTION StringUtil::split(string(ALL_LINGUAS), ' ', all_linguas); all_linguas.push_back("en"); for (vector::iterator i = all_linguas.begin(); i != all_linguas.end(); i++) { string code = *i; string lang_code; string country_code; Language &language_entry = languages[code]; lang_code = code.substr(0, 2); if (code.length() >= 5) { country_code = code.substr(3, 2); } Locale::get_language(lang_code, language_entry.language_name); Locale::get_country(country_code, language_entry.country_name); Locale::lookup("iso_639", language_entry.language_name); Locale::lookup("iso_3166", language_entry.country_name); } #endif } void Locale::get_all_languages_in_native_locale(LanguageMap &list) { (void)list; #ifdef HAVE_LANGUAGE_SELECTION static bool init_done = false; if (init_done) { list = languages_native_locale; return; } std::vector all_linguas; StringUtil::split(string(ALL_LINGUAS), ' ', all_linguas); all_linguas.push_back("en"); string lang_save = Locale::get_locale(); for (vector::iterator i = all_linguas.begin(); i != all_linguas.end(); i++) { string code = *i; string lang_code; string country_code; Locale::set_locale(code); Language &language_entry = languages_native_locale[code]; lang_code = code.substr(0, 2); if (code.length() >= 5) { country_code = code.substr(3, 2); } Locale::get_language(lang_code, language_entry.language_name); Locale::get_country(country_code, language_entry.country_name); Locale::lookup("iso_639", language_entry.language_name); Locale::lookup("iso_3166", language_entry.country_name); } init_done = true; Locale::set_locale(lang_save); list = languages_native_locale; #endif } #ifdef PLATFORM_OS_WINDOWS # include #endif #ifdef PLATFORM_OS_UNIX # include #endif int Locale::get_week_start() { int week_start = 0; #ifdef PLATFORM_OS_WINDOWS WCHAR wsDay[4]; if ( # if defined(_WIN32_WINNT_VISTA) && WINVER >= _WIN32_WINNT_VISTA && defined(LOCALE_NAME_USER_DEFAULT) GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_IFIRSTDAYOFWEEK, wsDay, 4) # else GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_IFIRSTDAYOFWEEK, wsDay, 4) # endif ) { char *ws = g_utf16_to_utf8(reinterpret_cast(wsDay), -1, NULL, NULL, NULL); if (ws != NULL) { week_start = (ws[0] - '0' + 1) % 7; g_free(ws); } } #endif #ifdef PLATFORM_OS_UNIX union { unsigned int word; char *string; } langinfo; gint week_1stday = 0; gint first_weekday = 1; guint week_origin; langinfo.string = nl_langinfo(_NL_TIME_FIRST_WEEKDAY); first_weekday = langinfo.string[0]; langinfo.string = nl_langinfo(_NL_TIME_WEEK_1STDAY); week_origin = langinfo.word; if (week_origin == 19971130) /* Sunday */ week_1stday = 0; else if (week_origin == 19971201) /* Monday */ week_1stday = 1; else g_warning("Unknown value of _NL_TIME_WEEK_1STDAY.\n"); week_start = (week_1stday + first_weekday - 1) % 7; #endif return week_start; } workrave-1.10.50/common/src/GlibThread.cc0000644000175100001710000000372214221624106017020 0ustar00gdm00000000000000// GlibThread.hh --- GlibThread class // // Copyright (C) 2002, 2005, 2007, 2008, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "GlibThread.hh" #include Thread::Thread(Runnable *runnable, bool autodelete) { thread_handle = NULL; this->runnable = runnable; this->autodelete = autodelete; } Thread::Thread(bool autodelete) { thread_handle = NULL; this->runnable = NULL; this->autodelete = autodelete; } Thread::~Thread() { wait(); } void Thread::start() { if (thread_handle == NULL) { GError *error = NULL; #if GLIB_CHECK_VERSION(2, 31, 18) thread_handle = g_thread_try_new("workrave", thread_handler, this, &error); #else thread_handle = g_thread_create(thread_handler, this, TRUE, &error); #endif if (error != NULL) { g_error_free(error); } } } void Thread::wait() { if (thread_handle != NULL) { g_thread_join(thread_handle); thread_handle = NULL; } } void Thread::run() { if (runnable != NULL) { runnable->run(); } } void Thread::internal_run() { run(); thread_handle = NULL; } gpointer Thread::thread_handler(gpointer data) { Thread *t = (Thread *)data; if (t != NULL) { t->internal_run(); if (t->autodelete) { delete t; } } return 0; } workrave-1.10.50/common/src/Makefile.am0000644000175100001710000000172214221624106016536 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 noinst_LTLIBRARIES = libworkrave-common.la localesources = Locale.cc libworkrave_common_la_SOURCES = \ debug.cc \ GlibThread.cc \ Util.cc \ StringUtil.cc \ WRID.cc \ DBusProxy-gio.cc \ Diagnostics.cc \ ${localesources} if PLATFORM_OS_WINDOWS ldadd_platform = win32/libworkrave-common-win32.la endif libworkrave_common_la_LIBADD = ${ldadd_platform} AM_CPPFLAGS = -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -DWORKRAVE_DATADIR="\"${datadir}\"" \ -D_XOPEN_SOURCE=600 \ @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) locale.inc Locale.cc: locale.inc locale.inc: $(PYTHON) $(top_srcdir)/common/bin/create_locale.py > locale.inc workrave-1.10.50/common/Makefile.in0000644000000000000000000005522514221624200017053 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src win32 bin all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/bin/0000755000000000000000000000000014221624436015560 5ustar00rootroot00000000000000workrave-1.10.50/common/bin/create_locale.py0000644000175100001710000000305414221624106017617 0ustar00gdm00000000000000# LoclaeInfo.py (c) 2006 Canonical, released under the GPL # # a helper class to get locale info import string import re import subprocess import gettext from gettext import gettext as _ from xml.etree.ElementTree import ElementTree languages = {} countries = {} et = ElementTree(file = "/usr/share/xml/iso-codes/iso_639.xml") it = et.getiterator('iso_639_entry') for elm in it: lang = elm.attrib["name"] if elm.attrib.has_key("iso_639_1_code"): code = elm.attrib["iso_639_1_code"] else: code = elm.attrib["iso_639_2T_code"] languages[code] = lang et = ElementTree(file="/usr/share/xml/iso-codes/iso_3166.xml") it = et.getiterator('iso_3166_entry') for elm in it: if elm.attrib.has_key("common_name"): descr = elm.attrib["common_name"] else: descr = elm.attrib["name"] if elm.attrib.has_key("alpha_2_code"): code = elm.attrib["alpha_2_code"] else: code = elm.attrib["alpha_3_code"] countries[code] = descr print "struct language_t" print "{" print " const char *code;" print " const char *lang;" print "} languages []= " print "{" keys = languages.keys() keys.sort(); for k in keys: txt = "{ \"%s\", \"%s\" }," % (k, languages[k]) print txt.encode('utf-8') print "};" print print "struct country_t" print "{" print " const char *code;" print " const char *country;" print "} countries []= " print "{" keys = countries.keys() keys.sort(); for k in keys: txt = "{ \"%s\", \"%s\" }," % (k, countries[k]) print txt.encode('utf-8') print "};" workrave-1.10.50/common/bin/Makefile.in0000644000000000000000000004101214221624200017610 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = common/bin ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.py) $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.xml) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign common/bin/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign common/bin/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/common/bin/Makefile.am0000644000175100001710000000045314221624106016517 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.py) $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.xml) workrave-1.10.50/common/Makefile.am0000644000175100001710000000031214221624106015741 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = include src win32 bin workrave-1.10.50/config.guess0000755000000000000000000012637314221624200016041 0ustar00rootroot00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. timestamp='2018-02-24' # 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 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception 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 Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Options: -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 1992-2018 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 case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval "$set_cc_for_build" cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" # If ldd exists, use it to detect musl libc. if command -v ldd >/dev/null && \ ldd --version 2>&1 | grep -q ^musl then LIBC=musl fi ;; esac # 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=`(uname -p 2>/dev/null || \ "/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 ;; earmv*) arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` machine="${arch}${endian}"-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) and ABI. case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; 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 # Determine ABI tags. case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; 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/[-_].*//' | cut -d. -f1,2` ;; 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}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) echo "$UNAME_MACHINE"-unknown-midnightbsd"$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 ;; *:Sortix:*:*) echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Redox:*:*) echo "$UNAME_MACHINE"-unknown-redox exit ;; mips:OSF1:*.*) echo mips-dec-osf1 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 ;; 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/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` 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:4.4BSD:*) 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) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) echo "$UNAME_MACHINE"-pc-msys 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 ;; i*:UWIN*:*) echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-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-$LIBC`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 "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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=gnulibc1 ; fi echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$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-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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-$LIBC"; exit; } ;; mips64el:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) if objdump -f /bin/sh | grep -q elf32-x86-64; then echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 else echo "$UNAME_MACHINE"-pc-linux-"$LIBC" fi exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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.*:*) 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 configure 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 ;; x86_64:Haiku:*:*) echo x86_64-unknown-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 ;; SX-ACE:SUPER-UX:*:*) echo sxace-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 eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then 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 case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_PPC >/dev/null then UNAME_PROCESSOR=powerpc fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi 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 ;; NSV-*:NONSTOP_KERNEL:*:*) echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) echo nsx-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 ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac echo "$0: unable to guess system type" >&2 case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 <&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-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: workrave-1.10.50/install-sh0000755000000000000000000003601014221624200015511 0ustar00rootroot00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2018-03-11.20; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve 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 *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # 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. ;; *) # Note that $RANDOM variable is not portable (e.g. dash); Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writeable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p' feature. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; 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 oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # 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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: workrave-1.10.50/frontend/0000755000000000000000000000000014221624441015333 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/0000755000000000000000000000000014221624437016630 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/include/0000755000000000000000000000000014221624437020253 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/include/SoundTypes.hh0000644000175100001710000000232214221624107021611 0ustar00gdm00000000000000// SoundType.hh // // Copyright (C) 2002 - 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SOUNDTYPES_HH #define SOUNDTYPES_HH enum SoundCapability { SOUND_CAP_EDIT, SOUND_CAP_VOLUME, SOUND_CAP_MUTE, SOUND_CAP_EOS_EVENT, }; enum SoundEvent { SOUND_MIN = 0, SOUND_BREAK_PRELUDE = 0, SOUND_BREAK_IGNORED, SOUND_REST_BREAK_STARTED, SOUND_REST_BREAK_ENDED, SOUND_MICRO_BREAK_STARTED, SOUND_MICRO_BREAK_ENDED, SOUND_DAILY_LIMIT, SOUND_EXERCISE_ENDED, SOUND_EXERCISES_ENDED, SOUND_EXERCISE_STEP, SOUND_MAX }; #endif // SOUNDTYPES_HH workrave-1.10.50/frontend/common/include/IMixer.hh0000644000175100001710000000175614221624107020703 0ustar00gdm00000000000000// IMixer.hh // // Copyright (C) 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IMIXER_HH #define IMIXER_HH #include #include "SoundPlayer.hh" class IMixer { public: virtual ~IMixer() {} virtual void init() = 0; //! Mutes or unmutes all audio. virtual bool set_mute(bool mute) = 0; }; #endif // IMIXER_HH workrave-1.10.50/frontend/common/include/TimerBoxViewBase.hh0000644000175100001710000000245314221624107022660 0ustar00gdm00000000000000// TimerBoxViewBase.hh --- All timers // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERBOXVIEWBASE_HH #define TIMERBOXVIEWBASE_HH #include #include "ITimerBoxView.hh" using namespace workrave; class TimerBoxViewBase : public ITimerBoxView { public: virtual ~TimerBoxViewBase() {} virtual void set_tip(std::string tip) { (void)tip; } virtual void set_icon(IconType icon) { (void)icon; } virtual void update_view() {} virtual void set_geometry(Orientation orientation, int size) { (void)orientation; (void)size; } }; #endif // TIMERBOXVIEWBASE_HH workrave-1.10.50/frontend/common/include/Makefile.in0000644000000000000000000004076314221624201022317 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/include/Sound.hh0000644000175100001710000000213214221624107020563 0ustar00gdm00000000000000// Sound.hh --- Sound class // // Copyright (C) 2002, 2003, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SOUND_HH #define SOUND_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_UNIX # include #endif class Sound { public: #ifdef PLATFORM_OS_UNIX static void beep(Display *x11, int frequency, int millis); #else static void beep(int frequency, int millis); #endif }; #endif // SOUND_HH workrave-1.10.50/frontend/common/include/Orientation.hh0000644000175100001710000000170614221624107021774 0ustar00gdm00000000000000// Orientation.hh // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ORIENTATION_HH #define ORIENTATION_HH namespace workrave { enum Orientation { ORIENTATION_UP, ORIENTATION_RIGHT, ORIENTATION_DOWN, ORIENTATION_LEFT, }; }; // namespace workrave #endif // ORIENTATION_HH workrave-1.10.50/frontend/common/include/TimerBoxControl.hh0000644000175100001710000000667414221624107022604 0ustar00gdm00000000000000// TimerBoxControl.hh --- All timers // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERBOXCONTROL_HH #define TIMERBOXCONTROL_HH #include #include "ICore.hh" #include "IConfiguratorListener.hh" #include "ITimerBoxView.hh" using namespace workrave; class TimerBoxControl : public IConfiguratorListener { public: TimerBoxControl(std::string name, ITimerBoxView &view); virtual ~TimerBoxControl(); void init(); void update(); void force_cycle(); void set_force_empty(bool s); static const std::string get_timer_config_key(std::string name, BreakId timer, const std::string &key); static int get_cycle_time(std::string name); static void set_cycle_time(std::string name, int time); static int get_timer_imminent_time(std::string name, BreakId timer); static void set_timer_imminent_time(std::string name, BreakId timer, int time); static int get_timer_slot(std::string name, BreakId timer); static void set_timer_slot(std::string name, BreakId timer, int slot); static int get_timer_flags(std::string name, BreakId timer); static void set_timer_flags(std::string name, BreakId timer, int flags); static bool is_enabled(std::string name); static void set_enabled(std::string name, bool enabled); public: static const std::string CFG_KEY_TIMERBOX; static const std::string CFG_KEY_TIMERBOX_HORIZONTAL; static const std::string CFG_KEY_TIMERBOX_CYCLE_TIME; static const std::string CFG_KEY_TIMERBOX_POSITION; static const std::string CFG_KEY_TIMERBOX_FLAGS; static const std::string CFG_KEY_TIMERBOX_IMMINENT; static const std::string CFG_KEY_TIMERBOX_ENABLED; enum SlotType { BREAK_WHEN_IMMINENT = 1, BREAK_WHEN_FIRST = 2, BREAK_SKIP = 4, BREAK_EXCLUSIVE = 8, BREAK_DEFAULT = 16, BREAK_HIDE = 32 }; private: // IConfiguratorListener void config_changed_notify(const std::string &key); void update_widgets(); void init_table(); void init_icon(); void read_configuration(); void init_slot(int slot); void cycle_slots(); private: //! View ITimerBoxView *view; //! Reconfigure the panel. bool reconfigure; //! Duration of each cycle. int cycle_time; //! Positions for the break timers. int break_position[BREAK_ID_SIZEOF]; //! Flags for the break timers. int break_flags[BREAK_ID_SIZEOF]; //! Imminent threshold for the timers. int break_imminent_time[BREAK_ID_SIZEOF]; //! Computed slot contents. int break_slots[BREAK_ID_SIZEOF][BREAK_ID_SIZEOF]; //! Current cycle for each slot. int break_slot_cycle[BREAK_ID_SIZEOF]; //! Name std::string name; //! Last known operation mode OperationMode operation_mode; //! int force_duration; //! Never show any timers. bool force_empty; }; #endif // TIMERBOXCONTROL_HH workrave-1.10.50/frontend/common/include/credits.h0000644000175100001710000000603714221624107020770 0ustar00gdm00000000000000/* * credits.h --- Workrave credits * * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef CREDITS_H #define CREDITS_H #include const char *workrave_copyright = "Copyright 2001-2020 Rob Caelers & Raymond Penners"; const char *workrave_authors[] = {"Developers:", "Rob Caelers ", "Raymond Penners ", "Ray Satiro ", "", "Sounds:", "Ruairi Fullam", "Pieter De Decker", NULL}; const char *workrave_translators = /* bg */ "Иван Димов\n" /* ca */ "Jordi Mallach\n" /* cs */ "Juraj Kubelka\n" /* de */ "Johannes Rohr\n" /* dk */ "Christian Vejlbo\n" /* dk */ "Frederik Svarre\n" /* el */ "Prokopis Prokopidis\n" /* eo */ "Eric lesh\n" /* es */ "Pablo Rodriguez\n" /* es */ "Fco. Javier Serrador\n" /* et */ "Marko Väljaots\n" /* fi */ "Jyri-Petteri Paloposki\n" /* fr 1 */ "Thomas Basset\n" /* fr 2 */ "Benjamin Siband\n" /* fr 3 */ "Darialalala\n" /* fa */ "Moein Gh\n" /* ga */ "Seanán Ó Coistín\n" /* he */ "Haggai Eran\n" /* hr */ "Ivan\n" /* hu-1 */ "ORY Mate\n" /* hu-2 */ "Gabor Kelemen\n" /* id */ "Andika Triwidada\n" /* it */ "Eraldo Girardi\n" /* it */ "Albano Battistella\n" /* ja */ "Masanobu Yokota\n" /* ko */ "김재용\n" /* lt */ "Artūras Šlajus\n" /* nl 1 */ "Raymond Penners\n" /* nl 2 */ "Matthias Huijgen\n" /* no */ "Morten Lunde\n" /* pl */ "Mikolaj Machowski\n" /* pt_BR -1 */ "Claudio Ferreira Filho\n" /* ro */ "Alexandru Szasz\n" /* rs */ "Goran Maričić\n" /* ru */ "Sergey Kirkinsky\n" /* ru */ "FreeWe\n" /* ru */ "Igor Zinovik\n" /* ru */ "Andrey Bondrov\n" /* ru */ "Denis Nikolaenko\n" /* sk */ "Peter Tuharsky\n" /* sl */ "Vanja Cvelbar\n" /* sv */ "Daniel Nylander\n" /* tr */ "Enver ALTIN\n" /* uk */ "Mykola Rykov\n" /* zh_CN */ "Tao WEI\n" /* zh_CN */ "Alick Zhao\n" /* zh_TW */ "Rex Tsai\n" /* zh_TW */ "Daniel YC Lin (林原志)\n" /* zh_TW */ "Yuenfu Chiu\n"; #endif /* CREDITS_H */ workrave-1.10.50/frontend/common/include/IScreenLockMethod.hh0000644000175100001710000000175214221624107023004 0ustar00gdm00000000000000// SystemLock.hh -- interface for locking the system // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef ISYSTEMLOCK_HH #define ISYSTEMLOCK_HH class /*interface*/ IScreenLockMethod { public: virtual ~IScreenLockMethod(){}; virtual bool is_lock_supported() = 0; virtual bool lock() = 0; }; #endif workrave-1.10.50/frontend/common/include/SoundPlayer.hh0000644000175100001710000000541014221624107021742 0ustar00gdm00000000000000// SoundPlayer.hh // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SOUNDPLAYER_HH #define SOUNDPLAYER_HH #include #include #include #include #include "ISoundDriver.hh" class IMixer; class SoundPlayer : public ISoundDriverEvents { public: enum Device { DEVICE_SPEAKER = 0, DEVICE_SOUNDCARD }; class Theme { public: std::string description; std::vector files; bool active; }; struct SoundRegistry { const char *label; const char *id; const char *wav_file; const char *friendly_name; }; SoundPlayer(); virtual ~SoundPlayer(); void play_sound(SoundEvent snd, bool mute_after_playback = false); void play_sound(std::string wavfile); static bool is_enabled(); static void set_enabled(bool enabled); static Device get_device(); static void set_device(Device dev); void init(); bool capability(SoundCapability cap); void restore_mute(); bool get_sound_enabled(SoundEvent snd, bool &enabled); void set_sound_enabled(SoundEvent snd, bool enabled); bool get_sound_wav_file(SoundEvent snd, std::string &filename); void set_sound_wav_file(SoundEvent snd, const std::string &wav_file); void get_sound_themes(std::vector &themes); void load_sound_theme(const std::string &path, Theme &theme); void activate_theme(const Theme &theme, bool force = true); void eos_event(); private: void register_sound_events(std::string theme = ""); #ifdef PLATFORM_OS_WINDOWS void win32_remove_deprecated_appevents(); static void registry_set_value(const char *path, const char *name, const char *value); #endif public: static const char *CFG_KEY_SOUND_ENABLED; static const char *CFG_KEY_SOUND_DEVICE; static const char *CFG_KEY_SOUND_VOLUME; static const char *CFG_KEY_SOUND_EVENTS; static const char *CFG_KEY_SOUND_EVENTS_ENABLED; static const char *CFG_KEY_SOUND_MUTE; static SoundRegistry sound_registry[SOUND_MAX]; private: ISoundDriver *driver; IMixer *mixer; bool delayed_mute; bool must_unmute; }; #endif // SOUNDPLAYER_HH workrave-1.10.50/frontend/common/include/Makefile.am0000644000175100001710000000035514221624107021213 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) workrave-1.10.50/frontend/common/include/MenuEnums.hh0000644000175100001710000000312714221624107021414 0ustar00gdm00000000000000// Copyright (C) 2001 - 1024 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MENUCOMMAND_HH #define MENUCOMMAND_HH enum MenuCommand { // Note: Do NOT remove/change any of the commands. // Append new items only at the end. MENU_COMMAND_PREFERENCES, MENU_COMMAND_EXERCISES, MENU_COMMAND_REST_BREAK, MENU_COMMAND_MODE_NORMAL, MENU_COMMAND_MODE_QUIET, MENU_COMMAND_MODE_SUSPENDED, MENU_COMMAND_NETWORK_CONNECT, MENU_COMMAND_NETWORK_DISCONNECT, MENU_COMMAND_NETWORK_LOG, MENU_COMMAND_NETWORK_RECONNECT, MENU_COMMAND_STATISTICS, MENU_COMMAND_ABOUT, MENU_COMMAND_MODE_READING, MENU_COMMAND_OPEN, MENU_COMMAND_QUIT, MENU_COMMAND_NETWORK_SUBMENU, MENU_COMMAND_MODE_SUBMENU, MENU_COMMAND_SIZEOF, }; enum MenuItemFlags { MENU_ITEM_FLAG_NONE = 0, MENU_ITEM_FLAG_SUBMENU_BEGIN = 1, MENU_ITEM_FLAG_SUBMENU_END = 2, MENU_ITEM_FLAG_CHECK = 4, MENU_ITEM_FLAG_RADIO = 8, MENU_ITEM_FLAG_ACTIVE = 16, }; #endif workrave-1.10.50/frontend/common/include/ITimeBar.hh0000644000175100001710000000275414221624107021141 0ustar00gdm00000000000000// ITimeBar.hh --- Time Bar // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ITIMEBAR_HH #define ITIMEBAR_HH #include class ITimeBar { public: enum ColorId { COLOR_ID_ACTIVE = 0, COLOR_ID_INACTIVE, COLOR_ID_OVERDUE, COLOR_ID_1_ACTIVE_DURING_BREAK, COLOR_ID_2_ACTIVE_DURING_BREAK, COLOR_ID_INACTIVE_OVER_ACTIVE, COLOR_ID_INACTIVE_OVER_OVERDUE, COLOR_ID_BG, COLOR_ID_SIZEOF }; virtual ~ITimeBar() {} virtual void set_progress(int value, int max_value) = 0; virtual void set_secondary_progress(int value, int max_value) = 0; virtual void set_text(std::string text) = 0; virtual void update() = 0; virtual void set_bar_color(ColorId color) = 0; virtual void set_secondary_bar_color(ColorId color) = 0; }; #endif // ITIMEBAR_HH workrave-1.10.50/frontend/common/include/Text.hh0000644000175100001710000000166314221624107020427 0ustar00gdm00000000000000// Text.hh // // Copyright (C) 2002, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TEXT_HH #define TEXT_HH #include #include class Text { public: static std::string time_to_string(time_t t, bool display_units = false); }; #endif // TEXT_HH workrave-1.10.50/frontend/common/include/System.hh0000644000175100001710000000677414221624107020777 0ustar00gdm00000000000000// System.hh // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SYSTEM_HH #define SYSTEM_HH #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_GLIB # include #endif #include #if defined(HAVE_DBUS) # include # include #endif #include "IScreenLockMethod.hh" #include "ISystemStateChangeMethod.hh" class System { public: class SystemOperation { public: enum SystemOperationType { SYSTEM_OPERATION_NONE, SYSTEM_OPERATION_LOCK_SCREEN, SYSTEM_OPERATION_SHUTDOWN, SYSTEM_OPERATION_SUSPEND, SYSTEM_OPERATION_HIBERNATE, SYSTEM_OPERATION_SUSPEND_HYBRID, }; // A simple, English language name of the operation // Not translated into native language here because // this class is not concerned with UI const char *name; SystemOperationType type; bool execute() const { return System::execute(type); } bool operator<(const SystemOperation &other) const { return this->type < other.type; } private: SystemOperation(const char *name, const SystemOperationType type) : name(name) , type(type){}; friend class System; }; static bool is_lockable() { return !lock_commands.empty(); } static bool lock_screen(); static std::vector get_supported_system_operations() { return supported_system_operations; } static bool execute(SystemOperation::SystemOperationType type); // display will not be owned by System, // the caller may free it after calling // this function static void init( #if defined(PLATFORM_OS_UNIX) const char *display #endif ); static void clear(); private: static std::vector lock_commands; static std::vector system_state_commands; static std::vector supported_system_operations; #if defined(PLATFORM_OS_UNIX) # ifdef HAVE_DBUS static void init_DBus(); static void init_DBus_lock_commands(); static inline bool add_DBus_lock_cmd(const char *dbus_name, const char *dbus_path, const char *dbus_interface, const char *dbus_lock_method, const char *dbus_method_to_check_existence); static void add_DBus_system_state_command(ISystemStateChangeMethod *method); static void init_DBus_system_state_commands(); static GDBusConnection *session_connection; static GDBusConnection *system_connection; # endif static inline void add_cmdline_lock_cmd(const char *command_name, const char *parameters, bool async); static void init_cmdline_lock_commands(const char *display); static bool invoke(const gchar *command, bool async = false); #endif // defined(PLATFORM_OS_UNIX) }; #endif // SYSTEM_HH workrave-1.10.50/frontend/common/include/ISystemStateChangeMethod.hh0000644000175100001710000000276414221624107024353 0ustar00gdm00000000000000// ISystemStateChangeMethod.hh -- interface for shutdown/suspend/hibernate // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef ISYSTEMSTATECHANGEMETHOD_HH_ #define ISYSTEMSTATECHANGEMETHOD_HH_ class /*interface*/ ISystemStateChangeMethod { public: virtual ~ISystemStateChangeMethod(){}; virtual bool shutdown() { return false; } virtual bool suspend() { return false; } virtual bool hibernate() { return false; } virtual bool suspendHybrid() { return false; } virtual bool canShutdown() { return false; } virtual bool canSuspend() { return false; } virtual bool canHibernate() { return false; } virtual bool canSuspendHybrid() { return false; } virtual bool canDoAnything() { return canShutdown() || canSuspend() || canHibernate() || canSuspendHybrid(); } }; #endif /* ISYSTEMSTATECHANGEMETHOD_HH_ */ workrave-1.10.50/frontend/common/include/ITimerBoxView.hh0000644000175100001710000000337114221624107022176 0ustar00gdm00000000000000// ITimerBoxView.hh --- All timers // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ITIMERBOXVIEW_HH #define ITIMERBOXVIEW_HH #include #include "ITimeBar.hh" #include "ICore.hh" #include "Orientation.hh" using namespace workrave; class ITimerBoxView { public: enum IconType { ICON_NORMAL, ICON_QUIET, ICON_SUSPENDED }; virtual ~ITimerBoxView() {} virtual void set_slot(BreakId id, int slot) = 0; virtual void set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_value, int primary_max, ITimeBar::ColorId secondary_color, int secondary_value, int secondary_max) = 0; virtual void set_tip(std::string tip) = 0; virtual void set_icon(IconType icon) = 0; virtual void update_view() = 0; virtual void set_geometry(Orientation orientation, int size) = 0; }; #endif // ITIMERBOXVIEW_HH workrave-1.10.50/frontend/common/include/ISoundDriver.hh0000644000175100001710000000235314221624107022055 0ustar00gdm00000000000000// ISoundDriver.hh // // Copyright (C) 2002 - 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ISOUNDDRIVER_HH #define ISOUNDDRIVER_HH #include #include "SoundTypes.hh" class ISoundDriverEvents { public: virtual ~ISoundDriverEvents() {} virtual void eos_event() = 0; }; class ISoundDriver { public: virtual ~ISoundDriver() {} virtual void init(ISoundDriverEvents *events = NULL) = 0; //! virtual bool capability(SoundCapability cap) = 0; //! Plays sound, returns immediately. virtual void play_sound(std::string wavfile) = 0; }; #endif // ISOUNDDRIVER_HH workrave-1.10.50/frontend/common/src/0000755000000000000000000000000014221624437017417 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/src/ScreenLockCommandline.hh0000644000175100001710000000351214221624107023041 0ustar00gdm00000000000000// SystemLockCommandline.hh -- support for locking the system using command line // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // Uses some code and ideas from the KShutdown utility: file src/actions/lock.cpp // Copyright (C) 2009 Konrad Twardowski // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef SYSTEMLOCKCOMMANDLINE_HH #define SYSTEMLOCKCOMMANDLINE_HH #include "IScreenLockMethod.hh" #include "stdlib.h" // A method of locking the screen that // does that by executing a command class ScreenLockCommandline : public IScreenLockMethod { public: // the parameter 'parameters' may be NULL, in which case it is assumed that the // program does not take any parameters // async - whether to invoke the program synchronously (async = false, wait for the command // to complete) or asynchronously (async = true) ScreenLockCommandline(const char *program_name, const char *parameters, bool async = false); ~ScreenLockCommandline() { if (cmd != NULL) { free(cmd); cmd = NULL; } } virtual bool is_lock_supported() { return cmd != NULL; } virtual bool lock(); private: bool invoke(const gchar *command, bool async); char *cmd; const bool async; }; #endif workrave-1.10.50/frontend/common/src/win32/0000755000000000000000000000000014221624436020360 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/src/win32/W32Shutdown.hh0000644000175100001710000000227714221624107021722 0ustar00gdm00000000000000// Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32SHUTDOWN_HH_ #define W32SHUTDOWN_HH_ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "ISystemStateChangeMethod.hh" class W32Shutdown : public ISystemStateChangeMethod { public: W32Shutdown(); virtual ~W32Shutdown(){}; virtual bool shutdown(); virtual bool canShutdown() { return shutdown_supported; } private: bool shutdown_helper(bool for_real); bool shutdown_supported; }; #endif /* W32SHUTDOWN_HH_ */ workrave-1.10.50/frontend/common/src/win32/W32DirectSoundPlayer.hh0000644000175100001710000000436114221624107023503 0ustar00gdm00000000000000// W32DirectSoundPlayer.hh // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Raymond Penners & Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32DIRECTSOUNDPLAYER_HH #define W32DIRECTSOUNDPLAYER_HH #include "ISoundDriver.hh" #include #if defined(HAVE_DXERR_H) # include #elif defined(HAVE_DXERR8_H) # include #endif #include #include class W32DirectSoundPlayer : public ISoundDriver { public: W32DirectSoundPlayer(); virtual ~W32DirectSoundPlayer(); void init(ISoundDriverEvents *events); bool capability(SoundCapability cap); void play_sound(std::string wavfile); private: static DWORD WINAPI play_thread(LPVOID); void play(); private: ISoundDriverEvents *events; }; class WaveFile { public: WaveFile(const std::string &filename); ~WaveFile(); void init(); size_t read(BYTE *buffer, size_t size); size_t get_size(); void reset_file(); WAVEFORMATEX *get_format() { return &format; }; private: std::string filename; HMMIO mmio; WAVEFORMATEX format; MMCKINFO child; MMCKINFO parent; DWORD sample_size; }; class SoundClip { public: SoundClip(const std::string &filename, ISoundDriverEvents *events); virtual ~SoundClip(); void init(); void play(); void set_volume(int volume); private: void fill_buffer(); bool is_buffer_lost(); void restore_buffer(); private: std::string filename; LPDIRECTSOUND8 direct_sound; WaveFile *wave_file; LPDIRECTSOUNDBUFFER sound_buffer; DWORD sound_buffer_size; HANDLE stop_event; ISoundDriverEvents *events; }; #endif // W32DIRECTSOUNDPLAYER_HH workrave-1.10.50/frontend/common/src/win32/Makefile.in0000644000000000000000000010552514221624202022424 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/src/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_common_win32_la_LIBADD = am__libworkrave_frontend_common_win32_la_SOURCES_DIST = \ W32SoundPlayer.cc W32Mixer.cc Sound.cc W32LockScreen.cc \ W32Shutdown.cc W32DirectSoundPlayer.cc @HAVE_DSOUND_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__objects_1 = libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo @PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_frontend_common_win32_la_OBJECTS = libworkrave_frontend_common_win32_la-W32SoundPlayer.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_common_win32_la-W32Mixer.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_common_win32_la-Sound.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_common_win32_la-W32LockScreen.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_common_win32_la-W32Shutdown.lo \ @PLATFORM_OS_WINDOWS_TRUE@ $(am__objects_1) libworkrave_frontend_common_win32_la_OBJECTS = \ $(am_libworkrave_frontend_common_win32_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_common_win32_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libworkrave_frontend_common_win32_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_frontend_common_win32_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_frontend_common_win32_la_SOURCES) DIST_SOURCES = \ $(am__libworkrave_frontend_common_win32_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @PLATFORM_OS_WINDOWS_TRUE@noinst_LTLIBRARIES = libworkrave-frontend-common-win32.la @HAVE_DSOUND_TRUE@@PLATFORM_OS_WINDOWS_TRUE@dsound_sources = W32DirectSoundPlayer.cc @PLATFORM_OS_WINDOWS_TRUE@libworkrave_frontend_common_win32_la_SOURCES = \ @PLATFORM_OS_WINDOWS_TRUE@ W32SoundPlayer.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32Mixer.cc \ @PLATFORM_OS_WINDOWS_TRUE@ Sound.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32LockScreen.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32Shutdown.cc \ @PLATFORM_OS_WINDOWS_TRUE@ $(dsound_sources) @PLATFORM_OS_WINDOWS_TRUE@libworkrave_frontend_common_win32_la_CXXFLAGS = \ @PLATFORM_OS_WINDOWS_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @PLATFORM_OS_WINDOWS_TRUE@ -D_XOPEN_SOURCE=600 \ @PLATFORM_OS_WINDOWS_TRUE@ -W -I$(top_srcdir)/frontend/common/src \ @PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/common/win32/harpoon/include \ @PLATFORM_OS_WINDOWS_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ @PLATFORM_OS_WINDOWS_TRUE@ @GLIB_CFLAGS@ all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/src/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/src/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-common-win32.la: $(libworkrave_frontend_common_win32_la_OBJECTS) $(libworkrave_frontend_common_win32_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_common_win32_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_common_win32_la_LINK) $(am_libworkrave_frontend_common_win32_la_rpath) $(libworkrave_frontend_common_win32_la_OBJECTS) $(libworkrave_frontend_common_win32_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_common_win32_la-W32SoundPlayer.lo: W32SoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-W32SoundPlayer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Tpo -c -o libworkrave_frontend_common_win32_la-W32SoundPlayer.lo `test -f 'W32SoundPlayer.cc' || echo '$(srcdir)/'`W32SoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32SoundPlayer.cc' object='libworkrave_frontend_common_win32_la-W32SoundPlayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-W32SoundPlayer.lo `test -f 'W32SoundPlayer.cc' || echo '$(srcdir)/'`W32SoundPlayer.cc libworkrave_frontend_common_win32_la-W32Mixer.lo: W32Mixer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-W32Mixer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Tpo -c -o libworkrave_frontend_common_win32_la-W32Mixer.lo `test -f 'W32Mixer.cc' || echo '$(srcdir)/'`W32Mixer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32Mixer.cc' object='libworkrave_frontend_common_win32_la-W32Mixer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-W32Mixer.lo `test -f 'W32Mixer.cc' || echo '$(srcdir)/'`W32Mixer.cc libworkrave_frontend_common_win32_la-Sound.lo: Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-Sound.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Tpo -c -o libworkrave_frontend_common_win32_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Sound.cc' object='libworkrave_frontend_common_win32_la-Sound.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc libworkrave_frontend_common_win32_la-W32LockScreen.lo: W32LockScreen.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-W32LockScreen.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Tpo -c -o libworkrave_frontend_common_win32_la-W32LockScreen.lo `test -f 'W32LockScreen.cc' || echo '$(srcdir)/'`W32LockScreen.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32LockScreen.cc' object='libworkrave_frontend_common_win32_la-W32LockScreen.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-W32LockScreen.lo `test -f 'W32LockScreen.cc' || echo '$(srcdir)/'`W32LockScreen.cc libworkrave_frontend_common_win32_la-W32Shutdown.lo: W32Shutdown.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-W32Shutdown.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Tpo -c -o libworkrave_frontend_common_win32_la-W32Shutdown.lo `test -f 'W32Shutdown.cc' || echo '$(srcdir)/'`W32Shutdown.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32Shutdown.cc' object='libworkrave_frontend_common_win32_la-W32Shutdown.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-W32Shutdown.lo `test -f 'W32Shutdown.cc' || echo '$(srcdir)/'`W32Shutdown.cc libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo: W32DirectSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Tpo -c -o libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo `test -f 'W32DirectSoundPlayer.cc' || echo '$(srcdir)/'`W32DirectSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Tpo $(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32DirectSoundPlayer.cc' object='libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.lo `test -f 'W32DirectSoundPlayer.cc' || echo '$(srcdir)/'`W32DirectSoundPlayer.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Plo -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 -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-Sound.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32DirectSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32LockScreen.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Mixer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32Shutdown.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_win32_la-W32SoundPlayer.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/src/win32/W32SoundPlayer.hh0000644000175100001710000000277314221624107022355 0ustar00gdm00000000000000// W32SoundPlayer.hh // // Copyright (C) 2002 - 2010 Raymond Penners, Ray Satiro, Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32SOUNDPLAYER_HH #define W32SOUNDPLAYER_HH #include "ISoundDriver.hh" class W32SoundPlayer : public ISoundDriver { public: W32SoundPlayer(); virtual ~W32SoundPlayer(); void init(ISoundDriverEvents *) {} bool capability(SoundCapability cap); void play_sound(std::string wavfile); protected: static DWORD WINAPI thread_Play(LPVOID); private: void Play(); void open(); void close(); int write(unsigned char *buffer, size_t size); void flush_buffer(int buffer); void load_wav_file(const std::string &filename); HWAVEOUT waveout; HANDLE wave_event; int buffer_position; int number_of_buffers; WAVEHDR **buffers; unsigned char *sample; size_t sample_size; WAVEFORMATEX format; }; #endif // W32SOUNDPLAYER_HH workrave-1.10.50/frontend/common/src/win32/W32Mixer.hh0000644000175100001710000000756614221624107021201 0ustar00gdm00000000000000// W32Mixer.hh // // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32MIXER_HH #define W32MIXER_HH #include #ifdef HAVE_MMDEVICEAPI_H # include # include #else typedef interface IMMDeviceCollection IMMDeviceCollection; typedef interface IMMNotificationClient IMMNotificationClient; typedef interface IAudioEndpointVolumeCallback IAudioEndpointVolumeCallback; typedef interface IPropertyStore IPropertyStore; typedef enum { eRender = 0, eCapture = 1, eAll = 2, EDataFlow_enum_count = 3 } EDataFlow; typedef enum { eConsole = 0, eMultimedia = 1, eCommunications = 2, ERole_enum_count = 3, } ERole; class IMMDevice : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Activate(REFIID, DWORD, PROPVARIANT *, void **) = 0; virtual HRESULT STDMETHODCALLTYPE OpenPropertyStore(DWORD, IPropertyStore **) = 0; virtual HRESULT STDMETHODCALLTYPE GetId(LPWSTR *) = 0; virtual HRESULT STDMETHODCALLTYPE GetState(DWORD *) = 0; }; class IMMDeviceEnumerator : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE EnumAudioEndpoints(EDataFlow, DWORD, IMMDeviceCollection **) = 0; virtual HRESULT STDMETHODCALLTYPE GetDefaultAudioEndpoint(EDataFlow, ERole, IMMDevice **) = 0; virtual HRESULT STDMETHODCALLTYPE GetDevice(LPCWSTR, IMMDevice **) = 0; virtual HRESULT STDMETHODCALLTYPE RegisterEndpointNotificationCallback(IMMNotificationClient *) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterEndpointNotificationCallback(IMMNotificationClient *) = 0; }; class IAudioEndpointVolume : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RegisterControlChangeNotify(IAudioEndpointVolumeCallback *) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterControlChangeNotify(IAudioEndpointVolumeCallback *) = 0; virtual HRESULT STDMETHODCALLTYPE GetChannelCount(UINT *) = 0; virtual HRESULT STDMETHODCALLTYPE SetMasterVolumeLevel(float, LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE SetMasterVolumeLevelScalar(float, LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE GetMasterVolumeLevel(float *) = 0; virtual HRESULT STDMETHODCALLTYPE GetMasterVolumeLevelScalar(float *) = 0; virtual HRESULT STDMETHODCALLTYPE SetChannelVolumeLevel(UINT, float, LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE SetChannelVolumeLevelScalar(UINT, float, LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE GetChannelVolumeLevel(UINT, float *) = 0; virtual HRESULT STDMETHODCALLTYPE GetChannelVolumeLevelScalar(UINT, float *) = 0; virtual HRESULT STDMETHODCALLTYPE SetMute(BOOL, LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE GetMute(BOOL *) = 0; virtual HRESULT STDMETHODCALLTYPE GetVolumeStepInfo(UINT *, UINT *) = 0; virtual HRESULT STDMETHODCALLTYPE VolumeStepUp(LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE VolumeStepDown(LPCGUID) = 0; virtual HRESULT STDMETHODCALLTYPE QueryHardwareSupport(DWORD *) = 0; virtual HRESULT STDMETHODCALLTYPE GetVolumeRange(float *, float *, float *) = 0; }; #endif class W32Mixer : public IMixer { public: W32Mixer(); virtual ~W32Mixer(); void init(); bool set_mute(bool on); bool set_mute_mmdevice(bool on); bool set_mute_mixer(bool on); private: IAudioEndpointVolume *endpoint_volume; }; #endif // W32MIXER_HH workrave-1.10.50/frontend/common/src/win32/W32Shutdown.cc0000644000175100001710000000625314221624107021706 0ustar00gdm00000000000000// Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "W32Shutdown.hh" #include "W32LockScreen.hh" #include #include #include "harpoon.h" #include "CoreFactory.hh" #include "IConfigurator.hh" using namespace workrave; #ifndef HAVE_ISHELLDISPATCH # undef INTERFACE # define INTERFACE IShellDispatch DECLARE_INTERFACE_(IShellDispatch, IUnknown) { STDMETHOD(QueryInterface)(THIS_ REFIID, PVOID *) PURE; STDMETHOD_(ULONG, AddRef)(THIS) PURE; STDMETHOD_(ULONG, Release)(THIS) PURE; STDMETHOD_(ULONG, dummy1)(THIS) PURE; STDMETHOD_(ULONG, dummy2)(THIS) PURE; STDMETHOD_(ULONG, dummy3)(THIS) PURE; STDMETHOD_(ULONG, dummy4)(THIS) PURE; STDMETHOD_(ULONG, dummy5)(THIS) PURE; STDMETHOD_(ULONG, dummy6)(THIS) PURE; STDMETHOD_(ULONG, dummy7)(THIS) PURE; STDMETHOD_(ULONG, dummy8)(THIS) PURE; STDMETHOD_(ULONG, dummy9)(THIS) PURE; STDMETHOD_(ULONG, dummya)(THIS) PURE; STDMETHOD_(ULONG, dummyb)(THIS) PURE; STDMETHOD_(ULONG, dummyc)(THIS) PURE; STDMETHOD_(ULONG, dummyd)(THIS) PURE; STDMETHOD_(ULONG, dummye)(THIS) PURE; STDMETHOD_(ULONG, dummyf)(THIS) PURE; STDMETHOD_(ULONG, dummyg)(THIS) PURE; STDMETHOD_(ULONG, dummyh)(THIS) PURE; STDMETHOD(ShutdownWindows)(THIS) PURE; STDMETHOD_(ULONG, dummyi)(THIS) PURE; STDMETHOD_(ULONG, dummyj)(THIS) PURE; STDMETHOD_(ULONG, dummyk)(THIS) PURE; STDMETHOD_(ULONG, dummyl)(THIS) PURE; STDMETHOD_(ULONG, dummym)(THIS) PURE; STDMETHOD_(ULONG, dummyn)(THIS) PURE; STDMETHOD_(ULONG, dummyo)(THIS) PURE; STDMETHOD_(ULONG, dummyp)(THIS) PURE; STDMETHOD_(ULONG, dummyq)(THIS) PURE; END_INTERFACE }; typedef IShellDispatch *LPSHELLDISPATCH; #endif // uuid(D8F015C0-C278-11CE-A49E-444553540000); const GUID IID_IShellDispatch = {0xD8F015C0, 0xc278, 0x11ce, {0xa4, 0x9e, 0x44, 0x45, 0x53, 0x54}}; // 13709620-C279-11CE-A49E-444553540000 const GUID CLSID_Shell = {0x13709620, 0xc279, 0x11ce, {0xa4, 0x9e, 0x44, 0x45, 0x53, 0x54}}; W32Shutdown::W32Shutdown() { shutdown_supported = shutdown_helper(false); } bool W32Shutdown::shutdown_helper(bool for_real) { bool ret = false; IShellDispatch *pShellDispatch = NULL; if (SUCCEEDED(::CoCreateInstance(CLSID_Shell, NULL, CLSCTX_SERVER, IID_IShellDispatch, (LPVOID *)&pShellDispatch))) { ret = true; if (for_real) { harpoon_unblock_input(); pShellDispatch->ShutdownWindows(); } pShellDispatch->Release(); } return ret; } bool W32Shutdown::shutdown() { return shutdown_helper(true); } workrave-1.10.50/frontend/common/src/win32/W32LockScreen.hh0000644000175100001710000000245714221624107022137 0ustar00gdm00000000000000// LockScreen.hh - locking the screen on Windows // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef LOCKSCREEN_HH_ #define LOCKSCREEN_HH_ #include "IScreenLockMethod.hh" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include class W32LockScreen : public IScreenLockMethod { public: W32LockScreen(); virtual ~W32LockScreen(){}; virtual bool is_lock_supported() { return lock_func != NULL; }; virtual bool lock(); private: typedef HRESULT(FAR PASCAL *LockWorkStationFunc)(void); static LockWorkStationFunc lock_func; static HINSTANCE user32_dll; }; #endif /* LOCKSCREEN_HH_ */ workrave-1.10.50/frontend/common/src/win32/W32SoundPlayer.cc0000644000175100001710000002041514221624107022334 0ustar00gdm00000000000000// W32SoundPlayer.cc --- Sound player // // Copyright (C) 2002 - 2008, 2010, 2012 Raymond Penners & Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include #include #include #include "W32SoundPlayer.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "SoundPlayer.hh" #include "Exception.hh" #include "Util.hh" #define SAMPLE_BITS (8) #define WAVE_BUFFER_SIZE (4096) using namespace workrave; static std::string sound_filename; W32SoundPlayer::W32SoundPlayer() {} W32SoundPlayer::~W32SoundPlayer() {} bool W32SoundPlayer::capability(SoundCapability cap) { if (cap == SOUND_CAP_EDIT) { return true; } if (cap == SOUND_CAP_VOLUME) { return true; } return false; } /* thread routine changed jay satiro, workrave project, june 2007 redistribute under GNU terms. */ void W32SoundPlayer::play_sound(string wavfile) { TRACE_ENTER_MSG("W32SoundPlayer::play_sound", wavfile); if (sound_filename != "") { TRACE_MSG("Sound already queued"); } else { DWORD id; sound_filename = wavfile; CloseHandle(CreateThread(NULL, 0, thread_Play, this, 0, &id)); } TRACE_EXIT(); } DWORD WINAPI W32SoundPlayer::thread_Play(LPVOID lpParam) { W32SoundPlayer *pThis = (W32SoundPlayer *)lpParam; pThis->Play(); return (DWORD)0; } void W32SoundPlayer::Play() { TRACE_ENTER("W32SoundPlayer::Play"); try { load_wav_file(sound_filename); open(); write(sample, sample_size); close(); } catch (Exception e) { TRACE_MSG(e.details()); } catch (...) { } sound_filename = ""; TRACE_EXIT(); } void W32SoundPlayer::open() { MMRESULT res = MMSYSERR_NOERROR; int i; wave_event = CreateEvent(NULL, FALSE, FALSE, NULL); number_of_buffers = 16; buffer_position = 0; res = waveOutOpen(&waveout, WAVE_MAPPER, &format, (DWORD)wave_event, (DWORD)0, CALLBACK_EVENT); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutOpen"); } res = waveOutPause(waveout); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutPause"); } int volume = 100; CoreFactory::get_configurator()->get_value(SoundPlayer::CFG_KEY_SOUND_VOLUME, volume); volume = (volume * 0xFFFF / 100); volume = volume | (volume << 16); res = waveOutSetVolume(waveout, volume); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutSetVolume"); } buffers = (WAVEHDR **)malloc(number_of_buffers * sizeof(WAVEHDR **)); for (i = 0; i < number_of_buffers; i++) { buffers[i] = (WAVEHDR *)calloc(1, sizeof(WAVEHDR)); if (buffers[i] == NULL) { throw Exception("buffers malloc"); } if (buffers[i] != NULL) { buffers[i]->lpData = (CHAR *)malloc(WAVE_BUFFER_SIZE); if (buffers[i]->lpData == NULL) { throw Exception("buffer malloc"); } } } } int W32SoundPlayer::write(unsigned char *buf, size_t size) { unsigned char *ptr = buf; unsigned char *end = buf + size; MMRESULT res; for (int i = buffer_position; ptr < end; i = (i + 1) % number_of_buffers) { while ((buffers[i]->dwFlags & WHDR_INQUEUE) != 0) { res = waveOutRestart(waveout); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutRestart"); } WaitForSingleObject(wave_event, INFINITE); } int chunck_size = WAVE_BUFFER_SIZE - buffers[i]->dwBytesRecorded; if (ptr + chunck_size > end) { chunck_size = end - ptr; } memcpy(buffers[i]->lpData + buffers[i]->dwBytesRecorded, ptr, chunck_size); ptr += chunck_size; buffers[i]->dwBytesRecorded += chunck_size; if (buffers[i]->dwBytesRecorded == WAVE_BUFFER_SIZE) { flush_buffer(i); buffer_position = (i + 1) % number_of_buffers; } } return ptr - buf; } void W32SoundPlayer::flush_buffer(int i) { MMRESULT res; if (buffers[i]->dwBytesRecorded != 0) { buffers[i]->dwBufferLength = buffers[i]->dwBytesRecorded; buffers[i]->dwBytesRecorded = 0; buffers[i]->dwFlags = 0; res = waveOutPrepareHeader(waveout, buffers[i], sizeof(WAVEHDR)); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutPrepareHeader"); } res = waveOutWrite(waveout, buffers[i], sizeof(WAVEHDR)); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutWrite"); } } } void W32SoundPlayer::close(void) { MMRESULT res; flush_buffer(buffer_position); res = waveOutRestart(waveout); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutRestart"); } for (int i = 0; i < number_of_buffers; ++i) { while ((buffers[i]->dwFlags & WHDR_INQUEUE) != 0) { WaitForSingleObject(wave_event, INFINITE); } res = waveOutUnprepareHeader(waveout, buffers[i], sizeof(WAVEHDR)); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutUnprepareHeader"); } free(buffers[i]->lpData); free(buffers[i]); buffers[i] = NULL; } free(buffers); free(sample); buffers = NULL; sample = NULL; res = waveOutClose(waveout); if (res != MMSYSERR_NOERROR) { throw Exception("waveOutClose"); } } void W32SoundPlayer::load_wav_file(const string &filename) { MMRESULT res; HMMIO handle = mmioOpen((CHAR *)filename.c_str(), NULL, MMIO_ALLOCBUF | MMIO_READ); if (handle == NULL) { throw Exception("mmioOpen"); } MMCKINFO parent; memset((void *)&parent, 0, sizeof(parent)); res = mmioDescend(handle, &parent, NULL, 0); if (res != MMSYSERR_NOERROR) { throw Exception("mmioDescend"); } if (parent.ckid != FOURCC_RIFF || parent.fccType != mmioFOURCC('W', 'A', 'V', 'E')) { throw Exception("no Wave"); } MMCKINFO child; memset((void *)&child, 0, sizeof(child)); parent.ckid = mmioFOURCC('f', 'm', 't', ' '); res = mmioDescend(handle, &child, &parent, MMIO_FINDCHUNK); if (res != MMSYSERR_NOERROR) { throw Exception("mmioDescend"); } if (child.cksize < sizeof(PCMWAVEFORMAT)) { throw Exception("chunk size"); } int len = mmioRead(handle, (HPSTR)&format, sizeof(format)); if (len != sizeof(format)) { throw Exception("format size"); } if (format.wFormatTag != WAVE_FORMAT_PCM) { throw Exception("format supported"); } res = mmioAscend(handle, &child, 0); if (res != MMSYSERR_NOERROR) { throw Exception("mmioAscend"); } memset((void *)&child, 0, sizeof(child)); parent.ckid = mmioFOURCC('d', 'a', 't', 'a'); res = mmioDescend(handle, &child, &parent, MMIO_FINDCHUNK); if (res != MMSYSERR_NOERROR) { throw Exception("mmioAscend"); } sample = (unsigned char *)malloc(child.cksize); sample_size = child.cksize; if (sample == NULL) { throw Exception("malloc"); } MMIOINFO mmio; res = mmioGetInfo(handle, &mmio, 0); if (res != MMSYSERR_NOERROR) { throw Exception("mmioAscend"); } int pos = 0; do { size_t copy = mmio.pchEndRead - mmio.pchNext; if (copy > 0) { if (copy > sample_size - pos) { copy = sample_size - pos; } memcpy(sample + pos, mmio.pchNext, copy); pos += copy; } mmio.pchNext = mmio.pchEndRead; } while (pos < (int)sample_size && mmioAdvance(handle, &mmio, MMIO_READ) == 0); mmioClose(handle, 0); } workrave-1.10.50/frontend/common/src/win32/Sound.cc0000644000175100001710000000157714221624107020673 0ustar00gdm00000000000000// Sound.hh --- Sound class // // Copyright (C) 2002, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #include "Sound.hh" void Sound::beep(int frequency, int millis) { ::Beep(frequency, millis); } workrave-1.10.50/frontend/common/src/win32/W32Mixer.cc0000644000175100001710000001250514221624107021154 0ustar00gdm00000000000000// W32Mixer.cc --- W32Audio mixer // // Copyright (C) 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "debug.hh" #include "IConfigurator.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "W32Mixer.hh" #include "Util.hh" #include using namespace std; using namespace workrave; W32Mixer::W32Mixer() : endpoint_volume(NULL) { } W32Mixer::~W32Mixer() { TRACE_ENTER("W32Mixer::~W32Mixer"); if (endpoint_volume != NULL) { endpoint_volume->Release(); endpoint_volume = NULL; } CoUninitialize(); TRACE_EXIT(); } bool W32Mixer::set_mute(bool on) { TRACE_ENTER_MSG("W32Mixer::set_mute", on); bool was_muted = false; if (endpoint_volume != NULL) { was_muted = set_mute_mmdevice(on); } else { was_muted = set_mute_mixer(on); } TRACE_EXIT(); return was_muted; } void W32Mixer::init() { TRACE_ENTER("W32Mixer::init"); CoInitialize(NULL); HRESULT hr; IMMDeviceEnumerator *device_enum = NULL; IMMDevice *default_device = NULL; #ifdef _MSC_VER // These symbols do not exist in the MSVC SDK. Use variable shadowing to compile without errors. const CLSID CLSID_MMDeviceEnumerator = __uuidof(MMDeviceEnumerator); const IID IID_IMMDeviceEnumerator = __uuidof(IMMDeviceEnumerator); const IID IID_IAudioEndpointVolume = __uuidof(IAudioEndpointVolume); #endif //_MSC_VER hr = CoCreateInstance(CLSID_MMDeviceEnumerator, NULL, CLSCTX_INPROC_SERVER, IID_IMMDeviceEnumerator, (LPVOID *)&device_enum); if (hr == S_OK) { hr = device_enum->GetDefaultAudioEndpoint(eRender, eConsole, &default_device); device_enum->Release(); } if (hr == S_OK) { hr = default_device->Activate(IID_IAudioEndpointVolume, CLSCTX_INPROC_SERVER, NULL, (LPVOID *)&endpoint_volume); default_device->Release(); } TRACE_MSG(hr); TRACE_EXIT(); } bool W32Mixer::set_mute_mmdevice(bool on) { TRACE_ENTER_MSG("W32Mixer::set_mute_mmdevice", on); HRESULT hr; BOOL mute = FALSE; hr = endpoint_volume->GetMute(&mute); if (hr == S_OK) { TRACE_MSG("current mute is: " << mute); hr = endpoint_volume->SetMute(on, NULL); } return mute; } bool W32Mixer::set_mute_mixer(bool on) { TRACE_ENTER_MSG("W32Mixer::set_mute_mixer", on); MMRESULT result = MMSYSERR_NOERROR; MIXERLINE mixer_line; MIXERLINECONTROLS mixer_line_controls; MIXERCONTROL *mixer_control = NULL; int mute_control = -1; bool ret = false; memset(&mixer_line, 0, sizeof(MIXERLINE)); memset(&mixer_line_controls, 0, sizeof(MIXERLINECONTROLS)); mixer_line.cbStruct = sizeof(MIXERLINE); mixer_line_controls.cbStruct = sizeof(MIXERLINECONTROLS); result = mixerGetLineInfo(NULL, &mixer_line, MIXER_OBJECTF_MIXER | MIXER_GETLINEINFOF_DESTINATION); if (result == MMSYSERR_NOERROR) { mixer_control = new MIXERCONTROL[mixer_line.cControls]; mixer_line_controls.dwLineID = mixer_line.dwLineID; mixer_line_controls.cControls = mixer_line.cControls; mixer_line_controls.cbmxctrl = sizeof(MIXERCONTROL); mixer_line_controls.pamxctrl = mixer_control; result = mixerGetLineControls(NULL, &mixer_line_controls, MIXER_OBJECTF_MIXER | MIXER_GETLINECONTROLSF_ALL); } if (result == MMSYSERR_NOERROR) { for (unsigned int i = 0; i < mixer_line_controls.cControls; i++) { if (mixer_control[i].dwControlType == MIXERCONTROL_CONTROLTYPE_MUTE) { mute_control = mixer_control[i].dwControlID; break; } } } if (result == MMSYSERR_NOERROR && mute_control != -1) { MIXERCONTROLDETAILS_BOOLEAN value; memset(&value, 0, sizeof(MIXERCONTROLDETAILS_BOOLEAN)); value.fValue = FALSE; MIXERCONTROLDETAILS mixer_control_details; memset(&mixer_control_details, 0, sizeof(MIXERCONTROLDETAILS)); mixer_control_details.cbStruct = sizeof(MIXERCONTROLDETAILS); mixer_control_details.dwControlID = mute_control; mixer_control_details.cMultipleItems = 0; mixer_control_details.cChannels = 1; mixer_control_details.cbDetails = sizeof(MIXERCONTROLDETAILS_BOOLEAN); mixer_control_details.paDetails = &value; mixerGetControlDetails(NULL, &mixer_control_details, MIXER_GETCONTROLDETAILSF_VALUE | MIXER_OBJECTF_MIXER); ret = value.fValue; TRACE_MSG("current mute is: " << ret); value.fValue = on; mixerSetControlDetails(NULL, &mixer_control_details, MIXER_GETCONTROLDETAILSF_VALUE | MIXER_OBJECTF_MIXER); } if (mixer_control != NULL) { delete[] mixer_control; } TRACE_EXIT(); return ret; } workrave-1.10.50/frontend/common/src/win32/Makefile.am0000644000175100001710000000174214221624107021322 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if PLATFORM_OS_WINDOWS noinst_LTLIBRARIES = libworkrave-frontend-common-win32.la if HAVE_DSOUND dsound_sources = W32DirectSoundPlayer.cc endif libworkrave_frontend_common_win32_la_SOURCES = \ W32SoundPlayer.cc \ W32Mixer.cc \ Sound.cc \ W32LockScreen.cc \ W32Shutdown.cc \ $(dsound_sources) libworkrave_frontend_common_win32_la_CXXFLAGS = \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 \ -W -I$(top_srcdir)/frontend/common/src \ -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/common/win32/harpoon/include \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ @GLIB_CFLAGS@ endifworkrave-1.10.50/frontend/common/src/win32/W32LockScreen.cc0000644000175100001710000000232114221624107022113 0ustar00gdm00000000000000// System.hh // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "W32LockScreen.hh" W32LockScreen::LockWorkStationFunc W32LockScreen::lock_func = NULL; HINSTANCE W32LockScreen::user32_dll = NULL; W32LockScreen::W32LockScreen() { // Note: this memory is never freed user32_dll = LoadLibrary("user32.dll"); if (user32_dll != NULL) { lock_func = (LockWorkStationFunc)GetProcAddress(user32_dll, "LockWorkStation"); } } bool W32LockScreen::lock() { (*lock_func)(); return true; } workrave-1.10.50/frontend/common/src/win32/W32DirectSoundPlayer.cc0000644000175100001710000002647014221624107023476 0ustar00gdm00000000000000// W32DirectSoundPlayer.cc --- Sound player // // Copyright (C) 2002 - 2010, 2012, 2013 Raymond Penners & Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // 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 . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #define STRICT #include #include #include #include #if defined(HAVE_DXERR_H) # include #elif defined(HAVE_DXERR8_H) # include #endif #ifndef DXGetErrorString8 # define DXGetErrorString8 DXGetErrorString #endif #include #include #include "W32DirectSoundPlayer.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "SoundPlayer.hh" #include "Exception.hh" #include "Util.hh" #define SAMPLE_BITS (8) #define WAVE_BUFFER_SIZE (4096) using namespace workrave; static std::string sound_filename; #ifndef PLATFORM_OS_WINDOWS_NATIVE extern "C" { void _chkstk() {} } #endif //! Constructor W32DirectSoundPlayer::W32DirectSoundPlayer() {} //! Destructor W32DirectSoundPlayer::~W32DirectSoundPlayer() {} //! void W32DirectSoundPlayer::init(ISoundDriverEvents *events) { this->events = events; } bool W32DirectSoundPlayer::capability(SoundCapability cap) { if (cap == SOUND_CAP_EDIT) { return true; } if (cap == SOUND_CAP_VOLUME) { return true; } if (cap == SOUND_CAP_EOS_EVENT) { return true; } return false; } void W32DirectSoundPlayer::play_sound(string wavfile) { TRACE_ENTER_MSG("W32DirectSoundPlayer::play_sound", wavfile); if (wavfile != "") { DWORD id; SoundClip *clip = new SoundClip(wavfile, events); CloseHandle(CreateThread(NULL, 0, play_thread, clip, 0, &id)); } TRACE_EXIT(); } DWORD WINAPI W32DirectSoundPlayer::play_thread(LPVOID lpParam) { TRACE_ENTER("W32DirectSoundPlayer::play_thread"); SoundClip *clip = (SoundClip *)lpParam; try { if (clip != NULL) { clip->init(); clip->play(); } } catch (Exception e) { TRACE_MSG("Exception: " << e.details()); } catch (...) { } delete clip; TRACE_EXIT(); return (DWORD)0; } SoundClip::SoundClip(const string &filename, ISoundDriverEvents *events) { TRACE_ENTER("SoundClip::SoundClip"); this->direct_sound = NULL; this->filename = filename; this->events = events; wave_file = NULL; sound_buffer = NULL; sound_buffer_size = 0; stop_event = NULL; TRACE_EXIT(); } SoundClip::~SoundClip() { TRACE_ENTER("SoundClip::~SoundClip"); if (sound_buffer != NULL) { sound_buffer->Release(); sound_buffer = NULL; } if (stop_event != NULL) { CloseHandle(stop_event); stop_event = NULL; } if (direct_sound != NULL) { direct_sound->Release(); direct_sound = NULL; } delete wave_file; wave_file = NULL; TRACE_EXIT(); } void SoundClip::init() { HRESULT hr = S_OK; TRACE_ENTER("SoundClip::init"); hr = DirectSoundCreate8(NULL, &direct_sound, NULL); if (FAILED(hr) || direct_sound == NULL) { throw Exception(string("DirectSoundCreate8") + DXGetErrorString8(hr)); } hr = direct_sound->SetCooperativeLevel(GetDesktopWindow(), DSSCL_PRIORITY); if (FAILED(hr)) { throw Exception(string("IDirectSound_SetCooperativeLevel") + DXGetErrorString8(hr)); } wave_file = new WaveFile(filename); wave_file->init(); sound_buffer_size = wave_file->get_size(); if (sound_buffer_size <= 0) { TRACE_RETURN("Exception: WAV has zero size"); throw Exception(string("WAV has zero size")); } DSBUFFERDESC dsbd; ZeroMemory(&dsbd, sizeof(DSBUFFERDESC)); dsbd.dwSize = sizeof(DSBUFFERDESC); dsbd.dwFlags = DSBCAPS_CTRLVOLUME | DSBCAPS_GLOBALFOCUS | DSBCAPS_CTRLPOSITIONNOTIFY; dsbd.dwBufferBytes = sound_buffer_size; dsbd.guid3DAlgorithm = GUID_NULL; dsbd.lpwfxFormat = wave_file->get_format(); hr = direct_sound->CreateSoundBuffer(&dsbd, &sound_buffer, NULL); if (FAILED(hr) || sound_buffer == NULL) { TRACE_RETURN("Exception: IDirectSoundBuffer_CreateSoundBuffer"); throw Exception(string("IDirectSoundBuffer_CreateSoundBuffer") + DXGetErrorString8(hr)); } LPDIRECTSOUNDNOTIFY notify; hr = sound_buffer->QueryInterface(IID_IDirectSoundNotify8, (LPVOID *)¬ify); if (FAILED(hr) || notify == NULL) { TRACE_RETURN("Exception: IDirectSoundBuffer_QueryInterface IDirectSoundNotify" << DXGetErrorString8(hr)); throw Exception(string("IDirectSoundBuffer_QueryInterface IDirectSoundNotify") + DXGetErrorString8(hr)); } stop_event = CreateEvent(0, false, false, 0); DSBPOSITIONNOTIFY pn; pn.dwOffset = DSBPN_OFFSETSTOP; pn.hEventNotify = stop_event; hr = notify->SetNotificationPositions(1, &pn); if (FAILED(hr)) { TRACE_RETURN("Exception: IDirectSoundNotify_SetPositionNotify" << DXGetErrorString8(hr)); throw Exception(string("IDirectSoundNotify_SetPositionNotify") + DXGetErrorString8(hr)); } notify->Release(); fill_buffer(); int volume = 100; CoreFactory::get_configurator()->get_value(SoundPlayer::CFG_KEY_SOUND_VOLUME, volume); set_volume(volume); TRACE_EXIT(); } void SoundClip::fill_buffer() { TRACE_ENTER("SoundClip::fill_buffer"); HRESULT hr; VOID *locked_sound_buffer = NULL; DWORD locked_sound_buffer_size = 0; restore_buffer(); hr = sound_buffer->Lock(0, sound_buffer_size, &locked_sound_buffer, &locked_sound_buffer_size, NULL, NULL, 0L); if (FAILED(hr)) { TRACE_RETURN("Exception: IDirectSoundBuffer_Lock"); throw Exception(string("IDirectSoundBuffer_Lock") + DXGetErrorString8(hr)); } wave_file->reset_file(); int bytes_read = wave_file->read((BYTE *)locked_sound_buffer, locked_sound_buffer_size); if (locked_sound_buffer_size - bytes_read > 0) { FillMemory((BYTE *)locked_sound_buffer + bytes_read, locked_sound_buffer_size - bytes_read, (BYTE)(wave_file->get_format()->wBitsPerSample == 8 ? 128 : 0)); } sound_buffer->Unlock(locked_sound_buffer, locked_sound_buffer_size, NULL, 0); sound_buffer->SetCurrentPosition(0); TRACE_EXIT(); } bool SoundClip::is_buffer_lost() { TRACE_ENTER("SoundClip::is_buffer_lost"); DWORD status; HRESULT hr; hr = sound_buffer->GetStatus(&status); if (FAILED(hr)) { TRACE_RETURN("Exception: IDirectSound_GetStatus"); throw Exception(string("IDirectSound_GetStatus") + DXGetErrorString8(hr)); } TRACE_EXIT(); return (status & DSBSTATUS_BUFFERLOST) != 0; } void SoundClip::restore_buffer() { TRACE_ENTER("SoundClip::restore_buffer"); HRESULT hr = S_OK; do { hr = sound_buffer->Restore(); if (hr == DSERR_BUFFERLOST) Sleep(10); } while (hr != S_OK); TRACE_EXIT(); } void SoundClip::play() { TRACE_ENTER("SoundClip::play"); if (is_buffer_lost()) { fill_buffer(); } HRESULT hr = sound_buffer->Play(0, 0, 0); WaitForSingleObject(stop_event, INFINITE); if (events != NULL) { events->eos_event(); } TRACE_EXIT(); } void SoundClip::set_volume(int volume) { TRACE_ENTER("SoundClip::set_volume"); if (sound_buffer != NULL) { long dsVolume; if (volume == 0) { dsVolume = -10000; } else { dsVolume = 100 * (long)(20 * log10((double)volume / 100.0)); } dsVolume = CLAMP(dsVolume, -10000, 0); sound_buffer->SetVolume(dsVolume); } TRACE_EXIT(); } WaveFile::WaveFile(const string &filename) : filename(filename) { TRACE_ENTER("WaveFile::WaveFile"); mmio = NULL; sample_size = 0; memset((void *)&child, 0, sizeof(child)); memset((void *)&parent, 0, sizeof(parent)); TRACE_EXIT(); } WaveFile::~WaveFile() { TRACE_ENTER("WaveFile::~WaveFile"); if (mmio != NULL) { mmioClose(mmio, 0); mmio = NULL; } TRACE_EXIT(); } void WaveFile::init() { TRACE_ENTER("WaveFile::init"); MMRESULT res; mmio = mmioOpen((CHAR *)filename.c_str(), NULL, MMIO_ALLOCBUF | MMIO_READ); if (mmio == NULL) { TRACE_RETURN("Exception: mmioOpen"); throw Exception("mmioOpen"); } memset((void *)&parent, 0, sizeof(parent)); res = mmioDescend(mmio, &parent, NULL, 0); if (res != MMSYSERR_NOERROR) { TRACE_RETURN("Exception: mmioDescend1"); throw Exception("mmioDescend1"); } if (parent.ckid != FOURCC_RIFF || parent.fccType != mmioFOURCC('W', 'A', 'V', 'E')) { TRACE_RETURN("Exception: no Wave"); throw Exception("no Wave"); } memset((void *)&child, 0, sizeof(child)); child.ckid = mmioFOURCC('f', 'm', 't', ' '); res = mmioDescend(mmio, &child, &parent, MMIO_FINDCHUNK); if (res != MMSYSERR_NOERROR) { TRACE_RETURN("Exception: mmioDescend2"); throw Exception("mmioDescend2"); } if (child.cksize < sizeof(PCMWAVEFORMAT)) { TRACE_RETURN("Exception: chunk size"); throw Exception("chunk size"); } int len = mmioRead(mmio, (HPSTR)&format, sizeof(format)); if (len != sizeof(format)) { TRACE_RETURN("Exception: format size"); throw Exception("format size"); } if (format.wFormatTag != WAVE_FORMAT_PCM) { TRACE_RETURN("Exception: format supported"); throw Exception("format supported"); } format.cbSize = 0; res = mmioAscend(mmio, &child, 0); if (res != MMSYSERR_NOERROR) { TRACE_RETURN("Exception: mmioAscend"); throw Exception("mmioAscend"); } reset_file(); sample_size = child.cksize; TRACE_EXIT(); } size_t WaveFile::get_size() { return sample_size; } void WaveFile::reset_file() { TRACE_ENTER("WaveFile::reset_file"); if (-1 == mmioSeek(mmio, parent.dwDataOffset + sizeof(FOURCC), SEEK_SET)) { TRACE_RETURN("Exception: mmioSeek"); throw Exception("mmioSeek"); } memset((void *)&child, 0, sizeof(child)); child.ckid = mmioFOURCC('d', 'a', 't', 'a'); if (0 != mmioDescend(mmio, &child, &parent, MMIO_FINDCHUNK)) { TRACE_RETURN("Exception: mmioDescend"); throw Exception("mmioDescend"); } TRACE_EXIT(); } size_t WaveFile::read(BYTE *buffer, size_t size) { TRACE_ENTER_MSG("WaveFile::read", size); MMRESULT res; MMIOINFO mmioInfo; res = mmioGetInfo(mmio, &mmioInfo, 0); if (res != MMSYSERR_NOERROR) { TRACE_RETURN("Exception: mmioGetInfo"); throw Exception("mmioGetInfo"); } int pos = 0; do { size_t copy = mmioInfo.pchEndRead - mmioInfo.pchNext; if (copy > 0) { if (copy > size - pos) { copy = size - pos; } memcpy(buffer + pos, mmioInfo.pchNext, copy); pos += copy; } mmioInfo.pchNext = mmioInfo.pchEndRead; } while (pos < (int)size && mmioAdvance(mmio, &mmioInfo, MMIO_READ) == 0); mmioSetInfo(mmio, &mmioInfo, 0); TRACE_EXIT(); return pos; } workrave-1.10.50/frontend/common/src/ScreenLockCommandline.cc0000644000175100001710000000442714221624107023035 0ustar00gdm00000000000000// SystemLockCommandline.cc -- support for locking the system using command line // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // Uses some code and ideas from the KShutdown utility: file src/actions/lock.cpp // Copyright (C) 2009 Konrad Twardowski // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_GLIB # include #endif #include "ScreenLockCommandline.hh" #include "debug.hh" ScreenLockCommandline::ScreenLockCommandline(const char *program_name, const char *parameters, bool async) : async(async) { TRACE_ENTER_MSG("ScreenLockCommandline::ScreenLockCommandline", program_name); char *program_path = g_find_program_in_path(program_name); if (program_path == NULL) { cmd = NULL; } else if (parameters != NULL) { cmd = g_strdup_printf("%s %s", program_path, parameters); g_free(program_path); } else { cmd = program_path; } TRACE_EXIT(); } bool ScreenLockCommandline::invoke(const gchar *command, bool async) { GError *error = NULL; if (!async) { // synchronised call gint exit_code; if (!g_spawn_command_line_sync(command, NULL, NULL, &exit_code, &error)) { g_error_free(error); return false; } return WEXITSTATUS(exit_code) == 0; } else { // asynchronous call if (!g_spawn_command_line_async(command, &error)) { g_error_free(error); return false; } return true; } } bool ScreenLockCommandline::lock() { TRACE_ENTER_MSG("ScreenLockCommandline::lock", cmd); return invoke(cmd, async); TRACE_EXIT(); } workrave-1.10.50/frontend/common/src/SystemStateChangeLogind.hh0000644000175100001710000000444414221624107023377 0ustar00gdm00000000000000// SystemStateChangeLogind.hh -- shutdown/suspend/hibernate using systemd-logind // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef SYSTEMSTATECHANGELOGIND_HH_ #define SYSTEMSTATECHANGELOGIND_HH_ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DBusProxy.hh" #include "ISystemStateChangeMethod.hh" // http://www.freedesktop.org/wiki/Software/systemd/logind/ // // feature introduction date: http://cgit.freedesktop.org/systemd/systemd/ // log/src/login/org.freedesktop.login1.conf // - (Can)PowerOff/Reboot - II 2012r. // - Suspend/HIbernate - V 2012r. // - HybridSuspend - XII 2012r. class SystemStateChangeLogind : public ISystemStateChangeMethod { public: SystemStateChangeLogind(GDBusConnection *connection); virtual ~SystemStateChangeLogind(){}; // PowerOff(), Reboot(), Suspend(), Hibernate(), HybridSleep() virtual bool shutdown() { return execute("PowerOff"); } virtual bool suspend() { return execute("Suspend"); } virtual bool hibernate() { return execute("Hibernate"); } virtual bool suspendHybrid() { return execute("HybridSleep"); } virtual bool canShutdown() { return can_shutdown; } virtual bool canSuspend() { return can_suspend; } virtual bool canHibernate() { return can_hibernate; } virtual bool canSuspendHybrid() { return can_suspend_hybrid; } static const char *dbus_name; private: bool check_method(const char *method_name); bool execute(const char *method_name); bool can_shutdown; bool can_suspend; bool can_hibernate; bool can_suspend_hybrid; DBusProxy proxy; }; #endif /* SYSTEMSTATECHANGELOGIND_HH_ */ workrave-1.10.50/frontend/common/src/SystemStateChangeUPower.cc0000644000175100001710000000716114221624107023371 0ustar00gdm00000000000000// SystemStateChangeUPower.cc -- shutdown/suspend/hibernate using systemd-logind // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #include "SystemStateChangeUPower.hh" #ifdef HAVE_GLIB # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #include #include "debug.hh" const char *SystemStateChangeUPower::dbus_name = "org.freedesktop.UPower"; SystemStateChangeUPower::SystemStateChangeUPower(GDBusConnection *connection) { TRACE_ENTER("SystemStateChangeUPower::SystemStateChangeUPower"); proxy.init_with_connection(connection, dbus_name, "/org/freedesktop/UPower", "org.freedesktop.UPower", static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS | G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START)); property_proxy.init_with_connection( connection, "org.freedesktop.UPower", "/org/freedesktop/UPower", "org.freedesktop.DBus.Properties"); if (!proxy.is_valid() || !property_proxy.is_valid()) { can_suspend = false; can_hibernate = false; } else { can_suspend = check_method("SuspendAllowed") && check_property("CanSuspend"); can_hibernate = check_method("HibernateAllowed") && check_property("CanHibernate"); } TRACE_EXIT(); } bool SystemStateChangeUPower::check_method(const char *method_name) { TRACE_ENTER_MSG("SystemStateChangeUPower::check_method", method_name); GVariant *result; if (!proxy.call_method(method_name, NULL, &result)) { TRACE_MSG2(method_name, "failed"); TRACE_RETURN(false); return false; } gboolean method_result; g_variant_get(result, "(b)", &method_result); g_variant_unref(result); TRACE_RETURN(method_result); return method_result == TRUE; } bool SystemStateChangeUPower::check_property(const char *property_name) { TRACE_ENTER_MSG("SystemStateChangeUPower::check_property", property_name); GVariant *result; bool r1; r1 = property_proxy.call_method("Get", g_variant_new("(ss)", "org.freedesktop.UPower", property_name), &result); if (!r1) { TRACE_MSG2(property_name, "failed"); TRACE_RETURN(false); return false; } GVariant *content; g_variant_get(result, "(v)", &content); if (content == NULL) { return false; } gboolean prop_value; g_variant_get(content, "b", &prop_value); g_variant_unref(content); g_variant_unref(result); TRACE_RETURN(prop_value); return (prop_value == TRUE); } bool SystemStateChangeUPower::execute(const char *method_name) { TRACE_ENTER_MSG("SystemStateChangeUPower::execute", method_name); bool ret = proxy.call_method_asynch_no_result(method_name, NULL); TRACE_RETURN(ret); return ret; } workrave-1.10.50/frontend/common/src/Makefile.in0000644000000000000000000013765714221624202021475 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2007, 2008, 2010, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @PLATFORM_OS_WINDOWS_TRUE@am__append_1 = win32/libworkrave-frontend-common-win32.la @PLATFORM_OS_MACOS_TRUE@am__append_2 = macos/libworkrave-frontend-common-macos.la @PLATFORM_OS_UNIX_TRUE@am__append_3 = x11/libworkrave-frontend-common-x11.la @PLATFORM_OS_UNIX_TRUE@am__append_4 = \ @PLATFORM_OS_UNIX_TRUE@ ScreenLockCommandline.cc @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@am__append_5 = \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ ScreenLockDBus.cc \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ SystemStateChangeConsolekit.cc \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ SystemStateChangeUPower.cc \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ SystemStateChangeLogind.cc subdir = frontend/common/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_common_la_DEPENDENCIES = $(ldadd_platform) am__libworkrave_frontend_common_la_SOURCES_DIST = Text.cc \ SoundPlayer.cc GstSoundPlayer.cc PulseMixer.cc System.cc \ TimerBoxControl.cc ScreenLockCommandline.cc ScreenLockDBus.cc \ SystemStateChangeConsolekit.cc SystemStateChangeUPower.cc \ SystemStateChangeLogind.cc @PLATFORM_OS_UNIX_TRUE@am__objects_1 = libworkrave_frontend_common_la-ScreenLockCommandline.lo @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@am__objects_2 = libworkrave_frontend_common_la-ScreenLockDBus.lo \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ libworkrave_frontend_common_la-SystemStateChangeUPower.lo \ @HAVE_DBUS_TRUE@@PLATFORM_OS_UNIX_TRUE@ libworkrave_frontend_common_la-SystemStateChangeLogind.lo am_libworkrave_frontend_common_la_OBJECTS = \ libworkrave_frontend_common_la-Text.lo \ libworkrave_frontend_common_la-SoundPlayer.lo \ libworkrave_frontend_common_la-GstSoundPlayer.lo \ libworkrave_frontend_common_la-PulseMixer.lo \ libworkrave_frontend_common_la-System.lo \ libworkrave_frontend_common_la-TimerBoxControl.lo \ $(am__objects_1) $(am__objects_2) libworkrave_frontend_common_la_OBJECTS = \ $(am_libworkrave_frontend_common_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_common_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-System.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-Text.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_frontend_common_la_SOURCES) DIST_SOURCES = $(am__libworkrave_frontend_common_la_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-frontend-common.la SUBDIRS = win32 x11 macos libworkrave_frontend_common_la_SOURCES = Text.cc SoundPlayer.cc \ GstSoundPlayer.cc PulseMixer.cc System.cc TimerBoxControl.cc \ $(am__append_4) $(am__append_5) ldadd_platform = $(am__append_1) $(am__append_2) $(am__append_3) libworkrave_frontend_common_la_LIBADD = ${ldadd_platform} EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) libworkrave_frontend_common_la_CXXFLAGS = \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 @X_CFLAGS@ \ -W -I$(top_srcdir)/frontend/common/src/ \ -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/frontend/common/src/win32 \ -I$(top_srcdir)/frontend/common/src/macos \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @PULSE_CFLAGS@ \ @GTK_CFLAGS@ @GLIB_CFLAGS@ @GSTREAMER_CFLAGS@ \ -I$(top_srcdir)/common/win32/harpoon/include all: all-recursive .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-common.la: $(libworkrave_frontend_common_la_OBJECTS) $(libworkrave_frontend_common_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_common_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_common_la_LINK) $(libworkrave_frontend_common_la_OBJECTS) $(libworkrave_frontend_common_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-System.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-Text.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_common_la-Text.lo: Text.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-Text.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-Text.Tpo -c -o libworkrave_frontend_common_la-Text.lo `test -f 'Text.cc' || echo '$(srcdir)/'`Text.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-Text.Tpo $(DEPDIR)/libworkrave_frontend_common_la-Text.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Text.cc' object='libworkrave_frontend_common_la-Text.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-Text.lo `test -f 'Text.cc' || echo '$(srcdir)/'`Text.cc libworkrave_frontend_common_la-SoundPlayer.lo: SoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-SoundPlayer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Tpo -c -o libworkrave_frontend_common_la-SoundPlayer.lo `test -f 'SoundPlayer.cc' || echo '$(srcdir)/'`SoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Tpo $(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SoundPlayer.cc' object='libworkrave_frontend_common_la-SoundPlayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-SoundPlayer.lo `test -f 'SoundPlayer.cc' || echo '$(srcdir)/'`SoundPlayer.cc libworkrave_frontend_common_la-GstSoundPlayer.lo: GstSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-GstSoundPlayer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Tpo -c -o libworkrave_frontend_common_la-GstSoundPlayer.lo `test -f 'GstSoundPlayer.cc' || echo '$(srcdir)/'`GstSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Tpo $(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GstSoundPlayer.cc' object='libworkrave_frontend_common_la-GstSoundPlayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-GstSoundPlayer.lo `test -f 'GstSoundPlayer.cc' || echo '$(srcdir)/'`GstSoundPlayer.cc libworkrave_frontend_common_la-PulseMixer.lo: PulseMixer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-PulseMixer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Tpo -c -o libworkrave_frontend_common_la-PulseMixer.lo `test -f 'PulseMixer.cc' || echo '$(srcdir)/'`PulseMixer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Tpo $(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PulseMixer.cc' object='libworkrave_frontend_common_la-PulseMixer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-PulseMixer.lo `test -f 'PulseMixer.cc' || echo '$(srcdir)/'`PulseMixer.cc libworkrave_frontend_common_la-System.lo: System.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-System.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-System.Tpo -c -o libworkrave_frontend_common_la-System.lo `test -f 'System.cc' || echo '$(srcdir)/'`System.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-System.Tpo $(DEPDIR)/libworkrave_frontend_common_la-System.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='System.cc' object='libworkrave_frontend_common_la-System.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-System.lo `test -f 'System.cc' || echo '$(srcdir)/'`System.cc libworkrave_frontend_common_la-TimerBoxControl.lo: TimerBoxControl.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-TimerBoxControl.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Tpo -c -o libworkrave_frontend_common_la-TimerBoxControl.lo `test -f 'TimerBoxControl.cc' || echo '$(srcdir)/'`TimerBoxControl.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Tpo $(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxControl.cc' object='libworkrave_frontend_common_la-TimerBoxControl.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-TimerBoxControl.lo `test -f 'TimerBoxControl.cc' || echo '$(srcdir)/'`TimerBoxControl.cc libworkrave_frontend_common_la-ScreenLockCommandline.lo: ScreenLockCommandline.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-ScreenLockCommandline.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Tpo -c -o libworkrave_frontend_common_la-ScreenLockCommandline.lo `test -f 'ScreenLockCommandline.cc' || echo '$(srcdir)/'`ScreenLockCommandline.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Tpo $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ScreenLockCommandline.cc' object='libworkrave_frontend_common_la-ScreenLockCommandline.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-ScreenLockCommandline.lo `test -f 'ScreenLockCommandline.cc' || echo '$(srcdir)/'`ScreenLockCommandline.cc libworkrave_frontend_common_la-ScreenLockDBus.lo: ScreenLockDBus.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-ScreenLockDBus.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Tpo -c -o libworkrave_frontend_common_la-ScreenLockDBus.lo `test -f 'ScreenLockDBus.cc' || echo '$(srcdir)/'`ScreenLockDBus.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Tpo $(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ScreenLockDBus.cc' object='libworkrave_frontend_common_la-ScreenLockDBus.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-ScreenLockDBus.lo `test -f 'ScreenLockDBus.cc' || echo '$(srcdir)/'`ScreenLockDBus.cc libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo: SystemStateChangeConsolekit.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Tpo -c -o libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo `test -f 'SystemStateChangeConsolekit.cc' || echo '$(srcdir)/'`SystemStateChangeConsolekit.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Tpo $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SystemStateChangeConsolekit.cc' object='libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-SystemStateChangeConsolekit.lo `test -f 'SystemStateChangeConsolekit.cc' || echo '$(srcdir)/'`SystemStateChangeConsolekit.cc libworkrave_frontend_common_la-SystemStateChangeUPower.lo: SystemStateChangeUPower.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-SystemStateChangeUPower.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Tpo -c -o libworkrave_frontend_common_la-SystemStateChangeUPower.lo `test -f 'SystemStateChangeUPower.cc' || echo '$(srcdir)/'`SystemStateChangeUPower.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Tpo $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SystemStateChangeUPower.cc' object='libworkrave_frontend_common_la-SystemStateChangeUPower.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-SystemStateChangeUPower.lo `test -f 'SystemStateChangeUPower.cc' || echo '$(srcdir)/'`SystemStateChangeUPower.cc libworkrave_frontend_common_la-SystemStateChangeLogind.lo: SystemStateChangeLogind.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_la-SystemStateChangeLogind.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Tpo -c -o libworkrave_frontend_common_la-SystemStateChangeLogind.lo `test -f 'SystemStateChangeLogind.cc' || echo '$(srcdir)/'`SystemStateChangeLogind.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Tpo $(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SystemStateChangeLogind.cc' object='libworkrave_frontend_common_la-SystemStateChangeLogind.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_la-SystemStateChangeLogind.lo `test -f 'SystemStateChangeLogind.cc' || echo '$(srcdir)/'`SystemStateChangeLogind.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-recursive -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-System.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-Text.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-GstSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-PulseMixer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockCommandline.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-ScreenLockDBus.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-System.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeConsolekit.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeLogind.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-SystemStateChangeUPower.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-Text.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_la-TimerBoxControl.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/src/Text.cc0000644000175100001710000000372414221624107017561 0ustar00gdm00000000000000// Text.cc // // Copyright (C) 2002, 2003, 2007, 2008 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include "nls.h" #include "Text.hh" using namespace std; //! Converts the specified time to a string string Text::time_to_string(time_t time, bool display_units) { char s[128] = ""; char t[2]; if (time < 0) { t[0] = '-'; t[1] = 0; time = -time; } else { t[0] = 0; } int hrs = (int)time / 3600; int min = (time / 60) % 60; int sec = time % 60; if (!display_units) { if (hrs > 0) { snprintf(s, sizeof(s), "%s%d:%02d:%02d", t, hrs, min, sec); } else { snprintf(s, sizeof(s), "%s%d:%02d", t, min, sec); } } else { if (hrs > 0) { snprintf(s, sizeof(s), _("%s%d:%02d:%02d hours"), t, hrs, min, sec); } else if (min > 0) { snprintf(s, sizeof(s), _("%s%d:%02d minutes"), t, min, sec); } else { snprintf(s, sizeof(s), _("%s%d seconds"), t, sec); } } return s; } workrave-1.10.50/frontend/common/src/System.cc0000644000175100001710000003706214221624107020123 0ustar00gdm00000000000000// System.cc // // Copyright (C) 2002 - 2011 Rob Caelers & Raymond Penners // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // Some lock commands are imported from the KShutdown utility: // http://kshutdown.sourceforge.net/ // file src/actions/lock.cpp // Copyright (C) 2009 Konrad Twardowski // Mateusz Jończyk has read source code of xflock4, lxlock and enlightenment_remote, // but that did not influence the code in any way except for getting simple info on how // they work. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_GLIB) # include #endif #include #include #include #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include #if defined(HAVE_STRINGS_H) # include #endif #include "System.hh" #include "debug.hh" #if defined(PLATFORM_OS_UNIX) # include "ScreenLockCommandline.hh" # if defined(HAVE_DBUS) # include "ScreenLockDBus.hh" # include "SystemStateChangeConsolekit.hh" # include "SystemStateChangeLogind.hh" # include "SystemStateChangeUPower.hh" # endif #endif // PLATFORM_OS_UNIX #if defined(PLATFORM_OS_WINDOWS) # include "W32Shutdown.hh" # include "W32LockScreen.hh" #endif #if defined(HAVE_UNIX) # include #endif std::vector System::lock_commands; std::vector System::system_state_commands; std::vector System::supported_system_operations; #if defined(PLATFORM_OS_UNIX) && defined(HAVE_DBUS) GDBusConnection *System::session_connection = NULL; GDBusConnection *System::system_connection = NULL; #endif #if defined(PLATFORM_OS_UNIX) # if defined(HAVE_DBUS) void System::init_DBus() { TRACE_ENTER("System::init_dbus()"); GError *error = NULL; session_connection = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error); if (error != NULL) { // it is rare and serious, so report it the user std::cerr << "Cannot establish connection to the session bus: " << error->message << std::endl; g_error_free(error); error = NULL; } system_connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error); if (error != NULL) { std::cerr << "Cannot establish connection to the system bus: " << error->message << std::endl; g_error_free(error); error = NULL; } TRACE_EXIT(); } bool System::add_DBus_lock_cmd(const char *dbus_name, const char *dbus_path, const char *dbus_interface, const char *dbus_lock_method, const char *dbus_method_to_check_existence) { TRACE_ENTER_MSG("System::add_DBus_lock_cmd", dbus_name); // I wish we could use std::move here IScreenLockMethod *lock_method = NULL; lock_method = new ScreenLockDBus(session_connection, dbus_name, dbus_path, dbus_interface, dbus_lock_method, dbus_method_to_check_existence); if (!lock_method->is_lock_supported()) { delete lock_method; lock_method = NULL; TRACE_RETURN(false); return false; } else { lock_commands.push_back(lock_method); TRACE_RETURN(true); return true; } } void System::init_DBus_lock_commands() { TRACE_ENTER("System::init_DBus_lock_commands"); if (session_connection) { // Unity: // - Gnome screensaver API + gnome-screensaver-command works, // - is going to decrease dependence and use of GNOME: // https://blueprints.launchpad.net/unity/+spec/client-1311-unity7-lockscreen // GNOME // https://people.gnome.org/~mccann/gnome-screensaver/docs/gnome-screensaver.html#gs-method-GetSessionIdle // - Gnome is now implementing the Freedesktop API, but incompletely: // https://bugzilla.gnome.org/show_bug.cgi?id=689225 // (look for "unimplemented" in the patch), the lock method is still unipmlemented // - therefore it is required to check the gnome API first. // WORKS: Ubuntu 12.04: GNOME 3 fallback, Unity add_DBus_lock_cmd("org.gnome.ScreenSaver", "/org/gnome/ScreenSaver", "org.gnome.ScreenSaver", "Lock", "GetActive"); // Cinnamon: https://github.com/linuxmint/cinnamon-screensaver/blob/master/doc/dbus-interface.html // Same api as GNOME, but with different name, add_DBus_lock_cmd("org.cinnamon.ScreenSaver", "/org/cinnamon/ScreenSaver", "org.cinnamon.ScreenSaver", "Lock", "GetActive"); // Mate: https://github.com/mate-desktop/mate-screensaver/blob/master/doc/dbus-interface.xml // Like GNOME add_DBus_lock_cmd("org.mate.ScreenSaver", "/org/mate/ScreenSaver", "org.mate.ScreenSaver", "Lock", "GetActive"); // The FreeDesktop API - the most important and most widely supported // LXDE: https://github.com/lxde/lxqt-powermanagement/blob/master/idleness/idlenesswatcherd.cpp // KDE: // https://projects.kde.org/projects/kde/kde-workspace/repository/revisions/master/entry/ksmserver/screenlocker/dbus/org.freedesktop.ScreenSaver.xml // - there have been claims that this does not work in some installations, but I was unable to find // any traces of this in git: // http://forum.kde.org/viewtopic.php?f=67&t=111003 // It was probably due to some upgrade problems (and/or a bug in KDE), // because in fresh OpenSuse 12.3 (from LiveCD) this works correctly. // Razor-QT: https://github.com/Razor-qt/razor-qt/blob/master/razorqt-screenlocker/src/razorscreenlocker.cpp // // The Freedesktop API that these DEs are implementing is being redrafted: // http://people.freedesktop.org/~hadess/idle-inhibition-spec/ // http://lists.freedesktop.org/pipermail/xdg/2012-November/012577.html // http://lists.freedesktop.org/pipermail/xdg/2013-September/012875.html // // the Lock method there is being removed (and not replaced with anything else). // Probably the DEs will support these APIs in the future in order not to break other software. // Is only partially implemented by GNOME, so GNOME has to go before // Works correctly on KDE4 (Ubuntu 12.04) add_DBus_lock_cmd("org.freedesktop.ScreenSaver", "/ScreenSaver", "org.freedesktop.ScreenSaver", "Lock", "GetActive"); // KDE - old screensaver API - partially verified both add_DBus_lock_cmd("org.kde.screensaver", "/ScreenSaver", "org.freedesktop.ScreenSaver", "Lock", "GetActive"); add_DBus_lock_cmd("org.kde.krunner", "/ScreenSaver", "org.freedesktop.ScreenSaver", "Lock", "GetActive"); // - there some accounts that when org.freedesktop.ScreenSaver does not work, this works: // qdbus org.kde.ksmserver /ScreenSaver Lock // but it is probably a side effect of the fact that implementation of org.kde.ksmserver // is in the same process as of org.freedesktop.ScreenSaver add_DBus_lock_cmd("org.kde.ksmserver", "/ScreenSaver", "org.freedesktop.ScreenSaver", "Lock", "GetActive"); // EFL: add_DBus_lock_cmd( "org.enlightenment.wm.service", "/org/enlightenment/wm/RemoteObject", "org.enlightenment.wm.Desktop", "Lock", NULL); } TRACE_EXIT(); } # endif // HAVE_DBUS void System::add_cmdline_lock_cmd(const char *command_name, const char *parameters, bool async) { TRACE_ENTER_MSG("System::add_cmdline_lock_cmd", command_name); IScreenLockMethod *lock_method = NULL; lock_method = new ScreenLockCommandline(command_name, parameters, async); if (!lock_method->is_lock_supported()) { delete lock_method; lock_method = NULL; TRACE_RETURN(false); } else { lock_commands.push_back(lock_method); TRACE_RETURN(true); } } void System::init_cmdline_lock_commands(const char *display) { TRACE_ENTER_MSG("System::init_cmdline_lock_commands", display); // Works: XFCE, i3, LXDE add_cmdline_lock_cmd("gnome-screensaver-command", "--lock", false); add_cmdline_lock_cmd("mate-screensaver-command", "--lock", false); add_cmdline_lock_cmd("enlightenment_remote", "-desktop-lock", false); add_cmdline_lock_cmd("xdg-screensaver", "lock", false); if (display != NULL) { char *cmd = g_strdup_printf("-display \"%s\" -lock", display); add_cmdline_lock_cmd("xscreensaver-command", cmd, false); g_free(cmd); cmd = NULL; } else { add_cmdline_lock_cmd("xscreensaver-command", "-lock", false); } // these two may call slock, which may be not user-friendly // add_cmdline_lock_cmd("xflock4", NULL, true); // add_cmdline_lock_cmd("lxlock", NULL, true); if (display != NULL) { char *cmd = g_strdup_printf("-display \"%s\"", display); add_cmdline_lock_cmd("xlock", cmd, true); g_free(cmd); cmd = NULL; } else { add_cmdline_lock_cmd("xlock", NULL, true); } TRACE_EXIT(); } #endif // PLATFORM_OS_UNIX bool System::lock_screen() { TRACE_ENTER("System::lock"); for (std::vector::iterator iter = lock_commands.begin(); iter != lock_commands.end(); ++iter) { if ((*iter)->lock()) { TRACE_RETURN(true); return true; } } TRACE_RETURN(false); return false; } #if defined(PLATFORM_OS_UNIX) && defined(HAVE_DBUS) void System::add_DBus_system_state_command(ISystemStateChangeMethod *method) { TRACE_ENTER("System::add_DBus_system_state_command"); if (method->canDoAnything()) { system_state_commands.push_back(method); TRACE_MSG("DBus service is useful"); } else { delete method; method = NULL; TRACE_MSG("DBus service is useless"); } TRACE_EXIT(); } void System::init_DBus_system_state_commands() { TRACE_ENTER("System::init_DBus_system_state_commands"); if (system_connection) { // These three DBus interfaces are too diverse // to implement support for them in one class // Logind is the future so it goes first add_DBus_system_state_command(new SystemStateChangeLogind(system_connection)); add_DBus_system_state_command(new SystemStateChangeUPower(system_connection)); // ConsoleKit is deprecated so goes last add_DBus_system_state_command(new SystemStateChangeConsolekit(system_connection)); // Other interfaces: // GNOME: // - there is GNOME Session API: // https://git.gnome.org/browse/gnome-session/tree/gnome-session/org.gnome.SessionManager.xml // But shutdown/reboot require confirmation, so this is unusable to us, // // KDE: // - there is some support, but probably not worth implementing it // http://askubuntu.com/questions/1871/how-can-i-safely-shutdown-reboot-logout-kde-from-the-command-line // Windows: // http://www.programmingsimplified.com/c-program-shutdown-computer // winxp // system("C:\\WINDOWS\\System32\\shutdown -s"); // win7 // system("C:\\WINDOWS\\System32\\shutdown /s"); # undef ADD_DBUS_SERVICE } TRACE_EXIT(); } #endif // PLATFORM_OS_UNIX bool System::execute(SystemOperation::SystemOperationType type) { TRACE_ENTER("System::execute"); if (type == SystemOperation::SYSTEM_OPERATION_NONE) { return false; } else if (type == SystemOperation::SYSTEM_OPERATION_LOCK_SCREEN) { return lock_screen(); } else { for (std::vector::iterator iter = system_state_commands.begin(); iter != system_state_commands.end(); ++iter) { bool ret = false; switch (type) { case SystemOperation::SYSTEM_OPERATION_SHUTDOWN: ret = ((*iter)->shutdown()); break; case SystemOperation::SYSTEM_OPERATION_SUSPEND: ret = ((*iter)->suspend()); break; case SystemOperation::SYSTEM_OPERATION_HIBERNATE: ret = ((*iter)->hibernate()); break; case SystemOperation::SYSTEM_OPERATION_SUSPEND_HYBRID: ret = ((*iter)->suspendHybrid()); break; default: throw "System::execute: Unknown system operation"; }; if (ret) { TRACE_RETURN(true); return true; } } } TRACE_RETURN(false); return false; } void System::init( #if defined(PLATFORM_OS_UNIX) const char *display #endif ) { TRACE_ENTER("System::init"); #if defined(PLATFORM_OS_UNIX) # if defined(HAVE_DBUS) init_DBus(); init_DBus_lock_commands(); init_DBus_system_state_commands(); # endif init_cmdline_lock_commands(display); #elif defined(PLATFORM_OS_WINDOWS) IScreenLockMethod *winLock = new W32LockScreen(); if (winLock->is_lock_supported()) { lock_commands.push_back(winLock); } else { delete winLock; winLock = NULL; } ISystemStateChangeMethod *winShut = new W32Shutdown(); if (winShut->canShutdown()) { system_state_commands.push_back(winShut); } else { delete winShut; winShut = NULL; } #endif // defined (PLATFORM_OS_WINDOWS) if (is_lockable()) { supported_system_operations.push_back(SystemOperation("Lock", SystemOperation::SYSTEM_OPERATION_LOCK_SCREEN)); } for (std::vector::iterator iter = system_state_commands.begin(); iter != system_state_commands.end(); ++iter) { if ((*iter)->canShutdown()) { supported_system_operations.push_back(SystemOperation("Shutdown", SystemOperation::SYSTEM_OPERATION_SHUTDOWN)); } if ((*iter)->canSuspend()) { supported_system_operations.push_back(SystemOperation("Suspend", SystemOperation::SYSTEM_OPERATION_SUSPEND)); } if ((*iter)->canHibernate()) { supported_system_operations.push_back(SystemOperation("Hibernate", SystemOperation::SYSTEM_OPERATION_HIBERNATE)); } if ((*iter)->canSuspendHybrid()) { supported_system_operations.push_back( SystemOperation("Suspend hybrid", SystemOperation::SYSTEM_OPERATION_SUSPEND_HYBRID)); } } std::sort(supported_system_operations.begin(), supported_system_operations.end()); TRACE_EXIT(); } void System::clear() { for (std::vector::iterator iter = lock_commands.begin(); iter != lock_commands.end(); ++iter) { delete *iter; } lock_commands.clear(); for (std::vector::iterator iter = system_state_commands.begin(); iter != system_state_commands.end(); ++iter) { delete *iter; } system_state_commands.clear(); #if defined(HAVE_DBUS) // we shouldn't call g_dbus_connection_close_sync here: // http://comments.gmane.org/gmane.comp.freedesktop.dbus/15286 g_object_unref(session_connection); g_object_unref(session_connection); #endif } workrave-1.10.50/frontend/common/src/macos/0000755000000000000000000000000014221624437020521 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/src/macos/Makefile.in0000644000000000000000000006627614221624202022575 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/src/macos ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_common_macos_la_LIBADD = am__libworkrave_frontend_common_macos_la_SOURCES_DIST = Sound.cc \ MacOSSoundPlayer.cc @PLATFORM_OS_MACOS_TRUE@am_libworkrave_frontend_common_macos_la_OBJECTS = libworkrave_frontend_common_macos_la-Sound.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo libworkrave_frontend_common_macos_la_OBJECTS = \ $(am_libworkrave_frontend_common_macos_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_common_macos_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libworkrave_frontend_common_macos_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_MACOS_TRUE@am_libworkrave_frontend_common_macos_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Plo \ ./$(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_frontend_common_macos_la_SOURCES) DIST_SOURCES = \ $(am__libworkrave_frontend_common_macos_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @PLATFORM_OS_MACOS_TRUE@noinst_LTLIBRARIES = libworkrave-frontend-common-macos.la @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_common_macos_la_SOURCES = \ @PLATFORM_OS_MACOS_TRUE@ Sound.cc \ @PLATFORM_OS_MACOS_TRUE@ MacOSSoundPlayer.cc @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_common_macos_la_CXXFLAGS = \ @PLATFORM_OS_MACOS_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @PLATFORM_OS_MACOS_TRUE@ -D_XOPEN_SOURCE=600 \ @PLATFORM_OS_MACOS_TRUE@ -W -I$(top_srcdir)/frontend/common/src -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_MACOS_TRUE@ -x objective-c++ \ @PLATFORM_OS_MACOS_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ @PLATFORM_OS_MACOS_TRUE@ @GTK_CFLAGS@ @GLIB_CFLAGS@ all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/src/macos/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/src/macos/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-common-macos.la: $(libworkrave_frontend_common_macos_la_OBJECTS) $(libworkrave_frontend_common_macos_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_common_macos_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_common_macos_la_LINK) $(am_libworkrave_frontend_common_macos_la_rpath) $(libworkrave_frontend_common_macos_la_OBJECTS) $(libworkrave_frontend_common_macos_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_common_macos_la-Sound.lo: Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_macos_la-Sound.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Tpo -c -o libworkrave_frontend_common_macos_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Tpo $(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Sound.cc' object='libworkrave_frontend_common_macos_la-Sound.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_macos_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo: MacOSSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Tpo -c -o libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo `test -f 'MacOSSoundPlayer.cc' || echo '$(srcdir)/'`MacOSSoundPlayer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Tpo $(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSSoundPlayer.cc' object='libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_macos_la-MacOSSoundPlayer.lo `test -f 'MacOSSoundPlayer.cc' || echo '$(srcdir)/'`MacOSSoundPlayer.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Plo -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 -f ./$(DEPDIR)/libworkrave_frontend_common_macos_la-MacOSSoundPlayer.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_common_macos_la-Sound.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/src/macos/MacOSSoundPlayer.hh0000644000175100001710000000246314221624107023100 0ustar00gdm00000000000000// MacOSSoundPlayer.hh // // Copyright (C) 2007, 2008, 2009, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSSOUNDPLAYER_HH #define MacOSSOUNDPLAYER_HH #include "ISoundDriver.hh" #include "Thread.hh" #ifdef __OBJC__ # import "Foundation/Foundation.h" #endif class MacOSSoundPlayer : public ISoundDriver , public Thread { public: MacOSSoundPlayer(); virtual ~MacOSSoundPlayer(); void init(ISoundDriverEvents *){}; bool capability(SoundCapability cap); void play_sound(std::string wavfile); private: void run(); const char *wav_file; #ifdef __OBJC__ NSMutableDictionary *soundDictionary; #endif }; #endif // MacOSSOUNDPLAYER_HH workrave-1.10.50/frontend/common/src/macos/MacOSSoundPlayer.cc0000644000175100001710000000353114221624107023063 0ustar00gdm00000000000000// MacOSSoundPlayer.cc --- Sound player // // Copyright (C) 2002 - 2008, 2010 Raymond Penners & Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include "MacOSSoundPlayer.hh" #include "SoundPlayer.hh" #include "Util.hh" #import MacOSSoundPlayer::MacOSSoundPlayer() { soundDictionary = [NSMutableDictionary dictionaryWithCapacity:10]; } MacOSSoundPlayer::~MacOSSoundPlayer() { [soundDictionary removeAllObjects]; [soundDictionary release]; } bool MacOSSoundPlayer::capability(SoundCapability cap) { if (cap == SOUND_CAP_EDIT) { return true; } return false; } void MacOSSoundPlayer::play_sound(string file) { if (wav_file == NULL) { wav_file = strdup(file.c_str()); run(); } } void MacOSSoundPlayer::run() { NSString *filename = [NSString stringWithUTF8String:wav_file]; NSSound *sound = [soundDictionary objectForKey:filename]; if (sound == nil) { sound = [[NSSound alloc] initWithContentsOfFile:filename byReference:NO]; [soundDictionary setObject:sound forKey:filename]; } [sound stop]; [sound play]; free((void *)wav_file); wav_file = NULL; } workrave-1.10.50/frontend/common/src/macos/Sound.cc0000644000175100001710000000163114221624107021022 0ustar00gdm00000000000000// Sound.cc --- Sound class // // Copyright (C) 2002, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "Sound.hh" void Sound::beep(int freq, int millis) { (void)freq; (void)millis; } workrave-1.10.50/frontend/common/src/macos/Makefile.am0000644000175100001710000000146114221624107021460 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if PLATFORM_OS_MACOS noinst_LTLIBRARIES = libworkrave-frontend-common-macos.la libworkrave_frontend_common_macos_la_SOURCES = \ Sound.cc \ MacOSSoundPlayer.cc libworkrave_frontend_common_macos_la_CXXFLAGS = \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 \ -W -I$(top_srcdir)/frontend/common/src -I$(top_srcdir)/frontend/common/include \ -x objective-c++ \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ @GTK_CFLAGS@ @GLIB_CFLAGS@ endifworkrave-1.10.50/frontend/common/src/TimerBoxControl.cc0000644000175100001710000003245014221624107021725 0ustar00gdm00000000000000// TimerBoxControl.cc --- Timers Widgets // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_UNISTD_H # include #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include "nls.h" #include "debug.hh" #include "TimerBoxControl.hh" #include "ITimeBar.hh" #include "Util.hh" #include "Text.hh" #include "CoreFactory.hh" #include "CoreConfig.hh" #include "IBreak.hh" #include "IConfigurator.hh" using namespace workrave; using namespace std; const std::string TimerBoxControl::CFG_KEY_TIMERBOX = "gui/"; const std::string TimerBoxControl::CFG_KEY_TIMERBOX_CYCLE_TIME = "/cycle_time"; const std::string TimerBoxControl::CFG_KEY_TIMERBOX_ENABLED = "/enabled"; const std::string TimerBoxControl::CFG_KEY_TIMERBOX_POSITION = "/position"; const std::string TimerBoxControl::CFG_KEY_TIMERBOX_FLAGS = "/flags"; const std::string TimerBoxControl::CFG_KEY_TIMERBOX_IMMINENT = "/imminent"; //! Constructor. TimerBoxControl::TimerBoxControl(std::string n, ITimerBoxView &v) : view(&v) , cycle_time(10) , name(n) , force_duration(0) , force_empty(false) { init(); } //! Destructor. TimerBoxControl::~TimerBoxControl() { IConfigurator *config = CoreFactory::get_configurator(); config->remove_listener(this); } //! Updates the timerbox. void TimerBoxControl::update() { ICore *core = CoreFactory::get_core(); OperationMode mode = core->get_operation_mode(); if (reconfigure) { // Configuration was changed. reinit. init_table(); operation_mode = mode; init_icon(); reconfigure = false; } else { if (force_duration == 0) { time_t t = time(NULL); if (t % cycle_time == 0) { init_table(); cycle_slots(); } } else { force_duration--; } } // Update visual feedback of operating mode. if (mode != operation_mode) { operation_mode = mode; init_icon(); } // Update the timer widgets. update_widgets(); view->update_view(); } void TimerBoxControl::force_cycle() { force_duration = cycle_time; init_table(); cycle_slots(); } void TimerBoxControl::set_force_empty(bool s) { force_empty = s; } //! Initializes the timerbox. void TimerBoxControl::init() { TRACE_ENTER("TimerBoxControl::init"); // Listen for configugration changes. IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(TimerBoxControl::CFG_KEY_TIMERBOX + name, this); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { config->add_listener(CoreConfig::CFG_KEY_BREAK_ENABLED % BreakId(i), this); break_position[i] = i; break_flags[i] = 0; break_imminent_time[i] = 0; for (int j = 0; j < BREAK_ID_SIZEOF; j++) { break_slots[i][j] = -1; } break_slot_cycle[i] = 0; } // Load the configuration read_configuration(); reconfigure = true; TRACE_EXIT(); } //! Updates the main window. void TimerBoxControl::update_widgets() { for (int count = 0; count < BREAK_ID_SIZEOF; count++) { ICore *core = CoreFactory::get_core(); IBreak *b = core->get_break((BreakId)count); std::string text; ITimeBar::ColorId primary_color; int primary_val, primary_max; ITimeBar::ColorId secondary_color; int secondary_val, secondary_max; if (b == NULL) { continue; } // Collect some data. time_t maxActiveTime = b->get_limit(); time_t activeTime = b->get_elapsed_time(); time_t breakDuration = b->get_auto_reset(); time_t idleTime = b->get_elapsed_idle_time(); bool overdue = (maxActiveTime < activeTime); // Set the text if (b->is_limit_enabled() && maxActiveTime != 0) { text = Text::time_to_string(maxActiveTime - activeTime); } else { text = Text::time_to_string(activeTime); } // And set the bar. secondary_val = secondary_max = 0; secondary_color = ITimeBar::COLOR_ID_INACTIVE; // Timer is running, show elapsed time. primary_val = (int)activeTime; primary_max = (int)maxActiveTime; primary_color = overdue ? ITimeBar::COLOR_ID_OVERDUE : ITimeBar::COLOR_ID_ACTIVE; if (b->is_auto_reset_enabled() && breakDuration != 0) { // resting. secondary_color = ITimeBar::COLOR_ID_INACTIVE; secondary_val = (int)idleTime; secondary_max = (int)breakDuration; } view->set_time_bar( BreakId(count), text, primary_color, primary_val, primary_max, secondary_color, secondary_val, secondary_max); } } void TimerBoxControl::init_icon() { switch (operation_mode) { case OPERATION_MODE_NORMAL: view->set_icon(ITimerBoxView::ICON_NORMAL); break; case OPERATION_MODE_SUSPENDED: view->set_icon(ITimerBoxView::ICON_SUSPENDED); break; case OPERATION_MODE_QUIET: view->set_icon(ITimerBoxView::ICON_QUIET); break; default: break; } } //! Initializes the applet. void TimerBoxControl::init_table() { TRACE_ENTER("TimerBoxControl::init_table"); if (force_empty) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { view->set_slot(BREAK_ID_NONE, i); } } else { // Determine what breaks to show. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { init_slot(i); } // New content. int slot = 0; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { int cycle = break_slot_cycle[i]; int id = break_slots[i][cycle]; // break id if (id != -1) { view->set_slot(BreakId(id), slot); slot++; } } for (int i = slot; i < BREAK_ID_SIZEOF; i++) { view->set_slot(BREAK_ID_NONE, i); } } TRACE_EXIT(); } //! Compute what break to show on the specified location. void TimerBoxControl::init_slot(int slot) { // TRACE_ENTER_MSG("TimerBoxControl::init_slot", slot); int count = 0; int breaks_id[BREAK_ID_SIZEOF]; // Collect all timers for this slot. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { ICore *core = CoreFactory::get_core(); IBreak *b = core->get_break(BreakId(i)); bool on = b->is_enabled(); if (on && break_position[i] == slot && !(break_flags[i] & BREAK_HIDE)) { breaks_id[count] = i; break_flags[i] &= ~BREAK_SKIP; count++; } } // Compute timer that will elapse first. time_t first = 0; int first_id = -1; for (int i = 0; i < count; i++) { int id = breaks_id[i]; int flags = break_flags[id]; ICore *core = CoreFactory::get_core(); IBreak *b = core->get_break((BreakId)i); time_t time_left = b->get_limit() - b->get_elapsed_time(); // Exclude break if not imminent. if (flags & BREAK_WHEN_IMMINENT && time_left > break_imminent_time[id] && force_duration == 0) { break_flags[id] |= BREAK_SKIP; } // update first imminent timer. if (!(flags & BREAK_SKIP) && (first_id == -1 || time_left < first)) { first_id = id; first = time_left; } } // Exclude break if not first. for (int i = 0; i < count; i++) { int id = breaks_id[i]; int flags = break_flags[id]; if (!(flags & BREAK_SKIP)) { if (flags & BREAK_WHEN_FIRST && first_id != id && force_duration == 0) { break_flags[id] |= BREAK_SKIP; } } } // Exclude breaks if not exclusive. bool have_one = false; int breaks_left = 0; for (int i = 0; i < count; i++) { int id = breaks_id[i]; int flags = break_flags[id]; if (!(flags & BREAK_SKIP)) { if (flags & BREAK_EXCLUSIVE && have_one && force_duration == 0) { break_flags[id] |= BREAK_SKIP; } have_one = true; } if (!(flags & BREAK_SKIP)) { breaks_left++; } } if (breaks_left == 0) { for (int i = 0; i < count; i++) { int id = breaks_id[i]; int flags = break_flags[id]; if (flags & BREAK_DEFAULT && flags & BREAK_SKIP) { break_flags[id] &= ~BREAK_SKIP; breaks_left = 1; break; } } } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { break_slots[slot][i] = -1; } int new_count = 0; for (int i = 0; i < count; i++) { int id = breaks_id[i]; int flags = break_flags[id]; if (!(flags & BREAK_SKIP)) { break_slots[slot][new_count] = id; new_count++; } } } //! Cycles through the breaks. void TimerBoxControl::cycle_slots() { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { break_slot_cycle[i]++; if (break_slot_cycle[i] >= BREAK_ID_SIZEOF || break_slots[i][break_slot_cycle[i]] == -1) { break_slot_cycle[i] = 0; } } } //! Reads the applet configuration. void TimerBoxControl::read_configuration() { TRACE_ENTER("TimerBoxControl::read_configuration"); cycle_time = get_cycle_time(name); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakId bid = (BreakId)i; break_position[i] = get_timer_slot(name, bid); break_flags[i] = get_timer_flags(name, bid); break_imminent_time[i] = get_timer_imminent_time(name, bid); } TRACE_EXIT(); } //! Callback that the configuration has changed. void TimerBoxControl::config_changed_notify(const string &key) { (void)key; read_configuration(); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { break_slot_cycle[i] = 0; } reconfigure = true; } int TimerBoxControl::get_cycle_time(string name) { int ret; if (!CoreFactory::get_configurator()->get_value( TimerBoxControl::CFG_KEY_TIMERBOX + name + TimerBoxControl::CFG_KEY_TIMERBOX_CYCLE_TIME, ret)) { ret = 10; } return ret; } void TimerBoxControl::set_cycle_time(string name, int time) { CoreFactory::get_configurator()->set_value( TimerBoxControl::CFG_KEY_TIMERBOX + name + TimerBoxControl::CFG_KEY_TIMERBOX_CYCLE_TIME, time); } const string TimerBoxControl::get_timer_config_key(string name, BreakId timer, const string &key) { ICore *core = CoreFactory::get_core(); IBreak *break_data = core->get_break(BreakId(timer)); return string(CFG_KEY_TIMERBOX) + name + "/" + break_data->get_name() + key; } int TimerBoxControl::get_timer_imminent_time(string name, BreakId timer) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_IMMINENT); int ret; if (!CoreFactory::get_configurator()->get_value(key, ret)) { ret = 30; } return ret; } void TimerBoxControl::set_timer_imminent_time(string name, BreakId timer, int time) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_IMMINENT); CoreFactory::get_configurator()->set_value(key, time); } int TimerBoxControl::get_timer_slot(string name, BreakId timer) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_POSITION); int ret; if (!CoreFactory::get_configurator()->get_value(key, ret)) { if (name == "applet") { // All in one slot is probably the best default since we cannot assume // any users panel is large enough to hold all timers. ret = 0; } else { ret = timer; } } return ret; } void TimerBoxControl::set_timer_slot(string name, BreakId timer, int slot) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_POSITION); CoreFactory::get_configurator()->set_value(key, slot); } int TimerBoxControl::get_timer_flags(string name, BreakId timer) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_FLAGS); int ret; if (!CoreFactory::get_configurator()->get_value(key, ret)) { ret = 0; } return ret; } void TimerBoxControl::set_timer_flags(string name, BreakId timer, int flags) { const string key = get_timer_config_key(name, timer, CFG_KEY_TIMERBOX_FLAGS); CoreFactory::get_configurator()->set_value(key, flags); } bool TimerBoxControl::is_enabled(string name) { bool ret = true; if (!CoreFactory::get_configurator()->get_value(CFG_KEY_TIMERBOX + name + CFG_KEY_TIMERBOX_ENABLED, ret)) { ret = true; } return ret; } void TimerBoxControl::set_enabled(string name, bool enabled) { CoreFactory::get_configurator()->set_value(CFG_KEY_TIMERBOX + name + CFG_KEY_TIMERBOX_ENABLED, enabled); } workrave-1.10.50/frontend/common/src/SystemStateChangeConsolekit.cc0000644000175100001710000000331714221624107024261 0ustar00gdm00000000000000/* * SystemStateChangeConsolekit.cc * * Created on: 16 lut 2014 * Author: mateusz */ #include "SystemStateChangeConsolekit.hh" #ifdef HAVE_GLIB # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #include #include "debug.hh" const char *SystemStateChangeConsolekit::dbus_name = "org.freedesktop.ConsoleKit"; SystemStateChangeConsolekit::SystemStateChangeConsolekit(GDBusConnection *connection) { TRACE_ENTER("SystemStateChangeConsolekit::SystemStateChangeConsolekit"); proxy.init_with_connection(connection, dbus_name, "/org/freedesktop/ConsoleKit/Manager", "org.freedesktop.ConsoleKit.Manager", static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS | G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START)); if (!proxy.is_valid()) { can_shutdown = false; } else { GVariant *result; if (!proxy.call_method("CanStop", NULL, &result)) { TRACE_MSG(false); can_shutdown = false; } else { gboolean r2; g_variant_get(result, "(b)", &r2); g_variant_unref(result); TRACE_MSG(r2); can_shutdown = (r2 == TRUE); } } TRACE_EXIT(); } bool SystemStateChangeConsolekit::shutdown() { TRACE_ENTER("SystemStateChangeConsolekit::shutdown"); bool r = proxy.call_method("Stop", NULL, NULL); TRACE_RETURN(r); return r; } workrave-1.10.50/frontend/common/src/SystemStateChangeConsolekit.hh0000644000175100001710000000311414221624107024266 0ustar00gdm00000000000000// SystemStateChangeConsolekit.hh -- shutdown using ConsoleKit // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef SYSTEMSTATECHANGECONSOLEKIT_HH_ #define SYSTEMSTATECHANGECONSOLEKIT_HH_ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DBusProxy.hh" #include "ISystemStateChangeMethod.hh" // - ConsoleKit: // - http://www.freedesktop.org/software/ConsoleKit/doc/ConsoleKit.html#dbus-reference // - only restart / shutdown, // - it is literally dead as Ubuntu is switching to logind for 14.04 class SystemStateChangeConsolekit : public ISystemStateChangeMethod { public: static const char *dbus_name; SystemStateChangeConsolekit(GDBusConnection *connection); virtual ~SystemStateChangeConsolekit(){}; virtual bool shutdown(); virtual bool canShutdown() { return can_shutdown; } private: bool can_shutdown; DBusProxy proxy; }; #endif /* SYSTEMSTATECHANGECONSOLEKIT_HH_ */ workrave-1.10.50/frontend/common/src/SoundPlayer.cc0000644000175100001710000004656714221624107021116 0ustar00gdm00000000000000// SoundPlayer.cc --- Sound player // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "nls.h" #ifdef HAVE_REALPATH # include # include #endif #include #include #include "Thread.hh" #include "Sound.hh" #include "SoundPlayer.hh" #include "ISoundDriver.hh" #include "IMixer.hh" #include "IConfigurator.hh" #include "CoreFactory.hh" #include "Util.hh" #include "StringUtil.hh" #if defined HAVE_GSTREAMER # include "GstSoundPlayer.hh" #elif defined PLATFORM_OS_UNIX # include #elif defined PLATFORM_OS_WINDOWS # include # include "W32SoundPlayer.hh" # include "W32DirectSoundPlayer.hh" # include "W32Mixer.hh" #elif defined PLATFORM_OS_MACOS # include "MacOSSoundPlayer.hh" #endif #if defined HAVE_PULSE # include "PulseMixer.hh" #endif #include const char *SoundPlayer::CFG_KEY_SOUND_ENABLED = "sound/enabled"; const char *SoundPlayer::CFG_KEY_SOUND_DEVICE = "sound/device"; const char *SoundPlayer::CFG_KEY_SOUND_VOLUME = "sound/volume"; const char *SoundPlayer::CFG_KEY_SOUND_MUTE = "sound/mute"; const char *SoundPlayer::CFG_KEY_SOUND_EVENTS = "sound/events/"; const char *SoundPlayer::CFG_KEY_SOUND_EVENTS_ENABLED = "_enabled"; using namespace workrave; using namespace std; SoundPlayer::SoundRegistry SoundPlayer::sound_registry[] = { {"WorkraveBreakPrelude", "break_prelude", "break-prelude.wav", _("Break prompt")}, {"WorkraveBreakIgnored", "break_ignored", "break-ignored.wav", _("Break ignored")}, {"WorkraveRestBreakStarted", "rest_break_started", "rest-break-started.wav", _("Rest break started")}, {"WorkraveRestBreakEnded", "rest_break_ended", "rest-break-ended.wav", _("Rest break ended")}, {"WorkraveMicroBreakStarted", "micro_break_started", "micro-break-started.wav", _("Micro-break started")}, {"WorkraveMicroBreakEnded", "micro_break_ended", "micro-break-ended.wav", _("Micro-break ended")}, {"WorkraveDailyLimit", "daily_limit", "daily-limit.wav", _("Daily limit")}, {"WorkraveExerciseEnded", "exercise_ended", "exercise-ended.wav", _("Exercise ended")}, {"WorkraveExercisesEnded", "exercises_ended", "exercises-ended.wav", _("Exercises ended")}, {"WorkraveExerciseStep", "exercise_step", "exercise-step.wav", _("Exercise change")}, }; /********************************************************************** * PC-Speaker **********************************************************************/ static short prelude_beeps[][2] = {{250, 50}, {300, 50}, {0, 0}}; static short micro_break_start_beeps[][2] = { {320, 70}, {350, 70}, {0, 0}, }; static short micro_break_end_beeps[][2] = { {350, 70}, {320, 70}, {0, 0}, }; static short rest_break_start_beeps[][2] = {{160, 70}, {180, 70}, {200, 70}, {230, 70}, {260, 70}, {290, 70}, {320, 70}, {350, 70}, {0, 0}}; static short rest_break_end_beeps[][2] = {{350, 70}, {320, 70}, {290, 70}, {260, 70}, {230, 70}, {200, 70}, {180, 70}, {160, 70}, {0, 0}}; static short break_ignore_beeps[][2] = {{60, 250}, {50, 400}, {0, 0}}; static short daily_limit_beeps[][2] = {{80, 200}, {70, 200}, {60, 200}, {50, 400}, {0, 0}}; static short exercise_ended_beeps[][2] = { {320, 70}, {350, 70}, {0, 0}, }; static short exercises_ended_beeps[][2] = { {350, 70}, {320, 70}, {0, 0}, }; static short exercises_step_beeps[][2] = { {320, 70}, {0, 0}, }; static short (*beep_map[])[2] = {prelude_beeps, break_ignore_beeps, rest_break_start_beeps, rest_break_end_beeps, micro_break_start_beeps, micro_break_end_beeps, daily_limit_beeps, exercise_ended_beeps, exercises_ended_beeps, exercises_step_beeps}; class SpeakerPlayer : public Thread { public: SpeakerPlayer(short (*beeps)[2]); void run(); private: short (*beeps)[2]; }; SpeakerPlayer::SpeakerPlayer(short (*b)[2]) : Thread(true) { beeps = b; } void SpeakerPlayer::run() { TRACE_ENTER("SpeakerPlayer::run"); #ifdef PLATFORM_OS_WINDOWS // Windows 95 Beep() only beeps, it ignores frequency & duration parameters. // So, in the case of W95 do not relay on Sound::beep() OSVERSIONINFO osvi; osvi.dwOSVersionInfoSize = sizeof(osvi); if (!GetVersionEx(&osvi)) return; if (osvi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS && osvi.dwMinorVersion == 0) { ::Beep(256, 256); return; } #endif short(*b)[2]; b = beeps; #ifdef PLATFORM_OS_UNIX Display *display = XOpenDisplay(gdk_display_get_name(gdk_display_get_default())); if (display) { #endif while (b[0][0]) { #ifdef PLATFORM_OS_UNIX Sound::beep(display, b[0][0], b[0][1]); #else Sound::beep(b[0][0], b[0][1]); #endif b++; } #ifdef PLATFORM_OS_UNIX XCloseDisplay(display); } #endif TRACE_EXIT(); } /********************************************************************** * SoundPlayer **********************************************************************/ SoundPlayer::SoundPlayer() { driver = #if defined HAVE_GSTREAMER new GstSoundPlayer() #elif defined PLATFORM_OS_WINDOWS new W32DirectSoundPlayer() #elif defined PLATFORM_OS_MACOS new MacOSSoundPlayer() #else # warning Sound card support disabled. NULL #endif ; mixer = #if defined HAVE_PULSE new PulseMixer() #elif defined PLATFORM_OS_WINDOWS new W32Mixer() #else NULL #endif ; must_unmute = false; delayed_mute = false; #ifdef PLATFORM_OS_WINDOWS win32_remove_deprecated_appevents(); #endif } SoundPlayer::~SoundPlayer() { delete driver; } void SoundPlayer::init() { if (driver != NULL) { driver->init(this); } if (mixer != NULL) { mixer->init(); } int volume = 0; if (!CoreFactory::get_configurator()->get_value(CFG_KEY_SOUND_VOLUME, volume)) { // Volume value was not found, so set default volume @100. // This doesn't belong here if Workrave won't honor it on all platforms. CoreFactory::get_configurator()->set_value(CFG_KEY_SOUND_VOLUME, (int)100); } // first call will set enabled if no setting not found is_enabled(); // first call will set device to soundcard if no setting not found get_device(); register_sound_events(); } void SoundPlayer::register_sound_events(string theme) { TRACE_ENTER_MSG("SoundPlayer::register_sound_events", theme); if (theme == "") { theme = "default"; } gchar *path = g_build_filename(theme.c_str(), "soundtheme", NULL); if (path != NULL) { string file = Util::complete_directory(path, Util::SEARCH_PATH_SOUNDS); TRACE_MSG(file); Theme theme; load_sound_theme(file, theme); activate_theme(theme, false); g_free(path); } TRACE_EXIT(); } void SoundPlayer::activate_theme(const Theme &theme, bool force) { int idx = 0; for (vector::const_iterator it = theme.files.begin(); it != theme.files.end() && idx < SOUND_MAX; it++) { const string &filename = *it; bool enabled = false; bool valid = get_sound_enabled((SoundEvent)idx, enabled); if (!valid) { SoundPlayer::set_sound_enabled((SoundEvent)idx, true); } string current_filename; valid = get_sound_wav_file((SoundEvent)idx, current_filename); if (valid && !g_file_test(current_filename.c_str(), G_FILE_TEST_IS_REGULAR)) { valid = false; } if (!valid || force) { set_sound_wav_file((SoundEvent)idx, filename); } idx++; } } void SoundPlayer::load_sound_theme(const string &themefilename, Theme &theme) { TRACE_ENTER_MSG("SoundPlayer::load_sound_theme", themefilename); gboolean r = TRUE; bool is_current = true; GKeyFile *config = g_key_file_new(); r = g_key_file_load_from_file(config, themefilename.c_str(), G_KEY_FILE_KEEP_COMMENTS, NULL); TRACE_MSG("load " << r); if (r) { gchar *themedir = g_path_get_dirname(themefilename.c_str()); TRACE_MSG(themedir); char *desc = g_key_file_get_string(config, "general", "description", NULL); if (desc != NULL) { theme.description = desc; g_free(desc); } int size = sizeof(sound_registry) / sizeof(sound_registry[0]); for (int i = 0; i < size; i++) { SoundRegistry *snd = &sound_registry[i]; char *sound_pathname = NULL; char *filename = g_key_file_get_string(config, snd->id, "file", NULL); if (filename != NULL) { gchar *pathname = g_build_filename(themedir, filename, NULL); if (pathname != NULL) { #ifdef HAVE_REALPATH sound_pathname = realpath(pathname, NULL); if (sound_pathname == NULL) { sound_pathname = g_strdup(pathname); } #else sound_pathname = g_strdup(pathname); #endif if (is_current) { string current = ""; get_sound_wav_file((SoundEvent)i, current); TRACE_MSG("current =" << current); if (current != string(sound_pathname)) { is_current = false; } } g_free(pathname); } g_free(filename); } TRACE_MSG((sound_pathname != NULL ? sound_pathname : "No Sound")); theme.files.push_back((sound_pathname != NULL ? sound_pathname : "")); g_free(sound_pathname); } theme.active = is_current; g_free(themedir); } g_key_file_free(config); TRACE_MSG(is_current); TRACE_EXIT(); } void SoundPlayer::get_sound_themes(std::vector &themes) { TRACE_ENTER("SoundPlayer::get_sound_themes"); set searchpath = Util::get_search_path(Util::SEARCH_PATH_SOUNDS); bool has_active = false; for (set::iterator it = searchpath.begin(); it != searchpath.end(); it++) { GDir *dir = g_dir_open(it->c_str(), 0, NULL); if (dir != NULL) { const char *file; while ((file = g_dir_read_name(dir)) != NULL) { gchar *test_path = g_build_filename(it->c_str(), file, NULL); if (test_path != NULL && g_file_test(test_path, G_FILE_TEST_IS_DIR)) { char *path = g_build_filename(it->c_str(), file, "soundtheme", NULL); if (path != NULL && g_file_test(path, G_FILE_TEST_IS_REGULAR)) { Theme theme; load_sound_theme(path, theme); themes.push_back(theme); if (theme.active) { has_active = true; } } g_free(path); } g_free(test_path); } g_dir_close(dir); } } if (!has_active) { Theme active_theme; active_theme.active = true; active_theme.description = _("Custom"); bool valid = true; for (unsigned int i = 0; valid && i < sizeof(sound_registry) / sizeof(sound_registry[0]); i++) { string file; valid = get_sound_wav_file((SoundEvent)i, file); if (valid && file != "") { active_theme.files.push_back(file); } } if (valid) { themes.push_back(active_theme); } } TRACE_EXIT(); } void SoundPlayer::play_sound(SoundEvent snd, bool mute_after_playback) { TRACE_ENTER_MSG("SoundPlayer::play_sound ", snd << " " << mute_after_playback); if (is_enabled() && snd >= SOUND_MIN && snd < SOUND_MAX) { bool enabled = false; bool valid = SoundPlayer::get_sound_enabled(snd, enabled); if (valid && enabled) { delayed_mute = false; if (mute_after_playback && mixer != NULL && driver != NULL && driver->capability(SOUND_CAP_EOS_EVENT)) { delayed_mute = true; } if (get_device() == DEVICE_SOUNDCARD && driver != NULL) { string filename; bool valid = SoundPlayer::get_sound_wav_file(snd, filename); if (valid) { driver->play_sound(filename); } else { delayed_mute = false; } } else { Thread *t = new SpeakerPlayer(beep_map[snd]); t->start(); } } } TRACE_EXIT(); } void SoundPlayer::play_sound(string wavfile) { TRACE_ENTER("SoundPlayer::play_sound"); if (is_enabled()) { if (get_device() == DEVICE_SOUNDCARD && driver != NULL) { driver->play_sound(wavfile); } } TRACE_EXIT(); } bool SoundPlayer::is_enabled() { bool b; bool rc; b = CoreFactory::get_configurator()->get_value(CFG_KEY_SOUND_ENABLED, rc); if (!b) { rc = true; set_enabled(true); } return rc; } void SoundPlayer::set_enabled(bool b) { CoreFactory::get_configurator()->set_value(CFG_KEY_SOUND_ENABLED, b); } SoundPlayer::Device SoundPlayer::get_device() { bool b; Device dev = DEVICE_SOUNDCARD; string devstr; b = CoreFactory::get_configurator()->get_value(CFG_KEY_SOUND_DEVICE, devstr); if (b) { if (devstr == "speaker") { dev = DEVICE_SPEAKER; } } else { dev = DEVICE_SOUNDCARD; set_device(dev); } return dev; } void SoundPlayer::set_device(Device dev) { const char *devstr; switch (dev) { case DEVICE_SPEAKER: devstr = "speaker"; break; case DEVICE_SOUNDCARD: devstr = "soundcard"; break; default: devstr = "soundcard"; break; } CoreFactory::get_configurator()->set_value(CFG_KEY_SOUND_DEVICE, string(devstr)); } bool SoundPlayer::get_sound_enabled(SoundEvent snd, bool &enabled) { bool ret = false; if (snd >= SOUND_MIN && snd < SOUND_MAX) { enabled = true; ret = CoreFactory::get_configurator()->get_value( string(CFG_KEY_SOUND_EVENTS) + sound_registry[snd].id + CFG_KEY_SOUND_EVENTS_ENABLED, enabled); } else { enabled = false; } return ret; } void SoundPlayer::set_sound_enabled(SoundEvent snd, bool enabled) { if (snd >= SOUND_MIN && snd < SOUND_MAX) { CoreFactory::get_configurator()->set_value( string(SoundPlayer::CFG_KEY_SOUND_EVENTS) + sound_registry[snd].id + SoundPlayer::CFG_KEY_SOUND_EVENTS_ENABLED, enabled); } } bool SoundPlayer::get_sound_wav_file(SoundEvent snd, string &filename) { TRACE_ENTER("SpeakerPlayer::get_sound_wav_file"); bool ret = false; filename = ""; if (snd >= SOUND_MIN && snd < SOUND_MAX) { ret = CoreFactory::get_configurator()->get_value(string(SoundPlayer::CFG_KEY_SOUND_EVENTS) + sound_registry[snd].id, filename); #ifdef PLATFORM_OS_WINDOWS string appdir = Util::get_application_directory(); TRACE_MSG("wav_file =" << filename << " appdir = " << appdir); filename = StringUtil::search_replace(filename, "@appdir@", appdir); TRACE_MSG("wav_file =" << filename); #endif } TRACE_EXIT(); return ret; } void SoundPlayer::set_sound_wav_file(SoundEvent snd, const string &wav_file) { TRACE_ENTER("SpeakerPlayer::set_sound_wav_file"); if (snd >= SOUND_MIN && snd < SOUND_MAX) { #ifdef PLATFORM_OS_WINDOWS string appdir = Util::get_application_directory(); TRACE_MSG("wav_file =" << wav_file << " appdir = " << appdir); std::string rel_wav_file = StringUtil::search_replace(wav_file, appdir, "@appdir@"); TRACE_MSG("wav_file =" << wav_file); CoreFactory::get_configurator()->set_value(string(SoundPlayer::CFG_KEY_SOUND_EVENTS) + sound_registry[snd].id, rel_wav_file); #else CoreFactory::get_configurator()->set_value(string(SoundPlayer::CFG_KEY_SOUND_EVENTS) + sound_registry[snd].id, wav_file); #endif } TRACE_EXIT(); } bool SoundPlayer::capability(SoundCapability cap) { bool ret = false; if (mixer != NULL && cap == SOUND_CAP_MUTE) { ret = true; } if (!ret && driver != NULL) { ret = driver->capability(cap); } return ret; } void SoundPlayer::restore_mute() { TRACE_ENTER("SoundPlayer::restore_mute"); if (mixer != NULL && must_unmute) { mixer->set_mute(false); } TRACE_EXIT(); } void SoundPlayer::eos_event() { TRACE_ENTER("SoundPlayer::eos_event"); if (delayed_mute && mixer != NULL) { TRACE_MSG("delayed muting"); bool was_muted = mixer->set_mute(true); if (!was_muted) { must_unmute = true; } } TRACE_EXIT(); } #ifdef PLATFORM_OS_WINDOWS void SoundPlayer::registry_set_value(const char *path, const char *name, const char *value) { HKEY handle; DWORD disp; LONG err; err = RegCreateKeyEx(HKEY_CURRENT_USER, path, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &handle, &disp); if (err == ERROR_SUCCESS) { if (value != NULL) { err = RegSetValueEx(handle, name, 0, REG_SZ, (BYTE *)value, static_cast(strlen(value) + 1)); } else { err = RegDeleteValue(handle, name); } RegCloseKey(handle); } } void SoundPlayer::win32_remove_deprecated_appevents() { const string ids[] = {"WorkraveBreakPrelude", "WorkraveBreakIgnored", "WorkraveRestBreakStarted", "WorkraveRestBreakEnded", "WorkraveMicroBreakStarted", "WorkraveMicroBreakEnded", "WorkraveDailyLimit", "WorkraveExerciseEnded", "WorkraveExercisesEnded", "WorkraveExerciseStep"}; string schemes = "AppEvents\\Schemes\\Apps\\Workrave\\"; string event_labels = "AppEvents\\EventLabels\\"; for (string id: ids) { string key = schemes + id + "\\.current"; SoundPlayer::registry_set_value(key.c_str(), NULL, NULL); key = schemes + id + "\\.default"; SoundPlayer::registry_set_value(key.c_str(), NULL, NULL); key = schemes + id; SoundPlayer::registry_set_value(key.c_str(), NULL, NULL); key = event_labels + id; SoundPlayer::registry_set_value(key.c_str(), NULL, NULL); } // FIXME: used in ChangeAutoRun.c SoundPlayer::registry_set_value(schemes.c_str(), NULL, ""); } #endif workrave-1.10.50/frontend/common/src/SystemStateChangeUPower.hh0000644000175100001710000000403414221624107023377 0ustar00gdm00000000000000// SystemStateChangeUPower.hh -- shutdown/suspend/hibernate using systemd-logind // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef SYSTEMSTATECHANGEUPOWER_HH_ #define SYSTEMSTATECHANGEUPOWER_HH_ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DBusProxy.hh" #include "ISystemStateChangeMethod.hh" // - upower: // - http://upower.freedesktop.org/docs/UPower.html // - methods: CanSuspend, CanHibernate, // - these are implemented since a long time ago // - http://upower.freedesktop.org/docs/KbdBacklight.html // - control of keyboard backlight, may be usable in addition to dpms // - we may use libupower, but it is unnecessary class SystemStateChangeUPower : public ISystemStateChangeMethod { public: SystemStateChangeUPower(GDBusConnection *connection); virtual ~SystemStateChangeUPower(){}; virtual bool suspend() { return execute("Suspend"); } virtual bool hibernate() { return execute("Hibernate"); } virtual bool canSuspend() { return can_suspend; } virtual bool canHibernate() { return can_hibernate; } static const char *dbus_name; private: bool check_method(const char *method_name); bool check_property(const char *property_name); bool execute(const char *method_name); bool can_suspend; bool can_hibernate; DBusProxy proxy; DBusProxy property_proxy; }; #endif /* SYSTEMSTATECHANGEUPOWER_HH_ */ workrave-1.10.50/frontend/common/src/SystemStateChangeLogind.cc0000644000175100001710000000630414221624107023362 0ustar00gdm00000000000000// SystemStateChangeLogind.cc -- shutdown/suspend/hibernate using systemd-logind // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #include "SystemStateChangeLogind.hh" #ifdef HAVE_GLIB # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #include #include "debug.hh" const char *SystemStateChangeLogind::dbus_name = "org.freedesktop.login1"; SystemStateChangeLogind::SystemStateChangeLogind(GDBusConnection *connection) { TRACE_ENTER("SystemStateChangeLogind::SystemStateChangeLogind"); proxy.init_with_connection(connection, dbus_name, "/org/freedesktop/login1", "org.freedesktop.login1.Manager", static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS | G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START)); if (!proxy.is_valid()) { can_shutdown = false; can_suspend = false; can_hibernate = false; can_suspend_hybrid = false; } else { // CanPowerOff(), CanReboot(), CanSuspend(), CanHibernate(), CanHybridSleep() can_shutdown = check_method("CanPowerOff"); can_suspend = check_method("CanSuspend"); can_hibernate = check_method("CanHibernate"); can_suspend_hybrid = check_method("CanHybridSleep"); } TRACE_EXIT(); } bool SystemStateChangeLogind::check_method(const char *method_name) { TRACE_ENTER_MSG("SystemStateChangeLogind::check_method", method_name); bool ret; GVariant *result; if (!proxy.call_method(method_name, NULL, &result)) { TRACE_RETURN(false); return false; } gchar *cresult; g_variant_get(result, "(s)", &cresult); g_variant_unref(result); result = NULL; if (cresult == NULL) { TRACE_RETURN(false); return false; } TRACE_MSG2("Method returned:", cresult); if (strcmp(cresult, "yes") == 0) { ret = true; } else { ret = false; } g_free(cresult); cresult = NULL; TRACE_RETURN(ret); return ret; } bool SystemStateChangeLogind::execute(const char *method_name) { TRACE_ENTER_MSG("SystemStateChangeLogind::execute", method_name); // We do not want PolicyKit to ask for credentials bool ret = proxy.call_method(method_name, g_variant_new("(b)", false), NULL); TRACE_RETURN(ret); return ret; } workrave-1.10.50/frontend/common/src/x11/0000755000000000000000000000000014221624437020030 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/src/x11/Makefile.in0000644000000000000000000006215514221624202022074 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/src/x11 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_common_x11_la_LIBADD = am__libworkrave_frontend_common_x11_la_SOURCES_DIST = Sound.cc @PLATFORM_OS_UNIX_TRUE@am_libworkrave_frontend_common_x11_la_OBJECTS = libworkrave_frontend_common_x11_la-Sound.lo libworkrave_frontend_common_x11_la_OBJECTS = \ $(am_libworkrave_frontend_common_x11_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_common_x11_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libworkrave_frontend_common_x11_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_UNIX_TRUE@am_libworkrave_frontend_common_x11_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_frontend_common_x11_la_SOURCES) DIST_SOURCES = $(am__libworkrave_frontend_common_x11_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @PLATFORM_OS_UNIX_TRUE@noinst_LTLIBRARIES = libworkrave-frontend-common-x11.la @PLATFORM_OS_UNIX_TRUE@libworkrave_frontend_common_x11_la_SOURCES = \ @PLATFORM_OS_UNIX_TRUE@ Sound.cc @PLATFORM_OS_UNIX_TRUE@libworkrave_frontend_common_x11_la_CXXFLAGS = \ @PLATFORM_OS_UNIX_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @PLATFORM_OS_UNIX_TRUE@ -D_XOPEN_SOURCE=600 \ @PLATFORM_OS_UNIX_TRUE@ -W -I$(top_srcdir)/frontend/common/src \ @PLATFORM_OS_UNIX_TRUE@ -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_UNIX_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/src/x11/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/src/x11/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-common-x11.la: $(libworkrave_frontend_common_x11_la_OBJECTS) $(libworkrave_frontend_common_x11_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_common_x11_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_common_x11_la_LINK) $(am_libworkrave_frontend_common_x11_la_rpath) $(libworkrave_frontend_common_x11_la_OBJECTS) $(libworkrave_frontend_common_x11_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_common_x11_la-Sound.lo: Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_x11_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_common_x11_la-Sound.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Tpo -c -o libworkrave_frontend_common_x11_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Tpo $(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Sound.cc' object='libworkrave_frontend_common_x11_la-Sound.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_common_x11_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_common_x11_la-Sound.lo `test -f 'Sound.cc' || echo '$(srcdir)/'`Sound.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Plo -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 -f ./$(DEPDIR)/libworkrave_frontend_common_x11_la-Sound.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/src/x11/Sound.cc0000644000175100001710000000307614221624107020336 0ustar00gdm00000000000000// Sound.cc --- Sound class // // Copyright (C) 2002, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "Sound.hh" #include #include void Sound::beep(Display *x11, int freq, int millis) { XKeyboardState state; XGetKeyboardControl(x11, &state); XKeyboardControl values; values.bell_pitch = freq; // FIXME: why /2 ? The spec claims bell_duration is in millis!! values.bell_duration = millis / 2; XChangeKeyboardControl(x11, KBBellDuration | KBBellPitch, &values); XBell(x11, state.bell_percent); values.bell_pitch = state.bell_pitch; values.bell_duration = state.bell_duration; XChangeKeyboardControl(x11, KBBellDuration | KBBellPitch, &values); #ifdef HAVE_NANOSLEEP struct timespec tv; tv.tv_sec = millis / 1000; tv.tv_nsec = (millis % 1000) * 1000000; nanosleep(&tv, 0); #else # error No nanosleep #endif } workrave-1.10.50/frontend/common/src/x11/Makefile.am0000644000175100001710000000134114221624107020764 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if PLATFORM_OS_UNIX noinst_LTLIBRARIES = libworkrave-frontend-common-x11.la libworkrave_frontend_common_x11_la_SOURCES = \ Sound.cc libworkrave_frontend_common_x11_la_CXXFLAGS = \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 \ -W -I$(top_srcdir)/frontend/common/src \ -I$(top_srcdir)/frontend/common/include \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ endifworkrave-1.10.50/frontend/common/src/ScreenLockDBus.cc0000644000175100001710000000441714221624107021443 0ustar00gdm00000000000000// SystemLockDBus.cc -- support for locking the system using DBus // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "ScreenLockDBus.hh" ScreenLockDBus::ScreenLockDBus(GDBusConnection *connection, const char *dbus_name, const char *dbus_path, const char *dbus_interface, const char *dbus_lock_method, const char *dbus_method_to_check_existence) : dbus_lock_method(dbus_lock_method) { TRACE_ENTER_MSG("ScreenLockDBus::ScreenLockDBus", dbus_name); // We do not allow autospawning services bool r = proxy.init_with_connection(connection, dbus_name, dbus_path, dbus_interface, static_cast(G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS | G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START)); if (r && dbus_method_to_check_existence != NULL) { r = proxy.call_method(dbus_method_to_check_existence, NULL, NULL); } if (!r) { proxy.clear(); } TRACE_EXIT(); } bool ScreenLockDBus::lock() { TRACE_ENTER_MSG("ScreenLockDBus::lock", dbus_lock_method); return proxy.call_method(dbus_lock_method, NULL, NULL); TRACE_EXIT(); } workrave-1.10.50/frontend/common/src/Makefile.am0000644000175100001710000000316114221624107020355 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2007, 2008, 2010, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-frontend-common.la SUBDIRS = win32 x11 macos libworkrave_frontend_common_la_SOURCES = \ Text.cc \ SoundPlayer.cc \ GstSoundPlayer.cc \ PulseMixer.cc \ System.cc \ TimerBoxControl.cc ldadd_platform= if PLATFORM_OS_WINDOWS ldadd_platform += win32/libworkrave-frontend-common-win32.la endif if PLATFORM_OS_MACOS ldadd_platform += macos/libworkrave-frontend-common-macos.la endif if PLATFORM_OS_UNIX ldadd_platform += x11/libworkrave-frontend-common-x11.la libworkrave_frontend_common_la_SOURCES += \ ScreenLockCommandline.cc if HAVE_DBUS libworkrave_frontend_common_la_SOURCES += \ ScreenLockDBus.cc \ SystemStateChangeConsolekit.cc \ SystemStateChangeUPower.cc \ SystemStateChangeLogind.cc endif endif libworkrave_frontend_common_la_LIBADD=${ldadd_platform} EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) libworkrave_frontend_common_la_CXXFLAGS = \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 @X_CFLAGS@ \ -W -I$(top_srcdir)/frontend/common/src/ \ -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/frontend/common/src/win32 \ -I$(top_srcdir)/frontend/common/src/macos \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @PULSE_CFLAGS@ \ @GTK_CFLAGS@ @GLIB_CFLAGS@ @GSTREAMER_CFLAGS@ \ -I$(top_srcdir)/common/win32/harpoon/include workrave-1.10.50/frontend/common/src/PulseMixer.hh0000644000175100001710000000355514221624107020746 0ustar00gdm00000000000000// PulseMixer.hh // // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef PULSEMIXER_HH #define PULSEMIXER_HH #include #ifdef HAVE_PULSE # include # include # include # include class PulseMixer : public IMixer { public: PulseMixer(); virtual ~PulseMixer(); void init(); bool set_mute(bool on); private: static void context_state_cb(pa_context *c, void *user_data); static void subscribe_cb(pa_context *c, pa_subscription_event_type_t t, uint32_t index, void *user_data); static void server_info_cb(pa_context *c, const pa_server_info *i, void *user_data); static void sink_cb(pa_context *c, const pa_sink_info *i, int eol, void *user_data); void set_default_sink_name(const char *name); void update_sink(const pa_sink_info &info); void remove_sink(uint32_t index); struct SinkInfo { bool mute; std::string description; std::string name; uint32_t index; }; pa_glib_mainloop *pa_mainloop; pa_mainloop_api *pa_api; pa_context *context; std::map sinks; SinkInfo *default_sink_info; std::string default_sink_name; }; #endif #endif // PULSEMIXER_HH workrave-1.10.50/frontend/common/src/ScreenLockDBus.hh0000644000175100001710000000336614221624107021457 0ustar00gdm00000000000000// SystemLockDBus.hh -- support for locking the system using DBus // // Copyright (C) 2014 Mateusz Jończyk // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // #ifndef SYSTEMLOCKDBUS_HH #define SYSTEMLOCKDBUS_HH #include "IScreenLockMethod.hh" #include "DBusProxy.hh" class ScreenLockDBus : public IScreenLockMethod { public: // dbus_lock_method - method to execute on the interface in order to lock the system // dbus_method_to_check_existence - method to execute in order to check if the interface // is implemented // all parameters are owned by the caller and should be destroyed after // destroyal of this object ScreenLockDBus(GDBusConnection *connection, const char *dbus_name, const char *dbus_path, const char *dbus_interface, const char *dbus_lock_method, const char *dbus_method_to_check_existence); virtual ~ScreenLockDBus(){}; virtual bool is_lock_supported() { return proxy.is_valid(); }; virtual bool lock(); private: const char *dbus_lock_method; DBusProxy proxy; }; #endif workrave-1.10.50/frontend/common/src/GstSoundPlayer.cc0000644000175100001710000001036214221624107021554 0ustar00gdm00000000000000// GstSoundPlayer.cc --- Sound player // // Copyright (C) 2002 - 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_GSTREAMER # include "debug.hh" # include "IConfigurator.hh" # include "ICore.hh" # include "CoreFactory.hh" # include "GstSoundPlayer.hh" # include "SoundPlayer.hh" # include "Sound.hh" # include "Util.hh" # include using namespace std; using namespace workrave; GstSoundPlayer::GstSoundPlayer() : gst_ok(false) { GError *error = NULL; gst_ok = gst_init_check(NULL, NULL, &error); gst_registry_fork_set_enabled(FALSE); if (!gst_ok) { if (error) { g_error_free(error); error = NULL; } } } GstSoundPlayer::~GstSoundPlayer() { TRACE_ENTER("GstSoundPlayer::~GstSoundPlayer"); if (gst_ok) { gst_deinit(); } TRACE_EXIT(); } void GstSoundPlayer::init(ISoundDriverEvents *events) { this->events = events; } bool GstSoundPlayer::capability(SoundCapability cap) { if (cap == SOUND_CAP_EDIT) { return true; } if (cap == SOUND_CAP_VOLUME) { return true; } if (cap == SOUND_CAP_EOS_EVENT) { return true; } return false; } void GstSoundPlayer::play_sound(std::string wavfile) { TRACE_ENTER_MSG("GstSoundPlayer::play_sound", wavfile); GstElement *play = NULL; GstElement *sink = NULL; GstBus *bus = NULL; string method = "automatic"; if (method == "automatic") { if (Util::running_gnome()) { sink = gst_element_factory_make("gconfaudiosink", "sink"); } if (!sink) { sink = gst_element_factory_make("autoaudiosink", "sink"); } } else if (method == "esd") { sink = gst_element_factory_make("esdsink", "sink"); } else if (method == "alsa") { sink = gst_element_factory_make("alsasink", "sink"); } if (sink != NULL) { play = gst_element_factory_make("playbin", "play"); } if (play != NULL) { WatchData *watch_data = new WatchData; watch_data->player = this; watch_data->play = play; bus = gst_pipeline_get_bus(GST_PIPELINE(play)); gst_bus_add_watch(bus, bus_watch, watch_data); char *uri = g_strdup_printf("file://%s", wavfile.c_str()); int volume = 100; CoreFactory::get_configurator()->get_value(SoundPlayer::CFG_KEY_SOUND_VOLUME, volume); TRACE_MSG((float)volume); gst_element_set_state(play, GST_STATE_NULL); g_object_set(G_OBJECT(play), "uri", uri, "volume", (float)(volume / 100.0), "audio-sink", sink, NULL); gst_element_set_state(play, GST_STATE_PLAYING); gst_object_unref(bus); g_free(uri); } TRACE_EXIT(); } gboolean GstSoundPlayer::bus_watch(GstBus *bus, GstMessage *msg, gpointer data) { WatchData *watch_data = (WatchData *)data; GstElement *play = watch_data->play; GError *err = NULL; gboolean ret = TRUE; (void)bus; switch (GST_MESSAGE_TYPE(msg)) { case GST_MESSAGE_ERROR: gst_message_parse_error(msg, &err, NULL); g_error_free(err); /* FALLTHROUGH */ case GST_MESSAGE_EOS: gst_element_set_state(play, GST_STATE_NULL); gst_object_unref(GST_OBJECT(play)); ret = FALSE; if (watch_data->player->events != NULL) { watch_data->player->events->eos_event(); } break; case GST_MESSAGE_WARNING: gst_message_parse_warning(msg, &err, NULL); g_error_free(err); break; default: break; } if (!ret) { delete watch_data; } return ret; } #endif workrave-1.10.50/frontend/common/src/GstSoundPlayer.hh0000644000175100001710000000255614221624107021574 0ustar00gdm00000000000000// GstSoundPlayer.hh // // Copyright (C) 2008, 2009, 2010, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GSTSOUNDPLAYER_HH #define GSTSOUNDPLAYER_HH #include #ifdef HAVE_GSTREAMER # include class GstSoundPlayer : public ISoundDriver { public: GstSoundPlayer(); virtual ~GstSoundPlayer(); void init(ISoundDriverEvents *events); bool capability(SoundCapability cap); void play_sound(std::string wavfile); static gboolean bus_watch(GstBus *bus, GstMessage *msg, gpointer data); private: //! GStreamer init OK. gboolean gst_ok; //! ISoundDriverEvents *events; struct WatchData { GstSoundPlayer *player; GstElement *play; }; }; #endif #endif // GSTSOUNDPLAYER_HH workrave-1.10.50/frontend/common/src/PulseMixer.cc0000644000175100001710000001667514221624107020743 0ustar00gdm00000000000000// PulseMixer.cc --- PulseAudio mixer // // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_PULSE # include "debug.hh" # include "IConfigurator.hh" # include "ICore.hh" # include "CoreFactory.hh" # include "PulseMixer.hh" # include "Util.hh" # include using namespace std; using namespace workrave; PulseMixer::PulseMixer() : pa_mainloop(NULL) , pa_api(NULL) , context(NULL) , default_sink_info(NULL) { } PulseMixer::~PulseMixer() { TRACE_ENTER("PulseMixer::~PulseMixer"); pa_context_unref(context); pa_glib_mainloop_free(pa_mainloop); TRACE_EXIT(); } bool PulseMixer::set_mute(bool on) { TRACE_ENTER_MSG("PulseMixer::set_mute", on); bool was_muted = false; if (default_sink_info != NULL) { was_muted = default_sink_info->mute; TRACE_MSG("Was muted " << was_muted); if (was_muted != on) { pa_operation *o; if (!(o = pa_context_set_sink_mute_by_index(context, default_sink_info->index, on, NULL, NULL))) { TRACE_MSG("pa_context_set_sink_mute_by_index failed"); } else { pa_operation_unref(o); } } } TRACE_EXIT(); return was_muted; } void PulseMixer::init() { TRACE_ENTER("PulseMixer::init"); pa_mainloop = pa_glib_mainloop_new(g_main_context_default()); g_assert(pa_mainloop); pa_api = pa_glib_mainloop_get_api(pa_mainloop); g_assert(pa_api); pa_proplist *pa_proplist = pa_proplist_new(); pa_proplist_sets(pa_proplist, PA_PROP_APPLICATION_NAME, "Workrave"); pa_proplist_sets(pa_proplist, PA_PROP_APPLICATION_ID, "org.workrave.Workrave"); pa_proplist_sets(pa_proplist, PA_PROP_APPLICATION_ICON_NAME, "workrave"); pa_proplist_sets(pa_proplist, PA_PROP_APPLICATION_VERSION, PACKAGE_VERSION); context = pa_context_new_with_proplist(pa_api, NULL, pa_proplist); g_assert(context); pa_proplist_free(pa_proplist); pa_context_set_state_callback(context, context_state_cb, this); pa_context_connect(context, NULL, (pa_context_flags_t)0, NULL); TRACE_EXIT() } void PulseMixer::subscribe_cb(pa_context *c, pa_subscription_event_type_t t, uint32_t index, void *user_data) { TRACE_ENTER("PulseMixer::subscribe_cb"); PulseMixer *pulse = (PulseMixer *)user_data; switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) { case PA_SUBSCRIPTION_EVENT_SINK: if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) == PA_SUBSCRIPTION_EVENT_REMOVE) { pulse->remove_sink(index); } else { pa_operation *o; if (!(o = pa_context_get_sink_info_by_index(c, index, sink_cb, pulse))) { TRACE_MSG("pa_context_get_sink_info_by_index failed"); return; } pa_operation_unref(o); } break; case PA_SUBSCRIPTION_EVENT_SERVER: { pa_operation *o; if (!(o = pa_context_get_server_info(c, server_info_cb, pulse))) { TRACE_MSG("pa_context_get_server_info failed"); return; } pa_operation_unref(o); } } TRACE_EXIT(); } void PulseMixer::context_state_cb(pa_context *c, void *user_data) { TRACE_ENTER("PulseMixer::context_state_cb"); PulseMixer *pulse = (PulseMixer *)user_data; switch (pa_context_get_state(c)) { case PA_CONTEXT_CONNECTING: case PA_CONTEXT_AUTHORIZING: case PA_CONTEXT_SETTING_NAME: break; case PA_CONTEXT_READY: { pa_operation *o; pa_context_set_subscribe_callback(c, subscribe_cb, pulse); if (!(o = pa_context_subscribe(c, (pa_subscription_mask_t)(PA_SUBSCRIPTION_MASK_SINK | PA_SUBSCRIPTION_MASK_SOURCE | PA_SUBSCRIPTION_MASK_SINK_INPUT | PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT | PA_SUBSCRIPTION_MASK_CLIENT | PA_SUBSCRIPTION_MASK_SERVER), NULL, NULL))) { TRACE_MSG("pa_context_subscribe failed"); return; } pa_operation_unref(o); if (!(o = pa_context_get_server_info(c, server_info_cb, pulse))) { TRACE_MSG("pa_context_get_server_info failed"); return; } pa_operation_unref(o); if (!(o = pa_context_get_sink_info_list(c, sink_cb, pulse))) { TRACE_MSG("pa_context_get_sink_info_list failed"); return; } pa_operation_unref(o); break; } case PA_CONTEXT_TERMINATED: break; case PA_CONTEXT_FAILED: default: TRACE_MSG("Connection failure:" << pa_strerror(pa_context_errno(c))); } TRACE_EXIT(); } void PulseMixer::server_info_cb(pa_context *, const pa_server_info *i, void *user_data) { TRACE_ENTER("PulseMixer::server_info_cb"); PulseMixer *pulse = (PulseMixer *)user_data; pulse->set_default_sink_name(i->default_sink_name ? i->default_sink_name : ""); TRACE_EXIT(); } void PulseMixer::sink_cb(pa_context *, const pa_sink_info *i, int eol, void *user_data) { TRACE_ENTER("PulseMixer::sink_cb"); PulseMixer *pulse = (PulseMixer *)user_data; if (eol == 0) { pulse->update_sink(*i); } TRACE_EXIT(); } void PulseMixer::set_default_sink_name(const char *name) { TRACE_ENTER_MSG("PulseMixer::set_default_sink_name", name); default_sink_name = name; for (std::map::iterator i = sinks.begin(); i != sinks.end(); ++i) { SinkInfo *sink_info = i->second; if (sink_info != NULL && sink_info->name == default_sink_name) { TRACE_MSG("New default sink"); default_sink_info = sink_info; } } TRACE_EXIT(); } void PulseMixer::remove_sink(uint32_t index) { TRACE_ENTER_MSG("PulseMixer::remove_sink", index); if (sinks.count(index)) { if (sinks[index] == default_sink_info) { TRACE_MSG("Lost default sink"); default_sink_info = NULL; } delete sinks[index]; sinks.erase(index); } TRACE_EXIT(); } void PulseMixer::update_sink(const pa_sink_info &info) { TRACE_ENTER("PulseMixer::update_sink"); SinkInfo *sink_info = NULL; if (sinks.count(info.index)) { sink_info = sinks[info.index]; } else { sink_info = new SinkInfo(); sinks[info.index] = sink_info; } sink_info->index = info.index; sink_info->name = info.name; sink_info->description = info.description; sink_info->mute = info.mute; TRACE_MSG(info.name << " " << info.mute << " " << info.index); if (sink_info->name == default_sink_name) { default_sink_info = sink_info; } TRACE_EXIT(); } #endif workrave-1.10.50/frontend/common/Makefile.in0000644000000000000000000005524614221624201020676 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src share include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/0000755000000000000000000000000014221624437017732 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/Makefile.in0000644000000000000000000005525614221624201022001 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = images sounds all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/0000755000000000000000000000000014221624437021177 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/scalable/0000755000000000000000000000000014221624437022745 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/scalable/Makefile.in0000644000000000000000000004473114221624202025011 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/scalable ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/scalable/apps icon_DATA = workrave.svg EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/scalable/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/scalable/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/scalable/workrave.svg0000644000175100001710000003271414221624107024236 0ustar00gdm00000000000000 image/svg+xml workrave-1.10.50/frontend/common/share/images/scalable/Makefile.am0000644000175100001710000000014414221624107023701 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/scalable/apps icon_DATA = workrave.svg EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/win32/0000755000000000000000000000000014221624437022141 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/win32/timer-micropause.ico0000644000175100001710000004220614221624107025027 0ustar00gdm00000000000000 hF   600 %(       258 PXc!&0 } (0   @@|||{{{yyywwwrrrqqqwww{{{rrr*vuY07=zwf|$.6@Xbk|t)18@~q!*37z:GSbhl>ISDFIbuALS^qDOVBO\DNV$ׅ^be\emKT\gnsKT\gnttxLV]entn|~{MV^enuo~bjpclsr #elsyHT\5A =AE&*. ^kzEKRHJM@BDqQ]h~ $UU9????????????????(0` $  wklXl~ufmgtkpstzzyrlxlXnk}e|ݡopuw?DG##%eimL^r#+3Xgz=>A7CUCTgDGI\p4APky&0;8@Kr{2EO ;DT&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.ico) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/win32/workrave-suspended.ico0000644000175100001710000001447614221624107025402 0ustar00gdm00000000000000(Vh~  ( ppYuI P ADDPtD@UAD@UDtDA@ E DDpDA T UpPH( @nnee``xx\\RRwHH^EEtRRR^^r==sppmmfff((R;;JFFF( NNNGG`,,,\\\jjjee\\ &!!0ddFFm...~~ySSL55... oohx""  KLKKLKKLKKL?KKLaa_JJJ))(tt[[{ TTg222aaaXX^??_999 yy"" 99. 330>><wwyjj_vvvvvCCB77SDDh..B.""'pph$$$(::U #) vvp"""##4mmfEEe XX@@6GGlRRyLLSmmsNNLeeeiid.&&&GGG666 MMMjjj |}~ uvwxyz{mnopqrsfghijkl_P`GabcdeXPYPZ[\]^MNOPQRSTUVWBCDEFGHIJKL;<=>?@A3456789'()*+,-./ !"# !( @ppp U UpTEUUUQDDUDEUUPtDDDDTDUPPADDDDDDP PDtDDDDDUADDDDIUUDtDDDEUUUPDADDDDPUUUPDDtDDDPUUUYDADDDPYPUUDDtDIUYDDADI PDDDDtD@TDDAEPP UDDDp UPDDDA U DDDDpDTDDDDADDEDDp@Ypx0?( @kH%kHs%WUkkHH%%DZksHW%UԎkH%kH%kH%II==zz1bb1zzzJs%sJsss%sbbbPPP2PssnnnPP2PsVVVPPJJJ>>>222&&&kH%kH%ksHW%UkkHH%%kHs%WUkH%IܒI=zz=11bbss%ssJJssPP2PPPPP2s%kH%kHs%WUkkHH%%DZksHW%UԎkH%ʦIܒI=z=z1bb1ssJs%s%P2P2PsJPPCCCCCCCW@@WC@@W@@@@WC@@@@@@C@WWC@WCWWWCW@C@C@C@WC@WCWWWCWWWWWWCWW@C@@W@CWWWWCWWWWCWW@C@W@WCW@W@@WCCCx0?workrave-1.10.50/frontend/common/share/images/win32/timer-restbreak.ico0000644000175100001710000004220614221624107024642 0ustar00gdm00000000000000 hF  600 %(  J}RcZRRJ}J}ZB}B}JJJ}B}Rkc9q{9uB}RBu{9m{Jk(0   Ud]WGHT FXKORgnrYZ\] B=@CШ024$rjsxdinr#$%Virv58<Jgkpv}z 799NSYdox}puxZel@nx~imoV1#dgj}=FIw|okvouz+djmYcg{g@blAmwL}O~Er{;hp-Za)V])QY$DLB_guOUX}brx9?c[AyMCw^Z?u|Aov4Y_9>:?:?B,24*03KNPLhm(LT7aj@oyJyIwKzFv:ir*V\:?(BEt())N)*+wC[^@]a:VY3NP9TVCE؂FGI233=K/14afj婴ܾORTp&elo奱79;&  hqv&(+lwx{ "#ktx!MstwxSW]씟'(* G)-/}T567@w{{wkqvНf -/0x󂏖r A~=@A Y\^◠~Zel;!!! "j}Vdk26;?|FQV}{qv{fmth|}fkngcjrkTuT{S}Hpz5[d7]f)OV&LS)NU4Y`BdlRnwhƠƊٛ]chUkq.KQChrLyQMYTQWL~D9>9=gnr]g7V^2QX>\cC`gLjrTryd}ry~_fh"$'Pkt:\f3Xb@jsGt~LyJw4^h-V`;dm*T\ IQEL?FCJGN'NV*MU,KU8T\Pjsv#&(>W\4QX1Q\Dny@mxRJTa]VVORHy:kr5fm6gm4`h HP:B6=9@(GM<^dd59;#%'6JP04 ?GQwj_^E}E}LOH|FzUjePAw~=qxCsz;fm9ag'IP8>6;6<'INEKQBHL.46*/1'-/-36?DF&()!4704 CK]ueK;r|@xH~QBu:oyNjeOAxhqEnw2\f3]g8`l03*.&;?TfjbtwMbe4KN7;&+6;>C8=:> +/%) .39=8< .2:=4OQJcfh|f{}jg[rs^tt_uu^tt]ss_uucyyiMLORST]]_acd?????workrave-1.10.50/frontend/common/share/images/win32/workrave.ico0000644000175100001710000001447614221624107023412 0ustar00gdm00000000000000(Vh~  ( xppwwwpH( @RRR...FFFNNNee~~y"" HH^GG` &,,,xx.. ==s55.mm\\SSL (((Rjjj!!0RRwFFmxddEEtooh\\ ee;;J^^r``nnpp\\\fff- < - - --- --- -  - < < <<<H(0///###ttt,,,PPP%%KK>aa_JJJ))(tt[[{ TTg222aaaXX^??_999 yy"" 99. 330>><wwyjj_vvvvvCCB77SDDh..B.""'pph$$$(::U #) vvp"""##4mmfEEe XX@@6GGlRRyLLSmmsNNLeeeiid.&&&GGG666 MMMjjj |}~ uvwxyz{mnopqrsfghijkl_P`GabcdeXPYPZ[\]^MNOPQRSTUVWBCDEFGHIJKL;<=>?@A3456789'()*+,-./01$ !"#$ ?( @wwwwwwxxwwwpwppppwwwwwwppwwwppwwwxpxpwwwxpppwpwpwx???( @ʦkH%zbJs2PkHs%WUI=1%sPkkHH%%sPDZksHW%UI=1%sPԎkH%zbJs2PkH%ssPPkH%zbsJP2kHs%WUI=1s%PkkHH%%sPDZksHW%UI=1s%PԎkH%ܒzbsJP2kH%ssPPkH%zbJs2PksHW%UI=1%sPkkHH%%sPkHs%WUI=1s%PkH%ܒzbsJP2kH%ssPPzzznnnbbbVVVJJJ>>>222&&&  ----  ---  ---- ----- -- --  ---------------------------- -- ----- ---  - - -- -- ---- ---  -      ???workrave-1.10.50/frontend/common/share/images/win32/workrave-quiet.ico0000644000175100001710000002624614221624107024535 0ustar00gdm00000000000000(&hN( Ą` s Pi c t UX` UX` Xs Pd Xd c t t `( @~~yĄ                    (0///###ttt,,,PPP%%KK>aa_JJJ))(tt[[{ TTg222aaaXX^??_999 yy"" 99. 330>><wwyjj_vvvvvCCB77SDDh..B.""'pph$$$(::U #) vvp"""##4mmfEEe XX@@6GGlRRyLLSmmsNNLeeeiid.&&&GGG666 MMMjjj ( @( @kH%kHs%WUkkHH%%DZksHW%UԎkH%kH%kH%II==zz1bbsss1Js%sJsssnnnVVVPPP%s2PPPzzzbbb2PPPJJJ>>>222&&&kH%kH%ksHW%UkkHH%%kHs%WUkH%IܒI=zz=11bbs%ss%ssJJssPP2PPPPP2kH%kHs%WUkkHH%%DZksHW%UԎkH%ʦIܒI=z=z1bbsJsPPP2sJs%1s%P2P( @ ( @~~yĄ                 ( ĄP s @Y DS v P P @s AAV V @DS v v Pworkrave-1.10.50/frontend/common/share/images/win32/Makefile.am0000644000175100001710000000031514221624107023075 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.ico) workrave-1.10.50/frontend/common/share/images/win32/timer-daily.ico0000644000175100001710000004220614221624107023762 0ustar00gdm00000000000000 hF   600 %(  YZZ4I:B\HGcNJgRLiSNSP0B4UCO$1'.A36K;8N>9O>r(g%+;/0B43F74H94H9B{Vj%j%j%j%r(5g%->2.@3/A30B40B4̝5555555g%*;.*;.+;/+;/+;/̝55555555`"&5*&5*&5*&5*&5*̝555555555 5"/%"/%"/%"/%"/%BBBBBBBBHe9nnn( ( ( ( ( BBBBBBBHe9\]]"""""b{b{b{b{wBPl9b{He9k9      ( @   qqPPP  !#$%%%%%%% QQQMXP!-$%3)-?14H9UDD^JFaMHdOIdPIdP!QQQOTP#*!(7+0C5;Q@AYFD]JE_KE_K QQQ:B<)!'6+4H9;RA@YFA[HB[HUQQQ~~"/%/A37L<UC>VCU5QQQ~"/%-?15I99O>:Q@;Q@UUUUUU[ Xjjj'7+.@32F75K;6L<6L<r(|,M+2/@3/A30B40B40B4IvYIi000001450Mzzz,=0,=0,>1->1->1->1WiWz5555555550\!___(8,(8,(8,(8,(8,(8, WiWz5555555555/Gsss&4)&4)&4)&4)&4)&4) WiWz555555555555|5"/%"/%"/%"/%"/%"/%  ^kdـ>>>>>>>>>>>9]e+...===FFF~*"*"*"*"*"*"  amkBBBBBBBBB$GJg&f2000^^^}~%%%%%% amkBBBBBBBBBJg0?000\]]|}!!!!!! ksb{b{b{b{b{w>><<<'''qq(0` $  1D6)9.&5*&5*)9-.@23G89O>=UDB[HFaMIePKhSMkUOmVPnWPoXPoXQpYQpYQpYQpYQpYQpYQpYQpY*!( +"#0&'7+,=02E67L<VDA[HE`LGcOIePJgRKiSKiSLjTLjTLjTLjTLjT"' -#%3(*:./A34H98O>=TB>VC?WD?WD?WD'#1'+:P?:P?:P?OOW#1&'7,,>10D63H95K;6L<7M=7M=7M=r(r(WW(8+*;..@21D53G74I94I95J:5J:5J:r(r(5WW+<0->1/A41C52D62E73F83F83F83F8B{VB{Vj%j%j%j%j%j%j%j%r(r(55WW->1.?2/@30A30B40B41C51C51C51C5B{VB{Vj%j%j%j%j%j%j%j%r(r(555WW,>1->2-?2-?2-?2.@3.@3.@3.@3.@3̝̝55555555555555WW+ ՗IDATh{]U}?k>sOMnA $8jm(>@-TC:(ZV*Q (yH )I a``. .gM7U^ pg?%u߀/cزQ&'(ScttR(i҆i4T,Rj)#"4uZ),\KOe0a^IG3I֮9C&=+ݼ~q7my):;}MG[ Z --%"Z djr4ͨT+De|rz#!Ks+Vqpƚu\O_{U ?nkܷ.lc2CuQ֊6:63xƣXeff14mڵ8fcP]w^x9WcU溣.{W~>dYNBkHIw FڄZmzB2CYrY"NVoR)0(P*bblz-X4(m806uFYUoY2S3]"S44xƐ Ѡ#\YN'dRJzcUz߾l90J#HFUFzeze^& 68QWת$QFB6IDG$QR!HU<)8>Ww%CWo,4kV^kLZ*b: ŦUhɔj-udV(L5G֦8'(py8ksg[ٷ' w'(Pl}p6tX@K"AXfXt9I)I%)6ɰiJ'ibs,=;|lNapX> Y0w ˏxŞlʹX2!ΑCܯ$H*~GAi=[nZPdOz|$KR֜or[(JxRk:&'&܃g]4By>[<_f#sxg|8q9C9A+SGJ=qBU-.vO\9憇kK/y,_4^V8ynE&$A>yYjqghe##av1Gyy.A{`Ea#!iEbSf3d6T*29SɝeEn͚~Ԇ $!v}N)U9!@Zefb!Mf&T AA0 g}fz-v8 #=@a]N~HsG"r$6"JLULW#xrlΐ[w~ m|@yD9D }|cYF܈0&0!68:VY[ku2vpg3h}a٘4Qx]M[O_}Wn%ϛYy`8@)/| <㑦U4B)X;"9-9xSc [< gZ[SST'xd:b}u{xl8P.'Obl M3n|̚:2r26=Ni)Q~ (m Gc۶|ϰx:c9`!k{Ofٲ>Սx>AgKF2 t/;|"`!WsWQVA))ZL7۬(`cvE5v>ogC N9BAXxgђe200Ig)Z87hb|=H7Urtt髯d|l4M6 e6!CC,ZXxXm^$_@kdJpd C%sI# #nTi1yo|۟޳or1Z]uKZ?<8M#Z" m[ J),9:Ź(fw ڠ`:&6&KcҤ 2J-m4lg9c\H+|B>ULNL4]H Ę 3~Ryiy#mBŤi)&dYs\.um?[W;}֝gys]ɪKкi&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/32x32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/32x32/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/32x32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/32x32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/32x32/workrave.png0000644000175100001710000000070314221624107023227 0ustar00gdm00000000000000PNG  IHDR szzbKGDxIDATxVэ 6א,XcIt}=PֽIJ8 (Ӹ@U@㳈d[WD%Ȯ$UCaci Y2 ! ""¢ I VD2ĺgD$BZ,L"z,o(7kB"ZA=0 HBC 0CE-]˲{97*y 7΍?+-n!"HjP<"aPq| gG=w_o~{xAGRs>,˂^u s :+s)"ivD6d1t6Cn_1>"i( KYJS+BoMW|-IENDB`workrave-1.10.50/frontend/common/share/images/32x32/Makefile.am0000644000175100001710000000014114221624107022711 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/32x32/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/rest-break.png0000644000175100001710000001011414221624107022642 0ustar00gdm00000000000000PNG  IHDR/0#bKGD pHYs  ~tIME &IDATx{]U}?~\$!$BH&D>:2jj}jN:ֱEi-@ I0@l5$!!9Jg\ks>oM?<_m_"θvV^(dWWy%!B#f6GԈ||b> NuyA$~/`oobU`ƍg',(-q8R8gƂ9sH)R!C"@y/LOW < LY{M{[7֮]M_"JiĐ$ i&'GEHɩ Ri|GAXk}bHg[;]KAP㚷x_}6~[o!MS*1}8gs;$'hi)ZBh4H!zz?!_ȂYp)sډ\6v|ѱi:JJ/"0xzѪ󃇶Soyk׃\a=W_u8pn`,'`xˬft9~?obetY6 / <4\)9* $aсi$&Jb$FJMJggzLGyj=Ƽ[n%alv V^YcU&(xs8v|crZJ\Z0=:Glc83z="k8c@7PBۍ:9ªYkO)god+Y~H-?od6wl^+U\Jߜn X,R*P k8T1 $-cT*uAήNΝ˗s!azN$!,LOM0} ܿ}{weKy7 xᑓ?vGcDQRO#(9q$zv&&'VkX0RjtHF_^Z[K C~0QZʱbZ.{igsZ#R$s璵NWetY&'ވ^Dy1nGjmB0 ho`.]=w& Qter ~=Sچswtl>O>usnZ{3^R #:?bLLGXB#@I$M(|PZ=Mx:`ld(qI׈c)r֭p<59 xU[َML@ZGx%CW5xI N`XKϑN"kY8!bi+H Xhъ t+_[@nϖ$]w݇nٱu(!PZF):R Uvs4BKtw<ØzNH%'%yVtЅ˼;n֖(Nf\tхO8pP|۷1<Zx`rwo_|oXwBz"U0uj6lQH_kxGO| =?h/DC7sOUZO|oxUWPC#bEۃL, X'B4i\H 8=nvDZ<@)~cÆu܁@mS`"4y"·n~&$P9I,ŋ@)T ZH< 6TR')j# B)|E _6s(q@MjRu@j^+/޳c7s J`!u)ƐXKb If=f)WghimeVj56] 'Cj$R?y@PB1ZOk| XA:;yME}t,yMNJ q`Ͼw֙^v8º )Q\Gjrg֌|) YV-g%w"%NjqQޘ&nԐB"k>'ϒձ#@U߾/oW|3~8'!= °<Р灐8,1FN$Ib8J$rʋ^_hkk5)gcҸHN=GCKl7>3dY!n`o {>7.Yă~=+AKyhI BR!DHO!2Y3$$ NXBs_AcL<1=? ЕgyomܾcՕ_e8kPRt?RR#<í:#Ts%|vbR hs_¿} ܞHI`2ORFop 3Y?зW=G_*ǶmfO__7֤(aeyA, )@huZ9pb:K60b, 34wn9 | 8p|8?)K(ՉR=ϻ׼ GuIƀ ԥ4ES8Lhfn|[Ɵ\F}7w 0 +=:|l+'<p^9'?6opnXM,ٌL> *bǮݼ<922R<499xE5e&ѼizyndڹqK~agLkkuε !jJɓ ! A$%I2O),{Lڈ˹OOǩ fYmIgFK~l9ɐ3_Ѽ9Z,疯s`gk3ID` 3zH9i ;ͱ%&&fo=ɯ9-s"3JM4>T@L/hoGR3 =]_wv&?k7scǿkkkB)yIENDB`workrave-1.10.50/frontend/common/share/images/workrave-quiet-icon-medium.png0000644000175100001710000000166314221624107026005 0ustar00gdm00000000000000PNG  IHDRw=bKGD\tT;^ pHYs  tIME .3b@IDATHǵQhW;֚BR-R(Xfjk(>t KE<Bj^f --!B`amј%]lI$23,4fbqɚsν%T 2Kׯ-herY{hG̙$f߇Pd,$STTT:\˲0Mx<αc0MSzDy+P"Bf^^D"Xظx{N!n(` B`(DgW|y9pD'IiܹЮ]{]NQi% 5d2ɎX 5%n^YH/% ^8nTlgUU{Q>˫Ws3Ԅ :x B;:&_c1v\Uk֐KEG|Tţwڊ|Fۆ ع6MW##(@f''*+r*D"eKs1:zcݝd޲eHr%.ƍTג^iL={*iʽ^Zw5]R绦ex02g'O.i"JN okvv#w7$ vZZZ|{3_577HCM͚Kڲ,,aTwpS/BFVd'?Ji-(<,?1:;?usBu&&&8=14Oy_bHeIENDB`workrave-1.10.50/frontend/common/share/images/prelude-hint.png0000644000175100001710000000756714221624107023225 0ustar00gdm00000000000000PNG  IHDR00WbKGD,IDATxڽytTU?իJU*B0T\pVqAm9gtq渵3LgZQ9jۂm( K &HVB,W^%E$;wnUۗ|%rНךrv*~K$:@)Pga8 ! J?&fgeK.̢y^j7 f5=н=[ozq  JH a4>aqeq%v\I;UҊ(i6TѾo>{Q+`08Ծj':̈́vRI;P!UҎ(i3d )i (T o@aO,y!m2m+˸m:dĐ֠JE2ifp;0t@Lcdh3-%m![hYCJ 2_X 8*'΍ R]O{_[v̙3+bM1}zͷ+obSz#iկ˗{zu}1{f98x=dɊyu|s|hg .vj:  Kk]x`++XƪjǑ:T07kWQJvhLʌʣQwm!焬&O/cWԥض=J38 +u--;[J-xJQBlPΛN<Yzŧ=9zr5[ܺ@`euSڡk*,Ҳ[ )2355իzdJ)PJFJJ}JA%P&= hs4QvʉCU yQ;ڠEsFp(VmLZEqq6@ә>}!_aԍ/u5W-)3ɋΦtUJVV<e0Uܜ i9d,׺s@ ~gOH49ޚ)U^r%u,8q.ʌټVks엙 V~;G) \9Nd_7n))!%-\rS5сm̩=TM9n<%?95bn]׳C2x* w6VF (*ʀU*ӻ:ayXy͹o|L]VZ˥W,!moӪq2ej56[0-kf}8I`q㄀yXwiAQVaGr+_Ų,.܌ )Q/,8BKڗ-=[loN= 4;M}}UTNbwVlO={v7/j olP*˄M7]K"U$ *kv/HP)D)KG^=_U/>e5N:~vC~G~r.`ּ8wH>fSKt˒;i'͟nj5S?sMI%G /׳rFEMYأÒommɧVp̙sc6(a% (_w[CJpN?2DYy.MдsQڿIwwO+'T g[̾!49LV:;vb.&O;r71$JDh|jj X?"Qwb]+­Y KWBQ8BZℓN%;Uo.7}'_~޾ 2 2Qe|&^Iu;PlG}^njfJ b7b/X7B[ ͟_~)h.Bq:y|:~7u;kStU&a>Xt۶q\#a\SP0;{/~sSvԿ?\^?Χz&LJö- vKϟ~pzN}s{K4MD&LqO/|47 ^DZwtP ^syƆoR]L(Cy9Q6 U$xJiN. N|dꌓϮ(*@tW c"Blڼ?{X|L>Sy {QڎR]h—"3pK2DGQP² ukgIݠT4OVuMF=e[!DDt6:kֆۀdo/_/+-L(S)PRCJ iH6ȃ { cj%/*8qJ$l)ф6R(xP?|̛ko{&k2ǁ}nwe((Eڙ(miF?^v}_>ٝӞJ ͩ$M@xR"<]F:M,% ѳo]{Vߐ^y-mg@N*SpÕWO@`p#"4xl"lȇP^:)r[T3sTɧ7|࠮+S`_>Z[ͯj#Z6ܔV`3ݸL/,e;4FT"E*eՕ"[̶OTKtg7,9%EKkܴ>zYڑJ}=;~8R9~~ wxQ*gv}%L #FdLNK\z Mmw^}sfU'royF& a ; oc$OFZѹ }*O1G#\yV#ы LF" !wq wWg3S8ʅM+D)i[X~^e!E}{u;}cL{~P L"4 ۈaHƂ$Ci˲&LQÉѭڏ!_IH$$b!ҩi6,<9yDmwҏ=t}gs $H' M$CᏤQRN.C A0/=+^P9b(#! LE, ӐGyDA` u@EwدiUB>j=mD1L6mmVXjn ET+N po w.5kּe˖h4ʚ5ktwww.K ;3!)T V!DmYYD]ECC)'i=$ wU9G@9_ΒN:?H hmr&:RϽ/Je;!޽ WcڴZbнJmNqq55|-k 0ӇL_:`%pb)X5޼*mQyzժ!ښu<ԯO&_E:^܆uO\{`XŊr6Z[ؿqHp랜{.pPsF.P[}K.`Wдw)( (}u@ 0kPmyp `>iC9_(a<~[ObNJlNlWN<9U*P2khڡ"Be1!l+){([Tl:Z\9~h]eY.,XJyf9E#ȖB˒{sF>!'7LY5r9%{5-KoEݹg'Mvb.- 4bNq8]y ))npn_qll+HK)RW G [ +( )}lK9@r/s~_k^w9gt/vn@CY@US<:`+)..f6FMM 55Ya;3㸉mܼ(7?b$wɅ\x唍(rc^4oţ3J DK,v'"kp-['&Ƚ>rEO>d3Fփzuy#K}0zStk62!sS P~ DDb/!5;wu׌WCimn$馩sf^Ȥ) 6 ӻRsc-<4 ^.e+,˲x< óŊz흤ep3C+GN.n]=e#tɍ:9r 5^!zb?H:m$/sfe'8o={L2 +LO_b,]z=55g38pfK 7{߽яYp:@{GyW^E*`gOħyi?|ϏZԘSjg<jͶÏt`,\x'5Yvɸb,X ^yu%5ĪTR;tW{7{ǜ5lX}Eͭ\4oxp1|{apH{.UW(/,w&O]wq㊰ E A@GeX>?i-BeeE?Ll˕P]H|#6R)tJ<%rrV6Z|"==TVM`N J =njdF;ռzъ"xqќ9,Y}@VY| )DQ'*è⭷ާx#BeƤo֜/×SW5=3f | xfZZۘqED{x罍iۿrZB?{kIJ/)1)3 Q<dˊ<}L6$|3~PL *^qյR:u{BUJǐHYWI(ǟͦQI1 s}4'Eӆ#ba}]=|EP0K.*-:sm q-7;k4 "(8kQU*k<CA6~i/[Co"[;}@?T1ҭ7_z靖ρyQ7e7uLQQ Myr rP5/21RtH_;ƻ'N@WqkmI~a#:lCUr8v- t( ;AdhH x7QXvu)xSkH&BK.=]4 UE|(21R}(X--Gxm]gz3ol-9kDRP!ҟA !T&+aUx xE{zÑX*Fa (*Xz=#롵Yqs]OoGvĞv|Q~=#Dʴ.ҏ<Жi).~ܔ9t4IdU^g %E(&%13GS=!L$H#lo{6d6NӲ~ם0bŽsnV˟'U+EAŋzJ L2H66}|T5{g )_2xjjn-[v͈j4DGih#9Nm, &2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -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)$(imagesdir)" "$(DESTDIR)$(svgdir)" DATA = $(images_DATA) $(svg_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 macos 16x16 24x24 32x32 48x48 64x64 96x96 128x128 scalable imagesdir = $(pkgdatadir)/images images_DATA = $(wildcard $(srcdir)/*.png) $(wildcard $(srcdir)/*.ico) $(wildcard $(srcdir)/*.xpm) svgdir = $(datadir)/icons/hicolor/scalable/$(category) svg_DATA = workrave-sheep.svg EXTRA_DIST = ${images_DATA} $(icons_DATA) $(svg_DATA) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-imagesDATA: $(images_DATA) @$(NORMAL_INSTALL) @list='$(images_DATA)'; test -n "$(imagesdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(imagesdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(imagesdir)" || 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)$(imagesdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(imagesdir)" || exit $$?; \ done uninstall-imagesDATA: @$(NORMAL_UNINSTALL) @list='$(images_DATA)'; test -n "$(imagesdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(imagesdir)'; $(am__uninstall_files_from_dir) install-svgDATA: $(svg_DATA) @$(NORMAL_INSTALL) @list='$(svg_DATA)'; test -n "$(svgdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(svgdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(svgdir)" || 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)$(svgdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(svgdir)" || exit $$?; \ done uninstall-svgDATA: @$(NORMAL_UNINSTALL) @list='$(svg_DATA)'; test -n "$(svgdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(svgdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(imagesdir)" "$(DESTDIR)$(svgdir)"; 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-imagesDATA install-svgDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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-imagesDATA uninstall-svgDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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-imagesDATA install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip install-svgDATA \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-imagesDATA \ uninstall-svgDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/macos/0000755000000000000000000000000014221624437022301 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/macos/Makefile.in0000644000000000000000000004077314221624202024347 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2007 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/macos ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.icns) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/macos/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/macos/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/macos/workrave.icns0000644000175100001710000006644214221624107023734 0ustar00gdm00000000000000icnsm"ics#H'??????'??????ics8VV+22111V2+2Vis32s a@ [>[Fe8j9Ă<_wp ¼ kIDgBSb@ Gk>Q<e2i9w<I{cV ™ gSIDg3B a@ Ow>U@e5i9³<Qj` ¦ q\IDg8Is8mk :' FѓCv+]L: ZB7+Žn %K. ICN#  icl8+1++VV+2+VVV22+2222121+22++VV]2VV21+++112+VVil32?7&R Iυ0йE @s #@(UӃX DiBj|K|yYއ'8;11ﴊ"ŘገS귱)O鿍69RT{҉#d_5{vߋwwv+aЀ ~ĊKHÃqVh8s00- ?7&R 9i0йE @s^ 2¾CՃXEjDea6-@Fu҉NK+abq^^|[~l"LrЀ ~u»:9fqVh+Zyd%% - ?7&R @s0йE Б@}f 7"JԃXEjCgkA|yO߇'06-1uΚH˞$ɋEɢ62FKw҉ VR.ji~ghew%SyЀ ~}@>pqVh0dn** - l8mk  ((+    .L #o)4ߵY Fax0!  #^=D {( M1J 0 * ]|1-e̎3u; "{ ƸhCsbbߠTGFO^iX+ -52,(+:\cH@:/###  $,-&   it32Mqv=-Sr؁؛N V3;bq#޴Յ, $  GifR6#:{p-S _%@\[F5#  ]֛PQ ud؛M& B!ou|B;ˆ_`! A!Wކ2y% ao vZ/RQ!"_^!ꀳ h؅nЄ TTނZd 2hBsHd  ;I`Hco{܉@H'y+,{wHNV !~#:Py 쎀7\\ݠ2^0"> Rz5+PdeO(|Qu{o$//*)8ih~[Ҁ eۥW#IA1O%Ű<̲jЁޜ\O X3Miv{U+]N'  ' [\ǃޝ b;i) сثG uߗ!Xpڅ6KԀ g% *v)́Kb݊|]v@I \ØXj٘hilۗK a˗DdzKH܏eq$oH6Դh5ɕ.y.i'#э+³-*h/Ͳ="n؏-4ݱ"LیJ I">nބΰl4 F ,7K\hnleV@3'G ""&9Msݲ[ _YRKD=2)dnĽx\  !).158; {hed -Lft|'H /߆8w 1 tf8;].BWsCC S hPnI)0N[ ʴxY=)s̹Vͩ\1*C-+AK+ ̖R "IeE$؇<5ɇn]ܨll_=+^W $ӉW cd.* D _t \ӁAQ {#|f! A q 5i,nr6 :l~yV$ w3݋~* 4eC N{ ܳq;-m Kz,/݆߸F" +3H  ;Vf[  _݀ ť~R&%| 5OVJ0  "12*- 0݁' 6UkoU=qv=-Sr؁؛N V3;bq#޴Յ, $  8SR@+ :{p-S _%@\[F5#  J{@Q ud؛M& p4 !o\bB.q _`! A! Dg2y$ao \F/RQ!JwnJꀳSWiT BnG O (Rxu4Z8d .9LHNV a3H^"#` wHNV !cp-Py 쎀7lII~'^0"> R`*"?PO>|Qu`W$,+%&7ih~iHҀ eW#IA)?%Ű<̲Uz\O X3Miv{U#IN  ' [I{ b;SxieثG ]xxFZ*< Qr!\!uqv=-Sr؁؛N V3;bq#޴Յ, $  >[YH/ :{p-S _%@\[F5#  QƸEQ ud؛M& {9!oeńkB3|_`! A!Kq2y% ao fƄM/RQ!PzQꀳ [_sTIxN V ,Z9c>d  3?THV` k8H"i%&jƇ wHNV !m|ą1Py 쎀7vPP+^0"> Riŏ.%EWWE"|Quiǹ_$-,''8ih~uǗNҀ eǾW#IA-E%Ű<̲]\O X3Miv{U%ÂPN! ' [P b;[#s„qثG eLb/A Z}nj$Ɔe$ÚATŇx|PƘe7? PĤX\Zi]ÌK T;dzK>{eq`?6Դh-*y. [œĐ'z+³-%Z/Ͳ=_|'4ݱ"CŜ? I5_IJ}^. F&0@OZ_^WI7+" G &9Msݲ[ RMGA<4,"dnyiP #(+.04{hWŲW 'AXckosx"G *t/g1 cX1;](:Kc~;:À G hE^?#*DN gM5#s̹VqƱsO+$:'&8K+ƯF >Wn:$ƀ4.x_]ܨl]R4É%^W K VV.* ; Sd \ӁAQ {# lX9 a 5i,nr6 :l~yV$ f+Ƹm$ 4eC CvŇjb3-m AjƁ&)p< +3H  4KVOR mG! %| 5OVJ0  +,# - 0݁' 6UkoU=t8mk@         ##%&&&&'''&&%#   !#%&(+-./0235555532/.-*&#   !$'*-/14:c^TʽV0-)$      $(-B^cS??mطv7/+&"    !&+1Q׿T92.)&!    !%)/6LX=71/*'$!  &.-(('%#!#&,16wkO3,(%"!$(.5Lm􍃓}cI1'$  5߾nS:.)&#!!!"$(+4JdհbB0&!  -eȆZ;1.,*+,/3?dm?)#  "F}N=8878;NzG+#  &LWEBBDL<*"  !*DdRQU4'  #-8jq`uR.%  #.:\y5*   $.9J=/%  #.9ChA5*  !,8AQH:/#  (4>K`uN?3'  %09GTjTE8,!  #-5CP^nYJ>/%  )2=KZfuPA5)  &-9GUaqI:."  $*7CS`q?1'  "*5CO]xG6*   ")5BO`u0$  '1;SOA4'  #-8ISE6)   &2BcVG8+   %,8dYJ;-#   *3K\L>0%  %.8ucP@2(  )4HSC6*   "-:l`H9,!  %1=K<0#  (4Ad@3'  !*7EC6*   "+8GI9,   ",9Hg>/"  ",9HtB1&  !+8FphB4(  !)6DSTE7+!  (3@K|VG;/$  %/0)  !,7AOkl\OA7,#  '2:HWk܅o`TH<2*"  "-6ANYurfZMB91(#  &.:EN\tᶧtaNB91+$   '1JU`kyJ&  &,6@KVaoz\.%  !&.:DOZhu_3)!   (2=GS`q^;0%  "+5@LZl\B6*#  '2:IWhdK:/&  ".8ERbzG4+   "+6CRc8.#  *5BW;1%  *4Dw>3(  *5N?5)  +6RA7)   !+6Qނ@6)   !+6Mh?4)  *5F~M<3(  )3Abέ{E9/%  '1=R񪋆}Q?4,! $-9Gbҹyusponmmmppru|ωUE:.'  ")3ALvֽ}xussstvx}ˏvniec`^]\\\_`bdehjlorvvvvrmbRD<2)!  #.9BQsǾzuqlkhfccbbcfhmpw֚ũvjc^YUSPNMLLLMPPSUXZ\]^^]\XUQIB:4+#  !)1;DQfrvwtplihfc`^[YWVUTTUXZ_cio}ڜ|zx}~qe_ZUQLHEB@??>?@BCEGIKMNOPPNKHD>81+$  "*2;AHOSVYZZYWUSPNKIGFEDDFHJOSY_frxroljhfedba_\XSPJGA=9753210123468:;>?@AA@>;72-(#  "(06=;8766689;@DKPW^ex˜ylfb_\ZXVUTRQOKHD@<840,+(&%%%%%'()+-/0133320.+'#  "(/38;=???=<986420/.,,,.026;@ELSZ_g|oc`ZVSONKJIGFECA>:72/+($"  !#$%'())))(%$    $(+./0000/,,((&$#"!!!"#&).38>EKPVZ^`bb`_[WSPLGD@?<;9987420-)'#   !#$$%$$#!  #(,27=AGKNPRRPOLHDA=9630/-,,+)(&$!    $).28:63/-*'&%$#"!      $(+/247787530-+'$!      $'(*++)('%"    !!       workrave-1.10.50/frontend/common/share/images/macos/Makefile.am0000644000175100001710000000032414221624107023235 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2007 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.icns) workrave-1.10.50/frontend/common/share/images/workrave.xpm0000644000175100001710000000355114221624107022472 0ustar00gdm00000000000000/* XPM */ static char * workrave_xpm[] = { "24 24 78 1", " c None", ". c #000000", "+ c #161616", "@ c #2C2C2C", "# c #232222", "$ c #8E8E8E", "% c #DBDBDB", "& c #FEFEFE", "* c #737575", "= c #F5F5F5", "- c #E3E3E3", "; c #4B4B4B", "> c #1F2525", ", c #D59696", "' c #3E4B4B", ") c #5F6161", "! c #0F1212", "~ c #ECECEC", "{ c #A87474", "] c #FBADAD", "^ c #7D5959", "/ c #0C0A0A", "( c #675454", "_ c #B1A2A2", ": c #150505", "< c #A9ABAB", "[ c #323333", "} c #020808", "| c #B78989", "1 c #080202", "2 c #5E5858", "3 c #FFBABA", "4 c #FFD5D5", "5 c #5F3F3F", "6 c #A5A7A7", "7 c #D1D1D1", "8 c #3A3B3B", "9 c #C7CACA", "0 c #8F7979", "a c #2E3939", "b c #A6ACAC", "c c #505050", "d c #797777", "e c #9E9494", "f c #E29696", "g c #5F6A6A", "h c #A47676", "i c #364040", "j c #553A3A", "k c #654545", "l c #FFC2C2", "m c #422E2E", "n c #BCBEBE", "o c #231818", "p c #342323", "q c #FFCDCD", "r c #FEB3B3", "s c #E19C9C", "t c #1E1212", "u c #C28181", "v c #687070", "w c #2B1D1D", "x c #FFEDED", "y c #656B6B", "z c #F7A9A9", "A c #6A4545", "B c #795252", "C c #534C4C", "D c #EDA4A4", "E c #D08D8D", "F c #736D6D", "G c #656565", "H c #B4B4B4", "I c #CA9292", "J c #FFE2E2", "K c #444545", "L c #9C9C9C", "M c #6A6A6A", " ", " ", " ", " .+@ +#+ ", " .. .@$%&*%=-@;. ", " >,' .&)!&&&&&&~&-; ", " @{]^./(_:<&&&&&&&[ ", " }.|123456&&&&&&78[ ", " 90&#a11b&&&&&&&&~c ", " [8.defg&&&&&&&&&&&* ", "/hijkl3mn&&&&&&&&&~o ", "pq]rsr3#n&&&&&&&&&&9+ ", "trrrrruv&&&&&&&&&&&&# ", " wrl3qj<&&&&&&&&&&&,2>-2?-3@.1>-2?.3@/3A04B05C10<+4A/6D27E28F3+8(.;*2@.5D17G39I4:J5O&1#,7'6D09H3;K5O9?P:''1#=L7@P:AR;BS<(1?->P:BT=CV>DW?#, +7(4C0O8BTL`EOcGPeIRgJSiKTjL!*"++7'6E2J^DNcGPfJRhKSjMTkNUlNVmO.9)8G3DU=H[BMaFShKUkMWnPXoPYpQLtRNS@fbKGDH pHYs  d_tIME 9%\(IDATxc`3`$_@PHxDj4 305C86 pE$##)8k@iiIt 2pE,H98jYYET JpUXe8jPQE WA44 `H M!a-8ACAtttFF^ M}}M8$HN OC4. FF`h0@c,,, %iXځV 07PH=Zvwsq,@3@@F 4’ECB#""hVDEEY'y$&%!8?=#3++2[='7/ j%9eɅ5TUGԖ746577ҪUx5O3X;iӦϘ9s0{yf,\Txe˗V]e|M~Au7lܴy0!jki϶;v.ݵ{˞{Au*v5>HbIENDB`workrave-1.10.50/frontend/common/share/images/128x128/0000755000000000000000000000000014221624437022134 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/128x128/Makefile.in0000644000000000000000000004472514221624201024202 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/128x128 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/128x128/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/128x128/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/128x128/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/128x128/workrave.png0000644000175100001710000001642714221624107023415 0ustar00gdm00000000000000PNG  IHDR>abKGDIDATxy\TUl **KK{feffiZi[Z^3,T375 DQ} 0, zs9Ͻs}<dddddddddddddddddddddddddddddddddddLZZ 3 8S`",Wr@>p ~.Ԣ2` D9[R1[4Ь.EFwJ g*1'Z- xkQX5W14}C[n "!!A,[L4nܸ̹"((H.K LMM+4V{sxJ޽{.ℳXX!z;wUVR$S FiFZJ# ~D |zQ;=K#ҨKӧHKKӨB1x`Nj*Uy󄵵̬BT*EPPF0˪2i0{gO{-! ļX=6*M謘cǎ9sRYK,̛7O[+Tmy43 xk+ (xȮ SNUjbܹIj|]F󘘘-h5}\MΘgj GhڶmK\\JJ{avIAAAesϱpB<<<>3w-UY,.,5R?mWǍ[zea MPRf‚BywhӦ #Gdo`jM#,U@n:ڷo[oEnnnc8pC!Hm@{7O|McUr۵kR$))C#ա3͚rr|#c9|:aQT۷oώ;K ؾ}{ W˪,>pwn÷ ?ǵ767?5z };I)|y=?߅'''>ۃ3K[PP3# kuBOހش7cP`ר1֖VfnPp(dhҌ{/ͦeӪ+[0W60233^r>u'|ݻw@퓼&+ѹ@@W>@`pzX`}Z*l$k>W@޺ EE$gуH0kZ4R€9` >S`ZF:[?Zټo>$!+++W-_΀8zhE;ՏW4,?+@o¢QUNt=w_| =y$B"fTT)2bUeo2bDfښ.]@qq1R)H25!!ÑZe3Dw2 竺_vX,,+ɡ,Cvpr8rSdddpl/Baa!H3.[ ҧackkk-ZĬYpuuĉopu>|8o߂~pwjCzV&Qܽß'xG_l,؞x J%6 6ۛ &K/?~HwmH(z!@;VнҎCIH;5Qq߿{nmۃ˗/e0Rg4I&~4!o8&;;[@tѨȭA_봐111<Ō1s Ļ/*>%:{ SS[oUeK9shߓev]*ľ}o> AWZF%ݫ}* iӦ [739%$3ͥ\Մ 4닍 n.K`ʨJxU66e5v W:t耝Όܹ@&Mˤ9ڷQOՖdeed=JL4I,cP"W =8v֭[Ybb" gNjnbժU憳YQ+j-ܯUCRSS Wvttԙ٭[8uff7H1Vy ޲e˸zc%4*6ғ@C$6;lڴ Aa:1 }SѾ {j^cz<˘y>Cp||<3gooo"""XVS7Laa!۶mcɨ4##+W) ܜUٌi&*8#ӘR |]ʨ--,,m tm6ُ|] g:t({H%Æ c߾}?_D25 8FuKG^4%r3Mܕ˱5S(] g* WAnݪtŋٷoK.͛ H:uc[jtJN~tpⷿ t<ѣ/?,YŅ+OFAë,Xƶ( 8rFf0C,Oδi !+K㵿# P릳7н;LC{=wlhmKz ҨUǏT֭[s ha̲J@3[;w:RF-νtve\i\\\)pµ+dduZ\Oź߷ȿu bJ06(w!yowl&A1dHGx ט5HGn "ťcc/] ;!K[tiKR?Q*>}Z}W!y.=aAܹε[7W^u&G}f׮]_izG3߿Nʯ(J-[+)[)mi:0#;kDު-KY?X0]b`A!iJlB#G+4 Jgom~zmp] B뿔FO]kbNH <ϢGlϟݴ9H_8I20z RTozNp!Yby@6FM'GZ;`@מ{cjb\Σy}ՇcggGrrN'GtJ?LdRsrPCQ'9u7>틽"7u.S >pi] iT9TŠ 7Ғqe \[ƣ [8ҪyK5GlWY\ĕI\kW),t(111aܹ\Y%rVRø \Tۮe-Rkff& "BCC8C#**Jiܯn޾pn --z ]|P}ԼxHگ\O#ut֍ݻ?0ѼxFM| 2y(VyG^XT 33y$$)%SHȹ+ ȽM!m4-ɳE> )\Yn]DdtĄɳ_Jw54BifH l ' *caK+ 4"'/IW>|8!!!hGǎ)**bʰ1,򓴘BM`g#+k G'\5,/(ݻHtG э7=6l`Q`ă(WPZ7=& cmqlּBBEddgq2 L:E?Lvn-ck[FUnl;cQs+cz\_ʛS9mEJ%g$%%-5--yW|\=ncmDNvGS,*On\vB+X%SGB$'&< 牽tKׯxJ O/T+M7?W׸|37qkVgϞG*胡ƪ,ߜ4\9y^@?g9sسdonG^@R)/ jޒ6-[ơg.w"ǎ/0R%}:ݧ#Nxeq1vp[yPT`Jzˆx8VhҌMiѤ͚Ьj1G#ȤLk.ǐj̘3z뎾=`+'Яs7|iTpet}LˆWO1=.\ T-~bO0::4m:uic;2yٱcG蠟Cn4H֗%KT*䍉/,W [ˎˣ'T >i~W֯_oP~\]]߿?ڵS=k. %W4'c0sdܝHfb֭Fɷ>Hzz@6lؠWQQQL"׋G?c\yD_8O(TgQk [)6gaΜ9TxޥK5j;w(۷J%ӦMcܹܻwsٰaܻwڳfF19|:<HpL7B+,%\ Ͼ?We}liiȑ# WWW͛7ի*켏vЄj?i&yWr|I]&M8q"O<X[[STT͛7 cƍˇ~I#=Ҫ痼Łc^a'|Q)%E^hnLoԨZ"++ׯkmݺ &,Czz:-ZP>+- SFxx8͚U5zнL;/駟d=77PVX1g*ݧV/Rx2=xvxnGk<]XpJCvP,0i]/g4JBp5c$FL| 8 Dl)"ԖXܹ3^]㏪ϭ򰴴gϞQ*$''ӧ$''GԋH*kN7H%}I )FrQ-TaO gZssq;\~ S\яz4DZJ6ӓ.]Qaa!=z̙3RS){,}.Tn~8TQSv*\EH-[B,^XT>77W7N[X?LDZvYsx^1ɅlSɶɹt$RwT[.>/"[U,-[&RRRʭѵkWʋFBԕlAr>n9k9;&aHOԔ.]G۶m155߿_'Z ˘jZ)?vI!Rܣ<*|# Es$3_E@RՀn415IENDB`workrave-1.10.50/frontend/common/share/images/128x128/Makefile.am0000644000175100001710000000014314221624107023067 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/128x128/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/shutdown.png0000644000175100001710000000165214221624107022465 0ustar00gdm00000000000000PNG  IHDRabKGD pHYs  ~tIME "-ޅ7IDATxڍAL" +"tҊm46ͦic{cczh^<И64*qE.̀23,#L/knwӗ ̼b^TvŢ!"B8.u}+  irXWԋiPUugݹqh`sӳ?L:JHQhkH䣕85+=w_ti; 6:`8 : mmm[$ܼlf㷿hhh!I6(~;0S-NNNv}r]mooת*ѰG:y$4SS`{{QTMl6[2 $M`s8*< JN>^}MA DQD&!,rR$IjF*Ot)4>cyT |5UUMۇ/Չ(-..~S.<Eq<66l6F_i4KIENDB`workrave-1.10.50/frontend/common/share/images/workrave-sheep.svg0000644000175100001710000002757114221624107023577 0ustar00gdm00000000000000 ]> workrave-1.10.50/frontend/common/share/images/16x16/0000755000000000000000000000000014221624437021764 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/16x16/Makefile.in0000644000000000000000000004471514221624202024032 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/16x16 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/16x16/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/16x16/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/16x16/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/16x16/workrave.png0000644000175100001710000000034514221624107023235 0ustar00gdm00000000000000PNG  IHDRabKGDIDATxݑ; 0 DGUƐ&gZHeTXGnaIO"i1S6,b|]@ <;;fx*͝V4)7e6*yk daOӨ%ݻ;d_XZ{R;L2SRk,#}qޞ-=!>IENDB`workrave-1.10.50/frontend/common/share/images/16x16/Makefile.am0000644000175100001710000000014114221624107022715 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/16x16/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/workrave.png0000644000175100001710000002010714221624107022446 0ustar00gdm00000000000000PNG  IHDR{\NnbKGD pHYs  ~tIME (q0IDATxy\UGᅦG5q1j^[3Ɏ9&v6/mԴ/Cߨ݉騝܌vEA:uڇsǷ>תUVrpX9{Үn+2V$uw ۽ dKLt+mǙm;wG&`K oK+ yS vcna86QJ y o:ylEm7WBE\<1;p&.;ϋk3{RNI{h"O CIՓM"unV"ʀ.|Mm+P;=i uqW)-}Aun>𬾁+z^u)Z=zMeN1U;JPRSO96]S sk TҀ*0 By@!νx'n h;QjtX&P!H HvԵ)I ]w| | \ z]:zRו܁m6;qj E3}sxKw*pϨQݻ7,^'N%p0tP^:?@rr^I".WNwƛ*'&m4U\.I/ΩԁVAVזuƒ%K-GBB֭`ѢEL0归֬YÜ9sشiz+x3I(/M禟}ndڗ@K`e}(@.f֕U4՟_$ȁY@WOɓ fܹX?|@```effҮ];"##ٹs'駟2qD.^(/&;)9Ѯ"߮ %չZx8N!_@9@.IT%̀8PQŋ?~KGI-3g[?sә4i`у\y_"t#rCRb/M !UlJ!7 h CjgF[r!@5b`͎?2QVV<~vS Np7h 4@  2=V)ڨ@ 5Cޮ1,N @ pGB~3Qyݻwg̙ra"##믩^zy\pҥ +W$55Z`` Gq*u{C=OpWE*% A mڂoje[oyN7m*' L,X#GPXX_|A^hҤIՔ JIIaƌ1dFMXXXivɊ+XlItr+v:s;6Tr_s,1)y6EQy"DOViܸ5SQQ| /gϞUo,A+*vv]VŸ.Ծ] G6`=mhX71WϮC;;o';EEEi&+((ҥKc|f:ucǎ$%%[Ո.߭ruԖ.3?|VSS5a%?#Gq/^LF\OLLdԩRzu %..~tqc)<<͛K}Dv!eUS"c% DؑZtՑt C綻pW8lٻK'g֬Ydggl2&Lk۹pT(**ԩS|/̙3t҅k")}VZ%/%ݐ'mUC ( c"L(/< ,^O)w/>>֭[~mƕ+W{w=D׫O`@y$Gff2.fPvm3tJU#Fӥ-a6*mQdר:B"98 '&Q#ĭ%cgN>GQ( 2|___+FѴixwD$~_LY']/)6rvº!^i׉vM[:9A͖'cD5}:w $˓),"""HJJZj=hΝݛ|y[rwpp;O"۹*b}ĐbhnelYhߙ-ZS+4Ԍs\̽dL8$?ĥ ۱ :vݿpymF||WߨJZz5cƌQ#$Wg 'Ց{ad0֑ZTĮCe1,߸ˬy=  Ӱndꖕ0sLΝKII~!)4r\1$wwQKz؎+2m;1y\u󖙎> E{^_4{lfϞm+l~IM._U3yj|T[il{!Oʻt>+E/Nz;D^eN2W s?›yѫW/ޫj۷/<:uF> 1 3U1*[=և;Uek 5jݻwȑ#>W^uI ""h2228uLJ}ظk;is .\on ddg1~x^uAjբs 6iӦѱcGʒD!Q6sCnWĹPj>3>3/^̂ \>ω'8x eq49 ?ܫ9> ~3 VmHaBXq OyçO2}t>Û N~~~1]vѻYy ruٍi"F'oV=\Ƃ?^Z.o3YgWnήjȄrcՃYl 7ջSW+zX׷/_͢ +**J-׫@oݼ9P7JXږ_UkuG81ʕ2lDFFoӦ >e-ʄΰqdڵkӤi \eoq˙ t[ošCn#; W^Q/ĵ &9\*!w3BL]:wC\.֩YZ/<{7w}qyU[ƎԩSq1-)Vdts2 Z>4zhlٲ\=JhZ7ir}hh߼)((h&ըQ:0\Vn_ىqw#_R)yia$Yŷ~[zj3槟~bhhnB+III[)-IM6ŸveU+q5`?݁AOO Rڹs'O>$ .dӦM.Nٜ={ .{QPPCG3w=l/̝;3g\[ioRl)ܴ*M+^þVΦ9d/^ĉ>|˽1cиqcbbbx73g{۸Rӄiqe^{ʕ#-93:7W)g۵ժӡj<&hԄgggR=(㙙8'LJ;vPTTDNN/"EEE<161ywOtRΝ;wm%e&N奫et ۉoՉ!жi ~/ONf°1;vq4kh5Siq|{>Ɋ+xq{[mF޽unLhu k7]~w cy 0a. EG(~_|Wn'3 D*U0+f&0൧ ^Λ< }Q(G6(> s/叫i0?]GJoy֡.]/3{lrǹCq5qM=ޢQFoގ]2LJTF3. ֘J+믿NVxU(l.iUj\eBaspЧOnU?̊+.Uf[!\uήrV_MzvUjFzq[sl2utn,BWYmYAAO~Cӽ4b~iyZMyS]iRLJ>U[Q( Y?K뮻6lX/F4k,UuHS5V 8['Ls* iEd0[rn׵PDD!m|H,)m:CIl !ihjݺzcŮ Ku7_i7iT>so If挘+7ܔ*ݎKt06 {mL:q*K[$!!%ѝF6lY@iz;&VYe]%ti 0ລqiժU۷On `w vàp{T8}n.Y]鼠')JhРA߆``A(X<hq]]~eޗyH(|몢'Oҿ5ČN}N^sUp DL|s_&Rvem$˲G1^-+3o<:tWp҃k\`|yO>YDxi.[q['׿ӧӰaCIt}ѲeK=Dʹ4ԍ" !!` d|wI{"?n전z 8.JuXkrrrne7ٽg~9_?$.\׏!,ep17gp%)lCj #K(s\|d ^\}es*Eŕ/@NeA'҈cɒ%ܸq#={dϞ=<7)Wtќ;O=剣n1SG䠈 I`6^fݕNMW.UjѢ}M64hЀZjsϕ*r'O. --\)S0|p/^l\>YEÆ _">>MKJJ 7oL6W\sja?7i$.o)=3AD85A(;;oL:T`ڵ=K,b*;jԴhˆ mص!ێbѹe5kI]C[Ya \Y`[pnEMO<+rpv`H:&.Axod; vY_DЙ6[=zxP2ٳ'[nuɔ)Sx,$֬YG},Dm i]}<bO#gY)[Ӕa5i uQzsrז F9ɤ%WEaK~) iX qb}zu\,)Aup:,O`$J>pIR@;bN0 u[JOO'&&ƭHzhܸ1AAA䐔dR8&NSE[鉶Xo%ah> ,s֓2eJVGtՁz저5Cp8_&rʵ睙>X5{5zPֈN|}}>}:3gt난OBBk֬2;ӬY bLعIR¾GVW\+-dMQsܣtw%=TԤH0#Ĕf" ݴ :v3֌DFF2i$ƍ^իW /22 p 83|gO"|g9Q?;U]@_qpuVW7}G`SAr5,;M*>QHN4iBQQ'3eu4;/MU2*&oOXy\(PӓJ мs솩K#)ҹ](3QUM`a[6'=A+ûo(&Y,}{;eYu^V25 ճTvR+v)zDujup]-pvOM_uTzVzD{k4UNl8XG2U ::wTLLx;^Q2# v1;U]p]`T@[͍Z&um\C]0ti@{ :yUs::'/D}2 Om:ԟKJ&ɢKmGuu0$99.mS2G9;c}P1Q(ʌ3~?BiQMbX$YL\&]CLj9^?[2zn9Z`K.Sһ `)zOL~c?æ/r];kә*"aثߗZڱI`ػ7ma)MJ)-1tDv=E.:&`LdW'pW_}VRݝՎe*ǓN*`p; Zz~ ;To2jxxx0_Rۮ?QRzX,}vt`umsaڵv; [Ui 0H$ER&@1K,!77磔~ Ťa|}eR9-8(a,)*FlicYB mB iaaZ&ib#>~?{QViƪ+K'XY/Ov3ѱl+iWyDM)$zb_aVMvS_v,~7*%%B.^:6g7`kSW~㱥9x\G: *@*$yhakc8e)DHۻƵGRoR)QJ . |]PJ`I;9*(PQI) v9j"&P xDIJ,BTVT q3.\F֟,*Q@!*}mlL:Xdؖ-mN") !gNJ*î&ILĴ3B!ٮRX҄Sf2ٰmi#B)mKA` 4gLIJLl[bv6Ialb&q@ 퀖B!+Ė6J)LĶmZ*Pڨ8Nq̤eYXT4BiiaTR BZ!m mHO{akF3@OOq#3K(syZ( ۶1H0EB2sv`233OfH.((@ pm<\eYdddLT_ܹs㓖m&+~~~>PӧO{# xWZdgg_y摛˙3g3g477sM7M>??{2#G6eX,ht6q|EEEdffRTTRH$ٳgɓ}¦Me=z![l'NvenSTS/C=أgϞu8H$!'~/<#}NٹsA 0IKƇE5p`ƍ?H$Bnnu,o ODGeC=k׮ k$5גrz+i,H$2 *1`+Zo۶mS }a?4,cgZU[[1`S ]o"n`?7P|e˖8zxb įyV*8SOgvvÖecצ"(u0HKKC4)++#330x&LR__͛G}3kFeexɿWmH)9qď~ 뤳}K, $)w^uXnJ)yl޼ {?}hH)Yr%`<!hoogTM{׮]^JlfϞ={>ڜx߾}v]wyGG]__=D:"Źl8&Oۏa^4mebxŊ`YH)ٵkuuu::(|…`0(ӂw\E9`憋 .F[!''t:::Xb---Z !Ga֭?~5kon:;cXŋ=㏹t޶q0(20d9:pI)oy~DtoqKJI}}=P)%eee455!dժU466illIJ,hmme^[oQZZRB0[oEÇ lذ)%{qYvҙ|XnSJ~ _{fҥS^^i׬L*sϱi&bΝc#P(iܹ{w˗300>K$apppKKr`YQ/5f˲%F1 _8XN<6֯_Oqq1455\*WW!TUUQRR?˲HKKc͚5;v!"w<|!(//GK/䲼puѢEwy'崷c6myws 룊cPewmOD+_v.:vm?3\;wA*++ihh4WzC^]SSs( 1D)E4%7lGY%ДRNgg'tuuH$F"ȣN1tBEDii!fyyy;vgxjrD]],T"`"8eYf>J%>bMs8JJ Fx1E> ":J'ND-z+"U*Pxn'ggEv^^1ٲ_oA>#IVL<{"JsV+/56z{bhdN'j$=OVTnn /\@;t9cU>~gQ$199$8vC+}D+$IfV*HlnBVNI x MM“Zh48z0tfW ,˹"sy9kFj4xcC+d21m*dWpl&}qIŝqv䜦qb$ ewwɲkjh5|3ul>]+o bnNOO3VOOKKd(ijFcFE|ɥ,x  Ie[[[:Zoft*++7򠛨 OOr_yqQIENDB`workrave-1.10.50/frontend/common/share/images/network.png0000644000175100001710000000374214221624107022305 0ustar00gdm00000000000000PNG  IHDR00WbKGDIDATxKl~cbm$bD` j(D-«X "Y`E؁"5HL&hCv7[upUe7G{ν****w"omo^999) ÐaH]e>/lrqqQɞ hg'Oaض흻 k.__"d!IJk0hjjbbbnmUeI˲B ! r2l6+GFFHBt:-ވ:CCCRu955UNO>EQ AwY)) He d_av˗ɧkO֬Auhmm:l6[btI ,85!:7&&}K)P0JV dYRrP\.rxUQB! ,R i^Ϳam Jݼ{cBBmW4=WUuY߷hRFzP(H1:pˍ`0Xl3C7l,wkZZZ0Mb4McvvvE1޶mEh  ISXykP˃rSUKB`KI@UAQ@J,v.B}|m0 7PHt*߯^ogΔ.?| /rbYOJ299IKKKISa6r߻wSN]=}BH$4!٦p8L*bϞ=e }=3M$c\4 e-yJ?€bDKmZ 4(;ގ߷o芭F`0ay,"xmB;yH$7iCqjBaZDIe|s 1:V1R)BMx V}d従e@*_ IENDB`workrave-1.10.50/frontend/common/share/images/lock.png0000644000175100001710000000141114221624107021533 0ustar00gdm00000000000000PNG  IHDRabKGD pHYs  ~tIME HbIDATxڅMHTQs4Su nBJha4Cĩ\hS۴(WahAAY,hV n$QF2ѹ秅ifA/|9yy\`/, ^ۨ;;;wj Sl6{ONNꮮ.H$ld2&LN/mMMs /ccc6J>pw~hhy^{Y7ǭ1pĄmjjt@d50is0(5;Zy*B!*"d'QKPlv#q9: h]Bi DH [VOO.o5` ZiRR@)X,y  \wb!Ezzzhhh c0Fu 4slo:H4EJyD"d{{9`Êc4X`# >uI^S2ӧ`fd%lkog_ڪť%޾~B^6}?| ੮\\Dy([U.WE٬D(ݰ9;OL{{H&Q]}55lxr:yTF9znȭ-ZE]  ]͙!ʲ%ˡhZ᮪»o ɷftAjF4O$4u0d*i \ iru SS^RO+`,c,;ڠi B]8~0'"LIENDB`workrave-1.10.50/frontend/common/share/images/timer-rest-break.png0000644000175100001710000000073414221624107023767 0ustar00gdm00000000000000PNG  IHDR $gAMA abKGD pHYs  d_tIME %$-2YIDATxJAM4g6RA`AK_|k($HP0MŻXw]fvFԴ+xh mAY|').i?.k{22FN)8 83C,m_ITc ;1&Ew }@`Bc.MĀLx<;,]h A`xso ..~5HV/׌g҄I:{աSJ0Jyj%J8 &-XC-r q?$BW7ٌh3g ͫ}^UIENDB`workrave-1.10.50/frontend/common/share/images/display.png0000644000175100001710000001052614221624107022257 0ustar00gdm00000000000000PNG  IHDR00WbKGD IDATxݚy\U?Nu'I&20  "(alA`BDQ("H',4 תz޻Pi: xs~}}-MJBccKD۱˶v8p,pd@cn*@ 5} ܾ[@&K)gb<$uGIeIϏl7C'F tL;8l6{S*@J !*75h }#OJi27sTS,'t"]Y2 R 9}RԹm+˲RF\5yblll) 2e/*lJ)DQDEWfժUy.{6^r19T*N".BozZ%d~6o y4sj/ޑ>}:|D"8!0`A)p{a]r.`pry^{m.RJFFFBOA*[o*K4[_/2fyI4u5od(7|E^)jOufqAV3::yurT 5eɆ7seKEr_E:yt0z;$N" ՗̎1z ^.)Kz(Ba$pl7a96jW_{6cRH0ئZ)1|!v)Ѯ^;> ?B+9c3 3Yos$Y+Wm[B6BI:s]S+!1FuyDh-QDZJe“?xT*`%3_Gt(%z_/>zhB7C,ɬgs19sIe2t\lò ,)-(#Pj >j2@)DQd&H)R?I){<[g+3o_@T&K*'≺жigH`#!PU "n$XRaE r4IS-#?P$RJ}x}*/sE:\"7wkEы/di,# ˶B)XMc"T_E!Pv B#%حzK $´B9=qw2g~tדZ}6>(^=%v gŷ}8x:K,#㩗wR 4A 5? C DE!a}ac [&~ m8yضM#=z.[ʍOS>UGu.']N̙H\vi PZA5  q*~H;i&"ǥcZ\)rtN•W] ?ϒ)y [YMP.1>>' )J/T*c0EKc* * +  =:46(hʬی-$cDA@Eh FHۋd8=qA!.>|g/C=IeX3%9_{߹,Q e,CұIIt|:Ag&L P}G!cDPX,R.bA±-f:o {f3srkn<銿g./v _v'D̖xq ϫ ЕMa WA_7D}hۨDۯ `BTT`>זHR8mq@`0X%Df4o?5`BټAD8Ƀ1Gɘ`?&ۅeKTڅҍ ]i[TƎ0+szv*Ȑlx@",Iu=&ō (3/=ygϣ6ӧYWijǞĹU90CG.^./ qAdW~hp$C,4ҡNBR bD-=/x8ƫ_iGT^N=JPcR3ѳn+cSQ*G,.ṕ;5Srvp*"ϴ{c%1Tu,Y}c mcTX51xs~Ehu@I\:F\WKv`48;Ad #x߃+Wܫ޵>>sc+s!0w\5Мf"͒f[=?f6'6~{6sL2c(fRR^֮]\?-bc bD/={6xQ|gƍAqr㸮KVSuQ-7`۶mtvvrYg1<< /@EL6 ϳn:f͚gAWWk׮eڵ$IMFWWX۷388ȤhBdlٲjڻ(znugB)%(B)TU* r!n @ww7;wdҥlٲ3f X,tR~i$cXb˖-Z2yd0dhhٽ{7jZFT*zzz+*===Ur`Ph'T X$ ̙ӕH$ޠީPr(F?NjnȖ-[RZ؆ }_Λ7%bnFZ@S]b}A } `ttTEQd FRl[+b?YiU1@@ʟ 4l7n`IENDB`workrave-1.10.50/frontend/common/share/images/24x24/0000755000000000000000000000000014221624437021762 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/24x24/Makefile.in0000644000000000000000000004471514221624202024030 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/24x24 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/24x24/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/24x24/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/24x24/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/24x24/workrave.png0000644000175100001710000000143014221624107023227 0ustar00gdm00000000000000PNG  IHDRw=bKGDIDATxT_HSQvs`S :AR(Kt0ˆ:SO=hb (K "tAȋCQAzs&C}?( UU%(BKEQ/_QSUcccuBFQN4iUUi{-ızxaWe !M !hF^Txg׮apGݎD2YtYe@mm-># >uI^S2ӧ`fd%lkog_ڪť%޾~B^6}?| ੮\\Dy([U.WE٬D(ݰ9;OL{{H&Q]}55lxr:yTF9znȭ-ZE]  ]͙!ʲ%ˡhZ᮪»o ɷftAjF4O$4u0d*i \ iru SS^RO+`,c,;ڠi B]8~0'"LIENDB`workrave-1.10.50/frontend/common/share/images/24x24/Makefile.am0000644000175100001710000000014114221624107022713 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/24x24/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/Makefile.am0000644000175100001710000000103614221624107022134 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2005, 2008, 2011 Rob Caelers & Raymond Penners # # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 macos 16x16 24x24 32x32 48x48 64x64 96x96 128x128 scalable imagesdir = $(pkgdatadir)/images images_DATA = $(wildcard $(srcdir)/*.png) $(wildcard $(srcdir)/*.ico) $(wildcard $(srcdir)/*.xpm) svgdir = $(datadir)/icons/hicolor/scalable/$(category) svg_DATA = workrave-sheep.svg EXTRA_DIST = ${images_DATA} $(icons_DATA) $(svg_DATA) workrave-1.10.50/frontend/common/share/images/micro-break.png0000644000175100001710000000646314221624107023012 0ustar00gdm00000000000000PNG  IHDR00WbKGD IDATxڽk]y3gf<cC1SpҔKMQ+VEj^"&JFUUHQ+ZA&?FДIIMBH -$@=sٗu폽d:=閶3g]oB?,g dn!4MRRUBJ>L;@ h6u@~hp6s?փÑM..6k&SO)0 !™eYxoG^ pѰ/aua})eظaՂg`Uݷ7瞿<zu4 alU26I&۸=r>k[;p.@3IlN=T )۶oݗScMg0UPJ5GBt]{\Cr0.uNC( !@ՙf&ɋo4!xBpH/i RB`u[;Sϰf&l_[ҏEFc(sB'A%q{{5"'zm |}ֱft5#LzDBwf N h&)=i#5Sb52RY.Јzd켍\5;!d"={&MvOemH҅` aJUdD#p#duπa!YTs$kҴ"wٵj&Ǿq>bx^@p핷jSY<;!`tN^O!IJ!T @"Pif8ٺ㧸~۸BQ $ ^{oz4Kwت_kpAw8Qΐd-B@ ,R5*Y`E*!4H%o`䍗gq`,JN@OVFZVk( T$ZdCkt]>/o'J~'MIgf ]pę [` Z@ed&0W5l<{Z!ġÇlJr74v>*m}͛h cdNJ[[w]ȺHc$I]{]udJ.NJ&D3?pNT*6$%\q͘(7ö@*Af T ! 5A42iPSU%?a0 YdӁWʢ"K$U cȄF{un&|!_;-L !U+*QR@$3ǛBDJJm H_?tW~{KLHtf{aO^{FEo-\RIl 2j. xuW/(ӢZD ,I֦Ǚ-sջر}aw\|ImH,|U}-q፡םرIqZwYA"R 9|97%FErt٧St{k>|+,p惿M>7C՝T}NM mFEHI)%xC])ʂ,*Jff9qƔd`Ց<X'Y.΅^Q}Yns7 ?BlÙ)R DJh]us%q:yg~^ZCMi 0 šzK*zw8>93fJC)n~cB`8 LX8ͽy4M`">epЩVj27sE/l.%Rȣ;[t'B0XOXZ֝l$z(RYJUUXkq(*ʲDyF)`7Çٹs'q+3 \~$CCCdYFk-EQ`!@Sg=ƘZ!s0vEÃ#9} ?!%S(SM~hLo]/P"EIENDB`workrave-1.10.50/frontend/common/share/images/time.png0000644000175100001710000001020514221624107021542 0ustar00gdm00000000000000PNG  IHDR0/IbKGD:IDATx͙ipowϥBd;/88c%v%ImvM_UIHa$ej+uJ0僘$.v 9lG Ё9~;ȂV%]TOM? RD䉖Z dxy=ϓW@MX '4l۶ͬ5v' D~߮ _^/ ٞV&d WNt:mu߾ 2rf!i-4|'Y63^}z4?\4x ~hj^%_("TcqzJ-[FcCEň?cy$ҁcSiXξSz'ULg+vO.E族q\Jn&RO<~c(Ũ#^XHb T )%zO<]'W#kη \xmo?s ?GU5b1 #i"G_GUUEn\ȗzd8x j{n[][Wiy=C<e b(2'ٴ_<0X~u=DI< iXi"@\7oU<+\?wRJ/,fB޳vW]~&B$ G¬Zs#tUUi`PD|4@QScÝHq販e JJJP1gy}Mo﹦iQS-<  ]oo}x<˖QYUi9etttG@ɼy~N7t bF?IBX Fڌ.S+nX%̵ ǩ4 ԰dI=p+[E[<>nB |:Џ!3 ϼ0MYgEQy5 Tul|ס)TWx^k\Mcc7~~E<;~C<^O~HiQU|y7RJJ$qf#TyCׇ!+ikk祗^"O?,?ٓ| 7QPPܹL&3*++)++c\&JJJ0 X,k=t:ͩS}N"DQR l Y\ _~J &&1Ӹ> J" HCUU5֭;[?βeyEQپ};Pp8?pt:3if,:.fn%H`J<}CCC _zYy,SSSXE8PK>u'ֵ 'P' Bko{EMyv:Cbn11-y%eHW^h4C=DOOO|G| V瘘LbZYlRǙ䦛ofdlu.xAZY>rH+ 9w 2=e6V6Tfo6ǩ_:}}}\KRQQPqOaan>u44f&6+}pl^܁G"U~1yJ[8x5ܲBBSؿ? bKu)}l۹F8-[8~8Ν)=4MAt9D"hYҨ;l۩Mom L~a;/#-T;x{.0tS]UMcc# .0^~);Qzka4Τyms0y.H7&) 3W H8C'24==Lzƨkװjhlj`~<4]#U(( HCjz{{ 1 !#Sع}b1;^>^/?311:td2I<fjRTXGzE5h4&Ʈ?H4MCJ`4{"4*$}8͸a֮]KUUtT*E,ub(#u("YTUEU4M &I=7<ד=@bE XSr榥jjjbݜ;w. "64-?A1puM1ܨ>i- u#Dz.'I{` s`q$#Hˮ](**n'$R8nh  #aV2=ض͙7ˑC/fC5ׁ/9cOq 10ڌaPʕ+9y$\[9W/[G{{;2@6VVr|'wW76S]DuU- 09:HwYz{#1x)Wa p$UUq?zzˇ/U" L&D"Yx1.]Ɯꢂ"-<;RJN8ƙ(Zn*SUU3Ѕf ùyZJg05yЅtlJkk'Z[[m۶n:$&gΞ8;0bKʩk+Prs{@>Y@51Μ`@k\0uuuw^,x|9D{׈90,KGxi!Єc[i%rs4&-˚ rhv0ء0h"<8pIz{{{󁯆=OOSlrp Lف; U~Hdի׾(Wȑ#qohhjQ ۃ~2@&?U $###xGuu5d2"T`_`cVܣyۃ 2k|Sʫ-ˊO2۶d29!6{@# HXW뺌q=055[oE$:3]ާ3:/?:f͚ζ=s{AzWßѶ<.@B p8q!DىvM /G@*3Afx:3OϦ+v{kIENDB`workrave-1.10.50/frontend/common/share/images/64x64/0000755000000000000000000000000014221624437021772 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/64x64/Makefile.in0000644000000000000000000004471514221624202024040 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/64x64 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/64x64/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/64x64/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/64x64/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/64x64/workrave.png0000644000175100001710000000621114221624107023241 0ustar00gdm00000000000000PNG  IHDR@@iqbKGD >IDATx{XT׵3 C^5G*`DQhAO1QZJFM51憛bF%1R$RuBPA)k?0c~wZ{u{1cƌ3f̘y"xk+m`/ uČ3NXbkU߼Τ(,,,Sϟ`kmé_ ???xV }: /ڵ#Fcj:x"ٶq`ЀAWL/"MD9\ͿPo q1(.^!O),ɓR1w\v 08`EJKF?";:e-J~Ewn<:ma[?i~|vo /d1D6mڤu]gaچM膼=:m7Ws&~s5Ǫɱ3|[%|8n`޼yꊍ޼:s>on?.\K/ԢOO}N̔)S8x@:DebJ]ӧhɤV9_M@o=JDDDGG?Q5JkxXjCk"͛d444K]]۷oggJ%͎-[t!յ%1EψB@?]o@BBBdH eժUg1\6 >.85.?q-+'5T߽FeE'N0݂ul:"g o~O K9љ9Mc'~!?۠} 明B $$uaO}gwTng Zo>< JIuKnu?|3JŞ={ `d@_OR1s,E_gP*ܹ~ :;ݢPS) M!78qnѿn64/_ƍ@ P|[οZL{~vյ}ucƌiLF2alkZ0l4|Ġ7Vyɹ%aHLLQ:@Ro3&*;t5A޾5LG<;̙3DDDtc0뙺jںz<<&ˇ@/_9 ~T:fkE7+IaI1捑H\p&Woq|~(\N2D)*++g>}𤟋+2;w+/oꞷDRRR5swAG!jjia޶z{Wf!a-C`k*k4sO_A~TUUakk۲hkcWL0eڻV01bAmX0y: .8;;NQQO11b40r}կpBք`[M; ÍKߒ}?-I\9DFFrqb||<~!_n# k·{7_pBӞ tU^}2c<.ř8ZH^Ms/r1Lt+6_̚2e v2=." :H,,, BA^^99-\h_iUnN} .iVM={lܻwO,X<C79nu7 2j([[[?l j)p8k1cƌ3f̘y?7mLIENDB`workrave-1.10.50/frontend/common/share/images/64x64/Makefile.am0000644000175100001710000000014114221624107022723 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/64x64/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/96x96/0000755000000000000000000000000014221624437022004 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/96x96/Makefile.in0000644000000000000000000004471514221624202024052 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/96x96 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/96x96/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/96x96/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/96x96/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/96x96/workrave.png0000644000175100001710000001226514221624107023261 0ustar00gdm00000000000000PNG  IHDR``w8bKGDjIDATxyx3dO$ID"DԮ4i=h±v*4PZZS ,V#N% m!$y?^331"KyYY~n`„ &L0a„ &L0a„ZA ` %tp \ċ(쟉Q:um@Y&\JVj/<̀4pqq-,,OeUG-률9Aoׅ~I888h>\ܹsG{?--MXBM.йY7V[ `0P5sUbOV&]fM/_a>|(233'W\s!joB [ hG$ͳbڴiQ"$$Dj̟?ʹ+kyd98a{Rd=).l-O'z"2n#H3/EQQBR)"##Evvv5BQF ???1b{n+JJJD||X~4h* Wg d%/{XxS[D4i$|||^ dee3fBQv3f L]^y-*|ށ=CtkH,*H;P'1 iW111;;;BBB e4\?PW`Xp_/[;M`ӿ-6nHV,>|pޞN:go;믿boo ꇴA|.q*t-Y+TٳNOO .͚5r“d_~ԩS/lpr2VW S ܣDLoʅwЁ J%J\mڵĽ~d@셳jF&1qD-[$""B|3@}Lc _Z[WHJE$)=86VL øAñ4ޭt>Z9.+3f 6lг:Ϗ={ `<1Ff=N#ٸo;HIaqL.Xf56E~ɛ_ܬ,΁!B9vT* ˫|F.]5?0Vڕ}G&M[N#vdWA@jM7<~ww`ߣʢ0W0]ڵ2jHt[ yT5i .UKj.H wY-Q.kČT0=k rrrxw){k|$CGV3woTҒ1ؾ};iiiIT= K )HF7Ndٸ:cT(_^ɫv=f|'E,\>}QLҶm[&Mرc @7By1vXq1wrknݺ ;+T֩UiSE׹|%%ʌ3^k׮u/9nzTK֭ݻV.{O[. sF_)n9 o%.X!7TXYX B!.]"ڸZ D^t;Ṯwå ѯ_?mKݛ5kʙڷz?[k .bNffV$pWVA33rKL@*f`7|``nnNDD 4733ٙ@ >=ekUY(Trooo,t6]>Dvͳq/m|0ggQT8;;3nܸ0`M4P2k @F^'O 뵏?N _y7)ׂ!ᄡg5Y!ud$<<|ӧO# ::Zԃ:u!+lQIdddM\'(9Tv= c rʚ#;kV͊tܜ]ڷ|A=Ԇd2揝BIv hOFFnݪi_Ν:x4=3$^6*|:کTN ?Oo?S2I#/ W_ωœfvzg|?OΤIpvvik vŽ{ު^ l k˿G&#"fr跓am.MXXj%@G$Aȁ#Xkp9)m۾t̾}:t& XGՒ T+mV8yY2|Z( ~gw zdh:rթ+{{{ZyP(N+$9 dXPp:^̜9|+ÃSj~G9 ff7QVb֬Y=bذR{"Ny:s'U`7&Ju̙RNW^׮x!GiN#b6A,$:e7 yV|cb&1ʄ+?N={If_e2ЩS'Fɘ1c0lBzz:{&!AZX:ff瑓KN^bp< ;nX)6H>WS֭[n4mBQe`޼y\ɺN~~>6Z-u_H>3 R 48e(|tuɾ^Heʕ̘1e̙L2'2/}t}e;`նvqsvڲQ'g߹''r_>+VڭdRIIAQ!lK-hvO$gE@/ PLVmujՆ&,Y &)U H[;~<<؏_?HF,H^i;@|`wM+u#idܻCξ\.Ν;0`#T1ϴfۢoHD⓯s%:;-?> 2l|`W/$p#=i)d޻S. 2G;@#ro71m]W d2fE՘իWLlll6lח~'?f|}}߿nGGG:t耻;$''s)?~%{ZG@z3t֧f{w/08# yUN6 3gyk^ [{nT+DvѶ#-7 @'SSӧ,,Oon0KN"9o} AHt@rw^ ?~,2>-2?-3@.1>-2?.3@/3A04B05C10<+4A/6D27E28F3+8(.;*2@.5D17G39I4:J5O&1#,7'6D09H3;K5O9?P:''1#=L7@P:AR;BS<(1?->P:BT=CV>DW?#, +7(4C0O8BTL`EOcGPeIRgJSiKTjL!*"++7'6E2J^DNcGPfJRhKSjMTkNUlNVmO.9)8G3DU=H[BMaFShKUkMWnPXoPYpQLtRNS@fbKGDH pHYs  d_tIME 9%\(IDATxc`3`$_@PHxDj4 305C86 pE$##)8k@iiIt 2pE,H98jYYET JpUXe8jPQE WA44 `H M!a-8ACAtttFF^ M}}M8$HN OC4. FF`h0@c,,, %iXځV 07PH=Zvwsq,@3@@F 4’ECB#""hVDEEY'y$&%!8?=#3++2[='7/ j%9eɅ5TUGԖ746577ҪUx5O3X;iӦϘ9s0{yf,\Txe˗V]e|M~Au7lܴy0!jki϶;v.ݵ{˞{Au*v5>HbIENDB`workrave-1.10.50/frontend/common/share/images/48x48/0000755000000000000000000000000014221624437021776 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/images/48x48/Makefile.in0000644000000000000000000004471514221624202024044 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/images/48x48 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(icondir)" DATA = $(icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/48x48/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/images/48x48/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/images/48x48/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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: 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 -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-iconDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/images/48x48/workrave.png0000644000175100001710000000506514221624107023253 0ustar00gdm00000000000000PNG  IHDR00WbKGD pHYs  ~tIME !6 IDAThkPU}!h!`}Ԋ蘘vLctڢL:5TҦ~iL:Xm1֘hcB(^}߳: i?fpau^`TFeTF)oa! +{.0\ƚ ךA0@b$VN {q09k ܒ.pp^'(o6 M* VOfDG1̈́gΜT__Νljjx<nL`8cH@\5TnRlM~aÆiii۷;vÑ#Gf˖-Nuu5?8IWM|O(Ć 3 FEs).M>64DQW233;KKK}k׮WDuxQDbbb0==ݟ'OQ6I`2/GNQd쎑Jyz:gZPMU@%uKfϟA]M /m#Vl6+;-suc2c2HLL9r9 ^}U6bcbb֬YԚN1T l8ρ4 AջDGDȫ{`8ՆP[[KCC1PX$ح?1nETl V9S,[Q EE%ī6F4޵k{ Z< B!V,XZT*~?E9yΟg8~/^[Pm_>"|2DV;.WUEjplV%ajlkW.RPP0"/^L P´8«*YYY#a͙3r4 oZZ>={jH/۶?{n1 #bhC>7o%@5NffسgBR-L[m5n+զ;羸!/SĈt:Yr%UUUm@,o cniQяLΝ0=Ӹıl7zn*mW^/kϟ?b:IJe0erQ׃W|EsBQ#8csIdce̴[1qlVͦWwlWJJJU2 .z8g<^{8/{]m@(f"'0_Ɍ@UjOxTUe͚5vTft2ǍgƔ4&7rK B/q捦ܾM˥/hrn᣼|5PAl6r3&v^?GQ|$WhRh¤i)3r)vv\gbjSHwL{{;&Mچ !vڗ yJB%*I=;1 /nxjcK`vt2ǥɣɟntx0c'nz ^/]]]gM۹ssWQ{{;O-׬YeeeEee ƓccRSRc( SѻuԢ1&v@0?.W yRlܸQ̙3l޼9^)@4U6-a̠*]@"ٔ#L$W'AE!*0`̳Z^o0p,PJR*! E?.*:E<#~FnXos 1>CF6ƒ aK!%p2B |aܭ7ST+k5?{ƏCn%}]2ď~QFP+FQQO7w1b{IENDB`workrave-1.10.50/frontend/common/share/images/48x48/Makefile.am0000644000175100001710000000014114221624107022727 0ustar00gdm00000000000000icondir = $(datadir)/icons/hicolor/48x48/apps icon_DATA = workrave.png EXTRA_DIST = $(icon_DATA)workrave-1.10.50/frontend/common/share/images/timer-micro-break-large.png0000644000175100001710000001056114221624107025212 0ustar00gdm00000000000000PNG  IHDR00W pHYs  iTXtXML:com.adobe.xmp _IDAThk]Uks}ĎC!pJA G"J_AKE|AJ*EHTT TV-ZP[Pgiܦ4iN8<{9g̴p;c[ҕ{k+ydbRcy1I)ɅX ?CgCz yoΝwS w0wz˷^'gD㆙W> >[hZ;cc NO+/p|ì'sz˻;rYgZb8K0uyo7E=mDDUuL,رzZ)cxۍ_ zZqX!+f@U =u ?2,Kw@MFL2 cIDc*n)%%kg1V?h5$Ř -/~o="/~>pե6@BS$>kՍ 1!CϽ((#/4Ҿ8oy@0DMW@FF !4P@)nسK/f9Zb}GYphQ4FHIAՄ IYFb[LMmBCMju 3sDBhL )FT!)hjRU\=("/tfŢͱyN&oP i$@Lc"H+Q)b㯁j3p@Y#ٰ1CHVMλ ؼCtA&TZE4@Q >(™_ ϓYy?eLN3=9αĖDY+XK*hcd+7Mo%rþ[0EDI w3%9#>ssCF|e"ES51`dEM.))):7]ʞcgٵkI!I+IΓ =xck^UnH޻ % k#b`6/α_|ITER΀*b + "?̋<#HK?.fH@VtТcƶ06[cEfhq;6[.NUY\aNXV%h$o޹sϱg[|[N0+DW}MFGMQVɊզc/˶q!RJ8 s'fǷ$fMN];|rۿǶo#f+ )&"`,`1Ysύ ˤ)Q 8s%QM[=VYe~4Kse#Bic$ЄLU#M RGd*kPCF&՛`k}t7Ec;+J h=PM$_7Z(TcH)F|kOO!DG5:D;Ŗrp=?~>>UŠtAA넦@L3悔#zkַwc lݱnf|l3!7{[n/6+V $(1)ɕb^!\MY?Zx|,FS@SQ_RMM{r&zLn}7q7_Tbh% }Bq>O{b?>,CwP4E3d.wĖmW26bٱjRIu )tT! qUM]TՀKqu9*%TU1~立]qYT3R/U7PzVA R PS")Ew՞X\^;GhW5y_nJti_B.͗Fԉ͛ƝAC*qW , (hNW{=ėОC=2p6RVjc y4qu+ba, x_Qdcdp/o~7E5ka(i<@h E{\] +fgg9yu*WSjӪXMA9YV`!%]IXfpDU;I>P9"r@]6pG4TUVUOۦtɋG|VqS+ꪢ.]>ї9+w#n a+o$~H">zW 3K$D;k\}fرЏok*BLqU)`|ݰk|u)('^׵9u?!06C u޵:.Jw,K1dY1fua&@Zi#u]SU"vae4{ω'ؽ{Hv`0`ffnKQ,ޣyuN)oTʵjS*{Y\\َupQUV9hNYhyf@B#!BXcZp8diiiEcĘՒɸ16 U9J{sknWUMV,#G m 3337U#W_[o3VиcZhFD7|8 ǁP%tIENDB`workrave-1.10.50/frontend/common/share/Makefile.am0000644000175100001710000000026714221624107020674 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = images sounds workrave-1.10.50/frontend/common/share/sounds/0000755000000000000000000000000014221624437021245 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/sounds/Makefile.in0000644000000000000000000005566414221624202023320 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/sounds ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = SUBDIRS = bells subtle default soundsdir = $(datadir)/sounds/workrave/ defaultsoundsdir = $(soundsdir)/default EXTRA_DIST = ${defaultsounds_DATA} $(utils_DATA) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/sounds/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/sounds/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/sounds/Makefile.am0000644000175100001710000000056214221624107022205 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = SUBDIRS = bells subtle default soundsdir = $(datadir)/sounds/workrave/ defaultsoundsdir = $(soundsdir)/default EXTRA_DIST = ${defaultsounds_DATA} $(utils_DATA) workrave-1.10.50/frontend/common/share/sounds/default/0000755000000000000000000000000014221624437022671 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/sounds/default/micro-break-ended.wav0000644000175100001710000001060614221624107025564 0ustar00gdm00000000000000RIFF~WAVEfmt "V"VdataZ~~~~~~~~~~~~~~~~~~~~~~rm^RC8-! $2BL_q;xgUI=3++,28DScxʾypgb_[]afks|wm^OA7+"",;OdyͰ|bH/"7SlӽqW@, #7Kd̻r[F6*"#+7FWlǾtdVLEA@CIR\ht}wronosytgYLA9426;FTexuaN=1'"#(18z6jmO.?E}Efu4OCPn='8eHiP%cx"^UcUsp|=:Xv8M%WhT d%MT9~#.v~C%|B;B)Wst}W: 'h3& o/W $.6BJGlO[.g}+7T~ y\%n`&FXGK A0|2g2P<TA birstyi%g~iqai3Y 99{{ u~mV. $cvG? 0hfJ! j w-Q[eQ+@ _"Z#1khu>5I/u[XN  y t h  &[_e7%K8a9tR,C8F(%M =.B m .  O3=e DXTk)Ymnd9 J B&o&T }t/z9p x Up~K{xzjM$4S)+'ggI  S4` 3[<&7  wcg _]AJn&o>Bbi t Amp | % UI[; (Zzr^kA[3@ ?  "<%]M KQLCO:f09 MLB2fx[+ 7Cri!""h## $##!O!6V  1`ELTR=6ZECܬV81QۤHT9}%r).| J&R])$93WYe_  `8w{j= %rsP e( L X 2x`D j 0s%:]cixAt3#=> y K@{v S9( e $P].#V8ަVNݡVz%['=;e ,6~ t!#^%&'''''&&%#"r=i xHrI=uغփ֒oRV\+ow 4K{lQ W!"""8"~! D@}x }wcVFvS}qr[ ) u=C P 3Hdx*\A?y^Xy)%W } U[I8ka <G69 ]Cj$'uc%~e> # .}Z!#&')*+ ,$,++)h(x&$$!\x w'݃Bdj@w֝u٥(QQoA~ vy\h!z"o#$2$ $#"!~ 45 X |u .zeP?r   d (@|Ezp y}54v%z= ` 2ws-] uD ;)yt~و؏ׂ֓bGz2  oVh" %P'?)*+,=-P--_,M+)'% #2  U {kw ؜ևtkrՊ pSPb  '%   !4K7: 9~ hwM Fp]fkYps4_O|r B K u  y _j{OUAHpG a6L/n) AvX $;A zp@ 1 D،נՄ|ؖښޅc t! #g&(*D,-j...m.x-!,d*T(&g# w# r23u ؓwվrԈסvڜ߬wr v >Ph#}})b  tN\ n:?"T)p 6by]  3 % lTH5(--%uuq $nn r q # knoYEiU  *F@'jݷج֖odԽvՋn39 &Y} }Nx #&(+,-.// /.-;,*(&&# " Akߓ^ډFwP։vv? ^ZNM  PsvZ$ 'Xtb{_{d RvyQD x  -  ) mVj$}:sz+(wYZK yB@ ; {!t}< v1 @Q݄ۏ{mԂԘ אnڢ*cj\ew kq T#%()q+,N--r-,+i*(&2$!j;d iB}*܉[هQ<܀o~I8Uz z r/xNRn : b h ]=# L` e_x;SFrc+wQWF{za;FD)@\{-\|.  ^ T}{Y{"* 4t} C :'D1=y| )K}hr;A wUmH`sOHv0  s$2k?5 )|6 I T`  ayNPVw  ~%_xy&&bki;'aLP|b$~"A4gcz B|Nm w  {mHA{b  Z7 3}w+&xNY9Nj,N ~x6p+y q Q(|A=>wx *bT\ u<: s j  g  ? r 9bot[> =w`YXz/?_z@\ ff*~nDk; -UXd5| =]hxx y H y!]{ f a $  ~4MJ{(u|p" F> x_C'|Z ~ ~-*Dp}i9  l ,Ib(d{'\w"q^Zk{s<rxV 8  6 *  O   {.s 0Zan c! &KavWvY3d30g$R* 7|Uvz y l , & A 9  q i  Tc|$2#Y\k^o5!4f=%R  : q WYv` Jl}{ ` 3  UQ~cz|pg+4s?_ryz|Ov  [ QzdC~M ~E~lnw2]>y F^|vL=>z0Ts!JtmY9*o!qHiOu.np|)P*[#yqRhpXYpiNqP<9tC#,Hw2=Y~{\A} FjysX<Qp7sD, sL$ /Ny9Uz L ~7 (VkvdD% Bq,G`r|'HrjH&uW4FHOe52?N^x"{X)nZ%e ],BOmspSMulW/\| IwZA! %Y AwLyc9Vm{.\vwW/pZ3t8L{F *Gm{|{GB KpuS( 5x toLw~rK,$@asjY-P }*4(  #O8XxlJ!' _0*=PWRE803:EJLD<35:GLLH62,8DVTU:-&8WimU. C~k]C:NO*8{:;Pwsm{v[9 7L8 > 7^ h * ( j   B ~ t N vo$eB<@1:; ?\r3|EX\qc%0R ]3# e l 3  4.VQMOVMD9?Sp~ha|z1T  @ ny JWs8P}4Rb$| x-0<Cs{*@UXZVpT{rM! 0k@^*#i[`xP}7w  +9?8 o } J .Nl=1>a}/heyLx5f) j O-= t , Oz< oo::2AP!]~ r"fn`sHmAi7/+a zcwDc'Fl@S<E9|ws tB!!:c~_9U@ u7rjet[SBo56Bqc= R ^vm 9 $ 2 ~O = ?< iQ?OBG EDqp\ IvFF\36]$@  " b r W   E ic>4zhZ:WVv4V/;)`>2T7/Lj69P R " T Z 6 ( B Z<DHy67']se%.^_P")ZZ%EC%`"?c(C  = MW: p E<0X'v +  $gfIA`?  "DkJ` [ i QKe6Ahp3 <\mYEX?r)\q2 rZjoU. vV{P DL0'kNMx6d_V b  y  | ybI)x_py@?P;blnp +VNR v_upo Kh,7_] Pf_H)![bݞgܺܐާL)ll* ; sT@5y%_ .Uk`d(gQ@2jK @$[O{g| X!v%(*,..s.-+)&a#S ZIVrݫ{լׅ؅ܻX 7 do{QMpg m "  J@-,tIstl[?kQ$ S!$'>*+-m-- ,E*'$w!`  ]qQnG׶Ԓ|bߖ  P s]hZ vl p }  U]\x*VvllEvM >pgQn |!$g'\)*2++e*)@'$" &V rq;;aTڝܻ,a:'  J}a cj/=( {k+gn pgo"#y%3zn  ~#%6'*((R('J&x$"=a +b <+t'`'ڍ،"F܍ߑsaX< 0py 3 ~AZ@ Nx  *mc"Ntn HF,~ArG IQ!#%''''{&$" w W BߏݤYڕt. VqIJxa  q^.-, m az#|IH{zQ9wSFX^tF|HPaw SF y"#$$$#O"f S Gwa] _<ڛ؀ ׸*\{rz_ l x=+}D2  #Fz6fUf{%Gi~vzrwjc{Oha em$ !"#$~$#"!qPG  yw ~فނ_2- { b~g^  wf9RDN{E4vm'\y&qu!DM > m y<!!!k!| eOG z VuB<T*ؒzy}x mv JPjcz /\ ptzmy#Y"&{A|+Ly\oC  IDD8\]  Q;ZjCv8 ~q`\| TISX tq q w8 S xX^ua3M`xe4PRQx_ "Y >\Jy{};   Ewygy.ky 69~e <@D-`|2  ! =~} |hW53Q#!SLia W`in/ &./!BQwe60S'U 'uF  ..np5 .l< fLLFIbt5y )NracG DyJ3FcYz =o^Q "q^\E  |  GyV w U_uSf0 r7d }R{ p2oq 8pS%  F kwM .v(e-[h O y l $MG *Gw$yT>xL% T't;/ 6[$xakB{4rg} {|} d %0 T FhX-wbul~ n9te ~-/9  @ l z z vjx'v&[v840~py_Zm { nC ? n |qF$VwxMsY Oc?2 r d  Nu0fF!,s "Vy5cbP,l,  E l U tsSg K rckWImEI_$eAry3A(& m y(H+X}bG$gC}tqxQKyU}Gl.6eqh!\h(?j`_]0f .yE' y^Yd "H`tt^< sVD&1c!I;N7Ws}u^3JWwHuO, 0PwO ~.`7b{YHIsF -Sw%;\yzy~}uX7)Ki~6x9hpQ"b(x P uP3*Ot>{i/J^}|2^<nP$ .VyR,  3Ir?y1WwrX0|< xAQ&(;UnJGj`7dBvkkz,Ddx+|=&Bir| 3T{bF{Y9#uD !B]uz|}1v!Kx}jL"|7 ,Vtxb?/Zzm=>n}W0 Ab}rW) ; 1Yrs]@-Xm{gDv`K,pno~7SrqxsyF`~l6kI4KfiZ;":[roW- <-) zxi@$mdfz&Qiy CqtV, <dtvW2; -Svyd? .Zym<9m|[1 ;]wr^. 5rx)8(}z n36[vnZ3 ?\zrX/< N /\Z,!S,1, ,' |~{f@%pbf|)Nk|| CotT0 ?`yrY1: *Uuye> 1W{l?^xsY+6M 4\\3 I-8"+.{~bF p`ix*Lmw DqvS/ A_xsZ/: *Vs|aC -[yn<7mz]07autZ1 4rz(9'}x r06\srV7&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/sounds/default ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(soundsdir)" DATA = $(sounds_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/default sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/sounds/default/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/sounds/default/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-soundsDATA: $(sounds_DATA) @$(NORMAL_INSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(soundsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(soundsdir)" || 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)$(soundsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(soundsdir)" || exit $$?; \ done uninstall-soundsDATA: @$(NORMAL_UNINSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(soundsdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(soundsdir)"; 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: 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-soundsDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-soundsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-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-soundsDATA install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-soundsDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/sounds/default/rest-break-ended.wav0000644000175100001710000006561014221624107025435 0ustar00gdm00000000000000RIFFkWAVEfmt ++data[k|jYZeki\QZcgw~n]\iw~w}{|xlju{pturz|vwxvldeejy{kcfnwxz~yzyskfkwrmgenx}}~zxukefdhv|ldcfmot}zvvrkc]_j{qiaahnsrtw}||xkcb`eqykbbipmotu{zxwrj`]bqyngbchorpqv|{{uicb_guzohhowvz|}}wxvsngdguwngafntwwxy{wvzwnjhgpyunmntyy|tsusnkns~~spmhltz{||yxxvpqsqv~tmjjpvv|}ttutpnpv|sihijr{vprttqklqwwkfjr|}{vxzxrov{lijjt{sw|}xrtz|whbjvzvvqrywqmtpcbehqplquuqlpwy}oa^fs}uqojnuqjhs{k_^bdq|lhottnhmtxzj[Xcr{nnmjouohhu}l`afjyxjjrxwqkouyzk][fvwkkkipwqhht~xi_aehyrfiqvvpksw{|}vg]_lysikkiqwqlmz|vh`ehmndhrwvpmtx~|{td[aqphlmnx{tmo|{zue^diq}jcit{zrovy~~uc]csojnmq|~unr~}vfbhlu}jdlv|{sqwzte_fv}mkonr|}uou}~rdcimyyiemv{yrry}~|pa_k{wiilmr{zpnxz|{nbbinzuednw{wprz~~|zn`^j{vijllr{ypnwz~|nbdjn{uecmvzvnqy{|oa`l|yklonu~zolw|odflp|whkwxrv}~pabqvmrtry{pn{x}mcgnqtehv~~vpv{~}m_bsskqrq{zon{|v~ziaglpnaft|}uov|}|}yi\_opgmomwxmo}}xyibjosockywry~}}}|k^culgopq|{op{wyidlqvlbl|xs|{~xvn[PXl}zuzvp|pnvuxtwxkm}xigqwzf^iuzwlkx~m\`n|{y~x{rwtv{hhv~zsily}u\Tbqzxmmvw~|f^k}~{{ts{pu{zyvjp|l]_kqxd`jstmadotjajxz|{yphs{p{yhivyrf^fpsnY[kuwofmrp{t`avyyynpqjruq}|y}mgu~p^V_fjqagswre]fpv{{kfs{|~secsz|vp|vjq{xna`ox{n[_q}ypuywtei}}rwrnxxt~}~pl|~i^dkqnbly{ue[env~~mmz{vuefwyr}znu~xl`br|mY]ltumkuvto`g{~}xotxv}{wy~{mjxud\aej~wnvud\biqvv~{sx|{sdcr{|x{rwzreXXhsy}vdfqwvmiruu~}~sdi|~wlp{op||yxxhfwvc\ehlrjwzg^dir{vz}v{|{l\^ox|zzsy{qcV\lt~|pdkuywnqyxy|}qhsyos~tlrzxy~xxkm|sbafek~oo~|hdhhrw||x{}{}~iZ`nt~~{yrbW_ox~|lclw{vmryy~{tw~leqysy{pirzy||yugkzrefkkuthk|}nknny|y~|~ww|}z}~i\bmuyy~|p_Vanx~z}khpwysoxzqtyhft~y~yoku~yuoejy~rgkqr{|lbi|~ljmo{||~{sv|vuu~k_epx}y~t`Xcr~}pnu|{snt|vpuqmx{yumlwxwqin{umptx|ngo~vrooz}zv}|wt|mbfnxzyud[cn|y{prz~{spyujo~}mmz~}zofjxvt~lfny|pltxyxgbrxslflyyqmptnhjkd`m}rlpu}|wy}twygdqtnryzredow~wz|}zrlpz|vojq|k`dotqjkrsu~y{xrzzyyjclx|xxt^VZan}xtv{jfkp}zulbbn|}vy~ywoaeuxxzufZ\nzyymlpogZRZgp~}txtiecjw}uuzwootts~nkwrhjifkrvuwypvxnnt|vkn{tosz{tmv}gbmz}y|xqtwuysc_is}ykfjpvytopnltrdiytnrxxrkn~|orp`Y`hrz~sefn|yvxsnmlhjwyqzxnimz~xnluyuqnvub_eig\[hv|{nkilx~ogn}}y|~offb`gnps~z}|wpu{pkow~lkwpimx~vrw{rcao|rjksvqg[Zdkswt{}wmcbhnops{v|}tuwsi^\bejtzvmlvphlr}phiqrpttps~|qu}|xysnruspt}zrtqmswy|g[\cgheips|}tot}zrqorz}m_ZdxzfRNV[bmuvwyqght~~xvw~zttmglzwrwy~xh^an~xmozvwupsyyoaW\iuxu}{kgkmpv||xvw}styxphdhkefotqpyxrrt|uifis{{zqusgimlllllpy|~vvxw{wvnfemtwvsvxz|ibekrxz~{tr}tjix{tdVMQZdvxvxkigfoz~~|z{}ztupko{ujbdhd^`l|qpxpfkuvoggstrvvslgkpxwsw~~xuwxskb_a`^gpsy{|}yphlstmhjuwrvte`cfkqphbgwyoou~vppnkq|}wtx}|wlgkpswz|ysv~z|zrole\WZbis|zrhilmq{{ojmsuru|}{~xodWTY_chv|uv{{xwzrdakvz|~nbbgmnlpw{uszy|~yk\U[bclyzuk``jppnr}}y||ogcdfknh_`m~~wuvx|mls{}wvxwx~wv~xvtmhlw|xonw~{|vmlnmhgkqnltx|ymilpsx|zqiiqy}ocbd_Z\djmv|unnrssxvsxzrlp||th^^elqw|}}z|xxvnb[^dkw}nddhfdju{zy}{tqnh`_gkgdm|vtxxod`hu}{sv}{}yvupigmvxpkr{zxwrnpv{wqpvxvw~zru|{tpqpklt{xqq||h[Zchimsrmp}vortsrsqnmqy{qjovz}|mhifbbjvzzsox~|rkmsslhmw}}}}vi^^gnryz|~volfYOQX]bn~{v{|tnqtnjr~qa]dihjprkabo|~|zvz|tiddbckv|vjcgjijs|tt{|}zx|xoilx{w{|thguvhfd^_bd^TR[hmjquibYPMRZ_^bp{z}}}tptz|{{~utwwtqpjehr|}rluzk]\bcejpphafqsjekrx~sle[X]ejmry{tjimlgfmz||z|wngjw}}sjm{~vjcdoxtknx|mikkfb`]TKJWemx{ojihb]age`bjpsytknuxz}qlr}}tpxzkYPNORXet~}z|}zx~zndXPOV^bdjtxx{yuv~~{rnr|~|yrlmt|zv|qjmonpy}wposvuwz{vldegb\^dhlu{pd\[`b]Z\][_l{|m[SW`iu~xupoqw{xsv|~raVTVWVTX`ehstgXJEMYbjqqkffkrsqv|tmkpz|xtvy|{rkjkihoyyuqjglx~yund^_fnqlhgb\^gnonu~vfVRTTUY]^^bo~~z~rifffilqvz~|uoqtrquyzz~te[[ad`\YVTZgt{yx}skdZONU\bltuqlkqust{|trropw|vrlfglu|}z}vs{vh]Zbknmg]QKN[isxqd\SLLRVXVU^hq~zxwvurrw{{}{vty|yulefq~~~p\KFKR[dkkfdit|}xqj`ZXVRS[fquuvtmhlt}{sljnw~yx~~vontz}~qklt{xru~}}uica_]_`_WOOYbfn}zurppsuri`\]^_elqru~vpt|xsuy{xqmnqrvzwpnq|xf[URPRV[^]cpxy{q_TQUZ\Z\bfipx|{z~|}{wtrnhfkrz|oefovy}|tstogdghjmoqnfabb^^gw|od_afgc`aabgnstqszqoopv~ypiedglme[[es~qga[WQNQUYamvyyz|ncckrqonicbfmokhmv~~~|sqqonnoopuwurmjoxzobZX\ab^ZWSR\juywxwf[^eilnkebclw}~y|ysquz}yuuwwy}~wqorqlkosuw~yk_]bfdb]TNOZisssytbSNSZcnvywuuwvssy}vx|~xmc^_bdbelqqswyzz{{rf`chkmmeZSVaknqy~vpjd`^\[Y\djlp{}~ywxyxqigfdejosvv|{qbVSTV\cec`cn{yojhhhijmnnquvsoorvwx~zsv}|||wropvzyvtsnkmry{wtvy~}~zsmhcbfkj`OA?GS`mx}yy~}wtqmlnkd]\aktz|zyvusplgehkheeebbjzxkbZTWajjd_agq~~rhccdddfjot}{|{urrw{tpnlllmmkhhjkkp{~{uqqpnlmqqi`[XVW[cmyzusnf`^[VU[dhe_alu|~~~}{ysmilw~~|sjghihfgntyxqifikkiffggipxyxx}}vtwy|{wwxzxsnkieekquw|~~~~ypjiigegkjebcgkqyqd_beaYVWWX[_aabgt|qjdbfid\UWblry}~wqljinqokmt{|ttwy|~||vnkortw|~|vpry~}zxz|{{tibemtrllv~wh^[\\[[^_\]htyvrwwohgc]\`baadhjijqy~||xqmlh`WTZfpw{|}|~~}}|vqs|{upkkpvxrjipx}xslilnmgbgpsuy}{snns{~xvuqhfikhddhljddknnpx~ukb`fkhddecchpxywuw}}~~rfa^]ainmgacgjnx{ssrsy|vx|~||yrnnu}|}~xqooniefklijqx{|~qhda\WWZ\`hpsrsy{qpqokhhhd`bhlklprsxuqrrlea`_\_gqxww|xtonsyzupsxwrry}{xvz~}}{~|yxxvuy{zyxwx}{usvxz~vnlnnfVKOZafnvz|~wka\ZY\ac`^bn}~{tsvxslgghgegjkmu~~yy{}{x|}rlmnot{~zz~uryvlovwwyxrjhoz~}yy{qouzxpjhhjkpx{vplhir~{{zwvvxvmc`ceeghijlnrx~~ynfb_\ZZailimxukhiihiikkny~vqv}}|vs{wrpppv{vvy{{{{{|yqic``dgfbbhr{tjea\Y\`diox|z{~~zsnpvvmecfgfhmstx}rnmieemsogfnv}vkinuy~~~z{{xzzyz~~{}yrprofdfjnqnkls}zrnpoeYTV^dho}x{}yvsolllmkgbeox}{pihpwxx}}{|xqlox~|{wru{}~~{xutvy{}}{yvw{~~{~~vkhow|xtuuttuw{~~xv{}wqnkdbgmu|{tmiks}~yrrz~yspnjeacjnmnstyywwrkhhkkgfq|wutux||xy~sonotx{~yz}~xstz||ywsrsstxz}{vvz|{slilpnfdmw~}zz|tmjlmnpqplfhq}~tgabeimrvwuspjiryw|yiadjmqw{}}xuy|vuy}xpkkmpw{|zzzzwttz|sllt|{umeadmv|~|xzzzupr||qhb\Z_kvwqmkhhmuwrpu{|z{~}|ywvwz|{yxyzyvw|~yutx}}xwvtw{z}wqnpu~zx{}z{}ytrqsyxne_aiklmquvtt{|vojlnjffhhjmqrlbbkrw~zqptsmihhjhhlruwzzvtyzvy}~~||zrgbejq|yx~}yw{|{|~yuuv{~~zvuw~vu{}zshabfjs~|qkpvvpkgb^^bnzsid]WW_iquvwwrov{{}ytqnpstsuz{xx{~}wuvx|}z{||z{|}zqnjhlt{~zwwx~zvx~~zune_afmsw}{sqnkmtz~}ztnlqtrnms{}{{|xsppmgegjmrz|y}~wrrspkggiot|~xvwzuojjpv|zvtxzusqnmnruvtw~~z{~yxuofaaekqz{xqg`aflnpssojls{yvurleaabem|zuuy}wrsw|{trrsw}~|}~}xtsssw|~xvuvzwqptzytu{~|vtttvz}~~}}}||zussu{xspkc__cimsnd`^^`bdfipy~}z}ytsqmihlqux}{uu|}xvvw{|}xx|~~vrsz|||~~|||{ytpljlrz{vzzvvxzywx|{vutuvy}}}xrqpja^dlstsrsru}{tlfbccdm|}ytrtx{ywxwuvz|~}ww||upqz|zvrrtvwvw{}zsmiilouzz|}{xurnmotvwxxyvrt{tiefhlu}~~{z~tqty}~yrrtxzywvsqsvxy~}|yxxplqutrsu{yw{~~{xx|~vsw{|~}{ywvtrpu}{uojgiqxzxxzyvttrru{zsooqnkijlkjnwwu}{wuwyytqsy~~wrqtz{y{}zy|xuussy}|xtty}~}}wsqompv{yvx|}yuuwz||}xqnoolkiglv~|wttz~}yvoaZ[^bglnqv|{{wqnsyyy{~{sjehmoqv|~zwz|rotz~yvrlnv~~}}{unjijmrx}zusv}}yvrqqnjjpy~upqs{|wx~wqkcbhoppsy~~{}|{wvsnljhintz|yyvkfluyyx{xqpqqqv{yyz|}~~||~~{{|}}toopqoprx~~tmga\^dinsx{{wvy|wollkhhnvz{||yyvqszukinstuz|}xqquy{|vsy~||~~}wrppv}{y{}{wu{{xttvz|~{tmhlpqoqvzzyz~~zvpkhb[Y`mztiiorpnpsvwxyxuv||y{yuprz{utvz|~uoory~}wuwz~~|{xwy|}}~}~}{vojkt}}{{~|wv{wqmow{|{tmkossqpru{zwvvy}}wsqnicaiu{{}~xpifhlry|~~~|{|~yvx|vqqqqqtx~}{zxz}{yz}zxuutqlkotxy}~|yyzwsnnquxz|yy}|}uswxuru|}xqkimtx|{tpruspqv|~~}|{~{vrruvwx}~{zyy{~xuw{~~xtrmiimrsrsuy~}wpkkqy|yuvvrmimsxz~{~xrmntyyustrnms|~wqoptz}yz|zz~yvusrrsuxz~}|}~~~}}~}voigltyyxz}zsruywroprsuwurrvzzxz{wtppu{ztqswyxvrmkpx~}~~~}xsprwzwuw~}{~~{||z|~ytqruwz}wuvx{{xw{|xuuwwsqsw||wrsvxywvvtolpx|~~wngdhostvywurtz~|yz{wyyvpkgfiqy||}|{{~{z{|}~~}}|vrtz|yx~zwusqmhehq{|unlqwyxvuwyyzzwv|~~~~zrmkkkmoqtv{zuqkghkmmnt~~}~~}yvvy~~|||||x{|{}~ywtokiihhhkr~}ysolnsvsqpswvvy~}zxwy{zurstoklpuy{{uu|~xsqswz{{{}|tpoquwwwxyxz~|z{{zz}}{|~}yvvy{xwy}|xrmjkmpprx}~{wvz}vqrvwurqruussttv|~wronmlov{zvx}}{|~}z{zxvrlghotwyxxyz~~|ywxz}{xtrqqux{{|~}wsmgegjnopu|}yurljnqqqsutttz~yxzwsmjihjmry}|zvqooqsvxz{yy}}{|}}|z{{zz|~~}{vrtvz~{zzzxtsttrqsvy|}~}|}~zqllljhiosrrsuvw|}{{{xropnigjnrsv{xwy{|}{xsponjgjpux|}{{{|~~{wurrw}}zxz|}~|zxtngccfkry|{|~zwvtsttrnnswxxy|}|}{urssngegijnv{~{zywttx~{zxwuvyzyz}~xusrrtz}yww{}zvsomllmmms|~~}zzytooponpwzuuyywtrpnjhlpprz~{{zxx{}}xusqmloqttw}{vtpmlmortwz~|yxx{|vsqpquy~}xsv{~}}~xtutrswyyyzzsrtvwwy{ytqrtuvz~{|{wuw|}~~yxwurqsvyzzvtsrsvy{zyyyyy{~}}|~~wuvx{~{wuvuuw{}~~zvw{~{xy{{yyz{zxz}wurnllmmlnuzxtuwy{wolmlmry~}yyyz~~vpmlmpsx{}}~~}~~|}}|||||{{{||~~{yvvvwz~zwy{ywy|~~ywwy|yttutttvvrnosvy}xqlkoqsuy{{zz|~}zvrnnooqsw}}{}}ywvw{}|yxxyz}~wpjjpuz~~}}|{{~xuvz~~|}}zyxz|zvvyyz}}}{xtrsuwx{~|yvvvw{~wqnlkjmrty||upory~|zz|}}}}~{{}~}xuvz}~|}|z||xqljouw{zyy{|~~~}zxyzuposx|}||~~~|yupljkotx{||}~|{yvstvwxyyxwxy{}~|{|{yxx}~zww{~}}~~~~{wvwwwvuqnpvyyy{}{vpkhiklnqttx~{}|{zywtsqoooquy|zzz{}}}~}yvsrrux|~}~{yz{||{zzxuux{|{{~}yyyz}xxy{|{wutsv}{slmpsuw{|}}~~~}{xtlfglpuwz}yspprtvx{}}{{{|}~~{{}~zvqnpsvx}~{wxzustwwxz||}}}{{~zwsoosvy|~||~~~~{|}|{xvuuspnmpu|{upnoqrtwyyyxy{}}}~~zuqqtz|||zutx|~~}~}}|xtrsuwx|~~}~}|||{yxxwsmkotz}}}{||zxsopuz}|wuuutvz|||zxvvy~|{~}{{ywuuvwvvxz{}~|ywtuxxvy~|{z{}~|y{}{}xrsx|zzzxurqruxz}~}yusqqv}~zwuvvvuuy|}zwtstwwwuvy}~~}~~~~~~|wrpnnpsy~{}}zwtsx}~|z|}{z}{xxwvwyyvtw|||{xvtw{}}wuwyyy|ztollnnnrw{~}zy{|zyz}~||~{wuuvuux|yutstx}~}|~|wwy{z{{y||utvzzyxxvsqrtux{~~zurnmptvx{|~yrliikmnoruvz~|{{{|~}|}~~~~{|{yuqptz~zyz|{z{{}}|~|zyvsrtutqtx{~|{xxxy~|tnnpsv|{yyvtrpqstuwwwxz~~|||}{yyy{}~|zxxz}|||{||yz{{{|~}zxzzvrpqw~{xx{{zzzzwsqstuv{}{xsqrv{}~~||}}{{}~}~|uplilpux{~~}}~~}}}|}~}{{|xvx{~}|~}zwvwy{~{xz{{{zxy|}~yvxwtssstvw||yz}}{z{||yxyyvvx{~yrnlmjgimqx~}}|}|zxvvwxyz{}|ywx{}~zxvsrrrsv{{yz{|~~~|yvsopstvy}}~|xx{~~~}|xuwxxwx||zvrpqtwxyzywwz~{yyz{~zwuuwz}zyyxx{|yyz{|}ytuxyz|}~}wuy~}yxwvuw{}|{xwx|~zvomoqrrsuy|}~||~|zyyyvsrpqsuvx{{{|}}~}||~||~~~~~{ywwwxvuvvx{}yxyyz|~{{||yvvtttv{~|vtsrstxz||}zvromnoopruy}~|{ywtqnmopu|~{{{|zvtssvy|||}~~}~}{ywtrqu|~|}}zxyywuuwyyxxzz{}zvsrqrqoorvwxxy{~~{yy{|}~|yvssuuvwvvy}~}ztrsrstuvxz~~{{}}~}zy}~{|~~}|yvuttuvx|~{yx{}zzxusrqqrtuvwwxyy|~}xsomnrttvvwx{~}||{zyzyy|~~|ywvtsvz~{yz|}{z{||~}zz|}~}{{|~{yvsrstvvuv{zvsqooqtuwxy}}{zyvtrolkmpsxz|}{{{zzzywsrtwz}|vvxy|~~~{z}~|zz{}zxx{}}}|zxxz|~~}~}}{|~|wutssvyz||||}}~zvuutrqpqtvy}}zy{~~{yzzywtttvx|~{{}~{yxxxzz||zxy|~~~~~ytrqsux{~~}{yyxwwxwwxy|~}{z|~~}|}~~|{zzyxwvsrrrtvyz|~{wwwvx{}~{yxy{{}}||}~~zvrqruvx|~}zyz}~}~~|}~}|}{{{{zwuuuvy}|xwwwwuuuux{|zxvqommmnnptx}~|zz}~}zxxyz{{|~|{{yvsppopsw{}~}zy|~}}}~}~~}~}}}~~||{yz}~{xvy}~|yvtromlmpsx}{wvvxyyxy{|||||yxwy{~}}|zywvusrtx{~~|~~|||{zvuwyz{~}zwxy{|~~{|~}{zzz~}|ywvxxwuuuwwy||xusrtvwyz|}~~}{{|}zvtsuwzz|}}|||~~~}|}|||}~}~~|zxvvvvx}~|~~|zyyxxyzywwy|}zxutsqqtw{|zxxyyxxxxyyz|{xxvurqppqrvxyz|}zxxvuwyz{|~~~}|zz}~|~~{{zyz|||}~}~~|zutttvwy{~~|zy{}~~~~~~~}{zywuuvtrsvxy{~}||zwwy|||}}{|}{yy||{{}~~}{|~|{zyxvvwusssvx||wtrpoopprvy}~}|{zz{{{|~|zzyyy{}|zyxwx{~~~{yxz|}}}}|{{||zxyzzz{~~}{{zz|}~~|wvvxy{~|zxustvvwwvvx{}|ywvuuvvwwxz}}|{zxxxxwwz}~}|~{yxvrruxz{}~}{|||~~|z{|{yyz{zz}}|}}{z{|~}|{{{||}}}}~}}{{zyz{~}zwvutstuutuxz|}{{|{ywvtqpswy{~|{|~}{zz|{xy{{|~~}{zzz{{{}~}~~}|yutsttvy|{yz{}}}~}|zxvuuvwz}}zxwurrtuvvwxyz|~~}~}{{|}|z{{{yxz|}~~~~|{yyxz{}}}}}}~}zyxy{}|xusqooqrtvxz}~}|~|{zywwxxx{~~|{xwxwuuvxz}~~|{xurpqtw{~}ywwz|}|||}~~}{{zyz}}|zxvuvyz|}~~~~~~~zwvuuvwxxxxy{}|zxy{~}{xtrtvxz{~|yxxxtrstuwz~}|{{ywxwwvvx|~~{zyxwyy{~~~~}|}}|||}}}}~~}}~zwvvvuvxxxxz|~}|z{}~~}}|zz{|~}~~||zzz}~|ywvxxz}~~~~}yvsqqrsw{|~}|}~~~~~|zzz{{{~}~~}||zxwurnlmpsw|}yyyz{zyxwtstx{|~|zxvuvvvvvwxy|~~~~~~~}|}~~}|zxuttvy|~~{xvttvyz|~}}{{{{}~||}~~}{yvvvvuvy{}~~}~~}}{yxvtrrtw{~~|{zxtstuvvwwwww{~~}|}~}{xwxxy{~~{z{zyyzz{zz{{{|}~~~|yuttuvvwyxwxz{}}}zyww{}yxyywyz}~~{ywttwzzyywuuvy{|}~}{||||}~|{z{|zyyz|~}}{zz|~}}}~~}}||zz{~|||ywtsrrqqsuw{~{xtstuwwvxz{|}}{wuvvuuuvwy{}}~~}|{yyxxyz~~{yyz}}{yvttuvy}~}~~|zywvvwz||~|{|}{yyzzyyz{||}~}{{}~{yvsstwxyyyyyy{~~}||||{~}|z{|~|{zz{|~{wtrrsttuvx|}{zzyz{{{|~~}}}|xtrrsuy{|~~~~zxwvvvwwvx{}}|}||xwvwy|~zyyz~~|{yuuvx{~~~~}~~~~~{zxxxy{||zxwy|}|{ywuuvvx{~{xvsqpqtwz{}~~}|{zzzzxwvvusv{~|ywuttvy|~}~}~~}}}||{|}}||{{z|}|{zzxwwwwxy|}~~}~zxwxyxxy|~~}{z{|~~{yxyzz{|}}~{yxxwutuvx|}}~~~~||}~|{{|~|zywurpqtw{~~|{xwyzyxwyzz|~~}{||{yywwxy|~}||||}}|||~}zxxxz}~~}{{{zz{}~~}}~~|zxzyz{{z{~|xutuuvxyz~~{xwwxxyywvwy|~~~~}zxxz{{|}~|zzz{||~~}~~~~~{z{}~}}|{||{zxwyz|~}}}~}ywvuuvwz|zz|~|}}}}}{zyxxxwvvy{|~}~~}zzz{|~||}~~}}~}{{ywxz|}~~}}~~}~~}}|}~{zzzyz{{zzz|}||}~||}~~}~}||}}~{xvvy}~~}}~~|{zyzyvvvxz}~~~|ywwy{}~~}{zxzzyxz|~}|||~~~}}}~}{yyz}~}}}~~zyyz{{||{z}~|zz|||||{{|~~~~}~~~}{yxxyz{|}~|zz|}}}~~~|||~~~}{zyz|}}~}||}workrave-1.10.50/frontend/common/share/sounds/default/micro-break-started.wav0000644000175100001710000003606014221624107026155 0ustar00gdm00000000000000RIFF(<WAVEfmt "V"Vdata<~}{xustw||z|zspptz|xwz{vux~|upnpv~zxzxqnqw~ztqrxzwy}}unmou}yvuzysrv{}vpnpv~zy{~vpnqxysqtzyvw|{smlpw~xuw|~vrsw~{smlqy}yx{{toosyxsqt{~wuw|ypkkpx~wtv}}upqv~{snnr{|ww|yqmmrzxsrv}}wuw}xqlkpy~xuw~{rorwzrmns}{ww|wnkms{~wsrvzutw~umjms||wuxwpnqxxqmnuyuw}~tmjmu~|urrxxssw|rljnv{vuy~tmlqy~unlox~wuw~{qjinw|uqt{}upqxzpjioxzuv{{rmms{}tnmqz{utxxojjpyzsqu}zsorzxojjq|wsv}wnknt}{rmnt~xstytkhks}wrrwvpos{tmilt}vtx~sljnwxqmowvrtz{pihmu~vrsz~tnnt|}slkow{tsw~|rkhjov}}uquvjhq~ywxyyz|ymgjx|olr~xqnoqsvy}ts{rc^dp{z{~tign}ylfkxxuvxz{~|pjo|ud]aose^bqtknzxvwxyyz|phisqgfp~||}~}{{xkcdprow{rnoqtuvzzqnvyhciwxux{|}||ynkrqilvyplnsx{}wpr~ye[^l}{x{|oghtpefqyttx}vkhp~~l__k|~~zmb`i||nks~usv{}|zz~ylgl{zkel|}y{~yvx}ujfm}vmp{{pkntxyxx|xooznceqxtv{}zzvllwvigp~|qlou|rmsm_]gy~y|~vjfl|xjfmz{ttzofiuvfai{~|zy|vkdgtvmo{wrty}}{{tkktsjkv}xy|~}zvux~~tmlwrms~smmsx||{{tptxielz|vuy~~|z|totofjvwqpv}wmmvwibfs}|}|tjisshhsywzsf_bn|kfrwryypq}lcetxwzztqty}~}}|rnuj_fzzrx{mho~qeft{z|}}{zzzwrnou}ukkwrcctypq{|ngmsmuvmkotwxz{{wnls{g`h|~rr}tsl`bp|tu{ytv}{qijulbh|{{jdj{reft|vy}~|zz~|wv|~yqijuqlv|mkt~ymgk|qjqzrsx||||{sorzztxi^bstqzqnzregvvtx{zwtv{xtwshen~regwvx~ohn}kgrrnqwzzz~|z~{xyzyrjirohqqpytkn}}iagz~y}zojnywprndi{yor~uifpxll{xstwxurtzzux}ulktzjhs{nltuotojuqhgow|||yy~}{vpp{{g`mzswro{{g`gwvu|}}|ss|~zxupkkvuimurxzkbhzvmqvkkt{}{{ztw~~|{{ytqv~mlywjfkxxospksynmu~z|ysv~}xst|e]g{ztwqkttlr}~meiu~~{||||xupjgmult|okq}tkqznltrhly~|{zxutuwwv|liv~rmr~|mkxsns|mlv~~wsuz}~~|xss}~mjvshitqlv|st}~kchu}}ywz|vstutt|vln{yokt}svunqy|kadu~}|~{wxywuw|ppzvnq~unvqikuplt{~~~ztsvwvxyswzmho{}qjo|w{}i`gw|yzwvz|||urxvkgm}{|vmnvsghv}||}yz}~|{xont~~sr|wqwtpuxhdo}wonsuuv|}~zmiqwxunoxphn}}upsy~zuw}~uruzump|wsz|rouymnz~xy{}~~{z}}xy}~|z~}xx|wmlv}vyzuvwgdnz{x{}wsv}}vtw}}qovz{tkiq}~rnw~{wvz}ww|}{{vw|zruvpu{tszzooz~}{ww}}vu|zw{tx|mfr}y}uqoswnrx}xpszv~|~shit~|qv~~{rqpsrqvy~{}tt~wy~ss|sr~ojz{|~xtrnvtquw|ysz}ytnq||{umr}pl{}yusov|tvx}vxzqiq}yulp~vip~~|xupsxwtv~~yy~w{xs{}vzpq|zlp~~ztox|pprt~}}sq|~x{z|sqyrr}}}utoju~|z~xxyt|wx|{vqyvlx|}}xx}st|vsqv|x}uyyw}{}tw||}tjr|wnm|{zvv~w|wv}~{~~{{voqx}yzx{~vpx}zwu{}uw~z~yw||wy~{tpy}zyqr|xtw|{wvxxz~zz}xtw{|{sw~y}roy}{||soxxw|}|}|~z{}}}uvyz|ty{urz~y~z||{yz~~z~~z{~~|wt|~}|nlz||zy~~uv~wxzz~~{|}ysx|ywz~xv~t{zr{|w{|}{vk{y}orw}z}{~}}x}txuzuooy~zx|ynmyxvyu~~~xzu{wr}wulw~ztku{~|}y~vymx~utzt}}~utypzzro}sou|x~|}yvvuw~vy}zmw}ws|wsyt~txqv|}uzxwwoxslyvw~|xlt}}yzvx~}umg{{|y|tm}|uw}x|uvz{tu~{}{~upq{|mw~xvyswzzsv|yyysz{y|w}zxw~ihvz}}x~}xsp~~xzrq~|v|ys{{|~zsq}zuu~~z}}x}~rx~x}pw}wt}xt{ytz|}qu|y}{~~wx|||u~zxy~y}zpq|{yywrl|vy|twypx}yq~zxzs{~}x}~xx~os|yzso{yw}|~yyu~zq|vs~x{y|}{~wx}v~xr}{x{}w}|tzztz~{qp~{r|utxx|}~~uq~v}zz|ttyvxv|z|wpz~w|xpzwwvu|}xrw|}tt}|||zuv~y|}~vzxz|ru}y~{}z~vx~pqwzyw|wqz{~y{}wyww}}zz~}zvu}|~{s}~uwytv~||wz~z~wz}vw~w|ywvu}{|}yvy~vx|yx~z~}{x}~~x}zwuzyvuw|zx|x{vy~zwvy|||y|uwxxzyvz}~|~|{z{pw{y~|{~~}~z~|ywx}|vy|x|}}zyrwzzz}y|vx~z}|}wyyy}{}}|u{{|zy~|tw}}}~|~~zxy|y}~~}vx}}~{y~~x|~~|zz|{}|~{uz~|{|wy{}y}z~~x{|}zy{}x~~x~wx}y~}~y|z|}wu~}{~||}xrxx{|y~~zz|z~y}~{xy~|{~{zswyv{~~~xu{~zw~~~yz}}|}~z}tpx}}{~zvrv||~{~{z{zx~}zx|vyz{xy}{~}vu|{}|wy~yzzx~}{|}~{xtw}}~z{~|}zvy}~~|~}y}}yzvxz{|vutw}w|}|{zzx}{~|}z}|{~~~~yv|}yuqwyx~}yzx{{}|{~~z~}vxyxy||{~zvrv{yy{wvuu}~xxyqsy|}~~}}{wwvx}}{|||z}~{wtyxtwz~}}~zz}yy{}}z|~yy||||z}wz|vxzz}{{ywsux~~{||z|vv~~~{{xtx}}}}wy~yz{zzwyy}zw{~zyxx~|vw~||~}yyzx{}}||~z{}|z}~~}z{{}vsw|}|~}|~}{}~||~}}|z{|||zyy~xz~}}~zz}~|z||{~xw{~|}~~~}}|~~}zy||z}~~~|{{xy}x|||{y{}}{|}}}~|{~~~}~|{~~}zx~zx|}~|~~}{{~y{}~}z{~}|y{{|zz~{~~{|~~~}y||}}~zzzy~|}}{}~{z|x{~yz~{{~~}}~||{}}z{~~{yw|}xx{y}}~}}~~~~}z|}|z||zwxyz~~}{}}{}~~~}||~~~~{{z|~|xz{~}~~}~}}||}~{|}xz|~||~}|{~~{{|~|~}}yz}{w|~vw{}~}|~}yz{{|~~|}~~~~}{ux|x{}~{w{~{{}|}{~}zz}~}|~zx}~z|~|}wz}zzyz}{x{~zy~zw}{uy~}~yw{}}}z}|{yy{}~~|xuyxw}}|zz{}{{~~|z}|~||||~zuv}vx|~~}yw|zz~~{||~~|zz~~}|wty{{~|zxz}x{||xxy{~|z|~}{y~{w{~~~zz{}~zz~yxyz}|zx~~}xxvz~|wz|}~|~}}||~{~{vyz~~|}|}|xy{y{~xz}}}}}}~y|~z|}{~|}}{zz}~y{|{~{y}~}{|~}}}vx|~||}|~~{}}|}|}~z{~}~{~|y~ww|~~|{~|y~|~}}}{}}z}|z{y{~~zz}|}{~~~~~{~||{|}~}{|}|{}~{}~~~~}~}}~{|zy{}||||~~~}~~~{|~}yz}{{}~}~{||}~}}~~|}{y{~~}~~~}zy|~|}~~{|~~~}{}|||||~~y|~z{~~}||~}}|z||{~}|{|wzz{{z|~~~~}~}{z~|~~|yw{z{}{~~}}|}{~~~|z||xy|y|}~{y|}~~~}~|~|}}}~xx}|~~{|y{~~~~{{{z|}}}}|{}{}|~|{}~}|}~~}|z{}~|yx{zz}~~||~~~~}|{|}|~}zxz}}~~||||}~~}}}}}~||~}zz}}}}|{~~}|||~~~~|zz{}~~~~|zz~}~~~~}{}~}{{~zz{||{{||}|~~}}}}{z||{|}}}|{|||||}{}~~}{}~~~~~}~~{|~~}~}||{}{{|}~||}~~~}}|y{~~~~~}||{|}~~}~}|{z~zy}~~~}}}|}~|~~~~~}|}~}|}|y|~}~~~|}~~~}}}{|}~~~~}|}|}}}~~~zy|~~}}~~~~}|~{|~{|}}~~}}~~~}|~~~}|~~|~||~~}~||}}}~~|}}~~}}|~|}~}}~~~}~~}~~}~~}~~~~}{||{~~~}~~~~~~}|~~{{~~~~~~~~~}~}{|}~~~}~~~~~~~~~~~}|}}~~~~~||~~~~}|}}}}}}~~~~}}~~~~~~}|}}}~}~}~}~~}~~~}~~|}}~}|}~~~}~~}~~~||~~~}|~||}~~|}~~~}~}~~~|}~|~~~~|~}}}~~|~~~}~~~|}~~~~~||||~~~~~}~~}~|}~~}}}}}}~~~~~~~}~~|~}}~~~~}~}~~~~~~~~~}{{}}~~|}~~~~~~~~~}~}|~~~}}~~~~~~~~~~~~~|}~~~}|}}~~|}~}~||~|~~~}~~~~~~~}~|z}}}}~~}~~}~~}~z{~~~||~~~~~}~}}}~~|~|}~|~}}~}~~~~}}}~~}|~~{}~~~~~~|}}}}{~~}~~~~~~~~~}|~}|~}~}}}~~~~}}~}~}}~~}}~~~~~~~}~}~~}}|}~~~~}}}~~}~}|~}~~~}}}~~}||~~|~~}}~~~~~~}|}~~~~~~}~~~~~~~}~~}}~~}~~}~~~~}}~~~~~~~~~~~~~~~}}~~~~}}~}~~~~~~}}~~}~~~}}~~~~~~~~}~~~~~~~~~~~~~~~}}}~~}}~~}}}}}~~~~~}|}~~}}~~~~~~~~~~~}~}~~~~~~~~~~}}~}~~~~~~~}~~~~~~~~}~~~~~~~}}~~~}~}~~~~}}}~~}}~~~~~~~~}~}}~~~~~~~~~~~~~}|~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~}~~~~~~~~~~~}}~~~~~~~~~~~~}}~~~~~~~~~~~~~}}~~}}~~~~~~~~~~}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~}~~}~~~~~~~~~~}}~~~~~~~~}~~~~}}~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~workrave-1.10.50/frontend/common/share/sounds/default/soundtheme0000644000175100001710000000072414221624107023673 0ustar00gdm00000000000000[general] description=Classic [rest_break_started] file=rest-break-started.wav [rest_break_ended] file=rest-break-ended.wav [micro_break_started] file=micro-break-started.wav [micro_break_ended] file=micro-break-ended.wav [break_ignored] file=break-ignored.wav [break_prelude] file=break-prelude.wav [daily_limit] file=daily-limit.wav [exercise_ended] file=exercise-ended.wav [exercise_step] file=exercise-step.wav [exercises_ended] file=exercises-ended.wav workrave-1.10.50/frontend/common/share/sounds/default/Makefile.am0000644000175100001710000000057014221624107023630 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/default sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} workrave-1.10.50/frontend/common/share/sounds/default/break-ignored.wav0000644000175100001710000017751414221624107025041 0ustar00gdm00000000000000RIFFDWAVEfmt DXdata 7a}DWcFj+Fۭٶڎ޴V; 9"J$#L%Cp۲P5eQ YBnH /e ABt7,y~""H{~ܩ<y$+,&W1хڕo*-l$rvg]m4%,W)$&l 8*,$ հԑ/%., &ޅIпZH+/='2*Om+3"/EbK؅Ѳh q({+&`jtQq  @xM!!N- Qt5B-t_AߏQ^   -!p8lg}'y*יٙ]q I 2 oK$Fp_3$ 9r  N<?ړG,& = 1 "r! LE/XP١Hٗޮ!e  " /^/ D P9 7WeL>'kGz*<4R $0 6"$m#$v :~tfvB y #"mie H$rQ׍ 5| } 6\7-2Z2g `B -YhsqjcWr#%BX}؊ݞ;+2, ;$o--* Ҧ`V*-% ? )' ۵ ).(&TN  +l,~! ;}H3*0*"J҃Mtr'1;.2) ӼB   *N] zzߵ}~@dZ $%# =ظL܋~ D! \""p jW VL^0tQ"TO9: ^ > R&. $D%!@{i8!4< b`Pg%Y  x C#}!." =@ rvsC+vx>J4ؖ޻8{2)I & 8 }[ ' #K#L DZz*C2 4|+  @.DzU;e )` "I"۪׌` xmH(!" +`L!ݡ1-pI.p n0R & y`5R t#|"jz#%F,%Y3Ժѧۦ%VQ,m.a$K?Z'-( ݠԖ c +," ԣ '(/+1QeҾ]7 o -/&vU&*K:,B3 -1EP՗]6 )H,&w](n~djx E)(H > %/ r\%c}vO$܀_6&CsKm; ~>9"  U A$% $Le? 2"Rdx{d5-[ F v64eMCm :EZ)xH2~, b#%b%!9 t~S%.׮2փ0k M5a O s1]/hp 3"7%"P2 uR?y\ ޗQ܉9R1:,.U le ` W?=2&q<7[%0*uAP a  9 'vD!%d&+# [B",/Q E/g3lTrGܥկou7 x  etׇܻv. !:! )+[WQpjJ@lk gW n2oؠW FBJڷզ \)),5!> .[T]_B }"..#Jm;הM''/?,$ ݌ь:ݵ 3 .O1'G|p,4.v0 k.ҌD s!x,z,!ieњX'k0-' doсб%%<&,+"rTت׶H/o "EC ^Fy(U]қ l T!G" >W'5ޗVΝ87Q~"$v%$x rIbg9cBN m!$%#nLJ*B'3  sp' *'g 4o gkLXG6?r#ҾօOw/C)w h  C o $ 5_"#!\ } u^ %X].kvk p2w` F&s܀ֱ׿߇x N/!M##_"K"X=UwS=9 a- #%C%"  ?чtޭ*q  "$%#0 @Ly7%7 @'%g f|ة؀9n],1# Rܐ|M ,-#u!]>!eF(-'9cx[ } #-"-@! bO҃q *0w*7:ieT;%N0.! [ΗΖ@ ' .D1&%3΍ӥ05-,>́Wni e ,D kC(شلx-d38 j8##!  ' Lv9V},10 $5GykqZYޗޏ*'  pfC~*I `?j]פM7 7]  ]?%~*4Z(JAqSեh=zV < '0WUN+ ;/VI[AVDnW  ) < rNZ) Q ֆ=! zSQ65?'QsLtOc܃"x !"  K[<1׳۲$- ;. Y/@0ނ۠v޿ V"$$ Mݰׯ| m֪ZV3&(X ӴE uj+;,!W.W0'/,+"8ۗn "W1.4,* kуz`-5018 Yd2۩b "02H(\ҚW})o30! Vې."$$$*' ݍۣ[$JP  82bQx֏՚pK3 J+;+N%g {9GcE=Ix (9^ e۪$LOO n: . PM  oޥmYl-}y) @ { [ }o$&$ <m~3Sc5G3٦xl=UruN]^G Z;})i C%$<ݚ aQ3tsE 3o"l!5 1j<(< -.0  y @-ka!XՔH HIZj%R p6G*JL_ b >AC޲߷, N#+'o"%5}݈ $-+(jݹ_B6 )*0!$OZv1w7#-*&sdng%q#%690R_'$#VߚP T~') zLٮ(#E*U&Gz9Hێү<'N2/ $\~pdtG,+ !] l,?IQrv " $&}&.$jљP6ޜf; <ikyl&)ރИэףMB KF (=ߕճ^az ! .2- v=T?ogW]iO T)$ؗҜ"6WdOەKYJM7*5  kW : " L "!y1e^o:/3_\"P!ޛ8d V swv'8y @y{ ,/Y7_Xv5TaԍCENfIZ:m 1+#%#? ARpYTZ2NiMy1Oo v.^ڬDe)GO">c '(^H |XP +)wXT "%"7i' q **9  I"H&( 3Tֈ5}  '%r 3Nڋ<RK#9Y߃$O| m%%2 Nٱݳs/#h' ]+Ӣ6>&.s* bZ Q --Y" -85щf,e5iz]A@gM!ܰbumT  $%!%!"{0Em vcϝJ4w1 *Y8 \'5ޥF7mh !B#o -RS5c^p2ڤ9 V %Kb ob MX^Y!G!jrp vW!u#o6qԅe++  "#!}F DO 3G]  F3axw=kܶ3&П/oT   IRkYB} +63+';|"": }=-!ՔLw ~"Eb**uM'K ]C 2ә XSq|L,-_12Yژ6W*y 3j)"r%#$l4qX~k8. g"%!Mh ߮A%-)r+ /׽V"$Z G7%ڬs[  #[$<@Ck#ڳM .]!? #s&X)"Q*ۜԨnq{?'.#p0֞E_v/:d8(Grlȉ|m%' 9rϹ\t@ C vWcԻvܿQ# :  !!V iywU8 u% !O7|%Ѷ[t| +S!D#!%)o۬t?So4 w!2_" [IO7 ׸0Շy~M 6m ]C @ '8")$" Pq@0QS4Mύ3{Q W%=8 T#4$! ea_P :({ Fheeuvz ^HiYG xW8| #+=F -4["sk nxJ'^U\P`%rrUE =6ӌݏ  %G&n6>v9>Sh1'<0*<Χ^/F4+qk$F'1q0# ݝ5*/'4+EnЬȼPN*6K6(")T`.)/\*-2$33+64% ecW%j*% J.b!JA{ m )X Ry !!U-wL| Vr - 'LADTbf7٭VUr &?1ww۞82;M1?  '=q)  kDzV;Mtҗ)PߣzL264 q |I /w onOipAY-4w&: +  +Y[  ՞|d{u1cdP܉ # ;GN  } cz@9 t;^ 6 ## $!b pjj7K>ۜ9 6 G!}&?$_ a8ns){-%=TazW%0)5!,Mt~w=$+'Fެ%(}!&J)0,O,ܢBSu@#,T(Zщɣvz %46n+-goЍ (-+&J w͕֒ ?]1sD/RU, E@׍'ӓJcQ7 I"`%$}"Si|%q JO ##Z QSsVvߌ~w y!"%$!I@g; (2//FP m +]{m4`+8 T~ Ftv1 Am R  &++r'd|tn(I2g־t+Y1b p @4!(-,'hd xhdՍ"x h%p Jx IKqW0J8ڈB^7uY.WܼԹQѐ֖ Kb :Xn :L ڢ j ?K1 ؤ #kՏ)~(R,"ҫZߟ&D33&PCwʝnk, 3)-VD_&1 1$ )yί,D-75]'eб%)!]q CX/v0<:++px9ߔb  **!VB^?[$! G"h " r[#SԽf I qz ox XGY}ޘA0 l3i$w  sQ݈ٮ~Fp9 @f?iuޭNl%9M4 3T G|;392 xn}eY_5O?M]Fղ6r0\\C|  + i>  "!$D 2J=923 Z rܟF^j $Az2H   qڿ4F 82+u03 _{'MجR> s!5# trߥiFk  %!m!: \~\8F "h H 7%)#0SL#y& Ra ߛ!O/(,(& lS'$G$9j061Y ۓ}6 | )&iqjњɅQq $&w57o-IZ1ѫ#*>%r?,3Xkդ~{ =~M ܧtݹ=ySS E@ 0  wBޒ[  & "[ )SU٢ٓ݋9 ! "Q" ]-s`WGC- utM,DG&nAFן+c ][gp i }gtl[!! C~0u- @X: h#&&"}iF=Rx ",%((e%q 2"Yޒ| /" !\"s!!WZON8M[!!d .\" (gvԃ8'"1 ! ,UR $C&p Oօԋަ('Y;.ޖ) !o/1(bי0 %$#Pc5=.085F( ԥNnO#T&a nۈʋWRD/986% -+ ϱ +c*)|Wy#) A{D ?K!bCC$)m c A$%"\4ڡyܽ2 O ""n  IHܠYۦf!$I.5Fc 2zuW^> %~ c u|"G%#EE TFrv* d["9j&\Z7pl J#x&())v&!XE7 $9_6ZPJU|l!m  < )..(r /W[>ow ! %%N#; l18A۶۪COz a M##!d? EӄҤ4" H(SL H$t#۾ h<F0%5قQQ" {Bh E$P)!>FeJ + ,=! }Ifc%,h(i ){ֺr|v",*+%tbC˻ʟ!u3?91Ghx> "*(0HŞW  !x5?=96I".&T072#,u[MADߌ n wu#&&I"' 8*oka#{( 8{ݕCE׈%r  UW-fՖ֎ A!x9[{ n٧5{[X 0 h)M e8 a+$p%5"wfusS q?G3+fZ3 { z#/h g 3s{-ټG|1P5!$l%"G#{Iz]'>8Q !%&\$ mWd܃۴ܪ@& 4!$#2! ~FC}߻%E .!x!IN o? gXϓϻ &-,$wL$۪߳5(/)?Ҥ ,u1(6X0Ud3.=73$9r)/ف3Vh CW2==/$)-Ѵk_x%6(. @ׯƲ¯̹3><+,Wߥnv!# _l DkRGڱ0 F"%"&"H ` zUܳc  3 ( }x}D>އ%G\|)chf w\E['Ѳњ[ +.  6!"'  M7R0SkKlޕpߙav1o\]T ; s#%'(r& "s*cN_GM )|܅֦գDC9" {/6#&/;3/&mt ]`5٠أ߳zB Q"E(I)$z #_٬ӥq {m 4lxtR #n"lB c"J+ =/<՘GQ7  0+ p_!k Z/!0!B 1K8VElB$(" 2;!,+ VԶNڄ.RN,2t,F;F$ 2f3(nׇ U$,'3MȿȆֱ ?&7~;G0?Sβm' &79>7t%'bCoxI :#''s$? J%+zxH5 j3] F ؼЄӍzbk:;0 q Fnp \2o] )2SFCnϨ:vsA:wW wit 6 !E%&B"9)R?,g OֹЇΧsjMe8 \Dj=%4XBf;G./L{~ ,C!H%&g$.qtۀJo#e&'0%  F AN\ a8 T%N(V($5 ^ I?(1ػܠM).$,-%.dhF&,&gԄϔ*,! ەˠיx!381oۊa X5Pzԩf 3;7(_"@2 (*(#<–[Ϧ%9)AB9;$juC*P%.*A#F6R^.ѐͳw    $&#|@7 H>Bث؁ۻ(# XW""(!N; ?)V}6=N<jy! #! @ R - |QRނ֏\du _6"$$! O)Cݯ-AݠGu#$n2@|)1+)tTȰz&ej+g2,2tTQA%-)xۛyUS.3-H>˒%&354H(07yY;*'0,& ڥ̻tFx'-'O*ݳN-3 0i$E_x]SkSfa؁WU YTUo "i΁ Y v:e "Y!7  Pݞ0jފt 8 ZKK$8)*' R`F4KSV0*   D5UN}8FB k0 [1& ""xc7eayOD=Wю*h,LK8  #[~ @ T tOFh;l5gYwȍ<ީ  6 ngG '>Vvܣ+q #'[(% U/k0ܲ޶m5 #e$"c9eܲވxB  ',.O+w"bg# H?o -'-+I!jxۨ Ar$;& (׼1= $ !$v6فZ*-52#M )Ӌ+lwS"@!\TE*t-76*|Xv'([R"t!07?h8#Nkh"D7({1,FeӠ 0ES!K?kR\] Ył"Ў 'l#p$!OgScbBܳE V%))=&t t}+ 2U,ݰ#@()'!z reD?d5 s3Ll &?[z^ b#Xӗэ=1(K<*]' >JrK b$&&v#y! +%dG=#9erڡ۴y!9{f;R 1$&%L a =4a~G ux;{(! y2˘ ۢ  (0\؅ջՋykbBq$_''$ Y؊Cםڶ5#r&(@'F#\#ׄBҗڡ:V& #E'v04( .%8<ܽ˰|_#u47X-M|,iؘeK&*L#Fl 2[&5+`9:/!)(31# P& ,3.Diwɍa(-30%YBؔ |$5;!6'5) $Lr{Vd#] %-D 9!' n%eݯU A?na*!Дϼ H| Ibr 4HbOi X\"a%%#;l x*u1a؍i.KF T P   <9 !1 >  5>$mCض H·|4Hf2g tqy2iX& L (az_vg'z3ފΥ^ϑus~ Jt1"V# -t>}"[&X**K' ye{*ܗFth JP '++c(!-tPg 9)r1/V$8 dڌ #"9 ֖L&(/+D=؎`$2/.p!R ݀xִ '+##$ a|"+)WJb6d$&afhF%P ,-B#W\paֱA(r)- !߳F=2. s;ln AΛO h J_!$$  Q#_5v$)r)$ fFrpb>C (./+X$7)4<{hJ ӈѲu!(++(# P] 6 [DO5.֑@N$E+$xѷ-& &79-8PpϹʁү!" (!9uΦ%/Y>@=5SkGR1&34& ̼ ] 36;5#BG!25I)T_ْH ӳ H%?8>8)CaJr^rif$5#}c!#M#% q -)ۏ HDp* qK}IaвϝӲ ^rv2 c0,h[lp"#n#z!$XCN &5o۾mԑ՘fb 6.h D V O R8k= 9/ZR:ux>߱ՔεΒՄhL R| 3Vv [uZ >~ }&2' "O7 H77 n @^րޱ-_ | %'% dT>FvUj !%'&"DM!+4<ܑ' L"(+*&/ #|ݥo[-8J$.*,C,(b"R9Rs'r Y%.0*  {gڦG yTլ,)Kh/;4,(Kێզ:1/ &!ء K$$*|=<9$+ )0K ~hޣ xz#"seNqn֘<)2;.aJ ;B-0 ( &]ڷϨθ&'/'  |i`ϰa`%  p Xnd FO?ڨL/# )*(Y"4F jh'--)Q"l BoaYڌߓ 1-8 >b%C3ى`\-@ ~ o(SM'!F"  Oo5t~oDwiN#8<Ph i~"*(0+d*% qnP֏ yZ ~xn &`gMԬ>W !v(N+*&  ]K#?չi6 "`),+& 2~\>;ؖqԇߩ!%8'$'y&Y%#kEI 3IUO ֓h3 m$<22%Jݶ5D'2R/~J~W#!2z7.:R022W>;+QeȊų07i10"ިt+:;. ɹ\+3A,zӵD,53 )!IH*;N.y 3yI "m# G!'&קCX" |W! FT r n;Q! /: d"c!Mk cKtVGяң 6 F"C&<((&#M 0t]|ʾ1/j > G  c   6x%(_()ב ؤ  l > <^ V$$2w A  }Ga)0Kj|-W=Ѭ܋"  h(i-@-'mQ^U5b}^ !(l-.d*m" %uE݌i)GrM $.*3=3.,$D5 d!޺(ݱa%i,)00- 'fLo١7Kep EX%++(#U7Yݹ<40[$c%IS4ޯe'S43%DdޞW \+=,!I2ևԛ- $&v7 e|V+Ըf'",, "`s3S#u&*8S^K *.'eܫՑm%-(LKB W du]+ waܒRQ] M& XAVւe$8('# n Cj/{%*K+(!h?di&oܲڄ]:c5 b '"8 GF^ < D),-\ @3 % LiR%#&&-"hy'S^\>. TO8O`$4! v% cy!&*)%~~ mCqڇBZvhLMӡٵX%+)-*$pX a(>j7\֐Fbk#`()'"I Jm,hE̅wlb#&'&%$c"6:0fu̷ ̨/3>};"*ָ,v17o/\3Ңκ+/*<";,X*ؤ82.:5-Wd y+u42W(t_lJ + X"&'%`Y\^x"ߛ(f ; u ' ]x|"R I ushh$] w7`R6ug]!t"X"!ZLB-(#yX[M_ | M#:z% N ^[#K()"'\  ,t/{~y1B;ݓoȵ͒؊,]C q FX!&9& e ')1 uKۜՈ.(\ 1#`%$  |r,u\{ !'<*")# !BG i%ݟۨ'޽{yF%+-i,' 3#@ݏ6խaNp$)],Q,)!%,L }zwޡ6ߌQDJ ! &"Q%,(=؂ O)(O-$e n*Uj-f50D!Y s5g:  d?,"w%V$TG h7N!9; 'ٖҽ6L ),#m\R(+"2$A!%$,'} K ]EݫҧهAc,? \38 c9'ی *##$# , ^D]`+eLi%(S(#% 1E^9uېrӔY4<#'($0mjcy`!ye(7! PsbJru+&)("\ F &A= uG0NP' >l)rE |{C`]#(*z(!  ^/b߬hm~g ow [C+ܘҖ|  F(,y,C(e!^ ^EmY۠Η KS\%(Q(%&  MAQݟA8˿u$;(f)J)(&U#jT58O^Rc/3 A!lY]-=85%# pٞh${#mۼ))]:V=1$G@ˎ>)25> 9%0 ҐĦų %519.\бzf/}:y7' nP\}/5;,S˅%K)20d&Ttm$*NC I"&X'#$A;D.w8C !k * a[;ϩ͇ !" 8oYX* Y:cʣԺYc!!!!H ~^ d^oq ً : O 7bn:H6?f $o(h(_$48mH(7N9*r,g˪ٌpZ6o  '}"r(*)$XD%O^oy4\tn;Ҩy3w;a!($X$!3ZAA8/B}| 3>"%&;${ +Hrۦ#'(g'#l~ rwm*>ߵ0Ҧոd]&$<#%B&Q%"mFN8ߠފ)l#)J( h\J ,)' A #Cv3O(/)}ԝE6y(2=1$ qݨTN4!ZCۘd &)*")"Y: #_!Fxۙ`+~0~)>JկΗ?,K2)aWEǜ3!#.!Ve Pγ5ҳ~]2O ^J(He9RH״l-2F yHq 9WOݥ֙: #R$l"Rup oQ!֭s| F`#(*"& ^0kBݪF l v8e 781 Nc&s$l&D$)3Tx߆1Ya,4~-  ? # *0-+% 4}06a/߿@[ C!s!9j wtx#Ԏܼ_O+!:),+f'< > 6MA]cvk 5fF F $%E$ oG $>ؖ'ɉu-B("#%'(',"7> \)X eTl/7[3" GݪԘk'-/'o;@X@/^>@>.zOd (c u$d&P"< R 4 A p|h.3%3Q  #$U!R=oI4C|3 &M0#1 dc  , +t &$)'2 3 71x>DYHS߻l6'7B L +/"(g,,N'nl~j;KN Dy " gN ktqԬWѮكC|"4+.-(f!e gOϽ˔*ՏP!%&L$  "#^ ͕̆PW,Rw!7$%$Wx;*a} ."*2-z|o,3,mUZ׳/?J>-.% $Ż3 *W=A(6ǥŐ//J<::)DǘƝԼ &%8;U1 KQ_ ́Ar%/1-ckx !.2- l-?nL^dv{kF !e$m#e l xRnv"l$v"@k <ܒ7]Ι׬R`l#l%I# akγ˸o P82!Y$&(`(f%PJ ./()RK^֟xC}  1# ?9 eQ\p Ej- . F)~n!AQR<lY e  E j$[%  k5h9>+л=c7 .U? 5#$!+vm{ލ^ ` ',-**$DR71߾o5c>) J0"),{,)#N |q4ҟyם"d ` (,B//-)g"! 'Ѓ`ِO4['260!% ]qeۙ3'&&-NZĐNK #2|2%@SՃլ !.16){1xXp&":يЬ3 #*G-+&ةZ " EVIH)H/()W8Pס#'-(f^&Є۪Bc@ #!F8 6AP_zDea^W hrk7#  %$ N^Гu*p)=0):'8 ΢(= 138/26#Ĕ_I3@>+}ēԗ-Q?A4Ċ4۽ 1==u9_' cHԶ)V9:-;ͼ La'.g).q$44ոe%$/:1) P':h cX 5"'! *+YIFش096}i#6%g#4 |Ugك}kϊُbt%\&$f s>o. % y $m''3%; \72*m&yԯߥ$v *. 1 $ 5 ^D(" }_Ze/jVyW8ջ[*$: 1 E"%# 9 \ژb3BװBx2 N!$$ lwG|eN+f:b%n+w.-)r"+A#^Aׄ.adq$*,\+~&T:nؐt+ @B$&+Z.//c+s$ Ezz7"j#-p0b) R$-*LP)׼H B+**[ߊיU$D13`)\J[#(N"*<?g#..$^ C% >iϨ-M R .1&("JXI+0'Y$( " ;?Tr{Бӿ|s  gϫ6"""  ۥؠAD"$c%# li)<+jj v-(*u!b"r^+dUX>|3.Cڌ/  UQq"- "9/!%&(t%:}=0l"Qa-ݤ6K ^ JPu#g)t,V+%[I߿ފߠ[U ## p c_r˴~ۊ 4%+v- +% RkH˛ΝؙQyD$g%$p!M( ߙS!9 cd+֚.O 9$!'ؑf.3*9@J!S48-qS7i3>:( ǒA/@ AG2;וN4|$;4> +"" \< Z(Q؍}qϖ0c_$D%#EA  *:Aޓ/Ԟڎ ba#`$B!/OX*jtzشrكczKG >lXcM1 @l~if)?կ/ "y:Qx@ '7[ 9 `]Jsu B] X ,pKbΠ.ޅyq " $1&I#:wm`ޕ1U$)+.A-Z)"NY%ߣ.dGעz#(+>*&H!1 mIZQPUy# )-01/)` O1U؃G;Oۘ? (q,w&` *R$.<,n; x'%ܺwQ$012z( {n&+>$(һo#..$gHg %j!/z;p.3*} 5vb,23+)h{R1:%3*'#! B  JJNeiϨӿ܈` /!v72 e:f$6B ""G!O0a%> ##&& e vc9)s[93am ,؝*>  tMFX dB!O#?"0_ .=L=zPacJT 6 j !)-.*u"< PLS '!X&'%& <KB| ٔRғTaF"?#'-'L$1 dq ?Ps Y p: 'Kxu8!H/ٵ" ie="$! -G)Ȩ\t!A("ՃїW "n3"7:,Zݩ˾u(#4I8+ؽgU"5<4mt(ǞQ4?:n( DB#3s!38.Ә~ԋ++51@#] !Baײ$,0"'<$D-/u618$e_oF `"&%&"U %,U24)G(9#S_Lͨѡx?9|I PK !m 4>"  x+ ! 7:OV/zd[ޓٿ>aa EF X'J,`,' o ,DY u .*s1(5i4.$o#EςЇәoߠsB (.C2d2.&X4ۮ&.W6/J4$*9/V10,$ l\Fj҆x  $"] aHl&:!%_ [UQ'(sI ]tGvgB18W3!ZʗxE&`3X2# ;wչƾ{ m!u38,1QUq"ў԰ )Q(w *рͣ?,G&0/# ݺ|.2 )T~]y)M5|%{*^)$ab 0eOA׌" n $%$#) ?$ޠ֎BU \ 5c!G""l"_!:<u,gjM j 0%'(&!P ]?آJѤѱ91a 3u %+X,&U 3i>GkvMD]ݾߐQop<)*G a #i%%$!qRhjNh'7 3L޸: .Hpm#R;2 t$+ /-C(((R}XwY @ &)($L ;.Q=Ko"74!Y" cE52 PKL-#HT%eNIZ_ _o?ht.Ϯ^kY 8L+< #%#I,յdb-. P&|".{;> |$47,xmЗL?!03.'Nj /46'.(s-ͩq089Y4"" \ո@өM.2*k$pB}*V3<0! ψs,p/s%7еͱc.40"cR;p^ {"'#{ "]OS^$-r !!o$c5 ?y!Ի׮ݔGv e9 ##W kpZ>|#)\,o+&6+ !T< "^ۜ *!J'f**'݁SIJA L `u'V7v_.O m, pp  #Q$F$M#!XL (> X`sjYG|,xRi}Z~?ݟiUi' (YC@Ud!="Y!_/B B=]|L#&('(.% F3%ˑco˘4{_($k' ( '1%":zdպ{{  %((w&W"3 Rc>i+ҀeΪFە6[Eq&)8*($M~#*[q>xTqnn)1+jԺ6 (-&(KC˕ +,"7#/ 6/s6 Fqƪ'ԳH!/262,RҒ53<7H%<   !V1t3'!ޠ!גH.53'c>OԊՍ߰?nT0$ Sz'!"= ;t3(*5!U &N !w""J"e!"r2άǁoȍ~n %((:%BkvٕӃncOR{"n&T(({% u {yBiu A cc r< 7 q%cn Q81  `wm~ f p2 G] g v eI +%bjQV'+T\ , L"1 ހ\3B p!)&(($ T)kx҃QJnkT$   #B)--5(%}HEiނިkߜ)15T4-# pA3D5JX5,%-U- $2o۲Rd$B.*`jL&,% WiԀU+6K5'ѲYHXR-1("`ވu0_;n/<9)%.2N "l/. F gǚ@џ]0708 |X(F4.2" %ͣq" + j - wPެ>so)Fd_GOw.  q۸`׃P{ .1!%%[$ J {%.]|9E M a&(&F"w #pmԦLp* $&'&Q#?a 6yP8y"*:gZ#5;/x_Q}4Zvp  q%#B+.,%o3}*X1$%ݡ 'b * x8,D7 si9!pK X--~؝2 B~ wPlϿ̀Rx V&3(%  3(yW*db8.  Z22v%9 . CMQ?l`O ]bs2U!9 `nY[hW^ 'qQAp<_;BngP = +Lyy [ H#-eq su 4?E0mfT"?6\vk-tl F  21D"Oh: p n Q3]8^,2 { 4 QS1:!01+ yJ M`g=xB+.u - q cbVY(Y%Z_ $p:Dzb@  n w,0p^SZz7N $ M S 9ehV/s4o Q  G3V?}fZX'.(Imy0v:L   ?Bsw*EQC| x  v 6 ,dZ"jVsZ p # U\C @&_ L e\,dX ` n D ~uq%/"svQZ D F(v-Gz} = 8$f7>[g z>.lQMg 61 8ixuF--}OQQ %;Y&h47v5Z 8 :_r}b[&r?,jM ? N  k%d{z<+wP $0 2V~AfO8UITd-')"5G9>A I% FuTKL"Z, `Gj kDZ^1 +G& 9 J-];9Ft\2r<uY1`l&1z1poMF?Zcju'}Y^04z%z,{F\ Bs)@te N (  C.\w";c{== p,f"$X B 8- Z>)S a ZjpK [B@h3pX Dzv  heatRa/lK c lO=\^ wK|m$EW5g*?WnC xy/wy Ax`  r Y 5*m^fMpQ mXL +H4k]S#c b] W1IM3eF_oWtFzy8d&WIU<K_96 = : O,m`SoV_[ Q+ t _ e[!&I q cyzbzCZ S -6I9  n)K: $PzWL  \?& K  2r74;D}5#RXBL&jMSXP<{co~#L'GWJb.GgX}.nV9C1+( 9R7pO./IGLQmy=pXDqW2,I5X N_ Z} Du-DR8;- R  C'6K{C2B' J ~C+.@DGnOX/jtW7:@]@J]`p;22?*cG q$%1jlh`XGQtrDFbE0hoe2,t?pRt>j D$da J8}x] m l *p}5wpZ17c^l7QcYTI@6 &FV0&/[8]? jJnQnap_7G- @ p_Fx7^ H PY;T7y wA;n L  m 6U ^DE)*u23';P 7 T Ah2 6'7M  abKPxEWs`3NXNMosp;(7Yj`^ ? G6'<5j)p& 5 m Yta3I$aWuiX`6nlUd q+" } bG]U  *Uv;$<['Y  F e NO)>S2SP 2 y zq|rl3+T6 " ]yM#1IhH R m r^ ^;x)N9#2,26=xGo5Za\?$rMmJAia' ] ~es&6e:p w + -Jj'u}Q qx& / G<i2nE47N H H s[pIXWF(= b !x9y,yRCU]P ub:)?G|h*\i{YzZRLV5mvTibc_ JV$F(A{ CMH 3X. 5CXQ+YDnDLb)W  t Ue(]x72:IO>vxws>R& @OVA n YqZ!JWv/aFa*RBQ^:X|k*.r;`(G h ] ; ESZr w ? 0! k(|yM|b ]T]>z`R$D4gN ~)(oe]We 1  o=~SJl1[q3  Y>CcuK*   V^I[x[A /D7Y 6@Cc]t0(FN r g!zXa`gS}@ M [[rpjtFrq86hue4( z1 k mQ; jFS!X )  q:F}S=XRcsl M *  LYGSIak>gZT H$p 0rl]ed+K{Mlm;Y}}B3 dAbY|^<XJ]<( y- i h>)S0/  q oG$&`I - ~PWGKo%mKgh"NQn/ A ZG MW4d`C'pUFwt/Rh }K9+YRbXM&  2DZ&QCp c _V!(%Jc=gYI MkJ+5^0R) % Y O =o,C CDEx:$MX:Af % -pb*Lf\z;D;.ra^FWz V% . *S(X(M2q<S@@J{JSs 7 |eQBk Z6{3{U*- jV t j qy Bx;sGat  '4s1v^s+a7vb  `szxFgRP4\ OW:`a-5D=DL,*`/^L!'.|I  q co9tk qu#_U"'8+Z# 7 +Kw;pj].  !Ht-wcaC> 6 j C 6[eUvIA    vCc"-|%|o  zA9td01Xg~v A \5>az[ G {lxf1]0ZR8[fV{pe2\9^I!1@/uChC?9Ty B FZADu7p $w#  O gI}bNGHy t`T_hG)#c C R X0;Ag(pG7 i' j7u!X"uW ]F[L*VLSIl^Yl `MZCU,]Q1 (c=mcW'j.7KrN 8 w b^?g3d8dRx:a-8s6d,sh`RD(vY&+n ?)G}wBKehws5 ?s'"N"EYlWN{~t\+J[VOHL znuW SPY3rJ"x7$q6- X9Nl {;:  F j5rK-\9  3 2\bvyOwSHd xxly)Cu-<4 }Q~r%xIeF !nJr#>0:x*xaM_kCV+ Qq )OZsC/k4+1 w ~g9b/<x8@&4 h uLv 1?7-m 8 +0WF3:;Y2F _  1 _5Jx!I9_6 $ d8@%boGdHM;Eq 3}7wKt&JyPpvs#pi9ph`&JEHnA_u & >mEqa?OK0R)6 ?! O]W^]9_#0\0# [&9sS*Dg, V g `@1C`i!&7Ma7P(e5QJC*R?5/y%b,y`,Ul6r(f7%YsK*/#,YEiClypGL@1uTDy | q. D^9-+CrDp@;>j9P c-Xmp+ ~  A~ _~Dt/dF  y P.>g77[)h!"9YQ~t y}My{7E/trXniVaO m 9Ro& I0lT  |8:B>=+F0W _ ER 4l.A| 9  %*+X}#o>" #  >ONSqk?hx] @ v#0t<tgy /t<9;+\Eaz^E{9os~i2t^T(t#d!wz7tcQ,  < Q a&MhlG`,I"|`h!<^}"; wNEkrRy ] a ,c-eY06 t$ $0 Oga/u7MYg2nD4.ZY3w+$I+oF7wBFooNb#E(j].Q8miDNN9pCp!FD2Zya1`hT+ 2LyDF,y/t|oe^ip+.ypF-O1]dpvqx]3 ~|9Fd{m)8bdNMT l7<_\v;:xGjqqKzV-8r3^ L sOu1 U * L S' k5:T YY |OqnLrXoOc~ F C[ I8Q}h# *5t1UA4aUMO\B>tNb=p EL@&9U'9j1:FblTj n \Z?8QN0N^3&ea}F6rbLXYRV U  y {(7ik]`4;V?%M0J"qWr;dzo2 L31NF0wP4x"pr2Pe"izd~hOFEp=id4yiuCt jm$YL<:G 3o= [/;c,9ZfJ%gnE DN^.j G / 8j%\,/m{`OG] ]RHQT) v (BXkEm-yH0. hm )"OSMLxqQ I} aaG!#D3*&= SV$|F+L/6Id/:;\QPi%.mon C X e#e4\U@d[LL3sd$4"B3|Ggmr R%y'E}'8=9;oJ+&^8{@OkW2K?a~ Nr%oR1 l7FO]EgdZ{qzy:w^y @SSY 59_@|W?8K{ %XY8?gYUuG]  LFmNG[K+;L>7zbhb:)B!heFJ4ws}75,k&)hj#Q_lwNV*: loReTyW4map.' i]ik%{ Dc_Y([R"q{KQZUof`zx[LD9 Z(2p2kDP+Zdf no[-ry>s| y gb-S!Y']yja*B=Xo}kD*|T8 O%p~A'yf97~,$p  m5fx&[nz #S Bwu8:VG &Oq%vmHovoe|TLrA 9 px_1]z- Ea.EcG]}wFVH[ oHN|,d2L}&Y51gwOq.Pk.: SRN+pcY`mmJ>iEHBn!?N7]!)Ee8c0nduv~IVw[./N(ph,qC_Esptkoa5 ZJH:?+sAJKZ/S\at]L[J T[_AY,)1%A# #cJ6pI"Pq$L~/NtEwnW@Og@C @PqLEBm^z)wfd;V%#$h f>I+kYcp67F9ETe<TT4<FT4oy{A#6o%YzaC/U?} snybhQ6tp.: D  8']EJ|>FRfKL] !D P>`VB+yq0f2hn1FtZAlW8 /gK<>(RagimU[m)uKM#$M2,`-nuwN%*J#:-NeRSS S|  K6.9!B >8f:vF2w8g,d1&8O_bQ #bJl s~PxeW-:&lJc=#dSkpY UkL3OR{`I=RbB,.Q=X/k B- 25d+J6#I| [AS Bc s6H+sNV`{a$2tcHm6?S.FJ0^l mOq*=1}7>]p>$1Ar%>@z|-gA8OHP8?_;4v!bOtn1D}gpSYx?1;r<= ABT$M~0y Iv.x K[R0.ij);m}y",c fhZ9+{q+:u PNbgBs $  s&q]lrwQ5}*fNgE]v&= '! . 7!sU:@31JUTZo Ge~POje^%>Caq{0Q6,g=M#inzk/ V= wun )#v`/*1peXIcJDeV[\9w 1z0Kt-JN> *nm[k  Ehf#/ G^ 5^lU"fJkH` ?y~ S@ :u^Kx+Q 1fl|Nq?$irb+v-a8~mS*ePLPFwx%a]~9_\g*}JX*F?&9o;eS)R+\ dbbwE;yXp(Y}X OIDz#[=-{Ne')@.~VAMut  o{6k~X~I_D{n)D1}m5rxIpy<("^ZEyrnxU[4DKQA`n7^+3|1T7=8E)^dF:#%jp>l 5@ Hl@thT+,~i`m5`Vi\jkqdD3dd0{8B;U{+%C0NeM6v4.sHX UHHL$s):'QLeH U]~ sghf)z 0}6J D.=S)a.(J/*WL%%\.yE'2CJ{Ej2Xp+[\Fpbe.|}s\\F : dg`n'+gWm6Q]]SFS2_KZ xVp6v yK(0LsU,XJ "QV+-l1r=+\KtOQ$r%" f`CM%1%G8]V6]zA(gSwF$i]T^p#mD'ogm;100: <1'%Hh3T5tP6mH77r, QK(BCeBMf46^ExR)V8_sqS_ffCL#Zd|#`LL_`V-)S 4Q4T[Hk`MhdnT%f{+^s]X9I=~<uF.'aHJL;!Z]Dl  xtv s5^b[zM^ttCm&j#yv/Vo fZkaPN,ct;XQc5Mx>>?x1fY}VNI{t357r[ aDC 8SIFoiL/w#*cworkrave-1.10.50/frontend/common/share/sounds/default/daily-limit.wav0000644000175100001710000004644014221624107024537 0ustar00gdm00000000000000RIFFMWAVEfmt +"VdataL                  !                        "(&#        #%& "  !  $""(2::72-))"    ,"        +024CQM:44+% # #./,.4387-   /-)#!%  !&-&%&    "('7IE8*+ :# #   " (#+$% .10 1)!%57%+-2+'   4AACVZG:65" "    "%'(+*$"  (&# * $*.-/-$  !/-!    ,8>=6,# )4?A?FF<4"  %-5;@EHHGFD@<70)$ "+-4;=:3,+%" #+*'%" )/6>BKU_c`^`c^RC6$   %(**($"#  %2:;9>AEKLD<+  !%'%#%%!  +:612+-,9=2-/+*$"!""&(((+,'$$&&     $'$(%*.//35..)-("   (+./-**('    (5>BEFGA61--(*-*"  &),.-./0,'$  !  !&.39:877631.,*&#  &# %+0479:::98886669<;<@=:738550*%  '19BDINORTUUSOJEA<:BFGFDIG8+%#   $%'#'&&$$%    *450$ #*-155776552222/,)%!  &2/@FD 2(;>]0_"I9/YAM12lHVCL]FE,< ":# !]8R8\FCQ!C93 % ";$A &Y-3?'&& ,)$9 :JFoS9m>=AAF2>G:)H^@"A(0 BE<P5NA 4&]#E8'3'<-K@16 0:#  (C@1:NGZW]eoo<Q??,G"MC["@E9   67G6U$=&PAW BAG0S@ J(.@$)UW J  O9 ",&.& #%,HL=?&!O9-) )*7 #,$)8<,7#' ;M/   $)*$ ' . &'( 3;H. 4" /#  #B7NN, /$32:E@&@6'&$1$#=CA57+'% &$#65M=V<EMG?NHCB2@A9/,(*% !  </(V%$0 */ :$4#", *5' &)$)&97+1H8).90(.AMSPB/         "&%% !$"/6E1FA@9163*.3.9#!  ".0/0067.+=JE925.)6?BF@B9)'&*,1-,.+3241  #*10*9FNOC92! #  $     "! &%&+.36<>:@DFKRTNMQLIKGJKF;-%!    "('*+061(      &01+%))&#$-.)**)%   ".7:98;CEA@<60&     !#%*.,((-*&$$%##&&%  !'265-(-484.,-*&           ((&%%# "  %$"$!     &)$ !"&($!     *..+*,/2158540,)#                        "%+,,/24410+&$"  !#             !""!!$                              workrave-1.10.50/frontend/common/share/sounds/default/rest-break-started.wav0000644000175100001710000005337614221624107026032 0ustar00gdm00000000000000RIFFVWAVEfmt ++dataV}}}}~~~}}}}}}}~~~~}|{{{||}~~~~|{yyyz|~}{xwxyzz|}{wuuwxyyyz}}zvttvvvw{}}|}~{vrqrrrsy~wrpqstuwz~}~}}~zupmnruttwz|}~xoihjjjnswx~}}{zz{~}vmigc__hu}piheaahrxy}~z~~}}~uu}qb_iof^ailmt~ve]^b`^dnqs{xvy~|zzwz}xsof_]\_djwwni^VW]begn|wqoprv~~}uic`]^bdcejp||vnc\WTYemqsv~vz|{xsrsvyvtywqfYPPU\fwvnkh]TSXahoy}z{yqjhn|yjcegfc]Y^htvi]VQQXbgjs}yvvwunlmrx~zna]ZVSS]r|uiXMPWagiq}yqhabjw||ujdbca_]^epz~|wlaTMP\hkouzzyvqh^`hs|}ywtnf`XRRXh}}qdWPNU]ciu}soldWOTd{~xsfXY`feb^bswnlozxiZPOSURWar{pf`YVRPUdyojkjh`][\acfgs~ukbdpnRA;>A==Nn¬r]OD<5/=XvƳ{dSHFCAIWitre\THDSl~Y<+%)&%+Bgɦ_K<4,'%Ae༖|eR>3,*/@Vi{£nWGC957IiܻmB (Z߱]6 4_ѐkU9("'OuŽ滌lRA3;4!2hW6 >xQ. 1eaG( "]Ҏ`>-$4uX)  2]2  >6&  hg=.  "+6C   ;@ g܄!  @ҌE 1o߉  #ip!  RV  Bm侏l) Vya  OыD  Qޥj8  .'2,9wյcP_kU912KuŰj@%/E@. 6ezѡrv}c)*HeqTXuy{|iZWWxtTolh~zrwcTkzqa17cr{fE\bytYu؁ECEjkUa;Ep’oKlfm]@qƀ[ioputJgn}}bQ^Nz^v`Jut{vYMqOrF_q䖖eװM'o_u>Qd^w}DnжSkuagKP{Ɨ;zcZZz=s;okmРxo|᳐.AY!d`'nbߚZsPcqkw}x¸³\Y][\K>2D{yfdcUJWXcu}w~yyaYbxqxUYxxUAOYaxөn̟s^T`eQK50rgfn]V_PQilzoq~qjnuuj[licSKZhfts_XbegU3Nt`g^YkfY]doW|ƍomt|oi|ph{nUqwodFTjagxq~ѿ|{{b_\_`A@o}|zkP_p_Y]qai|ɧ{xuvuzbqwR_{uO>[ivrvĝn~pqgd_G9XurYUYWX`ihvwlhipttrkXjy}lRRU[qniŤuvykemeL48hv]SXJG_ykypt{odkxrnoyik_JKWbmst£~\Ycd]NNML^fz^[XYjiv}Ҩ{mvuhI30DWhsa{paUW[XVKcu_J49FJhu~qVKFRYqʨabdk]C+,JYpnoĩ}yybVUm`UOIoreWH7CHax|¶dFKRL_nۿy]OY];+*OnͲ{qh_VLfxnp[joGOCFRX}Ʋy`p|uRM[Mfd޿nP:>X?C)-_aһ|uR`qw`]jMh{ZfhKb]yyzɦbYswY.VWuξg>*TBF,XeomSkppY|pOYrtxwo_CNQhu|Φ{aPglxpTaeotvüc<0MVN0Nlٻͨi9>f]i|m~jQ)%Jsҿy~ZCHTej>TZB;Gk뾀uN(.'4JWqɮkF_qnuN- 7WSFX|ɿz_>C[fm[Xq{io|xfq~w{vutRMj}|vzO6'*HVTczwK3M_ixiM40GNm{ƭgLU^_^IKEAjõǯ|vskO-/))0I¤d_|eKSNbzzSB>^or_GHYZ]PXl[mƶsomnb@EPBcyy]ZVUxppaYp~l}{SHV?Zudi|tvSU_Hksyw]tfK`j|yZXCDg`m~uxu{wa[fX\ou|}w}s{oQV[IXt}y^hZD`tpVRKSxqqxg~jUj_U[\mzywuxxR=A=IgpicOSj{eYPNarvjtbO_ia^[gqv}uy}T8=9?_eXZONep_^VXhy~wa]p|n[[e[OWktut~ȿY8)(5TxwYSV`dj~loaZdl}w|f\ai|·jSNWgimtqis|kva?)/a}Q[ : vKz^'^tS@ 'z\/aKqHY , m  :bDA %0:Rc9aur[0 -)>Ne |> 0 ay0H1 hh/: , xG_  ~L," $%v.: u;KH)7[ iqy]$b T "]1f6!n i C&kg<"hkFs H[)Y , wHu#Kd&e 6 RmC9u UxP% F}s8$_.`r$Q("sY b  'G\K9CN #3}.X_g~iS/ +KXa<i[r#VCDh=hD}Cw2 Ssvy. !8B|$' %Lq: F AO'A7S \]s&=J׍8 wژ5@ o=> 4] ٙ &)NO $]8jO )g!~5\ ^C( )"@(e(T}(OkoQ?-%!3Dr0X ? 3("b/ `#{9_ h1.,XA*&  d 0ً^s  F| Uk]S T >I2X # @DE o }h1p fN ]'2d ~Nq6s  g ;iYKO"Ek1[(j oZ;  d  M| dZSOe) M\ ~H`@? ?I!8 ^ - gsDx W4 \XM9 $ . G M +h'^ iH &Ij 8    = a <^ r( <WQ k #a4P F yWUD4Olnq r r t%0 y g)dK e enx  Le(xo s$ J Wc5g5aB o 5mW~NyX!p,f9n  Dt1 E&H ~  !rz/BT I J-f ]tFr0 A B*jTDY t)KhE~6 A:2bsRi2 16 t\ v ] yLW]Z0|<=}`&` 0@ Ov+Q7T q-qM*x 'I(LGwrmO1c6] ~J iX.T^ -#9I!6]%T-z>|T]@m/[:o <O3"j+ k   [U 9o[GXXYizww D,tW5cZQSrS2G][W0(\= >]B'5T{@ ?& !?]m0yN" (T jcKyKd'$~ R:Rj(-Sy:Dh 9haBX* RxxbLR%tM)onjM>3\6 +'PDq#z ziv F|1ON[)=NDwvc0FtWUP(r3N`tc>^zR6Mi/TQWh6`DTHjjU !sQ2q/"Z!S(1 \IzKavQ@ dSDR%2PpFpM,IZ DUncfT 1k+gi 1Wgv(0 |sY>Hih 2 d x> G80(Xa6m<J +7!u 8+;>fEk@KQXf6P$8K[ix>-b' !  9h&OQU*d }dmuh?IV[\ *kESo3:Bg^5t>b-c,fF'@ ^~N kE>]kyoh%jnsumgmreVzKi CDFrb_Q67inhI(bigb6VTABH AnMGw7Z%6Mwc&x?=:FTQ#9O4x}k*]L U}17~%wtX(2#=g[}9Ndx;_7,,Ve3"PM6KaG,[6NdR2D]0!vl[l7+]-Z}SVzlE8uc}Gu[.b!-zV1 ,Jf8 #L5~Q%Q<0$*1H/k?IJI 8es]xoZ/K6pqui%E_S=& !;qcUD-6@i0X ,O #nYN k kf`tAzn$b6S$gl:p}r f@+<fU.zy{|}9kA+>H+H-=FP9qyrr$p}Vp0}Hd+5gDsld6y0#4] #[N:M[k\PrF41<H2%\8@!3a\W Bz@AC) h[M&r$9\3 V!AdiwY=<hu]FE6C9j;OKnA +dm.iO{9Dlp\ci'Iy<]WXZ$?+4'c{hTD49>e'd}Nq-g{b6Pez[,[^QCb-FNJHW&j~u\:`{)-vMxcR eR"bx) L.Qow_N>Dv5RKG Hq$a"X)*)J)`Uf@Z ?oF"j;ilA!J%Vu Vk{DgVkpu}>?@0eBQ7e/J9[iO[i6mBt rRpa9s )aW vM S.jH|iQ=yh^D!VQ& ,O/rw{:=wD@6!=9^5& 0Xvz^9'(q dRAp,uworkrave-1.10.50/frontend/common/share/sounds/default/exercises-ended.wav0000644000175100001710000002705414221624107025370 0ustar00gdm00000000000000RIFF$.WAVEfmt "VDdata.G f73F_nMzN!8O|`1SWm' Rf/n./ ;%05(3{)w=*vDRbdxJR b}woT| KwDXRK.hs0Et"Mx7w qizFkM}i7`X*yASzHeQ<}?[[\8IZE(j9W-H}p^K~wqAKj}#GC".J `$sD7%;AOo6uH1SxU41-{6nAA]N>Gsu4-;fUE%">93p=\~*@0 Kpp R@-U \|UUG8K^!fMxD9:;-fVE(;n#.;$,bXgA+JmR$}r;96y>u'%SMHWco_Nc5 UQTzZ `'zAV'/<(Uz?Ph$ 5q.{qjk2#J oB<)#M. =o~V>j%+wJ G9 Xm= h- '0@r!Qs#10.o{[&J Aw|9N$o%/Y,%'1$,4V oS@+ (D/Uo}|wpH"rMo#hqUw<2'uBUh[ v   UH=ScBix tKbx}cp~N2U<sH|L>TiXFJ  T9f[#`IkZmXx`G<1%c G< ^_?nq|}kP6e!~HB;m6;@>;[|rhF"7JFA8/&/Nw3l3)3=QdH{'?XTO, o%x w?1yFd;xFNJ;.E,v<(=S}Cr<z1tb #`hLg}V-Gr5@U#>AE)L u!.<1&^[R1wQc _Tn5 4Jb}9t^HUb}Mf@hS~7,  ij ]&rZ/aDxl&=T]f4 4g9o`SyW6]-; a19>~HB;U j.4rD:XuP+eHGJlb&1tB|hYI3>4k 'EK"4v&|tHVd}A)7#09B9HpaR,Xq6mQ5guH}E&^Xb,nLe;gj3';BI:dO[)/Af|[!EvltcQu~7 p$JplAk'D +`H{#hZƲB >!g52 +$gI#^9-". pnjgˏw<qCd&] <L۞|8@*7%rO**Hi-f Ev+ ~H߾ɻ  ?mB!'L)), ~N>e "Mw" 09AQ)'a fۊF %{V1ڲ}o_ igea(R?  JP ' rR}Rj%sK e0YY+t2":x3PkZI 9&<U0wI/> 4/ i*X &m%".;/ !N osi6?{ 6 = 0v/M  @$?^z Ei\q k+ 5 ^3-) >z OIv>P_<   7,T @zO% c;})tx }^-- ys! v  ' eAlZDg L$q7 HWpe w .@ Qs2Po;c $K PPJ 1|cJF?  K ^? ^S A 9cx 5HyRV8imq > W q ;  d TLBJRCMn-  }u:~ o  }gQ&= `^%Jm  *y$G< 1  qKSu 7 SFXi 1 .Rn  (`7 ! M#.  ILn'  "\$ d :h ~ h[YrK $ P?{a E "Y ^ >~: >uo wH   r i & k3QoR  6 S;@< 06;E9. % `ss ^5q81+   N8a k O  d9> - i*Oq0 R u Q  y ?<9xpCw(kfa] Dq Hpo !Tw(u M%oL % la, j[+i#w]C4$cI0 - x6n%d$_xQ@RumY HtLDD_w7 }X $umU*zoQ *ykqw>}) M{b9_MB 3\ !)+f! jS; rP^m:&F) MKK(i<,W\5O(/eF5 )v5 MLLkA{}8JFJ _a->"rN*QUQLtInaX#`o6!DLT-/h!.7s /$a84=61@ (/Q2| el^\/pas@svwsPD3 E.[$BVz_kL\h[O}K(XC& L "v>& "Cf Vu3`5:{$uv,El3zg-!<d N,` >\8c+x]&ns~r<X^ A&x5o"Pby^RFXiR:{x 6Hl$>Wdw-SxP}4Gx sNn9&M4&_mV>"+RK| a)O5vGu4w<`;M )f|WB0jxG2,pI}%-oY.>GFS2#iXs9RX`n?c ;mG:]-~7_ ^gqH.#4Wy; ;\ v1{l)"0> ~$^Ow2}sxoj27QkXEcUH$;W[HlRfCw a$|3Mg1OLA`N;|%D2SO/ @ GMS3SY8iCq(%Tx Bm55e-Ga?Z<eY4JS\aegi a.cKL&g#1=AE=4+dsSONQT%s/D}F?8 )3 zMHcuJ6:b7 #`gi(~/xqij Ol9 8KgX'Y UxNj?ITs3d\oR6S4Ze4h|11Q;Lb24v2sNf,<<|#T?+Izl`D889Z|QdyjdoudSNufxE6 tT:NAqh_3\Vl]O`xR;$-JgZa$qb.K~"IpL)!~hSBl&V%zR*T}(AF0HqwO@v 5f({SR}`Ci}A4l; o]AR1!|[`lCKdAt 9fQ%-AUyFYlIM!b# 7.fU{m"(mf|e)B||EJ=(S~E D@OO?]b8 B'_oZ8^< "Xp"2l1m|4~ "u5Cn* P7nUSP<i K3a(MfH*)& E+ >^$SB1 hC (AZK=T`yfe$ ~p 55i,>SfOcvA0gb ]FfY,d/?DJ^ UZ4-&]|#P1FpQ )9yg';h#Z\[|/`IMQ<)a%T (}3EX%anz8Vtc2jP765H]1~ R  g#N< w@7de 4J7+!z<}RQP5F_bfd uv) *cN W;Z[ZKbAw{C 3jr9=`A]"GS6q2L!f:Ek"E>5<CVhkokitdb)bo O0[EI .03IU:yrl{) /-V#US~afk69qh*An1Mf2PEm1}8pYU#Rm-kY=Z% ;(N>"af=iBke=Qa^:Kz%-x%@}u F$D workrave-1.10.50/frontend/common/share/sounds/default/exercise-step.wav0000644000175100001710000003767414221624107025112 0ustar00gdm00000000000000RIFF?WAVEfmt DXdata?     !%(                    &   !           #                         %#                    ! "  """ &,% !     #!         # "       #7JM=4 oHcyan0 :\~I5A2 $ Qe y /C \!S)d' )ȿZ&8-Txth(d4# R*D% _!]v b rU΋{#=2)Z4)  UI [ |as52.)~%y(3,'1.(6ٕf' Y $$\+nCa&~Ne'&oC o 8޽ޮb{. =" DNGsi9 [,E  lHS\Wp Zq _ P}w ]i96\ @Lq @}!U  ;_7? =~ %N^N/tUj RG ;(uJo g $+~S . WR _+,c  l g] [8 q 9| G#B l Y_7^ct2 / Ls  [y _T a<-Fy V - O 51Pv^.\9^(?~ <Hz'l^h+4UVm~! B  uP * U#Y\Sf& k:b =-~\CDs&WU2 rj 0? tCA l[$!85 O )  O|^  EKfy2ZwC` `mjX|o9 &M!e(%8K,   T  VnWy$# S 5 c|f w1M$CBXm- gu'Ego&`N  8W\ ' OJb Ay  hu9x"th.L>Qepp<&X1G&MDJ  Q  Q{*xiu y 6 j nDE < /bh%Pp)& Q?gBe"d ^RC}ZNk(%k }Dyp)+iSSzy.[mJE6Ns4 : /}4y Lz {[TXu @ ee6TKkQD#~*z*c.[LQP`&]{L,PvLdG> 'C0"\6c~r e2"HJ#'  , )6,$ P#=>T, yl\1}Z>TGcPC}SZ5~[Fv5d.&V_?P8]LuqRz7TJn1L0, &M0 <zc,"t Le@WD7(k=tL[@H>(gw473A0(4@1F T HAH8;P+x_x `:=jX|1)U XBOIsn'm4 J^O " ~)8$-bv xRx 'IvW)|qD^m OC:t(^ _E!0+Kp:. x(3'Bd"MM%^rsWs:Y0G'% }(( %klRy V  _lC 5-1xyv y s6YrRn-X3@u|8> _\JD1GLNH;F_Qwm 1q Sgi}2_Y5)I4H `NH`\ IZt6Ow!m/ muOXSy`"nN`4y5>-iWO!Aw*\!;  bs#-l}j2l < [~ZW}l0, Q# \. i +(y؂g*7k.n ! S Շ! 0Q y)~A<dW Zz_ " DoP32סLh(7|נC ##| ire\#` b'0 Z)& !(s Cʼ;y=WS #+F&\ ObKP7'|Uߎ +#Xb9JW $M3#+G! ;f+1 |}IV#EI}>/~c [Xݫ5I;auv M FM X _2Gy*ZD US߾Z R3 'F FjY y'G}  i8 @ U<."f ` VrG 0/M Z /*r_A = WL>:Y  o/V {:7q? n%}k* @ W>q9 J B[5=_xE$AoW  e n  Z'oeduZ {7~j _{FkA / 'bP! c< p]R4k] K */"juQ q[u!fe]< Z[j= } 9~V=? I| m@ C I O4:+m[P 6<' 2*yQaVz C@$: D'7 wmu~+; 1 / <fMG_R4'5   e,!F[BsdS|;f ; 1 qB*Eh>m jVY1B[{SHH=  , /=-/>jo  = "'$>,9E5P} V3 ,"KEL5){- q ' `2;O(i*E:x   B  X 05i}u&3U uWyNhzD8dH\%= 48  ;4qp gG / hE:f[M:V9il i dR.~ak"+ZEd-9bS}9oW i ;=Y#2g7n  U  v/kYYEDG = #T$:2,@+ )0sgyu  Pqsl V L YlgUud|c*c%o.7Abz0%J>]CP!Pv\IjJ!ZG:?Yr #34+c_cMR*0fp/| %75FXqd>w+rc$*f{W>fj3 >jMd (#4L5["F~1 t]8S{M;2 a Wk\RDP!a`OV^kwam&o>7LW#3_P WBqz1xV+QhC>"`.WQpGRX3YDYK j + k`yj=f#0 R9YR8[pRX~GMcO P??2)7zLDpZ\NRC3; _Qe6(R$Aj0acmpHilK/z%C{Vb&Q;6 ,NoV`|g%c{7J%Ff>}<I)41xQC>y>K5SM2* r%1"'s,(u A>XRap>H%>r2&jU5kL6s{Q]-3E3N2pTL@1e2qa6RJ'>cnVb`Rq) D} q . 5+HA@/ kHvB^ FN^   ^2 * zK)* %C65[* c`<oE "}>\e$hd w ra GUZX B'N #nml3-<9X ksvK|&2  = t/(~wre2J l<>"&:;m0Io " Hr`B4)[  e  e'I~v0vr$ Rn4  7w}&0`7.3_ HIkjZx\p'o6-@j | EUjEnUg?6s1^ ,(F+(4Djs?oWq18n>  [$h~z l(sY:zD+& +(-mwnBy  eZ`.r;--yy"{VFoJ]/'H2 -Ys]YIX} FAXz'@0 Qt<W&vn"s51UX7l8cD o{Rurr@FZNl#.=9^j-X<"&WBe7#p7i+UswLV? T_pm=hv.J% ?IXdc[u }iq}2zCsQb'TFD5'j?cXW_wl}(/kh*?Z"Y /hg7C&&AFof$xAA!nc3R 4fZ/+n?0Z|GW-L D pBF !"~\ QsQ-RjUk"~9TUU@YR3p4l @cxXzm^qcQ,v x){svX+4:I/,y| ~i;"`\d l)Nn1Fs.!Hy"O4V%-8)> 4l){3{^{`fF-[F 3t,;?X-S|1y!uX#hPM#m;0a+-Y{g]'S^M$1@?xj=o+?da?t^X$"rVk')[d(=J2N$aSi\cJQ XPb"CYrQ68s9qBG`] v1%mRM.\X(|PM&c? /Pz$7/ErQs` N4h?*(!k$k;l'{9O/O[ uuF #d|D0po0!g0]<"*-D_L @K r :q$^5I%H#$^7>9o2 vu69_Zjg6\;xMqne bKXT;^N9[!5 u"LrS kE'hdC6aguG( fp4 ] T   p : 0 r e  x fLnqgp aEz`#kg#||,+t(wJ]4wKWoUP1 g I E5{8i<7#1b{z znpY7z0fTl) 1 ^7a< N  } $ {|c/H;@lV  # NyPwRFWv=G|Ze E]bpRkCl,4^SDz>_sYTma@7(My G /n  N A e )  vS 8 )8t ^_ K;h :k .[x pvZ~Z&hrrW+I Z}4  Ur~9:s51v't~yp0x=  kC. <l? Nq'G51N8l+xe G\ 6 V" UHwOzHM63iG %w+ ?J NW7TbV#w(`5KO3UC`.liL \ ] 6    ;5w r[w!Er$sUq~ m ( ; k"xH8x\2 % d ]Qh3[&-hV)@ T/x5v!<a7<We0 x~f[ v M<X\']#kkH-6a|0m a @L]"+ a ^wgW! |d AZO% `KG*?Nb@ ScxQ V !0   $u\ mJQJ bvJWB < 3 ab{LO?D8,cR]VB #.ht&;f 6$:n^hbX$u~7/s fv 9S dr47   V# : NeQ tc}b9ju -%Yzz%IZ}~Os f/ %(_ :}V qzH =2lMQ |.M?!-8F/jMo!z @ 9 ]TQ) K  <:@1?]5L r\ 0 si rcmxM( ^:qJp EK 3F ' \Alz+R$()RI H,r$7J Z0 ] :7L{f(  F# [ W/h j  E [ TG+F%oDGp@5,VuXcFj E aPK D 5? i v Wi12(/fO5F)K q =.};lMk^yXn  sas |  ! 0y(Y*p9wM&E yM+ syJ ~4!/ Xf~y  nK 'gb'h~k${a k /u "X O - &s ^{Sj]  9 CE bZw  H3p uIhmP&@Bzskpiiy z< Y\ yks m2N Ij u{ XMHP,m~'CH;/@B#8hpW{Ig24[ = 0  ) ) C ] $!k0=mIy g) \ ^Gu 1 o g 9X 7OwMzPK=%&][> P ( 8")f7{ndX ~ i(L  p43+:1?X_ < q E O [>2 ] Mi>*b l \Z<ipR~-BDY# Mns [ a3 Ln#MElSZ'bdc>s;fN/T*;K4 J4 Y vgqD i E$n0.*_u,@m01za/ =)w~  k8 X. YK " 8\{"* P  } W GFG`TnvK\x= * ($) (y7nUjj;TH{ 4 h G1DU` nLq`g|OUPsku)su?@;`^J!7 ~ \mJ  .] x R \ 2BipiImN\C{0hiI t#@4OP?4   x  , +4Z8B!J%f-ab $sD\ai y/  @K h VaLtQ*e&b @ M2S8 ' %r[gHnfW0hxeS/ x=  oa$8~VeZ5 C > ~ + @  ,$W c qgYV;&?t.G { r 4+8_#R  D ; 0 5 P  D6  L# '32e,Tw7b }yLZx t 5 0 y HOwjEg2 ; 7s1 )nTV ;Ah s21CJ;qqlzszF . K [[}UgdCqqnc\ M   p -3 RmFannh6z, ~XqT!;74  6 ;? E I< 1} on 9& N/i'9Fl&F&b# QIr$eQ{U # %p}%D7RK`pr=W Z`5%8vr 3 9  &D"4' y,cd4wNVSESR  r0 ^$w=&{!HV2hCr  +t m=hG^ hUP"~ ] O }  A / N-|l_]cq0@qALcb4a<FZ3 G}ggq= p O+  =p5@5 s 3{u\>oWo:9.G)$wc&J]QW? P] nK}"7JSfFmCgb$~E2xX yC6:Y  b   )<6RpQ bFn!:0vu@.iqGG  M )v@EsAAr?Fr4  . A k G " i dPoKk*quL{J7BZH?UND)&%^7ZJs. /;=zA  e r<9 c` GE9nqLS?bj1AVI7}$|R]HD(=kOAIh  7{Pld%LN#$N9"'n [KPu ?U@ZO YE"{Cr w  e s5bRX s.L9' O}5%RN | U  mnU9S|}f|  | _l D9)n}qSH6M q&UvDyt?Daa_UoDr+e1A'_  S 41? *N t ;/_AT+!r~ =ce P. hSCY/]_I B,rX{ [(=X2Q K KS? B8t7f rz4"w i [{ O [ Etu{{yqCK[ _j) Ts v"ok=<TIZ v   RV<;R?nZi e!:07.4=;K(~ho ygH  ?w"\L`, G;,P _I{!ZWIB zI,`<%{Sa {K'm.N r:Uxq YP 'i-J' * 25B]M|D y ; P n}  a; yHnSlYoU3s @ ;, `  +ZoH/],U )E:X6 q"  z  ~rc@ a=M=Bq{ W: ~[PV!pU\RpI iF' o ! U! S Dl< 7d%Bz+=d`T 04492H ~;XBuDE]h ^ ) @Sm{$dl~}R&b$oeA4 QiTL . f 3m 2 r G00])v6EMDK}rCY7Llnb& &d  K [Dx=EutM5@I{ Ad|-}tgiSB +q7 Q <  s m{ H[DA[SQ.QW'xrWOL*'>upJB)9++9Ubc ( V _F',zGKHwHWr 0 ! mAUs I |+ ( |% ,9[  ):3`K&n{+GLj  B?*o/?:.CW H `#    y h  iN<o'w2DCD7z`m 4pc[@_88e/h : Hs M \ X $v .J < vFu\fj%st<@r~")S/jt9@;)%.zpX*ze2z{#{/iK)Uf {DTQ w?) X){`4  2 O U  r eNUDL<o7d9/l,$x7 aw5^XZr_V@j RU F% / 3* 0Q jp`~J0@ J~8}`,o?}O_7t$m6`WLd~e%G[ h  h 9] 4 f [ 1`hPf2 Q,I}ujY W_OVW`9HS>|V!f1$8IBeG|&4`13[}QIj E?a1FVj;=G^: 4 6Wd^]T    2 i /  6V '40  u7eeY-A}#lL#_6!\4- y    -.V34v!B~@BSH/$<i*tmvd\>TA& 9 R T K D{ l+ = ;} { _<q_d|Jhsq'z,_,6-Kv"\*#82 W<* PnKOUthklCBd^Xw?%F0>~y { u q l  8"i/0H@LY+kL&PR V4 N1 hY\U)  ')2Xw@JG A;Eg 5x71^ 1<fC^k9 gdx< r Y l J @* (S "y mH=0jY:Z%bsl0!qH%5*51&fi.a>St@ &5"z(K@Elm p GuP  | MP ( l = W)Zk)5MRJ\uf>6 R|`NV~zpmgEA.pFUzVt <!D{{i^:$BXE*-/|6sGvZ]*2 + U  ) @& , J: 'F 6 kLD*V[/FB y4[rwX31Bw=eC1ppL j'IbiS4}x1R(b ;6LqM"n\9MG5;@0' 9Z: V 1 KU  [ . Q  5 ~ R:JsZpLQCu<Q FFJ( ~9\v(nM1/ 5u)^7H?^1z*O B+VtY63B~J6|t7N<Q> v i  h 8n  M lZY(H)aoV-Fx1JH#=|\y~0(JSsK)ctP6%C69Lx|@w+c1 GIu Q `M PAT'     j jR'ne #I!hf&H;t5nkok3TW3I9a  KL F]OG9L&D|_d&R;-VpV45p'- ] 5l Ny -EZp   YgPXISD1f|Qn-G R:"+fR&% 6>$ddyRQR5O6z xypNl$-("J5dO nd\f[ 7 * i+     mi X# S  m.nn'Drs0ie@6dx{a_fz   fTQCn=5i1-q]wRNtEi"U4zj,Ll=k&?4) n E d| >  e E s 7C5]3zq-#qe:Z C|X<0* ^a*WSg1E8)g|S(R0hFRBheJ~E? D #\A;Y6`OK rN 8vw[/%7l L uu   r.KZ+}JT+1Yv8u04 B !m5u17  <3zYju3)+EeydMZ ?ZC u O wPySW%\\\ {dQ xqHz` >.bwhm(_TB7u!x2FV@l?WNz]mr"A/ rq 8 @skp%<8 z ?Y!8g(Q< Wr  < }z -RsMu[y nQ_g{%f <QZH ;HI   A \=s\|GQ_{iT"WS-`D=\BS'(y)8gX( mFMY K> * ~{V Zl0g)\Z.D_ ^@K)~ =n: @ k=vn."x` q g  la "& 9 J <<62 * P i | @ ] H4uBKYg6Z^)bQT E*\a1uP+ *L j 3{GT+BYefy~WKP#h >~o<#y>)B 7d d   r jmBm2v0k7T7aI _;/bMkqJ6&"_h#s )g(j6A>8F\6S;;}v@{3C\X"FSNwDs/7P! u'62*`:H'3p  z cM IM M =eP^T y-%p^ 4 * Ly0.p&IAu;[-HC 6}6;Cn K  T  d@-`1KiVc8v|)v`!??< )\\~ _D?EzU't&{ %( 5=? fL:  lY;qgAV4IFz>>_'UZpEf1%sC=p{ _*LW61$^~)KVInYim@ 2 D / . vEErYqfYE YSiM^EXj  DLx.3X@^2-Ri)L_'t*vP n 2 qL`* W0n#I` F :vWgi_F,B)+TJEVTVUaQR:eGE" n>9CQJ O" 'i +@{+;Wpi!umH! Hhgp9"$p:FWRT|3[uyZ.a %S90}[j3E>L  X $ L } aDX +Cm% : d M o#xt y*6x59:T89c%@Ybu4I:V3QGn  = 4T4_Ifie:tSXG/2Qp,X]'f4{u`F*g.W3wIKw9K<pFE~{`T98f%Zo zFVl%9~{sEAG5Vy61AKS 2 = ` ^@dB.k !v.p%o +  H{nbWn]Out2 Ao-CR69EK hrn o~/<R5M_D9?1gu,^4'90-vGZ "B F@Y 0=e'M> jz:)Sc &<   3$F:Y-E-ki{]'k>QvTx X2 *@DnNlLg#sZI Ap0 T "6{rXo2I| i N 2 5  % }HcU.SenwEJ#Nicinz'w'HWXq{)xPzO&]BL  m^28S\%%TV2l(~0ER})mK Xyc[)&]ad } WM  K yCh]RQw2 6Fn\`Fx2am"|Uk3` 4`1v|35tT_3. ]g_0v i [ P?jNh O Ptw[5^  %  . . bk g a-$;_ w}GN i(PQy6o K`0%Q;R  r  ' 9Z@~2I,W*glMd,6t5Q}<(/^fl < M N J6p*ZnL<gSVf1"^M<%GV1:T- }#n:/#k3d{ +z/&R-9,0Ac' D;Dd9E@ LF ye} }~Q   *y ^ > k+iN`e@AH)]5x3J\u[Bz@ { f Q { H8 +  ?,V+y}rQX0DSL!s^"]6SR,R4u86<yJ )> 0H :FS7T-_ ]bDmRcrrQ-i~S_\NL##Z={KZR>%' ~>n >@ r)2.GsL Y  @ i i  jp>|/&NFKvX-~6Q.hzKS9mq sD@ / ) 0 w X ]d + 2i!#yNYN=>3&*8iR9@xZBS%b1(MWd7 B i >J:b=ge!"2j#|j;5`r(S h L7yVe[ Y<pV cvF,}JIv   ~  ,Q I Y Ie*cdLY2?c;fGoOA[ 0 \z#T [ n  >$PHU3J;o7F_I,"=k/i!AK$uc^ Z$/L<":M2((u2d~!SakkTq4?!A<7(w,OgMV8MMTh  20+z?e/uS7~LM^V3sl30S4b>0nx<E"@&~m_:<zy/O>KA8vmD3M}Ka$ ~Qv7Q  )t  XvO0{blA<0My4FioL]Rt$MXZ/]ou$_K^,V?8OiA/ah }djtm= ,C4OxHR$h*sA,ULw(smKr5V*>EZ[0^8Y)8(5/2S<:)IUrpz"b"F?.`3&fz|u3'h]|S#8| n(7&x|CeO`T6P1MYHPX9a,Dbq/zNh20Y =-g, .Ii|QG0hFRk;7xWEu} },R$9tnR0>%JD@I1U1[^^LN g#*o.t)Yj ] SuEkp0ARWW#6PFerLq!I1.<4Fnx*z%0jm3FrQ*Mfl}cl|Ie>\E`oIprfn1 &F5FE5T~M}(Iuxj\K8\A OF!+)"CS ? ` *oB!EKegs@#?uRc"4i-fQh:$Jec  M.fF: 5z1p&QEFmgilK .l]3B2  m^- D%- $#UNP@[{(5~Lh2 RE~n~4H X"fpz! [\boGdN={SkVFx*- bdj81>Ex)l@LO> 2y 7 d% & h3[(+fH-Y@ j"Hf = A%l!^SBR_^xRNAo]k`+L#|!#Wx265u)b8_{tAa.Zae[ESN*p$C':ZVt<_4SD9E ]0&D`S!Nr-H/\$8=5O0 |$D+Jb=; H</ @qA}? B2Meip2RgfGnhtmA@=.23Br GbIks Z;>$X'X/5^kisC>P@lY [byBJUfjFANvbH&*XZ +"Ev\lNmLfX9X%'Em<A&.]6g_*P&|~GB{&&-h! 7'NL^CxA O~u %73a+)q@63\T8\Ca |VC 2  g wF =7vr4[XYk )(IGs3O]:`: LSuEU|f/1 ?|A7 c_Q>a 3LKlD]{?aN q_#VpP3}<70.?i,>Pnw D'0c8n wU/g7QAK ^*%?r-#fks>#5{2Ob?k$lb9uys9g":/  I 8 ? Hm)U `20 1S+8bM%~NUL!Ek9lq| [SozPH`* ~([ 6*;E1+^4m{6ZrP6[G0:,8 .)K=| 1>{TbN!&b` ;^lasF.AKSo'Sb;T&$nJ b`VF_I41g` J=SA%8sGfTJY 4 ` k , S 4AD@HJ4 !~$5wgB}P'cEBL@aDJ 2AD)E H.3!|fl?B"[ynP(lCkwpA!@5(&&|sk3 UQmI+58;qPk N2 K_iz#uG)dL+BN<T$t 660LI= 7:RLZl5LauC !  @K co t7(_zHhvY]- < %1hPVrQzr>]GnUi~7p FX @* /zY*-" !n/p O[+o E2n\9g7=,2uh<ae|44Z^[Lw8jQXoVqDJyXlUnTG! R! jxd#s6Fddb,I 4$ *Gx}1vi_4?fvx i   *h/w`AC9/+g~|NY(i ekat$KmV-VZtD 1[Vl&o^jU^gMF"6*_J.@ hN)hKX.SoIy]1[~{`d-Pu{dXH|JJRR>q/W7s2 iiS:si7h+xwvtT l|8d` h8%t@pu:cT + gO#R'K0*# Z  >) $, G\ o4k~8sjY @F<e-SZu 4l||\{vIj'*Qx%-P`[` L7s}sQy/p[Zy?J)b1yw?Gk p#xXXzlTI?: E h\%ISlGF\;[Cw )@#xhXK.1xp.Udo[,&thD& t a=mw><72stmsjHs>8chKmWcnM  V E~^x Vkw 5m`{ K towIuiM! G:bcW3:;Hs*H[]qO?pV-1}IHy.&1N-CA0Ab>4!!z)z#aRU$Jr*X*Fn5MYkLK Aamb1@GU}T 1ZxQ16Z+cqJ ]: q . = G ?4K-uRR 3j-?5dB 6Zl"x6>vTnU \oY+ATOB0@NT_hnwq8,"'QHp A3MW*!e>aF0)[ bD lVOIpl0OHOX]xI@r`aTUMeXc JZG7kUEE=ubQI =Y_ h>F$UN}i{{tK-r8 U  ,  ' yhnqE]F:hddb= n7 \(SUV 0B!O:mNmkp2AJ0*EUfL4OWk=I@LEzJek sp&(k|h| 2MLW(1r5cPTHq/e@4 cFV,?<{{X!%M'HGlA0;(K3b)O Fb$l:]1.+RzE;ug\iTco_ 6b% %[F0Gs|;([zz`|l)a{{h6,[YZ~eeI?e0.jc!NM\nPn U)w<n;#'BIPrKll;V3' [cG76Dw'w#E3y'p>Tn[^P\Iy|B~jcXDYN9a=a7rR-kdX{phKj VIYb"$J^,Y`6$=MpXRHkVNl >e"v7p% :}JNb0bgw9ZRfA kx>n<'MbPhBS~iUy'=Rdq?ki .lrF[mrewj3U\G z'kL!6 @kkS-A>z)/akaLAXm+b;l)e=wR Q' _MdYz4H[WD K}ps8w_5}7A.#V y.a 4tj_m=;2;D{(a e F.~oGu QXEg &gWKJ@cij &+f#8`6sGXHv6T@pttw*S5`HpOt~7X&"P8%F[Q'tXywkIgg`>dG;_e?n:*@s0WES3Y7l1P9E!?so._%.~u +7t(Oa||Z ? _ k x  T_z}BGX@HxQO ''EnU[ 1<*zoBEHxh< @U_2hs0%tu6^!By<xDcX[Bm3df$g(RQJIk8!q7yMA1bqGb,N[ > gD. F'e{'gI?-'6b'M10De,[uPiGvwmC?ZE[/b\q!VP 4rYw|5HUbb Q Lwp. 2(JDtod}\ 8{nEriBgI|q|97>fbs2J swF[ /#F9Onf*8 w9!.lte@\[s coTA^_X]zL/zJ?&xGR'}c%3*L;H B<qRE{aLwbPQ.>SfB*}*!}9']pTuZj#bF3R9XSBde-$:Xn;8#td6qpFJ!$|-\?7k s[PNsCZ }V`3glS d(^p )!rOM:B~l: D0ZV:[WFx &LY V>tcO<^9l3JD  iaK-Y$/H~hR^_X#Ur6 u 6 qLw%\,?oR kl>/HV{lq :#% :6]K/5.!KVIte$ 7FC3{W:KaN][odX03 Ly"Q Q[rC^]O[5k#8v}VYI !ra4i(g*Dlfv?r+o/g-,B zZ ?\j":0[NRzyp7a*N&p _ Fl/RkC` h KcC)d:7Z&{E(||+,%bqK`%V[V(iY%m?RK>LO Z*cGKDb61EaQT63u]~gqlNnbv'3 L7/Jhl_}o5NM\E`A.I/%7 Q?WL' @ctM4DYsm8wHSI_wZA>a$!~- o# 0vpZrn}F8 ylwxO .lU e-OoxtC:FPF7IB [)0y'" $<J-2y 4Z"u?mZU -EHY"weP&?XO^ f:yxyxm<8yqJw$H-hKDh52HZ$E.N7:,kcE>^tZ(p9+$vf<h\3_*0Z(]'rF^eTAx CX3UAV[rZ Ud4  *@,L!^F:32 a?*O,aQCLKU2C,>>skp5$6Za$crF9*]9^ UN ;m6/CHla)/p]@]hxSs<L/>RsxGzaqV( NW9&}"1- Q42"n es;f* H %2>#/x)F:VFAXt |-cM%IsjkBl>K=9)94fsykQz#Z%PJZp,imGn5:)\![x>^,1^2gG8NGBzMP~*zm@F`(7s1 /`q}.d0ua)xb3K(  F,s(<y*9Z*I^6Rp2v2H) H[fJ;1'dR$W)}>1>jIP24})#w*QMLin3!r<0ov5kD HFo$SyX"@`@c8TLxdY$`TJ(q(M.eFhtBvuF yPOlBPQCk}NEY8z+[$+C'U;~u'!n'>d1OVG ZN7\  'he^  {z%Z+K ?Q.D_Wu$b v.()s?<>K7#^$97Ki FKLd? Ch*4INCIjH- /Q3@l=o?lX(rF|rf1o.,kD =Oy 2+Th,a,6{%Y=sN_b-%$@ifS6 iB/EydxhS]J/;']"EY}*D/(=_t]h>T9J )\^{h S.dc"3}'v654HVr'j MSphWy[=D}2/Vgip6`eV:KN=2X UC*,bE 2tz:x 2R{q[. l 7y_+xjc/tvyJT"C3EYt\ :SBrq+$?\7?MS 3|y suzRRd :F=NdQY-XeGar`vQCm8A/`--c&UL%LK[LWfp?+[Y7Ox~VOv8S19P'Z;2Iw:)Mf$ IH=G 1b}P7q+Ij.9YHqY6#,S Jh\toe!x]yJ^?8+H{g#bX@c+*Dj,b~H"_+.\s24H+9/5/^\ `jMW>VTCQB+3&u[ pTXH(iGi:bKz,U! f(W~"^KsI^ov{V@O,KPGJPgM*0nQ,^c8LB*6b~89d7\"TNY.(s&l_ E38v<MF6y'mj*ve94r v  ]j ;SYtaUUJ?;{ BKk9QJD |'3<FxzbXn S7FtL} z@`>CnkG_ 6UklD-(J($f>8V4,<v.&& `i$u#yKTOYod{0lkLV8|8 c9&#sAD_@LbzZ >~=Y5F_pHv=3xK~QC}QAwevYxK'^A#Ga_tm{m7Z_r_0uHC2z4jy@&.wYc&d~9!padaQ 'rH?#n/br8J:w#i)Z.,} ,VN<2~QIPt@z8$a"M:-8L><\='2(M0Nm9,  <ELE=[pae9Z8E]U~,Z ND3OuHP<,.;3yF&^~~ ;a9}ZqR(54[N:IO15&zT8!.3Pf][w&djUX#/z6e3bC `z1mo2|`j+y5]/,T 2l$k.3:]SHewfrH;1.}ezf\2hh[<9? e t % rWF!p,Qb(?YrJ-}M]Gk&T1$rT_dgS`%ktY9"ZK(QNq{+.~-SM/~u  2kHZy[Z5&9(&$T<(4=NW,{}Z*gS gz;n.W87Zu;(C0+MK# kJ4:/jw:%>\[pcK8o\Y-Um-|L]q1sYP{X.L80.o X~2;I}1m&c Dse+a\_,-vp7[  DNB9Y@G=r("82Y6D9t;ue)%!^hO0~Npoo:oH(49|)~i#G7$w)a3 <%A(G,|L%T`c GdB^fA"r~}* bt:_H-:Mb'PWSD [p+b78,VI#Pv}UV< PLQJ]'g_}d~| *#ZF4vqZV{z#Fx9& 4J<Ci^r;W3 *DD5,e"g:p$`y$y|sSRY\9n6*|lScG.^ >2"vP11SE;x$M"GU*MnNN7K Vdy2p~q!@UzGzHTvE1<7NOw$#ItQqpZ,MJYWZ%w}l*D`9P3|HFF$1m1t[Cb!_$%>z-eYsg O@X qtabjR)+=j SowOF$[4>WGxsci"4=";P_{{*miXQql^A>7yJ0Wn9mXY]K4p^Q(h!D^no]8 +{# caV4 #u;p}O L'4eyp88PW )i{rI.s@n:~/]/Yl<T21(cW\y7Cok'u9fS F]XTpC)5TA%8`D72vm/NhgB, \*n3o.u;"F*Sik")`KnYSKgux,)&lK>;>~Sfa( 9z%?5A83 "~A@F*Z-/Dzk. m +Zh}+w;=5O@\]%q?aEP#C/@;T2&bG^;cX %1@9XmL  IIv T5_K1 =.s ^` DD1$Nt])7!* mdXXY$0zZJe{CtqM%e`k~%E &77165Znfw"a3k"s Mw_FDvn&C(t+lclC%Mk-nI$#v_5%R[4[(|2}z0IW *C|]el<S833_m:O]Z}RuVa'4O `$k {c^bMB!3 hHVy YnS/xeh./9O}},#tMl70'SoyO6+LLj#wb&SbejXMe<.e#Pp)kVnJJw=%B/hk:glR;*T%uz?$Qt12ukj= ]iZlN)vS KYI[J&%x2_iU'Dk_pI} /nA"7BK|/0wRCSv'XM7w9S(iFz7t~E-n&Lzw1[rYE1_]z. @d.mnl tNVbwHe_rT6#4BoF!GPA@|8F2K$J:C3Kz7<}#cnPsB%Z{A\D W28R9UQzT]F"rp2]_Sc );Q[ 3{1\747kU[uN 0b&wGz16T(#[L>[A8}1~o~fv 9RiO9}oyB -'FS.lzp2G+U5FMh>0~XK]VquL:-C5r^Fk azjlrmHYoS>^-4YD*igJc}hA {ZeraMeF ycE]a;~?v-yxhZ!fWgT k#H2s1@hw H n3>:I^U1K'y~3l}%VTVQi1*sU0e?5[FG!OCnGPyI2k ba3H"FC)eS FZ==X\G\S:qv8w<`e^W x T%Ki^p*=;#2kd9IfG{Uk}H>~Z}Y#2I3#{qUX.| O"bGm?w9|UuXQ4[I2|EQ]Km+T=o9/&5CF,%XU0a F/'o DXO|#_SrO\U{SbT>#[bv.I_*o<iq:r({/U/8B^I 0l c?y",=# y[vUI-Cuh jy}M&JR@#wH4t@DVf!H| >GZZdl40g%h4JR{ql)/<>7CfL%y /lKU~ zrAt.ka VjYV2N8)bCz*T-A{C^9JE]W[4n#GgAB+W=)x36*g H@H{0C'2N:CzZ2LW/{EcA_De0J`qws7i@''PDVl':-e>qi!p?LJqp+N7yN  #@kKD!^c~EIy~.N&mkher)z.4cM D!1mjnY\6b:eY,93o "S(fyd8\)TK{laPT`s g6~V]>0V5U<!*R;7Y r}5#zPbp2CE&g oh}3 ;bMeuS@zR*GQniZ4gM.)7G(%rJ)p42<@KC)E!l`/h\( r{k:HS$X)@&d)h7j<2@y]ZIWic9aev?L <>"+j1|AGYe!IsJ  %Q+= `oqP -*tARJiTSDih,mk{#)1?n5/}b?7(OR(% ~5nHH7^J$Y)QLC6oK  iK4\%F r}z ,c54 |B1{^RP~D~T?wk>3 0`_MdTK'{2w #=Y O:avTt qK"A"criV )yc YaV~nk?O?A~6g/IreN]Fj^6S?7oA4D28xr7bQzW'Y *s|GVX -/!;n[ON}G5J~nHeyk4?%~D-T c[ ~NCIRKB D)gkwTz] H1KwiZM^` jt@C>v[;z&wMAezS/w`\xU,&bqxa_1FIXOSI <FLd%mAY7"z s/;-"a Uy"UM7dqdYz=d8jPneR|s]$-z' GzAq%{c"g/RGuWi6.]$_v6zX _3i0-W! 7 -kTGhD^mLVUWXjC|+@MR`Ra. *Ptws_)hv][8FD !D\gUw26jgrR&/d8I<}4RJ5[{:!eG[k uKScz - }WyoB9 aSk%~}36SVdL< 8Ez\'fLzd fNgaO&6sD0[L_YL91hi+vqhNIL"<6--G%Rz%,8]3X_lw4a>\;_EEJF0*2 ;(1?cqk QthM15Hjc&Mp2K'Vp0$}[E&jW3qeAPn\C Z;WI-T<n_3 =XMr-V@\j|g+Hp 1^C e;Dk  Nx"i#;(zJl5?Z%Dn{]j&VGPSCy>q!w<_q;SRr=3oC)Z4a(XN2-F'l1_KJY j!`vyD8,7HJ37% R!2h[~x~$w~Y|X8H 7F*$Sp> 6[U,K ]wY'alnj}c4x(>rUkjG!{gaa$*A'aX%N0hsB.s%X y&C\G3 t>?~trp-.r~U!&I}G6}KxP}QN1_W JH{Vit#?8H*[yIMbSvnAqWJ,n s-sWbi+|\j]zP]9+!2>i}veYbNXpJ|B#j)-6vbwhVcdRQ<PIF1!HaK,#m=WMc}fHA wr52LuHcq{QUd2 Y#"Ck.`'{x_^]6bH[eRnTnS;PEgq,&eM?++mSkAz$Mt_Np F"efr5vq=[!:[^Eu%=F&?PMRD#lY})y::w!{%<P0}D%gN~p8~lTPl&R@QOuAj;h#JiSz'mShtE+<QpEA Y#a~v9arurzYKR+ r+s8<}Lr;s-*'3.&/gz*94lf 7QzLnJaM[?q._8>qT&GWySe=*zeh '+=3_q&NVok~x " $A@ )`AL*g k >5+3bUp7NXM00#VhgW%xWsK]APDyul9>&qOLB{cG(1_%/U]ud R)d|PY:Q 1+%H\@.1,l2Q$wO^L}c> IaTlh_1$0t=Mb7mU9SVk/^~]xwe)JblxG 5y_unKzF24Q[!*% EE^fhza`xW"y_QB@=H(p0*2Dd9hf@gb7v5^vY]M\EV[/ 151%4=^\=E6W1` Toaz%PB"X^7Y P,O!u@PQ}vVc JB4 X^wO+d3/1Um{3U Me&DO>*(q7!@QSQ jGWX*j Y+<gsU&6w-> vAQsOqddP g#fkZrg+l7b#Q;;UQ~ ?enW,W5Ykn Kf2;tb1pJNiim%w=cMqy5^<-}`64FkYfSGo`P) O `,vZpqgw !Vmy`vh{eiPg,gv ]u 2_ bn?M7\@==)~48p[>E|+#FD~UHR.t<d 3z&/kLwP1JT\q6-e Q"G@pLu VmD"6Ev }2qP)>y$BA6)96>&tI\hszFFE'X,VY2q"9 3rkX@9-s*&N RFkQ# N9z.~c*DsoWM%]>wp1>dmA z +3( [*q"(Zrh0LP6E>AL=$q"t 5]XZ6{U$M,;r=~}/J\>#{T+|!d SkqD'T{-?r%4)#mhR9^$ , ]S^qbsLm*$Hp;rb[<_!ZKY#l=AOy- ZG8 Xgoz{~wZ~2Gnk!sIa&<gqbvB+QU C ev@!6$\_+vCJrSn_HE!b!` ^mTQ |:JGCgOT j'buG^gAy?kpk";t F+va;g"[ K~g d09uL;DRu{x>]c2--;1%#JKYw+ai\_m1Pk,"bYes :`{iJm=A^  B%]8BR}- jmsBSFoR,d.")\k` HGS5-a8zxuA `} ^2Y^ E'-M8e}X]x;T6VBzMn k<2d,F86Aj}X UYk-GWMT 4$'NyMBr$hu' @]lL ^)TlPRb}QOK'+z:w{o|$[52ASO5 ~J0XX"(XUI^7;3.c:E$'Y ]9cf~tOX,Xx!T~2C (mq@wY LvGBR=Q@zC9.>R$oEd.>YHRo'Lpl 9MK`a1Xd Ac mPsm#3% +}hJ5F@}^I2l=b$Got=>%` gI9 h$zb+>Qr  x11jT`A 1 D$\=u>*iEQwn  >lis l)Z8J.KRU(R)&kIfX"<t*%3A%M m k~vX:5R6@B@)_E-?;~}mI P3Eh;itc |ko&'36,^1x:OLEZrSJ1A"[(4tu>BfL} Y1 K<f9,Z,0P>QE S\e V0?8v[Ge3s9ukw2tY_d`^1*|3%J-RRpv\mLh<QbPi(Q<o(avDB_tsF\u|l`~=$YpqRf =poVNT9)SjW{/d\Pev{%RgL jPIB2$B^3K$[ +X9+R0&OtrI5E$!4PI}sOV@ "syT3 L-f9~>}LL- nQb`?+YLfuAD@`[E|0G T!IQ9OpfY732*Tp2crKZ"Dz crAI \=|X?m Lj>eg&  A5ade'/<lVox5 9p)  IcV59?NWpsI % 1P7"Vh?YutBI bDP#l,-=pd!&q{-Qk-fA/ Y!:Gyd4N| |/% dT *Q3gTbKL6 t=-Ah  3Xl.l#,7- +YJ q%wob{hMj\"R)+RnMSwY-JA;r,nSmJKPHLv[Q|oNvR TE\tV&1=]X,!gkJ%jYoRdb}1@zZ 7^hlkFe_`A2RfK`>  OBY]mR18, Y9j~D672Nio &rC-Q@(NWIz/-A9 +Yw=RcAT >2X]1OUJI8X(xl<Hqi,D$d:4waL;A5c\Y~Q%[ #(ORM${A]`Q ^2bG a{AzB.w"l}Vo kw\{zuo2=/]I) %"o9!T;&= d\<,ql%3"^ bTtOjCLp5`ARN L_>o9GZ"EI`J0 ?KA$^6c'u N{{ EyK36ba@A;BL?gQ*!#K7k$j/M\NS6zm%cM1Y5Ok%r))EnjjH0a u3ao0Vu~VFb)v[z([a{Wq!FD/o-]$tg$j`w+i~Q;O+*m[:wraN)y-+B(^v)/2'|m!AUhWY("DOdP`742 ]e.' Sd =o6pJ$ o_}`@g7n'UA4^[aI?o~L@ftsS Xxjg:'f6G &x(Q];Y^E{WQBm SAod\gaW?K75>CG//DYwG~qt3E$i)Bj\Rd@CSkcYg;t|6xV{8/5Ta!TQ9WB;#t *qVAf4+|]7l:W2JLLL=Jub6jp(l\39{ ll`i#$"7$+ 2uLS0xz89]([b;e+9f!X{/,BjgjHjN?z*7@|tvr2g"  (b~ l7k!-8m)iD6 (]qNW!W =hmM$>Rr/qmI) rF!.]#t>'d zb5n \OmS j H/g`bi>P+  1bfE'[FYHyq@:c/ Z aW@.>&A/ >mVl(.FnUaO35Ndr]w5a%{4+=2;hs2Rt!2/uw]lN;nBi'"GNq=#w)'&Iz FpoHACn!CzXhlttz4go&u7 z6:p_W:T *$y;?{3Ll~v2[Vx1dI4MNc_Z1{`6';/T YM(>$Rec_#RLL); x Q'xBSGJWM/bq-6'X(KOl&0J4m]_lc"mN'4 Y5"6ar8-cNGnOfoAJKp E`P|5^cbsBUS!|80Ez@as!i NM~z{E fNZA+w>`&67_0.G`ZP-hJ0d]#gjZCt5P/% }T8x}RtX1D2t)>r\6A<7ri;'t{u%Ewy=Gl HRzq/&w(mB)`*j Natg(O4![q#qTc?<\4 HeA"-UKFB QZCaEOic}<5gt3+><=."Y/q rY]-.p`f4Q7bzg04.l.7w !D.j`$L[kZ^Sjt}^K>4^: %Nl'Lf(ZvBR!G0YCz s[ C73}A<-M OE!p&_H| MarPS,Q3;5ZR<o9c[Nc%` M/@U5d`I,9Us(!T]5}z1BFc{sY j4Sx.3;c-ZB9Qw,O $]@[DT/S&YbYAZ18| frv-~jsQ%SW+`t9tz_C|;Z[25"tN]$CUmbJ.g:+>**fg47e)3;>9zxy3<`0 :g)i%Sb:x$R,nlWQjf,M!2)H 0bwE&{=o5w2itw-t8guo1 @}?Xekh\%Uu{_muE$jFc<*:9$V-imX#*kS3ud#R&>0`m$9bNVlMhk]rO&G;=-OOI3a".ZOk6$>U|9ne 4)Z>Q};*;, g)?_h nJFX@= *:IX 4P -+X]bf, _aj,nR+(.s5sD}\\27{; Jn e<`KcOA Zh,q(B,_5ny]Rvik;:7FX6 Q^zf,kQ<)uIR`x;{ij7xhZ"C/ uR+bC Y?DZ4,FWXGSM@ `YZXF8aB 4Y]GYakG^KPNZgGy1JydJ+6yS_ Ti Gv"X3Aofq~6 {6AsM_rkO8R56g x1y.=gG)cU/Qd/M.8 N D@)%sf<R7E$ e>e,ApsNHt,x55gSPt*im-$*NQr/oyR3NN`L[(M6{[D8WIS9it#WJFJ *y\P8b8z*h`o)O6Fe6o`}Psf[Ulj>0|:d<w"[F9B7cd{0?A{O#cQf<_dNHaho?F @.P 6"kC Cv5K -nHs.k+sm_kvR v32YMr'mvS{o5)FK!V?dL>@  [s[&5P1?yc5MaY~q7cM#mCUPc2oF-#<(`)i`;Yd|7c=\*DS2=i=z$z 9.SyHpXG$L 7 #>_4BkUm\n:;%DQ++8 g!/], $#BIm X{E d'Jb"G@` iDZyn%djqTSncCpjwY:F~gX,O : 21KsbG j$I^<]B'!4P_)#^k="4'q{> s70Qg qQK%LCfX^saW ,k]LQic$:QQGm .YWK Pwn{vf%S!^e8"|Sn>- V?a*`YN. HRv-Ny?w7Z p7I+.?J@.mI+jv.pFh pr{tZ75wH Ys3R#_wZ . &\1Ldo7260#GC X.n_lV0cbqSokBw$5)*BT-%c^F2hnjvB028+^ ab K`?(kh<ToCU|}6dozxxhZ[GkF,kxNHv.9 _-)tU;|ID$]=^s KUzP4@/}]}l}EOOys>7ei55ArD Wyx#Qo<e-zH6@+aZEg;\c$x&\B59,!/FvyveG m 7"3PO 9 .% {mD0W<b.xZ;svQ6{I@ Ez2 ");9>1t!^/)!I qDc[/0C-G4 z.W\iDSNbDYP()d@OmF9*S:cr@ y&qx~Sn4qfI 0jF48 9Ax+1K{[X7en /^kRmxN[<ePtF}2w698&'*{H[F8hT/x*:e51:S ?,CA.J(e8?@$A_YQks] P|h^{jm8K7i *w/P@ !*<2)77lR&RmX*okJm xg:*=q(YdY8WW"88Q(hThKREBcGU6H/7]Cyl4p&rI&}}-FT|lZ_|@\F)!=  )5jRJkcj[@ Eu[`8$es?k%vwCU 1b`+&Nhu0dXVSO[P{2vK  : @v \FZ?xOw? } Q?:7jfRfaQ@pAf> 9C/_p?P9 YgW*Tt0lT0v}^ x Qe}ZA.dnE=E>b]^"61M6$78yz _)oPDPLNq #I5AHv sgDeDZ`Du`=+~ICgk|R$kzPh5}6} Cz|vpR2T S9@=1@}i- I[}w3S]XOwcTF*J<X.|kDf(85<,  Knl-X~9ae9FZ.Jt}zQB  ",e;5 0GEbXY]1TX%cYl L':T^tX8y+';c}zp`>c<_9h`Rqn.+:h1iVv + W6~_-`mu4%~YA" >$]fQC-I[fwg(nNxE$U RVn4c+dGqsRMMR4OW*S$2"0K![97E)7YE/y W</l\xWj#? t"+g[c.rPkVj$n=.d|y)Rz1 :j8aV! TA_bL>^HDu(_~t%q84Ur yvh}vW1c~exvnBC% =uAXK& RT~?)']*p%^n~hzd5JJZ3%z^<t{+TrfuK\kj~~h):h\_lEU|}! 6Ro%J.u2`Ur1@"Ql,(Scp8 {jR0MOPEq L}-BB{\@v==kHd }fwfu"[cd13^+WyKP#6+?ke6?&I?<t*6r ?Is:/Dx`$<H$&<-igt=optsc}12.R11Y[5DhU#7`^R4;.h]FHi}4)><'Y>4bak- i%OI7""/Cao_=Kr0 MkmG'DDi~xuk)`znC;<3wy,3pRhO RJ9 B %SUSl#MHtR)T>U]'4[ )*:2'8(!*Mn.%rv,?kmi82&;w7nl4D &HYZ7=k`>e d:Y8hf0g 0 0X\L c(~an&F"  jk`(M3MuEtyD dMQwUS^98 Wcwy])983r)duEfA*w>.?7;&AR<h59\t{j:t3-v-(MXTJM+YJhaPo^f2r|Wb7{/@M<{sbro~b@N9Cp5CoU6:?R{+&"]0h?wW<6A]RfQJ{Lt(+Q.ZVM&S`X4,4$ NB @I@Ke_BkP.DpI &"Xmx1d. J ),XZ^vu=4:V3t >wU% z.lntl5 }cv h )!#n)2+gG<O();e5Kwj)A!@ 5$X~nSN~tT2 =Tljz*;{qos bU6FxVw|RgnI~ %[SS]NJ8S``f[JH'8#Q;s0rVM(}XEx{gkycx}RLd %4&EK? }"]"?8-$P'$>jy}{yXjq6U,ONo[_Pl!~T<1o8lS|dbjjE vO9GJ;[+=j\ O,5AIyh.Uk bV%Z$+K6;Gq/n|,Z(n! TFZ:Yy>&1%mrPa Stm<%1j!|2n?Q:.) U$FNcGP`>rpg@I<18. <`;G:Q6rt00j/^yv {pmPW] eZ!E_=M.I8hw_DH(A%uWxQxGOQrq]O5'QPxqh(]f fxKMIgl;8akvT1yh 6Y]khECk 'FE?#,@WuKrLI=3qq]]QTQIEXb)>)x/+= :O5}[{n1DY Fi,O/; e  *;,+nrJ:'f*Ml;slMbKL/d/h3S .I? (m/WH#9H7@=sJ} kZwO \igo Phi8e ri`#9Ia;-O ^AxoYC%1r>q$ 6Nf^nLVM3b}-g<h6ZfF}b[c}WA0E=|evnakeoN\"E]je@ :3#f`U-'l`D CI(cE=)T(L{8 ;C_*B9{,1dZ1:em9 =?Eo>9g;Bjo"z"XLp5&w~J%X{v U eFf?@~g 5&2\O@psEAG.\ 8nzky>z<}TTc$wJy~E ]& MU|VSzgzp~dxFzEF].t+\];~dkSO[[}bBiqp;}|U$>|cK7$8wwTuD30DefOP/g](M9[; S7fApMDPfi52!i6:n]?4HK)iS +L|!kxlv>v2vH}[5!m;9N?y)5f8sY&4;|ko9^ ^oxGk3V5XNp|[X8R49|k@#OX 1a{W mv;Q=6!i!@,;D$6fzqEX!<8 =b(M{p`gDJ@VQ@3%6,+vXGO^wf% lLS>j>w+tZ6 >x42cu %Rr&E9/KL Qg  E11`v> " B}lX(7=weFQ#0G^2~?\g!F2,3Z1WK':H2[-U&A8Hn~55i __weY|c\!* Z9u&tgYjSz4Mqs`z4Xk2xMreiFsA)+=T.npN2i9a.1 V#we s{Dec~D 75s?6 yT*U }8%H XH*u-Hx?'K6h%68*l o3&6C9P s%t][x6Z" }'=Tu:r)NP`vaN^#?3dpG~/1+7Iv]`(`R{jpl(IV_Yy{n}kb,f183J"i?m M?A8b  B*A'DEG<W \F(m$7;;ExG;#2D'zL1,i%HrH-Zm>j-K_!8J x*UCz%+'^-Ep&sFYEO]G Pv?c{h]i7~1Su Cj:*V5~EWnE@Uc_@H#' =ukcSvdetpP ];RnnKR ]G-$ u~f{[0Mg^f|*ZOm0p>e bQcTO`Iu uzjETC)gEOXHK 3 2ow`e+O#>5g2H{OFz*9|BL @ mR7:-Y``HWwwQw~6v6M 29)G=A HG21*'!5HTvOh!\ecS"jPQo&'d#TyaVe0)<A]030[+7U9pJ}kxZ5hg|G" 6s%`go(Hiz)K{uXPx<;lZoG|:} v||nI>*o0' fu  /._\&fMe 9@ql)L F_ihfsrwp:s  #:`_ow TpYm'! Bdl|PiK"|v3J[P]Y0-i_Y cd+zQyWV>)6^'A8"!!0WtCTru *Xd-.KiZiP/x. !n3MF& 0yY}S#T GC{J#Gt;R!gDqPV+7wfjm.O3j \H 8jvLmuw"~*FRs?wEy`e~o$ZrI!rc?~GJ9byT*.~_Zp}mjZ5]p(RGg _Y|=kIa<~& 82cam]>btuV|h Z6 5ZrtcR%G@SR2PI7 His-MWU:wY =<$^g6STZb2/&$:UG)NS-dPF[A^(Q1wNav`8kTpYapyltBKjx/N1bj2v[8nhjV`J3r}nVpp]JzVH=mG$-Y L"CR^<'vt\QsDJTpTkLT&DOlK+9 +2.&# 4WHFiJ>ZZ v ]8_&CS,;hZnldTY '+/Ps^6{W]N6 T kAH DMG4^T S}u\YIIwGKOgYyK6NXSs:/?0qrdR%tH#u"%>Xk: ]]{:\:*S/cCX`Q'B(e-6PmBem.>ENgU}]ykN|kh|~EZ!6mb:H- Z s\ F6Ekave+yqu"h<\ T'u:g  (p{"2&k:En v})tjPfB<qpI'e@G Q >d;$b` jE$G uyvx{X:!Vy6&6 2J$+IL}6IB/&2~ 8T#7@?Dp{ :{k :u5Kp?$;IoLR{_pn5V|zoS0W z~QIZ2J< uwZYo(`|nP=p8.^&cVH,+W oY|L,IFwEORHo/a(]!)/:'dE#mV,#zELIpr., kNi78-I u 2*8y~&s`xj=;r!yATtP:=vWKJmoH]JNs;C )Lm '%>pc(HTOUl0:ZK-dR>#M:)TWKSp#x ]D?L]iY7D<ci.(a~J*HORD]pSGhBFXG{x{R &~xW VpK5/2]WR#AYe  L *zimr0g~tm]Ac&X3<&phUJe #& `8b& :oe ;ki;"4O\ rqe (I}jt2[B+AC@10 ^0xL SF. !4YefBVN `*;.wfEh^PPURE8rRX66,dYAF}Q$=zKcl{c27Zkd_Ct#?m>>X|A O|3t/lF3fc L)1iV6F-DCR "? C?G%sebJCE/u3]S']c pAh0Ki<mdjypwX>STwcUg5F =:eE;Jc]5 _BP^ ;+X.Idql`y:E,RYlV+;e3ll~1'{ n#>5l+VhYrfhB]X+`M3.HvUS[|h5UC~Tt6Y~r nI f~^k9vtsJn"d;mz\ : 16b(UU2i@+&gR1(X+0tS-,5rJWsi f?(vY|S/N*O"wuL2~5yhjTk;\!Q.a^1ueVSi( hp6HM@Chac) 1,XKi {l2-w-bIr?TT-G~p_41.|Os&}|~_2M,v9t;b3$9SaxJ !]]@Lg?,uJje2@Dba8|I^my(fj$/ 25H '<Tt{I )jVKLl)X*V3olK Bh`/y[1)06?QivQ5|}@T rW)`BJ]cB@Lp#T&[ \ A&;#=4CgD5qyZd(:w-Qd~xEfC8d1_gAJY/_J}k <Bh&]-}u|g1i&f!MV+(9TSzb0Q( or@\`^C?<(ITQx`;^snlF!YDbyRs7@BYR\2]"O \ x0BRi`'Yn~3+rn/8?8|$R 6 +#.8@7 VC] c=^, Vd% `!^(!66rHg,l"K_]s'u`vX 0GP|f" LE?I#t\1 nLOq;3lH}jg__LRA5:Owu)<tMrjXlz]E!Vi!GNj:}_+dUBqB7+t$3a#9s<aA[RHr}S>{-Z +T6y'm:y #u-+h_*#b 3w?'T)%Ll;rXU&m' 92[k4~rJSo#X6a!TY@|XF$eTT$>'Gmtk9q< yd&sR` IpC! ShDuR.5 n8 4EYfOtaG#JE0 }Uyh;S !P[48\^giXTvsX\B=zCFBH?*/qWcrA%*_W!:tZ$MEUlP{g\P>n=Pt,!T"4XSp_P*|Zm-O'=P*u}tm_W4!$5f~uBW:s 2Pxe,gdL;?].) 2iS1cv^&UZ7T2JtY7REbcS]{pq(H<|vkQo !,1N+%;RxhOH.%<P9( Q|mH-U};Z{-@zXNn_r8Xl">;m;-<`xJn-,PdeiHmqyFj/n2ps}d{;l$TV3(:o:)( VH8zjYHa:~Z@]Tb!Nlf <DlZI ]O=/2P924] mK !^+sD"Gf.KM2Lp,(]s2;0O]:24Q v#E< Pbzk_dUIk9]rijYwEyMP<mQgvy*gAcfReCiak_rK|\("i$& qNAq|zv^GO4rztR CW-;!p\R/ 56=Pc6 )magtUi`\<#)K:c5%}  6Ht>$jB0#MMlNT+'&L*cIidhjgEjorC+O"6$vq/=b_ t]BRD`#aobceMkyw5z| P5& 4<MJ^{Ivb:Fw%TgN--4>5yI~MN]C}k 4rg.91kE/E]c%XiFO`MO#@sByHTM2&DYq< ;Rm}Je"}n0$2:0CD-!HRt"bj2 |Mc_a(k*||U&c)MGPU ^r\p{%uV25X! 6E\vIKTF:5Ivm&4^L .4ZHwWbfhni|g'2k,m0D+cl_oL+W*!CwGL!:~JX[=@yjC66X1y  }Z6{$ g ~Y/f6 I qp"G3/2/FVqy:Oh3rO\oUcmxJ:- d:<4PzN!fI+ ;;D9k u3;s2{TLO`i~p$9GYaO;9zRlue_j!m SsJG2Ya|p^UHNXyuJHM/-% ZWb) :Sc\sTF, Rul5vY"9yC714V~K".c#:f CiAQ'?9>+/W!D(0.mVX H1\6 2hD ;|C@mJbY:M4EB *tI9A 3 |L* )G&$KjI[8Y-0 <_T*Yv=aR:cQodUN5H/KZ=]gVdA @0%*jbL38|  q;i}b)gRL}b!U8j0%VX)'xO(}k`V>KT{5IKs3Ee8<BCJnwR}ffYh. R5 OO< Q(5IlzvXRH3*3-d qH vB$& *H LUA__ 37wW.y3_l2?I] @0<m{dkRb/W6xM@h+xfF=$\mxl' +NN=9e`"9]9zzlQx6}}6Oy?|gt_}V3D& a5KtMJ)rPlXRYY)mT:)q'H+$SZ/W$P,2.1EomC ([^7^9 }C 8I.Mt>wWt}nVi3 }H; JV=~s5hW8U5VvF i${:^;;0Us9"eI(0!_*<wzRj%/6R$h[I{-R|W'sV+%]byPw i:HuId|<3}@^" p Oke `PB<hlj9<(lN\`bQ*-D,z;)EVfs'a`*!8<kHej!x~mgg3Opd41I 4 Z.0#9cgI!mL@)1zY+=T/Hyc;j3JzioU*1G_YHGp vv;KbS!yanx>{8+:q^Rs4|Fk"beG@[jA(r:~YiBbhS>\%3gC-~8ZO=?cX h 6mp$<h#+{l;jhd7vy`cBTT<$  POe#7E7OevHG8.]TKaI{M\I);Zio`: k%+Z!FP8}Di$#+5c@?f%`& 6c7sbEQ c9H\v;z.5NV?Z(~+nM}H*}9Obswwgd \ ; JI\s=@;XzdE !"W  UX`8Gf8vfAIOD@Xj!xVLtY[u|khrc zc:pi <en~PF]r_UK.'9SIt  9d9\iWC[kttd#U$&9>(pf~[ !u9 CumP]OX`#oqd A2,51Q}HA:G >uWRh{I`JJuoxh |VDE`yc[:VVPUeel6G``hl}TY IE1\@b6 12Qv^ ")Nw"u ~sm9pl=t S}[ak& EtcO4>7<?92}T%4A.W.K-y;X)jZ'\EJ4l_Vh;c5r\OVX|VF5rw<h[ZXT__|s>H pi4ox3U@/_@/Z2.( R t%0?dGL'%U_HOG! b/h6`c-iRA] l1#+#;ndX \WeT!#fn3ZU1 ;`5=#\9Ek d+Kox cc` fr|T:e%<#c!>~u0RztxZO{d(>G\Re"pl\GMA6+.tzz7_@oDpH9-;S{)a*o|83!FCBV.Geck=:bZ8z@7so\?@'.%Z!)&R"]{.rQ:rmH8)4m8Np@QcR&FW.vX91;#IU]%e[F>qZ2Z9[=&_9 vw_ZdcK-6;CxJ3 BSQqW0X%Mk)g` i7\?&R)o} g 7\C.I5]P3I~q^&-@PXCw)[f[}: "D {|B= ,vF !S @$-qFR<fii[xb"TUbn`DV xfi\MISne-8" `cPY0,0FNkY!|O4px4;IDKf!\&*4b"b}1!$ s Ma_$lb~%2QAU &'3..\0s{5@ Htj5A}DT*9H5HuCBlrR{sY`T7,U?>U> Sn"s3>{>EO$6DHDCSL3W^-q(!:!lE2`/7D2a/Ie?  I]WNSdS9X gM-UY?$ySIOwL26.?E9p<~.xj p2Z]j`jF: sRN: X?s[:Gq+2%?NCv@ #%)!39V_T[h"kO'" 7]Ym9vM)#=7@N 1[ K Djss,@e-zA]Y2qIBryjKQ{&xOWq++.P4Sf`K'X1;*Qv K&`@;GH8y/I"RydAx-Z75 :UjM?c,%7S\}}{i{NGQ ;#09w8cKPn9&&&E [JHwj;H}" "_c0u$zjeQD*uvwZZwRpS2mtd(7?A='*kMgJ^B0*XsQV~}|^_qaqakOj*|#7T\m6xwN.7RB<6-.n{|%bv >mbkaiyl{|bs(8kzY%>zvbuM5G.,>:GpyG7 Qw+[4Nl7XMrV2CPHd\.13/x 6$CqV757QUErQ??,<R*} a1FdWf1*~GWV:>; EYjfr{MO 1sgkc_irD @T~]K~[z]:o$SMwC_&mOk.1aA[X_ <^JHA49A2y9ec"nPwYj4f/e]ZYpuDO+NbqK}< e+Pyf!%*\d1uc<!d>3# a}H$ %$|smDVqIHT/<&f?hQSDG G b]T#!%Ep-<GZPXHMNF,vEzd "'Q ThlI!?vIj*zZT@:. [+ Y "#DA&J" & CgB~?dyy `B2>=36AObta*=eZ q;*'o6U']1wd_nt]6p2~7/VD* t^W$FA/X'1n`/W]U$VhYE36Gn<l]Z OD2<8;@?CaFEN$/Xh~P%Ew!T=/'PYtl5DC7  o\-vc)mJoo^dT2Urueo<_LJarEAk ~Uy^xd^an<|@,@wO8YRG ;|,he{x.IRFB[Ay+` FCI[V>%Bud@&KULF;=tH^jd]M@84X('BRc'|2_|Ut+ F.?b}qK\^J`&@[;."U3)6qVopt?i-S_`Dy$=U}fN\G@=;BhE*RdX6*+r8IKSjc3t+(YhP#Qy6CSmt3~li dbDvI!V{~ @t_ad^Ev.@% ?z)f{{T`~!8,\?>61'u{wL1._oM  Nn ,)4,^ 7l\AdZytb/ficyVUTE^-CL%[q}H/S,x5lEI+7?[vtnt_V(e!|ye1QTJw9--k'0)BmK$Lg} ` 5aJ- y.HYUkJ( k7]?r>Y9Hs- X?Q(X>\MS<9! 85S[hwxhRC<5'Juk:KU|2oRF *nvQ,|m;e 9y*4mT DKior5il,|Z6",Oxuh`dm= lR-&sU+Zk J g]jLmj`G/'f4\Os:Eb]+!;[pxC]Vam.gGIK%IA 8PXiw(2!vaJ5^+Z{uZ: 5im3q0!EVyiTtDmF<ZuL]SN"Lt558^lo-&I_zkp}z| #K'jfJ0mJB|COgz{  F{!b ;DnL Y4 #*q>-k=  s/wUy-\YO$ur{`%(Wo"~5r9mA}[+n r&M(4 -eyDGeWWOQB%M;"5E5SZYh|w]42*=%7[4boQ47 mM"8YjTWx#,36&8MC^I[BL4AM[?{rjy2`fS8l:`/6f0o7TG\P! Vy7hWu_)Q)]);D;<f$C-^nhmCvq2weP -%* /4%T$#s)H9SJ -dzVT="OX7.64>O\nJzs~k-knw9m'ag3j{[3Sq+x74|,EHr4R :# P&s%6@ YbcW2 Y0ze5FVl`-6m8vk| [/ W%]4#9T@Ooo`QSq&Qx|ix\h z(X*/FMC9](9 (+qq>'[N|xS:>P0:4?6Po.Np{ijZQ]>u1g+%&L,0()@je, D`wF@T6mumI?3N ]2^i%Dn|u-bB v)h\k|sbFD( G".9eZ"`xR7'#D]->q R<W4aMdd_N(5c znj_wM67IQSXF(a +I\gZG5h"@ 1m>3:-(:co=/}2ka\WE1 ; EP`Oi g%'T5mkQ!wS f*yp`J, :b^vJw+>n>4q4:&ylD{a)hMt]V*&*$&:7p>94Q[< aZ2,1,95-,- necT3],|LLW`Q!qZ< xJ?&>P\O\3E/0LdowB}mSJU}` @<.wr ,R*- +-7GRhzH &by)"`#wlXC2j7 d *;NR^ks{m.sXCe*msk#YMVscyToJe<|;4/{djy/=Q{ qO`OB-%#<,yU7&E DF 6BVR}4W) n?U+l .X1Z3 zWA)j{gK3%WfO+!-`@5>DCE6;_zW&Aro0 V$ *'0ID`/I9I(= _FDx:EFOLAsOf?E`3 2?h8>\y5d|)Mwwifh~tb\fhbM/  0gOTTUB+Hc 3q;:d(C -i7mJ=L6CX}oi\a+Cb2xYVF&< ?cq+-sK6"0<{<v=|8E2x[EJh[- MaFC #*J9VvAxJ:t+pobjwtswt[8LmDOe<"TElcz8Asy}z}zcl9^]rlcceb?:o%Y @kR!`e[(Oz&WXQsPL<N'}`$/w2T'r:-YQ9iQ e  bIGKINqZVl+oh^bmprn@wB[+F-j)@6gi{pR UzgOmxvc^[]'kPG%[sgt0_4;@ZUooAK~hUL]uxmssXC_O[t[; \0RkhtR7G(WPqo# c4 E6(z8wu0d@{R,FUVx- fSB| hWMOQVODPA'IZmrqv~0ZHA0~>dY X6@u T3$teF#h-[o =1DNu Y8 i mR4'>b{Y@:Zb/kE508,~( 0=Xn 21m-S\~{qk.jLqR=tTo&C |p@c'G*OG"   +?d U'3<*D;4R[^[kU1e1#W[&3g2?4[bX0dPo:bBj<zAvS/yA d(|\e75)BJmP@k 8\so^XL"IBI\RcUZQDC&Ms6n\3PeD'1n([.cCHh(V-#DCRlUxSeQHU dod1J/ z?8ek*{n!BnmDa~,G{u0Ho($/8;=q=+EYZ }F$&6jV"Ds >$wLt LCp7KY kxteF, z9U_- b&Qll)MkZ7 <9nb=GzBPd iowyUz2,N`mzwf~O0!JcyE{K+a2fA b1]< 2,3ft3ZTWx0S{FGykV,A8bqWMT`.]Zaq4[v*&9ZS$?g7oW@m 3Kfm3w\.{>~A<=?qB-jo2:h)fne1qd{{a+_!UI~uU +.K#c*y*.Fex#}F^~5r3Sa}&`].:z'IB\Dv'a_y$G 9v<-shE1S,k~gZ:OYS\WKR-Sf6<8KFVg\z)Hl| i2ZSA;x[3Mbg8c6HT-fx:Z?Z#I50m^q6E_i)R:3MVYf%EdQ)e$ JF~|6E}O7 k.Z%oR=b"P]6z8%i?{E16%]e:U2RXr(p'-@SjhK>FPc{ 'BK4}>vA|r>nkm^N1h@QD;W4oLhok~)~d ](3r:Ge^#Wq8\+X[d-&kn1Z'~;DA7.pk6!?tZAaC@Ybqx&'_obE,bgk3\ S2\n!i/-7iJBT5V5\AcN\K81 +oH}2Yj'f?NX^Na7+9zPZQSc\`ghjcdFT6pu_L@; YlCbs397R30(V%ILyZO|UP Wzs64^Is %,H{T| Y>xB,TgjvucP8ypt,eD a;2ZCv|:c^=gDhH'`dce\>S2P>YOQ['T: VDW6k'DU$XQHW>,;B\i(vGE 4fVv$e\C+M 9|6VmugO#F  3alQX]T:-{%j"N&..6 5:^/|E-aSv!LeZHu*V&Bd[/i cQ/r\VMJ"ndm__@\YSWND9>HPP>k, #+IrxIEJ ]@F]5q}xhJ\#@:TQ(UH9rJGr;&FnE~Cj(rJML% ikX NWPZkts"]0g3;'QCG o+wjYU(Y@bXty&IMtasdF,Z}=%YV-ssN$#n2Nt!@|@E |E bm: X 15Xc$4fcfC/q}Kv`G;1f`"=]=t)7HZPdp_{PlIMF4F%X$@-@Z^r<"V[!_Eun-K'dKnbN 1#? PN9 rw D&+%R|(AhCau"@_t}k:6ZoL~`:  `+'sU @c6[7S`3 orE>o Sh <fc C&l N/bEk}vXE>-0f },$4C_Y9nr^5\MdlN@ ?J CK2n38MUF  C?>:j"Plt@DI|\ =*jl=0tuiZpT6}x*Kk IazY!N{J7f~v^RXLblw}gB  Hd:Ya}`DM6]5KLt'jE55h|((&}{W-.r7/D}7~4{aI5%   =\ .1L^ orGiL31'e) |7&Wz_/[5&|);+['p;c`ytrvlr+TQ$c,X]1 ;>=LXZ? '9_bnaL# 1c #Lm <S' nwK5cA$KE $xY %[ Ak-)rvg_eqzwO@d\j}/ s6 JPB2iH;30';tO=jABl\weF% Bh_3m,kD_=9"6ovZQVipG]70+joI!z6 0uMXa2zg 6[ $],O} XvE =kjH*v?!fm1=~PUK(zoZolv&q,p0i'pt)}u'~PGKZw9e <vY;y.Kit{vry}+ p&)xXBf WKNebE}5-0fp34f)fXp\C3=sqhapL~3\v&hCrtl 9$! -IStL=N^{Y!Xt1m "V q^J,!->PmfzGy8_$>6 VXR#a LO6i(psdt4^iR9'6kbnHdi *LXhB's; ~R#~7(5AN^rJMiO7)/4;rD8EQ VaB]s[PE(%nFnR u+2rNn6nz*y`+#rNXH^ ;QTf>C.7@ NS]i~T W 4h1bU6wuY@. 0GPBz<s6/ /eZV6q|%AOr[0j$6S6sPK2 )fMb~u@MDncg?]q= tu4`F87/^A`,+w}uU"!%",15+)#&!FlS ~;u\"*b`.8!S:i=m9I'[ @vW!qMEx#Zq/H %&%$x%*9FHCSjmY'RgNi0hR5kh E(# 4`ppt@+N:4gr*(|#]8C<% "YIK;%PAj}n'g<`>\D(N4]V$1S=n`y MNn,,LdzaYEpjv HM(X,s,^,iXA+ +|%'U}_9}I xI.D#K>/[p-W }H7dpS@=H`P1 8on X =ys0q,Q  +ZRV$Slb#lap7L"f8gW?>sH+1`5RJ^|`TC$<^Ji=lhLEHO]q|o@1PSwPt4$_:f5lDT;@k]*UP&UWeA T9}o%]`T[^2cfp![=d3Y  _;(Y5Km! NGR GwRhjpo^U'hkAt]N l@L |O4;^-1j?&*(:'j&+Et 0M[re2?cz6fE)w :.=FCk<.G Obe@ s-Qpm'cp+GU@{oBjo;b+p:Y#v9Sup= " 2?"@ETO eBHu$B,q9716"%h1*U^  cA sW w2XP V=Tc/ 2e-{'` (Ot3:8DXjud4|%9UO_p>vaSm5rp fW O aq@ NrOa(YjB]7hM A#D?Yj!Lx}&@$LD]ku -iO.YWM8br`us!fAg*Y #.7c<8!6g=D9[o:iTgt]~|gu#lQZ#B1v8 DB D~"O2v/(%''+6GPI9&%7FXU bhNgqR@k0z-Tup9=PsB(Eed}~gsHe6R"8fy7_vs;gE]2qJt%)|&|yi,NK&hb(r E@sG Hg &V#z,!@TR[dj9`J6(f I 'uL(be,VG8nzL[4 '=Ie`.|rm]x>M w;Ds$)sTchQ2?EpL_TLV7a&(.!%vtEt-b/hOh^$CJ+ Idvj*hd[QG 3*'U>.|%M A~otI1| k2I ]9z\jX3*2@PbuxGoY'MNS@OMH<2>^"mE]<%p\YE3 [$*3k%$ =l)ZDC\1jM@uWEn~bdgcYDzzg,S ^oE[S(^&4 m/`?3KMZthxy[A& @mZ6k1uHU2)o3t@7l U(&H ~atM?<$ k4k%t,v9-YAqi5|*Ldx%7iW>#%L   >;R$}?9~ECetqfP>>w*"b<X-Ma3Fh T@K|#Ku.{+H'V"j* :Y"35EWAvo 16BEFP9\#`q5WxnB )zT\+9E#P451W5Ns>XZWUb|q~^]E)'i+rHsbul%T JB4OWW\TSYL@0-;LTMEt7^;WLqnyhP ;3Rfo/t]*-*KfS '1^G}auwrYFx.]IWfsn|Ge0r)`ZR3Sm T [Sv0<//93Tr(|OibdlG!pVdXV2){ANY$(&15JLhBf3,",fBk]p~hG4T3\ _L 0V\uT4 .%M1Yr^b:h(i>]MGZidzwX3Ompezh-l%$N!%{+`/S8GjR9k: 8$)V"FZoU@8OCsf?A0^*:fxCS)  -# ! S{+5RpgwP[(#Tr H k.psP("+a 5YxYE!D%hn?D2An_c#G/VR[zX|7mVI"A;Gmh=fo_5HsWAvR5  "'~s;^ +to4!?.k6 ? y9dhI,&&i'*l";Lj[|Cn yEh8 F0rZ@+5;8+=_#(#i6; 5\S,!'U'KT#T)xx|g_N<&2+  cK{R6"bo, UxlL1RWM?n+;6D.c@jPPZ\J![Y"GyV6Xd`aZl;u*rCjqWA.&#k&|" p/JtG 6M=[DPe~^vwQ\Q5IskE/Ussrko] PSb6cd_ZUiA (o=g4=qo 1t*;wZ5uln`UC ,-?]4 8sU7df/  lJm|9~K "%qVJ4pQP/ Ab;q`D%AG7CH2N@Q]HFJ@1/ $"% Pym<45OtjF15:lN]p[5LDTs7+BNgw__|erlnqna\ZeY0M4!6#$ :{a4W`/ 2deHs\,aH|@odSE8G_ #m!P%&dX;04JZkt!sh{Rx2WayK_.pDNs-4nzzy`Hbv\ 6IOS ^TibNFLK?E'@AIXF|G=}']E2'mSstk)kYt PI`@&Ms1[m kmgknm!n5t3z~M~}I e*KqL1]RD >TR#`B)wN)Tuaq0k2]F47<HUPOcP<R:Y,hrw^"hxioUv8$Z:B^B;o[kzjCeE_O9/( FQ\Rt 0,F$0F_x(#-[|GSA2* pX]#TN E?= <@9E=Sv=o:I 3BL&dj|e HInd W>e-Ou}i|;z@yIzRy%gRII"PZpu {aMe/#fjGY6.$ Q# c@).0\)o;`xyxxQ2 e#I~7  +-K2<INV^'jD0$ 6FT\ ]hppncaT>&1I A=Xb0NL=kaQt&2[|Zc yaB& h.^xbJfvuEtw{weLe<Q)ND(>T^a"b [Dk*=5#~_N@78645:<:a42.C)yI39!KogN\ &W:]vd8{DTU >R,1129<{?cF>D8%"(2;? NNjE':r  $R(-17GZ2orp5  0=~:S!H3-,;S+T8p|kO89+D=yTT9G|vy6xaA!]4,G]8$0 bsbT}Dr,  Lwo/J6+_D"DSd,sEprx}kY4-"3R $;IG?==M7()/. '1?*S5^CZdG8)v@8@@%#'.,-ChHUeq K/x.a3 4UOQ1Ga}hCmO,'&YytE0Z~r{_<w] {|K\o!e4ug_^fZdQvB0$&5!EI<*w'>RIX,_ .#%f2{JmYgH4+%"!%8Odnni`TM{F=B 07p#.X-6)Z(/C]}uE<"e8  +AQ\kMQ- &!%#Ui/DYnEI w^ Gm2._+k,W7RCXH:='9lI{R)Swma[U-UME}>\BdHcPDS9RbKC<9?GJFC< :>?GQRB-,/J4Whtxno|pc[t\n~Pt|oTU6` 5bWg m+g`_he >\v$H P"%) ? "7@a1?L-\Ev 2|OmV8GkI~A vcxXOQGC?8*&e5LW-PO'YRj_jsged`fU@GTBEB5+.,f3[4./*8!nd!G_7  Z-kT^D>;+"b MrsdNd9/c7\{GfM  q @uAbn4Ylb{'348 6/ y8Pv{TeZh[ap|T6FIKYpo; #Bk?\6`NItB |d'Q`$< !j?FQG'yBK ,9hL7i||wz~Uxj"ZbPI>&Eu ;D@,$> G,LLROaDt6})|v{8QSI7% _ }f9D lq?x8*3,p!E%;8JSg>M5#^Ct@[~dz  |:GP2a@vN<! h]txH) ^h8Is-Cx\&($xX;]'. !3HkS;C'e(:+hG^nuseSGFPB4)N%(*(I+00%&2 ?B CM;`P`aSlKwbU"{7CKPM@* &e#$:i[/-2X,.*l(@(1K`gx-Z1Rcgel|@PI$&1?HQZf3rkYUM3)-E_o^IEecSB44(h|\;wY;$H ]   X 95XW4xze]`[ejn r?v~Z|qbPF;`/p-5::9<DMSXdnlv'$(#1WiJ~:c6)TWJ8}5 .7H<Ju]uGk0>Rm  F!Z@ 6; 3   *3<zCSO(gE  :aoM6$ *ZqC3pnV?/$Y !"^ w= 6 !}2>> Md|sh`#QwKNVS`tl}qbZE1,(o+7>%?85 =IPSXVoQ'Xn ,M >`"NdqbE40' $=.<AoA0DVq"CL/$D Ye0pN~h<n9= \gQpP%#A`qrKvuoh`dk"fyWnqjjonc[U/MMNMRVNqBDS?mz(e>.+-J6dIyp;Tf|;{ )%>5  `'+82v)xtkn$*,',oc:jF0teTg<4)c "2Jbdr/uy.Z~~Y,SzzpggJqywph9_=Q/=%yVF.EBNOZW\\]_ufpE}7r~qmt_uSpEg*gnoSi g ieYRXg`z^x*tJnjp'Mr !Br$*'yfS?% U~Y/q6X|_?& /wH[W;_l}`?)#>^|P9ar{wl~_YUKA@)OTgtz{zjgUNS-e{fV)b7CVhv&971;Vp 8Xjuwspl}W&_q<~6B0R'!<`}",5FgMheXV]flnbP#930x8L\_WT_sgK7'g]=0lZ PNXhx}Q\xj]XX]flz !n E $E_geo#EZi0yYpx}6oj7p;?w y'&%m+W@>`+'7TyRiN. ur|we`fv 9^yiXI=0&p8 fJ (<|giLb~q f%^3X5V(XZXT[n|xhT=O 1G^d~v| (>KUbyY ?tX0mijk2pBrCn>h@gEvN[ltlsSf;stffe\gZifjic`r"*1688?Sm&"yi^S{HEIJK:)!~cC Jj oBYkJ{ElGVF?< %+-143'(S$2FfX[^YMFUn9vx}uJ g M y j!J(+8,KFX_icyX{>kbbfdbWgs{z#}N}+32zR&yV;/9IV~YvVpQsRy_}r+Wrstportsx`B{`J]5# w~ rq| @>|Gyevnrqjq_y[akjeBWMKIFA@?4!Dr"6+E]R\]\]b<nZwy|G&BI]; %y8uO$B&D/HDHXCd4n%y }&~+w.n%gd_Z]1aaf1u{ "u0m(we)zqwjhibckYrQuK{JJGRdnrx"Bbzf``VJ=9CUgr|5m4^L3i!.} qs  YwepfZQPF7+,8?@ZFoE=/)e'>(*+$  ) !  6Lf '8II^1c{tx_=$9IJXNU\g_(eiic]a.i& 4m Es`iwdgknppiuh\m<xuydXVUQMMMYl 1LvkK3"  *i@1Zkn_p&upcQ@0oI.1,$!! 2Jav>pz_ICHSTO G G6G8N$[p|vcWO E:9U7Y6X4`,t%)470*)1"?:[gxPwmkhdhptB4dQ4` fkep\FQ'JC@AQ]k?(!'05E]|>PXy^vTx@' ! {tnrro[B332.*-8F.^CyTam|`9 rL!+Ila'ycH2\H =<7,qi| T8Ypo]^ak~p{}sdUD ;*1B+J#NR_} 2P)`:wOZm{ xLcsQEA?>FZO"fU9RVKg6V+C*.16:ALYljE 2>60 3 L q!#-3;5-~zytn_QBCLX[Y4a?oD~DXsg>]( #1e?:DA0" jTKHC=8"6JWahb[O;Jg2#Qaact{pnwezM|E{KcxseY I$>>6S0d#gbg|%>>Mk]frsx|)=nQT]8]%b^T!@. D`S!/1x+]%B#2  "?d|Y9-0H[ jl n$w+LU?!tszy{l_YSNEHQ_k"u/w:qCoAqJz^}{}jCl< gF ' ~e{\^dksy@wRm]`\`[[TSMb;# ;bx[p@u3})"%+>_}o`J5%(L'm*}*xko$1BXIrt j J((+ )! ,JoiS.sYD<=>- +LmtbVMGN_&|8?>)xnvvfbeig`ZgjK2/3:=EPblp?vT|XI9~6vGvfodUH4|P{rXB0 }ttyUtip~^5AZ^XH4 %) #Qt\ J@8k8>F~D@747>I!XKlmw~{mVB-rW)  ~$h.W>LEP@r- |R5(#$,Cd&Dfq`OBz(ypdgwkM0|}~wy{xkr[rTcQOT4]s)U}xbN7&, (=@99Rww=  ;?Tffmr}v_&L8>f7)s l*aHPZEc<s+skjsiYYU"QI8j !;KQLC5,qaa x",49<5sVIGRdx 'Fazw[B,t_NPZ]eicWQH?HK6xuulvap[xWXr\afXxSG='>[uq^ M@) +H)n6>EIC0pUF<;%B<T\f{{ x#_1I8:A-M'Z cjiju~#.<ISYapgJm#qomid]bu{cOA39W{{(i)_&]+c3j7y/ ux~p_ U-fEWelfWD. {bSRU^gv,sDYIC=3+/>N\mztP pS9)*m2l8x@EOV}ZoeY|< ":KSROF7 -Fj(4DTVN7eRF A:5>DDBQJa`utY?-4Ney,796}-c%K$/,9 JX_\[`n}\ E*0Da~&o6m7r2%  /CSfzt_K6 z| |scN5+Pnb;x_Q{NcLQKRKgP[ijdb|hMn)u )APVRMD>:7 BP/YAVVXi^udc^]\N.~Dmgey^ZUSRUYZ[ZTH>2-4GU0ZSXrOFA>=s>S?;7/,$$* :L_pzxnijpzfI1RxT>66)G4i=FSbloqrr|qptpvxt}omg]H-paYSOKF>99<@ADDEJNMB2FrvI(}tixcxa|_]bd^SG<4J=M_pvu+Mg{--+.}7u@oFfQa]dtda_aXJ70Liof_N=-!+h;SELEQFhL[qHkiJ5)e#F(9*9#7-% .9CKPMMNRXdt}H 1k[M96Cf6N^ceefeeaYYUOLRTN>) #9FC4{)fVA1%!u+i8c@eFrIGINL@/-RrlU@& m_Z|Y[`^YT"M&F>6(c#'+1Euhjhlm8\wNxt}fx\s]oglimqpmsx m V:$Jjf}J]0@'  .EZQis{#Ez`kqYoE[1D!62)(+/58546;96,76?#HQW_bi3s~cI.+\&N/Re'j0g*js zvqe[/NY=}#V%vZ6cQF ;$*7D NV yvbiI`+O5  +5@ T<o #5}JrYaOP6G D?<9:;:788690R+b%cC $1;DEQ_k|iQ6P_\h/\"{+/,*)q`W P*LODu;-lD~l\E+xT: %9F,I@KVLyMKFGKG&8@+:#*!oikmmk/a4R,<& |:'Bhge{ 0!I_ay~m;dN]aRE6#xx{rm`^KN78-@Xm,d#4.~teYTVVOGGJ)I>=F.4  &r;FJRW]h}hTQ#\Ru)K#b<uKLLI:  x,_JRWQdWwXQD0}nZE/wgQW5!,FV0YLVlQLMWeoqj]I1~tkcVC0!!S |&zTQ)Kk1dxoeS=$xp[=qY:||6MU)Xn_jzytl^NA%5+*)%0#8A6 x%76AA<K#C 5&UgE( !9O_*fU`WT[l}zhQ8 #9@:05~=rA_7I&:3/.s-B,! 9eJw-CXs,DkzjZD0 jLB=!hF)$>O*Z_`hv|ugOA:_.j%fikaF%^&-/-0?Vs'Y4ZHevxxmkprqqex[SC2s&fN )t={[;!  -#?6LNP_MiKrNVer|znU 9# )I\WvOk?g-^ L7'h- <h)9Ln4Kaw"=P]l~teVF5$iN:~o[G2%!'9 S!m4|FgyfSE:7n,$e9 K}(8J[v.Y|%*AA\_ts}ibWI=4,#dD* b)t[E- %'A>IWGgJjZcrYPPQVS H/&@`nsm^y=jaWJ>0X""',17:91>===::DUhu7Zx6IXb&k8pFqEp<l2d*ZX [caWE)gH#v_H4(#%-78gI\iomf\Q=* o9|nfbbk~.?Oc >\q~?bp~]M9% *e0]5U8P26" w ql,cJZxWbow} }}xlaXJ4 %06, *f58? GJNU]gu3!Q3lIWSLB<::?EP V_df`_\TD( |b Q3$z a PB7:l<NeqrrtqfQA0gG!~ .Os/COT^gqt!mFafTK=1$,xCeWX`JU=A-&#-;tDcVZ{SU]mx|xn_J5#x\(?/26BNX_n %5A>[7l&{().;WimgiiVA'  +%hSE4$&=ZhmwtcPHO^krm]I:2+ }}}n[M;);g!0:?CBB?CIS`oz"{>rgfZL:( !t:lM`XLZ;O79;?GWsz}hI0 |rd[L7)4vErZ{t2Ley*ASejaRE=5, }mcVMO^u|p}_rMl=t,q}]eUNS5U*^(p*"5I\(s?LQOI@=@K W(_A_^[yWOB2 i^V I#F3D7M/_} fG/pyZoLwF<- 2Ic'A\v *Fg{~s`H3#qgfr}eO:$ hGs,]VTUZdp 0,S>mNuXwa}oyxpfcd4hSjnie^UNHD9!cH:;?Qh%254+ "-|)gL3 zX; w npwqpv1E]$2:?HXjx4N^fozylibJ'}xxeYUPF5 tR0 k[OL}Sr^sfxmw , D-V?cSxet{zq/_JM\CbDjK|QTXYWTSVzW\QG<:#5 :FLR]p#0=GU_^O8  " 258BT[XW~Nh4Q9 jG$wduYrSuGz@CK\p}<^.>I7NQThT|RU^nmN3!nis $#~g XL@6)~Q -mYSSxVk[\bUo[m "A6]NxYbt%Cb~|nklnljie_\}^l\WTHB90%/Z'BX`ZO&B80Oc pvulU9z[;~^<eO='uf[\2pVs &I{40JOXiow~pN)ePDCK\v, AOP E<:<8(~eK^+/[A3}3t9iG\^LrFzN]jw"B]z.D`'{Jez{pf]XZr`SaEe<k5u1t1h-K+).9Kf  )!7-;<3Q&jxiP7fL2d5 v`M@8u2n2f0e5oBTdv?#d;KZq 7LYbdfjpqto|O/ {~tdY[cgjp (5FMPH3sbaY3QI@3%x^IBCwAkAdObaeuksz+Qu #%<]YyudXLB??=e?EH(W __dz-"7 20 9K]nukI!nnW8H>3#hL-unm$p0r1t.|3A\2+  !AXwfD |<| slZ?(_B68F?Gb?TjV<- 1^r%;M#f9BJXzxaPD)A===13)gkvW8xF 'Lv-;93z*fYj~nI,]0qT-rT=4MlLtsH8j2K_lx.SxiU;HcuMM+ /3s> ]kxW dQkY62[nN3;/-6Fp[V^9P_rnV0|`L9 o`W&eTreL?`7Qx/k ?d #'=_fw4~/c5{S4N1:&Jly{vbXV[ZNNuiOz,v xwTt*G 2/;w(Pp&9H[vAm3AHfz\6BZgfR5!1:[14"1If\IyY|R&6@-1~*n"V=2RK3 cN>2'!LyvTF$BfMu&ZL)6#ax=aC"]Gwiitg3&""9V x|[SQQN1As`X_6Q_wyheI9[uj]PA/.R}/N%\Pczeei}0e *K}vS(6.h*,:;c.C#&=9,InN # aA'{ b+K3  5alN PJmHEy -0 ,ByLe>!~}bJ6:T%WM ysrnfZKeF@LIJZkpqes]Lj%{dPC+# ;dT;$ g= 0?t=^0K>4*Cpvo'nI!R-9JM&Ca(I}sF' in|kXL_%c=@]}l_u[QT-A ;[_?t*z|tv{iO8# 33tHDC1TV5V}  &Xdd{yGPq&n8!j?-QTL8'4RdtlR-  x\9 #/5/w};:.2"m [A0&2@`@+z hIn}iZE>7: )$X OuX3y zHys2NGh|ug^S\X0kmhtcI1tU5  49LtWL?H3N{.qgI5'c{Z/ ^1%9CHLKC.*K*e+|pDa@BNPED^gO9/reVSO_yX3iLQE,H;swdL|5x]4 eh+BXpJg\mQSI=I+dsJ#|T;* # *G;~MQC@![xc_w}x]jX:JzrQ(pS9.$"-!4'B6KDNV>l13(d.~m*X<?5#Lgo\{ToMiJ>M W]dj@u:L*&c 8#yQinP:&rR- '6?Oe}z6moFha[dl//47/(whUUck[AD9JO ;K ?udY}JD}Nspmigb^[YR;/ksV?' ra$X'_i%u.~mP~h0P>405YdG81r*k%X(@319(EUt  ?x<|`=FtD 7pW]iUnJnA+hO:%0DYngA' saF(~}k2.#'44w~jO@J<>2$Z1fGbXmaugt}|j!VPD31Li]A-*F8 tX: y,\344>Q[gwsVq7s!f*LALdQE+"W?tqO1 8em{k._MR\NZQ\SoD*zjWG2+1CMMShgTR:wgT?.&!Y- 'LZK:m:ZGONP?V&cwg(HW851%.a| hS)J9ZLh~s`3It-;Zv~` K=0$1NUD- ^C0 sX=E$L=?diO9)-NutlX"Fw s+hL^tC"IoRum!wF|b}tjYE*   |k^\]ekptxsIq#t zxlXC5$gE**@Lani`VAN:PQUOb'rzZ>C$o# 9naB14Hb*5@MYSMH<3'=h x}>jIO6-&0@6t|qEqU8 ,@MZjiTJ=6<KZiiE'!KsziT @5!n=`zJ~}Et|m[IA=2yb\_^QGADUH6MV`eZuB~%zfaxrN* "^vvtvb|YvQiR^^^mSv5vzW4$0H+p9vm;07 7.%@)q1Op ]xdPD@n/ J]SmFFFH: !,(z`@(zrX=Jaot_MEIMMNWlkQ1CplcX#5V0a^,d yg\+Z6R0@$$&ykbP;03:rE=Yo}xgQd8<12m.mv$CH,}r[9xle]VSTlRUP3W`ba]Q]<9:JVp~U- 5>Ibtla6M? <AGMUm^,#O}>}h@DYa2\<j:6>"O\\fop1j_^PA6,(#d< lTE&  |uL$!-;ZlR>k7S:BB4M$Z p;vpXGE:IKPYUfUpKu8xvndWF4k)L1 "2CM9[Hg>m2h3\=OE4@::@@8h5IC1a~ ~{hnHM, )Kk}r`T*Ymo>y ,Jbv )/338Kjc@}Hmfnz !6K[jyjlDN#72:BFwNN[,b\QQ]h_Eo-]N;" nK"&Lx1x"32CXKwUdt%,4<>9 1$-9/I:SAUBWA[?_9\$YXN:&wY<$&6G_ w/Rj{^<vdf]Fb'jq|{bjKW26 nF$:i,9=C\MwW '@Xhpm%j4j=kPm`pg}pnNv&h_T<xppx&1=HRax\{9ncP4#|,X?9P]ly|oVsC\9N+<' c,Jw,x  %G@CN@b<p'uvrbTUR[lzlQ6tjis~r~Qd69C=oP%=Wn2=H^ &Gd|W- yy{8f &(*zfZ_V2a~zZA#hxH?&_7 7Y  R (/O=zLVcp~#I[f!p $&$qH"  9_+>QZddaP7zn`WfV7`s`;o[fL>5C*Q"^!6Vt8`)7DSeyzvsrmGg(empw"3N7aKrQXTL7zomklDjprS/  qQt0>I!Hy Cs!'+!2G7i;}<<;ARn'Zwd`fl{WF3& , ><OT[ggnusleXH1 h\YXb%{oH!kI*W H} h5jcFx1CX@kh3MaulZsAp(mkqneR 91Gc$!F5^KlcnvroiT=&\5 d.`>tDF6c9o)50?GE\HkNzSRT_x"S|}X7" z'UD>a9=AG#WJjntxfO<( VwBJtU+Y~LtWr["-03>Tkw{:`q)M:"HNPPTRH4$ E x-.PEu`{hU>$Qs5|^d!M9}M# k*..5 @)QAgSuezwrcM6N 6`E%8 M;Zbbm~ ,-)#~!o%_!J'p%mX9J8c- hK65'b &Ou!*4EXj,r>pPnaxqu bQ!:,"2.!|M$  (*(%#E!o&5J-^sm{!Lm$-:GuMdLSF;;$'gvyJ(#W$c2 7[(Mk 1?(D;@J:Q7Y4l/)!d:&OF'@[3rSs4KQL?3m(M#,~8yQn0/udZo]Gk$;_ 7Rf'p=sSvc|nvxyxqeT C) '0-"yY >*(!139L=t<DVlH}|1Wt %<KVZWQxNmN_MJJ3HF:!Ne<@|njjlVnEz. +Lj+:B$C7A@?B8H)T^ jztV<( ;e'Z,AVh w2Ods#&'2{:^9@3$1,c,rN\/6pVE7'4Nbq/$EFY_imt|{~}xmZ;"088x3]*D/"  # 0Db2DUcDpm}#: KV.\D]R]U]R\TUSCH&<8<8m-2 \8Z1 ~^D, '?Wk&7AFF/BK5c'umO9'!0=La?$cCZk~ ,If *7@{?\A6KUPB+o B^=|pf^[`_nG7)   "4-F4U8gA{LZl{iM.'k0Q09.+&'&,2ANY_k -AZu%If.=B*B5AC;T5a*hhd\TfF<3eAy+V$2, ;EHCm+# %2BR akomm#t1>Nf#D_r2BLSTSQsQJN!F1 ze`~fgrQ}=$}m^T}NlK_LQQFYAd?q;3.+# 2?L[qhN5#}'t6uGWh2J^1pAN[hu}5JSTQONI6"0{/hYH0 tXB/ wj"]SRYb!f/]>JK2U&V'K5>C4T)co uytcWLGHR_kty{}2P!q=Tcn| k#O+710$|fP=+ pc\ZYTG6 %xlh,e?_URfFo:q/p&p(q7pSppsx~,BTcv8HQZdjf,`9^;g1{)!~eN;1&$r3Z;E?7B(@:4-+,39?EIMSX{`lm\yLD;s5^1G9-CRfxdN@<:AOby"&'+5B^1Marwd J- .54/&mZXh`E/ ~veO 5#196.jYJ8)+!<#I&O(S-X7YHU[RpWalu} 8Z{()*/7>F.K;T5`"q aB+ (7pG]UF\3X#J<.")AZq~eM2" .?JjM@OT]kzzcRHCEQe} ):Odv=Yis~rV6$'(j%W!KF FM[mwaJ3!o\ TOLPfo[C*0<A:+yha[S/E;<;=1C,O1c@}MWaoxz| +Ba~ (4 =;?RGSSJ_6fn~iN8)(05|;hDRHAE0A 7,  2JcxnR=0*',;_O4Y [_iw|uy#8Sfs|3Iz]}jtxzfM0 ybO?:=HQWY^b]oQZ?F35&% (?^tlV; " )'  '/26=JX_^dnw|)Gk );$C(D088 @Ods_J<769:84*mUH=. 1Hb}ydTF7&~'d8GH*SY[`k~ '9Qj~ 2Pazjkog[H1 r*Y8EE8K*LD6  y`D(BddK3 1BR^muthdkv|!>]|0 6:>&E4B?7G(LVezzhU > 'sYD1 ;Ztzj[N@0sie].W9O@KJI]Fw=,.DZj%w={Uwarjsoxp}dVJ<+ 0EQtUXR5W\[L7nX?$5ZbB) $0<CJQ RP&F69A%M TXSOKLMPXcnz!Bd. 21$//.6-;'F!XmaA#!rqf_]K\0`q-JeuobVC, $AXiy{Z3 #4GT ^g3n<oEpHpJwG@<:<?@9( 8PdlpnoGqu}zs]t=icXQHCr@NK,h"Dbx`>"$1@Um raO$<0%9 89<<8fNK]9o(9Q`jtiC~wz'5;<?B@> BH$J1K;VGeN~OKHFC:% %>O[aihCpz~uv^Z>NEA99?E|QTe4!=ZxzN)&=Qao| wa!K15:!? ?<9;EUbq{-G^w!<MWW<VZMr?&h=$(+( o]L9117mGQ_4}}Z5o:.%!1@M|WMc snrR]DF914!0149AP_d<~3]`@$Hh &+6fALL9S/W$Zajqy .BSdy{z|9O\dda:VQJb3utV9 (02}+aN D:4-(+l8KO/n}Y;@j  "-1- , ;L\itoaN;" '.%96ANEkA3 ,Gs\Nh"s|x`QF}>k3W/@1!7@O`|pQ+o]\D)2Lf $|0qBeVWcIh?p=|;627?GS~avnpjaXNMRas"4HT\\Q*<E'\olJ) /?LQK:i#WICBGRb`@o~d%R=>W)s !+8I]nys\J@4-%    %=K-NCKUIcEoA8+'g?J[0zrk_QA{6R1%1;LasY&/sXqlbK11DZp}s#l.h;aG[UUcVnVuZzY}VSOwPiP]UQYF^9h0w+($ &7Sl+9@B>53K`stV: %BYdhkaHjYPOvUSd2x1uIh_ZrH5'!(**,5BOXxdlv[I713774, !>Q$WBU[NoB~6' fC*$= Xxpb\V/MLQ]vqU/=k|iL+, <K\cfjnpnf^#_2eChUjemooqqlr`nRnDs<{9}9|4{(y{  !;Sj#,7<<6-5L]k}mWA/%Fe}hDn[RtWOe1y1P{gou[}E3($$(/30+(/={Lpagv]P@7564,% )5 7)0F(^ lx]C.-<Rr{l`uYSU-W\cnw}S- 5\~hT@)+8@ELRW`g i,i9nIsYvjwzvvutsakQfDf=k:n=p=u9- &5FV g{4HZl{{]G6)5 XywbI%k_`hau;6PngX~@+ #0CXorcP?1% (0/ %%@\s|dP3HNU _p"4@GILS\bxapZjQfEf:j2r+}& $6Np)Klyl`RE4  ' F]jpqogU9mM, ,>}JlRVVB^3g&r !.:GUgj{P=1)$zsv}"'***& 6f|c O!@13=%Lazqb]airxX- f#;7HYhsnR8&+= HLQXaq$8GQZsbkdkbk[kSlJwB:751& %?^+GblzVD3% )F]mttpi\G/wN" &w)`.H74B'N_r ,GyaazM:,*,.158:9;ANX^_TD0 HriP:+*!<Qgvuz f< &:`G2O QUZh{ucTH>4("(+0<N^lx'7CJV~c}q}z|~|}yrh\TJ<-  .Jm |j3YHH]:s-  9N^jphV<!}$E.5;>?a?L@=F/Q$[flq uxvtw~m/\EN`DxBDGGGFHOXet}ykV?* -Nk~n]J6%5LgyU6+L]gm[m'mor{gSA,)4<DP\ hr!|5~J|_zs{zuph_ P?)"6Rpwj_TJ >13#Ji"3JY]VRK: "6CFYG,IGEGnKJN.LGAEMUWQIA=>EQ[`^UG+7D/b.}28AHJHIQ`nstpeQ7 .JjlZK<)&E]s%q4QA(NZemop<qqt{s`TK<) %08@F J2NIX]fuuysj_OHHSh}l]Q>* =c)=LUSM>.)4?HiJAMPTWTjPEJ+ECB GIKIE?8447:<=:5(+@&[)v5ES]ceefiklnngYF3$#5BMrW`cHn/4Oalx/k:RI5Xfoz].w_I0 (."345C?WTlnvg]VL;' (D^{!(0/( $1AR`ffgeBeb_\WmQFJ*C>?@AAB>4*!,?&W5qET]eggdgpwzyseQ;( {s"g2TC=[$v ;\nvuwy$.9xGdZSr@* c3uV7 "9K X_'i=pN|avuhg}kopcqYxN@/4Nl  ,?Sfppmfq`HYTNJyKELKJINRQKC;1# '4ER%_2i9z@EHIJPY_bdd\P @. ~2nQSv29Ymy|~{p kf,f8e?eCcNc\am\|N8Q rN-$*3?N] gol"m*k4qFuY|n|k^[ydm{d^WI6 'C^z':KYbluzypbWW"OHFFPF#EEFINPOLG<1&  /9BLZ%e+v3=DHJJN ME"9&0$& }z0A{UqiaO<.(%! 7J S Z[\%W2[C[WaddqhzcbcbWE. a-`?.$$&),6;<?GQ$Z+b2f3l3o;rGvTdvm]UTRSSxUyTSW[`_[RG<1+*I$cy(4@ISY[\^bfhe}]WO)<+$'s.H7!>?80,0<HNPNE 7' +:H#Z*l.18AIOSRMF!;/ 3?HNZg~}l[J=7,9=BEOKVJYO]OgUuVUNJE=1yzTx,~p`YSUY_``a d ikq{+7EWk} }ob\VPLGCADGNXelleYK%;80K'a%w&*04;CO_mw}|tjam_[]EX+OA0"q R :$  '298/!!)6FYo&-23/"{uz)8:::BSk|vst>xRbinlkfcZOB3 {guCq$t}wh]]cku'17?IS[fpwxvoic_SE9.&$0>Obryz|}z w%s=pYlvhghhnty|~~}wruif^WOKD<:+/#jG'#&)(*/696/***:*L*`+n.|.' sgdgs&5CXt F_pw{xsnmeXF5"ske_UObJFL*U eykUJIIMW n+4;@DD@=AHOTVVOF:4/) %4CPav;^s`tH^4H 5%{X2 ',,**/*I&_!p{unjjr~0F Zs<\}{oaQ8"~reYRLK{L`S@\kxl\TOWey ,0/% ~ vv0tAqPoZrewv~7Ww|`y?]"J@9/%wV9  !8Ur{tmd__dl%,201A,\){(*)&(8-[0u,# ziXH4# zm]MCCM{YZh9zxsx &*&~q p#q?s[qrsw{yy{+Qrw_AteZJ:*uY8/G_p| yka[WZ`m)19ADA%:B8c;DLS\#dDecaTE2p{]jM\?Q,E9348@LwX^eHo/|!%'(% wrr9oPgh_{abb`ehmr+FajW@"|kZJ:'fL/  1 D$N*T.[*h!xwlb^[ZZcx .>IQVZ]*bDdbddhq{=V}kk~O0 qVkA]1S)@')'*1;BGOwY^dFq* "(/4785-u9mOd`\lUzTY\_`gu:UmlL+ p|azO6x[A( +:C JR\fmu|rd`gr}(5DS_hlk4fOak]_govx"tCf]Qq6w\J?s9`9N=>E/LPSV]hwiL0| !u=eSWaLnF|GINSVZdt&Cf|_H3rX@'_=1.1EaxuZ@8BQ^ h^&-9GNS^nu|O62CbaV{ )$&8Zp5[~ ?lYLo~aQD& y eO3Ej|Z53A</{`D1;XdVXsJeg]WYPXcUsS|X^fr5KbvwMqdnwnN, fE & !$ ?fh%%5DT{bpn~##">QMOQY]TVfi?Y^iy  w7[LGb%q|d4+Yj{O1^C) *'&8T~_rle\UPtQf[un'3> JU`ssO1 bA"iF$1OfgG.5BLE3 ( 8I[m|~u $0)(@&OJMmJQk w*cDXZEj1v `@<OanvtqtP~.v \GA:9e5K,15S ,w5u4x')2w%h9_PcPpUs ".&=HWdr|Q-~[8zgG1% 85%1PenhYH1",G@ ,;Qi|xlxusrqu|"-40,-;BcUhy+y=3M^ppfj]aE:851$~dGLv90+# ?WVA>Q=uha_cif_\aBn_lnp %7K\n{`F- {~{]8vot~ubO@71, /OadYRXu_ F3*< Nbsui[}NwGyJT_iv&-Af(8Nh~lS:QVNk:1%nC'sP"+4^viWd@D.H!qNykI% zh[WVVRTV[6a>mD}Vu(HhN lMKui]dCP%P jwmYKC@@<1#5O}}c!M4=O;g6z}|wjj[RNCCDUix+n5 |`@P}Jy7mT]wL9! "iw]D7?B#o[NHCA ?C'G O+YIdfq9Zyc<k9%)u _!EA+dqaTIC:/Mo$u3sDN\ w {{kdZZIc>4*#"%0BWo'9AQYQOc~(@[u >Xcp9h,cF'I pmND^~xiV@*>gx}wgOFU_Dskr|fWNIHKR,Z?_Nflmosx(KmuO'lZD18X|vfL.jUG@:51/e(y !0>cL2^vqUWteUIDDEHP]j!u*:21Jn8Sn 1NYi0~sH)+\eF&a?*DisbP>.{ )LKT[ZD=ThQ !&&#  }to\MD@:!1;+[*h/a6g=FP^l|  "BdjEu[<!oX@. .MRTfj^ R[ f+W7*@KVasyqld[SPPT]fm!qv&<VlCim$G>Teytjjyw]>[75KbcvbdlSzB5' !+& $))&11 !(-,,*( {c M 9*!)7=EU#z+19CTn !5{MWf9*# pS0 lXA0#'4 +2A A+'41>,DJS]iuzreT?0(&+4@ L5W`_zn~<cubR'6HazwcJr(I;?AJWlaY`Ia8t* (2;AEHKMH:# gJ1 +O fs$/=Ts 2{IhfO@BNQF511&}eF%vt}|xxbK8'# #'1:=AITalzrZ?% .&D0j;J]u 0XhE.7-R+p*&$ )/52!weJt+I ;>?>;jLPn:z'  $2?HJIFFC</pV=& %Ft %:Vr#,EZqreZPF@5mP1zeKMdz{u|`K:.& *4?M[itr^J3 .Q0iD[l,Lo} w.lI^cX|ZX@*(@N<zdL7"V +3@};bEOlB6,&#$+.26;?ITakqtxyumbQ;# kQ9&$B b $;Xs'43$$8OeldfX<$dG)i KSUJ?H^xqi|]SK@4*%'/;JWclvts{hO5   2 [y.A^4Rp?Z}pmeaUH;8x1h TB-jL;00B[hiiWsJA<50*'#%-8@FHHyNZgq{zobUC0v[?%6Nk/J+hDG:-" 7McugJA6oZD,oNA:21?Wwui_UMD?=>CNZepyq_M>2)#F{,>Tm  +(M o  =TfnwDvaM=+E&$..+8Pycms^PE@<::8;@CA@?vGtTza|kqtsuvshW?&{ kT<()X #>\3x_ugF--/(:PfzmP-}hU@'l WF-'?Uxbf}SGEC?;:>BGNZfqscfo~zx~tqy}zy|hYJ?6.('#P!v$.9GYtEck>[]Bx2(!7IXbgKt2{{u!k.](N;'S- (;KQ}ToUZZCi0$")18<:9:AJhUU^LeMkVlglzmlyhp`oPm=]$O ZyoZF5'@l %4JHdl~fD'0Icw{jbM'~p[C.jQB3$x)g;ZYPKKNSY\`dksXDJWdnrme__bflv~{~sptbVNHDBFG5EJBkFP]n 9IOU#cBm_iyS:(,9BJeP<SRP LD5  M#('#|!h+WBJkBBGQZafggijlzsj{c`\}Xx\rgiq]rQnCm3qvzz}|pcUI;-B$i%-6=DQ$aFq^jswoW</332 I]jrv|vcpLf=W-J;, aC6- udV-NQKxNVaiotuyqd\XX[cjeZSZllZM{Cq=iHQ)[Qjn}}|lbYM8.%?O^hljnbXVDC0*pVA0#{r@nsopu|xeK42CU^_blzuc}R~E<8x8j=hBzFHLPT/[TfvuCi!Bz`kzdebK.qS,|W57A|DsLlee`^dlt{xpmfYuMeEX?L9D96Hc|}uvsjbnsje\TP$RAVeXY\ e+pHzexymbZTPMB#.1<CIID7'~a@xbPGD<*!*Lswk`[]a^]hyp[KyCx@BFGHLT]fls.{\(9Lp%Bu``QFDJLB+~\4 ztx{nQ- 1K]l}}z{~n``fiujgjUo@u#wtsz w*oGhad{bbbf3nJ{U]dbSIGH DCA!5j@xU=:>8&(6DHHHUhn\PFCDJOSZcnt w,wIxiyxz1IWWV^+gLjl`WKGD?8)X"hPDISXUJ>-""3}Pyivsvp|lmpjcdv~hL, +rRepZTMIJQ^m)/)#&*)"(+&  }oV-Z9$%*/3789@JMA)!5ER hqd[VRUZ]^` c'a=^RYkVUUVZcq(4: 11%S&o7JQJ=-`)bQMH?=DS_zdqVm@k,k$n+q8w@?=9/(.@[riD!~|}2|Nmf`vUME>=CKWg| *+& jN0xWD:543.((6EI@71,*(%!  =)c-+% xtssqnlnnCgh_YTONS]ht~! ?Zo':E@-gCzy|wbZWTK~Cy@tFqKpKqGnCm;n-x :_`@"5kXYvMC<<?CFJPXbn  |_C' taL?AIMG=72+$"&)# 1D'U6cRnwlaN:' ~#pF]mND@@FQ_ju5Ncw )/+a?wolkljedco`a\YXQVGX>^6e-j#mou,3)  +H`r{[;mUAAl4,((+/49AJVdu pO*n[MIJKKKNRPI;)  #!-!:&H-R:[O_jb_UE3  4~Pno^QF>99 :AJ)W0d1t.(# 2BUh|s[@{!qjb[SLHD@>?@BFLmP[SKW7a!m} '( 0J^b^^i}p\E/ ":Q{k`H4)""&-5ALWbm{xmbZQF<"4!/'}wspprw{r~`SJ@1#*):9KGSRPWKUOR]NpMMI?2% !E_r~eO9#    0ATg%{*'  !7J]suoi_P@4'wh[L?2'!l-RC>Z/m&"4CC>5.()1BVi{yaJ+%C_v|`F2$".>P^l{vaO>,  (154+sdYRS\flvqiwZQMMLGCAB#A2>=;F.#4Kbv  ':N`prbQB4) xj\PD7+"".;GVuf^u@%(9HMHAAPq~hO18 WtdM;2//29CNWalzth[NA. zwv{|qorvtlbXPJEDGO$Y1^;bBbFbHbIdIkH|GGIJKGB9".EfrZ+I/<'8:CM[g'r.|,!  0C|UccPlBp5t*y!}}tiYNE>3(  !+4=|ExJqQf][oUQJB@FOQNE<3..?[{xdG$5K[bfloub}WNHKPX\z`lfco[ySH?4({uv}|yzzyurqrq o o1s=zHTZZVQKGEBD@9$/>&Vi~qhcbehlrz#7JZqealToHr>r5r0n+k)e'a#[YUOF>95/)&&').3;@GsPi\aj\z\dp|t2cHMN3J@;9<CGGGM~PwSpPjKcK_O]V_WbSgKnAw2{zvqmmqrnidaacjx$3=BB<98962- ',?Wq)9BIrMdQ\UW[Q^Ha>_/Y"OI FGJNQROLJKHEEGGwFlEgIkOwV_ixthZ K<(+8EIA1  vlfdfh p xvsojdZQHEGMT]hy#' ) '2":;77:FU f z"+039x@iEWHFK7N,R&T"USRS SUVWVUSOLxG`ENCGBKATG]Qi\yeozwk b]['Y/U:NDFN=T7Q,F8 +|vux|v^H9/&!"'/Sp$5CS^cb^_iz~_B/)/;HSX[\`gnstpi Z LBBGK P V YXQ%J4GBLLRUU^QdIj<n.rttqlfa`b{ftkwmnnkfbabccc/a8\;S:I7@260//*0(2&4#:%D)O,W,b)p)}()(w&d!D}ww~xrqrux}tf]WSRWbq#;PaikkklnpxgP@4.-3<FPZennf[TNG=3+# '"5-B8K@NGKPC[:h1u/-(  }zvtspjd_] ]YP!F%<(3)+)&&%"$$ %3?GNSUSK=- xonrw{|vf\VPLJIE=9=Ldz |si_[^d k x (4AP[djqwz|o\PF=:?JSXZ____eif\Q H=0(#&)'.'4'<(D+L/U5^8f:m8s2y*!  zq)f.Z5R?LIFN=O2O)I#> 4-(%')/ 7@GH?0"p`VQQPOMMOT[dnv {}{wsrr$r'o(n't))*(%!!4ES^gjjhecgo|wnjidYSQRU[ababhpsqlf]OFEHI(D099-E$Q]hs ~|(2u?dNS[De<j4l,h%b[TOKG>"4"*$"$"}ypdYR"K"H EDBBBEHKJGG!M&X+b,n(~')-.*"'F^ioswzzvvuspry|si^M<31.*(/:FNUanwz~{k*[:PIKWKdLqKE9,  ~z{-:IvUgbZmRrJtFr?p5n,k)e+_.]3X8R7H5;/+${y|{{}%|4s=h>]9R1I*>%7#1-*$   % ,7H`{&+,( =Znyyuuz~ul`OB{BvEsCr;s7x9>DLWfquvy{ z,rChX]kS|MGB@?7(xsrrtz$5I]~jvsn{f^VOF?<;;=>x=o9c2V%G8'~pbYW[aehmrvxz}z!s0q:q?nAg@^AY?S<K59-)$      ) >Ys%+--($/?LY iy  {k_P?6{0v'qpqv{ !&1=HS\enx'8}MxbrtlbVI;.! }wvyywtty )r:iJbX[jS}H=3-+-15640)"o VA*|q~jnehdicobsdwfzhilrwvtrpnqw '16y7q6f2\-O(<"(#)10R5r874/'$AS[bjnq|~hP6!{|#/<IVcr&|6zEyRz`xqslbQ>- }|=xTj_]dQhGn>r7u3z0012231-&yiR6}uo|kmhchdfifmguh~ikklmmopsu{ ,3887}2l,Y$F7( #*.023*8:=QCpED:." *:JSYew sV<*&/6:>CKT]flpsy)<O_jv{sjYC+zvuvy}~yp)g5_DXLVNUQU\UiSrS{QOG@6+ sY>}of`]\w^q`jcifljoktn}omkklmkmr nZB.    ".7@EG6IQJpJHE@9/' 0DXi!w$'%!uaO={,x#vw|!&)-3;DJNRVWX]k{"6FUamqrpqn_jKe:_%\[ XUW^iu +}1y:sDpNmVl\ldlnkvg`TE4%zV3~ukfgknswzxsrqqppsux{lU@2)%"*289-8<6J5X6i53347776567'8::J;X8l5-#{m_RI@9/,-.04:<;<BKRVUX]_]^gs{'|8~EOSWXxYnV[SFP2N$MNN QTY`hs~ztpoq#w+z2|8}={DvHrLmOhSdV[\QkB|2 zp^I/|vnhgipwyocWG:,"-8<;!7*09*K%b"x%(05:;=@GJ MP%O3MBCN7])lw wsolcYSNH?9863-')-5=CFKPXainnnpty} !7DIGC~>s:g7X7L8?:59)=B L[iwtjf dfj)p2s<wIyW}bb~azcqefeYjMt@x3w%nhd^PA6+whYNGFLRZcq}skgaWOJA6(*.%1'/3)A!Vn"*07:<>DLT["^'\.S:GH9K)EBHKA5-.0246752227;@AGQ\a_XWalw z{y)s1j1`,V!POLC8,&!,3= H Taoto nuy{}!-=LXfnrrrupekWdK]=Z/["YQD80(yoe]VVZdq}ymaXW]b_U H>737G[lx'.59<?AEI M PRQM#I*A46=)A =5 .$#-133;FOQRSTQOQWblvxmbW P N Q QH< -! .:EOXaksz~{si b_`dkqr&q6pGoVqcpfqeobjba`W[PVGS=O5F1</1)& zof`\[\^dkt}q]NB;2/59730!1"5!8 >H[n|'/5;>><=A CCC DDB>"9'6.200.+$(&$   $/6<>@ADJU_ejov}zsnhc]TJ@5((4 ?IS]ekoomlmnmk gede$f,k5t>|F~O~[|gxlonfn`n]mYkRiLhFe@\:L6<5-7 5/&xqlfdb`bhosvx~ui]K5$#-2.-2< J [ kw *28;?AA >::&<(<':*:2918%79= BEG GA:51.&%'(+5?GTfy{paRA2% $,4<EMUZ[\^beeec ba"`-d9jEqOuVx^ydwgwktukbYQI~DxAp>_<P;?925'3 344/'!  |zyumf a^^cltz}j\QE7) #.=Ri#,27873 -(&)++)-"/36898 99::999:;;82* %. 7?KU^hu{gSA0%  !,37=DHIJNUZ\`-e6k;l@mInRpZo]l`iggtb~ZSM~ItFfDXBJ@=901$,))*-254/)  !',-,'$$'v)i(_'Y#Y]cioprtmw^}RHA<6.(&'%%&/7?FP a u !+39=;5.(%!"% %  "%&&&'&&*19>ADFE A;$834B.N&Yakt}|cH1! *5?GKOU]g'o4u?zL}UzYt\naihfk`mYoQtLwFw?q8i2_.T+K&@ 5(#'))+,-,*(# %.4:?CC>866w1n&e]VPMJJLQ{W^]Jd>l4t(~&067 57>J#\%r'*19AGIJH@5+" !&,03345;DNTZ_#_,Y8PHIYCf<p4y+!v}`zL{8# )8DKPT Ya$k3u@~IPW_ipytqtho_mVlLjBe8_/Z'P C2"$(-27<ACA > 9 1'(15;@ABFGF@=92}(nbXNE<558h?LK6V(^ dmy"/;DJOPQYi|"'&',5?GKKG?3)*4<ADFIQ[fnv!z-y7uEoTidbs[TLC6) |orUl=j$l r{!.9CIN"R0Z>bJhTm]te|ims~yzsh\P}Ex8m'`O :$ &1<EMTWXTO ID>)64*<>= >ADGKQSQKDq:[(E1#~`H$40#;ELWgz,:CHKLKMVj#'/6;<90&  #.:FR[do{#1AQ^jux~peZPH>1!tdg[QT>Q-QV _m~! .9 BJT(\/c8gCjQjZk`leoosyvsj^N<v)fV E6& #1AP_ioruuvvv sph^$T(K+@034'8@JUZZSI>v.[>' r\G2�>!N(^.p4569=BDEH JPXf#x&&)/6>CGFA4 % )6BNZepx}-4:BOZdsoh}\OB3#wd~UdKKB5JT]cku| xpg\'N3@A3N%]ioni]J}4bL7' y dRE:2),5-B4R:d>y@CDCDIPRQT]iy&/7>B@:0 (  %-6BQ_my%0?M]m|}pcP;#~~kf\NR5LKOUZbjv &6AL SW[&a5gJm`psokf_XNF|=m3](N>*  %)+1:HVblu~ ~+r6eDUTCc1oxw`B!pW@) q ^ PG@<;#:15C0W.j1|4548BLR[clu$*,+'#   "-:HWf s#-9I_y~mV?)zjmU`?W*RMJKPV^j{'39AH#N3TH\[apa}^ZXSLAt7c,Q">+   #,9FXht}!1C~Pl[Uc=j$o laQ:eK6(tg a ^ \XPI)@7:F7W3h4w6::>BM[kz   "1@O_ o(0?Tor]G+ u_L:y+k_WQMLOV^ht$"038D?TDcFrH~HFEA;y4j,V$B2$ '4BP_lx%/9DOZsc]hFi1`P>,q\F3#zspkb[U$Q.J:BF8R._+n*|,5GZn~  ,9FS_m| ,:IUbsxhV?' ~pe]VG6w&lfda aaflqu| ):I*W1`5d6d5g2e.a'Y#Q F!;."   (4?KT_hqy %).38=>=:t<_:L68,# o`TG>4-})r(k+b-Y1R7OAKIGTI^MiWtez $/=GT`m'|6DMYajt}~xuqfhVbDZ4Q KFE?:775+!z uroqsw} '2; DK"O(V,]1d3e4b/Y*P%C$6"'"!#&**#)&))*+(,-./138?JU_gpz (130'n ]K7! uj]MB81{+m)d*]0^8a@bIeSi\tcmz !##%)/9ESa r)4BLTY_ca[Q|Hk>]5O0@+2*#-4;DKPSWXRD3#xtrsv{ '+/69:7 87761,'%$$#$!)$/'4+5.7/8.3-',, .149BMXbhpv}  reVD0 reYMC<ACHJKzEr>i9c4].V&K&@*33%>GQTRJFB@:-)08?FDB>>>> =;70*")'+/-2.30509-<%=> >=<:;?CHMRW[[]]acgkmp%o+l.h(c\ULD8)yrmhc^ZU}U}VZ_fkorw}  '(),-03<DNU+^8fAkLkYj_i]iViNiIjDh=e8`8X:O:E782+--//130+#  )5>FRZ]XUROF=5 1/"))#/14557;?DFGINRSRPNKGCABDFIMRV#Y$[%_%b%b!^ZT MG@8/$ |tkd`_acfls{  %+3D![/l>hKfTd]f^j`q]z][VQJC:q0h*c)T*@-., ,-.0.0- )  (3?KSX\_cgmlh]QF=3 %  1CGC>72:CCCDA?=@GH> 75')+,-7+?#@BCC >2$%"ypu|}xunY!A/><TKmSyQzHx>v1v!y  #$&+8@GVTb_gjnsgxYwSnMbNUXK`A\7P0K*A*C+E-B1E3D769,7+2'20+"#4DR`lv||tl_Q@.  113@GC@?@?622,!%+-,)(0 >B%E/K9J>G;G0G$FJ G6# x [LZ+v9CILID;-   0?K$W4aBdMePbN_G`E_G\I[I]G_DdAg?a9Y4P1D271.-&+($" %'    '0<GR\gpwyxtlaTG :0&  #}{{)~.++6=:3.1=EIHEA DKNQKA 71.2 9 8 1 $"(/59=}ADA=1$~ #(1885 7:?+E9ECFEJDQAX?a?hDjMiUaZVVNMD@82+&#"#"% * .3!80;;=@?AA2CFIM QVY\\[ZXTNI@5 '   %3=@<5138=AA7&(6AH"E#8$('$  !   #&&%%(,/0- +3%@2N=WF^LaP_PYSSVQVLS?K3?,4./0-*/6AIPT(X9YHZIY>U3Q/P*O&N$NQTUQNKJNQTSOF; 0'  &7AA>5./5=HND-#/&6,C-M.H,2)('')*&    ',./,'  !"!!"")2549,D:REXH]KcKbNRSBZ=^8a.a!][Z&YVUS P NNN$P2Q5N-L)I2D7>86<,9$0!%, ='@39=1E*M#STO#F(:1 ( 0;<>:~2/8@KTSF6/1 7;?"H%E*.17750,*'&%&$#"$$# '05861*!  ~|} "',6 CK/J=LFMLAO.N%L!MPUZ]^^[ZZZ ZYXT)P(L F%<044,8&:$7#/ ))/#H)Z-_2_<\FXNSVO]J`M[LQ:F%<5+ %15y8s5o,r%|*5DRWVOIIMPP"Q0E8/=?><=?@?<:;AGKLGA:0$   #&($  | vuqnp~}unkn s x ,7DLPRW[ ZP%?/+689?GMRW[_a]\\ ZVPLJHA(8228-;(9%8":#<'I,`-v-.~1y7r=lBaEVGSGMF:C!=4-)$ #+-3;64=KXafhe[T]b]RA)&,3;?A@@AA><=<:5222.(! # / +(   ~|yy}zy|!0BMNJNUTG 6&'08>DHNRVWXURMH EBBA@ ?:4",&&,%3';*B-P.f0//./12|2p3l:jC^HDJ+F?71*%!  &*.31.4AMVblk_UXabVF5%+048<@CFF@90*$ !## ! 7=81)  #! }~'8??CIPQKD9$ )29AMUXXSNHFHLRX] ` ^ YSLD%?.>4@<CNCmA>;6336u:d<`;d<]?F?0>!=<5.'  #!-;EJNTTNJJMK@, %+,03433452,'$"  $+/10$ "*.-,)'tlhjnpt$y.47>GOQL=( &.5;AEGGHIKNTWYYXWTMD= 6.&#4 K as $(*+z.q4n:hA_JOQ@V2Z&ZUNE:1+$ %6A|CzFwQs\u]|ZY_hnle]O>.%*.36<BHLMMLH@6/+&!'("*5:;:5-%~vqpnliijo!u&~/9ENOH=0% $,49;<=CJQTXZ \XRLHD> 84&05(<CWs$-6{<o@kBdDRC;E+H#JKIE?:61,&!%.29CKQ~VVPMPW\^\XJ6! %.257=@DCD@8*$%  (.20.)# {}wtuspl gi"o*x-|.5@JOPLF<0%"#4@GKNRQPPUVQG<3//1"3(3.08'F!PYi"&}+s.j/b.Z0S4J:>A.F"LU^bedd\SE;.!!-<LX_]YSLHHMQMD<871 "2@NTVQNIB7-$#  &/3665/*%#}rosy} #&"'3?GFCA<3& '6@FGGDEC>60)$#',//#...6.B0P/]/i*s'y&x(r'l'f(]*T+P.S1Q9HA:H1O.X)dmq pkbVH:(/=CMZ`XJ?<;>EMTUOC7-$!3=EEA81*)&!  !*4;<83)~tg`_hv!*(~zz&,/;LVQHELOE1"")-/00/00-*)+./.,++(8'?*C.L/V.Y+Z"`jph[SOO I&F,G6HC>O1[(g#u~ zqcVHA9/"  (4AHMLHA934?OYWPGDA 8+#!**&"  ,5<@?82,!}mf ^VQ\p  +;IUYWOJDB>#9'1&%%%&),-.0469<@?;#8-897C4I1L1N.L&KJMNG?@K!O%I)?0@=BK>[2f-p)s"og_WOIE?:2)  (+,1:BDFHHE@AJW\YPKE ;* "#   wm hgils~ zy-;DLTadaYUUT J :) "(08? HT\^YT#P*H2?442,0"25 9?HNPQSVV(W3T<QBICBF9H.IIIGC=:9;;9543531+# #+5CQYXTSXahlicYNB4!  "(0453.) } x$x'~'&#|$z%~&""2>GT`jquvtmd[TK = 0&"" ) /!8">DHPWYVO!F#;$/$"%$" !&2AP\^]^d&g,e0]3U8J<<@$E HJJJKNQRSRSQLF?4& *<O\`bbdefjqqi\PC2  !$%&)+-,'"  $+3:>?;72*",;JT]grwywsk_VRQNIB%?-;65>+E LU[^[ T H:-  %$#'2>F O\k#t(t)p*i._/O2;8*AHNQRTX[Z[ZWPG?6,';HKQ]ionopqonmkbTI=. !(,0431,%  *49=>><7/}%zv sv~(6ET`hntvvvurle ab&`-Y2O8D@6I)PVYVRLE :." #&*,-----/7DXg po olfWF(72-9$BH NSXWTOLJHD?9/"*6@EJQ\ba^]\YTOJB6 (!&'&$ $/8?CEEFzDtBq=q8q/r'ruxxy/=HR^glnqvx{~!{.o5d:]>W@K@9@&BF GFB<4,! !&+-,-28><99DR ^hs| ~+x5m@bHTMDP5Q*SVYWRLGEA;60$ *3<DIJIOYemokf_UMA3"    #*07@GLMKHFzCs@k8b/`%el rz!-8BN\ity z{{%{1w>rHkO`TRW@X/Z"YWVUTNF:+ +6;:878;>CF DB!C'J)V+d/n3r9n@eFWGFH3JMQRPKIGDA>7+ !*17>EJMR]irrkcW G7) !#$$"t qw !%'*/5:@DEwGgGXEM=C4:+9=HUes (19CP^ju )19B}IlOZSIY7Z"X SLGA:1+'#"(.5;DR^dedcdhj j'i+j-p/x4~8=@|DrHdKRJ?E*B@><82-&&-5:AGQ]kxs\B*"$"%+1 6<=@BEGGHxG_CJ9;,3., 08FWiz -:JXenx$08=AEsJ]MHO4O"JB6+% ,9CKRV[` ehh!g#g&h*i/m6q<uDuJoJeIZIOICH6I%GB90& !'-4:?HQZaejmrs qkaRB1 " '*-17=CGFDFIIGAy9e2R)C 71.05>L^o%2>IS \b'f4h<j?lBnEnFjHdHYHIE4A< 62-(" .BS`ksxyuqoq(v1z:ADGJMO{QqSgU^URQ@L+GA7,#  &+16=CIPSSMEAAB?8,  -8>AEIJKLONJC;41z-d)P&B!853 6:?CJS^kx&5AG LLJ(H/H5F9G:I;K:G8>422'-)&&((%   ,:K\lw}.<GOV]dgfe`zViMVDE?69#6 1*$  (3?KTVRMJGA:3,"   +;LX_b dec\VPI@70.w/f/X/P.I-E'CFLRX]ckqy$ /9CI!K'I+E.A.>+9'4#1#.$+&#%$!     %*.03;HXhv~"2CTamtywqkwbjWXMED4<%4,%!"-5>EJOU[\YRH;0'  *%174J/\(i!rvw uqkaUH?::;8{6l4^2S,K$HJQW\^bju  "*-146896.    $*08@FIOW_fls|(5COZfow|}}zusii\]MR<E+=84.'(3<BFIJKIE=2&  #&''6'F$U!cpz }{vphb[SJA9|3w-q&l gbXMDACGMV]cjt  "&&!#!"""!!  !!!&*/27;@IWer{$2?LW`iqvy~zu|n|hxds]iS`FW9P/G%>4 ' #%"""$%#!  %.5:(951C&NUZahpvz|yslf`[UNE;.v"mg c_YRNORTY`jv   #+3:?A CDFB<743115<CGNWd ox +6@KTYZ]}cwiuntpsstwsxnwdtWsMoCi:a.U#K?3% !   "(#3#="D"JQXbjsy~teVF4{!naVOMMQVZ]]`fp{(3< FR]bcaa_YUTVTPLJJLPV^f ns#y-|7}?}FLQVYz\tdojjqhwk}psnd[QwFn8c)VG 7& #.:DJKJHE>4-'   &-7>HQ]gs {k[J}<l.]$SMJF EGJOU^ekmr{$%6)I*Z'e"jmpqp mkgc_[YXYXXXZ]aehk loqr#s(u-w2x6x?zK{[yjwyurnha[UJ|=s/k!bSD3% '2<BFHE>83+#   #2CTcr ~sg^~UwKs@p5i)^TNKJ JKPV\dltz #"&/);)H(T"Z[Y VQMKKMRW\]\Z[_chmuz{ywx|,<JWeq{pdWJ<y.p f]RG;0(|xyy} %)-27:960*$"'(&  "#%$",?Qc u}rrhgb`Y[SZNXITAO6J+E!B? =@GOXfv  )%1,4336,:$?DHK NPRTVYZYZ]bejortuy%5BO\~ixvpeXH8)z qh^TLE;1& ||#$&)(  !!! !#(*-//////16;@CEFF@8/&.?Rds{~{wtos_sOqEn?i<_=Q?CC6G+L!ORV[bjr{    !" "$)19?DIMOPUZacefinu|%5DO{Ws]h`\bOcBc6a+]"XURPNMLMKF=2$ !)+$  {"w(t-w06;?BEGE?6#.1%=IRZ_a_[YWY^chkoxsmuasVnLgF\EPFEI9M,SYco{  )3:>>: 51-!&$" !'-13 3249 =@CFMSZahnuy(:JV`g~iohabU[IT=M1E%?;758=BILKGB8+  ##! } z {  zpie'e0n7{AKRX[\XR+J9@D7G.H#FGFD@;869@JQY_wdkd^bP^BY8R1G-=.25&=FO Ycq )7EPWZZXSI< . #')++*)**, *#  ".:BKS]jx %8HVafgh|flb`WULLBA85.&('+/37:=>=<7+zu uy !" {qga `c*j9sFR_lw}~z)s3j:]?PEAH4G)B<4/.16:CIMORoU]WLV?P5E19/*03 9ALZk}  ,9FRZ^_\U K @ 5+"    0ARbq,<GPZcec^WvQdJTEI?><49(666779:971'xmhgkr{ )05 641-+)(()($  zk_TKILTb%x6GVcovyv)p1i5`6T7F480.- /1357<AFKOSTtPaHN>=3/%$ $+5DVk ,<JW`efe ` XMC91-#((%,$-%+%((#.11+#  -=N`q1BNWZ[XTQM|HqAf:[8P8G<<@-CE EC=80' }ogehmt")/ 47877777775/&}n]N@9;FYp!0@OZfm pok e]VQL!D&7*)/4 8@ENU[]\yQhEV6F'91+%#$*3CVj/=HNRSUTQP$N+K2F;AA>B>?@9C2D,G&IJG@ 6),:K]m|,<FNRTUVTQNMzLoLdLWMHO8R&TTUSMA0}qhb`fpz' 4 @ J NPPPMID?;70' q^PIJLR[ k&2=GPZ`eg lnl%f'^(U*K/@71@ HQVYYYYXToLY@G/9/'$&()+0;I]s -8BGIJK(J1K7O>TCXG[H]G_C^=^5],Y"TL@1 )7CQ]is |$/8=????BHvPiXZ]L_=_.^[ WTPF9)zuux{*;KW]`` _ ^ [YUQJC:0& wniglt",38?GPW_de c^U"J.@;3F&MRTWVUSOFy9l+_R G?:78;?CHP\n'18>"B/F;IBKGNIUKZMaPfRmSoOpJn@i2a$TF7* ".;DMW dox"'+.15:@H|OmV_[R`Ec5e#`XPF7% (9HV`dfgj jgc_Y Q!F;0$ *29@IMRUXU M+F6=@2J#T[`a[SH=0$wm f`ZTMJILPW\eo}"$(0/95@=GFMQQ[QaOfOhPhOeL`F[>T5I(<- %+2:GR ]ix#(+28BM}[peckUnFp6l"dWI7& (6FT`glli d_[YVNE9 .! #,4:@FK ON$J1?=1E#KNNID>6+ti\SKHFGHJOWalz %"3(>0G6M<QARHROQVPZQ^P_M`G[@S:J2A)9/%   -9FR]iu#*06=GuOiT]SSRDK3E< 2' )<JU_hoqpnjf`[VOF=1$!/=FMU[^_!]+Y5P;D>7?(@=:60' te\USPMJHJQ^m} %%+7/E6P<WC[E[GYGZI[I\IZJVLQOKPEO=I5@*5* %0=KYc l&t)}/5<@D}DrCe@Z;M4>-0("" )8FQ[emqrpnkieb_YM>. /:BF JNQSUQJ?0 !!wg]WTPMMPV]gt )60@BHOKYJ_Eb@a;]8Z5Y3W3T5N7I;B=6?*=82) " /<IU#`)f-k.r/x.~.+*|)v&k$]!PD:* }|}&8GS^eijljfa\WSNH>. *5@H MSVYXTNH>2# zlc[WVX[_cku)1 80=CAOBWBX@Y=X8S5L2G0E-B,<+4*++.49<:5.#  *6A L!V ]ekruxz{ yri^RC2 (< M^kt w y zywqlfa[RF;0#%1<FMRRPNNJF>5(sjeacgms{ !'/59+<:?IBSF\I_K_I[EVAO<H6A0:-1+)* +, /48;84-&  % 0#;!HV`glp q psx{zsj]N<+ ':JYfqvxsl b]XTLE<3(  %1;BJMNMLIF?6*~zxy| &/6;?CHMR+W:\B[HYJUJRKLGHAB;:36+2 1/ 0148983,#  ' 0<KU]aef ggknlg_VJ;*  &2/A5P;\<f;i3m,p!qnh b^VL?5* +5>DGIMOOLHA7,  $0<HQ\fpv'v3t>nIfOZRONHIBB=;7/6$5677852+'#" $!.&6)@,G*L)O#W`fhgeaXNB4$)6C/L;ODQLOUK[Ba6b*c_[ UMD:1' #(08CIKIE<4)  ~~%9L]ksy| ~+}7w?pHgO_UUTNOHFD>C3B'@=<>>>?>=;953/+% &'3.<1B0I,O$TY^aeefda[SI;, (8!D,J7L>LGNPMWIZD[>Z7X,S"PMJD < 1' %).27<><<83+" %8IXchi!i%i)f-b/_0^,^,],]-[,W)Q$JEB?=;:81,%!  ,5=BFG IKKJHGEA<6.' ! /9#@+A2B9C>FCJGLIMJNJMGG@?78//)(#  !'.13576532-'! 3ETajquy |"##!~z uoif d c_[UOC6+"  )2 :@EIMPQOIC<61*# )17=C'H0N6S=W@Z@[=\9Z7W2Q+H&@#9#3!1/-(! #+15;<=:4.)$*6>FQ_ jt{~|}~ ~ } } ~ ~ }xqgZLA7.& '2=EKMLJF@940+&   $!,+52=8C;E;F7F3G0G,E)F)F'H%I"H FC>6/' "(,..-*)&" '/8?HR]jswz|~}|~ zocWKA70(#   "+4>DFC@>;840,%"!%'# #' )-49 >"C$H"LMLNSW] b!e!d ^ R F:/&!    (2<GT]fnvz~ ~vmcYNB7-%  %-24411///148=AFHFB=3*"!$( - 2 : A IPX_fl!q#t(u-p.g-\)P#D;3 ,% !#&')+,,,+(#  !,5>GNXbp| xne]TMD<2' !(.59=>?ADIOSVTPIC;0% !*6CP\gq!v&z)z+y,s-j+`)V&M"D>8 3-)! $(,036:>?=93+!  "+6AP_o{~vnd\SKA5( '08@HNTWZ_a`\XQJ@6+" %2AR `mw#${%u$n"h`VOID ?:60*!  %.5:>AA?<81)!  ->Paq {skf_WLA2"$1@LT\`bcdfhhe_WNF>7/% !0@Q`mv){.{1z2x2u.r*o'l$f ^SG=5 /+)'! {y{ !-9ENSWYXTOHD@;6.' .>N^n} |ti]N@1 %0>MYcltxywurlfa[SKD=5*  +9EPZekquy~}xpg]TNJF C >7/& wsrs ux {,7=BDB=9530+%#"# '6GUcr  xrjaUH7#  +4>JS\beda^\YTOKHC>70) &7FU d r ~wpg_WQMHB<83+" }oe_\]#`,e5k;u@DGEB=71+(('%" #5G[o ys j_N:% $1=FNTY\]][XSMLKJGB=82,#  3EU`g k l lkid^XRNMIH GFB<5 /$|k^QIEGNZ"g)t/241.)%! #%'$ $8K]mz  ~|{|| {qb P=' $2>EJNOQRQMG?:889975.(  !(+)$  (4<DHLKIEDD!F(I-K.M1N2L3K1H.H+E&@5'u`QGCBEJQYa%k)u,,)" ",58973-% +:GR[bhloquy !""zm ^M9%%.8=>:51../14320 /+!'."6=?@>;50( 4C?85 9 > I V`g&q0x8v<q<e<c9e8_5P1@*1 #s`\^d^SKMZ!l#!z{! !  '&  &5;::87?KS\ gr}%*.11/v.h,d*i$ki `M0y{%-355s5l4~33346787522 0,'/!77 ;FK>.$   +2CJJPR%W*`1i6g9c<e?f@r?y:w3s&eI -jG54?LZf kaTXp   $ / 20:JOIHJA1" 1@L W \ fpz#'*+,,+(% w`B*}|{t kXO%`),,.-*('&$#"!#,%6&8'4&9#N[TI NNG?7, %.8?HRZahpv"'+0|2v2p.f)X#F5 tkf`[TG89ET ^iu    - FI @ IZ_VLGA5&"1D V ^ [Y [ b p wjWA' yWAGYi nrss!t!!! -?:6?IMPSTOD81&  ! $&!&.$?"Pantvqmkk g#a%[(Y+X-Q*<&%nYRNKFCBE Mf  #/27 >DDE JPJ>5.    ' @Ym}ulhgb[O!M!PTTK7s`NG To  #,24 6!9<74 42*   #4BM PPPTTM GGL"N,I4@9<:967.7&5.}gRA:@OZ`g t (9F!MQTT QJC?A?6'   . I_e^`ifZTSU PC>I#Y&f'm'p%h"S3sfjx  ',"/$4%?$L!RPI DDA<5*  &430 9=6+&+97-,$4.87>=CCGCKBD?29".#  |vpmmr~  &-6%<)?(=&<CNRRL@3,# +% *22*&',)",B Xhp%m*b-N-2,%)($.56%$1=B"?%<%>!ACD D>2$   &6@ HLP&G-42.3/2*.'* $   ##' 2?DFE> 1)(*-*     3Pfppg V@47#@&E'D'8&&"   &*, 156882'     $;NX_c ]OF$F/G6B9=918&62 , '  ~ w j _`mu~ $&(, *!"& **%    ;[pywn^P PVXTJ<-!# #0 AC9 0$ux#&*14+ "   $)*''-1*   8M\fke][] WMD%>*5-.-,*3%;;1)"  x cX Y ^du  !""   %*,,( #AXed[PPX[TK F>4/6EKD < 4 -#      %$ !*.,)   &)($*>KV]^bffb]V K?9@OWOE@= 2" wu{  "(%  &*,,*('%)5==:<CKQTTNE?@ I O LFB=4*$''     '(!  "')+*)&# +36 8:?GPVTOQUYYX WRF 7 .+,*"  &))'#{|  $(,02431.")$$#$3=AGQWVYgrm[KC<1('$   ##!      !#"#*"( #$*0 3:GV\]bswmg]L>;<3    "&(+049>AA?< 8 1) "39<I[ioqsqjXG@<2  w w  &&$   !% $+) %4> CHQ[bkx~rg]QD7(       !!"#$ %')*+ + )&"$0;?CObu|zupgWJA=0 "       %*.4@Oaq}}ukb\UH6&    !#$$%$$"!    !#&*-,)!'2;DR`fda`\UPOJ9#  | *('% *1. "$&'/ >KUdu{xwuohbXF3)# &+022/+# )(!    !&+/120*)#168 >JX_ceg`TKIE<-   $(u-o.f.c*m% $'#!"%&" !&*,*$  %. 4 ;CLUaox|}xl[J?7/#  '|-v2r3n/q+z'# '/,%$%$  %# #&&$! %6IZdjopiaZTLC9/%  $}+w0r4j5a6Z3\0d,n%v  &,*$"(02+#"'*+,/.)"   $'()/9GVhxxodXMC7(  &/5q:h<f<i;n8o3o.s({ %,-,)%      /AWiw~yocWPNI?- ${)r.j0a2\3U3O1M,O(W"du !(,021./23.$ !$)-/.+&!  ->Ws~wkZLB:. #+05w5k5c5^4[4[2]1c/j,s&! #'/6 961-(   -BWhvrid`YN?0 $,5y:e?X?S>P<H9?6=1@.H*O&^ s # 09CIJD=88:8524564/'  !,B]xqbUH:-!!)04{8h:]8T5K1A.?,E-P.X-c,t*'#!"##$$&$- 48:>BC=961+(&%    4GXhxqaUJA4%"+6>DtG^HJF4D3P0`/q-+'$""  - 9ADFF GHHC<7663+#   +9GYhtzxhYJ>1% ".7AGKsLdLWIMDC?9<3946;4C1I/T,d+y)%# /BO UX\][ZZXROQVWM>1&  !7MZbkzvhZOG>2 " *048:<<u:m8d6\2X/X-\.b,i(v%$ &7GO PMKGDDEDCA ;/ "#   1AJPQTY_bb_ZQF9+  !,6?DHwJfJ[HSGNEIDD@A<>:>9D6P2_-q+'"* ;JSY\_bccb]VOID;,  2FVbhklnt~rbTH;)(06;?ABB}AxAr>l;g:g9m6t4~0.*%! '6HW`b`_YRLJ!H"?%2$$#!   (-27?IRX[[[VN? .% /9?DHMOyNiN^LXHVCU@V;V7X3[/a*k&x" "5ESanuwuqle`XN>,&7DKOQXaiotx{l[ H3!*16;?DFFEEEBA@=83-($ 2BQ\!c$e%e%b%Y%M%A%8&-&!&%$!    #+28<>BA;/ "+4<BGK}NrOhObMdKiGqDtAv>z:5/(   '3>LXcjprlcXNE;/! "'0<GOSVZ_emv||uolicYN B4%!/ 7=@DGJMNLJHEB?;60)"   , 7CL R%U*T.P/I.B,;,1-$./ /-("   "-6?EILMON{MvLvJ{IGD?:50)# $+ 1 59>CH I!G"A":2'  !+28?DHLQYaeea^\_`^XL>5 ,%(0 59<?@CEFFFC@;8641.+% $(''*!/(5.93865809+:$:86 3/*$   !*39>BDDEIL}O|O~MKHDA=84/*"   "&)-02"3&0)+*')&'%"$! '0:DNU~YyZu[t[sYtTuOzMLLKKJHC<2(&-49>BFJMOQPOLHD@<83.&%,39<94.(%"#(-147:=>?><73.("   #.7?DGJLPQRRQQOLGC=80(   %) +*(%!"$%%&%&$    &7ENTY\{_v`r_q^p^q^v\}ZTNG?72/.*$%+28>BGKOQSUVVQL D; 0.':@DDC@<;;:&8,12)6:<== = ;<<;973,$  }y!x"y  !)07=EvKoOnRpUuV{UTSOIC;3+$     !"##$")!- 145653 0 ,'! %0:DN}Ywcqjlnjqjpljocu^~ZVTPLF?6+  '.49>CHLQUWXYVRMHA%9/19(C!JOQQPLE @%<*:1670<*@%B!DC@? >=;94.$}wvv x }  %,27:=@C|GyJ}KMMKGC=83.($  #&).37;>!@ @?;71 -' +9EO~Vx\s]p]oZnZn[pZwYURNKIGD@<6/'%'*,037:=?@ACDD CB@#=.:94E/N*S'T&Q&I(B+:/64280<.B.E.H+J%KJJIF A<5.% %*,,,-.1359<?@@@BB@>;974321000 2 69< > >@ABCA=7/' $1=IRY\\[Y~W}TPNMORTTTRMD;2+$ $'+.258=ADF HJK$L/M7J=G<D6B1?/</;1<3=2>0@,@'@"@ ?!="?"@!?=:4 .& "%).36:?CGIKJKLKJIGD>;75678:;<>>?< 950)! )2:?A@=|9{6y5y5{5~7:<;9642136750*$ "(.39?DHKN"P&Q+R/Q2P0L+J%F B?<=> A D G J K JHEBA>81 (  '-27=DKOOPPMHFDA?=<=>ACGIIHEC?:62+# &+/3798642.("$).157:;;941//110136 :'=-B3E:F?FEDJAL=N7M0O(P#P QRRQP PSVX[\]\ZXSNGA8.&    !',15 9 ; >@BDDB@@@CGLPRTUUUUSRMHA;3*!  !)/6?HNQPLF@7.$  $*013443248? FLU]"d'i.l2o4q6r6o8i;^?RBCD6E)ILPTY\]_`bbddc_[VPH?5+   "(+,+' !%(++-./05:AFJMPRSTSRPNJHEB<7/( )4=DIMQQNE;." !)17:<>AAADK TZ`djp#u'w)w+t-p/j2_5P;=B)GLPTWY[]_`abdc`\WQKE>6.& "&$  !###"#$%'(*,.27=BFIJKLKIGEC?<:71,$ &1:BED>6.% !(.269;?CDEFIO V ]cioqs!r!n j#c%Z(N,C.72+568 <@DGKNPRVY[[\[XTOJB<4.&        $'+/38<@BBB?>;961,$    '-48=CGLNQTX\^`a `abdd!a$['P*D+9+2*))!((( )))*,/4:?FJNRUWXYWSL D <3*#     ""   %,158;<>>><81*#    "+4?IPTWYZ\^ b gkkf"^(W-Q1J2C2901.(+(&# !%)/4:@FJ MOOMID>82,'#    " " !$ '('$!  "'.267864 1-(#    %09=>>?DLVa hkmllk%m+k0e0[/O,C(;$5!.%   $*29?EKP RRPKF?:50 -*($   "' )$))%,!/10. ' !  &+035763!0#-"* '$   $+29BJS]hos!r&n,j1g6e9e9c6`0X(O!B3%   !&*.39?EJMOP"O$L$JHFFB<4* # $(". 368963 ,$  "% ),-/01-(!  #-8BMYa df!j*m1o6l9h;d;^9V7O3J.E'> 7-#   !$ * /4:>CGLNONJD;1'   !%, 2#8#;<96 2 ,&   $ ( ) *)&!   ,9BHLQSUW#\,^2]6[8Z8U6P3I0B-:(4#-(%#     "%*/6=AEG H G E B=6-#   '.4 9 : 9 6 2 / *&!   ! % '(&#  *3<GPUWXW UQM$I+F.C1?3=3916,3&0!+%     #"&'))-+2*6&: >CFHGEB?92* $-39=><94+"  !%*+ *%()$,01 20-*$ ",6>FMT\add b[T'I/?47706)5 1+$          "&+.3&6,61563:4>3C/E(H!IIHGC?:3+" !"$&'&&1";ADDC?93+#   #)08>"A%D(B+?.91/4#5552,#(3=CGJMRW\bfe` X'O+D/50%/,(" !).3"5)5/655<6A7F5J1M+N!NLKIE?81'!'.4 9<;&8-34,9";; 95/)    &,!1%5)9-;1A6D:E=C?=@4A'>:4-%&0;FNUZ_cdfh jf_W!O"E": -    "',$/.155<<CBLESDZB_@b;e/c#a] XRKC9- (-037#6*3//4+8$;;81*#   !)1&6/<8>??C@D@F=G;H;I7I1F(A9/" #)2<DLU_dc `[[[[!Y#V#OE7'   #%"'+(5*?-I3R7Y8]6b5f4h2j-j'h"b\SJA8/$   "&*,!.$/'0(-(('"# !$((2.:3A6F6I6K7L5M3K0G,C(>"81(%+07<@BGLQW \`_\WRL C 9, !&)++*7(A'K&T%[&c)h*m+o*p*p(m&je_Y RI@6+!  "&'&$"  ! "$"#+#5'=-D4K8O=Q?Q?Q:P5M/J*E#>7. # !$(.4:@EHGE@;2*    $'&#%2=G P!Y!_dgimnmh cZQH@92,$    !$% %%!&*(4+<,F-M-T0X0Z1[.Y(V!SMF=5,$  !##$'+0368:;=>=;6,!   $% %%$*$5#A"J T\aeghih fb[TKD?:50*"    !'"0$9%@'F+K-P-S*V'U"TOI A:4/*$   %(*))))'#  "# "#")#2!<DMV^chln m lgd_\ZWQJB:1' #!+$3&:%A#F#M&Q'S&R!PLIDA> : 4-&  "$(),)#  "! ! !!$!. 7?IQX]abd c c bba^YSLF@:3-'!      " ) 0 8 ?DHKLLLJGDA? :50+%  "(,/1221.-*%   & - 4<CKPUY^c h kl k j fa\WRNIEB>80)!     ")18@GNSVXXWUSPLHC=60+&  !%&()*,-.-+'#  "! ! (.4<DMT\b i n r uwxvtplga[SNG@80%      "*2:A J R Z ` c e ged a ]XRLE;2*$ !#%'*.1332/-*)*+,--.0/-+)$  &08>FMU]fntx|~{uog_TJ@6-&  !"!"%(&"  !'-4=FPY`eikkjhfaZSKB7.%  "',0564200136:=><;852.)!  #+4=EOW`is||rgZL@5,$  #(,0552.)"  !(09AKVajryxoe[PD8.#  $(+/4:?EJORUVURNIE?93,# !-7BJS[enwwl_RG=4+#   )4<CILNME<1)! &-6@JT^gqzymbVH < 0 '   %/9CNX`gmsuwupfZMA5-&!  )3=GR] hrz{pdWK?4*$0:EOX`ddaXJ:+  !-7AJS[cjr| x maSF9. "  +7DR_iq{|paTH?7/'  ) 4 @ LXd n w  zn bTG9-#~+9FR\dgihfbYPC7* )4?JT^gpy xl^QE:-" !1@O\gr}xog_VMD;1)#!,6BMXbmv "#" ym` ULC9.$ ztrty"/:ENW[_a`]WRKE=4*!  $-6?HQ[epz xla WMC:0' !0?M]lywof^ULC91,% %,5=F O [fq { !""!vof]UNH@:2'~{{|}}}}%2=FOU[_cdb]XRMF<3) !(.39AJValt| |qh^ V OG@91)  !3DS`ksz~wpg^TKC90 ( !' - 5>GR]gq}  yqj e_ZUOH@80'|xxz|~ (5BMU\`ba`^\XTNIA80( #*2<DNWakt| {rj aZSNIC>81( "3CRbp{|rj`XNF<3) &/9CO[gq}  }ytolidYOF@6) ~}zxz{ *:GPVZ\[\\\ZWQKF@:3) %1@M[hqx~  z v smhd`^ZQID=0" !1AP_|mvyz{tng`WNG@6-$ & 19@IVa ipwy}} vpjec`ZRNIGC<5()4>GOUZ\ZVRNHB:3*"  $)/8BHPZafjmq w zzyw t qnkie^VOJHGD>7+#{2vByQ_lx}y|~xqkfc_ZUOIA80+&  &2=HPUX^jv} {wrpmonjd]RH<0$  '2;BFIHIHGE@:3+%    +5<BITak q tuuvy{| zslhegkmje\SLB4(%3BP[ezm}ruuttsplga]WSOLHEA;4,%#)2 >"N%X'`)h)k'l$n"r wyyy y{}yrkd]SKC</ !).03467877862-)'$   *6>E K P Xainpn j hjntxzxslgb[SKC:,  !+5<AFKOQTVXXXVURPNLLJG@93.)%$#####$%&*)5*=*E)K&S#Y`eil rx}|xrib^\XQG>70+# !"""#$!  $)1:GR\` ` bgnw}zwpe^ZXTKEBDA>4' !$&)-15:@CEFGGHHIIGFEB?;::;:;<=>?>=::8'501<,D%MWcl ruz|yuvtmd^\_\VTSTTSOI=/     &.4<HUbjrvqkjhd]VSSNIJPW\`[RB.   "$(,1579;>@BDFFDCBDEGGEB@?<950,&)!9HU^figfgd`XTRSPLMOSW\\\VIA:1)  "!!"! *; KZdghjkg^UOKFCELT\`_\TJA>93*  #).47;=?ABBA??>=<=>?>>>@A?< 82(*6 AI OUZ\\ZY[[YXZ\`aba^WSQOLE<1&    $&())&"+2 5;BHKNOQQPPT[_`^XPGABEHFA7,      '.37;>ADDDB@<::989<>?@@A?=9 2("+4>GPX[^afiihfc\TQPNKHFC><;:6-#  "&*,,+*&"  #/7?FMV_flolcWLFDC?<:9768><4(    $&)+-/369;<<::<>AEILLLJG@7/' !2@KS[dlqqnia\WRNLJFB@DKOJB<3'  "'+./10-*%!*6ET_fjicZQLHDA@<97:@EEA=5+  "$$$&'()*-137;?BDDC@<5.("  &5DQ\elnkfb^[XVQMMPVZ]^[SH>6/(  "$%%&&&%" ,:ITZ\[UMIHFDB@AAACKQPJDA<5/(!  !',27;=@CBB@=94/*# " ,7BLQQOOONLKLNLJJPXZZYXVNHFD<0$ !',146640+&! /;BCCBB>;:=A?<?EJLMNNKC<974-#     %,28=@CDC@=:5/(  %,3:<;=DKMNNOQSV[adb\WTQMHB;1'  $+169;;:874/(  )2432257:>CFECELRTRNJC;510,$  %.6<AFHHIIIHD?93-'"  $+.04:=?BEJOSVWXWVRNJHGD=62/+(%#   '.3789:;;:850)! &,/03689=BEECA>:9972*$    &+19@EIKLJHEA<70(!#&%%(-/27=@BFKOOLIIGFCDD@964 4552- &    $),16:=@BCB=:4-$ !(-/10/014456630,*'$   $*/5=ELPRTTROLF?7/' $(+06;>BEGGIOUUQMKIDAA B B@= 8 2,'#!  %,3:>BDEEDB@=94/( !&+.220-+**)(''&$ $-5=DHLORSSRNJE>71,&   $*18>CGKMNMLLJHGIJIGDB<710/,(" $+4;AGLNONJFA;61)# "(,021/-/122-($!  &08?FKQTTSQNKHD@;4.'   *6@GLPSSQQQQPNKIIHD@<9750,%"*07=CGJMNLHB;51*#  $,2786322341.*'"   *4>FLPTTROKG@94.)%!  )6AJRY]]]][ XS N KIHFFGGFB;60)!  !*4;DKQRROKD;3,&! &-4688750,+*)(%$! ,9CKPTUUSPJC;51//1220+& #-8DNUY\` _\ XWUTRONMLJGA:1' '0:CLRTTRMF@80*'&%$"  &,14541.-,,)&"  *5>EIIHEA;51--/24653.*$ )6AIS\bcdec`\ZXUROJD<4-%  "*07=??;752/-,+++--,)#"*16;>?>:520-(! "*/38::987544336677751,' #+2;FQZbfjkjgb]ZVQIA:3,$ %*.02577520 .-- - ...-+)%   $,27;><:3,$ !$'*-././012321110.,'#  (06=CLU]dimnmhc\TKB91)!   "$%(**))*)())(('% #   ").159<=;5.&   !""#$ & '('&%#! "&-5<DNW]_`addc ` ] W OE9/&  !! !!       #),...-.,(#       '09AGKNRUYZ Z XVSQN K F A 7 . $               &- 3:@GLO QRQ O K G B = 72.,+(#                      $+38#=&@'D'F%G!IJKLJ F @ <:840+ %!           &%.+448:9A8E6H4J/K+J'L%N#N"N!M"I!C!=!7!2!/ ,)&#  !##""!!!              $&).-51;5?8E;K=O=S<T:R;P:M9J7H4E3D3C/@,>*;'6#3.)$" !#&'(('&%%$"   "$%#"     !%*(/35;9A=GBLDOGRGTGVGVHVHVHVGVEVDVBV?T:O5I/C*<$620. ,($"! !###"#%)-.-*$  !!&$('*(-'/'.%-#+ ($      (/ 5&:->2@7D<G@IEMKQPTVV[W`Yc[e[eYeUcOaK\FV@Q9K2E*A"<:7 5 320122210/+&"   "'#+&-)0*1-302537383817-5'2!/)% ! #+29?D(I0O7T=XDZJ]PaTcYd]cabcad]eYeUcO`I\BZ;X3T,R%ONJG CA?<8531/,*&" ! $(*."1'3,406476775827/7*8&7 6531 /.-.-+(%"  !)19@D$J.N7R>TGWPZW\^^b_g^j_l^m]nYmTlPkIjCh<f6e0c+b%a `^[XR K D @ < 71*%   !#&&(+(.+3-7/90=/?.B*C'B"@?>=<< :8754542.' %,29>DJ!M*P4R;TBVJWQVWW]WcWgWjVlUlSkPiJhEh@g9f4e/d,d'c"a^[XTOIC;3+%      "!(".$2&9'>&B$E#G#H#H"HHHIJJJFC @ > ;841.+ & # !   ")06=A EIM)Q3T;TBUISPRVQ\OaMfJkHnEoAp=o;o9p8o5o1m-k+i(g$d#`"Z#V#P#J#D"?"9"4#0#,"'#    '-27<AEGJ N QSTTUUTRPKF A ; 60+'#     )06;AEKPT&V/X7Y?XEUJQPMVJ]EaAe<i7n3r/v*y&{"{zxurnha!Z"S#M'F*A-<0600/*.%,") &#   ~}~ "&() '($. 25:?D IMRX\_`ba^ZSLE?93 /*&!!#$&&&% #   $/9@FKQUZ `e#g+g4d;bD]LYST[P`KfEi?n7r/w'z }wqiaXRL$E*?/8318+;&>!?@?;82, (#~ $(* ,,,&)/$7 ?FKNQ VZ^adegeb^YQIA:2*! !% ' ( '&&%$ %09@HOUZ^ ad e+d6b@`I\PXXR]MeGlAs;y3~*! }ztme]T JB9 2',-&0!35554 1-("  $'*++*%'+%3!:AHNU \`dhiifb_[WRLD<2)!   %.5=BGKNT Z_"d.e8cAaI]QYZScMkFt>z6~,%} z u p i ` VLB90(#!%&&% "   "$&#%+$3!9AHOV\afilnmlid`YRJA8/' %*.36<BHMQU$Y,[5\>[FYNSWN_HhAm:t3x+|$}zvpibZPG<2'  "*18>D JPW]bgikkhd`[UMC7+! %*.147;?BDFH!J(K/K6L@KHGODV?]:c6i1p,u(y#|}|zwrkd\SJ?6 , $!     # +29?FJOSW\_bddb_ZSMD;2)!  !).49>AEEEEEDC#B-@6?><D:I7O6T4X3\2_0b-e+f'g&f$e"a"]"Z"V!OIA90'      &/6<@EIMPSVXYWUSOLGB<71+%  ")/4:?BEEEDCB"@+=3;<8D7K5R4W4[2_1a/c,d*d(e&e#b!_\XSNID?91+%   # )06<AGLNQRSSROLHB<71-)&#   "*18=AEFHFD B@= <%;,937:6A2H0M.R,V*Z)](`%_"][WSNHE@!<#8$4&1(-+)/&1#31.+& !    # *15:?DINQSRPLIFB?;73/+)'%"! #,28<>@AABBB AA>%;*:0755;3A1G0N-S*W&[#] ][VRLGB>:64"/&,))+(,'-%.%/#."+)%      $&())'$ " )18?DHLNNMLIE?:8520/-+(&#"!   %.5;@DHKMN MMK!I)F0C7?<9A5H1L-O*Q(S'U$U TQNJFB=:8751/,+ ("("'"'!%!#!  "%'''%$! % + 17;>@A@@=;7531/.,*)&&%&'&&$!  $*/47;>BE GHHG#F*D0B5?;=?;B7F4G2I,J)L&L#K!IHFDA>;:9876652/-*'"       & +.134666543310-*('''(((%"   %(,049=AEH JKJ!G(E/A5<97;3<0=,=*='=%?#A"C C B ? =!;!8 42100.,)$!    !#&''$ " %(+ ./245888542100/.---,+)'%!  #).49>BGKNP ONK&H-D0@5=8::7<4>1?.@,A+@)?(?'>&=$:!8642210 . + ( $!  !&(**('$! "( -1356776531/-*)&&%$$$%"    !&,16:>ACDED CA?';/863;/>+?(@&A%A%A%A#?!=;853310/, ) ' $ !    #&)++*)&"  $'*,./11221.-+*)(&%"    $(.49=ADFGFC ?<8#5+21.6,9(<%?"@AAA@>=;98530/,)&#!       "&*,---+)$  "'+.//0////.-*(%"   "&*/49=@BCA?>;85 2'--)2%6 9;<==<:73 /, ) ( & $ "           "&+-0110.+)&$   #&)+---,*)('%"! !  &-378::<>?ACBB ?=82-!'&"*.011 1 0 . - , * ( & % % % % % ' '&&%$"      !#%')+-./.,*&$   !##!  ""###$!  ")/37:=@@BDEFFDA =83/+ &#!&)+* )'&$"!!""#%(*, ,,*'#            #%(+.03567530-)#  !" !#&')(&$"   #(,05:>ADFIKLNNLI E@=83",$%%%#" !!"$$%% & && $ !             !"$')-034332/,($   "&()***(&$!  "(,048<AFJMPOQPOMKF A91( "$&)+-/0220-*&#      !%*.1478888874/)!  #'*++*(%"  $+16;AEIMORSTSPLHA90'  #'*-02331/-)'$!   $(,159:=>=<;:851*" !$')+)(&%"!   $(.48=AFIKLOQRQOKF?81 )  #(-2466530//-,)&"   "%(*-0368:;<<;950*#  !""#"##"    %)-169<@CGJLNOPOLHC=6/'  $ ),/112111222 0 /-,*'$     %(+-0369;=>>=<:72*"  !"#%&&''''''%!   %*/48<AFJORTTSPNJE=7/)" %)+/14666 5 43200.,(#  "&),0358;;;961*"   ####"! !!      %)-16;@FKNQSRQNKGB=72,& ! (/5;?@ A AA@@><84.)%   !#%).38<?@=<963/)#   "#$%(*+*'#     !%*05<BFHJKJJIGE@:5/*% %+/2 6 : = @@?<962-)#  #&*-03677665530-&   !%()))'%     $)-27;?BDDDCA?<963/-*(('%"$'!.4:=?@ @ ??=<84.($  #&*,./0//.-+(&$#"      "&*-048;;;:8776655433 332 .&+*&,"../12 45431/--+)&"   !&).474/-,,-//.//.+&&'%       #(.32/-*'(+,+***(%%( '" #%!("* -/1 3333334443 1.)$    %'('',0112/*%! ! "&+.-*#     "&+..0/-,*))(%$$'-3 8 ::53/( "$ '),-011 10. -*'%"  $+.0/-*&#  "',-..,*($       #$%#%),,+-- ($! !%),---.- -,,) &"     "#$###$"          !   &*-*$ "%!'"* ,--+ *(&$ !   $%"            !'++'" #(-/.'"!%' )%*'+&+!*('% # !     $(''+-/10+'$%), + &        !"$,5:8 3 .-18>?;7 /"*$$%#%!%#   !%*/10/./6<<:73.(#!   %(('&(2=FJI F A;543.$     "$+6@EGJJHEAA>4)!    )5>BEIIGDEGC 9 0)   ! !!""###""!   $.6;=@CDDCGFA81*        #08;<<>??@CB@;70)%#   !"$%%$$"!   +1247877;@A>;962,'$"   !!$$$#"!""   &+/01138:99:<;:9963.) # "$&'()++**))('%$"   %''),0445689778:97651( !"#%&'((''&#   "(,///159<===>=6/,+ &   #%&'()+-/234311/-*&"  !(,+*,/257;==<9740,("  "$&'())('&$"  #(+07=?==??93254.$    !#')-.12456789:9640,)%"  !(/358=CEDBAA<71*#  "$')*,,-,+*)(%#   &.37:<<<<@CC>82,#  !$'*-/11322221000.-,)'$   %)/5:;=BFGGD@:0&!   !"#"#""!""  !%*.26<BHJG@6-(%"   !$(**)*)'(((('''''&%$!  (.48=BDB@=93,'$!   !"###! &0<CDB@=61/12.)$# $##%'))'!!"$$""""#%%&&&')+++)%!  &-134642/--,(%##"!    "#$$"   !(-13210000/,+(%# $%&'&&#  !$&(**+*)&$!  !&)+,/35631.,**-/0-'"   "(+.0///0121/./ 0/-,+*&#!  #$%&&%$$#!   %*-//.-*'''*+*'%#! !      $%&''&&),,+, - -,++,--,($     !%''()*(&%')*('''&''%     ""#&*.//.. 0 0136653!0#+%%$ $"      !"!""&+./-,)'$!    "$(-2 4 6 8 9;;98631 - ) $    !#&))*-121/+'#      $'+.1135765 3"0".","+")!'#     ""##$#" #&'())+-0 0 . + * ' % ""!   !!  ! $ ')+,.0012 4"5$5$3%2%1$/!-+)& !   #&(*))'%!    !#$ % ' '' & $ !   ! #&')*+- .#0$2&3&4&3#1!.-,+(%!  !"$%')**)&!   ! $&')+- . .-*'$    #$#"     !"#$!&$&&('+(-'1&3%5"66664 31,'#  !$&)*))'%"     " & ) -/01220-)#       !#&*,/159>ACD C@93+%   "#$&%$"   "&*-001/.*&!        !#&+/368:976 6 53.)!   "#$$#$#!  !#')+,-,-*'$!         #%)+.13688741.)& $"    #%&&%$!  "$')+-./1110,'"          !$(+-//123420,($   "$$&%%%$   !$&')*-...,*(%!      ! $ &)-146676431.)$   !#&&(()(&$"  "%(-035532/,*&#       !%'(****)(($"     ""!  !#&)*++*+*)('%!     "%%&%#!      !"""##" "#$#!      "##$$"     !#%'()+*'$             !#$#"     #&(**)&%#!         !!!!"#$%$#               !#$$######!         $&)+.//-+(%"           "'+..///.-*&!      "&('%     "%')))&$"  !(-3676554430.*($"    !#%%%"    !"$##!     "'+.03310.+'#   %).12332100/.,)&#   "#"!    "%),/133432.+'#  #&))((()))*+--...-,)'%"    !"#"!     "%(+.1333431/-*&#   #%(*,+*))(&'''%%&''&$!     !!"!   !!   !#$%&((*+./111/.-+(&#! !%')**(('&$"      "##"#!       ""##$%%'(+,-/012111/,)(%"    #&'&%$$"!  !"#!      !#&'),,,+*(&$   !!       "#%'+.268;<===;:851,($! !""!"!   "$$"      $(+-01210.+($        "#&)-26:>@BCBB@><83/*%    #&''()((&$"  !&*.245789974/+$         "#%(+059=AEGJKKIGC>93-'"   "####$%&&&%$#""!   $*.37;=??>;851,&           $).27=AEHKKKJHFC?;5.)#   #&*,...-+*)(((***)&#  "',0369:<==<:73.("   "$$#"   !%*/49=ADGIKKKJHEA>:61+&!   #',03688865200.-+($  #&),02579998641-)&!  "&(,,--,)'#      "',159<@CDFGHHGGECA=:61+# !%*.369;<=<<;963/)$   "'*.0347:;==<;9642.(" !#%&((*+--,*&#   $*/49;=?BDFIJJJIHGEB>94-$  !#&*-1469::9742/-+(&#  !$&'*,/02457887630+&  !#%')+,-,+ ( & # !     "(-168;>ACEGIIJJIHGEB=70)   !#&+/269;=>>?>><962.*&!  $&),/1345778::9840+%  !$'(()*,. 0 / -)&     "'*-1369:<=>?@@A@?=;73.&  "&),02579:;===;851-)%    #&(*,-.0012221/,'!  "$&'()*,-.// / - * ' #    $),/269;=>@BCEDCA=93,$   !#%(**,-0369;=>> = < 9 7 41,(#   #'*,.012455531,'"   "#&') * **)&$      !%(,047:=?ACDEDC?<81)   !"$&*.379:; ; :: 9 7 3.)$  !&),0344432/*% !%')+ ,+*(&#      !&*.259=ACDDFEDB?;5.&  !"##$%')*-/25 8 9:98530 , ( #   !%),/0///-+)&"   !"#$%$&)+++ + )& $       !&+159<>??>=;:73.)$ !"%'(*,.13689:: 9 8 6 4 2 /, ( % "  "%')((''&%"    "%'()**+,+*(% !      !&*-03589:;:8630-($  "%'*.1479;;;:: 9 9752/,( $ !   !#&'())'&$!  !#%'))**+***( ' & $!   %*.269;;::9753/,("   "$&')*,--./123 4 5 420.,)%"     #$$$$#"!   !""!!##$%%''''%# "    "&),.012210/.+($! "$&'('''')*,-////0 / .,)%!     """"   $%%&%$$##$$%&&&%$#!!        !$&)+./0//--+)'#   $%&'(())))****+,-,*' $ !       "%'('('&%%$$$#####"       "$&&())(('&$#   "#$%%&&&&((((((((''%$!             #$&&&&%#"! !!!!!    !""""""!  !$&'''())*+,-,,,*)(&$"     !#%%$#$##"   !$%%$!    !#&()*+*(%#           !$$%#"     !$')))'%#! !!           "%&&'&&%$"!      !!!!  "#""    #%'))(&$"      !"!   !""#%&%#  "#$$$"" !"#$$"      !!  !"!!    "$%$#!      "%'('&#!    !%'**))&"       "'+.010/,*'$            %(+-/.--+($        "(-022320-+)'&$"!     !&*,//0/.,+(&$"      '+0356677542/-)'&$#!     !&),/111/.,*(&$!   "',158;<<;:730-)%"       '-259;<<:852-'"    $*/69=?@?>961-*&$     %+17:=?><940+'%"      ',26:;==<953/,)'%"   "(-258::9853/,)&#"      !&+0379:996420.+(%#     !&*.1456532/,*&"     #),/2344210.,($!     "&*+....-+)&#     !#&'(&&%#"!     !####"!                                                                                                                                     !                    "#%&&&&%#!                    " ' , /1220.,($     " ##"!           ! %(,. 1 1 / ,)$       "#$$!            #' + . 1 1 1 / , '"    !"#""                     ! %(+,-..,+)% !  " $%&%#                "$&')(&$"                          #%&&%$#!                          ""#"!!                ""       !"##"                     !###"!   !!!!        "# $ # "       $&)*+*('$"           !     # %()++,+*(&%#!            $ '*-....-,+)('$!              # %(),,---+)(% # !                         ! $ ' ( * + * * ) & % $ # " ! !                                  !""##$##!                                  !"#$%&&&'''&$!                          !#$$%$"                   ! # ##"!                                                                                                                                                       ""####"       !!"#"#"!     !#$$%&&&&%"      !#$%'())))(%#     !$&'())(&%#!     "$%&&'&&$#!     !"###"!      !"#$%%$$#"          !!!!!!!           !##%%&&%$##"""!             !""#$##$$##"!      !!                "%&')*+,,+*)'%"!     ""#$$#"!    !#%&)*++++*)(&$!     !"""!      "$'(*+,,+*)((&&%$#     !!!!!             !#%'())****+))((&$"             !#$&()+,-,-,,+ * ( % "      !!#""!          #%&)*+--- - +)('&$"       !!!"##" # # " " !       #%')))'(*- / 1 0 .,)&"     #&* - . . - + )&$!    "$(-1578887640-("     #%&(),-...,)#     $'*-03344430,)'$"    #%(+-.,*'&$!     !#&)**+-/11/*#     "$&)**)%      %,14551,(&%$!    "&)+*)('%"    "(,..,,/122/)#    !$&()(&"   !!!    %),-,*('(**'$     !$ ' ( '&#    #%&'))('&#   !%*.10/-*&#!    #% & % $ # !    !$'(*+,+)'%   "%'((('&&$"   "!              !$'*+,,,*)'$!    !#$$#"              #%&''''&%#"       !!             "$%%&%%$#              "$&()*))'&$!                  "#$$$$"         !!""""!!!                ""!           !###"!                    """!                                                                                                                                                                                                                                           ""###!           "$%%%#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          workrave-1.10.50/frontend/common/share/sounds/subtle/break-prelude.wav0000644000175100001710000241405014221624107024713 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata  3uQ[}IBL:/&W#B %$(?'f*Bp`#1 "WB#0M%w+A3{:   I=Y ( n  8 Vfu;RZ]I}[Y 8 $<Q:'x%nM WQIX/<h ct ( f ZvY6 I5zs! xYqakFOTgXoBNE0]_/$A.GF|([t?,EgG@__fj}@bQ(/ "B@ {k,'.o6wcdW4V\C-8R/F)(p\ ]| E]A4B66hdq8IR<2R eQN1p9t&AKb^nEBgm0 %b{Q0cQsY:)V]n._'8oLd @(f~'xa"Nf_`tV0z-]e,/ g8v#EL(fT'|7; vUBEQ86E#aq6#REG?pd1Z/~C $,p7HM2MO[8  : #ZVjh ^Db!/B R4"]>ccrnlL e_Mo5kX26J* qH][h=Z/,n >`k9|BBWn,B{8RJH` `>0e;%}C?\J)O-Kr0+ iL 2 K,m)b1MGF#qF qrR?'QgPkmS0 w]Mx  Tz%E+EEXrMzJG,{L*oum k  4G %S%*GY[s72Zz R^T;k1d "8Nq:yBG%p.+A#?/VHN)I*yRrl }8GkKu>lmlgP%L!L69Xi wP]OV\%9{ 6%n-m?&p2  sUF/fLpmXo #I4!nc j @ ~ &I:*3Zn-{i@ g JAMd3O*h=_5Cc N h `V\q$<|&YON4wY:8oS)e,YLy\2WWqlqYc?pC/vN}nV d 3~:7Mn#fp*r/]~Hqc*C6L2EJLgK)cS0_ r #YX\GAJ$Sb #C R g?%sv+ o^ n   Zgh:$Lua -[`a^B W* D  <2? y `n|  !53wOBA&\8:fB5xWj.b;mASFRz]RK B s  )(m '^3  &[''B3%C(>2PQ]=buv#8`f|9.bfP. L 9Z ET\LePyunc~+TiN R  q-8 z RS V,  !E4 sh Y TuJq~ ocqS  P 4A)!dp[_<uk*w%dM! }A}bmwV+e] &Mk[}nIEbYxV8k 0Qq8   ;? 4:7@73+I)=W1#C > %Lf3e5B{?)Os'OiF / , 8  7 |T?[[_./:1 _2 R 3t[k)7Oghl_ |!  /L   7  /h Qb@n}r9,p*i pQ U I\t+V#d'r\d"{XQ718mrJy%UC`O7kXU",::9B12Y= voGTFR=:j(n1 3 e  D  _Cz=TQEP]\uo)7rC%F/qu[` b ) ? ! q u Bn#Rnv krm +b??!vW@U] ly B ` 7 &|  :" *& ( 9 Wl}m+tO6'=:QH7V)Z\,9-f 5d{3]V&us%9Mk*EZN3Hk#zn_ k  j 6\ qm=FWbtj`f5`qP6@?9V(/=8lp 7CM 5 M  G ;  1F&#2A(:Ced i  xd m^ KgDkkYAu{T   G   pk&` tnjo^aq10" z{  L(: qmE 'mi *R#st DS}$*sWndG oud=hGg,#:  j o| b$nN zOF_KH0r0OgV:/l>P Ee L;^BH= E H !Q  bpS-w GxoSpio_3' h 0H  k/Q4cXY[ b 9 w!  x  }n  1,$2 Nl jS0:@#l bD"~zR=4:a 80Y(|C:!1%(dzZ1l?CZNDNorG^g? " k8|< BwO `s T ' :F4 O'Tu:Zui:Hj{ a,='Ll=4cq*d_Mv&d9di S 9 @U )[ qaV^5fz+y2b$$)/ b RN ~6 q %S(  , ~U{]K?bBs+]^|3i4gf>   qF:~!0h5t}}uv_=N|o{8}9,/z9/5*,.$Wzw3-n'S<})rJA \   '*KRAE iup;EO5K4G-N1D&9< s_kZ . /  R !p Z 7w D05YSp7S %GF >Oz r 3 o   F *b  {M*i3K_4<!G] N*F|eA*3O*wLjg<Hj }VZ{e\4s0Fx4N!^`!s  P 6  X R Q }m{ma7pFV@QB7CLJ/q W F /bj [ M1g[e` J> F ^  h 4SJO3I"yK<Z"!~"SD Pt!3Wyt+<3  u9_j $V j$ZL>?a* T' P0\L6*z W] qP;Z0 [7OLB&nc" ]P2.y!en O&0e L[WKd'[<j+O8lX6C~c{FI7 A \ 'V  2M D R  v ;oDCZ$v$q*)CM   3? Ji 8  r}  3 8  IH3M'%uO ?.n LpjBzYJd8}& sM|$X9\"97zM  in$J7u:r+hv_r^=n |a@ISJP-vNw9]bJ2h,[J+Z`z r - n  O `L o ' itV"v6j CYbM2M, %x %  K: rd+V?;]:!  = ;C ; & _SH l~~~!S>RCa35o rpPA!x<+a]`7G`Fk+lvx d{/eQ)<*\Hn@B/'uU<JH9Q,RhSf3!_o!n|:mJ`yftO K Y=8BZHtT|*( m& q^  a" 1 O[[vrqnh{3`  [msLdEYqfP [ c \ k 6^gCY1EI ' q Ls }'gl,:47hjbMPsC% t9;"#j-(lS)ou^|1M4D|D~F=#x1YU(=~,0X.U }qT%Gf2k?U&_ax3P>C.K_}XrznCtw$ aS&{V@t> 9v  p I E ` h? -a/*EAZ o|8RN^{` P  }U T Xyo^]2 w fn 0  ` Z }BVt?f9yg;3"o)IyZ v:ShcckWi\557CM da>M ?/*V9$tYc?Ld\)wQiG4Pc(#cXC' eHm Ht _  'z5N=ZOcmVvd x ti'  )% s jwEDyYy0T{Vgq?ER $ { J L {b5lW{8G"{  2   *Y("->=& %fF0@ NK|cVW. v_yt({,?RJn2F=M9=1oRaGbN9^3gjV.u<[}4w\)f4Bmk)# }q>"~A=DQtBP)+bP%cS/ nKbm!sZRQ}^o^!R] b 3J Q$^=~sH=CLx+NN5#9H+B V w k =24e?DV 6  k W O AF{vZ71N, *Q 4v[SQd)HM:.chQ-G~^] tO{/=r5Y&=V{7S  (A \    6mxBO]KsJ0'@iwM lpN)o+uqwUuBIDj,AR `' 0 h =f 5lK,2`?s<VB0! H  l  D\a A =    Bv^-p?knH{ 6#X1ttf{m!\\?8/'\}fehx1D|OudSvjXdlTLw ,y _#^,{bn}[~;e4_qZm'FLs8o ZJB^ZRti."xU[q/qMbK8u_8# ve vK G 0l l< %:BHid ij$;7o*aE ` E I6^y,:V] A  8q ^{ - -R:=Z!]qv>]= i2C=~ mG]CX_E,h #3qO$&w9!4{ f[}~nL7T=_SND_DDx9=nx&mB{eW]vj9\77~;-MK7sIs7039Ooni u>7_e%x{ &< XH)e%Ycg8,_iM9A@hJS  i} D L QAI I N  hG  > %>ZNKvEy;pG9*]ug0;Q2ydMKzVK@qj"MVMVjBC"K".XhzjRy"C8^@+oD 'Zs5(yN pRS=TD'/U01i*yb_ )cBlQz_:A vW O p t *'2`LDx}5\  uLm3K8uR/  %*t/|x  'T o  W \OD L>l sv DgwKIspW+'O|NFmT6qE;MMR +s+ix%hfs d1K&|"UV3/ow&RA#wv% s+%U``0Lmk`( {8-k:~ QE'T a1 LKb {"H e p 08.b}zRg53pdp o9!w]0 U  Y :.8xts$|y01 A    Wm>]@-&.v\&"qk4PU7z'(VNT-l7?Umi&+[`o\ I[|!C4C Kq$1yQUv(& S]9%v!PP|2f`j'MMgtcYKy\OAylFnQ*A$.=YEe\$vl & r2 x - uo TjF{nInqMY !11{ &[ | %! ^!*k5)Bb;3e   p  tawu1Yme~  }BthS?l-=GYl:gY4[ U5ac~#ST >z/]"6 R_RBWP0A7*QP<dC "K#_]#I> s&SIFD(K""NG M@ J# yx]l6YO^BF|1N%= UM e 3%L ' &#\^GKHk{,kB4OM2 k &twS   ? d p,=9Xem >Er+4I [ kr]6WFgAtywC OZ3'BL\DQJ~ KP2) 7_iom)dk/Po5Md_<+@6ZdDJ+# Q y#6!yhw\e E8yU!XSxIINO9" ^  pq;f(&{xw ppW*<:V7U% y=_\K V&$sC4()IsYt-|4T6}gXd^8FQyDp3ME[>)U6E[:it{< 1NEjli>d~d/,dNzCXH`2\W^tcYNI(<,M>LV>--& 9m g \ > Sd 5 |5A> WHo3F6IBE < D$8$gF UQ I!;p"d>NGSWxr~C `}h(AD4B)Kfi.[evY^?4dv>v3(oxy_,".mAW_.RG9%k TVns(~a+qtH'K*6X{uQ8(0 bMQDs}bmzeh{F}:Yfu L ]xEa:nMNVUk"a*xA !;q72Fa8#M_5r/q  1[UOFvx jR9o<2o]OG^YDm>;-Uq0 }?s+a7hK$' wClY; ^9~buZ'xjvmJxGUug>MDWqoGr?k+),8O<dES8+C<nG5 UI;`G(@3p7[[@0  Jrk6=;c1ns6N:7[FA+~R:FYU(sd@ -58v-JcJX3 +'UC5Z;75[7+$e^`xXgCp~wL >Z4%1.[]gW*[zvS}c}u/%*:5GU8@+ZPVIaz{+d V9{M;bGH=i.J|RM"JJuY [;[KLpj?/m4' ceURR,ya 7~d W?I~7n UkPWc;lo@2Xdb/%A<"6 [%BIF[HH*K+z lzUGC`$ r.aoj4?%yFy6:#lw!YwCg(|@vrx {kd"s|kgL tqL _S5n3x%CNeL*G{U3R$ o825T3fy[O3gKl>,C-rU@4(C>@Q0w  E@wa$rAf,{)h{vC*(*)Pp F#y 1rfhfOXh)gcUO<6M763WS 5tQF lC= @agUk1s'rc0Wk_@s //}v=wM -rV@o! 0(N~!Ji>}w5 } k"Ef+ eVU0W~VnkBqej - X IT^y.Y]p#! *]4 Y317wPg ^|&W'O- f{ME?cqDMRKKU-:jXzI~ g) W5 NX*v` rf"[AgNhOnzO*YY, 2VXJ* \j~H?T VWnDG@(Vm #OwcoJL;m?K((oAN5Ti7Ck O ftU<WD"]FfKx x Qd=BPKH&'TznR? oFaF}aY4D M29lG|(G9n.J)9Xz2~Q[;hU#mc. WX{snnIKL7 U6p l\'v1Ls 96"D@j{}?)M!lte=QEV3iX7uOek`y^+<@uz+;v pr`sYmKZ)uYNXm{<"n>QL^GYOZx6oSFodH)f|%ywxCcL@z9NR** 4qAX,1]JH6j*@^}u{)V'PF&Fw\hC0 WJ,fFU wf.3_QFgtdadP /'/YdQ,t`s;jcsu)<Wf,t&mk" laS$ m !-bKxZ7p%,&2Usx&MS-G3oO$ o7asc$"u^HO!%y6y ju7}8*%I4oZv_._n/%v,N{#ML*a8+:p_qauCs{oC_GIl15 3orI*P QPMO'h%pFl!# b0p(%Ggy D[q~@Yo)FHeZo L%B3<9|eTP\SMwDp`g;7]WKB pL *}8)$2\2UGA +TNv`tXd-S1/::Ne,\xy2"Bd |!#o`PdhdLX#;6H[&] T{{r(jqo.sE^E~D(ASTxtW9  h#l}^"n0|A_4 Fcvz %pEDC~dPT^ELd>l|.CL3:I!w5fKv)z}'<#?Y>%)NLr>'hY:&%^VM;DBU%:"f.1}6F%j,C/N4\PHDN;7 %e=(`IaTV> J.=!SUiE5lm}py_s d)V5&oO+N"='hZD (0 ;kRqSY<y@V2^L{ lrc$J$oiiEXBf93T^rZJ.M=nK2Wv.MmnNWII;%wJ? )ge"bSculZQD(mKq'QG\"WmNQ[0>GJ%dHqtOTE:^ F ; } !e TZmETyI,pIl%Wy9]P'/qv PCjA`d+Q2` ECnbW5T5$+,w:[31'DB$5'W}7O#w[oh~wNV5X|=jn^4}22c%}4k75M8eF[A3@VAO;H{$  0<,sv2 - `CN<M1>3&@ n H8 M a  A =b<"A\e,.M@:+"2-.RMefU F6f:]$|0J'7-R_ec(F2}/{",px9],0}gKk3aL|Fd$)YZ^/Xc~> 57BA!c``NTp<#i 9ZsmU Se<`n}(ve!|UL$C\_[-^ocB ,  2 ] c S "bEef sfx ?LeV54F{3 fiY}L(33+{ep6(4O1 lRY(*(H$WgHMOo8]&Nap6]~f[0|hc(qKc6)W_i|~5vXC?8 *]V`n\+jR[4#=.7-PkSk[Q;<6"!;DO%*u!(~U 5 H LL8$_h.  B  Z  X S ` Q[5JX=S)X@p$345lI-V*XUpyb8Ps%Pbz& c&b`&sFfDN.*U~l5<}$\U%cy>I\@[j[[=gXn5(aOjkqf=RnkUc 5$7h]b6*d 4/PeUJ_E (m~3{6DuJ#r\{U=<t4 dq bJ G@ = ![AdAM_VtfF   ]!0\Vfd2jV)CJ'+:rQtLSFv_CW zFFwk}y".v~d I*WWR 99s@>^zAmDHr (K-pgbeVvfV.%/vB?Nk% x0&oF{R#;E* Cvba"t@$h xA_b;$ldP+@?L)0 ~SZBY(ptk*6{9QJ9} Q  z AH  ; b $ztM1Jf%rRfq|b2:m12ZAzll:QM.2o`qotKP,,yGvJB[eY"zCk}ns<CS#[7W1idQqBkm?JzO]ZVP@_sGh*)!`|xp\D:RO!W*bj.I^%7s j!?apa=^TQ*QR  5 Px g : y aX$ x,>QkWN6T\.]o@T0,47btJ\82 (i2- A1/JyvBq|AY|{qQ]XS=>,^OqPU5#A0tD|} ~o!}6T!@XQ@tN7*? :W+$ZoN;0<_r9!*_/' D   + ` Y . G  A?D/j4m8$(kJ~lh%JWhJnn }3;V2s^[@+?9SNbcKbx=>kgc^?*-P!#)u'#+N/hv$qMT\W ?;[tZG[\}As,UY#)M.VB`+^u8^YQatrsXUN;cck)z8 )7(  lW o ? - % N R " 4TNW 5JFS46mZF% dhl;~ mI f<me2j8i88;f9Lh>6U ] Xm=V!?3BRtSJyJKpC|wpoMFQ4ah8?cs n~ItpHDCD68J|:qXre'yv\/#moH1kgB ]apqRp;dKiCZmd W:  G & $ # ?dK_h_~#<k4*\E]!b0POs]Ll6  "'qK2\9$:tnMwXC: qo Fb<t} c~m#fQcK\Ln^xbOT OpVf]& Nab^uNO0]FR+[Xl?,n-P!k^gvFaW+l+l[)8p ~UE->-C 5}Z%q[gT  ;v  e Y  6 * v ;rJz$gc}.%f)dXa4w @&!bL-!HQG%2j}~r/keB%C(*E=^jYm@NkJq%,n1}(+40| 9?sJxtp(HZnfopY8tH.$Q BT K#\WD2tFHY!QtQxd5$<"OIT*065^e4Sbw>I WK  n   Z a z q 9 4 q BBXShJmw^y~,;%9_8>' nXd#}SrY*Hu< T-LDj %og]4{c- wJ^|C6";aF#*U"3uIYf $6qn$Q0 )@&R'bWunMs(|UmYHjTo}3"gue' MCOi5U8L7;iZ#n[2 YhmWQ#`e{UQe` Z(x kE 7 ?  g  f ) 3 qJ e%  _Flm9`>>n_AR}YBSzOJYopy<u3/kjAi-veYp~!`q uP#Y:(;^O0]R%DXB"^mcAZ'9#/DS\ b&D,y;}5Q qePf#BA<fGHG )e{*0en!}:/ G\ t%z2>g#p(ML'CC{N c  , +   h? 9_ \9 D e8xvX`";_'{??LQp# {:KH;}"h;~LNF1?83_0u(Z>b(E*l+r[eEl?GYIWb3jZAlF$VMoYKKX6t-7=P8R+ N5HxZ =I(1%l, mB]eA}8$D.EZ?+Z4/C! [  R q 0 j\ x* b  gg'c`KV.#5JL]O,o$ oSna Z7I&: MG"{O`tlSf?bU/Mnr(;4DX_P/-p#m\U&MZ`s]d=+z<9qY 1,?Bx1m0g@sA5:JPDl$):nl|7=qstr$0C_3yl)%\3=^c0Q y`...^\oCa q  m I  1 t_=b1hHM' }$VP '*  2  6 'oU 3 6'<R(:P-GN   u  JJe  GU $a 'kxJBY9{5@YDL P dO?=[G)/xMh]5F~oB6Nf diACmFiABIO/cVS*}TjgRnjd='O"]   F+NyDo 7 gV [!?Y nW R r^'\f oGzU @& 0Mno{ ~Z+ gdV|%_{>ee4"2p! d * K ^ ez 4a` P:F7p#[9S%h`^ p?q[k_nK&A t('}Z,*~h{8|6]UV0 G+XV,\D%mErwl>nN 5om3lzW $ < } a\ #:+T   x < PD 6  5.  uW W5 b.H.@=j TmjJ~Ghtz%fQKnB'Bv Z}?_|d:Ud.<oa|;+#{O e*( w$mO vy. FQVo Is L i&i<r_P6P?#!Dx%y>f P0jD]bV0xu; VvmU+ "v rV i9i Z |G nd d}!a_+prY@3&J z_=x1zk{O^W<!_ 6 " Y {UDq;`kY-G ^  k~3,#XM9,c=Hbv*vK 7 8jxI +kqZL=S5"v }zZSh  D g j` D *7N}\woT]>4\Rkj HKZQ  C yC S : d  NA U $ " F )E :tsdY^;4O6*F<7*ZNk} \r2[sK s;1g~+ 0_Cvd}qH=bNBm&g De/NE|Q0$    Cf o) - m/(^Z gt{C-={y9 W a K T7 P \ 7 U 53 _-.bG Zbmt,i HQ C , Ii~C*\eMY._q5wv<oWz\Y#1]o>$\bjU7l'^iq{Uqki+=p.]9Z )_!{?%-R[zu sO ! jl= N :  c*jbA  _ ?u4Wvl*1V T*-#u~Z_<7?$O J.1UL+/= mZHU.k  V Sj<j eWXW: } .` ; ` L;# Q)wKnM/}V3Jv:R  w),mm,ubc+49 =!,#eNfOH]B#6.gP< u -<Th'WDZau>=X (z%wK1)6`1 >7m"Sp73P L@] tIv[L /   5 QN - x(+\^z`AoS be  n  9 > Q? F _ n  Q W @ 1 3 ` $P!nMI8UyNnLG.5]U;?4vNF/ ]|Q`Z+}Y4c U[t zEZXzuOtw$j09  :8lf +   3 EQqM  ) X+5H,TrcS=#~0s|Uq~V 'Fx]\I" {M=skeh4=wk Fh=c V rO#7:g:bL8}ZS6tpA?TXMw P O aos zj-,'m Mp RE  f&^gvgr}FAZoPKn[Ks Gb\~\&&s` S](FU2p /=X0C8Ir-rpl=4 1V qjbtVPHb2~  $=o9x7O5ATr G < q 4` "e  y =xWlAk_ q P k`|b8M8 D *  J ~'4:k2qCP=AQcBq]E,oO=/i~AL}2LNo1Z|TODs#]@%o uXsG ^ _@k=# WH>)l 9N4  A  (e ]EtZ h  -5qbW o1Zlr Z.=B' w  %  6 e r P   P g  1  >iSgqduB|E\N_Kdg 1 \4-<,*3=s$@y##WDY &}8AIeDh!D>kx >TtIN@gV4M 4KskPvHl>vvfO>\#ft Oy )] OEe.Rw+]S $  xq92t53[ ,5#%)-+CDGDB1T{3$6iHt^OD 9 Y AWGU  > A & 5 a  lV 6 _UGI yeH:.FZbXR{U 66X5:tQ d 9)?/4Jr]= .2^+J*`v-CC]E i+unhp*6N@vWD~pSF/1b( ~\'  s5  r  O S ljk G1 R[\?'4oCB-1" 0 .=J *   H i } 5N secj[6Lmk5*mEKM(Cg|FgQKR0(kLA1~%?,mQc{R^g+*c}|L`:KbJi}7T7@K["4ZG:Q p(Ho!D)V-\-cQA84,1!#K/ < s  6^  n  m ! 3 m {`   _ m %)Y= yquk"uh !:ntyfB>#/9TZEIc)'pa-W!7[TL 1 !WyRe1NTHrqN1KF<-PHL#td L~ @ t 7dM>6JQz-:J+K-f0pqt0Ee V\HtyN"9K`tPD=*X)KT(ph\J_4 y]e-lG3TA][K ZftI\!I3g}.Qxu^+FfU:2d  j l] J4%f'c-  Z x (o,z% |WQ/h%Uy/vwSV8-sr'`EK_@7mt111#a'yNU% 7j / e& Z   9 eB7Jq24I")p:E)v B`>z1[3SUR3G1$eK~@U"@9$xF||>WoImD ;//2IsA*HG[ O i \  O     = z ` jH[ ] a,s y G! J j z t Xnf% `1f!MnY(lpfooJ? #6)o   C" ??1uXf?/k:_iyZxUVG!i/B5XLp-1k&' u{pmeX{c= mBc-X,lH[J."L\ o:M Q    /  \ S   E v $ /1 FCk *kf`kQO#93%D[<``2^2gh_5?Z:=T.$xxRH-ye 4Y. eY88_^kDA mBd\"'<~ & m9&e-ETL-78U4hT?( &M32a "S@8m$ jXRp6nVd7(k:AW#c{0(VuqRau{2.u5a8: YKp qk#S`]4 =}Kyz`1z j@&w $ # I Q \  X ;@fKB\ h XH 3 r{6 i+w9U*;6<H.% @w<O<WJ{p A-bD{vZ e  X4 I u Q A Po/ 8cV%aq>g\eTQ{!kNhttI&0BsAW f8UInaIVQ* I\NN8 -%)`|o49|ak*PF}9@ xm $ !  w  c  : T } a.S:U6 a3Gx l i9lN  Zb  I_22?QTSLV3[ 8 5@lR)Yuz9)aemiJvl91vth>j62IR@/rCkrf JC"m\"d@]0e2y /jgH8B\}xueyN[Z+HU uX]]i!5 '"%"vj?' G EE 9 v,  ~}/k}:YG6T74Qp]cQY@F ZC3X1\1~Z  w2eRG C zMSR8'KVtht  eH^\maR=SQZS4zYh`!  (v;#L-n.E;[$xtMo$u{0V n\eenWI#??6b<j9OHR  S]wJtw+Y^ Zts!.M @ % c  3 d R >\<0 N  7y'2n$IS UJ)6sH3P^hRhm]\#gvxr$/B&=]g 9z2;/P_<!zJP.} &'DO/xq]W u+Ic3py;v,,M)jC{ oG/p ')IAHSCl/ 7rLi(a]D/+k([Z^NEh!["mj?mq ,6 &i   k  [ . ]  / ZWe; kj fb   7l{tg a  N z  Q)'.3%Y_(M= d:6%NR":N*_.G xw)qr~:Z6<^#^)rax^zQwo+V2'|VLA$+9hA[amWX8+r/h$PDx},b1q-/(Io^7DnmUx'wTldG+1(tfu[tC QG){x]o_Lm>a8_p1aMr `E ; I   .-  '  a_ 0kww5_ , q } F_*8dLb'*.=XP3z{l&U6-V x;=ER(r!mi*D5E`B(6iHLr5e@d   ' ? :  R  v ;! &@ & RU" g&!2gn#RJ:YU '.Yh Y! 1NG4z#X@8qNw WzU O+TP!r~&*x7te6 <'*>24WFb.FaY\eDP[R&NOS#%n/+x[3^;9I|:qz\ jO <   W 6(l8r83+KP,ivN0/kaV%p=_"m]k/eRS.z A)LyIzav}cDE@^Ps 5SGZ9A^ 5D5U2Jia=l'7F*lnGhDnR>$>A8 .7r G/y L}Z|h&VR0xhlN!xus ~]Ei"kwRo #<TgD>7%Nh 1}   Sg  HT  = bn  KP  &g1  _ + o \   ?LGF|AI) HJ ,x~pGAJUMc.a}O8 Qqvxy\OHsSaA1-XznKIs{ gq {K|c^!7*DJ&`D#@HILy\;*z,) R eG>JxqSYwm X G 2 T3Mkf r  \ wfXh3   @[ 74<L?k\CfWC Y^e5fJL"N7"|3 8HL>mNm78Dj=5I8LU{L&r,>os^\\\qurH5c,DU=xIByQv R yCjZP ?xg~TPP $ES HP 9  zcb Y   %]H= { / A  ;_vzSg@@y o' Q rmle"[~qd,$~IBWM' J fSH>u`{jSG= z5 2\ zd'J :k1wzhV8-Ano#$3}K VK 0C fx 3 )I Ah'P6)'DUJWz C '6F H&Cw :# X WrD u):n}Izp\Aa:NgYv\Z a+   p  W )-X !V'b}  * |):  p )`ll/ }w  )  ]B hNMY0 _[q  k_{pi`P5Z+)vcX<Dw}:i{VCe/1 =G6 f ,#  % 6 nO' zO[ m m`  Z6 ]  " 9 h CO {qd~2G/LSEw^5+X}3l- &u{<-|-e 7)$w2_M{qlD EGz</ f ID M e oY Bf<8+=1WBVX>E2B6D [ D @^lS 8  O 7  k  * Y @-M%`MOrx,? < V f 'fOtX6Z;2  7 6KGmo{Y  H ~=Z9\(X+\;9vNUBDm?] lu+!km5@$_ON]pA ? ? 0  E=4,,_   f x   M[9b Bm$ =5 A3 /  E j@6B { n G 1 &T4VoK6YKV/w7"4*L_FvNaC\Sy $etMrz~: Z u  \ M hr 9"5L  8  6 A ] iT h aTa|,l);K 6 .R$(xTB~ d ZRjgC/6?#l~ &ae*HG!Lc,Q&b^YR?w+lu0?Uf[E$ S " H g >NL- b,zz & _X zA { 6AvN V&x`O. W [o Z#so$imKg?<7"^~9=<'~1&m[ZzD"#Ls~ +1R+=[,Y ^v Mo6FKLz I#k_JCR=h 1:yljj)>C5`b} |& W j =UhjRq ! + 6  K X  (  L>W  ? r Y * vA  )AUZ *m q j B 9fJ:Y]U'Yf rJq)p1w}r<}3p&_l@=5mTR_Z3/+IZy L^/~ ' & g  H F #  LL wt&"J ! , >0 %gqn e  -#   c hb? d p s_t\Zg+Q|BE*hVvlI>hS +%lv2(k@XrF";=MdR6U-4:9 =HC}TD kb W w  $ `y< 6KE'`e .d@oy b  a1<pI[:-sA ] A(e{}#a:f.y|=2h *G ^  2* +\Jl7MYxj#at 6 | y;n'Ip} }wUF?5AOBFIzI`~3[ P [ \x 6T_ F9a~ ^Zu{BMLY Z* t XLt q#  B e # d hI?@+,  O  v > $~@Oy AqV(Sx7OaDwgTT9{M#~Q>B%@8zR; A _>m)9 /aKT33 Hx / R  %H  . # ( [q[] R y N*     h 1E|; rT g6 E\&CiF/K0 rj6=n~]wfL: M!.tH  3;  y|zr3UJq q t-IK ! 1  4z=uE4 >R (|w ;u7N!gi(5J[. FhN D C    & gn4IO  wl[d\(_;.,?C%Mr;-) Mf'`wYGA' j<`0P.E"@-"vXtLhMU"C{}x li}8}L1PerqyR-Z]   % d @ s  !  * * .  - 4 zp 2qd7H 4$ a v S 2N N z`fS`R\%`1":3Lx83a4}Pq*JLI , ^P`m}T{YU!e&0 :IOyz)@^}{n-"\c ]> t t0v+ T:ViJ  o " u B;FrL?( `rI"g < N  | Z( & 2!{hMn`W<4Eda`jq5 : F.WY:&$rKQJt-PR&K )8 O 6J!-d-G RNO75_p c>k  P'E6OW4L J`X1q,2N3-]^ J {j*]l  3`c0 hq  7 ?@ : H   $U [ d s   9 .  _ K a .  , kOkxQ(t /~UUlm`6[0Ad^w!n5bogT~6ng:M7ee/ ' Hg_MD] ' LQ9DbvY*{  m u w I  # RLz1 buHMVsk+6hmga>FGBK=~6.  G  `E  "i 0)zv< 2 y  9 E2 H d D x j asw-A jA!U$ l9d  *B7kz<<Hx  d& 1 n g ze I e  =,j!dDm.u}iz23y e?UzqE Cpx:`Y]Ym<*<"RLf#-2g~!E08,RY`4F,awMQ6[lDaoCmV?yDt A9BQK Xcj1JK ( 04  - "?h w    ` 4 "  m  h  \m Y B |C  PX%S Z x   r|PA,xuJFo+\Z_ Kvm3Z E^TA^gXd6 _ X  2 " q s  L aL s; @m  9 YiS2M> 66=C s KN h * >p )t8)#Ue>+ d FN p\,:,YJ/3 J87]#J ;FEU!=VpQ/dSK2_4RacR 7B & 3 ?k^&-ce&ML { ]  Aq^pOX V3N>l(=X'55@2?bE*)NX/[OV6EAm c4xZI 9 p9 xQ[.wEl* `FWq!Q} {wh LZI 7Qo |t]\>;hAK8WYjtE`SM[ H%k4)&rW' \  c]{ uV  &NF   _ % L h c ( h :eS:Kooj#9Sua/a-&hT<@bGV!UGHM*]6Bv{V`EG'F\KQBjaSh0UxcD _S > @ b(q   S Arg C [ [l (E Taur>JWTCf y  (H cJ ! S hH ? {g c?"J9Et.47$MG2PHPNWFQ F  K9(-F[{/?f!E]`W7Opi;lk0kFK_e*a4k $TO p3. &GtP?}'Icc;AI^V     d  $2 G  / R T =NAE \XR { ;M"?]L@ZK^Nlxt~dXNtmdb$jlv$-859E{6B6.1  + E  !GF2a|I*}T ,~;Sg&$ =  8  8 8Hd7 W  f NibdGZ>s%eo}CwM^u _i)vr 7~'+a._AmTg&b"^b#_4T( bV Z M [ $ 0: i mF 46W C=[EPix>Er5;)J\e=qKt 4& 5 > F`6I{@y;i'!A/ZbUwv[^&okn9U+  +ra=p884Gnw TPkXl!} 0>Y'/>4"]Jfn_EX]"!b} z t6 x;t! >P\XB  )AT6 CT{ v  k  [' C FB|U M ' e  'l & ^ {0 u y .by & ] H #pAXf;1MNl"}Qc% GX6kCK*%|>'.J 6? $B6 /GIl G F@*[#ua~ U!BW3t"~ : eu:+^S28lHHB )Glj|]&c]v>c:q?]V {AH|>B 8:K'=/G6lJNUz8WW*!`0%,e1 @32Szl|Q58LmKD2:z ja0Yz;+-oq}>2(n*t1/ 9o~ {jyKr9.e2khln;<( U,6@sZ7n1?R_Uw\W=\%)s5Uv^0~ N"[]^-rL /xn>zD ?5n&\6_  3#>/?Bap  o  .= 5[K#$ 7 Qx  /=?:%qFBzGSX[A|*+4*%JjOY]:T v8 |Wn2ixCCZ)-(=.U?-(>MAqs B9`  q( vB\}sii e "J K; %RR:paf%5p?c"6)9:)pQ2 YZ{& -%(XGG @Kq\V0<++*- V[ . J E fy 3B7bq  <  =  qal6M*vX<$5 f7 2k|3XbVwD(^}4P'#! %zapiy<=|RYmXv~A~u Rh`*qc4fYrP:3Jfo-in D. lL`zK;: , ! @  m Y 9(u.5dr:    a  pz *Nrb+pj/JC^E i Tu y +~vhLb' QF$J4+XoG(k 'c75C5*A,KnR|pOs0VFG .L}&A3t`ia - V R P P, r  3]  , cH]0.q%r YON[ig [ +%TnyC K= ze:sHe!pZVp]e` gyfrW+"E[rfSQ2OX|[7vY  a p v _ E C - m b1dMp*;f|_[  k@u < Z r ~c ; 3 ^:Nm/|,"9,DE^< =  {]`.y*O4)2rneDLTCP;)Lute\KTT|Z;oi#pvN^="f83ALHNbl w  0R + G \ =H T6 nH]4qNoO $ n _ KA_7 D ."ijn2R]BsmfzjTVv{{t14:P vJ[risOV(![ 94*0-8>1wzwYEc 0 @1 -,h!( ) Y [4KPu]15g"\UzkmpF[[y,G# D]Y}] &<*G2'("\c>]hS Jh9x8U5TWQmU@ %H6 "  i5/!6?WABTK/p;L8Y;I%k<uVv ' .BK5c K>-+ QKnlP:qS|77n:4O -`]wX;bmi xLSBl|fA}/IAG:N7MT?h% '- 9f X . '.*v& %4 % > & 9-Xi>  y ^ SR? <}eq(1E ( e' t S   : z O -> ( (\ / l5]9OL-CeZ*5]@p$1Fy{oq$sn&PD1_+Z nZ idk x;tUH   +  G-$xP8T&qy+zw B :6~A_$5ha  r L   y 9<AHC L1}X@Qv:t%Dwmn<j> [RvrEeggKAf"ps<o8sy-pAmy   [ #`XIIay  };<&:N0]2Nm8+SS)++91m4G, X |\XL[Yh3kU( Q& #_? ] lD3cf)G 7xu- E p*JB - 6 6# .X lU < a }aA s ~ +  [ KC ._ j ) OC%lYxBQ-?WX}nU7GPrY V2dp`l$$Wg = '|>l~+ -;  ;Og | )U:|SQ NW9T vRgq,_#D;A&L W-X 6  @  \ *~g+ps<tah:N{hi|:\L;Za Hzx bz_)ws:@N c a dJ 9B>:4? h=g ` 1  At:X,C )g/ | &mhWB # z< q& E  'Y pft a kd m64] q [ +1G 2 <;#p^8yz/Ryb_24/P~ HUWYSs0cs _-[W3pyG-~8$N u d ] ]@8 r( 2O ? sM< ` +- & N &>fAq /aM nZ  `&| } c_2p\fs@ \ U+c}bt[u7t9rM ?- ?FvraAee\ rq[-o0P P +IM;)" =  wl6>#iw`T<y^- >u C'Hu\EiGKd r b" [Fa W l'j j ,bo >  +' ^N;KCto{c ((:*T 3~ ] ( p 6 'ZF]5 8( ( q@t gu Q  N  Wa e v $ v  X n p8E   /^L| u, .!Y8 R \ 9 D !@Z<$wH{* R33hv%;)'[+|#p3q\Mx wxb rRLv v ~j p5;#g"() [AZ \~ *qcVS' ( T7 c9 6vzD1WgB\G  9 U 4u4FGg u \(Q[  Zy]ER$dt- v Tes}] AKm(RyI@Eay#H dwZ &ar` 6 DJ, P  5q g ^@ |qB[:=& NphFsTc 7)N6yyiyN%h".swk '^k| / (  ?LpRv e=|fzr2;|%DK(1VXo-YUhP,v[wIc? r e(0q6 )Vha ; VvUAU| VGSkN !0F=pTTUybIOHhTD=>!yy  /YcN b  5)k45i  A( |f  T}w&\p;Jsk Sle9 A S [ [ <~(Cu$ o `W  mH VZ-[U2 mYbY\'V0dTlo6#V'zY& jc&^b[ oB2- ,x  !@ J " T _ v! F xsj~>Ss7U <5[ ~`< y 5: s'+D[6.mS3SSO sGl~N! k(@)@=gezOJXk0(,Ry7` + *K(j x ' B o| o `x< b/ y h  h5  2Lo;*E d s _ "i UbF >    NcEO.2 NX8}P*fB 5&sSyeS 2aa $9n{/$AxV&]e ^ 7V r  6 B V .<ZH VIW P a If0 v 9[z^R1 4O\^b } $xuZ' m _% M B zc  g Dv  &iK[+ Vq\HLG (,X{K >h1TP{{uy%QnsUq!e(yw g1a&^d)z^'+N[S*jWF/]a6isFVVp  LZ  Q: w:v c $$</ % q}=/G+,wvs2nFa }VZqrj|]/;: St HAn c ] ~' o + B` + . A Yp ) ]C5040U%Mcu9Er_16 2 i 'Af_/p 4XjSuyPcu(bp f }#)92gS4mQ i^G6DC{so_8A![qj,+TY<w  P b ' < 8. =5m jfFCb.,3$J > [ b   3L W e O:  F  Bg ctLceYjA6CZVR 2 1 OP<nBH)}r  r YQ(P  L\ }< kSWhQzuA`0 m c9APU|1 y 00 c^   q Bkd?G .CV0C P   ^ o - G NFKxFd *?E^ {8U"Uz_htc@ +U 4H < h  ;  vX (   Od3;~5u3t]hvl<"(H?Q+ z'>&"UW g f m z c k Gf ORhJ]k%;VdX+xEa"Cw^>vo7~p+RBhtncmsa 5q)7 2 C  RuwaW hF$4aF3zXxz7NOZ -,lZ),~udQ|0;A ) |5u8 50 M #[ X HoV@T"C5.>vLwOs+|,q5z(pWTupshR2Kc@.i+_ E  "H} `sp l !k J wz7 I ^ u `E $ Tw 2aEY_~Z -U ] W ><N]C.F0 9;)Fx+ zKr_@$~U g8%|w-\dF0Wy23 `3v~d q  J W M  k  01 '        iI 7  g0VG28yo;$5 ' \ Q:%gT  $3 X0XHiec@Q5-\GC$RXr,eiKsK9u_p|ZjEnHYAa~kb1O0 5 }f j @8k,WV L+%=fg6s-Bo Bd  w   ^YY~T c -v\(5 ^xhD}z  %{ c 9@Ub3 (8T[7U.t nfp(&5 fAI`kB;0`_**EPB*  G &ZjUPu/IE/2 u|x\u1$b`s%^7 J[ i  N=  3uy, /C@2Ee{+q\{sndA39EZDHiS6RhGj9&:1~ 6  [ n5 V 0 Yi 0 kLmA`n}:sX!!4A?A3]*pCZ>S\ { D  'Pb)@ GU_? %IFBjKLw@:c 8m ~J   "Si].wtrW\YW(0)llZ8rp%iiGE ) U  } )"c L &I uxd  0 (\  . * Qr{Y Q:{=;  2ZFOi?NDxL'<F7RlWks?DVQ-{mfgr} m> ZtEVk:  ^\otVo 9y g O \7 > t R oG @p l }%38, s; _U Pk^1  Z [ dM E yqOKe2YOM S}Om3vOW'lmS8P;rnawcKNE%U;  \8+7(b@,U.V3Qwltq$&g\>afeOQ.^L 4 G$cU Co& 3f _ aK%X=Hx6Dofeh n m@ ` I| S = 4~2x2{BlnN\5UW"E]1RgdNV pX? E D DG.%QcNL JwXM`vN-hR:@E_U m qr "}X" ,Tc[3PF5yMh!* $>Z%n3mvn9IM?~;PD t H  A u   Bd  d M9/Oin_@R@+[XJp) XA D}eyD0QM7 sg7K!<8Eg,>Ay q%cqIMs0o>-gEb`t;p/?wzJecqT [ /1  3Y$  4 lC X^ ,>  K E + Ne 8_r   | R(9@ B n j=|Dd o/C [k  2 O BY]-YRvMvw|V3u!.!dys|ObZ 5y#!V9 Ux h V ~ ]  [0b;uaB  ' "7 Q vuwn=^ >4,9'0ZT H cE`C_H W%CA)"&Cy2Z /q  ^T [M"d[v)q Q6*9mN / u"3bar<~)Y< u o n  ^w; D_ 9$VJ_ }&t4`Us~?5O/.jPz!J!zv ` M K r  _  l K O1%|-[^d6oVZh_{]U]y }zhrL 4X `< hs4  |$ T 8 x  hjB>^? >[ ba ]o ? A u ;rD^  ?d N_ x G h ]~%KR!KR 0^{}sW+;BZzkG e*h=<0*+,6s`,) 6j MBhz [~zP g w n,  zw I$ t~  Wu  Z >b wistw 6 (A ^ r$  R A  ]` '{NW*BM7k% j<@wMMQ+ aG>Ro4 $a]65RKvt!d 8"_ckG]5y{E\  dYsGPYb:q;D+?QmX Pn L 1 zM ~ wD y N" h9 j v: '  o,GnzUg1yw5_1@[P]\mU/L!+FmW-hydB#4|i)Tp Fn <A+ n o ~  I .R#3Eq.tB 7 } kyGQ+RPsmwhEJBPp|vqXr!:Yn'!Rq[ A87{f`\H*x _RXC}1>K*p>I2 _ D: +_+De  %=N5E,I~9f(?vKC6]CG}WEduwpK2$u>= uU#X3j4W9-5+Hx?6Xt4(E8m*H-n&#N~SG/90 ^=  c A   q  k = C%PreD = G m 3 V !g  +Y{-nLT3.U>o_lrFKUUfm $#, )x WW }V# 4u-!`_0 # Y<_M|wD7FEU6U-zy {ezL _ 0j -0 qEj VA{>>;n7~o]uJi]H VeRbGo<% N Q<  @ { Jgxqm[[psuAyP 9/mxqU u*xZEt[oeLg Q4-d1\}O(8 +uX5;YIrC_zfQ 'Lwi=  !$h}la3f~D ' QnJ1^[    G%BbXbY X m 1] Q   h A %]E  9Yb$aU:QuhI. AA%@2<ZiH(!Xq}o 37sx6c$afmsb[O9-,!ejtl5tG+ZYj6m V 6 o;,nNNVrjb# B     W n = -,2 1HB%}=I'caTo*qJC>fMJaTb :Fu?H? 7ZdxKe)_.2 R5o,^-?=Fx"?&s+RWF&36g g g@ jQ ^4 `w 9C  m4YF B ZW +C&cn)3#>i~@waqy4rxA>.oOWM(ZWF5hY7J7? ICye2!! rE<yo3Mr>Zn(_<SYa$(=dH-37Bk&)"{vmq+8l7s}8y*)o F  :  \ ?" <| m _ r 9  Y9 h g   9 q   7R?OU=7q rHse:@k][w:h%Vh(lOdTxce V+>:;ey"V? nU vEuaC% ]8O#RN_?qu1mex u ?  X [y[Z i) Xa   :   ]E +;>;/7 j 7I[L9-Kaw'8vV (k.0ncbL!#`VYcvlY;O, K-"}%Ec3&;RXnxs/aB_Rc!chNVfaI_iE 9@ O3"vz<9[@lQ)   e   pBd;l[FP M   zb TL2m9y?FSn$o H(!RF'KQE'P2xr9K?a&ib)}nG Oga@ntfYb( < < e D 4)Z $ eFR~=6N\}_VGt8=P<$ #5>`.XIb<`NLH8OU%}bsVSOi   `4>l,ANI{Jg,O)n )$yUSe:uQCNU}or|#t1k`Xz+,9FDxV7 rk[D^a:;''&BKBR"md k- /[V9FH 3| _ O # J(& q0 B+PN&]-S=x:XyM?T>e"Pv?pQen/ # i#Z! n  3daZ~OQ`T KMwW-&FD3WmV4o'@y\,}RW7g= -  m _  `tyU:yg1~ "n0]zmb"sT0Z n O  /  % Q M -Xf AD e j < c2? Ln,O:aQM_} 8UVN"xSHdM{P0{D,}Py}`2C]Sxo4y9k}k~i,\b- io Y `T:Z>R,-  ~y c ^   1  N ? 44]K{:Vzu>3 ZMWR$ ?(Qcl;@W!OG.3v   13    c ' %aR3$_g8QK)P qF7n\4S5 }HKs?Ppqnx1  W  D TM !F q ~s   ?8 Ct > A3+':3Y VDS VsM  $ b- V;y;Ib)z(;y-#A-  ;6MQpnkbg|kZ"f=-qc9"I1sKO;q8q  $[ 1 :9  Z W mHR#6!Cf s$q)y1"afzd"  u y Fr h|_^-!rD!=NJuM&U\B">&\&QA_9|xg<``m9 M2s8V9?e!{_8{Gr6WHij4o d  X ; sd b8ZBmB M:Co-^5<_z,*oHI%w"Tug!dc#4%,C4LB,|]Tb1&Vo4h8VKyO^2-sRKq~5ujGf b=DqD;W%a3?~;,-q*_mr'e,}V5@*1`J{^5/ TO "  ;? MUM+/Ip&e|Kx\T*T(N wc*N ?OZ7  %fRKt&8S<9{q0x+\8Ryr I]"?WV B ]  M X K me b  s# X Hyxj>z!O46Wts%h.Rw0/kx-Mz6Oi':k\35gx\K_dQukZl1FF<[LMngfVb G6Y'CpuF, l W uW "%  9= CP   K  B S    2P FkZM-DB4~ J[7LSR.ndW_; ^o1ts+ReScW3xt? | [ j  h|JW 4 4d )>i@U=FV3:$#tVP+GQDu4bWCm>x\$cpd1$r6XDdZ%y%Yx my?N_k=]0Qtu$c6 s89@ma2j[qb 1 E h X |wh,2wX $ \ _ *\w:)[E?Zy(nm6 E S=H$k/i^}<w[1*IcA?"]B^\87Y3zf ~I{<<)Z+2JtMS\ | Tt \^ }=u H/! \ ; Vg!xh|IY:2oU|l=Jc[B4?Mb5l~(Q'qQ#~ }4I^ &}YCK ~SClH(.d_6YZKAcxkC'v!7 y # / 7STXq 7(SC   ~ V  N  3WB{ ? < rb tH  x _H ^  iA % 4 J  C   ( zDv{auuz?(k/6ZYsJ!\aM b745GV7]|y r4I#3yElA8o<:$xzv_| m+x&UtKW?B t ~5  Zs Q "  t %nX}'bl0 2p ??]KY)V(A*MWpB`@F|AbBL@B#Aio1:V  z ! , A !YQ9I B1i3UTb4T Wf.\$' hqqhX^wSz4<s]qXA:6MtA8+'e{"*cG_3 Qh;IqVqhHb%GWB;& rO>"uxo." O||g7,?p^7 L+sN  h_=>BxY^9K7F:6\kP QWr  ! {  a P 4 Y  Wh,!HW'(8_~TD^dgfjrSIeiT<$ Cm\%8v`gLCH%D\>>! 5J];^? Y'T~=gw;:p.$WV>F,nDQ#;]@27Lyyh`81zUS4^`CfV7WBlq 6F s 3 { } !d #K  = 7 s3U{K/[L@   z o Y @ /Yky N e biwvQHQlsrOJWcr2lBHgWNpk1w\d hu B  Q 6s [q j !h4Vj`=!:j&4nUxzbKV$u$z-1FGI wg1-u&C  "       @nfFf|"Uj4sG :g[8I@]$qlH ?Xq-9@ d - R  P   n W M qy  b=LCgXO*J{D@B*B ^MT@w%jE>8lN;-S=W~9J'V"\v=uSL65R'qm,1k? Z@wmi N kY N a3l:V u [ tz$66UKSa|cX5~7TVaUq_bT3l&4,DGk 7) b8WxHyTOR$;?K3 wxAgZW_< |i(mQlTfc;V 4 v cY L P[BMO:. ?B 2j JQh.mgjU;F U}WTX!XaH 6oI&g UlSTufFp;OVHB>=d "Dzuh "KNv0b~ V R ^ O'p,  rjM u29"8CxS}<8 nD<lFfN.a5 b      %%xsv cw C q U.Wkmw:mWm'#oy`w* '+^{A4]h,i~ F e w  kH{r9,#& "0T''2Vx(\b'%?r^/w"\  N V 6 ]V   J nY*aD8MQ}_RLWg'lfIM' fH }%;]arUb }`Mn_+ w, Z@3({x&nOYt$Z:Xu2j ?US0Rw:_~dr1 KB%&[afjlffny2B9`1kp&g|pE#\^#,0fTYhhn@gwa%Zl+6,4]p5>3qjzv!{ ;((@BPWlbgN($I<L,K36aOT}IN&e%X3j&[u9[x^.*2e  ?1d Y f E ||:Sr:!0Z' \>c<jBg><)xzq&S+Y"9)#1&zOtYTn"eBE",9QIrLz?@b/xc-ka7LvT99(^Lf~(' k% A : q ~ X H 0 $ y [ ST R. G !V HZ{wyMlSrh!#\FZX4@ Gc0i%O c>79 T i 7< f w[I?)A=qjsQ4?ZS,reIX|UQ/yQ]tU lo_qap]M1^Po E( n 5&. xr  JX ~ tU . L t@ X%49q:^^k7w4%8|.tZ-qy\> y B  $  7  { sP  a ~ } AiqKIzx. )/g_OgUDNS8N.WCi#C9tklt"BV{>LQh  i ~n0XV\>zL3,*E'~9^~&=6o%_2s!ycehzvn>W+HB68{6bfiedQAeb/DN4B[RLFRC/A#Bl]7)D}2}p `X|Wnmx#y W +apfnW7pVItj\OrPfyv-%MccvPm6W/k!jQwK9w 3jCFNSU3ldtVf I0*Oz%N,/ (#|u~rDFR\+[I,3Timi}`grF;oB  1  E 5F>AAau#=oDdBT9EVAs_l9/;I "4I+rt WYnl 6\iP e# F_V(Q+60;# a$[;;       &       -zXeYC5v$^z#l,;09urV$G4uS1 'V y< { mn b W <  Q6%T}nGc{NW D)30W Jrz5 `V8sK `h*Z  V N o  /# 'I&fq$ P]U:Ng 8|=QQbcQ3<AKf8.bu w Yp|$0g- )=[6}0MR5l8B%_h/8!%nyl,za5RjwZH_4+MTeN;lxxq`}k?[VZd,a>*$3B{ >5la`,Fs,9+{o,KhB' 2I,`|>E txw ,MJFe;x%c~1//(.}QR4yNX:RCV{GF!4%FTZE%Z 9Z3zq+s5xKN.\rnKM|.%N^}/aW47s:EG']Q;Uv]3 Q-lG1PK;-bb8R+c dZfDRY-~zB#1T0H%)/hS eWx#"~c&2B< lFUAFaxBkt7!CBp3b2q\?dgq~,r$\7`G$M4 |  !   kX R{ # *W 9 L~ ZM i  0U J-5wl~xNy-7%Y%P6x,o.9kX1|ph^yDCC8kkZ,tY{yANS!2f;PR_MeT5xyc'O<d@YIgGP{.~^%)  h  V h\|?`wV at@5D>3%xc'b+'Jea84SD`3T=# xtMdWVHZ93Sv6i"H QUX,agH> asB}7UJdk0(Cu| 5Oer5+:gc_v]PuF`{`\B?p8V| Rw*o ;%v M(t8u7+#s+GM`p|.f(GD|.>7xuo0LApe"2dQ sXXT}O:oHEG  +5  p *5  vA z<8n%Ugr)&pJWaqN8hcu/4vT@-aDB, (#G _rSRv%I9OP<30:qOUB]!_0rwiW~#afe9 toI]F` ?Tw `SI>}.C$4_fYTvuQ&^sDTA\8 "xV6s~BjkE*vIL>!:=yd2# tW@0Q`|S'm{1m|^i ?qM=S<}73BbCT+X`M9|XVBt(V<vpD !B*vTm#<|n}$~ScQah-Wua4' xe]?#!fas) }mTt3+n7QXs@$. \wMZy6#h/l}r.2M~[lKpl2"W*41 l\x)A7=iRN@` 7AC'pPxTzv/uhK Hmt;&B]A!'A H     [ ffPP?-8!&Ntw*`)~4| 1WSh'Mix^\t _  h v L O Wb   vU97MI)8-Rr}CL2!@[%Xf*a`C=^SDrW@m8I"%TP. 0 7eBt& S ~J `k d @~/W\F>Su}LX]=@NQo2 )r  t `e`RSXR9SL(Y6"J]QSRSI(C niGyTVz**L<"9.3IktpO s(2w)U@ -/`7S'!{7Cr@KMh/odvZdy`D:a5 Z!+Bp_FmNoasE/d]QO=iIM+" t(jdH+JRe.-etv&q.B'= $Bft5ren {\DM7iJ^vS& `,&FMTH\uF{A)s?L<_SOb?yQA_Bg>.w^%0ciV3LO\%T V u  j 1  bq Re xq w' 7JKusw:Ixvf5ufi8}PotVBaA'?' 0=OZ_%q:q|a~0w!sMsq+'u_`tXQE$2nHI-FV>.c:y) L { D X   WfRf)" Tu[.dP~Nk[.FfJ+6d-QIj\{ q tZbfy\;K/: Oaut*0:^~@$8-mCY0=9h<ZT<V_T8O w P5"hZTUD i]6Q72Fk"uKnMpG,xEC&L}t @oQ(<EeBH>FihuP6?xVG:j!pMe) *C\V#W 1R}tA -mLLRBjZ8Pho6 ..7 "V '&o/HiRhaK\~xZ~hZX>ljNgk+ Zzx6`)E+LD!8Mo''Z?U\Ix[(dlfxzuG95d6&d=JK4pil+ZN~%)Qjw 1OIdx 5u?7=Fy*G,Z{407;Di~`%r-I`+c`G^gv!P?>b &cwWO~c(8U  N  8vBRWo1'QMp>.3$0Ucew@Ls3D\vT,_a$qx[Zk'"+3]Q[nME(al{_i(0v)|Pu&}*z<.5.$6wywKJ & p   # ) q - a | r Fi2] Kc'y/Zx20:+ YtuIo1P`Qy[R+'$m+mRlOVerwE`=t/8^sV^;&Il^@J {7G"DtJX$".,)2!ce q5|" m   v oXyby,`rVk.AN{] O K vL V f~ +7=Mge s$ #  0!6q=l'x8/ g]?0Z/E|"$Pqcv9B[g,NooNxf\}-CEs &II )N5$~g4KqBCR[N%AH*;]?Nhm9v}lh=%< @ '@ 1 [  y u" - ?c_"r  MT>OrfP1ybe2dDxvOFwtJYXTEED:x(ojPl5Z9nT^RN55*H]txgSd0 |7N JJQZw3y5ZRA&!{hFOv+e XyHT.IzRY@M%=~%#I+DB"  3 h  yj e1.u4gp;#<aHI ~2hynI-> c/8,^LJ_ec}  :MU6;/:kgfz%U=b~/,# S)5 {}T"1PO/; 1- (  (   F"  `    v   %+bVkn"I%J'wE%Fc)~evK< |sl@CC#|33#CjY$SIYu C|n ,Ar-&gLKD;o2B7b::I:zRSO_=a6D y& Q _ ~m[g]Lg3oEN K uW$C6 l^'&JRUK +OQ2>zq8m+N\ fB2#l0ZeN\PG2HK $jfx  ?{A f{uWpfwc?7ZXQK "T0U_USyu_s'ae7[V*X%DU jKUCP=bgh[c7wH~pMn`+JhsEy@rs|A U)2 - />teA+<<:<RB aa.4HCL G72{Yl=J6Z5A}^dS/"pbXPT]i|(0" j- n-rfQg:U 1b   w0rEo;@I #cU5Oo_=3)[;NZod)=9 }Det<T6e1)$3I*2i D< w ~ S  [2>wt}I$V^#AlK0ifYC51Z Z]CH wk@W<@e8q9 & KM ` } MWzt X <Tp*< N^<%,G}{[Z.`% RLa3N3VJ>S!;lE)dF$wSg[^p2%#.&BdL N[,dsa"bZY'rJ ZoW?'&&Tg8in SQi_8> X/1S"RZ J T n 6  ) J  0w}e~ J~iVME\6*]SjV{&(M?ijoU_}/#@A:_wKl}V"^2ylFQ mV{9oXO` S}=lK,v m<T{pL w <~ D & 4k /{o;;gd-h pBmKD!9xlfG8ttMD#$pX%.7#MS S  Y^|:M'ZvCc&?B)mF:f=yJl9Pvsq+5c:)6O}#9 !Sa1ILuCt# z^= u7{ .ap2 #  /  P',S.sD& w3Y:b:fS"WB$`RVVh?f,iOl3KXqz{=F\rimcFy<ro$gB:!wI%(TTQrVHg!D9 %8l0?Ob(< Z (q  Kt ~ !  E n A M  3d {1lRDKrr~EW RNN'!O0;(`)_L=+>BUA-Ln5-@.`Fce ZN3(QyAqMVZ)vsdE60`|0na(nJ=I k~IhP" NYReT3gh`0dDUS@}X"YIOg(|u1]19=#Ai0EL/N=a+&i8? jbU_t?Ml=j/IhhOf lX =e_S?RmkCCpL))w siI! /8F}(U37q#h.)tH, 8UME8&@kB RL|~ma#T")E%sE0yN' U}ZwCI}X(+H4 Rs%;qeVWZO+k5=7U15Rw[g^ ]/GEs^ (x/U?ON,S0D.GJ;pdS^us{WJ,IY;=!l4sXlh3)h5MEf+F( ` {MWr$`B =KZ.Pc*(zWt=c9t6EuN%9 | DKOP ~_2Hb|X?*C 8,Sf =Xgd@C~C3_ 6GZ2 1<g2J ~# z un h X  p*.0=Vtu6O[0/'{_y)1Oa..^=L:u 2+]1>5 mpMp^|;uMzf!VhasB~@AJmBU*_0"{'M0\n2L"}.v&XQyN Gh w6 46 m V  1 i w g R 9  A( f i x^ Df9#E0M"Y81F"A) TqY4ltI?&Tr T>44?Zm?I`Rf&MF w!_og(&TJT''1~mTt@AvhF84 *fpb`#M+~v@O}yH HE=%29q,bOa5Hom_d:AZ;;fYB);`+&H{ ?*Y=(P[]"o@ygj|F?d+ =?]9+vM)D7MqML H;'Szc\.gR,=/3"i6.hry!wLi ayR`9FQ sts.?Q#=}Y @0\d<X 9rDee {  2 ^hxM-L?US,.m(DfcK>2Wa jA JTM48? -d9jn>y kJopIXad3zn1W%jWsgemH5c/RVJ)}?m:1;&ilPQT} O ~ 3 v} / a7vs1Yms"F3T}FJG0 %Y)Nj f5yZ}&=X 77$(74~CT N-D VNK (W`(e:o;d<CL}Xe6`}q@RXX.sqsjqj7dm\-_Cz`T]7 { IbGo- Bo$6!Cr IkH\+.Tzo`N>-h`F);1"_`e*tR`0_ev+,|?EmO/&gE8tU{TE (=]plI>PB4yWZnc?ziox% w c )W;r _Mr`5wM@2 &EoKHn KcVp-wI^?5dS SwDH*3M\]Y/v0~4<oT 8Lb4LSiY(c%+RX(2':z t.XTq--A?,@+RB&>65X$7]  M#99<<!/R5B]tH>lB'zFRyI> 0PJ4TopSw )`*>*E}95e;E[9J[++#9}r01=399.!x- Tuay]q_+D#  B : c ( d W # T -4 !  +/-Ei% mD0p[Q3~+_h8;3ka*p(Ef,VnY"VAm}m7`H?8aK`sHWW8    %:n~oS\`}&n. $ F$GIy(3$jSehAwL+]$ #/xWUT{y&)^=G`go-pd-zxn- sbJ^t|rYWC7J`OUNKCE:SrG;S2@rJe+SfgbZ-L }y9|X1Ho4}2:rGCGPrmi*1 PH&^yF=U}ZdvAi/v_ (7#yO-7>fz a~| lK#X m/ iCV1U5V3 Oh _"TmbizpyX[samXxsTj6D>{v&>su0 t. [f5oYN~jNs8m(hvOdx-6cJVeH/magri\jv$_}@]Y$;3WGKTl<gP[vc>DqC)\]G#EC|B%">"qdW^ cYxqcw=@)BWx AAsId $ ~ m  =  5  >  6d\>o;RrXTDRaHOA[8HNxobwt'{U %x 1P5y% 2@5VsixB]Pk3VR>"x2tOz4GCw)8Bi:6,LC JG|~lyF. BfY,;MB`)|${y4 <`}:V>Q !@<j?1MO^g*jkA )w WeXcjy ]j~[1:N0N[ Xw 1!$2An}7G3Z&28CN51z67^g~OU4 'lM[,p) {; cNNCsd8<j0yul9{kHe4}0(SQQsFJw 968:l+Z0 < XQb-``.&:l!2Qb)qE\|9\d _,\yQB'D*r@p!brZu1'IiYGnBMd,g;I:;(0)cx>#KN6 2'K??J)18G#I hmaYBB1xiH9e$6|ra979FLlpLh. "'MN'Jyp,}"Dj1,g n3d-I=T3V F#Q+ \GAZQz'n08z0@"t ~8<~u<8*WM]Sll;[I?LI*`wcN)D/J )X3WU<$AZcqZ*PB69 1DRu637A 6n{[eFU^,y[l/@VB2j2P,0!%,_`J,+7ZMk + ]x(#>lS#q[TMU\7 _MhPrq/g`*kMQjb0& fv>U P R C 6 ,  . %f  =z RU'no,HB_;}lm"iM($61 |m1laUm+}v6MhO)u{|B&}\Q~@%iF4tsBHk6zK >;mg4? &vgqwJD(q ETOWebV `5B(t!gu T0I;)Y=)={+$YKE} 90BxZgVb"|o0}$A c:n z96@+HXp~|,j9grk8MC|u'7K"OV  mYjZ<56lu3j9y&RlV8.s*Gp&.gCU;HRWcf6!12T?]@?5JK`l mgt`w ;pME^DiY7`+Lly`y$bCD/YzPAC2 -}nM3\s=zjVT$OLXm DL\;;Q]GC}NRX @Hn=^e4h'/tb_9ZSpm s[(YT~%l%X]V+gvK=3FFDSo?7`efT:QmM\s9t""B ;*l*l ?1 :# WtW <&RUxPUsO%Bio$F>BIj&(/^ ^-NO E/Q=jpf;XL{M A= va\qG"8PrR=u09kZCi7xp)Hy *!27 uY5J4KpO{Np8fZ#S@VCD\E{mz#<M<V_l: i1 [/rq'1.76MTK6qyqEtzKuZqb`VSX;v;C!|#? 9pZ+hkAL1Cp0Mb? ed5!\Nd9Sw51Tv`:#c}TkYr-zS OZ1F/5w]iF>(;:^<@9%Oa^qN "wp3  eT"K Ye|*L}pOQi 5q`stATES6'oelX+fDL~f/B}sC0Lz$}ilLn9:j"\ 9nz82(hd3+`Gx+p/BD+CugDb`bfRl#(9<])bp&0GC]1[kQ @ B~\Zr}P`E}ZQU&EF.L`OIHsX-r|8zc  Ey[]S=`v[a'g2@|&,;VsI5|<6h 4 <(Y *L8tt}oh8Rj pbv^  *QXm$mL!K%vD"kt)<Ec'"kZ=3%M@Y8'KBo*%uuG9WY+C ?+I}p 3s IK]NwSurbe!)Q  El?5x^ " l hjgtuy|;1XB|k,$K >UyjBVBaX_i1]<%0]\_luPhQ?i=keT!cD /I\!y R1267p ,%+n!&{AS@PLF5 <=! E o^5uXJVlqbV)<NGN^#-LE)R_M#a6CfpOQ|;:>  5E&DEYHQM!9wtn~3m<Cu,Nq>cn2Wu0~CmUjSkO#|qQw%4B?$PrUZlWHrkN*gtjD?J)`%ed-&.4P1@ht4EBj`X]#]nfUT^w +~|BzT/0HthllBcn & ) x2'Xx36Jn*(o|JW~{fm%QH%SZ-B%%{^_`g;P~"p;* B\qv,0Sn%v-sA}ZN/=#FwZ _7S|v9-?KHucHO[9G!YB8wV73; -v#.G TWl /jRXTc/ Mz?] DR56wInL_-5XeH>.P<6hn/ e\xp8a # Q.oOON]RS7#uR/D3WEysn*9#E')&O?Og6PzA)7~U@NMxiAk9~#{3"o$<`J5?Z%O]Q8ia:X~A\bTk~XQ_}mG{5iZzLrZ(~1{lgH'/( sC=%[2 / ,{,aV ;5a>8J=k'(!:;e*85} .Jzd6paBCB;sv8:57q_ym> </`.n[ ]7`+lBR0M,s`)(b]KbRE&Z,uzV%N%N7!m<p4K*  m  Q  O vl|Z=a<sF|<Eg%Gh6<R`d>wD8 2sA#~]*ZJQ0U?!  \*JSJa6'-Q'l)-N#l5N17 yYX]S])9}%l.iaGeEPX[rvm Q_SKP($ +m*d8.RF4x}4Ib;PVlO<6bec8]'km ^wijG`=mu.HAO7cy^"7ov-4K!!v968Kbi8aaT4,>HIiKKKlM"SI{nj3k,t9EL@28 C|B{]!WT8hh(OZI%g{K:$\)[HE9*y2lqq1os:c IK I{Dgc)"gQ3Yohrj~h-#(dd)p_(lJYd.,MqsF#/@V{Ua;2k@Y<,TLS,5GFYK>Nbb 39]S6BM(N( 2`( N8:gNnZ"wT QOZu6s~rc}&#<7;W F:EtZ?mMX:bej-v<|D\Qa5t>#K:3*7aS=.F$%yN|JAk1\`G](~NUCz&PmRqn#(=*aMUT;SuoWQ3B. {5j@/l\~\ Iy2:VO\M%5Lx8+)M]YYruHR&w1M3I?3P#dhGSat~ p5h_WL8Hr[I_?f'~<1E!P~gm#t|`=y!z>L* 0G{  $oUV ;g:Ts w"2J=$OQ/UM(u6v8q{%O9pR.!ZCr^\<Hir\\h]eEoU1a <-tWi%BA*GU&8fmct:(Zl/JvhudFqMTv |rGBTlkx-." Do!PW@.. BOG 3AZw;3M(. 61vF f^ /$s6&ms#M<h:Lcb{>O%};xtFn)Czx_GFM+XPw20o  (#)P0+W5P&}4?n'#`X<mQvo}Nx[1>1rra'M=<LrM=H&\3$igV$'_x5tp V@JTer|]D}Xa~H1J1h}}|Y{|`# dA9+ROsM~^t" E@VQSwLWTDRG6w-PO0G-Ni?9B!B\ t$"1OW rF-#0$$08g8ff]&!}W|]5j} 0ViJP .7<;Rqsd\G:IR6 2[w@(,&OD#+@H; l';l2XTS^iP &+7UIYTg:/z1Ja-is:/Dk2 bPX@)n]HX6^QhrQc9S3j]qn |zuD (KxN4:?o C v?q[eiHy#ID>1= }PAhx!6pX W{6hvw%K^+EyZ_!uhB/6|DgF2yBj6z- iik[~xIw}LNS( })Tb7 cq-eV#w2J"<Wwox{n_Ob[@]C"Q~o waHRY B`>= q@$?_:$b[Fv !z=^GixHW_^bDQBc76OSz?LPJyUw7N|^>:Uoe#;fng "\^k=}Q;r.05T9a< z:J5 Y?D'+ I^M~g *U7JJ?Bz h-h:{h2!sn+_BUu+,iHXt>_fwxhSmoH%ip6^P7 (*]UT3CJTwCE$R.G MnR#Ok; YC@a|Cpf6Z>lykJuBxAD f`Aw {Elnu94[A@e"xhQ.@oR+"d i^o, jG_08v#Yqf-( !s>0W)ndjN~XH* gJv+C@Z-r\+1V@:nut\oE5 x W@C28%D~7rc~X0+ ~1^z]g|I9AvNq@Y\<iy k[< 1`<RnC[-Cg/jyq \;(`d})j`1p'PF[>f!2 (63,NZ, !~pV9Q,#GABb]Ky2rn[u,Uqc!:E?L0n%@LAhVV EiLn,Jidq?-kxQ 1c1 'skX*C4|^o9-/R9e9"Lp7oCwr/)+ KiMt2$fO:{P_ZbpgqV-C|gaqSqG^ogKNc'wO,g  O:_2To< l/8{ 0z, 9-R:hB%%&RV1h J;OQ {J}XZrV%jL-on}(j)of+v_*Vl3aO2QbK)9+X,shXi8kKG*<Z"[k0C ;#%EEq_I 7E\ E MH!h8USib: -\K8lwSwo "eZD+g"p"VX%+HWdV*M:lM++'[S TrZp~\8F)fmc,BG2KEO~4;<_gg3uIbr*>[$]H=NlM~uAluZXc)I0!+&% W9$FY*$+iZ,\P6[['5w7uR$(7[4l,^W,O[J8c[Edzv."wMRR91(. >l3C&!&wB>"} ;BM)KLct?``C9(1EHx++oxOciN " tc(.};v}^wrFCf NF4'e{Rf Pr \C S,c `RTg rgS!_]~!&-q3p8*w<#y #$?ZnYM79@l8XMt4I)TFx&Jur{<\qM#FF":Gk^8rF#,+n#<SBHE]  uE8 d?r*SxPvz"(mtO( y T(Qaj"oT@oPPA<RXuOy]K+JiSpKQ1]$:$A(PqIWj05' PlBk^x/qE3CTWS3C3M6')3, <# tH--W=r 4 ;]o+hl3CMD )t/47&"gI&-1sgB& %"v ;!r^VS YYEH#,4]-vtLWRO^>=mV>_["/Q#mDr)YH{*0GsZmkHAkl>4{GQ3]VlzX7C3w [:Sa:IGbD%1"feanCje[p^lwI&7o"M/aOWP\x8 ]3oO)SuCTeo=+mSW[MdeQZtprpWq ;BG`@CjXpmJQb_}]t;u- Y?`[~/`tu(iip ~<>IhX0  )u,'-cZ"08Hs:^T{:7E&)..I4{dkLB^ cFq`d7QgVD' =@ >T,z)h (DeUP%3'-|D*-rLb1iCXdyO u5A <EA=MJ m1^v{k% (8x yxF /N9< ZT? /KLn$Lg#U7`+Ce;^:2#6BkZ v. bSNeWjM?l{`D&WA_TU(JZ0VR jMnHxNg]fy^"yn Z(3KSWneP /Ij BTa)#'ttsSWv3+EJQ2?v1Io}Wv't"^^)}`O 0M3i7+Uj)NO$b/Q{s;yeqFJ]WwKl]8A+n :Mh4<U|v^S !.Tu\( >PUsR*;c`NFeYdB>wSSG8AzhGh.$r<O O{3eBWU|8Ganm]H< E8Hk)eL%O-9C_1lnB= N;WUif[`JK4nD?%{~z %~.1lvPlVQ-O e-j',j((l4F]igR7w~/yTgaPcZ|I$x@}+,^L,?lQ-s7^I2'?D5IB 5,;NFvRan[0v !x0uB2"E/Q#vDBEZ$?tX k "o p _RB6L|pp&QBBZ?jgAO ij#0v*e_`S`Q+XqDvG }~]ix 3F)%BG# P/Y_(poGJ'`CNW,rLFr\>3pl!a,~v SNDde m9"Y)c/!bU.1,2"3 f[mVak"lyNs|+4fiV -f}yI m % BsguC WEeeJ:5Kt[Ok(M<"\z2)'"m.B5rB;5-fersX#'tJ}oM:TTHz31Zn=D?5GV 6<pU{{1h-99<-]{mI2{2[!EmwU\!-YZ -.fg:9X1@|E* zl0JEau~jxYX#YZ;K* 7OVXjKJvFS^m.YmQ)pR0=QQ;JdTR'1w^T<oV`rDMK0iEDUqKxu|L1rm5 !P! z@~"9yLNS0z"?!7uQ1+f}%aQrqoMr 7_0l?Gxg`SSyrANQtA^ H0/SJ7(/x-2& CPDQ#}4 !Z~`(/RQL.<6HW{) ^;Q/3&'obCr"ba  amr0D^ tV{JbnkglDDp&aZNi)z|5@I`P<@1XM`H LS[:OOj@XVn9)!PVEjkUz<="XfK,~A]Td $nF^:Pew^U zXu&'h.& $KF8m]z(-t-jl?qQ!W`oiUMMHx%S>gTY1i1A@XFdSGGg{L23 Kn9We(IwOKz.YOxX$ mH}?*=94"/dS2J]*+"$i{YcNVBGzo Oqj{ wpTAUh_7M`>jrY5fU\QT+Sicozl?<}K8T]';{<.~pPl"<uE f/Z xnp A#3Cf%% 8&yx;%6}vKFvp~/lomZ^&EX.?a\.j+<- +]KSNMM9tnf39&;8Us#hL"}gY4>m\W)c1[[ o<2F%cuHFbm:P} 0^f O& :iRv:}hF 9#"\BxL* a x,NUuoE{Xf0,CNM }* kc8 `^gW !OM)@01:0aPl/.NiuD$-4H3`;yOI #:&KIuG\"&#"Hj-4>8H1I JwDHl+A}sayzZ6Ec.J'ocnOZ"V+RH7{2 T.g~PfjP4tCBkw6TQ)-U@z,Ps[RHoK$xMfmvqi4R(<&dyp)+=Al UCB a!CY}{() p3j!O4?QE+9X)^2Dx;4n2:RPA^$#YS0!?(!}p%C3JTj_$j(j%_#L[G3({qbS|}C0$EPb^bb(Ii &Z{ tXz!E(~2 |6 Y?HV0>{dM;- sah&d7~mhC-~1mo&wKDv`up'w~Z"')W{A>qLbU\qN5 X~B8cf/bye}UJRP$)}6M  HPWW(f1g#dNr[xcja~Q&d,-Xq|ft<%fqC z;v=}s==(A <N7g<Y L7qRoIyOIDK&2S4MGqi!Rj 2Qq44ya=nr9~P<'6Xm)9O\,C /)N( o|yn}/w%F9hV0fgs ~octRU|a!\ 1 {7G7:;)h() -*QN U mw; ;2)kj&7H7.7XxRi F0i.A)$Pq "SE"j25nw\'H+lbft$a[;O3ke|dX(iUtPe,xJwLv9?IoTKA3^ uI~#e-*_>M@j*\=Gz}Ls9T4::NwF5(vsuPVi}i]T8O (,_ 0[fpx1*s`T#mb?G)-9(2}HXvK3Wr|B\C='D|u~tjLqy!)Ta9GJ' I;`aD8RbPvm+dNH9B q)Anu(8g> aVr{ CCCQaN'SSDs q[SP|>  XO:~7JVxK% _/M;HPW i>)(Cpo o6S"bN'R%OG~l&LSGsFMb\`.&-U1F&f&icB 5O`{}MS^1}K?vH%_>$Z]{/&*T@-Nl}Zq1QVi]g\l*48LRyz}> rN$b i]2g?|p+|,@&?  })#kZws\\H<+;qB\x$O5I(sDbwzR (e"UJ\_+@\E;DFp1`y'x2GTxd`JUF"^h N8-B?j YYym9S9}. ~IEN4XE:$=Xl+ NpgdE_ M?{h&$ZyE!QsQ#$#|6O[ca6s[tyt]U1E@}GE]pozb`>r4js $4hyl |PA[$4?zfaMu^iP j,;ZVS.W{=}g[6(!U Ks 3T(1xvd8\dSXG*!-.t_BEULTd\QYOLIM8J;V;QD|)*oa!,r*']8:YuyM*+ C ,G76!7t;k^l|lM$pAu.?.X]sSzE,Y,}#2wkBV%y*_/c0vX5!_N2T4Y!y#Y$6F+NDHA'^513MLVJ\DVrOR TF["#q2` pcJ(u ["E{8z*BD_pS:gwb %15cy4H H!{woq4K_:aV~cdS%j\C+iO -1YKNcx76@&rfQdZYaJ}?%ItAV&~5HWfDj|M;?7ZY&}#tHU63f vsVLE-CmA<C' L H'NR'14'2 d"h PHdtbafwb>O k{a(knqiCbhJX,Zn WdxH.#M'z9;vdDO? AeXv@:*P39  <60+?[kzx-C N[~'Qe;Ob2r/&IK%h/wx+,so#qdAKy!(X"FK\bLTxVLA*snw_%Rh5zkhkI"F7;w=[{<"kv8{A:?PH~)JlP4`2ziIzjC6  Fk1dzur4} 0mw t`.^-QemUa[SBH2hn;24`Ol,Mq XL00#j>rkpAg F(%20]nGU"^7^{ =,";bzX-E(=lRn5rC]^"[` M`%-76{Qw-r6VKD-Ca .e fw.?#Q[@poj1$)h}V  g^j834] 6S L^a!2U_s\lyNG/p wi`.am(K&Nox4o>c$1Kw'a s}1H%ZA24 Ou@" /\RaPr\mjivwJZ+cOr].B? Li']C)c~6_~lCt`\MO 9 .8DmYE,cSr{=2N#hsw02Eu]@{ /ZHdhu6Lb 1p&vu*SzR3UZh!y#UaYm)[W&ar2wuUpvzt}q8iuF.G3CeVK]=>t^C`_[=  .pHT2v&m&48'~~y*n IR/BySED=s/~q7* l8N+OO:R"&x#7F-7MCUj*"vB{wAD~G*1tPwZe,=hpjO)>}_);2uzG d&9!n= ]K9`:3SwQqX {l "o<gO#Q7e=^SN(UmpRw]r-N_mS#6G*{G<[*8O7G$R@r <yd-[W_Ph^b}  PtxDZ/K>UM./tI/.^Q./CU#9IChyco!NLr?BL\{G^dq Mua{^uF".~^8 |$W.#G!eBTR*h9TN^ 29AY~skD c`I)qZWok/8x=pL.acEXc5JE.;b|f X[FHm$@p4!b -f/!efd S?#_e )yFg ^10|pBSjO-25 XycbyFa lSgnyN7 $CfKiBq6P0e:f\= N-SfrMO4=q&@% 8g:h/4;j-#  iv2uO:qk?UoT 2,eGJuU[RNe,YfTqepq7 qw(xVk~j \sfmoe[ X-Tev\f /hy\HIL ?3hU5AF6#H_nz}M%4tdna^LVMj3dq~yc}4ukOO*8Ct)e3!*1Pe]G3;F b_2@zGlEb1Ddkyp\GL!e ,eh A<UW zE_z<<-#GYJyFHoi+Na ?eTbRe0T`7P4u!JxX\!jrq5YU.pGP h=qA>K|  >_9QW@ 8Fe};nz/ozy=&`w$zaMHejSJPdvT\vynE/4I ic .NCk|a=G,~c($jP-*bK15(9XV";pN<(CQtm4R!D@ZJP2 uxtNGs-4$Ir[k,+:;WXObFQ Ywd*a8uD V\EMcWzpNe7O1W)G"6a&c ~}MKmZ+~,Fc%13p <A8BKHNQ=|k u1b}}8DG=(FFm^G%S!I*2_NmpmZ}L[`;n3;*n%oi.$+gA<.ma1=~KZ{E> =>5Q;_D- R\Ca/hG~eLqrlhJ"G>Ob xKaP|J#U\f1J-yCY:&Y1k_Gi4H+fh/gq\w/qQT)b F'=KX_Dn:/YT~!pLoZrmYv`]q1=!B%QFy[k}6Wx$:+YNw~<jW68LXK50QzL]>JEtjtQK?%gj}M8-Ht\>VJ_YJQ \%jQ =O.@8]qgI`'hd#'3<"NRc#%L]ND &<j)VD:l3hY:)7,/;\Zr?IN Dul@<@_sHN'+kyKn*8L[7(  /@xMO=M/9'g42OGwGQWM8I1?''hUTyF8[i^-0R % yOB4M/hYi/6p3dK :(ts-loVbu(]n6?ZTlM-R9 v H"Af%h:Q7*{DQQ3h/q!vwT9qs}%uN] |njXGQxBm,dA}|b?Y.rW:#@&XL &HskAT( $o}.%qS+>aG-a !#LB_MGhAIEve-gz(9yy#UAV |l &|ONJ_r@,Uu<J;S28#~c14Ozj*xs `YtO6G, 'Kyi+5U.*H^Xgs!6<-Jq|CHeKiL9G/J,r3($ nZ[* -Mp +__Srl-b$~yZY>;dqTt#FsD^3+r9Yyqpq4k>Q*YM%u(]Vy1Hib>(B{510psV,/:|=E+1/Zj.X }DwO^tD\MXq{kJhMb:bjzH}N)C|L LHf[OLCOQxtdn@^\Y7M'`:oP{su4t#LXY zgGO~?x[%SE!*5!a(  !3$~1r.YZ-%x56mAH"@>|8PS(J~B _] jn/`F}D;]$aM~uee i|J|%G_NtpJshuW;vW9BiuE")sl{tKx/(a$ 97@4(K8sha|c$'lq;x oS+r/bkr8p w2$ k|1|0W}\wp1b:m.e fx4v. (H;>}^ pdqo& 7t\` `  Vq[U=`Wy~M(!'4v U^G P  4Pp'9Hgjqv=0Av0Hf'7;qTc(n?~Akib%V3jr HpVv;=KK(&OAB3tU YJ6OX4M0A= ukHW-[ $^'/,?|l+htLtf521]^N\M0GdBHmV/'[+9g f.#5+"$_o|L 9y'Nwe>}S4 +u337O'-&42{H= &KNZ2 L_Zemt{@))#*5?O}O:E r4?3r4V>Umz4Z @lQp;1b] ?<^?1P-fVltw~8:` {qWjE7'o$yQ98hB-^C}#I_0U:#MV11nDO'(Cpc{-ieu?Irs2y~_KM$TqGj ]3"M"n~. | ]Y2c$+q)g FXp,aB$Q<9Fq256T (mSxS^L}A|E ~OL4'o O7E/w>p~4qK+"w/ D1/O NQSB[;-HX998)MDv3_Qc/_C$'U4}p@zfDTPj e$Uc]QY5F.DDDsme VU`jtszisn#[sa]*E I-)ggz`//Wc<@_jm'3l O62tI6f8Q2&{AO]Qz V,1AZ@R^j|Dp4H,nNa>U9#OpL*5}uD&x+t74X v "ozVro&X2F%rH\=t[h VJ*"9iX4Q6}=Xyz+KV'lyl>E;YwV_ -g2szl-PFI_!tzom v/E 9>(f&c Gu{khV9FwE^^;YRM1#4H16U0kBpX`w2k&/+6`N_/#kz"Rk5T:Ad!mRM6p{#p_Q!N#+WIqpb*jZy26A)"6#3Piq  $(HbnCa "]5fsj]`E+,#CGl2hU|dX+:VMG"+`G}$ N=c1 E '34.H4GUT%lZEG1X4a^R%nR&<ur(*}#jNvrfbMTjv_v*!Gywo_j5iq`m[d)) \PM'zpt^T]*w2gk|w_7qiz~D|:V "W]X8~7SzsS;m9uLXI'|5vl/Dc'=LOfxqK@Q2hq<p- )TD ({ * dK)yE<d*-EBDDG=W.67yG#1g9w\Y`b; rP?}WQYWa|'RQK<%n,GE*)&Fu{Ol@/ #0)LjG(AbM_KpmIXLi Bs|tt?cmnr"MqJ%H/Yue'5-'5\ HR\$#AO<*+]49nE{}=kJ!}\X6j8cV,#?Q7[5f()axuQ9[Gd{42>`*k Ulp^=a%< NA+=o&?ssm.3Q_^cgZ/NQ8z%tb 9vmxe KV>m8/F.2)V zhQaP,uov44+-"^[ml5a{EuHIO/|Dk&b{ n:O5<9A~BBI`!Cfh-Qk\e;;y3nDXQ2& "77c@$T$}}.]oI[P;Q#XTNm0a>X{-K1>N/ VV2Mf:p!tA)CFFw2gKFoMF<'5*S>YHqF=R+%<7MNA3U@+S8yfT?,])9KRQC+d)S](be77Riy:1`NpzrjlCoeiq,_)*3]ow\(ZA_6>L f0n\/pi"E o re~c&?LH2s^2OtMI"e 5S+2\xqlkq8e0g`v /~,!2c@WlPDrqjT2 r. S(f#ZyF4Ye7uyH&3Uc/<]"MJ:mMu6XgR3uKhEJaVwf62l'Y 0 y-u=B]E6DSx\;htF#m}V6tcn0] .@ .R.fazw\Rh U|FXwYmG=3^cNr&V@T HfXP.  h):; **6~1q%*t].vE; P{r4kun\_~qy9{N0?QTx0|Dbg)SKu@g @]}8na4%/h~!VPW_`Gq,~p| m"/) t:Y\n_N?iBkWJ|ep@ x4y#9]Cj{Qc  & DN)k+ZCdBhBCMHKaeyd/$v0X}>ZD3C>lrxgj)q6~_P'paI:j6viEh:4vu%V_ ?Teh-YCCp:AMYreXv`\w~eDD*uHB+mC_l2ZQj=!o\""Z2Ov6 Sf <ta8[ FmV0BpbR LDXMnTjKmR >-u8MsIUV[#k$Lk3o~j`o c?J' `op}Xe%H,aPsT8<KdD)'\PkLaBN;<vyE g5] 2ZZ[@2&GyLxt\3HV=Ga509McHor>wk`UC69X\;{)5ce~KFe)8'g+C8&3QJnixjbJineF'/YV sz_IL5nH:&K$52^h0%!3([OB OT1mq 3ZL3 =UL30KH7 w(m@<Y+pB:QUyL -0bSdloxjXn&p^Az&-}xc^;I lI+ }2C<$HW^B' [Zo4Mq%gR GgU[tH3IZt78e?&=sU(FD[_-MJiGv\J5"2{ :  zm\%-{28^{XOQ>Y=X{o;}2rflW%k"&! F7}, A>,#Kww]11 d #jYeyd8> + L#WX'1^Y% 8V6# j<<m;nO>40ca_J7vXgM/y<< OKq5 erJ[9'.~Z4,L9nga];;GXx- ^ LA{8{B)I]nvlX@G<61/*C(.Y+\>.,u+'Fc}F]BQqkh%7)m AzT|<-QMmC@IelF@ ~?GeH@B;Sw)vrCDm\ C9%4ikUlX< $ZCdkf|cl Gseo%x:'pa>-KX ^o*=O*\PfEo#tfXQRPM/\.Ne#m4Lj,v Mk&Qz=0?_ D, (z)<pr V>7vf.Di/5fvQ:YE~GXNh6A:fcP9!t6DvFMvvL,6cv$i;n~3_*c5t:7K[m*FmqP4Pt/+kq^Q0NYsz%erHjuR*t7PSjQ@&)/ uA,aJrX@1Mfd[&VEO[A{35&ua0m*$Lsc#HXl}s8n5}CU<@b(x"*DSo|\OL];%;l#?y [Y DLh;31J$&\|\|mN|4P->2}iJe4"Z907u3ltKBL!^Wq(R:3Pnk@/Cb:s $%_xum&4}4y{ gppbKyR<OWsL6_&2]]4Z6V"Nq Ybd}do^W? -B--"wX&7TGQ2Lb]V$ g%F(VIrM!i~(2zwlyrcj@ wg{wDOwHX`1q@yb@B-]!}NCLDP* ,,[-~5EMy8yy?@.?:k6kKyO:W"HG@Z]>iBf,\W2h@}b(r QMg)&Yv dv&pyw`!F/bgD& P||NMq^Cn|*X!JzErw<. .DdFJ8#`'/(}$w}@GhxZuK,QW7f$GE!Ez%ITu+Uf#|<|<m'CwG^i' ~gkO ub KDYZ96XCjVr,O/7".4+"Ur12C$5C*u)qnXJ7 }> "g[k0+7{";@xu^t :^2"ofq=wHayXZ RXph&84ODwXV<]G{YO\<(|"Q0f?nMtrTSXT$& .bi3@LM`G:s).?(" B */(4)Z0 e,#>Q H]lTSV^T6.l4glt\ ?DAMInYm>x_?J_'}{W,^J> ]]/"Ywz(lHf9D sV@iN)4eSBE#cY9`m`=OoOhpwZuw{~[E95V9s V'E=F7g*Nl?&8pQn0ZV[-}7RSX:xuZ`f+9`3RoE5 |S|f6H_ OiZbvoH#~Ef,Xz:zP}kLuCG3Qva8AXE!5)?D Dxm54DUF0 ?JB@xa25o }|U>)^Cp A^35F<^2&ohwypDv0]vd Z3]A=<AM3v^ktc8yURGTYk}q<F 7"`t1."MT,-8]foJ-LX4[#5*GD"Id65ZP`$ou!,#v;$k`.+:}>Y<sAalJd[E'-tsAw$-OXhXBIp^Wgd/-*M Nz1pPp^jb4-/4[ 7<0p6 )cQt{{R j k2$GgM:9XLl#wq@en4XaX 7D=zANlH* >Ts'HC{'I[Oj)8&H.+=K^\^7WV` E=5V2jOgib}/*25230 '.)$b R$t%J>fy8pEz}$|l^YE8W(1@E|6et&PElaSM%GBk |Z6 "%^FoXOIk"*P B>_r2@*rs{n \-l7B$J,"5r_<V B=`GqiDA*&A.w^&_HMD:daI .bX{hs[_\B]?aa8+\HxxN0.>qF{Aay&GW(%4Xm R8=EIsc2p}!>+$^Ub_w d@(4MCRSEj%0fU,M3w # sP/Yj(2]4SYN2HW OUX;mM85fb|A(v]Y#@ ?=J99v-: hRof(ptWn"zv[ CiHL_k9~op{EOmgiY=BI4,^\&0hn:LMcqDL1,Vp^ Qui5 'CZ?rgv_"m+@A!g=Nw.~B; 79MI] "7I+hNBfBc8GyG+tbp.|5PHU^)W/U RP5h}VYprz;Q#3in TR<TMsBE8iCN%RVKkp3` RbiJ</qXDLL-+Tn`,\As= |yi-8[- E > V <3w 63~N?-}+x g-jtJ0","9<sO 4FzS3Ol+eg\F =MUmx%{f0`AWRr3YFk+p= 8 ! /d`{F.S$*VU"F 1s@*YNEB!+~Le%Aq)Q a/!ib;zL/ 4,YSv~N&\Rk|kvP ^9=3e6Gv[.$)_e5fT> M >aT0V a-<T:O/9*o=kR(m/KYO24  L@Y|fMgHwa<2AXg',y Pl+mlk#e`90@H ee#H)|<uwR8z&h&V\{M/Q<9* >'u$HUGCt>&,g># I+"P)!b 0-j[4  x(j4Q G?;yY'*\(SSt@_mN?0NrBu|P NOGVsU)DjnqyJgM g7$z@*^#BUv#6& gCfBQm#[rgtvwZn%Q]s |-vMrXtkRkl6e?Xyxm|Q=n5 /iDby_$5d:v'QwDrzqNb h- cF(A1?WQ~jR^J7o^H 8|KrYV|!cY M|~jQZR^]p8q|:e{o3MwgdM5z`W#%YsD"cj #a  2hRP;1?QcKp{|'gUSS. n5*No.5:<D%!-3+ClE1sgWvZ*wluxWh[A2;hd<if].W P6 --r3 Zn2$745v?c~C;p.w&Z-OyI<14]cRm8T;+^GJ O :e&Abrx j')E>'&iMWRe& S^K@I=Am`>X_=:aVwBFHDpR ( e[y`Lo/9$rjR}2< !?p3zG\D,ugjNs 2I j]& =i :0q<qZfBrvVKqXNJY> 4Xl"+}SUUz&(*O6N/{2+g2:O4wza-h^bCL`:IeUU_x5;yF Y%]F 7MhmiFl@m 3,Nkz\3a[-H{xd9 iCzd1i~/'"Djd=nm\] GI-XI_hXe P lU`B9[KSt1rNTQ+OfRsXW)tFAbXwOxvt{2m4"1X3 .TYma&N,X1 {+BU4c1M~{7b'e]_DY1K-z6hH}&SqxOQ)#.kHQ #1Z`ve^z-#o. :h}}[EE#5Z89EE);JvH" 0#>0$!Gtt9xNBx r@pT6,`P5=APTg"s(hF`)+ P8jD.K[\n$.BlbiPt.m_W3B>)  l=a: y.~ Cswv}M6;fU5EimQ[M +f`YA;4b'_+|UTN%][4xidhB+EWGxa&R%ISw,@I,Cg Hj[H4jn[NwsP^eq]TH;\68L:R~P z6buhpBhlx&yp'W.D=TA{4_RI !HQ|Mj~UE^nPrx} Ly@uN{etp^U:{U <FSWX5cM<:3NC@FM; n{g98</#A#*;]jxPOJ>ZT0$9` Ddnu$1MD_xQ(m5,A3EfnT uv}lI){%<D70=Vi_>8AjqyiY-qa}>B6&5(L.4,2cXuw!by&?/9E=&.G>l &=!]_mzL h, Jn&B[W % Wtc/_uBQiFY 7]@oISNU~Um\ABS~a?o} 1PnmL-eHr8 (/f| .0kCXQ0D@UrsH17Qa\=c)'_)Q3 @l~BI&t  z8f )p(k0Jc;C:8 ^hM-2Sy~`LlRM:WR_$ k"M[284/D-OK<M3}4;Hg';fZBcEr]sv9Vq/ $33<n0&/LrNczgC%~6Yu@c6/j.unKflY#12idys$ymD&3 :'Y|YCE1sB D ~ 4fv+.d7QN8;49X2q7t;Uhl)]t j&^6}E%/P7h1eA \V =F&Q: :9RB91(ZgV U7evxwbR`-B!|&Og1nk[NeIF>Mm}~2&V2j+b*x U? )He~3XizZ`5qD/<]=D]q{xziZlR>MB~. #%d$  E%@{g.F w %R2TgvQZ'QRfifKp<.O69F1 (u'1XZ|lD}mJEz&:_tsH0FhN"Z]K- hG2IZ=(#Melss:q[=.$+>}\coHu+{tF*b;;5,F<a6=Ei~k8}Ub!05}B</-u }l`uC1 5?MyeS(& 8D:k.]9K|Fs+8#'2PtY *LrY*AZ0sG Q)WpZA9GiS#K@|h-Q7o>FVbOyDdU P*r]:!kDj.{iH=9?M=.W)LZ/S &i@')V4(GlPI&(&;7C[S_l,nnVjH:-j53Xvo@XAnpkiD JsSb>Dn|B3J3@Dj"S"Cm"0D6hY>Y.H pG|-Pnpo9r[E\8Tr) m5lo k)H+,/ N K!F @WzG\2lr17(U,o/1$6D& ax"^Ot~syssVnXmV8b-;Q^XcjJEhi[+x"O/mE 5GQn^' ^ n*wf^Nnvt69O]w+Y y2mSa]shm-r&LkB|>u|wu~lY]CWFx?aDt]D^hxw)dNNRH5kfdh2]?gUQdtVI7( (Zy3F9fus_de.[6hri`c6mn]vmG0:o0Nrl}=P1jTY18'a-KKQ32*$>.989t+0``IRz Pp>#sD!,M3%0=x<HqmcT\h6,J$%=wD3# #CJ/wa;xWu#}>oq@ u|F;eUy0"v^ZEgP+kE{1m i  G}=KI C63>; %=IC&+%2vmqhLkGyVn\"P']\>~+ !3O[]F$fU6wRH*o${H"d w fZPTz ? 84?'k>K3^z+kXZex_$IU Z[y5snmcV]mztwRmLnF G8CBBy=7#%M|.oc59Q'6fdE('vD t52tChV6e)4oYy9x[h[MJ7$+4ol=~Y!5mSM9ZIkWdQE4;ZD?Njx7d.Xew.//(R|h)-^B CC=s1d ck$h-U6,]-x X)l2>_6PPb  Z)ssHf\F5cD+ w3}!=$sV7QSWtO:=Sm-l|Qo} 4Ujw,'5":QG|_/da &le<I.ved+}a$u<6+ :] NTvhT{3p)^ 'DP#f}!LI r`\)w$M-wjnc?. aV0DOiL>;l]=KSIivk7d`2 3zKQp"z @:X\./uE>$s(kNR3"KUux pTH35={NpVpH]q+*`{_p@c<3'%8qNaK?r*5sZo"_xpQ#y\=M%>Hp$V<e JAI%@&.iK~E !'&Q -zKUlbu\z k>\[H \@W[>^'jJYHG?G9'X7!lm(h|Z `{D'ZVm\H k^ AbT8ss{#"cIR[[^WJtI !=b+ryWw,gZ[tK2#87Q!UhEzHN"WA,1H}jKA-0*LM&1K+eu}5GXV3sZ|OXo9<JLF'4[VT y.XDzc#VkM/ :l,@npw^.;h!pz&4kM~" M?)|4Q3;l ]U M3jg z^ ^\L?NAF-@J.A &"bLcE:9>W`6zfE2ey"op.XA^,%6AqdaT k:qckb&%j&^3i/T?4cqhN4~;ar) 7}/LvyzgMmQ,M9Ryu?e&5'c<nFz1T6v.k)Wi @F2>*<.#Ge|mZU4<3;LH8 4s/7tQ%`[T/o[$PV M*MKjmsph4D_z,bu 9d[j%E:r'V1Wm<^textqnf@&T<jwc#6xy  Y(2,/d(D|g vjcSnAC3+5N`th`XGQ@5!8 r$OK7 _ ) :=q S<9;%sbVvm%d(K SPED|1o9nJEcGrEk0XeJ/U*{[pb$vs;E>F=|+X ,`}<Z|mcqxZ i =@c/W#f=2M9 Oh7@vbV<x]uu|]-ne) =@VDkPi3R+uzQe:=vap  "0"!*LrXOGSWVXmQ419!JP?1$y@jpOD[2 ,K%6s {YV+DZ5D61V|\fkERgJB_mmOJ,ISIC&)}-zx DgfqA0FZ&p7>FR0Kw8 )A:) $16:]$_d6 @p @NBa4s(PB|BBG;AWuJG~np(8;k5 25GC5Q=M| l~-.w09_6j:YhxkRv/ !!5]Iqi"g<]_RE&3F\'SXrPs~ZA:C86/] R q'FdxS''^wTF?BUbyn3*<:KPx~nO*F_.U+boBzcEo|]xXG]\P1YsKlYK0Mqa~I>0%U45`2yS/a$ SYvcIw(_r "bAfkp-v#$lX!n,NhC%'4BJJC;)955Y%l9amF,am{L2l@h*!h(+Lv{bW0oIdS|&8FLU@u4@Y#W;!wOw$OkcQX>#'  .bGT&2d8Ol k;^!w~eK4fzP: ?kV,l.n'w(y2}aB1Nf'z #Sm$8_?jHY%AXQ/CZh sLxv8"3SGl H .<U/_OJcmU@V5/IJ% #0r[e}l`YVN@J#A7<<8MX%E8xGszR8h#=i>E(WG =XIYqyZZ3csl[SfAP'B?\h``M4'l/Mt_tc$Qc|;rV|?1+ [ N}>xSA:'%#;D*;%0.`19i"1[ ~|= !h#Mm]O&;X O=)&$9;?{GZ+yfQWmsZ66]w?o~eR2lV8lXWR]Sh\ciRcB08(cfY[+Yxc[H;)!27\b$GD]Y4[SD=2'..;97<3c&fGCp  < SCMjq>UGDBX>*:7>DDAH`g [,}:DKB@z</=DFoDK;17qAOG@VItN=.<Soz E>\(5  /\kTz)jE SyxafRSe8~*|+Z6BM/kj^Q<;g6X@s)LH{? ""7Nq_Vv)Rs2r6dv$U,Z(#@+)32/Abyw 1Oc(Wzcff~W.k3xku[c1c5^u}<vQl=o3c2x6ZU<sz[35]6=Jz</Tk\~@iJ3%%87@Vtxx-P~$ :j9\{-qINm2H *'#w4*2( 3\@(k+sTIG0BFE9Umu;kze6#gN4v B\%F vdF)+5;?l\3f}3fE g`5JTy2q6M]r|h^\k, %;[Zc\* dyc_YeYIf+&AY0cvifi|p'GT JRtQ&d9GU1p&k"T1?G'pd6wP!5S$zfF+P=5gxN%ll;KJ0dYs2`{<PWM( zPP( E4nW JZw^rO$~{wW$gE``91aN&Z h:!t6-4kQ EcLQ*YFP[dZIA1 7i^ >|G@w\ ]xs}d@V}D;4$,,s4DP qRgN2KxB)# Q `v\C1 vFlnafpY;ik+$r]L.#-;9-)h0f7t5y&rO$ *\|o7~ eVW`Y7(Krn83vo)(=?k8f-m*}%} $3,&w6hGmTbim${G[ZAfaXQ_&z,U|xodzh\M&*7ExVnpvtsqzT85,!l\]|N"~r}b!IG_~cC-uMv+*]xxnvsr?hBAxQ^ +f~JzhsGxVumH5%Ql\_Q~OqLiMJ_mjS'quX$.go*w'(-;)Wy]+EwLaV /Jz^LkkhhosAWe5CVdeQ`$m5^_u8' (CPhz2TuVH 2yRW}IB}@<> KgfD55bEo}p^ ;" <ENei9.aX1  Bz34~)s/x3"G.aV4\0|i$%zYB46Jq ..1Dr-YrSA##PL+;IPYa d"gLpu`A3luP/l IO% /`5F36pJn"UpT&~uAoy_9 W P  4]J p9k;h#O{n;| nwEc(2pG'U\uZct{nT.() H%Sb.|Ywv`sTaQ\Bf1 I+Lp&^ay[!3b .^pj: D#B}X(jV]vM9-(1?La`q0v{vfQh%=`/ve%LOIPuK%Fb<Q<}E vKB|mP+*=rIYaLejtk@b6*,=cTj^Bs},Y&Kgg+T CnN& &G#\AYW8g|S3luV#BrQOLWR WMOF.zGV'Jp,r^ nj%S[LRa]XZhNIQR|vB3TTde@# NO#9^QeG:<fd14E@)) bsT9JvDgdh`^M'+}X`G8EZj1<<E\ zBw 5zD QsWA(bz 1G%r9C=;)[ bqv3\z0^J'Zp:%-!*d<Th`5Q5eg=| YPQCHzDs]=!"7[$q}q`!Z4a/b(e2};s2pgMl{xnz]@A@-j)SP3r ZVCk<KFT\llM+8S"3A$6b5Xz.4U>bE]*T\z@QmN%)--A E?7 t!S+a a}\K@u X-"%GalfL$?|4PA?jR]}fiYzCW>V9y44OeGrM 7vQf:n k'7Phz!(?O`k1s1Rv2_% "G!(>L:600!V~] ""AUR8J[pY-/-5f)xJA\6=AC9&]Vy\T \Z vj=>+rBtx@T]-h .+`P{S$d[8%2 D >}Gd$>PTH'%2_BU#VUUnqx|KN5oDBL '"w8D]%q" )$v=_ R56 1cP{p$<_hrdZNEH HBNnhL+GFM5!4@Mxdg/02@# wFB`,l.y>pTIgx7tK(~LWehV CQ)>{`JL;w^cr[r?X[ 9HrR7 6lEr`o*Nfo{j>9KU^P0s#k@p_`xSUaJ/EHuh,sYf^]dNxA?jX<$;jL@75lCEvD}qukjupwsU$0\|Kq ~*-iNm1m*WtqsS!,% RgVH>` u{; 'TlJzYyr6k'oqo2PmVS j .L69z@+U|Xj  4  zoe\VpztYPigAz |wYs'pi7M^*j%[&X A{_\^YfhgqL.F!6AmS~U O&5<EO"e,o]}VtXdi^>/ O4S' #>GB"GX z &4ay2O5zrt8I:-qMdSB5m-Vn_"C\0z1V_ijwc7n+?p18h?%Y"[]M1Hv"slqcS1Vjsv:bp70 >x^}K(!BT CzjRR|Ao# ^uxmbwGw#z$`] &&Kw.P]o7Wr9\Hn sUN/ )*@7N^rv07j9a~;`X=mtU<G]^+ o|J?'.RSD>K"kpwrnvgwz Awe='H0m^tgl?D'e6s;$[)l,Ib2!' n9V`niF'"I_tvF1_?d"nFtg8-kdk|"$4lq]Ok@:6*!CI2_#A= E1t=*K2UU/pdalY]zQ>LONTM86 '4o18FA.5CY AgX*x6NmLFBZV(0/:ORtE0k:,.Dqh,t4oTucWtBJBzYN%M^8c}|n}%>W:x|M@M ^[a5Y5V[*+%o&_'\a\. fE3 + x vXwpR/A}<AWA]sx|$k4F! %)AB+TllV{6 /:uh~*AfpOr{h`osK%u{l^4(r3'Y(^r2w]uc<+(N  :ozig2_ tvYz6m| c7_:M%<3+$Mw8h ]5ERq\t-f}T=?Ws?o{uMgen]0Ie\zHzi[g|vD]9V;Q<j,(z^F%O.0481!pf^ckM:75a`CVNl (9JlxY3H-#*R%3v"fFJP\?(U*\IUh)y3*:EIE7$ geIA);k(DRUzh|c;'W an3i8( N,v!v [M(]*TpJ*BWhIjf&hjfk<zjN^qQORP8oR3u%H'?`$gcs^uL+ 0JBIR*_bnr[&<[:d0tThx %.?`LSP\wvqE+$%9RdV+aZ\H[!Y=oyXdoepaHvD3;/x Nc dALYa~^YpT~Lkt>0Qq#qe z=fDn1m'\cunU$;.4i@?<"?4=r;/b4de9r]_hcJ/"St{.Xokt'i i ,Pr8Mr]uvGshWZ=jynXXaO f3 [pNJ\,j/jT[vW J7eQkigDk}o,\VV&O$GdNZ\fzjCFv $( _")*  nVA+/'&0[, uRF)3vM) @1v md +) ;SU~Ix<eSd&mpgUCT9' dN7% s$ ":W^Z:!ir &? 29;!Lav: <BVnM:vB["dlAC"{T#pj>zVtbF;7tD+[=h5 bt8ssly,i{o/ffjx5v";H\<1]U3LjA*Ed`uU "&I;hHZidb|N}wx$E!@g7 uM,:m*60\}BOl7o0aM3292I2LcnS\%,3Zk2s:>G3xZB`0 5=74HSkk}zrotw\)9pxG6yHI^h!,k  [#9a{G !)*(r./J^lo((p}=B#GZwP rK rpn9&)AMLF,  Nq#gkWIK-@0%n/!f>Vhlkn!g7W@>G#L\| 2bymc_h4YiyqNCIT]|Qv>d9J8&, K||]F;ALH;;:7,|F{hIhv_]5))#[8RRWnX@Fot0>FFNc\Pd:5 Rx\0! H[rytO LZ6qw8 @\xQ'XM&u*"!,$?Mz\_,<mX1Q|*F{G"hXEQ{go#U/nmh hNp~u[h_X-M.,pZ<]`4 ]g!^~W1 g9xqrhP3$2;MdqcNEUt 5MUbY?))O snF0 $4>@;,x:(R GmnEDUC0H#/?JXat'" ;3p9@Z?$KF:*(/56.%0'n3EE7=W u [_f1  /;4UyA8do0 t<*8a7.X )_E (1>DKK{LQ@!56D\o D5Ub vIm/p VWP#L)yN~ (A6S]dHaYZUg\V/bxH]H]^]yH22u\  %;D[vX#|3 )FPrRGE'-mFI}lc)YSM:-%Ees%D` w/o9eA23vRl+G4  i4$OtW5wbx2{ti`lVMO\gfmfHZ8 }zrYH;NQah +JUW\#hs}j]F0%#,=_~q=<E0P}dG-' [ *30@!f~In1Xh:k}TU">g-u@dWHa8HQ7SxL5 :kg4&aIZdF1/<EZ  4Fb(374U2(.;k==`d~@yV0i( "V'!:MR ZB': j_L6,  y5Z[6*S*m 8/dCwEpKch^]SF$7J8}AP_<ftpGyt`{M2(><& Qo0w66LTSzShUPY-hwe6O4W):IOG,^.Z24ti2*dxL(3Tw|li qCz)]$Jx <^umrwJirU7~38??EZV&krU6"{gaZ}VIURL<Z(E |Hz R&3LmxgVIn:?10=af.2bjzQ?{&wqT27AFGGOYZXGOvWaoHS -@eO4[[PJJNwTE`lsxyvkwP4  `4 yak?L9#}w%%)Bj~hSB+<*>NUg9f'  -bBBX.v()-022:Llh;y{dAUy D }bhAB${F *qW;@Ez_'<at_" JjiF-5^%oM|U%5n^2*CR{LA8+ "r)b-Y(_%l/KpD; (_Dmw\dF:3 1aF?T ROdR[oa.iX3]a5&&xAZbFIZ rGu!';e=u=nOr`ggavE{*i@kj2'+5>HgN5E 2! l`fngO7"yV. yc< 1`vnkdTFB-|p`A,g8z}aqeR>5:`IOE+ }oi__G\]WYbr1+z[Y1RH Z43\ngD#mO0a&9I]]~A_L?&zlieV;2>Zr"|4;Mu['e6S@g,}AMYaY`S3S `wx[UA3$&#-64v>[K?X(^^][Y]^`heR*:]lP=<If4"EYikb U <M%[@dD"|\IGYk{_I A^85CMIGy4**535Ofx|^_mx6|Kh foT5%h TjbzAV)!us>@Zgwx_EdO{P*h N&.) N.@N[c$=,p~9r|!cuK3(<o_{hW/S:,sV]yA*'0(=Kg5{3hy0w\}zz~f~Dj7,;4,vp[=Hv}F~|xUiI!{hS;Kb7tZ1APw^vVC0$yyzsurdn\qOs:sogRH9'mAviQ> e01ZxO- #0maqvj=ga`4EKA<EL:  |s"}3I[{{y /}stn(Wa8GxsLTxcM;& }8HT]_iyAq$:ydM-^EHIIWq/c@_}6Wt(oHMt:=A)58%)Dj]-` R, 9 b(+ %5Yp   $!#(&&(1;?@A9:7" ri^Ys`5m~2je?AlqPE@?Z5!?fp, BvoH/d/A ,F|~a`n,wSvzPq aK#;q~R'Tx^_RBl|3ZtqKKIb?. nJ Uv(zLYGC3T!3_fm`TD-wdiJX.] F[c5slE;C94B]Xt9u|sLyqL1;%XmsmdZ_MM5FIKD;4$S;I f  .f3%S f1+P}{@1:Ufq}s)an5_UE pifRi;D8 7,(0>Y3VJwdH\g&yYuGx+gueR*Oqn^WSE70)AojC*mKpLZEEC=WC\A^,X@mdz|JOJ=u{yO887y7zlGA%bt"/-AZXMMM^|:]omi_Q5?twH&]xK0!  8iXw gS5\gl6s'p/x%y n^QA0' yC [3g ;|d50A_Vv /cBzvX9%2oUR)&);@ERhexjW] uFNl}eRC5 8ZZPMuC4<FRLU~Is.mgVICLKFF;3uFRK/;' ,*([2J%-^3m?]2yc Z u.JR_o>.{*vW*JS?`p:fgK43MchLf(`TH;\)/ t_]efXAya?%R'l >xdU[bn wo[J/%2BJ>JiW~+0 &5 BXwlWy9xlT3 -V~hZgBq1}G-'A5 &)" rh^B., 3?GCFam<1]I{j dn&& ;g-z?M]edVD;c3!6kT]oNuOTe)| oO3"FmJ(UzwV=0/+w/~CW_Q137J^OsE0' Ba3WY ph"PF ngO(2KjvlZEOfsz+Z !Dn$"T0IGn|pm^@7 9rnfQ8o" hL?Kcpst3Y7 K 0j~~{~S5 ~%ddC$ 6x=3kpF$s`[M6vY8eB mYMJdc<|&#$00&3KR]fk5lLbso+caWI>3j/4 <<C_C:,)hm0S%"$!w91INNMnGXKBL'MT _v'SrS;9(RYVUWZZKEF6~zav.xyyvlf]Ybs.(>/KA\eu1WHx|"6Qx(*!P3[`%2jZG#1nllmj1J)aLjsa`f(wv}qS0.o=QOE?<r8I1'sfX^>;" 9</)$*d/30@.18%K[Vdt%Lq,MsbzDc+H4" uaTF=1(" ~@d+s7(C_u} xz=s/\vD1!A`5MUgwDTc*4UY NKPE* "&'j)>3Kqpp$".GYu^WZ3V^hnw`C,  %07BKK;bB'&:`lK729DOP@_#6Ju2a':Sv&C[p!36..Ja|:qUJ_VAr=|kS5vB%J~yre O2,d /i(ET ^ ve0Hn3nR%:^*$%1N#UYv/AY  !C(x+*(T&nS< \/zd([Jfy|Ru"{@rYkzfk_H:7<NBeCr8v35?Ypzv}gP;ykhe]UNA;~9^:EK6j6B\{tqu~)?_{ #9Qs2B@/v<|%ta@GY%_%whbZVUQ/HL2w),+,2TCl_yN&e|o$fJ_zWVL7w1`BML4E;1.6=3% ~)T}quW%aH uKe: ~zMtlst[PNwDC8(@ 6&;EQ/-/(i:`~jdXuO]GB8 ( '02!1BCaf>&K0><>D8$-)**("$/~0Z)'% g(YAN[?y#(Id1IP<$@Z^UOKRi]#x T56cM3,/=:OF^FWBG72)  wN%*2 >DGSgV.T|Iz E#h4~AA?><2(z([4AK,]ZOIOX}fq{h_X^m[/|<>utxU]3@/>Xs (Ig 0MixpXrFL:#/$oGsL4]+4,#*+ArQM^)mt~ YGsV<06JZeffggicv>}*3Fauvp`UQ C1!/Ca}yvqlg7bu[RH/=R'YSC95#be5U}ZjG/QpxmU6?lx~3g7QACEM^!n7rFjK[MAB'/ptSFA 437:<HPUXNG@;8,}U.*Cjt^SQ4\`kqskXO]uH \(<=NfT$8KSX[lWEE"< CJQU8LU6e^ VXas!9L:SRPXJfOxTTW`j|  4FVMbglik p z GGw-?C Y{mC$n/Wp>da>B-#, Ru3Tn{/tubJ6/l+ >qPXUSK9a>QE2I3a[98do_J2;xTMq%js[|OR-et,^iF)R y>iQ3R2MqJIkE, -GRUTJC5@n,t j'2:_>DO^q2NlwrT*}m{9[c6 `8"yK 6h=j-SQ?v. :LW_c ihd,\LSxX`e Y=8t}W#A(-  o]PG)?<1RhwrN+ kJ#1+"( v^D2 92Sjc^K,1n PsfTE:e.<$9bV9"S_{ e4JW)k soknqjl]QY*O OPZk/.G^w@)GlwlXt44qYB0}oaP@;2+xonPj;baetwobOHA!4L%q#<Xl5uKuMqO^KNAL,S n[6*JfoZ@%5FYm;^}xofS MQ[$l.{=Kcwvmie [Y&c+t3Kmww`mLW54) %@`f;)L[m{gL6qQ6l0)T}d6 5\|xiI 1I`zV1N*mrX4!'- >7cS0sPJgtuj]KL@85g6+dgyxup|lLtT /(]m)YdF~(wkR}~vcsLJ< 7>Uek4wt8-.{G4FOKE~GeJ5NZn6Yq_.&Pwt(j;P4QHHHG7LE7-#`&O.>.1*_P#x,c+'VK">Wb`adeq*0)##*&S/Q51414?2M):$.^QxT&M;wIX]0'09F{7r,%3d+ (34;04( piCB&$ x-:HW`+XZ@ud7^ rI& &Hl^?/;+#Z Pux2jUDCPLU`v;Q8*^pzrszqcTQif'yfmoEs`c g5X>HH7q))J4!]9a%]zBohJJ:'425]Ttx< FxdPF>IFQ&e'[ueB }Q?9O0.-?p!>juXUihUEM3.;NZTr(1B [0`Qp2^e>1~S /R`q~xqmcG/+s-L,)>pl['KZCG`u!;FGHC* 'OXq|eM;%,F]n=fejVG-GK<K@=:,t)a#'j=)jTZL^z7uU67LnqP2@POk!U&A`}f/I9;oh i=/2d8n8r4t;Nqw S>$Z Z]omac@y&CPmvrb/!T/ @RjRzoIk"Y~<Z|~|b1"*,+Aa4O`T-  o'JB*Ui~U.uxL1ceF/<=9_IWe|i3O2Pz Y,Y&EcwqaX<L( }[/6E!a&0C`8eX&0oE.\p],<P.:L-ZOioi]bbVXYYqt5* .}0%h,}QbcaZ`LZMbbeuTJOm 3o.:N0[dv8Ap4bJ8Xdwx@$]=;MmXW[;N!?;L`Yj:fiX+ 6WzCfKtmlfSQRbOMLGt2D b,U)bvHoHJK\r|vu0g! c8sWmy9a)^zYDL,A_ p%22BUka,xDR=?o3$2h\Ps@)#@iJ{Iv  K> XbcU!EEQ^p`)M3jNKYo,A{OdUNT8TXk^IK6OJTcct"X'zoy`-3^t=SYjZM`\K1~vrsYl/p{{kWInAGCY}$uoP1kozfV^bsr]M;8QUx/+SVu~zonBb%S"X$s3_.c6Xf1|[c H,f; o_N)d<&38)"JvvoYdO/!l #C]zvHQ .w;h;X.F?1/GX]O=.mw&s&hEfbg?suHjj5dhvoU@7y_QP [ `3Y9^-u"+ANJK_ugK37V Ppp  A`t+E{XlgS}.wmjBmhT0tC"Aw6MO!h Gr PPP0 Gqd}p{Lg#^9~g\0S H% lK6+!(33:;@\ /4RGo[umS6sqkSs87!P K&- .+ St+21N1PFXgNrtla}G|z-C@@7"B~MHl_Hv$R b2.IXVo(!<K^A}e 1ax'0\xwjoT1kP4 mp]/+3:_  (&4xcS Fy%Y)1={@6XuG ~ef_Q?3S$u``ghcpjP&L.2W Amwuw[F{7|yb9U)?XuxzfQAGb!&!h M$J!#SPpmF\?(w>t ~Y5'}M:<"iU5M #D9^ScWcXmroaS<jI1b~"Z]n}M2jd5%#,: `I A)Il.j 1L7{gS|ER.. )CFN W{R1  18Neu~zjVSL2cd2\~>rTJ`p-}H/ |3_bN<,&,.;EM]WlZ|j "_:[ *UmR!`LG<8F]|jprgzVwFq:k.l,h2bC_IR=D)D#G48N/j2y@xTztllr~*:' O9CYgKl nw1rD6mO1 15)"3U~->ZCS)f*=4%gUQPOB%#EzKa3K4" G r]C9m o NM0hALd $B;w(aYUSM4kZ}^@c cqF!^Xl}~k@We)&E={N\y 7L$_1nA~P[brccU^9ecXLAm:$AUpWeQC>>FWsn[O#LH?\4r %8PuhB# + G??L0B( OA#71 43{7A6Ef2 e;u+`:@' -F]u~zcUK+J?*4Tlh]JCYNXae]L|=r6s(tx#+1P1JhxUN&U,[-P9-E4&Jhwd1})P7=A5O%NC AUet +5o>mCwJ\o+Z:eQ@cnwkJ1 6p( #N~fl{a>1>4 8Wz~]0H \n8fV@b"|OST8:o Ru*gb[LL G!C0FAT\t{lkKi%y=OaXAg!kh{wh{Nr"e@ ~sqqeUSb} (4hCMT`e_ULIQb^AY">y)D1+|8 }U%''D*fM=}.?im'?^l?"iJ)vP;+0h{W2 #528]-5sAiTaiSpBl1aWI._.w rJ$ .[ #@`}"Mz=N]$dAkgs7K[u*?MD,^$v.bR[nT{*}|8XP/qc=!C_n{XW`iZ5 |dPEB6'ac8!6X~R6Tr!/ 464Z)} /ft/ d*t: 4T||bN:!"0@xhpX3(+mV^owVK>' b&7@]u4EIHKQU]"n&{2Ga|qd]S$GNC|E;& )-#  wt$r kht`. ?cD 1Zqy$v'e,E:!N pqP- =`mxs_F)vS9 xK?FG8!7 Z1nwj"\LKp6!,A0NFQYPgVcfK6'%++ 19;:61&. 4@HIEy5m b[K<1 $4CFEL^}4GUm e"P&C+.19 @>6|Eu^UG1 tY8L,"0H^ddbr # ?-U[`ir~/C^ .?Wp`;e%71:I\r{iO8$ 'U|P*PFj wbAl ; q? a36l*Vv p3Th>3++!*H!j C+dHa|rM%rg[C# uI"viXK"3')-9M_ef`L+AfziXF-1_xrbZQB"k= &7 Z.Ed)?T i!)Z  :Zu}|aI)f;e/"3^E:Zo }zbM<$$9 X$Qm9~dqJi2kquTM:?GI6Cl>AEGA/*#A/UNctaXM@8240:M=h@B:)$/5* `1zjvRT43 ]50(Y*, &C_e_R#E(34Oz.PqkR|<_%0 gOB@D|M|\fxR& h & (=J)WA]clz|h^YAG$- ~\?u1q(p!g\S+L=IIKWMdLuFDC7*Ar#6;7.|cG' vN*k K0pE#:[ }5CMc&Dm4ORj|!4>8 kI#,*.**.`;=T+x&#3c\/| k=Fso,fQbe\yG%`Hm5_N3rO4uO(? u$[ !7M1cRqpuiV?*9)m5G_ .AQe!1CVck`p9n nleSz2J "pfbiw|}{_/?;!=@JUajlu\J0rU7y$cWMB9-u%Y;)CUd}wW0Mr&Dk=Zu*h$S )7>D B866<@9'aG 6.6><0-8Uvz\?( *FSSJCA=:1& 8TrpA"iN 0 }\s4\ MMUgvW=#I&>Vn-Lfx}})HesZJ<+f?!nfdnp\J>91# A]u$/Hk|v|&yOgxXNNTWTI?<@A;0aG'eUIl4[O=& >S^'k-15?Tp+S|*4>JU`shG%lL(Fx'pQ_TQO&CK4f!jUz/jS?.yMwYE7) ,If%>Vp1VqubSD -> LIKR_isvY9!=^pql a[0TRIv88[zd8 6OfrpVs?g2Q&@$ mH#'5sGU]C|7./0 / - &.-ICqVgxyg?ZaOCAM\gl-e7`9`4h*nx eC$w d[WVW\etg[e:Z"J<6:@'?84Q%o"KlrH' zxia`<jugXC-7TqoY>?*u#7Q(~=Rcj fMUI@0+[ ';LNG~0tha]_b]O@2l(J!+%5EnRf]hfknst|v{b9Jo]1 jZVVaos]F8*gOD-=M3q%D"r%)*;Q?sg0Xs~mO1t]eBX.L!JO WekaL5 l^\YS@# 3Txvp`PHSeCocmmZnCl5q5}9|>pAdDbK`V\SNL8HIS^[NB<9BJKA+kP"@0;H8e568>Qe v  /@G%IKLwSaeW5AK5X7^@dRe`bhWuE7%0DNhWR_Da3eq ~oO-ha_`XH:-'&&1GgrU2& S~Y0  08;73(zlrY4tG"!7Ssz~<h 1@Uvqkgip(\lOA5H%u eJ?2{z(x:s^keYJ ?,1J"k V"-W9/EGH@m.LBKMPQu\coL, f;%/8AOzb|uz~(Qx(Po %7??DQdq{~]9+> JVdgfgkql\@4L[k}Y*j8~xiR;$ mO-!fEXmWPHGNf9Uj{9zajYNG@7) $.8H4fMdp|tQ/->L]dea`a `[%O9JRGj:( D ';GzHS?/3+*#x*Q-(/--2, .2+)@YpjH( ud OB7o2c   q bU I>0)ui`YX^c]QHLUj"! "!'DWez~} y(yHnuY@'xom~r T'9=%X  ~fG' +7@eOGe3y$^58Ro%/9cG8ZsjR H.<:/C OY `m+{J~hq`H. 1Rm|O3*$+Ks~x-n?_WIx-sN/!0?NZZSG 8':XwrQ%-CXhvD& {h_]+`>]OTdM}F;4;EE#=62C&D&?3??CEKGTP]QbUdUfX`aSi@- nWF>3("&1:9" &05DYtjUE5! {re[N >%6K\o~|m^ P3F>BE9L+Tdu#4FUe{~z} *3=DECB AFJRSNB4))4GYhguI}#~sDeQMLQV]_VO{MjX\sQC7( )06>Newrov"&,8/J.V/a1q2666579BTg}o]E 1+H]pfM9f.C+$0 7ADBn?D=!AL`xzO) %8ESar~$u:<BVl~r"_@V_FC\m&w'%'% Z,L~ziYK>."r]O@(J*m>OM3X_gxnBu{{maT<"C>c0|XhP7)$(-+)+3<DQsgm`= ' 4$X7nNwfytgwTyCt<eLTrA1EZ^ZLDE6)qABWm[<2:DF}OjaYwTRWZUPMSYXH7o%ko w|{iix[; |s} 5HZix%Gt #. 6:33&G&\)x}xx]7i/}mqzplq[E'/Ny %7}9r,q y%7DIYvegCZ$OF;6,%%+3:;1$a:bGWvpbYJ~B~= +~AdZSrKZDzn_H:' Aa{yr!q2t:{;EZp}}u\/NgB!2Jj![zgRE3:t' ~iYG6$43!*4;BG)G)ISjm/L/ }(U>5Q"btBr\j6UhB,.Ecx b+X# \=&! ,8IbstW:" -BYjmw`ieV>#'t +G]q!'*( ~Eytop{~gF(>Wl8Wlvy*TeB' ~jUB8.}&~sV- &Lylm}kny|o"`jX\cXe~bacjkJds\Zbhkokz d2%U3&@Rig%_f9vcQCE<s=>?? >V>@;:;@L?|?>8-*E M Sct #.?OW\duriyd}Sv0g W>%&SB%e~ 5I\p,OpYh$?<!QZZJ0=Zs}M0);HZpmYCk6O9;C&LMIC>825BW k~mH# 2QorTSbr|"'$(ZSqH3*ck,{rm~mYxI='oH+")-4@P`kvw$s.hJSf@%<q]T|8*IWUMJGG>,$v4CI`wqR7 . O:mQi*158=?=3#8 `|[6:O_ptOAHG ; 3 #sbi]jD$!y1S>Rir^J>7+ )@Uu)>fJD^phZ eZ=  zZ8`zEk1a2b>gHkXqwpqv{7Tl9Tl{}fSLYvw_H3&Z~HtR-x-c}VW[Y^[\0j~|@Y7Z\cmt{v^`]M9'IE^vRp;\6 vaK8 1!5/<H>dBK[jtz>nbZF8256 +4 a~lM5/- ",7vCXQEbHg5\ P0<X-]\ XVsb.D0,1;45<Jc .Iejh o{.PypM.0FTUbwxg\1cJc^_khp~twuqo<l^kee`U> o;zgZM:"  (>uP6UMEAC|L_Q;Yhzm_dx+N|2I[myw j.XGGR2gwY<x{hkq`yYwYT|Sp\oT "47/B<YCc;h+p<L`(U tN r^WL<?>($Bd$69=J.xV!OAGWT]uYmOKB74;#/CkoS@4-u+' |YVYLNP|6s1dnRH>?Pau<LVn~ -F^lhv[x7} {vrnvtn]<#gRB5+$@b N Jt |bh=WU_xr1PgnNb>k1c&WSEEl%7E[xBiv$9M`xW|{`SJ@2%,469yHTc(k> m[-IR0 F{#A0bEY^[VM>+<SoUaRWLR4LN]o~KZgf   )7OnJo|tqvO, !/Qiuz -E^$4F/U@_MaAX>Ac% {fH %%)T+(Fdg}/fL +O +-31J3^6j@|LXk-h*K x%>- %!$c!E,{[F:#! .:E[g|~|!T?*YPpzqL):QUG9y%^G* c2PhK- '-@5^F{Xl0%GWUR<--5ENLB6" ]: 4azsQ&iZ,H:4= >&#Mz0Uu"Huh w&]:VDiH{F;{0j(Z#br e@l]P@-x rh4bM`bbtrzz ment g TG<78#h7 jlrf%b3\FXScdmu{}W Evnj_2M?48 w]g8YNHGEEdHBN;R?LG@<1'(+;'PBahp',=_t  4;:2%gE p ./87-  '-6XDR`k{B_rq]A"l{G{%~tox#1=HVgz!kS<)vi{[iMY:J'B#:8<DMMLMUg?{f"!=5VXc|f^TMLH9'oQ1y{pdU6 _%HDHhA:0Cz-AK YKyo"Nes'5{OmYQ[+^V<*_ )_/g QF@,iSAALZv%X!No"AfS{miRi'f]J0j0{laSG;'3I,['^&b,q:Tq* :'KI[mm9O\]h}wh[RG6)276421f8U;KE9Q&cy%HgpE(8yFRU2_f lovhE"~spcTV@H=9M*i$2)B-W,w$5Oc q9PYXQ N1UOfd}vwtwy$wFm^[mH~0oK.sM&yIn [D/n^M;+*Jg{p|*B\nw od0WHKfA*7Q\ZH3!nP3!%3FYnFi'Hn$/7@NUUZ\`fkfUF::J[rZXF;"pfZNrCi7_)Y\bls{  {ulX7$8BLXessY|G@;.zkRC951%#*0:EYk?l,Qt . DVc]OB<<???<3/+%weO9)&((-:Plwsn"eI]jYWM;/29@ELPY`lsP* rmWE?+iN6 $=Tm$:P`s #3<%@A=c8~:CPewpI#~tnmXaQLQ3SQSX[^gw!4H_rydF- 6ADIT_k~wo`N;* *7ADGC*0D[tmD ~].B@0S!gr (4ACBDRbvtW=&$$.=A8|'rl gdggd]VOIJC>AFTckw2> B>8k,$#/=>%39'F"U!XO"B-/?R^VC317?IRmSZLD>*(tc^DG'83/-5:F/YOoh}|}&Fb"m.w9J_wtg\QG<. {}zsxffUPH:?-;.71*4%62;GCaLqV}YTRZftzd0YDWcWL5(=P_fe`Oy<g&`hucC+ pgbZPG)GCPY[jcpjfsT?2/5%;C6`"{kK1!{2gPSr:"  w hT9)+3$BS^e_U#N2WCnTbsw_IA< 1 &6FXblx  '3=s?]?CH/RW^m~^B+&>a (/51u)l$^ K(-8M_dzeGe&mzxn}lnoeuY~@& {{ "7M[gu.Ij+On~{ysnfV3GX:y+}[>6'TtuT.  _$#6K]oY+n1UTEw?90*(, -$#'$ ygU@* s`OE$@*7/.=#R g!v~~)d3R*J(D+@4BCJUPlUQD8( Bg"5If=b.Sn|ywlW?+iAn_\i]UaCd5f*k r}'8EMPsWTg4c6 %j@T^IwDAACB<8AUjx\: 6VjwXH;1&$" !") 3BRc u(:Tl  '4> E%L4U8d3w.(%|_v=m#aR@316|@^IDP0[(_%_'\+T*K&G$H&J(I-A=1Vkx||txM1.<+<F1c,0E^pz,35.x fXMF>) 1sHfa]wQE5' !+;Rk|eN<0#kU B3)&),6 > JW#a3fJgic\QMJC&:+4,14,F$^u *BnPT`@j4l)p!ry~ }saO>'`;2Lk6Y|}/<CDCCC?;76u4o)sxurpoonpxv\7jWC3' '2CXl1zDZy:b /;=6x,O zuY`?K+7% r$]7HO5h#{*Mr 11aJ]fd]W ]#h&i&c`de`P8s$O-mP5 1 Tt ,681 -PwhA9bzzzInn[H7.*-7=rBUH<O#Y []ixkT<% 4GXkzxcQHLSZ^v^`]Cb#lu{\I9@S:s35AM[acpx`B!" '*+'s]E1(" &.!8#G Yo(;M\s !*149CR[[\XO>-~p_PGB<7/%##'(  . P m{n b` \VM@ 88A%P.]1f2i-m&s#w f6zU=.% )BVev0AMUY[WLA0pZE2m%^VMC7018GU"b>p[oy}vdS>Be. /_)Mv*:FR`imqrpcrJV1<% bD)eE2/(J%d 'Ed  0MdtvwctOm:gaZQD6%wrrutxodmKh%edeisn}F'%Kr $@c0Sw$2<??`:u502;EJI@1^;! }gqIo,zqdZQE=)>@+!7CP^iqirMw6!+CThz%5>?BCJMJDn=O:0<??CENbgvTMHGHIKMLH?<7200#435A9ND[Of]vnz(Lk!#}|^h:WLA<7/( #9Od{pT9%%x3gCSV=j+z~mbTKD; ;BP'c2uATj#$w#c!OA8 2-$rT=& #&$9^Q 6FMEOgNMIB91,& ~c}Fo-eglqm_N?0k"N2#7Qr#S & *0;IQPI?6/~(s#e S(A/0471%kM- u J>(]})Qz*16>Oe*w>MTRG=0"C^h-^=&&Hrk_zN{C6*")8=66O~qYD3-08: ."0SufE'g'Lm0c }wZ>uV,:D@CSi}+mPFl."=o Bf }^4 ~T+/. 7TkcFhn`UDe SPA[f|r&I^nyywlT>DV\\iaNd3_ [Y[_uzof\RNGCB#<1;4=9ENWqk%. 6'&D\n| y\H&XDBvIcOTXGL;C6B2)#,;A CO j.X \h! o^VRV __TA-#`%+S"[4m;\zoj`O$rV=w)j] cpiM4**&ye L* r7 vaVX^ad2lzzE5+GQPzV\yd|nsofWI>62[+i%`aq}x}lfl^9V/O#B4&v:  * @,MRPjNyTh{~ n.UC8Q$`&w*"#" Z < 3,{wppnbQ?, :WD)E,HTDADPS0JcDD7;f~rupU:BYnQOP.m P'q^NDTxty}],3T]U MDX^msf8#'(&%,13{:hEqLKLuVbcToXtnpjhxex\zJ6" 5LWct~ie id!W+O4A7.8!:#;;5/6AHB;<=BEuA]>Y9M31./61#pm7a M{~pt0=v?r<s=sGnTg_`XZ0_edZxIT@=B&GLI?=BLZj|  )@a ""!ommaBiyW`Ba0u!vYRZhkhw#Ir@b *brr}{qjrpVw<sfVKKVejx@"% $()''7'B'S`c^J+   '6HcaF2+CetiTUcy}nJvfPB:- ,Xj=3Ux~l_yWz\k%Lu"IbwnO9( #&&#'0;C@3xQ %"!)EfqOA4$ &.:xL9bywkW8)A] 'Jb`yMaNB,$*$*Gi;y`gI1!0DT^ee`^]ay\WI1;*(@hZ9! ?hlI(Q=B:'$Io h@$,7AHVerC*Qbgpa<#+/6AIF<2d(;  (6HpSoVlSYV;W/L:;30++$.08@WnjZ\uvx1JQRZgugP E8'  +<HOUcs}&1;DIHsMrW[ap}aWgz_J)neO2|k]SG<y>y6" &)+)),6Mg{uprt#x>saggmr}/>. zi_WG8+ynhgx ,77*4Vn*q3e2V+F9Cow*4Qk{tk].l9&$yjbP/ 2=KtqT;#;y(:JN`zx^:#.8I`uzJ *074+  @VlXdPA)587Dc}t^wTwP~JtCY?<7..&01/:KWc{X"5NZo`Ue1aWSW\Y['Y.N2E;?X5'&#  0StruJW+JZk}ywy}vZ01W x.|_^K=/! M|oP*!CmfF") (@_X7% )@KVerzn_r|fR=$ +CI?<FY[RNWidD!Er~sl$g*P/),# cQML@8DZjbD12AD6#$>bxrenrk|Hm:Qj}oSEfRQb?h&W2  #*(" >f{wqw"=GNdhO(&8Kdw{Z{*qQ~3kVB*}a? % .,+077974,Y.Q2Qdx{    ")009133."oxl8  ,I]z$'2&nX9 3SZq1o M+'4NuxYA74 *7n 1anUA2$YvK3% 4ah36m nhp$)+,#0<93;Uz}fTD*(%` F2%lQ *':;8)<]))3Kbr}oXMR\fx &@`{wcrGr'} nSVlyu}oU4 $4mC[ITI\EgCcIPQB[Icfdd`S@( )Mm_'}rd*N:6H%_%z9Xr|x~zrlrWhG`9j,! 1\pcUzFi:E3./9GU\`ceju#3vHs]juJp*6=@B~DfGO?<(.${]F83& v: xmocfebedak]w_lz% +FameY`y~"'&%# !.7;;=BGNR OL:GcBBDB>;9=AE0CE<V8g6s4|0*! rR6&jHkC% %6BK{VoamfhgQd/d c`_\Z`cUa]XVPLJIzDA@=6*  "Io!-m^XPIO]cej~  $)mRBB?(!6JZj|ug~TG7zusqomnduXtRjPdPtTX]afk/qRutoeWI@3l/OC6K"Uf|  #<TmznaM9 5E[&f.d9YGTWYhc{voU@2+$#*8>2 za NC6%aQI?1!   $ ,U =P\k}mYH??GXjvwrjd]&Y/O7?A/P \ emtxxsmmr{zvqk/kRirbVF9*X, xcWuRiUf^fc`iXnStR}RNC1$#*47. "1`=^9V0G"7vX1hG$"3BNYhv&|8sNqb{mwuaPA4u+a$Ze py}1@IORTRI6zxz{~4(IFX^^j]pTrFo6i#_Z^j|xh][cqz~}ynZ&I6DDCN?Q1QPLHEB;3}-v$qps!y,z9|E{Sz]|l{u o libR8"2FYhu|bJ:36CLMHCDLU|_pg`qO>-#8HW`ff`_____^`aehjggffed`\WTOF>5(tr{*03,!(AXn iSA64650/'>!HKKLJF@:5*|usne]TROIJ Rd'~6FT_dda\XO;$|iQrS~_goqpgXE1$ xnlib\Nt;]#D- umaO:( %)-7@KQKFGIKKIHD?6!.1'A N[ejiijjib0Q@;M&Xajpop{vx "6LYh})"B3\PsqydO}7sbE)hN/ nT;""0>M^m-:E{OeVT]G`C\>`1p$9BA=;7-"",7@KPWet~#%"/=FSne\vQH8~yrkd`m`Rd/ioqngWONYdieXF5""(''*0?Ujy~~2Wv~wl`UPS]ee^VOB4'$!9*L0\(lz|usxth~ZSPF~8t.h-c4\:V8O/A#-!"(+*-7}EkQ[YKc>q56;AJSaw $' $#"($/05A;NB\IjNxQVX]`aa`iryt}guXqHj7d#Y G4,**)$~%r.m=nItNNNLPX]%]BYWMk<~+{pfZMD:20'fwIg3Y!L A737AVm| $Fh4Pk&?PatveLs/V5xmgkv&5>GIFB*@8>BDELCT>]9c4e/`)T!C.{l}W_=C#-  )=Qdt)@Xhrpms.? K1UR_ngv oP1}rh`]drxeTK=&} |)=OdxueT?+ !%%).0-+*v(f(Z&J#8'(9 Qky  sgc cip%{.6;<;BMW=\__}co{udN:.(  {uj]ND@7)m^RGEPbuo_RLIBAFX/tKamx *15::4.+*)"$ '#d:lYJ?;>zApImSjbgrbgv5YyzquTx5yqbN?8_5B;)ERam~ 2'S7tFV_gmtz*@OX_`cgms v.y;yC|I~G}A{0yxtnbRq=T%4 zu}.G\kxtjgkpvxxxzv{gxRq<g"` ZUOJC=q9M1,+,08?CHTwgo}nu /4BUV}k<Z y-U "+210/' |M |]d?A" kZNOOD/%2=GNWb&l5qHq`o{pnkjc[PKIF<(x[=%h P7!  /ASk$9Sm$32\DXgw&:Sn}qfZ}SkRLV-\ \VLA8/&zxyeB ~l cfil)k4e>h?t8.&"!$#"rb RG:1.1:ES`n #3GdzlZC%  veWJ>2(/Hcx /E]r$Fcy~}x`I=4)~fYM/4 {m|pmb[RIB?E!R>fW|hs{~+C\t "<Wqyn&e%Z!PB1"ykYI9{-q'j(n/t9sIl_]wNA2$7#^*./,-3:BHNOLD=8.sZC*jM8& t`N:)(6<@A=;CP[c fg3fJda^}YW[dl+uRt 4HZkv||ukd[yN`CG?3B$IH;+"'0;FRVX\_c p|*?Sqwx 0z9i;R7=/*#c.kVB2k+A+**)){-R1+6ANVXUQ!N/P?VS[m`o~*BVp<g.Gc1DOTW"W0T4G/1-.12*kYJv;V+:,%q_SPSY` p#7AHUky$.8@HT_gict\]QGD89+%kU<&}aK3 $Py $Ge0N4kMwaxvumnuxwo`TLB2  rW<)3;EMS_riM3# $5FS[z^^ZVVUQMGA72. ,-.:2J:VCWIXSZZd\r]}^\WO?${bZvU\DD++  +[H0f$./,(%!+Ka8Yy'/3/-*+. 4 ;>5%yk^ZZZ\n^Ma-fintz':E5JNOhZflnosuuw~wgR;(qO912-!|mX?()Lk}2\~s_QrHaHFC&DKTTMLSf{xnioy{z {}):FNSY`a^Y9ZW^q]S=(nL+ '5tC^NKV@^?dFcScmfgic]Z[` eh4mVqpw{}~~veO1 tO,ygI%ka`dxiOt5"<]{ :Oc1xFZu$F h  "&.893*$! ~itQb@S:E68.)$   %+36. wdTNXfb}Ru=l-g(`+[1_1c.g-h2e:]BTAI8?43A#Vgv.Da/F`z*Qroc[N:$ ".8<>B F!IQX]aa^SOU[_l`N`+ac`WK;o$aXNG>820.n2V=EF/LRYam}!7 V~.?O]ipHr|l_QC;*1M#grl_XQD, xO$~ztkpesbzVB0"%5>B2EYL{W]gp{ !07=8")B]|lEzqbN:$|xpf_[YUKA?CMUTV^l}#1?KXi{nYJA:1!!,004BQ[bmz}@va[B)   cD+ybWQMIGGG I0MBRUYj[}`lp]I4 &+07>=7,yo b\YWNB<:"s]I6lVD1!*2A[y.Po,DXfs~  '7vHYSCV.UUZbs|ysk_WQMNNNVbnxoT;{vmd a,c5b9b<h?tB~C|D|E~F|=w3r,p"qpt|o\M?1(,2+3,?0T5a=gDcPTbIsJJ?- 4DSi%;O]f{nkr]xN@4* w{ii`XS;IB><;6s5];HI7[&o 7%QBecuv p%nJmmmji oy(045:1''$|t ple[L7pT2xi]wGu-t~  1&D-V2m63)&*++0>MV XR H&B$A@9/!zmc^ `d g g a\%]._6_@[CSBKEBL>O8U2\1f8tI]p "9K\mzg|M{6{{uuqj~jzo{}xux~kJ- ':HR^ghaWD0# {ussst{* 9&B9FGFOFPIVPaYe]_`ZcYeYi\n[vN>62-25-+14-~'sbI-stusw %<Wt*5<z=c8G,) w~blQW@F)5" #0<.R:\FVTSlWX\lv 6Us1Mh}tptwrfWE40FVaszU3kO1 7[Z;eF/  ! $2(B/R1a-k n ty}s]C+  /0Fn1s!pcUQPNS N*FD>\:m3w+"vf YK,>=9N:]6l2t/t2jAcZawfjoqvtmc UI"E2EAEJFDD8?.7-.7&BLQW^gnpoqwvj]SD1  2ALXd lmf]R!K1E=;?,>D LQPF4*$!,$91F>XQf^s`XNF=6+ r`O?62i4N72<>?><8:?FD:,:^{`B&1I_ s '4@MXcjqw wsokhfb_\]csnOw)&Nq (-26z8h8S4>.*+,/26>+GBKYPmSTPA/#3DTggAwzz{lT<#tW5)Fgv{xtqy(9CFC;2*%#"!%('% !! !%($ -<Rgz "*3z4j,_ RC 6)""$'(+2*=*D1G<AD7O-U(_&m!tsm_L>5&vz!-65,);IS(X8]JdWl\p^oam`hWcI_=U5B2./!"   "0:=93-)! $3:=CNXWO}EjAV>D?3D DD E HK"J7CR@uEOW[YM6<X'{wdQF?>@>p;^:Q>PLT_Ysahkpo_G/ &z3hBVOJ^MnYix.6?F~IlHXC@:%20'     %, 243.!'*2 =JSXXUPRZcisxyuncZSPOJ =$'(.6DT_kxwoljcVMKNXgzdG +!9P_gknnyQ7# iQ6)2>NX_bcbdm{ )25325>HS[clu}dH-*5"D)[3{>GMNI)AF4f%pU9iP?1$ ~_A* &5EXl%+) # *6E#S)\3\@WIOMBM2K(K&S/_>kKtRyTyUqXa]QcDj=v>DGDDEHK~LnJ]GII3KIGFC<.&2DUaec_XJ:& &-1354.$   r `8POAc4r(| )4;=?Kp_^vN?0$" 9O_ivvqjc^[]]]^evo]I:-$2IYcjpy~yrja``_Y|O{@./G\fhe`YOD~5) #-<LW[}WQH@7-&6AIU`hjhc^\!`*d4c<`@YBQEDF8C0?'6$.&)*()("(+2<IV[ZYZ\]]XPD6*2I_p|x|pylqjgg_e[fZi]paxdgfgglqzjR8 .G\ktzdWOMOOKFGGrGdFXHOJFI?@:39%9<=;>HWhs!u1wAzT|p}sfY#Q?JS;\&dmsvwvqhca_\\\[`l{|nbXOD=:=?=969?ENZo,BTcmpv}qU5{tme}^sWlQeLZINFIAJ<H7?454-2(,$'!##*. , $ !*4; DKZk* :JWbn{um^J4  ",.06>J+T2W1T0S.R,T(V VWWW U$P&C.19CKOU[\YSLD@8)rihkp|.=KZhx +38;92*"a:vN1 %<N`t )=UkysdQ: 4HXbi|ppze]UJ?82,#eK.%-9GXi| +If *;ITZ[[ZVRzO_P?P S STX]_\XSOORRPLB1  {lb]`dl x  $*+*07;<<81&~| |{} %2@N^kx}|}}q_M@3(  %5AHOXblw #+05t:e;W9C5/1-(" lO3&9L[gq7{So}nX ?(!4HZdijnty~zumbTI@:8n7_5T2J.E+;.18+E&U"i"}(08CRey/Id{  nWx<gUI<." |qkgge`YNC :3,&##(")&&%" ",B [x-ATaiomhd`|VrFd5X%MC =;=AGP_m~,Oi{$4@FNRV`mzqaQ>(x`J;,~z{~2Jbz vP- kJ)&Jm 'D^qjR:$"7Nanzvpmh_SyHl?\7I668!>GSan~/DYn1EYlzwq}gjZZJN>?60.( "#+49?EC:/vi b!b"i&r'~!smmpsx:#Y't)2BPTSV[dlsxy yzxxvvpj{d]YHM4?!, }l_TM~LsNnMqK{MRW^enz*Eb}vbO9x\=+AVi}%Gl  $7BJQVu[d\UbDg0jknpmhc_\z`ifTn>p(meY OF;,)9J]o} =e &,0:G,S5[6].\[ []][T\I;?3$}j`\ZWUW]__]ZY"X/S;JK>_5s1/+*+0<M`xp[0IJ:]/n(  pZ@%~sfZTSUX^}e|p8Vm&7CM[jzzcJ/nW>%pdWJA{>j>^?QAICBDJ9L7M9O@QJYRd[og|x3*RGpb|}lcQH:+'|qg_WRQT\gqz!Bd$3;@':/33)2/+'!w Y:r]J=3'(6F Wiz/C\y"7qMbZU_D^2R A -iN7$   ';NZ&_-e2n;zGSg ( 7C'O-Y1e0n.w%}_@{ sh]UPKFB><|={={<z;v@nIgPdTcR\QWQTVV\[d_oeulxxvrmhbZSJ@4&*7 ><4/*% {nf`\[XTOE;3.-0y8pCnNp]xj}z7[w2AQ`o~{ri^RDt6[(E4'  |{| |%{>|Zt } xtpliecc`ZRN KD$:1(<GR[aeegfca`ccb^ULF@<82,$ }iXI<4.*(+3:DQbv1I_kpsvy%/8@GNXkbUp@|& |rkd]XQLJJJE<534465630,*+!,,-:,C+K+U'a"m{xrmbR?,~sjgcaz^l^^bTjJsC{>:9:;?BJNOUcx'F'f@\v!.3851( gLw2dQ >-!|m^RJA91),5@M\u2_w\@% vaM?4& ,=M^p "5Pl!!.<KQTUTUWtW`NK>40#~o`XRPL A7-#(*)4.H7bAzMYer'058{8l7\8L8;5+/' |iYLDDFP\j t}'/6;CLUXWSQSUSIA<;95220,()2<'?094264561+))+<1M6X?`MaU^WU]Hd;e.] P=, (4>;/ }} 4Meu}}y|lxbva}cefcb`\\[YYX2\N_Zc_edbg`g^h]dYdSjLiGbEWEVCcCoBuFzK}KIFDHJLI?5'fsX]PNF@53(   $)s2a@TUKj=-#(/1 1)2L5p779:<GZm{!! zbL5! -;LVZdwwj_XPKzNkSbX\ZM]3g s '%,21'4I=gE@=AIS\ffebO- pU='yi\J90.39CUn;\}'266830q4b9W7Q9MEIU@]4U(I9  lZK?78=HTbv?Uco||tnmpuvpfYNH+E7C8>:1CPOB;BJ~LvJvRx^vrtuuqiepqbQz9x1-* ziR3"4AINWcs)0<M][Wc{InhI1$!h[\YOCB?<9.'0+C2N2V2]=aR_`^f`d]_P[<_'nsokd]WVTI?@DGIG?2(xfZV[g|mnocl`ma{[QHECFLP-VCcLoKpIkKuH<* Dj{xnjpx|zuuzc=+.30 $&-*07 4052>J:^1m'x yuz~}rlilj]QG=6," /50/:IVUMD90+)3EME/~ gS!GC>5' "(5G\u"9P_jpomry$:M^jpu{t[A&~ueUI@71"'-+$  +*&&(" #>Vfms| )Iiqtfq]rJp.fZRLC8) *14641221$$9N[_hz}oZ@*/<ET~jq~\D+}tiZQU] behim5nUmps&2515BmKXF@:$5;?>800341--+$3=:2-17<=7+ 0F_zo_TI8}$qhcZPF@DUirzpYE@ C T0m9=DTgw $Gk~yvnbT}Hq:_+E 2&    #6Haq{iVLGA?6( (BYfljhq %!#-56,w#m!f!XJ9+,," qjyimgbbWaJbB_B^N\b^ufv8WvkP2#%#z)n<kJnWsfx| 0Yvztwv~\>%rbSG=/  ,8HXk(49866|/q!h`TD4+)&"tdZVTSU_qxpf[O+@74?3L:QIM\Bl@zHRUUXaf1aLVcNsRxZu]nXhUhUmVqOn@d+[OB4)$"$+5?C>1! &2AYrsg`yZxQoCd5^&\YZ]djus[B'   $ %(;/SLpan));OST^nxkuFn&o z~uosvqfadgc[Zad^ P D@=:1! $0B1VIkV{YVTK;)hIc)E % }oeeny!-6>J\o}g[X3]Qbk_`m~ #8CC?,3H!fe<shZHk7P%DBFEC?<?'A1>:8G6Z:m;x7m=UJ@S0`'t# NwsQ0 :)^-,1AVl{~cr?ldUD951 zvqmmmg[J:1+$"+:Oh+Px%-.,("hK 2/BLQUUK}7n"WF< 66Ko *1;KPbmxzcF+p[ J<'|qpx}-FWh~'5EZp~jUE:.pN0  z}! (#$.1889=9F>O@X-[ZZ^_YF2%! +7?L^jnpnfa_Q8" 6 T k zmP1  }mZ,E91>#CS#e$u  r&]*J66Nf t$5Jau bH&7+./!0/)#"%,.,-6J[b` \_ipn^MA6% !&+7?DLTSMF=- .DS]a^wW]P?K$E= 61+  '6EPbu+HYy+6=EG:1!  .<D|M]R9SSTTOF<u6g3]/O*>"/"  ",:GXm  /?GNPMC6* 1?L_oy1J_ozm[Mx:dQE:0( } uof]WOD:67>IV`lwqvfscwdimnkjlpv)0.4AOZlxtj^O:/".=KUZ^d r'+++2;EJLMS[dhif`][TI|7j'Q1}jT=1)$!-8@BE L Wah4uDKJ:' $'.24C/K$S\guyunnl^D* nhflz +1;FNVc"q4yA>5-*&%#! $+0}1o0f,W/G@3Uf qsx~z|rvqqrtxwpW;% $<P]ftuhX{F{:|-{tkc'`4\ERUI_>f2q(!yi Y"N%I(F/@83?%G#O,\7i?pGvU|kmWI"B-;204$9DQ TOJFLSNC;(C=NKONKQIXQ_^aj^sXwRzI{HxJqEk<e2[%J7 + $  (+1;>ABB:0*# /G^suS4  y lc*a2e:jFjMnOtSz[}fpsk^URVXWUOJD<3'(;KW^ukh~]Y\eq{ 0=AFN^q{q\D+ r]QG;&}usrppx~|xwux|~(1:DGD@ 90% "z&s,x7GZhrwxx}":}FNXekvlin\xK=4,!{`@p[zJy>~4(*7=AF M]q&05/"/Let} p[A& "(,2;ITY]bhjha VK6BM;d6z1)#xZ?+ #.573.r+i1d7h7m5s,ut pmkls2Kh}nbXQQTVXY^aekxyhVE9 0&,9EP[jz~pibVE87AQ}\|fu{l\D1" #(2=FJLNSWUNC :9:6( %(%" %-371.+*( " !(%@$Tfu }snjgfc_ZTRTVTPLJGDA;1!xm^S J"B38>->$>CJ!U%\']$]"_aa\"W.U:WD]JbQeZbk`}YRH=.+BvXlld}[RIFN\jy,AS{`nkdr\|TMG?:4.-*%p]L;)  zsj*d9_B[E]?f:q;|?B;/'~|x v$q<oRrjxp8`MP\?m-}v`K6 vl](K6;B/Q'\#b&j0qEJLMGA><75359=<5-%  xng`\VQQVamtyzphd[PA1  4IZ ix!'*.8I[htvgZK=-.Iaw|l^SLIJM!S#Z"^hu*:HyUhcXrD1 vm`SD3# xqr{.?Rey|l^SE5 ";Rh| &7}GkZVhBt2~(~l}[sMiFZCH?5:"63356KW_gmtyxyxw uoh_Y&T4NAGMAT=[<b9i2t(~ tgYL?5~-l"a[ WVOIEHP]k{  ,:@DJMS[__\UPKD=6/,(#  !,;JXbj)s;zL}^{pumifea^\VRPQQLB:8r=\HKR:[*`j ooi_[[]\WPG~<r5c.X+N-K*E&:.'(1=HUg|vl^RG:.')7'J+`/s23/-*(&%(,~/o5e=^IZYUiMz?1!!;Vp~kZTQRX]agp}y rm2hGa\WqK=1$ zrlbTB2"+49<?DLRX[[XSJA80)% $1AMTQOLLMF<0v$eXMEGMXdp}*BWcghhhe^WTUVVM>.! )5BQ_jt}|uv}ysh[K;, '1<EJORTUQKFEJNQRPLGC?:3) ",1/*    }|}'6DNSQQU]}fwntvy}u lb"X-P8FB=F2E%C?;8 669<>CKV]___aehie\QF:1%   %(&! &+-146;>BFGEB>92*  ug`^^YQJJR^it *9FNUXZ[YUTR PJEB&>-=4><<C8D4@.=(>CJ S]gox3Of{|hWC1|tgYKA6-"pW?* ~o3cEVWOmMMONMNO)M>JPG`FqGOWajs{i6VTAv+#),(y!pmmqwwn`+M;5FOX]ckuz}p{bzVxMxC}7*  |!u)l0h4g7g8j;r?}=5+  &7J]pzn`QA 2 %.8@DB@w?uAxC~DA=5,"|xtrw~  .G^nyyod ^XR#M*E/>58:0@+G%OYbjo xwlbXQKD:/" '0"88>OAcBsE~IKH@93-(%!"""w#k!^"P">"*""#'/9DNW^dlsyvmsekbbbWcHd9g)nw zo f^U$N*J0H3G4K4R/](h t 1F\r2LecEy'  +9AHLLJ~HcHEI(L PVY[^fbKf3ii hc]TF7$ (4CSalqv`SKGFGGGGIJLSZg(v;HRY[[YWQH;,*:HRYagqx|~|wpi`RA. !*4BLVcq| }m ^'O.C69=.C$LV^ dglsx ~s hYG2   +7BFC7(#(+++,/4551( -B!U!e t$}+6@LW`{gooetYvJr9j&aUH7% #(+- 03 6"7666873/.07=}BtBs?w;61000,$ &7J\kruyxtpgYJ9' &7GUbr}wzmye}_^`_\[\YVNE+=D5]0t(t`M?3(   &3BS_`YPIrEd?W7L.E#AAHQ_qt[B.  /? Tit{  %?Un8P]_do}o*WF?f,_<}_?v[C-  *~3q=jBeGYHLHAF=DADBJCQI]Uk_}n.";'E(R*X-W.S-Y-i)''$$&-6>yAmCdE]FYHUJJL5K G? 6.,-- /26&<,@/B1D5H@PDZ@d;k8m7i2a,U(I> 0$ +7AIOO|JvC9/# -49?IQU_jrvx|~ypgb^\ZTK>1''2>HT^egc_\XZ\^cfijje^WPH>6,#$%1CS\chnokgYG 4"!,7CPX\[VOsEa6P$JNZbhs ',/-~$unjjn prtx):I\p| $+.48<?ACDIPUZ`eikjgee}cydof\g?jlmlieayZdRNG3<4) .Ha |&v4n9g8`8Z;X<V:R6M1O2S2Y._+f)p&$! ;Ul&4Gp\Xn?( }}];^@1.00' %-(  #-3;FNV^keVmG}?;4-*+2-;CDWOd`mxt|,BWnrcUMLONIGA; 3,+02 465-!"$q'`,Q/C235"," xngeeewcv`vbyhzr{y~~!-51'#&++($&,.) %-}3y9}@IT]elt{yof]0TBIO;]+gpuxxz{{xsk]MA;3( $*0346<AINQSTUSPOLKIE</! /9AGPXak{qg^[^bflszyl^F"~ww qe#V0I8E=KCRHWPYU\UdSpNzF|<x1u$rt '-0/)%)8H\q "+6{<r=i;Z9L7:6+5!7:;==;6,%&/<GIE<|4z(wvurqqs{ #.34206CQZ`iv "+y6q?rErHmJbKMK9J*F@:779::8}6w6r8h<_>\>_<h<s=};5+ '|4z=yD~JS\clrw}z iZ,Q=OMQ\KjAv4&vj[G1  +57108GNKGGGGA6$~yvrpke`^]_bgmtxvog_WOIEDGP&[0h:tJ^nvz{yxx-}I~e|yxz l\Y}]v_mWcDU-H7 %~ndl^\\N]AFJMQWVK9'# ''$"#'+.19BLRWX~SmNYGFB7:/0*#'*1-   *8K_lx*9FNXfsvjdW|Hw=r.ke ^WQF<.zx}~~zrixiokhmducgnrw|)6BMU]djpw}~xrmgaZO@/!,=KT]mx{"/:CK|SxXs[kZ`ZVWEX6X-UQH>2"~nbWMD<3,'$$)2=JWfx !6J]o}&+%z#t%l%d&^&]!]a$d2g7k9q7q1p1l:fBdGfOfZhdisjf^TKF?:~4m/\'N?, yuqmgb]Y[^dlu(-5?EJMSR[Yc^m]y]^]`c`VKv:j!]OB1 ~));4I?NLSWYcYpYzWM?0$}{yvoh^SH9,  /AOYdpzzu qq/pAkRa^XfOiHiDeB]?S=I?@A;D3J)NID@=70%zpg`\WWY\cm{ 8TlqaVU]hu~yj\PE;3/,)'#  $%'-1477 74&3-/*++'6#G$V'h-p0i0\0Q/C,8(4* tmgb^X#S&Q(R*U.Z+`$gow%-123232//11E8YAmFH@2% iO5~zwqkgdfhlqv&y7|<CN\gh`QH!C3<B8Q<a<pD{IH>5..6>A>91({m^PH@5* '6FSZZTE/ .=HQYr``dOeGaMYaO|F=4)! m]ND;3 /,,.<3G-  zuux(}2@PZabachkps$r/f8XAHL=X4`+bcdefc_^[Z\[YSL=-}zwrmfemwukfaadkp{  %5DR]fkorqokg efee&b2]>XGRLLOES>\3c'b\ URS[chlmovypifgltwi_XK>.!.8?HPW\^__^^\ZRG;-" xsu| &5DOY^`_\ZYXUPG=2( }ocVK@ 5- + ,6F X m*5;@ L*aFz_x{ngdfgfbwY`OJG2BBDA;2'pY E4&%-OCaGqLOTZ`aaegoz{iU>{%wurlbYUTQKD<82+"  />MZcltx|~{wqjf c^!T,F2:7+:>CHMT[dgjNk6l je^SJC>:6"01)DYs)=M]o #(+.26<EJJG@830u/_2G4031.*" |k\PMLMPS\gu~wvwvtsx*8BO-Z;dKn[ugzp~zyn\MD<4& q[I4#tcSD90)# %1 ;E M+R5ZB`Rggj|jhec]TH<22F(Vdqwz}yl^PA6+$  '3BN\gq{%y5oCeT\fRsHC<5*zs{perLv0wx|y\?"  '&.B7a?HNPQP!R<YVbmlprqnlf^YSPJ>. |gP8 qcXPIHGJOWbo|(4'A2M8W:a=h=o?tCxEvBu=r;n:g;]9O4>.)+-10+! ~}~ %/9DS]fm t } !$##v'h-\3L::='<:873,% !&''&).6;?GNUZZTKGIOVWRLHEEA;1)%" (/5;DzLzRwUvWuYw]~`acehmpssrrld[M=- |gTC 5+'(+4ARbr~|{6K]jtz )6DOXcn{ym_P@1"s]C+ %9GQ!Z"d pzrX?&dM;#.*%.00369;>AEHJJF A;731'1?2Y3t30*$3Ldz &,1431z-p&cUH <0(%" xj]UQ NRXco}':K[jy}tmf_YWVgYG]'bjtrN/  5N$g2BP^ly4Ndw~inVUA>-% |i[xSiR[PNMEJAJ=O;W:_8i9q;|@EMT_kx %/:BKTZ]bfd^#T.H59<,@A?;741*%-7$B+M3U8XAZH\NcVm`wk|r}v|y~{z|~}vmcvWjJ`?S2E#7'  ""z{|{}   x*q4o>rEvK{QVZ^bhnvz|yqg^SF 6# &,4;?|ApEhEbD^AY9Z/\%ahp{&=P^fkqu{ ~%,5|>vHpOiTdV\VSVJW@X8W.T QMKNOOKB7)  #'+,+' &7GS^jzuZ?'%6DS`my{rfwZgP[JMF@G3F%B?<=AEHOYm%4@GFC?=BIS \c&g3g@cK\SWYV[Z[bZiWlRkGf:a+\U LC:2+#{kaVOKI IKPU]iv0F \r$(+,./05773) qX;kQ:$5Nf'=/SGe]tp{k\Jv9j([M<*}pdYP~I}E}DFKPW]eq !&&,6ET_gmrxyupid]QB2$ ! ) - 0 210./012238?HQX`ejlnqrqokgd`][WRMFB:4+%!  %+/3;CIOSQNMKMPxQrUiV_WUWNVLULSNQOORLZIaFi<q,{ 4EXhw |s j c\RG;." {qjebbgq~uh`]]`e g!h8iPodyv .=IRXs[e^XaGh6q"||tnh`ZRJzBz7,!%%4-A4L9T=VFTNQQOOMKIGED=C5B)@<669<@ACIS]ejlmke^VOI?1" 4HYeoyvj_ULAt7j-^#Q@-  ,:DOZhw*5@LWa m x$).25:;<=<>><;;94-|rf\}SlI[:M(B: 8:AKZl~4KatzcK3jT@.%~!x!u"s&s-v4y<{EQar1G[l}->M\kvj_N=(iK,sc\\agmt{   #-1.*&#!   !#$(*("   %%.17>;L<[=i=u=<;;:;;86|8t:n>h?a<X:N6B18+."&  "&'$ui]R I?99?IUbm| *4<DHMQUX]aglorrpj` U E6&s mjmorw~ +=Par(2>LYekoytcwM{5~{yumcVE2 "-4=BF GDA><!7(0/&7B LWbksz~~ztnkfc\QC7+  ".;IVbnxvcM}6zvsnkihlqqsv{ '28:976":*@6EDIQM^SgXm\o_lagdajWpLw<|*|wodZQG;-{!tqmkjms| +:ERb s&/6:<<;98{4e.P(< *zurjfcd~fvkosj}mq{(?'V8hFuT|arynaRA0! nS5vmkmnjfhq{ %/684+ 5JU^l{}umiaTB) $+5?EFFFGGED?8* $3=DJNS Z^` airy  xm_K4 ")'yme[PHE&K)Q-Z0d*ltz"1:<70)#!$/?HD6#-4.A4N6W0_$iq v tk^R%D(1$#!ustsrvxz-<M_q'k5V@D@1<>BGFC;0) )<@DP`nqll u|uf`h mlklnrtqjglkimncO<%.<K\nxdQ;$ }{{nXKN[hpuxz-I%]3h?oL}WaimolhaXNB5%}Y6 />Obu!y&l-[4G:4>!>9)zgYLB:?Xmwuu '2 <D;GVInHGE</# iR>, !!  " +-$   ".7?KXahlqttplg_TD5#*30(  (0;B EF%C2=B:R;`8l5y1'q\K:# xhZOFDGNTVVUXan}#  1AL&P1U5V4T6P=GJ@S3Y%bnur fYNKJB0  0@Rh~ rbVOC5$ ':CBCKWdlv|naZZ_]TJ>.  #%#!   "+4<CJT]iv} sh#](O*A&0" whhtxoov  ';M^r v_K>2(~~#4FTaju)~;tGlLbLXLPRI\Ba:a/]&TF9 /$ " !zsh[STalrtz&4DT`fjmqw} {fG, !*041.)&"!.<M^d[J?7*   ,<M]ir{}tiX$I#:-   !($ # 7K_u zn]M8& xl_XUUVROOU]hu )7FTe r.?NW\`ba_[VT}PvLlIeF_AW;O3F.?*<$9740 (~yy{#)1:CJQZaglpt||ugUD5%~ *9HS]cfgjprsvwupi`]]bh ifY(=0"32 .)#!%'.4:@HPX_``__]ZXTN FA:4/)%"!   )38?KXdkov|p]L9'    !(09@BBB@?=<8 4$67:<B6H8KIL`MqLuGw?984u.b&WXSE: 2*uaWZ]^^dq +>Vjx~}l]SLG? 7(/1; BHSY[[YUQNE5( &-+  /:CKValv}|{zsjfbWLC7&)! (4;<5-&$ ,.$#3GXet $tdUE4 y|xnjf`[]bdgjkq .45<GSap} 2:>GQWVUNGDs>g6_,T$A& zy}}| #*3?KY/c:jCrMwU}SG=}9v9n5g-a%[SJ=0 5Og{  '*,u,a'J"5 $   !+269>/ECLSS`Zr`}gwkkjbegbm^jX_TSPJJ<C%8 + -CWa`[`lz}zx r e Y M C=:@JNI;-   !% 0 DPSU\f i bW LFEC B#@AA8%)+036666632221z2t1m0k/n1x4~41/,-131-("$)*)-1<IXenwtlggg_RC3'  '.22 4:C&J(K&I#E!E!F!E@9 1+&! !2?J%V/d4r6|447>CB@>=y0m^ RF7) 2AIIHP`ny+;Og|zupi]D& xiZI:*vq onia]cknf^`m} %3>J Wab`be!d$\(Y([%a$j!leXK@ 7 - $ (05 7<G)W0_7]=ZEQKEN:O/O(O%O&P'M)E&>80&yh]XVUTUY^hqz3>F OVS L%F.>62;'@$C'H+M+Q!SOJGCCDC>94.& ,6::>K[j*x7DMPOOOPQOLIEz@p8f1T,=%#    &$ ! #     $#'2<CLXdfecfkqrk`YUPB1$ !$% &- 7AN[ekklqx~ysk`RD}4(&1:EMU[_bemx!/}=yIvTvZu[sZqWpVnWiUaOVHI=52$)  "!&6EQ\filmn poid\QD7,%"6O`fjovxu qo(s4xAxNs\ikZxI;4/)" }rfZK<- vsu&-/25<?@DOXXN@7 9 AF H G GJQWZ[ZZ\[WQJC>:4&"!!$&$"   %'(* -07@"G&G)=,2.+2)6,8,8*8)8):.<2>3?4@6?<@EALAN?M<M8N5P2P-P'SSS STQMJHGKNOLG E A;2($"!"%*-+'!  |    - 7 ? H O U X X Y \_]TE930.,&  $,21,""$)0 42'&08?EKQXajr{|n`TI?1!  '/=LW^djry{{ (3<DMU\w`hb\_N[?Z2X)TK@6+!z| '4 ?FLSZ^a cb ^YTNF=1% !~0|B{Wzn{{"5GX{ixxwvvvtqle[N@3( ziYJ=v1Z"G9*&2CTcntx}$4A N^q#,1443/,(! ~tkd]WSOKE@:75440 ) #         }ytqoniedirz  "!."6"9$;'?+F1M6Q<UAZC_CdAj?o>t>y>~<94-'w l`YTNF:-   !$" !!   %(('&#$+,*)+ /573+! " ""#!  !)19@@@@ADFIKKKKLKFB> :7#22-@(M%\"ivtk`UF3  %,5>GPSSPNM+M:MGHUEaBm?u:x2y+y!ws mibXK>1$"" !'2";2C@JKOSS[UcRjOoLqHqCn9i*d^XSKC91)! |-u9pCoIqKwKHHINSTUUV%U;SRLeGuDDEC?90*!zog^ULyBn7f,\RI CEGJLMPX`kw&<Uk #(+--/0121/+#zp_K9*#  xne\SLJLNONPSWZ_l  "#,$?%Q#a"l t~  yiYJ</" #%'()***&#  #$ # $+05: <;9668<@CEGJNQSUUW[^^[TLD<1' ' /8AGLNPOMNNONLIE@92,'# *;L\iv~ym_P?0% $*06:>@@>==<>;5-)*+--,.14-4:3E3N4V8]:f8o2u'xyxtph_UJB<3) '07?DJLM MMNNNMKHC<3* '07;AKWdmqrppmiffinw}~ &1:u@lEaKTRDZ2a f ijhe_XSKBo6d(\XWTPJC?<<=>?CHMRYcr   .<FOW]elqssrpq pnjd`[SJ@71,)$ %)/8AGLMOONOR TVTOG>4( pd[SLF?;77;AM ['e/p5{8:;@EJMNNMLL!J+E7AC<R5`-o#} veWNE=4+$ $+279<AEJKMLKG@:2*"   '09AIOV\dimpnkdZRG;/$ !""  ##&+(2):(@'G&J(L'N$Q"T U!S!NG?6,"!(- 2551,'"  !,6AKSX[ZWRNIB:2*! $-1224432 233#2&0&/(-*.+1,5*;'C#HMPSUSQNJJLMMIC ; 4 /.-.037;>AGOUXVPG?7/* % {iXK?6/' ".=N]jv % ,2+698G:T:d:t73.&yk_SG:-"  $+156630*"yohb^YUQPRRQRV\d jn)q6xCQ]iqw|~{0uHl`atTG:0' sh^VK@4( ")18@GNSSQKE=5.%    #+4:=><8545569=CHKPTXZXUOH@941/+$$- 5=DKQSTSRNG?70)# $.8?EJNRRN G?:52-)# '-16;AEGJPX`hmolgecb`[TMHB80*))(%     #'()-$3);-@/C1E4F9L@SGYK`LeMjKlKkMhMdJaE_A_Ad@i@m>o=m<j<j<l9p6q3r1q1r.q*o"kg b]UI9'qbXPIDA>>==<>?CHOXbls!{%(.6>GJLLJ JH)A:7I-V%aks wzzyywtoh`XOE:.&  (/6>H W%b+f1e8`>XARBK@F=A>8B-F$HH IIIFA91*&  }{{wsqnnnpt z*6?EGJMPRUVRI@ 63$2./7+A#IOTX\ `ejprrld[RKA8.$  *6BO]irwzz{zvrmg^UOIB8, !+3=FLPRUWXWSJB7.$     .:CIPW_fjlortspjcZTOJE=83,#   "#$ $%#(!,046 7 862.)$! "&#*'0*4+:*@'G JJ HFD@<73/)!    ""  $'+18?DGKPYagmsuvtrq n'j0g:c@^DZCUEOLKTIYI]F\CX?R<I:?938'73-)# {rfZQNNOPRV[bgjmqv}&4@JQY_gnrtqnicZ,O;GK@Z9i4u1.)& wog\RKEB=6.'$! !" "$$#""'*+(# (:ITWX^cggeccb\SH =4&.4,D)Q"_kv }wld \TK B+:55@/I)PSTW\__]VOG>73.("   )5>CGMNKC<8762+ #! ! !%'*-269=BGNRW]beda^[TLB#6)-0%4<@DHLQW\ab`^\ZWRLE?7-   #(19?EJPX^_ [VQ#O&M)F->44:-?)>#<87:>CKS]bdcbcgloo kbW"L#>#1"%!""#"!! !$$! $/ ;EK*M5P>XDbKiQlZnapfplqqoukyd{]|X|W~XVR{PtNoKiEd=_3W'NC8-!   #)- 1 6 ; > ><940)   &-37:<>A A < 6 / + ( $    "#$%(-27986640+&#!   #(13237882(!   $(*.26653332/+# " ,6:=>?BGMV\^^\Z[ZYSKA8." #%&&&%'*&/0364A3P4\6f<pBxIyQzY{^{`zax`n_e^]\UYLU@R4M$F<1*$ {l`YVURLIJKPX` fmv )9K[iu{uqlcZM=.#  %*-*-6/B0L0U1\1d/n+y&! "#y!pfZNB6.($ &)*))*,--.-($ ~|{| }  !%).4<FPZahmprrpkf_YPG<3*" "#$$',/ / 0 1369;=BF GJJHE!D)B0>5>:<>7B3A+> :62-#zy|~~| |}$)0<CGKSW]&b1c<aHaSb]ae_lXrLv@w<t5p-m%mm mmliea\XWXXSLC :/##* -3663100-*" }{}',./149?BBA<5,#   %/8>EKQY_dhif`XQKHC?;62!+.%8#@$I%Q&Z%d#mqvy z{wpe[RJB9,$-6?IT `ho%u+y-z,{+z)x$r"j!a"V$H'9+'-049ALWagi|knnep`o`kcfg`hYhPjCm4u(  / = G PYbl s v y}}vog\PA1%"'*.0/+'$#%*%--+4*7&9#8!4 /+)&                    &-28<AFFEC?:754459=BGKQTTSQNH<0# !)3;CIOU[accehmqpke^VMD9,!   ")1<IQUWXZ^acc _*X0R3K3A435&4468;BHNQTUVUVX[]ZUOG;1'   $0=CFJOSX\\YWSO J D < 4-' #*3<EOYdlswy|ypf\RE7) '5?EGFHKMOMJF>2&  '2?LW`hr| ~si!`(T/F65>$DIJMOQTX[]_[TJ}Cy?v=q8k2f.b*_'_#abh ow "+5@JTZ_a`[USRPMJFD@;84.("   $(,059>CHIHGHKPR U U S PKGA<60)"     &+.0358996 20+)(2%9@EKRZdlpswz~}|yunfa^YRJD<3+&%%(((%(+%1!6;?DH KLID?;61+# }tpqsuvz ")09CNYckoq%q)n+k/h6b?\FVLPRJWC];^2[)V!RPRT T SRO K G D@;63/-)"      '1:BINRVZ\^]^_ab`\SJ'A28>/G$NV ^iptuuwyzzxvrlg`XSKFB=:62/, )%#)0 7>CGHIHFFECA=81' #+4> GPV#Y)],`/c0f1j0l-k*i(e%`"YQH>2'  !,8CKRY\^] ["X6REJQ@[4c'il npqplga[VSRQRRSRRQNJEA:2(#0;|HuVrdrqw|}|ti[M=0#$.59<=>><950)!!%)--,)$ %.7<>?@CHJHC;3*"".:FOX^cfjlnqssoh^TI?5, ~{{ '.4:="@)B1F:JCOMSTUYW_TcNfGf=c6`.\&WNE9,  ~wpje ab c'f*i*p+x)*+,.0246 ;"@6HGPWUeZp]tasbsas\rRnFf:[/Q$G;0$ #''%! %1:DNU[^adec]UK>1$ }wstx~#1=HOW_gs ygS ?%,).011136:<<;;~={AyAy@y?w?v?w<|730048:<<<;99742%0-.3(; CHIGD?8.$ {xttw{)7E*R8`DkQxY_bdfhihec|]qVbKSAF9:1/+$$  }tmgb^_agmu (06=BED@8/# %+---04:@FKRYahmqrqmhc[UOF9+  *5BNYdoyvkaUKC>70'  "&)*)))-..-*(%! |xvssqqrtvz|!%)/5=DJL LK#N/M9NBNJKQIWE[@]9`0b%a` ]ZYWUQLE=61-*(('''&"  "+27;=BE"K%Q)Y.`5d;eAbH_PZWTYKWAS5P'MI D=5+  |qg`]\^bfkqy &-5<AIPW_ekn qrs's.o4j9c=\BREIE>B1<#5.)%  (19BGKNPOKFB@><82*!   %*,,*''|'t'l&e%^"WSPOOQ U ]fq}%5ET`kt|xqjd\UMD8,! "),-,++-/37=AFGJMNQSSQOLKJ)H3D:=>4?)>:62.)"  !'"-+/205090<0=/</9-6,2*-***$'$!    %&$!   &-6?IQX^elsw{}||yuof]RG:+ "+3;BGJ~L{OxStWr[q`qgtoyw~~|xunh`XMB 7+!)2 =GQX[^`aa`_\XRLD9.!  #(+038<@DGHJNT_floon&l0j7d<ZAMD>G,IL MMMOQQPNrMcLWLOKLINGREYCd?o>|;71(   #-6AJ R Y ^ ekquvupi^O>, "&('#  '/6<CJQW\aehi i g d a [ V Q LF>4+"$)+ ./00/,%  &.6>FKOPQQOJEA>94-'$####""#!1 @ NW_cd c cegge_ZTPNJFDA@=:62.*% !"!   "&+ ."/%/'.'-),)),&, +,0379887 5 2 , %      (18@FLPTX\aegijjjhe`YRH<.#)16<@DGJL|Q{V}]djotwz}}|||}{xtplg$`/W8LBAL7V.`&jqwz }{sjaWL?0  %1;GTamuz~ '~/v6m=bDTJDP3U Z ]`dhloomkgc_]YVRNHA;5/(#!/<GOU[a hmqttqlhe^VOE8+ }zzz|  %*.2 5 6 9 < ? BFJPS Q OKIH!I&I,H0D4>6881;*=!>=;962,"   !)08?DGIIIJLKIIHFB>82+%    #%)-047:<?ADFDB>82,$ "%(*+*'$  ##%'*.000.-'"   &),048<><9630-)#") 16;@CEE D B =6,!    '.4<DMW`gnrx|~~}{yskbVK=-  |vq l$h*f0g7i;m>rAvE{INSV[`aa`_^]]^$^6]G]V]c[nXwU~OH?3(ti]RI?5,! (9HVft~ yodWL?#3'$,/4:@FIJLLKGC@?AA>:6530,('(++)($ % / 8 >CHJNQROKE@:2*$(/5;AFLPSTSQPM KHDA<61*$   !-7BLU\afhlnmlhc\RIA;60)# %* .!3#8$<#@!D"G!J!K!JE?941+       %)/5=CGKORTROLMKGB;7 1,'""'1>MZcgjlqtne_`a XK?1$ &08?CINRY\XPKIID9+ )3;CKOQRSVX[\[ZVSOJGDDFJNU\bf"h/h:eG`W[iVwPH?2& }m]SLB;5,&!"1<AFLSTNLONJ FDB=6&-- 37 :=@CGIKMOQTX]cinuy}~yrjc_[UMA6 *!& '*18=BILOVVQJEB>:3+% "&- 6>@?8/''(#$ ,5< @@==@DEC>6/,)%  !((#%),-+(%   "/89 630,,*)'&()&"!!%+-,+)(' (**& !&(('$!#$ '(,020,+/36741 -(! +6:977:;84 1 - )   $'(&"!""")057:>@C#G,I5H?DJAT;[7b2c+_$W PJC9. " $.;FJIILOONLJE< 1&!).16;@AB?92+'&()+/48;>ELQTUZ]a`\WRIB=7/'  "##$%'*.0.++-.-'  !*19?C EFH LPSQ L D 8 ,"$*.4<FPV]dnwzzunf_XRME?:4*  .<FLMKHDACEHG?5.)%         %+/4778;>< 8/$&-6@JU[[WSRQMF;3,$ ',,-/35666873.+)$ $(***++.368::7774.(&%$$# #)/6;*B6G@OGUIXGWDU@U<T7O2I,C)>*<+8'2+"  !$    !#%%! &.6> FNWbiklmoq q&k.e6^;V?NAEB<@.???@A=951.($   }|}~    $*/7AJSY\afjqtvurqmkf`\[ZVNF>6.'! ".=IOUZdntxyxulaWSMC8.' (5BN X^a^#V-L6C=:E0L$QW _gostttsoic_ZRI@93-&!  4K^ptlbVG:0 '&4BP\elpqoonkcWLA5(%4<@EMX`acfigb^_aa\US V T M C ; 7 0 '    $-7@EFCA>:6.$ !&'&)1:@ABBA=952. )%#!    ".8DPY`dfe_YQJC:/& (28<?@?=;>BA=984/(#    $%"   #).38;@CED=!4./;+G&U!ahknswzzwqjaWNH@3)#   #0;EOX]^^_bcb__^YP!A$4&*"! "/9?D JPU(W1Y<^HbQcU_YU]I_;^.\ \Z YWRMG@70*#  +8FT_ksvusrnhaYTND7*! !$&((''# $)06<@GNTXZXVQMG@ 9/& !'()&#!"%'),,*'%   $$$$$''%$$  *6;AGIJMOOLJFA;4(   !$"$*/4:BIJG@830,&    *6AKV`iqx{zvrlh_XOE:* &+/5?HO TZ`"h+p4u7w8w9v;u;s=p<k6c/[+X$TM @2' ~zwusstwy%7GT`j!n#n#n khf f b [XWVUWWTQONLKH@;71' ' 1;F#N+S0V2Z5]6b7d7b1^*Y VTPKD?;84-& %+39:: 4!-)+--//+ '#  "!  !)28=AHMRUWYXURQPNC4( "+/0/048961-,.1 675557 8::963-'%#! ',039?@@A@=:871&        #+17=DMTUSPMKIHE!B$?";4+ #! (2;BJPV[^`a_ZQG</%   . :ER _'i.p3t8x<z<}=?EK{PvSmWd]YcLh?j5h-d#`XL=.# |yxz' /59"=,A3B:AA?J;Q7U3V.T(Q!OLJF?5-# "&)-16;?CF JNPN#K+G0A6;<7C4G/F(B ?@C DC?<<:4.(# "#!!*03688642!/%.(+*),&-"- +'$"   !'.6=??;74.%   "$%%$$%'+/46:?DJPUWVVUTUSPJC; 0 & #(*+,-.-+)'$##  !*/3 69=@"C*C1A7;>3G,Q$Zdmt w zyup jaWI<-#(*,,-,)!  "&(('#  !!  #*3:@HPX^ ekq"v)y/z5x;wAsIoPiTcV\WSYI[>Z2V(PKF A;5/*$ zxxz~(17< @ D F G D BA @ @?@@A@= 81*$ %-7@JR[bhjiifb`[TNGA;5/ +' $*!4=CGJKJH F DCA@?<:740,)&" ")-03 589<"<%<';+7,3-0/,0'0!0/+& " !#'**)'$####  $)-/13342/)$     !#&+%1*8+=,B,E-I-J(K"KKJ GCA?><60)$   $+131/,,,+)&"        $,6BMV]cilmnno n l ifb\QD4#     '+*))+-* '%" &*/5< BEGFC>8 1 +&  #(+02358<CKSZ_bf ec`\"W%S'N)I+A,7+-,#-..-,+,+*&   '.3!6#:$=#?"@BEFEC@?=<;:9#8)6.4317,<&BHNQPKF@=;;962/-+*(&#!      #"&%'''))++/,/-/,/,.,++(+"*(&!$%!)+..14 9 ?CFGGHGFB;5.'  !"%% # $),.37<BHN RVZ[]][YWWXXURNJF@< 6.&!  !  #(+-.///,*)(%#'4 B MXblw vnf#Y'I*;-./!023310/.+'! zrjea_]]]_agpz!'+.121.*# !'/8@DGFEDCB@<72,%  '/8AGLQW_flqw| |wq$j)b,X0N4C68:/='?@B @?><:73.(!   "$(,1444 4 4 2 .+(%! %()'% & &)-145642111-&        %*/49>AEEECA?<6/%    !"### ""!!',.1 4 8<@CB@<961,& %2=GPX`gmoonkgc_ XQH@92*!   $+17>CEGIJKJH#C(=,9156/;)>#ABCC CB>:7530-*'# $.7@IR[chnquwuqokgc[R G:+ #&)+,,*(('$!ypib ]YZ\bgnuz "&%$#! !""#$'***)&%-#4 8<?CFK NQTWXXXXXWUQJFB@=:73/+'$     %-5>FNV[af i j mnonkgb[SJB91)      (5AMXakt|}wpf[QG;."    "#$##$%&'''%"  #0=IS[afijkllliecaa` \ZWURNHB: 3 )  #'+.0233211368751,(& # "!").159?EJLLMPTX\\ZW T N I C :1 ) ! "%&'&%#    !',/24566431/.. -*'$#$(,/246:<<=:851-'"     " """!     ! ! !   "#%&()*'$     ! $&'((**(#   #(-27=BHOUY [[XTPI @#4%(%"   $),122311-) "          #$&(+033 2 .*'$     (166510./25774 .)),/0 ."*#($(%)'*(&(#$!###!!# ' ) * + , - ./012588 4 ,$   "&(''&%!  &)*+** -07>C CAACGLNNNOQTSQ O O R R P M K IEA;4)  #%&%%$##$%%&()**(&$!   ""!!(4>CFIJIHG ECDGJ!J#E#=#8#5!1,#   !#%&'$!    &,2;GTbmv{ }uk_TJ>4+ ' "~|{|      ""#%%)&,'-&,$+,,,- . / . . / / + #     "#&,*3.;2A3H2M4R4X6_7f7j5k2j0g+`%WOHA90 &     !""    $* 06<@B$D)D,D.D.B-@-<+7-2.,/&.!-,+*) )*-/1442/-..,'"  $),/00.+)%!   #&)/6<@ @@@@=7.#   %-38:!:":"9!8641- '$     *047<EKO R RSUTPIB9 30.*'%%$!    #*13225:?CEEB;5/*%##$ "    $%'&#      ' 0%9&A(H*N,Q1U3[5c6k6p6q4s/q*j#bZSLE A><5*  !%(*-.//13678741,'" !"%-25634:>?=:6211$1(.+-*)()%)$*%+%.&0&0'1&1'0'.&+#)!)++,-., '!$$%%&),-+'!   !"""#$&'))(&&%$#"!  $0<GS^flrwz|zvurk`VME;/"         #(+/ 3 : @ D E F F F F F E D DDEHLPTVWUSQQNKGEA90&"    !  #) - .,)*+(%"  !$%$$$!   &,16: =?@ABA>:742!.")%  $,/120--)$  '/6;>???>;852.--,+)'&%$$##"!  $),.+%     !%*.158;=@CEFD@;5-#  !$%&&&&$!'1:CI N RUWY]`bc`\XRH=5,%  !#$$#   !$%%#"#'++00577;8<7=5@2C.E'G#GDBA@ ADEDCCBCCB>93,'"   !!   "'+05777657: :9751.(!   $&''&$" &-354576/'  $+268!7"4"4"7 964223578665 32/+&   $'*.1345656677765456541/,)%   "'-29AHLNPPNLIB:2+% %,4876679999::::=?ABA@BB>8-!  xsqt z!!!"#$%')*+./122200 /&-0+;&F!NTZ^ cfhd_ZXTOE9-"   !"## #"     !"($-%0'0'1(3(5'7%;#= <84-" !#$%&%'()**)'&%%$ "   "&(***)()*+)(&%      "#$$%#-"2 4569:=< ;630.*($!!""  "$%%$#       "$&(*-/12310000.-+)%"   #,8BKSZ^beilnnke\QG=4(  "*19@FKORTXYYWSME:- $).134!5*626;7D6M5T1Y-])`&c"eec_X PHB<94,"  $')*)'%"  "(-2 8=ABDE!C">#8$1&*'#('%#       # % ' ( ( & #     !#$&''%#!  !(-17<BHKLLJH FCA@?>=7 1 -*%  &,38<AEGIJKNPRPLFA:3( #'*/z3v8v;x>{@BDEFFEDBA?<974 20,$(+"2:@FK QYafjjfc\VPHA8/% !#%''&&%$#!!    &,158;< ; 96420-+($! $&(*)($   #*.257;?BFIKMPTX\agjie_WOF< /$    $ * -39 A H N SW[_bb`\WRMF>5+    #*05:>E KSZadghgc_YRKC <3*! "',03578;<<851*!  "$&(*-0258;==<<97520-+) '$! $ (*,,,+))()*+,+)('&$"    !"%*-/233232 2220-)!%#&(* ))(())))('%"  "$%%$$$"  !$&')((((('&%%%%$$"!!  &+04:?DLQVY[\]]^_abdc_YRIB:1)     "'+/37;@DFGIIIJJ H E?9 1 ) #       "$'('%""##""!! "##"  "!   !#$$###!  "$#!       !%(+-...,,++++-.--*)%#    #&&%$%&&&%#!    "&).4;@CEHIK KIEA%<,6003)4"55543.+($"    $(+-,+***)(%%$$"  !&+/4:AHMOPPQPOLE?:75 3 / , * ( ( ( ( '')*,-,*'$   '.4:>@BDEGIJJJIGGEB>:6 0*"     !&())'#  !#$$#!  !"$&''''''('&$## #     #&)+-/258::8530-(!      !$%&&&%%$$"   !$'*-010+ &! $&()(&$!  !%)+ ))''&%##'!),/0/+'%    !%).2344310-)%!   #$%&%$%',/2 4 6 7898765 3 1.*&"       %*-/0248<@BEFIHGDA=83-&     $*.2221/,)%!  $)/5:?CEFFFFC@ <940-)%      !     !% ' '$!  "&*-0/.-+($   &+021/ + %     &'( (+./"1,324729,9$9850*%  $*-.01220-)&!   %*. 0/+- 3 : =;6/)%$'-241..022/,(# %*,/1331.*&!  $,37=CC@<<=<<;631/(! !&)* ) $   !%&"   "%((''&%#   #&)-02/-.38<>@ADA:0)&"       !%*06:<<:84.($     " &* / 3 7 : ; ;841 ,#(%!&)+++(%!     # ' ) *)$    "$%&(* , ..+'#  '.1/-.3679;95.&  !$(-29>BDHIHGEB>92*"  !%(,//-)())$   ! # %'(),0/(   !%*--+('%$   $(+/1013:@BA<5,'$%(*&    !"$'*+,../-(# "&('$    $()+---,*(%!   " (/48999 :85 1 .)$                     %/8>BFKMNNMMLIB8.$  "%(,/3566430/-*%"  "(/57668::9763," "!#&*,--)$ "   "#%%#"  *1799;?CGGGGD>95540-+--*(')--*'&%"  #&'''()((&$    !####"!'/43.-29>@AEGB8.))(%!                    "$''$   ! !#&(+.22. ( # !        !%&%%$%%&%%% "   "$!  #+49;;=?BEHJHFEEFE@8/'  "$%&&&%$##$#!  $*.23369<==;:50-*)'#"#$"  !!!  "%***,-014553211/,(#! !$##)/110/.*%" "%(,// -,*($      "'+037999:<<;72-($  "*/15;DJKJIIHD?;9876541,%   !$&%$$$#&#*!+--.-+* '%       $)-//.+ **,+(#!%+2 8:72.-/,)%#"   $).00010/+%&* * ***(%#"##! "&+-00.,)$!    !&*( % # !$')*,,+,,+*($!       $ & )-13-!&$ &''%"    #%&'))))(%"  (.5:=>>?BFHGB><82,'&()(%##&%" "%%$$"!   """"  $ ' *,.-+'"         !)19?BCDCDDDB >:5#/'()!)+/ 2578:984-&"  $())(&%# #$# !#$###$%%#!"!   !$%%$##"###""   $#!!!!   "#% &'&& %"$%#'%(&)%($'"$"      "&+/"0%.)-+.-0-1-/++)'%% "    !   #""%'(*))))+-/., )&$#$%&+&.%0!2210-*) ( & $!        %$$"   #&(*,++('$"    "). 258;>?> 9%4*.1)7%=CIM OOMLIFC@<7/(!  $*-1345430.$)-%6@HO SSTUXWVROKE=60*%       "!%$''+(.)/)/).'+&(%$% #!      ' , 0 47:<>=<:7"5%3'1'.')&"$!      '-2467777752/,(&#!  !%!'")#)#)$)!)+---,,*($    !',-,($    '.27:<;973/)" #(,0369:":*90664=4B3G2F0D-B(A#@?=951.*&   !$%'*'.%3#9 ?EIKJ JHEC@;72,$   $*0234431.+(&"    $(+.000/.,*( $      #&)+ ..12"3%4+3/14-5*6&5"532/+ '$    #%''('(()+*(&"   '19@G OUZ\\![%[)Z-X0T2N3H5@49303(1/+' #  !$&&%%& $"    #( -"1"3#4%5%4%3$2#2!2210.*) & "   !&( *"*#*#+#*") '%$!           %''')+-//000/-*'%##!   &,158:<>@A A ?<941,'"   #'* +.1346688640,($  #&)+-/0333346541.*% '-4:BHOUWY[ \ [[YVRPLI D"@%;'5&0%+"&      "$')**+,,, + ($              %*/2355532 .*$#)/ 47:;=?BEGGEA<61+'#   (/39=@CEGGEC@=963.+'"  #')*"+&+()*&*"'$!   !$(+./121/-)%   )09@EJMPSVYYYX XVTQMJFC?:73/ ,)%     "##%&'(('%# # # ! ! !             #&(*+,+)&$"!        !$(,//.,+ +**&##&)+.1258:=?@@?=;851-&! %*06=BGJLMMMMLJGC>81+%            !#$&(((''%#"   )049;>ACEEEDCCBBBC B A ?> < 8 3 - ' !            !       !!   #%&&)*,+*+**(&$###"   !$(!+#.$1$2$3"3 2/-)'%#!    #(,/257::840-+)&"   $'+036898:;;::973.* ' $!      (08>BDFGGFC@?>=< 9 6 2 1 . +*)))'!#$&'&% $$#                                   !###$"      "*29?DFIIJIGEB=83-%  (/6;?CINRUVVTPKFC?;50)#      &*.1344531.* '#         # +059;;9863.*"                 #(,/212221/-* &!  ! !  "&+ /1356777 7 5 2.'!      %+0 36899852/-+'$  %-5;?BGKOPRTVVWWWWVUPKD>83-'"    $)- 2444431!.$)&$((('% #! #'+..,,+)%!       "&'))('$!      !##"        !&,133210.,( $ !         "%&)*+-//.,)'$"   "%'))*+,---,,++*))('$!  #%''$!         "#%()(&"      "$')+,,+)&"  #'*-/11/-*'$"   !#% &&%%$"     !$)+.033320,)&# "(-158;;;; ; ; 9742-*&#  !#%&&&%$%'('%   # ( - 147:<;;<<;:7510,* %    "$&'''''&%$!  #$$"!"$$$#!           #'+/46787742/,)#"%'*,-/000/-+(&#  #)/69<?@?=9730,%  "%()*,,,,----*)'$# #+058 ;;972/+&!   # ', 1 6 ; ?BCCB?>;85/*"                  " % ' ) + + ,,,,+)'$!     "#"#"!          !%(*,++)'&#! !%*/ 2 5 7 : =@BCCB@=951-)$ !""!   #(,157999 8752!/%+((*$-"./-+***(&# !              !&)-0355542/+'"   !$'(**)'$                  "$$$$!           $'*.1358899887633/*# #(+/1344431/-+*)'%# !#%'*,...,*'#  !!##$$""!     !# $ & ' ' ( ()**,-,+ ( %#  "#$$$!  "',0479;::740+%  !&),---+)'%#      (/6:=?@CCB@ = 9 3 . * %    #'*,-,+)&"  !#$$#!  !)/368;<=<:73 / +%! $' +.01200-*&"  '.5:?CFGGEB>92+$  %'**+*****))('&%#  #&*-/1233320-)%!       %),.0 100/-*'# !#$$%%& $ # " !      #&(*+,**'%! "(-269;::9750,'!      #%''('&$"    !&*,-.-,)$   #(.47<>==;962-(# !#%&((())*)('%#      %*/258999641-*&!   !"""""###"!          !"!    "%(+ . 0100.-,*'%"   "%(*+**(&#   !$')*,+**)'#                           #%(*+*)'%$                      !(.5;@ABA?=;962/*$!   "&'&$#$ % %#     $&'*-/-,)&        !"!           !$'+.024444432.)$        """"""!    !!#$%%#!      !$'),--,+*('&#!                              # & * - / 2 46655430-)%!     "',036789::62.+($  !&*,./-*'%%$$$$%%%##"!      $+27999:<==<:740,'  !#')+,///--+)'# !%*/49<@C C D C A ? = :73-&                   " ' *.157 : ::853/,'!         !"#$$$#!   !##"!      '- 145642/,("  "$$$"!   ! $ ) - 03564320.+(#"     !"!!   "*06:=@EHKLMMKFA<62,&#           "##%'&&'''()**++**+)%!                                 !%),0234568;;863/+&"  "#%%%$"   #&).13557542/-+*(%!  #&+/49?BEDCA>94-'!            ! # $ $ "  !!"!                                         ""$$$$%%&%%&%#!   #% ' (* , - , + * ) ( & % !          #(.38>ACDDEEDA?=:73/*&!  !$&(*+ - . 0 2 3 45530,)'$! #(+/1345431////-)$  #'+..////0.,)#               !#%%%$$"                  !!"!!                !"$%$#"!    $)-0345531 0 .,)&!             "&)+-/000/.+&    !!                                         %*.369 < >@ABCB@<73.'          $)-259;==< :852,&      #'+ . 2 3 4 2/,(#    "%&%$"!  "&),./..,* ' $!      !$% &('%"        "$'())*'#      %,27<?AAA@>:740-)$      $ & &&$"     "$'('%$# ! !$' * , /11310.+'#     !%')*+*)'$"!  #&),.0223 2 1/,)%"   #')+--, * '#!     "$%%&&&$#"     $&'(((( ' ''%%$"!            !!!!    "#&&'&%$#                         ""#""!                     &*-//.../.+'#          !%()))'$!             !!      !"!     # & &'&&%#"!!                                !"""""!    "%'('&%"  ##%%$#         !##"                " " # # %%&$ # # !        !#%$%$$$          !""#"      !#$&&%%"                               !""" " !!    !!     %*,--,,,+( $ "      !!!              !!!                      #'() * )&#              !   !           ! "%'(****))(('%%$$$#!        #%'( ) )!*",#,#,"*#)#'"%"#! !                   ##$$##!!        !##$%%&%$#"                                     "#%%%%$#!    !"###!    "#$% % % &%$!          !""               !!"#% & ' ' '&%%"   %),/12211 0 - * & "          #'*--.-,+(&"    !$')+,.//.,* & "                   # %')*+,,,,,*(%"    "&),.022 34320.,($!       $ & '(((&%$"           &, 1 5 9:<<<<<:9730+%  !$&')**)'%!                      #%')+ , .---,+)(&"   ! $ &)+-//00.-*'$!   !#%&&&'&$$""        !#$ % & % $ !     !%),/234 4 3 2 1 . +'#     !!!!                    ! " # $%%%%#"!     $&)))!)#)&)(')%*")(&$                                    ! # $ & '''%#                               !% ( ****(()(&$!                          " " !                                 !#$$%()*,---, * ( $                !!!                                                                                                                #$$$%&%$"           !                                                "$%%&%$#!                               !      "%&')*+++*)'&"     !"#%%$$#!                                                           !#%''''&&$!                      !!"""#"#"!            "$&(()*)'% "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    !#####"" !                                                      !$')+ , , , ,,,+(&$          !$$&&'&&$"         !#$%&&'''&%$#                                                       #(+.01 2 3321/-+(%"       ! " # % %%$"!                                                           !%(*-/01 1 1 0 0 / - + * '$!                                                                    " # $ $$$$$##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              workrave-1.10.50/frontend/common/share/sounds/subtle/Makefile.in0000644000000000000000000004557614221624202024617 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/sounds/subtle ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(soundsdir)" DATA = $(sounds_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/subtle sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/sounds/subtle/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/sounds/subtle/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-soundsDATA: $(sounds_DATA) @$(NORMAL_INSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(soundsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(soundsdir)" || 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)$(soundsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(soundsdir)" || exit $$?; \ done uninstall-soundsDATA: @$(NORMAL_UNINSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(soundsdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(soundsdir)"; 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: 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-soundsDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-soundsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-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-soundsDATA install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-soundsDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/sounds/subtle/rest-break-ended.wav0000644000175100001710000241405014221624107025305 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata      _?khs:t,6j AP 4UF?L7E4K+_/ |z 2S7:r D< ')  m-H(1 M[vQ.4$zzRO`&WU O{6O7PerE}<CS*H? +?ZK mL [:%4t4\VrI_j A$;j-#eS ;|zya+ PD` / 5FC6rR =7x[i [k(!%$;Ul iEO]E K718F fi0ThYSVKx3(h7x1o.L5 =<Qe&uc36R5p{}-i5? :Vn#E%q2p4 k r-Dj ?x/LqGMYmLM2i [?~Gl >SKF!]W'z2L H G(yF\ $'r*,UU RKlFNZ i(y-^:z,NXW#C.Uu*wR.gl `VR{Ii6K:<LI5yzG=I] z[mbm{ w?3\fku# ) #%+py Pfix05bnKs/ `uf(0i~` ()6mos{R 1k}; \*$) 4 g h ih  >BaP(AY~`~`.U_ccsz!N!&U{8E YGL%xGT %+9fIP  K +%^ko# p ^\ \f H; \ k Bux "\_Q|.WT~~4YRf]T|G_krSN R/2 Iv\@O{9nEs D[#A~ gb@[~p  Xy6~ Q /b QT ] ( gVZJ#!qM*\%zL+a+&Hunq)b  Tq~sZIKSV78@ Nb_ ) 8}Nf  V6 >I$[U  SYp/:Q8 1,r+U=8 a> J8_!N.^iU %/2d)F|pq k" n_[[` , L6:m-v[ 7R-E@: ;iv 7 $7^h>vNquLebH$ ., g4 m7`9  *JAvW ^ yF%:- 3^"$1^\rtR J4 {-{ 8< O64 %2 sV < @ 92?FV%p`8O=M ;fp_Onm 83q  v  8d|kzi CiP}#UTk^K5>gx'#R)   (`]rC)t;wJe#26~  `S7U/v1/ j +a[F<PV Z  7i?2D2|&\+TL~2aZUWp{( R$hcF} 9 HO  XdI~,%;H9)K1 N k'3T0+ 9  ^R.*QFQ @L `ZV,oSt7 M `l 0i_ga '>sj!B4<Y(W = [4F`=4 v = 6  /k! F K^PF dl  Pg,q>^,T'Hj OG&D`g:nx"=< c z .w&a\;|38D m 8 ;_g  {}hY L\t adHQ'63.dA (fRnXnvQutYwM/+@{!^ C3@)ZMzHF1rOkbi!P W[ N /v?y&w]ye g Id 3\ T_IaJ o(  d<R\"\ K@D1T1T9|5E 4 @41aAqF& X & ~|E ~ Dl.R2}jD3Pa j UF*9K,Nh_qj+] JFqP!c,<po309+j zN@&3kN?QBGe>N ~zuC5  N  u; XXFTv$Rb=SsyuGgNdk\K@n-8(40%&s8j:iPUlQV5LI/d$B_s _Gj( H 41y 2 %8Ps>~gV=+"}KXu&``IVDHc!i aA`m g6 O vf;W, rq`)$7MWUA$_M u)Fvmr@8l& "Rv0IdZ&zU}n i%{Q2"]$ A) { ;l l4 7  Nuc:;Y!]t IP,'x`[3r>%OI; r;0361,8hhDkc7k2b*e|FWF$tS"k `) ' L  >JrS g-"Ts~}lR2qjP&\t}pwP/Tx nK-}w 7k$(rC>+fHo@6 -Q S V  hM_ f4V8N,/BYFO;Vi+,G8b5R?$@ /q".V T/b|A: |[i)?Kz3c8Tf ;?L3 |@. w8X-(t {k fMj{_E ([>9mH|dhCwne?{RK5CX?!w]'p0'zu\M>Oh,5&9 \ 8 G C h1? 4 WR `+D"H[ChH0Xcp.W/i;6h;~&+dH[DZ.KUywnl]%zXU@a5I/$p $u1u' 3  (u)g D\ WF,-'aL=-4@tZR[kSMR=68;wUw8t-e&Fmln<;F #31[<mnFa$Nz#T&G/(<h hg _Sa ' 4}a<m4QMfS~m]xOVLbi g2<)c^-F^+(IG 5Cr 9gp 3 P 3Xn $' / D>H`l#B;B^WdR:|;@{X$V^E>LAJ'~ U_J%Ph5mRbIX-g:])]j,I=a _ ud[O1Q4 > WBC~| CzR.>Pek Obz>Op ro83ivV t t%MrJn=QMBC$\N^9!/ ,ELCn .P0  4;TSHX|)ei "w_q`LO@HQ9'2-xo u'dOJcOfU- 4v/n(n9t }p }ej9  FVveU i'R>.1{ Yoj"Zcctp %P|jDmFXw|]Rx:44n#w*1ef[4+U < fj# 'Km"v @~[+M3-GE%XG]Ou&9EX_f0nrT|;7JI8)&b*c)QQ;<]%r3gbvG  p]iICitT `|$x{@(n25t8KB n8n{]H0H/UA.x<}_c+r) (&K`OGqS iFIqe=t P E  Y yr}#[ume#(!F+60Q|2umF]/LNf (f51L1H@k12a`xfv V\H|'~OLR(HNKD-?\qg=  Ajp(l9_p/v&/D<p]2n% JrO#F!-/ 36PI%'=U BWeQ' {pmoIa+gs>e#l-A2A;c\:N <Z;zQ8x^gwPTwo%XAb?`A: )xjtA xh1Q#MlU~7\6lbX N6vk1^]:Mu3X?8 >q <]c''fYaSOYwukh @aHn1Oxv$V}2wM]F2bgFF4AlFz{`N)UR~&!IiH7}PEAs9o{4:5TWkpb CU}w| Q;g^gx-mr|drfZj myDkS2;h%HZ%<7J@Rj/{lOFUql|g */+mj9PB:~R^"kx^5z6vwJiI\bSC+v,K#h 3~x{Er$vR${ *e%yu]yB4~4mbf }!PYKcNV*'}*Y$L MI_;gJ"@AY/j3k!Q-V]vu ]Ji\TZl$o2dFhg&JEv{ ]r=x,{|~ S<S |QoeNRA; "g4TL9k<Qd&L: =mY CzFLimUCns;SsHZnh7=jXzgAatN/&B02Z4;DO}~iuQUeUR3@2@YhEvg='&8D!)G3*hY\Nq[f!ZFFZEk-<:X9d]Z QOp^AZ DTb"TykR FSN|F0t&sJ(\2Q_K^@8Ru7)/]izlZz 0``lXBB~X" #v1oWK*YVpzd E&ty7v_i??gc EHwzo6Yf LyV58]@3M0}jZRl9onM$,o=k\aEUzhE9PR7[Je<U|lxE]]r{T{{%~ [_ Mc75(ns\e>Hs[h@TL:5'I:&>Q+8"IHtHz:Wdi@UOk s;g.j)eEpW CLs =x6l9`$4) lpTNpi4&[B8 GFC I C/ M"\`w':$SNw>%45"_b >0Tpp7Z0c_"9`E#l.>;V2j)mX&Ip#4c}9h#E&5W&1(e{*)j*hNh%,b7mzL1/ ; #dFi9W<lVrnA  Wvg4#MQPR[#Fel[G6Eiy<?a#[B/"6DzX{xmO;)#RZhT`0%B,q\DZnn OWQ]geHx/*Z4qq8eB#fGp{,3 9m\/F oss0 >G`t>ZZ_aQ;]@9 ,%n> s=K^uJS`51P6R3sZmN(_kv)?#6#,ojPrW,#t'b#N/8w-SB6Gd%   ;[Oz/>lZ)F!$K31I3}.<K*M#Drm,  + 6LT<bat,)tFyq]O'EyMFT+  *#u$m0h;Il0|3N I`<#rI?;%, 1Nz=$=I/M jk-}'KB v~y2vS<lX~\jed8ZHCt=Vd%,lvEZ egT63MnV*SpB}ZemG1r(;$tkuh LXAnc1Y |[IhDPI0sYB7|+dS ,Jj(O);VO)/|IBC$YXu0gD%ic!!otgIFUP}@?,(e>>MIl] @v H }im{w3 El1Zu`Quye<(d0R2ekZW pnen-UzE4sB,d;<Q1 zUaFZJ.'ew% mX/ j8' *@dQ"<^b{(. VYKw_SG 1|3O9a 8?8H:qq/'rMr* &`E-x}X']>`.w0^;7)DnmAu*d3o& bt|}8 uCzow>U{>L`OBXIAKE00pi(~u!7T`)I=i2@p vn rO}T(1Ux!IEg',X#@4r]']`5We/t .fKbcc(n*zqn@Wcg IL,O~XSi"$ IBT"IBZW}}$57hp0^ 3tbHv_1j0O#fsVjjOaUdrj=axKS ];!,]`om3 lwv5?&hNVQ8H(X_yRnj4\3Gp0EF$Vj-f0k{|('~e}cwmY^:anw3h3 <6m_ !+Z]9vht}GkmGfkx5313iC^"sG!GF&maK`/pjW  Me^c@@Eg3m^~,,o{6$,T\A* HW;ET,b>+kBi r|6<:'Xd $;]`?@jt*zhRcc\T] ^~zY\],(e?5&'+.&\j`4F .QL_q7Z{zoeehbh%dfm[ h5l)J9oiU78Wy~Mw@!Rwj iNgFoAy$bnv[EZ 9@2c;f5uwhgzUYC+DVXSv)o4ku~/*y D_7K2Rx%WLNjcQTvOUDaOI{gD #X64W r\6 arb$R\n>(8 0klb{mo$`I6>w0djaGNWIXCdl U) 62/RjX][Gn<q`6(FTyE[D}l!'@_f\+!vWfJ}u>Tjv9$ jbuFmTC6,C?/T6&8hi;h_t8 0"`BE|.>w{E[)7Az^vMU7# w@86fWVZW**(]Y$>wb96d+Jy#A=z)id7m{\QZEk4cS}+4|IMbypI0b]:M\v|{)JO:a3X~^J>tYEuVy7=s:1 m 3*C]z8d" 'CT S)qhzt Wx\4&|Gz/wW^kY+aP_aZ^ui2| |M5(=gRs#80h*d"Bmdj/5THENwq^:eaYillu'P:J,k.!38oU~?v/9&+5gE%Q,v{=yN7(pBX" Mh"12Cn3 //]+u=MfI5|L >:U ]Fu/;,F1E{5LS&"$ #rYMZ8,4`1{UR 'Dm(LaE)R(C6>9@Qp+mc```&fi-j^+gGwFP3F8:8@."dHXh(^EjVwD"U9mv%75+X*7`NJUkI0-|cy_VFhNwXW< WAlgDy40/9IjIl%O 4X' pj@M_j0R!DZ#S+Drxt(91uE%fa8 (isZFM,pHwof7QV4A0\nvQ6Io6DAO6{@BKE&8Hw!cx<^Z#9rhbHy.tKF;&i/m1/R&pg=x9&|LX-  luJ:`IAqNXP5|%.+49e"&cLKFFlj-V8a"{L? Wd/J>|y8jw-l|)^7+,Q"Go  \L]|~<^*4dA-:{TC=*~ ut7#gjU`L0v"(y3~kp1onCS}TkH{Be`y,d\8&\^QZ`@?P$av3/1SC\C2Axf\AwE&g[arE1H;bb)GguVnmQv:RHVVa%PSG8}L J^;tP( $4[A1B>S1 b{2}qg$\az@:bO T>.[DyCU!%\@=Qd br6Jw]K{<%/<^3p~~@F*  v  )J#a.,_7; tvs9g@wEmD~?Y m ts.g5ECVmG%V4e1? fFp.W4|'T4 '' ?G$>aM@Mgy~yR Tl}oGws3* 7} 't91+\QHv/g"BTUEys H { * {UXc*nyMZ6e 8q4n =zL'n~4C-(Dz\$VcFtup0u g <<"66j i^.d[U^)[w=0k]#MQk>w80S=Kr\XL)wrSKVV@+f3G55NaQh:%!}aABhMp /Ij"o"V)ybzdos)bXcl\< \BU{nMWEa\X_[!SC"8!PiXK\0'%; @banHrOq\[}k 6W\eBmy0:r}Swg#f>pY y{hS/ScB\DX,d=:s,xc>"M~/!I~OylC 2I;|c4f+}+0#f&vj8AwQYu"bk :4v|qV|:*IvD=m}\e u%"EG:BL1,RfY2_,'\uu@i}y_k!`JsSG wCe&8bT&EmBkI~@Q"z O0 #9eb c7w.}r,G6D19)I@b 2&,tW,q4T^5 kMj~*ff 7zD+{lh_:LIO;?NzHD=QYYm-|&R<im7%+( 4Wm*)_g,fti-!hBi"rCGs}N0I iBk2\T-741T[ {$pW/N)ez@PZW 1R*g"F;s~96ma(!Z /Egal+PW^W= K7Qy ZVhGr_-X\ K7`CCDx-HGELp^d3osT_OBALhEY6 j%$#(vl`L$)s?'IpHh/UETI9kP u>wR""2tv9X`nz8OSB0</U _ ZFGc,WHs(A1AjE!XyTWTl;H*Y,G?s4k[J`Lu^B>t  eej^ob X  6]6EGG%W3yzU1 d_ %pjwFU:<MsNq58:'#VwXiS-.L ~O{+HJU"h7$iTU)!]9V\r)>K2,=!zI( c(PjYaF+hzE NouS4%GYV?Sckbf!+xiBl&0fFK+ 47&x4DP/Y[ SzVd# 1]VA"56FsEf wwP#PJ' jlU:p0KU0<7#T)RdcwB9XO&Zx==!u sO&Zl0o6iZ1I M/G=+{*+<({UoSGB&W7r!>XI oTvs~2st+Y" w%1%}ZdH i[F8+z*lkue gO4^9u`"?rF#BA,fhS8[mX@##jh+k4YH{*A{U1|<YPGx_@{U5x'vq.g/r-7"l ` yUVY^*|e#E]BxCl~k V/5D yI#t0l* IoW$ Mcl~$]uj}+5.#e%Y<vwo=IZ;]'<*>f^3e<07aZT9GN;o D\M5%a:7}(2Cb([n*^j? ?,meMb\])'fKA;[pK =\E]i|Pm:9 =$(Y |`N(y!M )^?\X`ff }S!5){5ieo2W\ .qxpH9*,4,MM R}]v+p%Q`XL;TkVh=jJ}S/fu(|F_4]L-p6J=yIPx:hSqELY*ERB7[05s`#:u"q/dy h{gQ3TB$\+Jk 0r NTq^`:NU%y;mc ]s"E##3E% LoJ UQgHKbR$~q}Vit~A6-6d`UM3)|.8?Y50IWwVh=F=cA* VLt}`G5rt/ 5}D eupoXw%2J D~%?9TY$}G Z=,C:Y ~m;7a^yKJ@ 3JJd2}^F+oC!5^&_H)E~99wBk}$@ (rz'?c2^LYLywQ`62>,Z|Th-G4So8r.@2F?W^utX7MpcT]/XkA-CS7 EDC&ilI]*cBe|#4h9ilkA3v3e_d:xYDKme WPY/~ }Q69lh pbe<b'k>OXz.1:Ma+*7d!R?Nz[&<~$czI8a| ;PhWo7 0^ Qj~@ gyirQN_?[4-x#4@jy6saH@[+2/jX#mPi,20-v+}(ZCHAl?9NBX;cTS'7TFo?r?J Rka,*Mq9:4p{Ghn4TQ.3bu/HY>)zbpwm+qF3ox\I >G1u-Hv9PE%Y,=W[);el{ V 3IqdnD] @2UD$mR.KDt(#ZYlOJn~,aC' ~m/M}p*s gU3%O~20ujN'U$ 8<-/y&@sA\U/['F=!- v g+]g`& U=&|{oVj-'w:l"T%\h.* it* X `s[_)Y-h[v.(-Pz:FUn#7*&e*n" QxtG2%$QYibM=m5n}9F^Y9m7uR;0y5T( I YG @ DO% O&()/D]Fc` co]I ?IxCio%,v| CP)3zI3.-q?U z3 C + +:k>!s51H 7[xX21+cq{A )xI OD *?+>,>YKR)qQ7a&G 4y]59Q s * |6@vm$U35?fUv}qCjIkWLIRWmST'1bsDx>')V6Yg~lrh(Y #L-4s>F:B % V " o z  &n?%u~RX=Hm$8wo-c0PRL9 _e+l4$>C#oQm0.BvMl<q%{]ISW:v[ l  h % W } X8XMM,piNq+Eu1Mwj=WK7c>s2=hT5nD,z|EZJ,\RORKk:$C| T^  = i 'iwaUf<N3facUV\Cctx/]8@(}*?Cou(TaX(JQu%/}-j VV[o?{aT qU9 7 V v ZW 30 9|RYE>rjGW+KgiG6GY7 b(*epc(Y+6zGr;v8LI q ; Q r  *}w"(`ScAw D:eYB!Y<:uHf3VJ"_ZqC[(%I$D* G^`!Z<(YZ9pGa`F@~ha|$^ 8a G?;B `pxza=p+}S3 =H2JaoD4c@'gNCE'~x>q?fbhD\pA2C,s$GHay]u"kK P 3'8 >{c +42b?OH_d^uo ^ kE#PW>l FA::w52E0<OHS( y/<BbghS(+].D3!UVMHi%ry!Y%Ph k Vdvz:#Hg4  ?@ Y) i xA&B;kea:v7 A{$./'G]TCP<6C\$_PU'nmYB!$M`4 A u xz?TRBc  N` Z ~@)"zU){+x-0qK{ \ ' i fG6MN ~[CsI pR;?+c E$=Iv74%Sjjh=T!$0sP~7E%|y` x -oO9*"y,o]N+} -  4( ,,V9^!_n= #L : "<Qf+q0P,>]H?a6sfJ2e ($krKRe  =}  lbqZp@y w ;Ji1j'"ZkH:n* Q4eP6w iF!?d3S4S$`E>}0vUS@]f^0QkU8( Y  j3b> %M#  M < & M  >WHkTP[=sg y W Tz :Z E`8 LU Z1jQD7l,gcFU0   U [ LL-[ 3@?/4DL fdD`P)Ub9T@sxna j t ?1 U^>V[z._8n Xqt(t>Z^#FJL-Qk=A^:U:.R O  1 @ LIwZaK J 1'DE ue  E }U-q ,Uq$` ~$W{ZrcO-2A oW U;W_V 1 b 3ah D (r#f+JbOB*W3yg% Q] N sm a @ K + K C <}$U H?Z8^6 ';XM r1=QP]<5lqz uXgBX47  z kHV:3^IA\tH\a1 <& 9?Xe l We > # 0 ;u&oCK%G:Vnh j |pSr  D yE3GbfNKmNnk?H_Xk%!VRBAaUN"I'5  S  BcB: } Nxy Q3{s^D/R4QWBOC " |a H 8 03 ,4s2|) qxA=l=jbtj6dH*>%o{qM|gwx&\: ps W* F^n?;*c   ;! .h%rg S8%QqW7 Ur3]}AL]~r$5@[~u9kN% V)  / ^ PSd'B n V4X$*JcUMHADy#RI^:&Cce(J)cVNWP?M 2H] 0OoB. vY Hp> * @ *gG+ DI^khl_ 4&MPxv p9 M ] + @ qKs6O]MgO[ B jtZAfr_h%2q @ ^5W|MR()%tbD~9Ea I E= g| U X'b 3x +" B`+P[9bc a ' teJ1xH 3;a5.0h%` gR)j.~?@n(qD  9&: THMF :  Q Og45l`Z:3:*Q p:%E 4 ] W  '*  w ? f +I8E |3/]N g+{Tt+<1 >}  V0 Q8  b=nIZr4zEn>VU~}xgqO~o&!< OZz /^/r95w 0".Z=YC9B2~kc0gKF.  D&YP<|>q E&Z5dF4"ia Y]kJr~T +""s6$ \^X+b:- Y|)JuJEaMrB B4t>vyD%{ $  O$kj,< x Hu6Y8w.d .`Xq\m8uSYEg2 m\3Z7{'W 4K (2 PP  > 96#Jy'cimU<C4<<y *f( 9c#+  ; blS InMw],eBj^!FA I@eM#+*y uB4m$G$; y6/?F22 ) )P W T|  v  # ,+h@,.="AZ2SZ\~K(M=7 eokj1#Qh2-{-<uab p#|Dmr W.}ksEPLU  x g    <*X #lo1s=TX5 0 SAdLed5]4fo 79j><SsG #K[WGQ]%.rI-_6q=oxLRK>t32H/'7b"&O@4 a =V im~  $  8 @ytZ8"NtPwV`Oak,?% [)D4o:! -*Ca3Y@L(jV'{Oj3#am_b 8<   :2 zN ]/B# Yl_&wJ d E&M $;}6ooEi txyN-i/xHR@9.at*= ' i qK|fr& q + p  NBCBU,"6>< V};'f W ec^ c 8 ~d=-@;DE)q=k&.cB U.%,d JO_*Tm\[@D8"r/}I D#B%5" q ?"?==&_=m%+jN[ :)a  %O{/ku tUy3 OOp%>%;APu,"[`aBDc.$Fb-8] Sy y, 8B)%?k}]yY<sJ pX-$?Zm Z+w k1_Zs z?@j.dm}jIYm{4|yAZ eXCIQ   "oiSr4")yvH-ON6FX +?_ocxFZX ` imKL P 53# ?VH1YHg+ %f _1 q 9O ?& j, a>1dZ|Tu4JlJ66~FL7ao%5b ;|H *L>e0&B): O1bG ,<pdH-qj I=+V u`?c  ` ? S . 3lE]. - E8YQ1#l~D%K Ag~4 ?]E]v:"F0aG@h7^}wN`?-1&8 3qeq"x ) n 1tVK S w6De>c 9W-v4lvp#Ih_W2 (=Y#rI`rO,'@*kG+ZS2j_Y$ \@n G  gE A GdYbBU2qC.& WJ J  Y:ruQ)hdHk+0c>d#iTtMa[/ tAm{cO%up TUE5G^ R  ; '= kW-eHFQ;%Og 0 | &| g}B$d-("  6KO:@%<`0q|lb. ]1S0SWf2v$B~(IE~ZE R*Jt6 [/-W^@a K]uW  ?. K }stP:*f^/ zUGF}#gca%pE@6h`|N<eN!>Qnlz_ W*,7<( & h) euo5g~9jrASa]Fpg?d a 'Iv'@C?Mw8stKUrIigy~ { Aq]:9* Eo MLt@H<CIup`F|*3~_ puogE *c-t9I:F B  V] M d|hkZ  \ygn%ST5J-~8A?MSr5.|gm-D.ANA)^fyC9N]W:s_il=xcF  -|   %g'mF'`qvZP`$Z)7S7b]1" +3@rm'lxZT_"]9}p5J*f!ip9`ZTT7;lbBfF6  0 ("uk n T '7 )HfY]C~U^H%!?;xod l-(+U=X%|q1{LjP#@*R \Wg8:o)K>S;/@ ' ` b 6 L5s]U  9 +}*PI~+W wF1=&eeXoVv;.-AZ=U37f%mW&[)_'X'{0)o] > hG i'@?i\\8*juC-M ] ]q '  |3 =w <s^)sN '|Qe U 2c.{RcN<JE&a_M Hq^ )~]x,;f d^-$~& >@ _IQaF|:'xRN5^bh~q{>: tZ )Y - u  UpH*g|3{WKMq~9d|Ig}MCDjF%z btJj4W>'T!uGq_.WH(;`7)2?|Ln;]Qk ^ T D= J > 9V-Kv9?Dh7u% r7#9:*)*r%U' 6:fzy?S :(myRftm^6+1z*Y'R z*Tb : ?? l UpkJSCq`  ]jWfrKx?\2=34qdhogj0tk L7IfKS9J >E E `` BKJW"e fD 8 eU<8+3t^xn'!$wM3}=\%*!qu2P/1dA[\x4W`ymxYS'Spx/Mo&^e?Qqr%`*B6Z-j!t c Y ! a M # '> =ALm5}^S LKUx;F;CEw u$x"md;H )0RpmlP?x&JCFla~HVJx5"v'8A{c& m{yO9  J Ba)vzD<]rQ9k8p <6;>u(: ,C6^B7j#$B} et [/sw[Xs G l  -o 3 yv x\ l gXld4)\ccH~lM|+[9Q7;{WH<GN{^g)b'HP} pk Mn! qe#xME\{x`O =  a<{K3 ;. i<SxGIb:JZS\M qJ0P"h -&)HjsDk+" a RXB87H1Ie, h5gL  | Di VGzMW;6C~aXj-H[c [ : -  D0 MlCN}r5"} Eu'\P2I.D.KQ$ .\U-jsIg3t` |irBxMn V(3}<!SBRG^BRJ|[  f 2 x 1 Sd](rJX&M=&|z0EOg?e%u;L |6KWQ=ANhHP*;y&43(qjx;p,rs"AS^!)FT-V Y  >MaiD;/J|a`f_)Q2';j7fu t6%GWe(:yPD&c0znkk$OhyED xj!0cR0|=Fv;d6Pn R . p&B/AQ(C'I[?mG.?iMct+"W0"C\YqfO4rNn a U "J8Heu|S'<1]~+v eS0X_#~ ]@5N13K : ' ) 2z y   y~NhC0pEg|*+FXdiYCOYXa/EYBJ:"i[~%`j*qWjM7! r@S]~.*<=5 } mQ z ;2  k + $ qVu?NWnhCho!#eH]p]|8~A]a[KF%JSOGTYpNn-5D7!;~9&Cq}:p0 5 Q p I  @3/t HswQ%4hU'n~C0~T &N-qvvo57Vs'w>J D -O'm/9W"_E"UmnW;8KRrB @%L] F d y=Q) 8dQbiVGcrgU4#B=:HQ {m\Nuw]H0aP6hP63y5Uai`9z ~ -+ll 7WEaL] eb " #V ; ; ;  x`3B idzGE)HX-$'L7 #|8`Xr@N0@o^MYT/n%s2t5[ \ [fT7-o"& ! DQ    t] F V* 9eU *IwD-k;V%I< JP!:=r S%3V4j_MY9 HZmp>~Ud !o  F` P$e36:` w&$^:a25 $ "* Q~( wf0w5+"kTT0#M_aBV)^%;Ba2q v/Swws*W.~!::3ji9D@-}Jdn0tV wCv$^*Y(TDjii=4oxO`. 3{ =    : e zEZ5<_GmljjJyu:Yg*R0#&upY FCR'l%3;Rz_!'=O4[6>sl<kD !FM jy~;h_e)^- qmz N  " 8 =\!"B96fP2p3 ~ JS I\ GIr2gdI8T15*FQkv?M# Gtd 3|So>Ne,hR_ (XL_GCjR{:9s = >|v9Jerz>rZ, fu"C p RlXQz. HFR+)lwsa3'vIFIV_iE~r[+Ioz3s7PJ%_O  V ;  J /H/#p>0"7xS # PbC0~ _TS`X]K{W ImZK9\270*wF7>cX%-0E,Wl4MR7>dyM9E/oIaaBn9v?yinS_ R  {' e c  B^ |9>DfRIgJ'}~qgQ+pZ_+pP9brX6OPuRrX*9y:s;o*S5%Jsx `   X0P;`@JnhU 9c:x%Hz= ]+ (r?-xZs5O<`J4Ah?hh>A|X0aw,}uH"!8=It4l/L:z6=%J- G ' / $ 7uHC<eY "p^ApIN5`U jC1F`bX\Fn8#= ;;X`v!K<@Nq$,M3?,vn (i e  m  U 5bwxb%cUM~^h*`5=G4&yO1Q=UM{V1CZnNC: F=Z%O3{:`x9 b aowd%~ HG  ~ 5"G g,q&jzpn5Iy^;1*@ F 6L  *- E h+&5BN4beOc`Z8,0p=YMRpx47i]Q8f0iR(qodmQoW nP^/ [WcC#<$72T  q  _ !D;l4_Uk,b=s; 0Xx_ L:1$#& ]g#E>uUKmY0pF!&2zY/Md/WG<dWJT@LvN/)J(a9U),#Uc j ] L R  tM .Yo   iQb2+fY-^ D3)D.Tg$_3E3>/b")|k+f5G2p" 1r4X4 b *nf#/w 9 #  c,  2 1= -h CB {k ; mgWrxZd<8s k`)Vj) bg}A7]4l%'F'K RGr/M ?w[g<+I0ZP{qa+/6 dk  bi snLL,[Jc[&^L"mHX*E[=I+!'w{M>aG>~FGra?(<,^@*8 %=9 / pW4#g[|E[((afUT|F6iMwFS : N X [ Q <  wc)$5MT?3ckz+0(5wV9D'8Z+55Cf091ML|mzk}S?h=nVT,Z:j03aM?T@=q,>K*LWKx ? @ q}_ r i gJb8Vh},E] }ut`E@BG][arWOwM!T)b$qSMOXqfP&]F {?oBDe1@'sJRc t Gb- &b,  rD ~I1c:-PBq_K+4-8j~6$S;?nq]`ly"'F' NWZz 8t0}Fo5F>R *8Qt+   Z \ ]+ ( b!]0`S>VqM9nzXGgQM=h=; xKFfEFFbZnaas1&iG}2Af9gnP1JA\ LmT7 0 j8WGx8j' XDDq%Z>] 6K"(\%   D J 5 Tdv B dbr`TL5UWj;^%}VkakiFvo6.' ()F,, u+-`(u.;teP2|o-F3MXd(zV`9G%LOTw~)r>E9Y>4PdEpZiRC+7bn>z"-~BySSc!Zj8 q9E:?:dX-*}j X3+/$Pfa r+  Ja^ wu c u?$h}(!mQ n<(_/ W}`7G: VL5"2&t )g C&V>&':AGcV8%54@-(7?pWUl:d~Wrt<sncDqUt%I?B?Q&aF.t|'Qx_kk3y :W/;Y$-Zl7[I9 _p6Zq9m!R    Zk zuvmQW V.Og[5&g)4 m M E>pMZ(UsUF})~Kx94sx:EQu)9E+yX9r0OB0KxfgS*yjH_2"~d   vx c +yPgjW-YxLXmdRB9y8hH az{bnkSxc-<&[4R;i 9Grta X!  T ` Bm8s93  T_   n-qbM _`'gHcOu%{6"8uJB 6=3QdhS6a Q>.=wp4 a U( 3 w @   !  K Bx - > I Z/op`0p+Glz% 6HmvifJ%lyA, `do)+u&_++ zu_Hin:VJCxP^HNSef9UhI Z a > 8]8  e>-: _Q4\O N.18x\pJ/W :s@1aFd j"?|f%>O &ngbxS#pl|Fo qUv[PWe 0sz  9TI"#x #ABVy\9]vS.lSqS A!e5msCxTA~>zNI;-~/W!F.Ko#A"eptN 3aKY'CZ3.`w<)Uhr/?NG|:<Q H@ z?9 ED]l<vB\l;^LI[lasXUPU _ WqqDnO6S2@FiW\PgGJ4kZ  O, oUY^3AOE+frH-\xfOU(DbtI|%cK=1l!uZ5/;7k1qV$C&L*A{ha p  V u < kQi q7Y-_e k`% m O Y& > & y3wO)#i=h r0Ig2\M_(mBV{hKds!947o{r>rU YC y4r!!Xf) k 0\ * V i  |.S>/sDV7jJ!ML zNHPlr4f"QASCp? Uyj @HLXt$U[aD   Y E x T S A  = $ h O0m>b`[ [+zu; 4\/`@vMQHT l ](Pbj\>ac%\I- Y %g \F, vL  w Vs!  * W  w lHf>3XIl6@ -A7"n{2j)[pWks^;W 6 p7C1(A_rKag04"5}N{7r}  ` L# R$ c'2s x ^:_PD0 !wQF%yC2FAoD/}P\6_9_AXmc)xrsOR}TFu_(bBdwYN=hjVgN#>Z W? K o$sP{Wzz5X.OUC/ P@.O= p%mq#[9(oKpSl x*;o[4l/=JJ {|WS) $K,FE}'RjT24h =+ ^@i/}b/9cK  5  { n D   s -  TD$4dj3cV"5zONTC,`_>ds$R??ws-C0,I8 _yYp_=nPOI |!{;~06U P U 5[ " n_-#K+j  *d Hn7.eTr5="=gdC~+a|~$#>1pc[N_PN(.  6 4xL @^l+|rt N P %N ? Q @ D  J \C r  "w a}Ei_sQ2BZUJTB4Tyw $ g='% bri __K[6UG-*h\Vj5Z2+x]L jm]B_+6!C8bC(Z$FgHztJ_m2sv,P]xra:1\,o f~9*qv!Try D;*Ec%Ox`EQn(XClpbr=/+IL!%nb$0( Q_#~ ~ @ a{1g*g\K(1_f2Xd9FT_2_Y(,BR 7o?Nj5|%v3qn1V(3}Mf''+Kz0G)qBM3NGZG~Y;w$K%mT'RKilw +i\ J Au < Q 6 -s  c  1   y @ > ;kab6QByr=hI=7QpS.<A>C1&V+ fj0V|qrvNWY'~I|T'qa -\p   R 6_,9J9+H1iqGYC6&-w.#^SiHnj!   9*= #lEn  . uag:d rb#j   Qi l[ l_XMt USQ sF "d_mi MjG .zQln]iwqVjl3%J7VJ0.s% Jt25I r1 VLd m8  S p OzZz  )xp Dxa%_Z"RxE, X]Nc bkxfan|kd h~ hLJh*wtrMb\q sLt|&'  &   n`|R!$ 4 J>&^7f!   Z D\i6M~NcH VEy HkD+ ^ 9 U k3KU Y Vy 9 EvN c a* c0 F.qQ_zA/Zn(GAPO;Pw# E+ ~ . H #Kx7QY #;bQNDZ =}3ya_u_'7m` r [NO^eB*uy= 50Gw#A99w dz{  V 5 YJhf"e/0N,ZUy29H^:4! F- &\GTH:ty|}w0Z54 XP:4 E Po   *% .ni* 6sl${ M _ H5%j UWf1 c vq6O,.xwIazOEH @kj7R_B\zPi)Bs 4o p GVm ; n>  r ^y \ 53fV!%Qm TV=   M % 4;  "_ '= b<A   'mup61FC"FPpBkuZ0pz6E&z=Z=A!A5V?mIbB&7!iu Ee3W  o C>d" ! >z !S" H j 1gyV  Ucx , b{ V@A<.'u M w}5/w , j48g!E c;xRMM]gmFU%]|COE}}G fP"' %[ - 9e >C_" >K &x r_ c u x gS [n Y^R;[; R { qlB\|_2 m=G> m  al8 Gu b*IWX>@, aI a KZ ~a`prvKF8 2oW" #f |: 'Ud<'L4p\mwy$Tv~{6u0UUIt* o 3 Q_8 ^ O h nOy% qG VV0C9{N7$1 M+ Cq K]Y} t+W8zed>z>I;dM 3EYvL/JRf  J u: M wIe7Y24Y'_( U  V%|ay  # O | dVU^ !Y $j-u7 v _e`=8x]nb u?\ov\ X): )1 lb z Y   f<J7 ^0h?I{_-]+ClS 4 >,= tlr6Q< P R a?kUar!J, _g ; =MuQ )k rQ/ d ;& } m/ < QmX 5!=$CQK<[AK T#7Eh"d'M9  y D . E/D}$tS! n ~  Z ,J"yF^9=)x#V-U>(Qgw8PD6 i v ~V O ` U Y <  A &  <^ w[A9/4Z +0 *' {ydi xI3A 1OqL6*! -S*z Zm TDg0`X{r[;eEx# R9q`5\9%DK+7S g6*}Y/~^LE;), Y~ o oe= d P2 i yrB^  ` X Bd # %0hZx.[ev S ~Y=i fyN t x|T k ! !r$c! ;uoswK0 Rq==i;`U ~ifS3bPE HG !_|a <  " 4 i*[ ? j^ @] Zs.1:n  % ~, df*l2. B `,4 R} c8P <7Y8z RbiY_ ; ",Gsm ,faG`EZX71/E-@H {r*  |W>' 5 b&yR8dQ'jVD4|m( `&G5Svb}I 8 kv 7 7   $Hp@  1  l?P i |CdI- BQ  I>  j' j54@dS*1w 8Q}K Jt7l4#9 uR s F 1<UE{ {W2]p eev_+2 5%  I  ` k , t$ F s  : | '  ,  f  d  4t @$_Y  zuxTh?(ZB4A)U{Xo;H3ReP[7.KVQ+ +q/4n rrHu\R1r.y#U6'kM $ zl  Ay  2 k  rx * B' 96O \ v  L  V 9TK[42 vHC}o(LEZBB<G-Qo ?Ez H}vj&j  :l4nh5~B ; Bq|5j;p12 i E T(z@ht#0aLvAs#w m Kw 6I l o q |1s]9,1pE1wvnYyL4"WK/A3(GN l %   4 fg m XH  ?kJG])A@[@k=bB_^1BH4k^YG !Q - s s q XXT ;J  J9 0 hkD8Tl<,c/_62a W wa7Md}Dhm}-OVB1|Z, I $ Rg~ b k ap@Ay;1j`nG:])KT&T8bu>=y b L s" > j G= ` N \] $ {QLxD\7w}V v ^ n+ T ZQ 4 Td I5F:?!y#j_|j/6_dJG_tF2ZVEz0f!7Y5"R4-MaH4D_)%6p <u  -<  Z rl 7 N H -   : b Nvn~d,fA}t9&I=6`IXRpRLP;uIuiWX[H9nF@6hyxg8Pk0Y]N1m@4iwCblL~~<D!A] * - j  X  E  "  M    L S$ E C/wSNiv:j4S5 ae~ "O"T!Q"4-y%3pw" F31] E j { T _U0&8$8  & :H /o   q   n S W} SBgj  hUA ubK<h fQ]dZ/=9;.#hA JcUWC^:Xx7dLn>6C$j_"yb@IEvK @ r + [ `  {7vd y=q(;a&0l:@<,N CW$T s ) k vg6  \yCrXn)g{r;T~H)=7&A {2'i-Z=1W#/ l gB &M cFa 4 {IBgtR+U6UA^WSL`ch(( 5O2Y{H[;<r. # Z&#  ! : H c) I I s l s* ^ u ~ E" OD%^lk +3`GK  *jqR*ob_AvZYvSi_<#}k){m! Td\6R3r>z^q* O<b"B=/  ?qyr}"ueloMn,~/ykh_8- QOG!z|a S tM0QC *l<wF_!Wi .]\9% n;F|>t Bks ]j F 5 SWZ0w  ?   5  e F [CD|Yu`$r]#)Hd%p4cJ&_>  b;v Fol~bTv"L <|bu6_Ie '2OVb~LMHp1EqzSHjK(ju8_y/=0Oz.iW$m7$  k g fj&q| z <  |'mF|t $T= h[ qs OG;#z 9N(5nb{`]wa|M.P[x~W 5hcu  V b   }L  )*xgaRd<HM@ Qhkge<0`8kCBoT d}W > o1 n 8Xj  " IW(:F CD(cD@IVG0}!o)> {QC^hfT3Tv1V#p>W(CF?uIG$ >eG?d^65(42e ,4 &HL(}?  1  w 4r CFqk 7 K F LZk<]DY7w*F # # s2 3K=`_Z<j %Q0G// gxugsac1+T8KV?#P G0f!3@ g <*KP+9pgdO\dMXvIF[ 9  ! z`sxcn       R  %. >K X| { a"})#s  \eV5`3"gWZe:vICeFlZ]1"A6Q"HZ TZ>@(&7T&S;:|y6dcg't,{0AFdJ b N ]bx  ) 8 T- g5p& 6 :W.qCXlq}""X FBURCK22QXM0gLOT!aF&|QB')l?f:/t xz b^h<JYP(1M=+_'q|?[*C (  x2\ 'l`L[JO7Vv,1]B0,Nss}6p4n~/@Ct?G8G |.Wc-? 5]PW\mg(*L0dN8` 1J{(DiXozA=]'=0 h V ,R %u tXjt %T O*YDqr 7Cuf*;,*03{aGVygDfT"A97:VW,SoAhP>T\UaIS?T95+o iW C " j t [ L'96f.w45?ivYfs6?)[u@TPHh_s<p,w,6;|>ASG&SOc.%>Lt~D#W %Cgi{J5{UUH* 8 > O S 0l4  j !  ( K K   ! )_ k gI z  LM-BiWuS{Q]U>pp/<=?B9{d;B4oD}U|27.!if ~3 q #-6y1{b\o[B }-%%9' G    n I  {  dEDa)v a  {ie8&<0xpXLl~oVNDua*Q A:{n%e9 V,1iyuH<U4gP&sv+>:~j/9XGp) ;nOp|Xcx mU`7C!O  x[L^M3gK] #")4'8a1V ddrtX/)K ;]%'3s^jY}^\5&zI 7>L w  e [V]'Yl`'/Gs:nlFU@wG57'/J 1 I 1  DR E) < 1f d4 ZGk]Amq \&cfoui\M C<YKA(TKsUGn,E`C}Yd025Zj_ V|9^xUunxdA3s%J.&1*/M#(BYI7$hcb6nMxh1  Pu 9> "qvr \Bl=ub^Q:5I'v5  Eb,gp$x8 5g 5 [g}0/;I]WSf hvT=<[sljjnCFbh  fNb /t  Nq 9 j  n40 3 v   WK`U`@rf/ 1 >i:4_+9kujm!IbO#{_| }5K\%X-^x_ *|v+U e_#'YqyMe2r5l^  g D _i &    4T:b3}DKW ?$qa {g!P\DfRSX\ISj60s-Pz`u29fVVSD ;N$#m\en@c@7>[fe6 J?a0UZ$;gV21\ugOf;yR?bH}:$kj[B-DL1I^>%ORbMFK9 lP$+Hmfj?  `l 6$ d9 &&   AUik @oSzxY+'dyhL3k\X?hZ+miaw* ) m< K # (> @ - [\`jmXJzO 3&%42Sg[D  7QE4jx@=>QMWyAD>j  )QHXTwlFR~ZJZ2,LYIR+*7&Ga<(4L&pS[' ; w | 2y\UxV8a~JLah@v|B6m[w6jF} WIhvht"<>-xj@BD9YpILBqN@Ov^d+ #/-yfw300/ O  )^o'^4MOv wA  0 t +  AKrG74^NM\f2HOIWhTVDww[P|g~eK$zi~U{#=UX ([j>vq8^GweW(gfh&KU>%0R|'MDkjH0o_vN7!6qw CBb *4=Y#>S&7jDa u[;BK& k0-8Ouxc5J2sTQS.$B`zw!483VPSfotn _._=y>CBrS_  l Q o \> H z  YiQK5~<;i)<NAu8FC8U#eAl^=o@A|V6OX3DN l\A=_mu}cLN6m'F:bddbhAN ' M -ZFd9dC';W]8`r6d8(8\-/rc4$eVHE=Q63 c O{ikT]G~ :D(fY\yD=C-G1GABk:$ .9,D O$`(=eY<T9vs3PeX]>5)=o+8>n]NI(?pT X&rA>" !S8  V + O ^1 U) D)[\Cb;{M@0'3Twh]<8;W<g|VyinG @b2wu^L   " noCKmP.wvFIu$O'`yutr! :@  a D  S - m+ +H ]=  29{q<Ed 5L:}*^Jl9V;WlL>ldD-@=_0 +.DwmjmK jMRu4cwU9Ml#gxPb}i(I{al'6 h.]3l#_rb0V.'} <s Dl_G.Ao0hL+%O nL/$#EI}`jE e1ISF9K4  &  y[ 33 xdeq-hHTAj"?,FJ7&s[xCsWZLH:HPKn(8pylpgD-zZEvYeBYD)p6U+Pm\n [ y DpQHG p  q 0U>H<  ^P 8 Ng\(.?UB]kyzpA~~Lm } 1 Qea#3 BBz,%z ILIRNq,`Ip M (s%;h0X e9v3* Hnt{n (F9cZv5 {F qRF F Qxa*-_? k1 -*w =q2:Lw)E! D   ^6 n &+7H1=By5@F OI:T<4IQw JWVemP?Z]wyfup&!rzt3)3;p0C!X+n'<j}`AJ h ] P { F $"~? p Sf %\2l}kQWWCUTA_q<5CY0522/`4"qw +(Q(IO+HDuv7Mfw 16"tAYt-3H`  I  P S8 Sa  :qJU[eA}\| <v}EhbwP4U XJyAdz zj17#$+UPl~=w6K+ Y*A `  V  9 32A_/~|~ DT!:tUT(8|l):C<{L%Z4 w @Gb7t*KOdn*1izA0-x#'A`uT:+Na<3T;  < & `Ez&7&Z5RlG@ u KVn=/" 2$A)Dnh[BnH~Ojn7|HY\ L}*W/#V65 /{;@H CDT<{f6:L]L%>ihK/- k-  J z}{'n[yH5p4Wv_Mo$+EPc)#;7h}NcR1Rp]kH9b Km!IvJ,L?x+`NFJovo ~)Gp *6 qd 5* Yl  LC l<Yjg}hC/3td4.0N?hc?Xd4s?H  E n +N c  $ u ' Q Kj'#]!W!T?Qe20r&3p9@-gm<e$qtMZO7!whm~O)g7<y</*"1VlYnz3+q7?5.b_"  F ZM aW;2{Ms; I ^+$v<I88UIA_v6wiZB ?%><;F_Ep)~g7Bq&-N3$CX/rE(LMJl@v8Z?f#JRId Y._T  ~@~-W|o :X#Y;zl|4~,w/5?;<E)J?8%^}s2FfBW/4i&N8:|k 1 \  v KB &u^:H"et  + YZ ] 2tr$m^1cRh$:e.X&/Id_!m+`!A}/DN8a44GL* 0 fi5b )C:z rF >x LRTfKAKio-!+JPIqfK p6An,/PR/:P)Lmf3Kasy1+$ 3V%5jb_x@E )p#}Zy"c`f13Mag[O,o%~O|X!G:xy7tvyySLOx  #m_(F Ku6Am. cwDhA[] 2,w|th-BHp-[ BTBtw{2pS&:C\)/Y9?n(;?>HzW@V#`@4E2YhhWzrz`Qm^9Zz  #||Oar5pa{IRY| s@x!C : t*p L@ '%f!(/[ne8gmB\>r%4,"(fv3M?):/avOX}H 4o=gf cXdNh6TD< _ab6?!RoN!io 5?|^KG`29!7* g$GTNEQkh?s?_sXlFD$?J86G9TtZN84pmKVqS39zr 29Wi00#oEMQ1IBR n v)w?`/mw:n"zGmu?k1`aQ@v *  >q"Pi13c* Qf!GEF'fGx3%=6&+#RO&o&T,dfZB/IH^;CU0ZelA9MH-Wj2: YD"iXcSk~/7 ~zG?QAe @ . 8F 9PDo{}ragD=/<)5C(d7 TA;f'Z@'e{Q@%rs~}wE{m{YC)gxOQ`1g7.*gtf__C_D74u~Bd +RfY<jcs o 4mh`f7?brj% O F  xx[7R}/Zm4sF1Lm1a&;V k_3gU=s;Z EYGai{o=1~ aZ+)z1.JpCNEaae1a}&z[V_aN? Uy[D\/_I]\e"xD*P''c>oIKruLz?sJNWEe"yZ,U=p=5\ YBElU m q ]  x K>rXT`P/0B 0Vjz*J^(u fbYMfP.LibCLCW%k+7scCPQ*D O<3] `%$4XxgBUarbHcq[_Vb#( pk[?^>GJQaM``i1j\<U=OIP4*_ $G7XNmYc20x9)hnd]!S\xkG/{ Q 2 +jsi>U 'dXw! BnEN9L!by|X#5KTRjJ5UYP W!nv|\cFdS+9u S^h fr`XTDL;zNRnV=bG5Ba 0 7oxw .5I*jB@T:X5tk @@IGB~L.>KK"k#q~$?}}DTqAc y\A.~GbWV }d$7^^- &@  ^ X  J>r?( }.fS?~,c :}[vO>P@ $zp&!~lUk Pv-bHJZ 'z9i D=*/!i r  ea^kB+=wU/|c\C}Mv{5ak/PM5hv)MI.%Mm~>sXw(MZ YkNbP(fo >+JbY x\ $A^:`gwA]^%5U0<2?I$*sx8 fvT) ~ '5'Dx&7*.;w:VWt)g,->|    T } y0Q% X'zkuiyxD,F,_7MP]\>7hJftBsR3| ETVcF?v IU\53ySadKV,@"V/EcAa|\nQd!)49O*z~T=\utG%WeG9%`vrcAnO2;j!mC {'ki_v1l+ vX"kH UR'fV<h%9.GwlPd]g[_7Z5Bv#7fU0!E}S ]K]ZG ) u  J 4oX)>3I"$]n7PUw1+U?ubmVw O>YSJ!7@nsX >fnNbYef_to-@GgcT<;j4mADvDF7}hh5(vv_'zu21f*Pj;J~]P=!`Y q`*7! ;&Tx(Z2JNSr^S8Cm2SxP7 k2(&}:W>-M* LdDtn+et(XslGQig.>lhxLFCK_H30m Tdzot:jUSxr#v,(?.*89p %b b k7:8OD rcU215DfB6|2ahN<`0JY>7T#:%nyJu{YNlaI `u)#L4_n>q:_&abZl+z -yE' zzkqb!Nt7n|v R8Bs58PV|K[ml7c#X /T.m}-O<AIO[/~MC`hBM.A @AT:%{/?pFMf+T( $I3%[ *h ,ZGoXm?zB of^Q3:h"_e)F\PI h{\j.4t<|r}:dpHYUuJ{\XKQh[w 4ii   % ix:V0a!oe#BgHVpGu]e!"[?9.;83OSV-*O%30jl6}0ikx?Ka0hTmyD)dL?xCIwi c%Ib-=QHF5[ps)FJT%fIg ^`bCFrkG&Ya("6j `R X"<; N{&Y]\ ]AaCh!:?m960p$K l:Esw-3w8!\++1g' C04]/8hyN~+$!&"lUiZd].j3h hmD1*}1e9oQ'.v:r;O< h :FT"<QK_)dwXs \<+Q|7.y^+L`sH#x0FIK`|rsV5x6%-/T* oJ$3}7MLmsY!-`tOn,*{~~{AtXTZ&I %mu S*ZPB"-GMrH ?U{Zo>J >@nP:>':o0he%zd*-mtr8?Zv2D&93&#1,{@(@ T\3 s{/R,^<3w726z,_OjY_.c5 4ntqCLA gp0T!N<SB6\,2RAvEw}|pot.wCFd^'^tG$Q3GO*hr QUl{%=13#mUUBXaRA2:<V)o~lF@"%+vHKaUNKwz)RlWuUD|;NHg{DuJUdoW4 ; mo#8C?E7Kz~W -[G`c:If{VD~+CBCxl[q3|6Lp[vboO QK  b. ( v  J 1 < W#HMx/I1;hv ^ Ob,`M60?]QP9Gg].dfjCn&ED =b m E?.8k;C:N}l$ZZ I7fNPl2N,2a8FkSA8m!we_I/^T'k1{Yg<!M"{]` {zR# \Z3c}Q_Bk~e!cW4 -@2 O3,[GS " CN]O"= x,3h le Tl_{f>@~t xv l O   w!  CHy24 f ~ t 79  &AUWxCSY_@y0@.3 ! ^}ZqEW!)zoe8$r|BWCW' fP g^i,JF3ijkO3%`1^FEQ , I B j% m 8m&xF{a[9yYCTI|V"^DV B]$ Q Vt,jM.UY@!]!''?mBjuV_O0q8ELMS*h:   v s ;F  k  E( .f Y #A* Z<fl O O. G8  ,' v! & * LeS?.Ac6U[s; &|*?uc95~ur :L 050.e$)Vn FkzMiFh)1RY c[d AwU1.LQ~wem6bm6C|@= 1X : 0f JP~ L L hwLKM70JzJEW"7{^ n} xg([9 76#N2 4 X- %pW;!qG ug po_g l@QLg~b4tO>_q WJWMtg ~!. "4KUV 5Yi] nc' R=?QF`_U:AkF{U)%TcK WBCE O@j1: Cn/ew,sa}YrP  =# 36 dj (m- - # /I !r(  M  'M>r5 j 5  +  q}P "< @ 2 S  CG $~s; ./sJvc 6 \ J`@TWI`R9 V F+G`nSStRmfglpW]8wa7P$z2MAg' x}uAcrcC 'nKhJl+ 1g |g$ 1q`> Nfy)s ] $ Ee{ Gym/exr |N7 "WtKSyw1-A0WgtgZ T LC  a  *n k[ | \ : >e  L h  q    ` o S am > d { N ich > 0W3Q @:zWdD1Xq]U  %Kq]#vPFCQh&eEXt!"d>G#pfzW*  h l `W TiOCy!bSX` a ~ "m T}f 7< k)k"v-<EGoyTSt#Iwd@tTe*QCHtVlDkE${=gt7VcU | p "8nDliVx  D [ w  2  ] v DhB :42 {'WQW y p]  dL=  " mJ 5   <[ 2 &K"N\0]`Ct=@[(4HIV1!zt*{<yO/h!{DNe#, 1_iQDu57 io  X ;)O*<CaQ ]7 j !M\66 ~    ;ToCm8kj hd1Gx   O" }$n:.3>q ld /~ f485 q 3 & lz mH >r  gv 9E  ]  G )v  5# Z $   B o HK B S QDJ*  [ '=#U3"/*.G N#Ja3\&^*U#!bl3)~S?hBjs=@-hJV_ j $ 4 c   FT48dJY] %>K_   | ~cRO] 3O, hs.tz&w2#3vV   Pies@ah"T/gd`z$U n }a a  , YR {k3 A g w i D5rd' _ E X v yx ;q93#4 g  P #jXM| ^]^oU)VI_elf6m# gk96}rz*$d%4 &` Y` d4 S1.d-P s n . / U  q+`f^uY lb  Km{4! a W ^ 5I :i!^kkJ1 6C x K'DfE5UO(~:f 8 > P  J l?ym[/ Z . ) V % "  7aK!<xye}VNfND](XS`$aP.V0!OAis' It< 37Yk> duq>BV,wGClSk~ ,t\(-VUx= `1_{Q/Hn@ G ]L f V acM3|Z  (%2<B<_  8 e ~n;k bX\$T)X6dxL1"Y4 X , y { e v o kWS ;{   g QmN t I x  A=  .  zA [7 9   7YQ\Ia571> nt ]c}:La)-T<4&x?H3[}VrGj\h G ?"H  3 `o e !^ FzG e [7Vj%~QktIKq  w 8 <?'5AVSeeo` z z b ; 0+/N <D 2M m\e:K{)h{BVDsU" Z> .M= Xv g b h8 z ^u pV5\6# \)0cO2lp:z\. # S I 6 H<CD, P L A}  ] 9e?[,,L,L hx M   s ez -z>uS.Z! , r ~w q|#@cYF!eT.[ >cvR@)ram[3)4 6t;lRijG OioXNIKd $c V !AD ARE %.] 4 * Y; /   `8 d urJ~*  <R=t-G P% :q U"X '  y o ( A 9kTLK,zVG/} 0{$21   9+1l$, D    `  2  *   w  V l E y/TyY&H2UP:R.bn qigR;s#1m#utE-}i>9 N3Wkvg>l) .3[,mJg%<0;.| o< 9 LW 8 *G= ){ | y ~ ] n\-o!R.u(jyBC e "!:[F0n r o H : bwxp|(sD[mb   q   k \O t`!@b.ht7  Jy ? G n9*#HiRT :@&%p D^;F(a1 8k=0I `SB_~n!'e95_roz&c&( (;=yI\b6kpS|'xYOzo:dLW!; oF*qY6I]M_ U G 0 n ~.KbaZ 9 n e4wXoorRZ[hL4Dz.LW8 l /   mv $ 6(b e i V % M( 0 = rL 9 <w\0ZW*u/zV+-fv RO._7SDcZAQ- '-_*"-V?=HQ<g$9) W ta `a ~| ; i E& _ B*bq+_  Q  < 4 q: & WNq  kj^4. x 1 { 0 6V BP/} }CnM   kX'zLVz&5'^7   g u  X (Oxeo5LD l cyA 0   ! f a (W<-|\ & 7oYZN$7GRq&Z( b#<8;{#8~<l9 \yJY:;63U1J}[?G<_u1I>^va||: S$ tF9"q  O,HY<9" "/9 ni=O-$A T<DRis.*-mwuJkuZsx&YPkzk = i v b  _lqqvs1=1"h4uE \/=' YX7Vq :    n~B?,h; l a! *'q22{L~E }&6`EL@##$G6)7WL@y^P')*vh!w5w|n?&F&]dup F  t-=r=|+xf H b  r l2 5zF.   x  ? L * -6 ~4i4 n1 mJjwu  # g >  Y wh x8 W w Z=y!sC;(./ trwjCF4&`~UQD47>`oZ, /ZuR{X..=Uw)Ol^C 9 W >M g Fy3AtB$(" h D q $F8Q <bvRcT qH R K4F[v<<\AQ 6 qthU*&S.cD/l:@ D+^0F    :m,D  S h " .  jnCLp ] T p H1rf0t CS zu s  >  #vWnn=w#" @\n`/;a`*/'Te; s+\#l^T 5ded7ke DxnES#Vg@@pg / xA9]P  8  V  > F Z9  5 DW QV8,YPqmhDX@ "lz}4^&3" d c}[  R {   / : *' p  %A}mo=\ # = ! $  7QF11bjJk fxW)9=^3>p"&]&s|GW5H= h|bCr;[*q ! e H :3:YqQ~m(tGf1/\?Ee!`--k3/33`} ^k 5SxU?Sj&x ^ C k M\ ^ i d=.14 &`j' d < e G  }j}Yq     ' LBJ5y {# ]{]* _)O"&mP,nz7 ^-o: w8 x L  z > KP. J  e J    r3c4"E-m?k:g5In:=3ezW*R{C=BB2W yG  lF&{}=\Qvth+  L'Blq@WhfyO6vO" l o ]G_S  *> a U $ S C   B3Iz4  < s h }E U q ?b^%2{`[J RUYfJww8eKF(8(xrD4AM+J30?q II?kY`pJr(u1:rC4"8 0"#Cf'h2k&Lc %!QnA8)s`;-}$b\]F/X2*v`d%F$ |/X,uV]NA<&MW/ : :>k`e8 t t t /  i3 s r1 _b6i&?K5%jijBk SL*J#,)Cf#^m-3^NP$F\7:l%t )h p O -*%$By2bAAHnu~5"jW6/EuKa+^mxGlz^E~$%7)qpx!II; :RSK|*wHqi@Qb)^X1[{t5Na Pvqv l6y  N     ag m  D U 7[ +? ]     d  #  I Z ng+ Y* J @ nH ( r$|D}'kO+6-&!">.F)h pZPydE\LGga@CZ8%[/yX?>- aMJ  .t R|p9\]8Orx~a5B_a q S  l2 i- PXv^&w^-Ul~R-Bm~&lwUaf C"v<Kqhgyg)Wp2ROvV?[' !^W}x< ^ ;-m-_ f[_0kp_I1,ad1HbC 3 ehybV2T+14nYSYGhOI~gMeBNNK\S#.7^O4]t6=_yo$WBUe?O K$:P*m_h1Z+ V d w h Q3 M Bb 5=L`k?LOrXHo4( H-f6o; $ 0 B ; . X uF  $2w    j nq_o"m?\4%{Ptx]4WJRT: #?!p7*@xF RXMkY,!7$:OZF8_i7HbjP2"v}4g)lK Nv!cF&uzqfi7zruBJ?myH)I<:[AV=P>IHmUjS(_q| Q)Ubh^%:r)KNK`7Rm`-< Hm m$Yh  9   A|  ;QPn A P   `4 ' A 3X&ME$EK0yo_3+yxJSW x3 `n~ZI MdwItJX^I:iP) L 6 ]{JQE!5oq-j5@.y,g 'F : _ >_ y2y}5lbGSf =_f!/GL0^P~nLsw!D/H5kJe*Xbg6}UcT(d)m#6S(B$X C  0  e 0 ge (=&n$4T=jsHK1{ ?$ec :Z')M+4&*T pC]xr.R Ar4&QAKrCDef#a# IDE!Awmp B `5uH& NObSC nH'P<b+e3c%!=wf6cDy -Uq$RV?XzY~+B?K6xPC0dI |B:,d &5{_cEylz~zskJ% CE=1[/(=>)wiRC~:Bu||9x%gS?<28D_9_NWI17!:^a7"fo'y&Ls$>oJ\MLefn:ts_4 4   C  C - / q h " [I-  _  lI.iIC- ip E p p 1hQ+N~,\ tVPA"K +gUWFDd"Q5He +cd]A55gFz]o0)/vXTT3 \s'" S"rW~/=  3< % ' I  c@ a L 47 . V)\l(59;h7yDUPq//.>fGTXD4S]txobM"nA  3    NO h g~g\yE?X'nC-wS @ =M g < 1o  & knE%-'!U}ip4A\X}^BG9wRiX:EmN8p$e^/EXTuZ(,3,jwq) ' u~-f A"7 j!bb{) uix${AYes,Kv.9jo1 q*jwVB6Py-@ ly+}GR1g w]Pv*~h(cvo:' T2 %Y&,"WOM<y,&*0T61wR5 5)oT-C,2sZisf 6:XB3s9ke%eq+F^?g|I=fNO W9q=pgs 'D-k t>lR,zH>%xE9!u/k=T*X T;1~,v5U=z8wp9Klv{[>+8>@yH S  l  w e r A % & ` 6 h    +g33O';U&W3 | 2 P M p O }]J<{Zpm[ [x7 3idVpL1 a.d)@_t*2]nc1@>\h%Z<v~UK_/@O>Y>G764Ld/OZM3k'6+Do4k+xx!+9eV9zr UgBnc`w^$ -Y) ^ x e7c*2 `  \  nf PlVwr+?/F;  i! s' K ] b   _=H ,!ve675X z(q."l_YlTvRu: t-\0[z;*|g7]#7~^_^hmx%"!/o2BWy$<39D`pMMT{&kj"(1T/mgl4+,T7pdK =(QeO.,'7IV!X=G!koT~4yX ."m)!a;v@p 4[AV$})pHa">3 `s2_c @[E:5xc~q2+?0pU.v@K5}IkPv@>8;4M:e1  ]9LnyViZ8b R53zIg/f8T~ 5fB%hp1Na{'z+\zz?0- m$[8h3aVUbS&Yjh \'R}'evl/ f   < =   {9 N }  Fh 9|D<DU 4 | : ` _ {?7NGo&bY5449F7' IMaZj3=IbpC:^au20f_Lg2FLwIM) B7Um$UPWxA8ld@<^v}_=;6kg(jwhDe"SvJkqsr8E"S A|19W+E X    F 7i{J)ZB|]r~z?Qt wV ^  p PG a < w eXnDx5j%b?3Wj[uHCIa9;<%l\IGT"3M{Gsnio]Q<!lR/xa *dIj4;;q&=l&+k.D R5/;wc_]gRT"~ 0%Nf,DawF^^I|c|uP)0ssj\|nq tcQ*`%k D/6qe$R@fm|U2KUEJ_>v0*UdU8 v8~w7v<0tr|T.##v@ IJ)S xA2y}5V 3l YX 00 ^n~P>6RT4w* T: 2 w RJEwy|$|k#AkYv>q)eT`_pj&f{zRy\FeH0qj{_ 4#m,5'(Nm#kN9MR EE?|o5t$pB-[\w^h_;4pHnZ wcJ~1SW./i# C# {U=|Zr$rk} `5 l  |  6 l  , S    %k)"R.Y[  D4:Em4Ol15[d7 no|< Ee3 P2bI{"T,%2xb#EuyInD=dL\QCEC@%,",zGaMMucY0MMmcXXxq6|w7k+ldR=@GWA}r@^)O2 b[RfOIZkh Nf-9{S?aat"pQCcv@w}a@60VMs%6u&%U d4^  NF n| c d   1 [ lW<NF})i3XzDBS:$$eY6" _$M_POqFDp03Cq -@2  ~p[o"6Zk> Nq~j-SKP1?;$"^b5@GxQsBLKm/hN|d=wiQ\3< cVQ(R&1R3@}`x|}2+9V fK%< wv<  f yh ' I  >Ti'a"G$4( vx}Lp=Q"hz52R&S?Q*md)FCt[6o:VH > ;2R 6FUx|21v 3z" 3z^q}2  `T,)V7oGn?z:b0$4?94 UXSiQPGHfOCA\=hce8  } S `%  3 x=r"P`,!i`&ob{ '4s]P`I   b =1TMFKWOj;30\K4N .lU5\+L-{ DldTn;(; aY!rtWq(Q'3.q` *6$f<,4hhYuX!s0mJfZkDO`PQ$pOl=W%;I%4MBr}P^=jD^h\=ff<bmU4v;7C1_ JU r  T    7, BK z  \ L c l a t y  r 9    3 T M-5J9,88sy} _ euiX *,c1DzI h7=H4RJ]=..bDo(-Y`)8)| GN +iS*3fz~1oPw%(ibQi\upq"07t_#<qeC[}[;atXYSbKopE~G_h<6b(l kT=.cQoHO(R.W^oT'&Kd4=}aNv {/&WX+s&SSZ$[R;61/cFF|G'1;Ft`tjVOr 3DA$:LvK8Tq&{@dVVbcDyMV@D>rfc"~*<n/BnMp < >xa%  " ; @ E cZ<H&O n?ve7^,6jZmD{%Z^U56kP6ogg z=Qilm'Ya|e;(i(ShB| zn,!hVFkQ(1hhJ*qFfE E"vr@&dv>puz,%2}THSS4<rQ&[5K|FZH#[?wE:RLqc%wP.#oi+?7x7IeaX+aq):8L|J}.C3S*^.elANt+sG <d $3-U ) n^nkqJ,E-PD  9V TT c d 4  qQHVB$fPZ a*Xun 68:M`.jJiwJbjutDM+,$ v?&bHLZ 5fL0OF^~P2 8#%5,]p{V"yc tr5O9 \;o>NLfO?NCM Gau]ULQ+HxLqHhhp7=a`>fYA<C2/O ty< ;3A6("da2f+V-uJOv[E3['5HFfq3(vj_dG!%?I_m'L= W%rL(rr k7fy("Gyv?5ShGZSGU/>umQ3#T}/6d6MUt_2Kx/ b5rP#okMA   = P o G  `   E| c~P1,4  eb gWJ'5V j9B]C^{E ^9@ye'V(y gmp;j,bl=EG_')+Y8VG<I 9 Aa(Hh:9Jp;sUB6B&hRh9)F`6VPfJcwI#BbAF}i{} E Z0\ $rs~rregn0i")MOEhs.G%,.y*Tq7Oi:k9QF%`~'\;m " :uF  {0  3K 1>$sCc_ 6a;oj6o}F:t@gE+0XRdGCnuX; -Mdrq'{1k$[}o6>\Q-elD dIk~O[)l>&Xx8ha@foSvnL/Q-R2Fals  LBO o7!A8 Ev9!N 6m*<vLWs|J8WUPsX Su(#$e,<1:Gt{uQg"BQm<}R:6F[}~];.`9?xY=? u/) -(| |k:<3#V_v0;amy 4)b%Q<N]7dT @"a]$sz Qk)L:&+a\vvx|?HQdv<GX\ o > AQ 8 Y3 $O h]##   ^ h kX @YW[RgbS[` ;n aWg D! K   h7-+ v }NNW aH;'WR:egt<;$Ik{T 1 g# Z4 jK :dB .]6% SMnyE8x6lG\'9s?is6fj^ Z~r@R^&c.k}7wD>6S. [ccs"`$/NQ(TD]JU?eb!C-Fj^ h LX2 zY) " H cPCLGE?Q sbvl  o  IEW*oSx =  R 4k!BmDadAPWI5{y<%S*Psdvx~%bp6g$O,A9Ou; 9Y?c*F>1 \h IaH zPYY [ D\ {s64i}y&%-PlLPT0 iQ^@,@rb^+]e\\: 1 OS\@tq;6%nFc08$i ' %Y =Ul<vc-S]|[ %JjGpp]`4KP _p 6dd5@ :ux5>d9 It i!IP?  yD ,t>C[&#wbY[cu@`B2_k'IE2oAy;Ch+d QX3M.OBA4 {Zc7BF[SjU15iG  G%6HhA{ 74'\k /rA#31-  ? w"Y'    |s > D rn&} 6 5.jTTA^om c "d#i6 .x  J x 3fCD1/p-Sw0t7< fsjDhJ^h j K/ J , r ? q/@_QzAH?uU5 !3z[)]. /[!{HP vZ E# + "_*2R2sE&D8Khp,x3C!j_E!^  |x ` eT  8   .]__#z2Ih2t'qI1 IDz67yPkl %} T RZ  nC #M STgEQcrRlxwd~ g . U ` E nI ]  i8 S k>! dm 8(  /K 5$xDO+~ ^_m k{Ys[i$a~[/ls<}|7+G_ `]2G"b3=^T{*JeusI@Q<{<1fYC7v0i(L+V `{ B $ _5Qw=UrA+& < #d EkyF( yt #  x      S C  S( 6J| W Ihc~_(Te?ltwH ='7  S rP99E{QHLp*+,FE74M-1gRA @Y '   Jv*P`uv Mu:GcA> e`Tl L R /-6 - ~ k{f":5s@cBx K Z BgeK6K=m~a:-&G^OU@l $] U }oj "8 > @`[/UOrm$6{9!"P1QJN @ " \[~V`Rs7o! 7\L.&J*kA|J8_!WSX;t~r+ g z ^E_~{kA*c0r.Qy @, AyA3 t Mks wO f(&X8E9YJ;e#aUsqSueD%O, \Xa{t :i"f;j ` JG-\R>NWpaQczS^^ W 2zp3g@ H^  9* v L a !mM8dhUy fXcCsw0h 9O.D Vu-cE?,KVkr  a26)lZ b t V ' WS,U ! E  & l- N _O !g-<<Dqk igM 7{i}E.!9MtUGF2i@b=.C|2>|$l' <( /* [-& <   2  t  2B ;Q56L9Y:9o? N8 m 6X$JP Mi~X#nY4VGP HRm|Z # G g1|Z: O\k d >< %  -vf g3u on ilRh^ .#/LY 1 %tj>D" W *~F g ?'*Bff>C\@_C:%`( ]A+kSl.>{`?qK& N o J>J u U ' iY36",^K|SifW~   ` + y 0 - :Qa/yf?kM)g # "m]b/a,'15 &UWI$^`- \EP ?0`r: Ih%+Tg+W+rj0T#,91 no) 2- 8 [&o'TU`69o[aKxGBKrA%> l=$x}.$>g0 & ]  gX6q~uwaxO D %fmqqMhP@& H N z ^  zHC:XV; aG9iet #|z " #U 4 $+ & B Qt(  < \$o9M8({'l^6E_m`ZR 1C`p C/ n ($8h,p>/+5!I?,!'9y?yM"_q  MoJt +UuJcc`#W0zYd$MScLF_#PDc >nF+3p  a DTlAP55 < euOyE &SU  ? ]  G *  N N qam;a-MwqSoc }:J:]kA W,KQ7V5w<DI}%xpZ C M o + Qy V* b9 p . o C> <z#m "k;3.=%CJM-_eUr7 ,0f_H`BP>R[&= ) T ~Zx.  4 e @r >I#Yr e b  T 44 c   7L 9V j;54GLy6/yjY"PJ XqbdmlJ$ Bcb'cv0y3Tn>~bmyoF#&AYtB$'s&4-n l|ruy >w9q~Q2)L T*Z0' v j35y_ Gv[5cL'b 2 7 :  P p~ C @TF+n+N*k`sc#$N*H63>D3^E.OiD ]  x D . ) i ?9 ^ Aj!Hzpgx@:$73_*'2Y8T8k=*tl99 skjK"/ z_$,B=(j0 {5 o 5 5 EsS0zQp4`L$gmFiz$  8~2]n  ? RK rV - e }  U TuIw| MuymMj- C7FiH)MYyLj/ g  \ p O (Z1~-} ++c+b5gjz ]%x2%RCgtUf?8[=UxPu+W?KR?K{{S.oL5Ofkg |xf^\(r % ^&"+ KAcK5$ ~b L   $'M%pX\cCb6|P?m&"q7;F;aPG[gBU2cPn|4&tpWXC]Dp_p0$DqsP*m,[g r8hz_ x a  } S %a:]C-+n:tFyp;|H . c "}D-D%`#n<*YH ` A  } a$  x  Q   { Eu{b}Oh0s;^1aoy*QJ y`Hnj( ec]s5+{W.zuE\lq& gGRL|6{-&U3):uY{( <  @% aJ#9)m:H_xZP,?^UcK-'*^N5%|`dF.. ha{? q%O36CY|L*zen2s\`x\htMIn>S0j  $  iq q piN>7n4|(]ji\KvSIX=[YlDxhSo W(ynA  V:' ||X[&En/GmLG 6 .l XT   #    t6P;M~p_YR"^yDv< ;\fbRdaE8 }ZZI/iA(`T$X}U8:v7 tSt/b$R}^Y$Ik5l A{ch>10s9l%r'""Z(Hp0h"}5N/{oS%Nk&)7?zr9{he^@T b *k R~vR<yn,4 % 5Uw- q c [  Rliik$v #~N.vQVd3S>Dw[z*9K9/#v#<:N1 )'6 En[g~ ;& U U+jrT_ %* \(eY+exYeTGJZs =3Z6!zX^[&i;&]VMb{+35>Q|k&)  T __*! & k G = a @   | ,  ;6&~xdn0( )!}W Pphv$93{~YW4 t^}ePko)|;\k@-CTU&u*yRAmsGW0ac3 b f-bE@vdom)WC$slrW6JgyL!cv\G,qN~T+_ { ' W#O'\-o3' R #2bb, QK ~Ifk8L30Y%Yb*LLVhCeaa|h0_ $D2<ju$$h  3YG/n=/9k4Q9XYg2tuNHpa*OznL!5ho\_2Yh_"h >0NaQeNf X-<}0g;L@H.MMIIe<\ u  ,AU\WKnrL&w{\=    } Kj  d| 9   n6MpxF~+y&\D.;I.8|_: &'*HOy5rG'{6z.AJ C5mN(A1Bc_6EVSdTcB.4xV+Nf|=kGmW B1GY!{6N CMuY *E!mgvM+NPMC@bBfugT  Bk_f2l 2 % + _ '^?UpKj\ g f jg  O  8 +O*q0;iy$TdmN}>N45D?l[(W) 'C@[~A_4q|q8 w;rr*qf5T:I&;;&]Ac$U8Qs5Zif~kZ<1@vQ!ZUmdiL(.g y x  $ ^  y ic 0 X1APQc{RK  ;l  5  C i *r_$w)XEo1$S;.1dA9PxA i*` +]fP:n,fi+)}dwg2e&dqcs+Bi|+x$U:ma"hRspC;~Xm o4>1WhjZ Z   9 S%k@3?xmfD0Z$Yhz( J >yvtD ?  Z  uY#S2V7VhUgwu]V ga%'*qbk5az, ;m>G^Y>,gih$p#u< sF!VkelWF8sVcZb{evj)5FU I J,% J S{~<C~,) ' | S @ )/Q1{ Vw/  8~"xy= #k " mQwgn0BtBbU_,aw> ]DDV4:k]c[wX#j$|%H, FC > O _ <q`=?D~SlJ p~6) Ub@bwf@f(>e.2!K`$&ZR0`^D+9b m.R_ej p`M j1*'Vw[fz:0!Xn  o  mCAu/Wqmn56 M86 2e*DkN )1 F`yfPgJ1%H}`w=t#ne{v u7^<ezNTT&&aJU:5[X. ,<[o^|V{I T; cm2 aGXE7f$LFi ul fv$1iRD UB5]R^%8 f.Bcho)& /=F1WD7!S.% # 1u #T_ p .N  - tMhq0yXmD t=s+'Y^R~^WS ]}v`LK e-:T0RJQ7tJkUM@6bg_' 36i98@`bmA`1B,Wx)G/YK\/5&-gTM\B#;C{#)le\ G~@Tslkt J$\Lvmp ;  F d ` 9b rg]}x[O0s:!(tl4kN hI  R|R3;-z9VOj  LGa ML~Hx$X#*L|E~S)9j$AM<LE hm EE(of3,O : - 2 0=W; Fa ` @ i AKPuJ3)-h`7bfny{thG \ Ho   J zu =, n  0 < k z |Y]p'b,  lA A % g5 } H  % - $; Z miNAl S@ddr$.*>bE'xZ;D I)&s5,s]tFx$ e8 h*m=&6K&H`RnZY..;  :M2KyPP1+Gi|`k%y s5Q.H0 ,K!,.6 f ? [v y  c   0f +/-m7UPL]ceb 81c5g -Gn:%ZOdKpjc,qxHrv7m6JasMI-A3wW-H';)gXw3Eg6#^f$YC[Dl;1!n.i ,m$L>U#f~V+.[D8PX. a\^sk$kXK8W ) _ & 8']cMGw7v!S1 5   ~ v  2^wT/LtU:f @ # q B )e>~  a'~he/|H<^[ec*__m_ 0WpLZAXo (KSP[rxs 4v,/Di?<8cAG] O_<G_QG ]aQx SL\~SoF 2adw3d.MyK}R> & ls&1yyG/_y%u T {/'K2Q Jtt9%khhd[9 7Zz(HZTs-B '}ua :zqX(>9abzc3^UnjkXrw~~$y".(F iBa" JDxs2*&B$6s5 9llF:m[r/+)EZv?9ocuR ] G[X?oIvQiT  P ^7 p : C J /U|6s 2  J +SM  Y 2 m i  tAgvlu< `2@Exr>"w",h~M|}4I1 HwJ %x$>C$HAq-N'H v pYUnb1\E4D3Au3|No00 NG?] x~/8,&Z$@&/7 McD<J[% v S dowyp@z;2 K6cyly 2F'8XC,r]ILaceS +pH=Hc=]=;t-o{k) iT%6 WIn9N7aah5XBl2@&W gOG r$sMd urX&X8-w8 DkA(a,"a^9AQ1uD48Z%0cOEKJ5Yw [pH2$= !>Cr~7AKl7wmQv%+:h2.3pU'^@0\m8vZN,_  @ V  _ 1M (a#L @% U 3)yI{xJ(\@Mn)!C4,dC kBnni7v;N&p'ch&IMMP(t)uEwm(0Exic, iIUzN[L*QHm8:| 4)g" SyY`^eLwgU6#o_gq{^w8Ly37Q@>DF/#5!$=T Ny 4T Nk: % y   D aBCu)KQ>eJ g> N)UMZ*7~yp^Zas[SmtY0ZY MzOxzKtM};3FU e!pBX *&di"P/d3+<auA*'fJUMoH^oDdvW@c #7?W<q91}+W`y"PPeY)MQhzM  a { x < ] Sw &e #  L3Qg5RTi8J,g:T42r+e{'orUE,;U2qW{?Z5Jf)z 5C ,zl-eFH YC7#-zg<ol*X6%`T6T:\&)=^Z lkbY@W|3/#)YZsGG;P'4Ynec/WCaKfXvy^'`412z 49zQp  ' " * \ z  H z I1  E   2 dkCC:'@3Q_Sb|d5==wJ2|)KORe-*W Z1PF%[?Aw,u;4;p!$yXHI'nga[b^OB0`~xh1)$xX 6 X'G)fK`/ f t5)b@W3hN$dATWN,ei{"uql%HW {"s|j%S "caK%+CY}B'Ys7Z PA9ri-8t!sDj{u|F-8Ni_>5`}tbL!ilBt'8ZkKAGf_<% Q= 1^fIcO#)U:+Mr#?e & Y ] d # d E?rL1Xls/0; XZP'Ab4SENe64 W-qA*V.=Lx/E/} F 7 N p N:Fy*<^v4Z/;(Iy4s,@IZG @0s#(7; ?XML9Na\o3aJq~BM.*hz r_2^1ysanm HHu[-cga?=5kQk6S.AZ QNwgr\*4 UE1ZPne}Pd-sgWM}Fm8_ ae \ck ) {3 ?  B 5# K;$6}o::V5)r48D --Q`*e(/n>H/rOa:`ZQ%)8IWu3V0XK}9/bn`Vmh= YyUDaP+St2Wj5<(#\{3=>,q'rNx"`|zdRta5M-<3M Z^  c + L  { AoM?rw2 l3 t'>bOxi}]T\isJc^*Bv'BPH"t r)--R'&U:V/ X`BEkbo!(4}cLa_0`fFEKs,`KbE%UORJ4HT JIx"oY_(S Mv$Xm)R`NguO.&n?u&^p @ v    (gKFy,| :_ 5m t( h ?0 I ) v; U Q =[),h]L&s0>:XKl~!1E*=u(gHAou$CI +/ #o&^.lz"  E   c  + dPf > F   ~ M N Q m  ~v#qx gy4`?1d^k+*F4q5lsQ /0Q}RtI:O.YW+Ytx3Et4*?|`/-aHS 7 M"{ ;# ]% U &  !6 a H :g 0 xh;?*LLh~yPD l ~ay9_dS0}Baq % t6x78o4 : Y 6 : - T `8  <|^=H:: )J{8,z_G^ )i"D7pr4A{}]PZ7K QG("S[c:O7q2Ht?^XkKfK &iz;( 9*|U#Rvf&<OhGQ UwpbfZ|pmTL !5"S;<|YNS[v|ugNNB#Y7nQ+`6LPf6] F   w ? R *  ' e   iV m h; \&Xi,"f,De+8h4Drc8;_g-i@.[/K^RN, bOxo  wl  l Y _  + ^` +Q~F|h'jr5001!O9$[D0O^[GyT?1$S,{-?=U e)IphDfzZELe#{ a)G 7G x  N ` S /Z jPg%]}VW5@5CjKcsOh+nK6Z 0 s ^ R 4 f toY./oHJRKW?N'l$;W{ b6~UYks er#:  5HE>BWT|x\vzKd"8,.a pt!KuE:jq,CV(@[|M58~UeQF oU_qu2!o.1lm'N3nOk }byn60f |_}#t*dN4v?VZgdJ.q5N/CN*hT(!er qLo.WZBp? S|e\1^=W2S'xuzihgg1_n@es<}Uoyw.mB?)=N ? 2'$l@+Zbqv]`qdqX`awe~/'B1Pd$c{T*V(5|ifm6QL5Ul&O#WG .ncO6MqE7 Mv ( dB %  D * 4WOPgRueL#e KseRLD)D=VKYzJ<Q#jaaG- mZMve{[kUVBBvkopx5N&~PX `*b C;A4x;\I%J< $ h 5 > E  bJd6dpu R_Z)oJN0weTZo.B3y&ec_*|(:6BId/rc`T4d_e'#VOGvOY*--- \b] > J u* D   yL , dI3uYu\*B'}*&UJt4>47^%+S fxNx%9Ko-t F5u"e9rEq-z$Ef)/pKn~"{ @ # I XP8.yL&U9NVrDI"}Cfh V0-<#Vpnfu^u%\'l55*+ @a,nY/F5 QP a  `E Gs bt rx K  R! 8~AZWD(O7E^2[_ue4Uiqf!x`r_#MKFE0vqg}3C;4tZU;|a$N(Ll8|0jG"vyZ ~2[J HJ.*^dc?:7~[W;L-dh;RYlNyxgPR*1CSk|['V[jqX~=lLD4B T <&:7C=St6RY[?e([U 2t&QUICZNcQ <p;D{'2jP1O_=@'%{q0S"@6Y o;}eM^ q -G+u@oe_fv WWdSHWyx0X_SO u43+_!<RZ,3dU@*e9Um\} +3zau36z'.x xa\> [n};)oh  $ r 8} c u ] ub7{";5pi 4[p9}O}(Go" -9) jffp1b1EN*6Ri.cBz"g;9@:xasVrRU A65wTxX,\P8qaY %m ~tZ4c*rsYt/w :3[[AJ[@7rxe};&>B1| -:YL! .26xj5[7[}*92kE(2 qK- }[{ qBhSUa i dVqUz\zf%gBR2i`N Rcv:n1""iUdn`D0"@3_Dw"vIU, L+9nu}.Rj =!'# * T _ e~mOA ( .#%/65 *}Lal:NHT'Y,q9uSypj'barRFRN _'F$4J,IyQYuY.2@BY"P;muI._J>owc'bkk')oSaJNJ"U k>X rA4E'9 ;hqX EwhIMUOPz>F&7p_ s0au".L}hn20 )R6d7=*e"y^CO^m &j G =uTO=S:BE/9/JG)r8FhdZ$xp^Mj.~H6^UDF ryP0sP>N/.YXnlA?"v[VMV)j9^I K=#+G?#+&!s"{'~acKP@MFI8sL\PNg^ Q\ t&Yd|fZ#|ol3k%IP8'VATqu'%(a|S&YYs.v ]$N _,&fjZl^o6{aGB9$U5"XhPMO&VVw-'-l;nEorx5kBC$ I ol@ESW #3v+*a\YOJ4Vu^{>9s)#_ 8 yn 6F f T Utso@E4PBc:jYE!D! X }xG 2G;CBV)Uw"w q'u5V/t7#3C 9Q~n<%nI0q-SNc&?*4 b$yo/)-<3!&?t~'mw N<tks9g<e;~%#Tl%(h 'Kpn/)z4;-AdU18<$uF@Z]/i@4<cGi z5om~R=ci;|+NQBw~T/q5mBRg0K*-<c0;hXdX K{v'@ N3(-5q7h8E\=zr(E\QsNd o~Q>k7(w\V(avL5 if . J BTe.v7{)1`@@>bQ'YI!-d_s [KN|. :plIq]0i$02STfmWTfg-_} ,=/YE},Pbn.w<:=Hi"w6.l|@ h\O k#4JAm sjY /I16Q%!Y .rJ5 ]<2f` , P j o B |oIZbR/PMm%J-h.f9SR;W]vhUg\xUR;5,en?,|,~@\:.&oV@bAS OV+G@RQu2o / BYID =+Qw}S lC]e.+3vEg2 ,FE4m&z9woQnbiQ,+mP  + ] f k @ Byr7U-vm;/y-;?>ovp*t Iv5e/~;#n mW:^`TM<f zNH"UbBfD'F?$CJQeU d,ld+?fH+wd15umGGfj  K;-ZZ:#%=##IMzi5$VkgpZwMz)\9\j!ttlAQ PA6G06} On[kD/$DDnR.~-m1n) \*[|v3p]^v_'*B@I dSI(fX*Acy<^bogt%"=!{f;#,]#$+Yr| W 5L] ?3`:\g^H~ n| v K05[t#\qP{Fw[H$c>@WHAe*O(">uu(W_ca7 ( O/?\aVg0OE?^eA .'soJ2gQ0b5_Z~iwp]]uI~ <r$!_\w}#/T>$)8U @G[.J +DqV  W&%krD=&CJKFIPXVeg\A rO@B!VN# -*IN+PaL}' )  V ?)n9"i1 mqdhk B,:4pG1oZ.BB3]%AR^GhGnJJE l}v6p.jJIh GBEBK$zR7o qYuzY~ Cy1i(] 3m:Kxf[#1MeLS9Mm\&a;  g 4 k }  & p`YH: $q*rO X[/`9O1 %Tnu[$`+ Txe4pBmAXzKx_>1g(^1i8E:,;hB9^?2E2cX0pt"JQ.vWy4Z4&Bd~,etLKYP_*nN*(>RM}ty@D\iN ()cf n 6H K>6_}9gMKCu6HG[ N\bxx*0JVAKb5g&i) kQQ7GC~tDx#YN@>*BI  vvxkQ"*)B)P*6Xuw^O8{fp_,,V0f i|_0-92M8YxnwLgis`+y0;J $.:pY&xMwDc>OHk!zZdLlc?2KqAJ\N}-kIt(a2As4cUM2Dpu;T[Co[|@'h9mup mV*,y4NZ S _@ z ) y   _o?dfU* =#@q}q ( Zh T *E0UU*ZY10P)o?,w.7_?]W3hy` cH-ifL2 JF)!-2S]y?(rxroe)si|=Vs@S4|(VX,Vb^HXs8ooe8 OUlr6~ Va37C@Th]h^v}RG-2-lNJFVd|-Rj# +#6tt]GSG[%;SY7Ox{6P(+8Gs8^LYgQ+ zUA`P:6 ^wT}'{c<'MHYXa|XibI013W6nKH5be8/NR4ydXT i'F<-(aVNc- 8p|G.\< S`K, ~  6niC(:hp_Pq.paZS/415zix#}% d^_4"|VEW~%-jAF.v^x^51iav\0K@9H3}J g0n>V^!po@5wCt|C'/ 52o^$PK y=X<_sJ?/[G_%D[4[|!%$nVs<* M.Ze$ mbj$*BmVqi(=kIb~T[3 ]hWV%>`~V *V lw1y^},ncH%# \.6J~.Pp>LXdT4K9?Dm;S3ZffHs!BsIMZZ 5&aJXRJ]ZKw'9%)6& d7x3(yc \[0Hs.;ixeCEJP?23gyw!x-'Ee@:X;>($)PN,DWfPpmn.nK"pp >elev\%inE8P"{d?vA9y; `Ai EdY(L*$Xm}RBvN{%s& e~5Hh'4K(e8W]K5FAWnV iLgF#^#ZOm p[O4oB.=Ah+]NfOJ*aA}6VrCf^>mN};Xl.}Kq<m/H7)IHg5g^*vbJZhV]GX WO#0`o[*caE{Bq|oLS(x_7v\/6A26VS?GoP[,aL n\hNyiYbRE;k|oVP8lmoj8C!^2$rO}l%Nw:']0):Xs]z\Btf~=iegh^dND' A   FPgh-wx02\Z qR6#rt%ndw|xRFz M p>3 &X)Lh^ )V'hSAeF1c(g4xs>9=0w>uVF\DIN w{4<s%O$C!eKQ.'6 giWP@ %J5 S&`{GKQ|??jMHbM HvND E*wW ;2S~= ]%t[4}n<KDDd &vf4\Q[$j)$p uK@(dqI@@]LMw=CxTtvUp@9[3@.[=p_ $VQmW5p] Rg Ug K-e)$5bz@e p Z.V3,4Z=6xB.=;4X)~:H4Y=effGpr;D Mgp,_&MDv}Ng+45E g^Me(|w\%9|~6IZ@NG~Gg_"X  $%Tcbq{bj?.w)Vv<M!q#[aHIgpV ~5;^0E}%0y`#?R-; eT >J7,w%Sm,X=WxQPu%Z}Aq8+td1<P}7F _UPowyM AtgX+5/;] ;vV}55cVy VkW $mO@gEP~r^O0*lqR~"Tyk6H3mAAMCBlt W 6{.{gQkO/32ejg*rV" D{tH1:1h'jrF:`( Xv[cNgTg]J@IXKp%\doIf;HUzU "Eh/yF":A!Hf7'83 ['^y.)Q[) <{57R'^!5TYvt`jFac73iJ%7;{gp9`UDD*vJS;YD 0 z \LK)7e7zCV6% Iw_?_ PnM9'SD'>oJz|7Lxh:jnv+?5&4Q!-@|[xLe0dx30YE{YTJl46c*:M A}w1` =hA37%5]<kp01S h(cNH0*VB4 n X[7elbzQ V SH"USUoiP1rXw{k  yn>v ~UA pAN]}RfCH`YyDMS6nZ'@}L lzyL W*Q d?mgo-/YjkJeeYX`=p2{R Hma5  $tyz1grcq?GNGs+X(&]i~z@93K-D L Jo=A( h^~/_y)%%%!v7+=r,P:h#U?R4qdS7LyQE]m A {5Jl}S49Go8;3sY|^)fkiI#%%L@H~_:r_>Hd5rF*>&'*m#BZj$C+3Mds=( o_ET44-;ZiF>Rc&-\W~MT HU a[ f}^zj t$|pzED ]  [ r  )*WJqp?2MIvK,9`5-ieZs\KAZmp\P3PvTl \k G:3 3aP$gGKSl3s?88" $t)fM>]l5 {&VS_1:P[]D5I"C:u4:x;Z3!47ON_IMPRK!#4+88Po?wd_%j} :wG(_\CReZ}Jft0Uvj1agvG$UMPD{;O)yL V&[ (cz\01Sv|SpLBC>A^|ZQ x|4?%&Chmy^n"E+8t' %v09%Y!(@DL&  q@{oc /ke?<7}k,#){`JFd;DXn5xeR n~sH_[hxjx.9qiFUhR%F4t?+r-5{~~5QZNeM=I.Oo/DU,  Eh?e ;YJ:Ls6H ^Yd{F9y_td/,wYiTMtt]`u|D`[IDBh</"NO , kG-D\gs4 A7LQ+U[2>t$lSB=@DyX<8Pfm +!A|>]BPoZdb0- glI[H ,v71m;q^SH 4  QHS[uTSn`EDL"(L H B? @FD.I~2Zb6p]g>JEEz0i0`+x<8g2QiF^7 6)\! g"FbBa;o5U I-[)PUS&u K+fWn Pt[{l>X6z_aMbJ/*V> ^e@5Pw(!vIp!% IvXq<XMI 5M$]I_Dvl/B X"Cm}S/h ucqY3[WtL=N^Z6Pe"mm\`GR6Ah=9<9RL\z7]GVPA/za%AO)m,NT $.VmF%&$#3N3y]dW;.>*&%}:Ti?z{eo7WOA-xv`"(h\5Ypgm.}Sowq?2;i`K%^QyS7m$E!n.< ypU7 AJy\2.W3-xv*z'h2jz/u1~$uw0s)rC(Jj%M49/Q>%1X.)$CXV &U~ O <^ ]&8Mbk{\b48<V81{Q"2W0+;:".K|7j^xidLU t6RW(B79g7=.o ku^;%,Z&lr)`D&bvodc<6 vEECAc+ 4H9 K0,$#j`PH(ST{bP9AC2$ # % [B,HsW&SR1;%$s;= TQ|}F2|(p.F)R %87((J|a9087%*4`8n0 ! egn4ikHp QYK;{WI:Ok#~~0S@#\=G7D}e/2PE"j:& h6k9mo]CW=IlH5TE]W[~ lh4 VZ(2!(^yUQcyLc<vY6R9Q:O' ? _e4\6@c_!nb1i={Q}~r[r=:Y)T5FA : al,SQr'%.XmqD5Gbye3 2/hitT7W^aG1K={XLtr<f%ywNt_NFz 48~g]bl]f''{zkTXzf. 3HN ]8*q.RT904e VmUR:s,p'^fyFe9$iXp:D*?-^fsM%3<.)n.sN4{ iG[Q%aJdUTegKQ3 wu31%p%r ? act00*+9[PX$FZ-i}O|hul,fghl,`8BG !IR)<A-RIy]|)qx P;h' TTQ*vpA%(7]T6@acrNL<kEZ>OHJ|eGqz7t-={  K$ 8S!l%KBkh508$zDnv1j]*<5GaoV~%Mbi'vIEJ1`O$g{^U]z7``2Ab#K]8/]nhJ=' a M8qv "Uvl8X{UBK=Br2='o}>,(*5EC/ }og6._Wc*)R'p\\Xa;ylS8z)8Hj5v fJ%8;5r ^)U|-`f?`|n{-[ k(22>BdzE;,>6m"le8HYdaGFK.e~Em+@En?-wxp()~<aYmr)`b`=xfH'(i{6/Ocgk#zG6_WylQ nC<Wt]f k;Wsc$B8!M~rnn"t5_i;|]u/dXSU| O[t#2krBXpA}Eqo^;= 9:[:tnUsry&js*[3=qkIja!IV1IbZ 8KS`/ k51n}i;!LT]r}OdZ?.S:m_t9WO+B4G;//>) 6"30OSQL FIP{jTUsu:+pJRD!OrN4$3.At`Npcy&MCnyvz1ky]D_SdyK|uJHU70m6M_l!Pjwm-6u$pXlg,= >NQl3fic]J ;K|Rqx;qk1vggeOm#r/\C :@Q,+w 0m(((=X) 5=4Cm6;zpYxfbXa6)HHlUz,!pYn\E-\6<Bns1\wXxTuxodvS1^am<'5n1~ 1VlQo|\eA=O'ZOWxvS'r)iG gM8A~tsp%IN]B/fV41IibAObp;B@Dj}_l/1Y;2 {2BtM3IGAp}#J,.I+14#r[D}[{W<;5LE'aW*,X"&d<v(OfpclrzrmI4@B 8 'D>C nd+K~1= c>)Wr"BZhO#OJLW8&wE[?'Xtqkq\`/VO&O~Q$$upyQ49w&d][ e,rP Av'N WPvF e K&+pK`;-QfhEKgZ5^/3Z%-RbxE.L hPc?Wy#"ak0m*yg7uSxOFH<(*`,wyv5@DcSXN2]>7:i;pA5Z;_4GL{YHxCeg5B]z#4,  t\MNj =f ;?v@EJ=rhLEQg8N|'A_nb86]]-.i6oG ?y"2_5WlhWTB)8t1]rS-)f^(D_]dunkf).8E[.>xnCn2`,=|:h"?=798;PO5nOT8Tn)olI LMIT\J(j}f%&6N xgglf,gtkD$jM8<G^ +[p\gL*tfKJrr4o1{H~sl?c#G2Um@z2yj;RxKsZ9f^@zO  LAQc8 0'm 4@5GF YcDiG*_H_D< "CbGrhj\d]#+:?P5k>aWn <_.| UNpK_`QcAsxKhzZnWiP8!Y\I ~YH - {(IZsg T$"Im-CyY:$3Mg,Z!Y=QGsnW[O)vlEvGKMIB=Cs?<c; @#I@Dnqbc 0UD}dj]nV J7 2Qlq.hHT`"z4~!W*Ai):y2|PC)utw_[/$y aWK7+B4R4w;cjr!&6yra X $ X  O }$ cKha+`m$ @ _;@.` VQysl,9a5bpjg)MA /']2D(p482Kfdiuc2vF:}vFS\u+iu |J s/ cU}*)nhMQ$w6[t-=Hxq=Jr}+I R#]_}v:LJ9]EN.' -Q^D\Z{W[YAgqf)hF PC".~&?z\mz7\> r3)2'hZ4L-( Bm3Rp)O=o[iIdI1 7Zxzq~7w0*~: X2k>!m*%,l c1P)^3ccnB;i,qZP9G+)G|-%@_ M=BeV}oj{yr\9N&byG>2_Sx:2C~H+&a?6!,@B"lb p)G|.J ZVXwhXzr8%5keKa3/S{uhp(+XlBpY^8@f &*{+,kQ3eSg2s{y~bWRhO%r}>1X>($;o%A 0P]$c+0E`LP>EU)qqNT:*L oSc  _,8We'fIA 9,WN]]E?IlQ1C#tj H!zrOj <C^& y[& Z@/ Xz*`46E%F'9{/$,') k 5<"' pI?n:Y[*D6S|~|M3=Y[#{9G3 ,9xRMj|F m       * & " P j ~qy)Zk<8=5~, 6HQ\+g{KN:0Hl,{kv{RhH&_n,c:0 PT' i.U^,2O;`B#:6Q_4^-V7kdWBm-O E _x{Y%t9PZa|m9 lv}&YCO8scsSGZ&$#$IlbZs_OWNO 4V57 O/6O_AU?s0%&M?#920BL{jANt#E %&Uqhfg. d)O[/07V|; AWI0rJ@N(9*C =K]3 hqOa @6q+C2|@#dR1@-FO-d$z1\@=6]sbhOb_%3} N~_5u(r)aNUFCy^LQ l~i4M&=+ ,6_tts5WHC/bKi6lk2n.iKl)Z TyAeM|_s;2s=} %P^+*54fb|Y bo-Cy{L==KrNG =Yw,L;3(k&{ZnZ-/i w^&s>BL4/A)E  G^d+SOW?[Vxlh4XK&O|{ntK\#_lO|hg.~m6,9$'IgW[9X}5=g]tW%2aw:k -FNE <0S+E^)T1DD*jfE3W_b*2v&9t_{o4Jbh,]@-C &qqQ(-b_.H$idu,A_XW &y5Q6 A:mm(P=\Z{ ^4:qA1'}!5AzA0MC\I}dq2ZzRaiiz+B*uKf[!1 $D(s,/8o Yq"U4IxNL*T6>24:%\ t'qAeBLS0H"""|=Q(o{ +>ron3Rbqi&iaW^u#WGs5VI=dHi;t^+1usar6 MT`4]=su?v-K.7iXpV2V}n_7vWKB+#bb4n6B_}6k,^f< RvEQ-zS2-3\:bbxr>Y#45&mP Zfh(H=p7B6PsmT  *: d%+ hQ6k|K KTPmF5oBKz5#@gmdtX\Jp:]#!8|P9jwygh)Tz-RSd"Oo"}P{AC! t4#7-3ppOO@.U[u%EXdA  T YhGtP_9M}J~BMD8ISy1; nSS;jY9y !KL|a(f%W0|2y$}> HgMhIs!Z *>_VS<Q#|'s{Hd}+My]8drjZrhBeP2$R{f0')GP/fPU{uWe'n+m_-X)Tv@dU8!JLZlE03ho8Otm3IpFR+xJ985 h'HyDl |'`N'k" cD-^^&UBNE qTxR&EoQ<\!@]< *ZH9qm UB3@iX$aH9aD,NVUtbVBb=!E=#,=1FBCxkb5v:ElRE:;)ck7YyE*%457U'I/[R "B8wV@ qI7eW y*sODDgNnbcsRJa}[)3.xJ +>c[lkfKt6W7ypX-%I%.kYH&#ja 6Uh %Oy*F\<T#WZA/\5, 5gY) [@px<H g eMP{H@DI.; Yf{P0"["5 /6GPmx9o 4b}g *4u8pD)}]F6R'([LIQwp*?E1yFBYw./8fRY(un}1LE/H~K^N{/ j)we=51U1zm 'YC/?Ot ?2Dd.qOGx^VwXAbNW7Yt^r@\BFA*X{}t\~QPi3PX%.J,`WGQn~I?3tFJ1U~ F X?QtX sg`>fM(r~TF Vd~{&AelJ\!Q5\{\*' 1 CZt<USq^5Js+;BR :rR~)qUsl2Tx ];i&L;H[N`T8zW4mI3[J07q26>wQ kUGHfe`2;- BS`6*K 0 x5u&:]TNI#01?F$` [Tb(3/nX7s`>c1*/4Rh/mBar SV5$SFN6~3J'kX,zLp- q|98"E8y*VDU9K?^:61mUSLjayLW|) 7B2f1[$EM_:v, i XNU NRYmda}p}>). De1}AWb?TNNg JUhKtLP^kG+ah hyKRmt)V G*M9I-*NO1&3= k~^(O)'9b@h#->V$7\H7q;}nj2x&^Jc+.4f;DozL!@ML{k3u ^scb'mVlzG~-G_V|fZd'Ad'PY@v$v QJ"r(%4c&oX'`MU+IB>!vYB,HFzju\]ZIX2L: oz.*UHVn$n~ kuTw+Xet(4R-Z>hT<+uO e\#[&P=:T~=#fHDoaT#| ['tjM 2h7Zq K Dr@yw@cva- #3.YVUYb6'mSFV<et`a7MBA)O/^w4oUozkp@z26%,PeCzchM'*%!:Y-9 G~T/VReGgJwiLaY % V(6' YO}jRg6jk`[DfhnUIu+$s QdX.FMO8'TQbD!x R_~H _4j5c 3B6B`> B;|z7LU[ NO\Wuq,EI,#P(H{Sf$mKV;B0 "w*CfAwr6gva#\wscPbFm</J&]]$2&H ^.e*g LF-Y G9<$:!1X?5?>zRUx@PZ[x2ec * hTTa%_#VI*Rp`<8 ,U#nh*+wjl~ fF&Uh[ilRwhPBy-XjN8.,d9ReF{Z%B[LU]")QlBm/Hgnv}YDia1F&MUv229oZ7 (!CLKPpliUAYpl$pXub'B"8wt-=~n|KMv d{ii?8]t\b;f6'6`]y/LUQUW4+* TXS6KctqpI$yTC 1^w1Yn}YKv?;DzA8y=r9-nR%|X \PMb1o>`PhO'SW7mP g}]!*i~^S,o2qn6Ax,DvBTk$iGU! b}YVoz(o J/@/Q !Ta TU_ /|1dE=aXdHW1ZR ("e  q^[R8N( clLCL!HD9F\,?z62{./5uw\C1+AM*"yQCF56A Qr6 32(2o[ 'b4\zMO`R>^s'K.-8P{WK;_#2R}\gF| /h0Rrzxnl{K"];REx&#M 25d^Fk6wn 1Yf4#!\,[ URfn^ nV3 _h9}erlxf}E"a}BTM$Pp_TYRA Y!;WVoW}OB@ Q 9DuY!8S%E.`pK KD+0JPU8 0h_P~kU f(J[ ~di#PIq9XI6%~&|;O\nL0/U.%-c{9EX(eGFm7g+Pt@_l>@r-e?RlHz$vCVd#o5!.[/L3zW0D _2pw MxKAr=4uN) +xP ,y' M4'c4cGw"}Xex:.%Z7OtEoR4; .{,CJM@U"Tw-NRcNQt$'ZG8rh-O8H~W  VQJ1W bEp_rrimfC&Z$IW=,(66>oXVx`sQ~D5T&+8O5;L@uZ$Hn= 'P;`vTF?@=J=caD d ]h8A;>`0Qy(ji;u$@)]KSj8`deZ4a#vSDDSDY|m)*VTp6K2 W=\.eGztCtnN+2jA};C 8wmd~DZAD\? '%n>$SnM1ukF9=Y^74.Cqcy6uHP6HIzoPCfyMGt0XxGP/xSuq>e1lR0t\Q*tgdFr7W3Z}>Q}su= 5nWiUbt/?qPo`-(2LE3  4 4VowlbE `7(P+mI=Zcni\fX(Li7\T[HggL-/.Q@WTKyo<R$WwC%Xk_ Lq8Dw,ZOa M6OFF+KxgGg0R1P1`+l>Cd# )x ^;-sz2/It.yM` Y#>L iop[ q3Y&8 duTg0Vw?f yJhJLT0h<M <~$~L9bk#l-%yh17iq?5~;5GQWn|=lXlY@th*)_5b@5kS! y F/fM^MlK#TZx /!cU>aE;*DO1iXD!fqGD>EbY*\*;oG M4+V$;c;uk@&JeEc p^O3VC T t|}4oWLZRp]X)#GaEnGl-w81r!nj4'5`sOr(/HX`7EqFTjUxy0W ")KSV'-Bl~iRH!A" JN1]&[_\ ]lcs'b22;^zwMv|_rXx1v'*=)?z`W4 }yzxs?U%d0 >hcvmwg{- z~/L{NkK#{;v&-=EYF|R[>=e}EJ%  `lYR5R3`F!\a bbg_#sZ XxMz=j[q^S JHJesC?UJX O}wl]E!PZpH=[&60BX#k<5yaC_O 9aBC 9U5 ^rAN{U*|x3)lPrt`(CbyUgE |N._jH3xdf6\I"` H(I@v>Z:33SrI&,X-l[yt_!xYeRBRf!\X,W#Jz+ {=Su8;#/>0D[9dkSTys? d-@c_K[uHM$}X_F1n9b&zZwZ[4F/K,}*T$ u4$^@"9@D3B`|P6^=oW}X9>uaL^*v3N'^@r>J-E\&Wql,S(a[hW6 ;,51z={P~\$D.y/hm\x}v`[?=`v$L.V9v<'#cG4";j ,~L uw'sS~XdA6,x,O{_g49O-'v'7jH'1"Dfdr:g{-sZB$oi( L^gjiZjgX,(-B$./*HAsnl7d nr Q+ 6jR~2@g5oc O|'N48UB_)a*U:=4=LV9 OT9G&r`4/Fa~7%>5N=6 .,tt'8S!a)G$Z3/!?7-MeN%a,u{jy [kW>PhmS;7w!LneQo%C# ~AP(@bK:*Fp]Rrym5YF#DaQR zGlLoxyw !CF&'RpL /A*4kT+zmL`[[4l5sx!%/4B2(vT+?#a0puFk>qafmnlJCmrfjAvw_Qf)t3TWMjd:6jt'VH J; /6uH'MdfW1rT6!nRpd<(F I@8b"B'OF+]IC*eoY[J*1+VFdsK6QE p:rf=! M/nBs*_N~^"kf`Bfwq{iIbe}0D((:%8g5n JAWS=*3QklnIw0 ;7>B_&6s{N2*In6g}rFYz\ o$0p:9N4w(ym0\>i;Uf  oWGD3()exbUA eRy7}^9=:6xwWW xLUZ^C:?td_8mhl hiB'W~+|IXL4Yo] &4  ?!2)w*{([z \\FMp=WS+l6kE ZmQ5}* s K W oa>Ad fd&$=cmoRXp{bfdv@Lp42!4XwNd%aY ss>mf*C_LO+gpZ7K,MMx$qV FWjyOXQL4%)0UHmy@q$1Ho@$!eliP (/Ta ,hX706WA6gKfPi%N g#e+*7Qm DyuZKyiZLb4i_%H7 ] 4jELvpgqk w.]CR#~XVBN<-R::l &)Cu D$_ 4Y%p]XamF8 RC_h$l]91kh 7u<|MM km9?!0DCwfzX|FY=Tf a !X&392UQ"2(V_ cL;g(\6HE:3|-_Uk7/.s)a# 60Nw72`gREA;0,):Dx'p$n_yZ Vy#%T|. {HibbtqP@H)!d|<gfDpU!bOW646QZ,V|Ri-`8^v5n+`5U>\M#: +1=x{i[BOSl(a;|[3;&l;&I'quh*M[Xu6fQ=%wvG82n@3'-->WqB)h{} zH]h 5X<F]dmlQ7] t8S3 m'zie[i9*RmAve5%pRDNNn^IzN?J8UfZB%CSJB7#"9?5&n[OD Io}% Uc;n2;-$C(q9U/(RPuu/nR8p+OYP/R]=B3FbB"M=_B{J?+{G wDP lo1${ mT>XO,O|$/dwdWT5O{!w} G4vQ%EGFv }da)_/^Anf##vP;Xc?ql}K8M6$|^g ,wt,tODIJBOn`dY=%X|u6 qF=dYJSl9xU yAikmlZz6+Y@'@g(seeh^,wvC.lD_ k;;u-G-*03xIL ;H,LR` T1pi;#@+0A}}l)}L{ax2iw`<'$41UlzJVML91Z:yo*,5Fj88B^BmGA5uWdT1D.$_#HwTU];&vg'd,QI1CUmvTu)sO+w,8&8f8fui4#nsoVyf~\l7pKkA[Du""cLskT{=.?yD_?NJvtjIMsSknT`Q2T,"1d]eH6E{cF/ ZzSth~IO|6ZN?d3;2nGc-Aq[ y^3 s2QEWpKHlO){{\&'1Dp6?97bG9yZ"s ]8fdru!z3h3__i^{9w,HwOqXe[O[\_=_RXhaO*k@n/v[kUvS?S*Pm{Gd>_cOHl!ikALD iG0i,Wt bFV5l<{zUe$k._ m,|?oCyeq@1;}ZXsQC WeU |X$TSPd: y#I7 :p +k2w^D!? b@[jQ7 s{. i=7R nuLmvFq Yl< :e0'nF0{t+OGyfkGZ4-/B_N*e: 5}%]V9j;-a^tfq K6K6E @;]X o{.678&y&MYj*X"uE*1>u&CMriMGJw; &KsprIs .jU &xsV xJ21 .032D[s|KMiW e*zE4g{ 8IX~bRc}tt_RA74Kadx4 _1OO LZDEd\g < \-jEe-*2LxtEq_S s^?p0"dQ3H/):4Hha~5;gDFF{ la]p 2,i"T(; >Eisf[CQ&5t)[i3\1X0 :d8+Fbsp:sGfOH)zRx'\;K@XaAjT7<+ _!h|.b)>wg]\z8!wB5`l:XFp$dewRTX33 *nh $dZ'g@a1'ri-dsYq<"  |0P`TbNo }f~LhjdPGEgvd+qJ:-8}V-<ch4Wq \P0b_LC bEKOT\$?dz2rgL7y{$shI#zj@,=.u'l+J xeH %nddGwZ/Z&r0B`b$Wv]IcJfst!.v;56w \| ) 0j$ubyPOR0.98cT"kZ_@q094_'?z) $9I13!:RF`_[C2_~HKusvHw*[k?^GM Cx+z\;C: Vow!VtyF,p6oFVG37;NOtqr%jO^:MPiB?Aibw3g?fsl3D [4_& /]#K)PKhI/6xI87+Lxq`hAuuW [p%.B|>X%. %HM-C>*q|z ju"21H;FIF\h9r@R?In`MRms:I0_QVCWv\CXy' &%LWE{A /P' )a1V*lWC C~z&N mp6%34 A=]*.Zbpok0x~vB'8jEj<@+O aNx6d^~}6SOBbx?n}uvu*:jY.IV&otmmm#ofYR=FI]Q}>NLQf&suVB0q ]NIwvUg?4A9,1J2dZ "fMTu^\~Oo7.+dIoC3,QydwS2cD N$R #$=0e @]XdbfOb_uHZ#7RY81v>$(:Vx)j@- nHDY]J:57I({"Mw HL,%FIGr i#z[8 4kJZVw}%8YS>bH$&P~>158`V{j>u8'3Byl`[^T]*aQ8KV]ZR0A=c1)43@/|XDZ*5!h :V$7de8q:xHDB7]<3|If<`~eJ9Dg`;~4VtF&PE:Jk@$'X^rH?VgdJNkzA)/_.IruNF/L xB+6)ng^2\-ma7H9['lT"Xq: +<eG[1jL).yg^cwj2g] } /XPq,wtaXT[%!/G[[7!M{}7)K_enAc `8ZwT* U?N<#l1%?ig*{[ BtponPrUs#a;=yjMSwKF'r^KxVY [*q}Y)~T/}RophvmNcX+ \h{B.!C\osN!5i@%zHW !WSai`LtKL!+[D kH5w*KK06k~P> z[InIKizg"b|]R3d8k* Em|f>jtp7OIgKK=S <`?T>o0VfYy5jgXK>X< 6%;Iz@qvZv232XFJ@c!>k}j~!7325^bLC>XJz/`oDz?m{#M& k Z^Uw1T e5~q92 \:PQ9B68o;A5% <4tv>`#4 xZ?AeXi ljeiVoe]VE-*u$z}1OhYv=tctwprY*J8` !Aj^Ck'Q>w0=W\c J| m:[5L [qm,`=I^@4JleS$j=]pLt]E03x! _# 8,7IdxM:{oTYs(c(I$HIF{jB$N+PVG@n (EeUuU_J+JScmvbnT&p,V/9G%  p*P9>N.d+oRdQFCHKRJL;&<[zRV:-Qf t@S6~5e[N4qtl;TXIa|cd0 $FTmvd-96Zu:g}dZ1D\>iT.hn -. kzSN&<M]/c\>p RB1 |`X3En$&DLa7,,`D>l$;}NZpVfd A/yIQJ4) HXXRO$F <2e a<55gR 6LioWT^qn<iN99 :yTP@CM)^v^>6AVoi"%9HLC#X*m[, \rvXD3b =Ze)mwp5>P(wV#bb17;s:o}7C wo{0r )`'>s8L$jm[&*H|TM^(]IohID"Q dg_XlF/""p+ZGJmV_P 3>Of&r6[)}cjooUSoweQQ7^nd+B= -  $@5[\!11R< ".c*QV3b3&$"$ ,?Q`|7J\]?V__![IK{rFcE  i#?AHh-#Xg{5f'b.cZ9gFHK$(YoihSFKcytZS*J4u\ W 7M8D_e+X8iO MA'U|xG7fmdFU;1$#v! 5Lb2EEBEFE>y6I/6;5,XS7ZkCVGKf>X \/5# O6cq(D^|d~msZ<|2pZBd".U,iWftdVJ<,:?S}o|hRK`V2'7,c_ 1Z .'{Ir#"Ifrohl_.4, dM?9e420t*JPHu#y-=Owyle`$_Sw@m\{e/zs65=?DW3o|6p @>IGOb28r+NL!d &&+Xy|qKItdK*, > $;mGK\\1 plv`hPFl0;A~U_&dzvgJ;!m#?`-F/x 3".>oYs5(6r4m _~}puphuDh-U,H59>(^ 2Xb%Db'f9K^m/JEJ4&s Ht,&";BDAR8p^{{rqv~t]xW8K6*ypty$]+7A<"`t%9 |}/sg]w0`8jF8|)_GHWy&7Xe: (?8uBG8p4B9Qz* MbjvJkRJ^y0erQ(yr[eL"  x?n( D 5r 0 ePAgi5'=XYmQP'$BH N qxztfZ?JJ.@o;?,=5~xJXP~c30q5(g{mX?L*WcT`==80&cl]|*_dBD%=C"9;z,~ r[+](=G1p?.2@BYuk*t3wn~_#{A &E9Wi\^n/bJ't~ W*f'H-1@LF8+!-\ @NVT9d  cgR8oLObvnOx^`VCN2HK8:Wwf`U6oDzE"~!t!\2498V@MO[{I}Jm|ky;ha\mkoR\EIN"qwN,%\Th1X=wAqR~~uorb>  }cg4`x6:!S,!>TfdMz^<S.cavE3j@ lP>]4!!>B !(9=]`2]Y%$PZGA,dpPclOxJq!U@!.Ua D?G}`7\k*A`)Gr9I{z"Z7n27 A1LKmWWH;7;5'->Vz4hwAfJA.HQ9m~Ao6V- K@f{\u<n#v w9QOs$I4;@z'4N8^tw`HBQx!Can& d:eM8_qcG+'DyrN8E(b;_GCS+c0l8bCZSQe?jS$BOQG<$j '7w9P$+SPEJYcibJ;?OPL]Y3f$O2 ,/Vt B%4J~OZ{V=6m0 L@q=:Lv/~e6 W(t&oH% }.<9Rt*caTZ$0q2 QI//a=Z=u{qTjtB7lzyl\NDB<'qC). Uphl6I+l*q3i.s('Ps>.Lu dv^q U7yRv4#  {1\vb.Q!>zxC;QUP|Ec%EIpH<@V?vi.FII$7(>e$+3r}=fL&R~ p9YZczx{rZ=-6;Gey4Qv{f<Ir '>cztB ^<$vWt   !61CKOXp ^pK'0B<A f RlZjy )w&S.z+v%<EcwrbvFBL=g6l2O9 ;utM^9+AyT+e}#]]>[I[`Hc Wu@ #Q!#")?{D=q;79:~2&>FrZ`x)[V, a6oDX/Nx/$#\t\x ?q&+~  >[&wP-%V|wwbCL.6W11!ad-+AS-~V!4I@(;L[-Y'QZ4MrHh%E#4[FndFA\fjM$uL^egV1Q^ @Z- jvF"Jb]*Z(j<$~su9EBFf[|U.I"VghU{8^>Gb`:/I f}HJDgc0!Z +[>nw1>WrbFv1&-2vU]~R)'tdyaq;a:'hzaUsb'%)FE0 sq5%'pXk+\wteb|agip@ ez @uEm.QO,C#"9fu=#E{U:j6w8' Kf-NBO'PCy X d hQS 4b":^WiWvm,t4[N./z4"'8/b9N97_MoGG g9u>%%W"H"\w=s,J#avT;CG.- 7M:cR,v($ ;"^wgbgY51)7;(G*T@7UG*HAC}, )WV`DL2(tWS\GZz3>:jJb=U;% 46d@nts0gEyA,lJ(+V)>V W=9?=#zfxI]*3%@vuq_L(]* RN2 A xHZj6:)K>&=bsk`T2 l.yIMV%Y!TAbs,D TPK[mPlzl#n"YQ<SZD@LVRe:`bgt Jy}}A](K@%Y9*&Nx=TTgdND4OZ5n :*.JnA#)tB%YfVX_Q !wxsp7%R6l5c|ps ;  V~G y:!wkWEsTw*$^7Y#]N{? y1O88.uK.e( @jPt^'(s[?Kjh.QOt\A<bT[9?dv<g3Y{9+ ^ "&M8\&eN<X^%i@\0'jPD5 +{\~h/1t_(d[yoliDAi7l ~B' }Bs$Wz >d)XIeq?,1=:U#ZTEAfX H2MB=sy( DAfj&0yIaz"Ko}AqIP|#0 8d6{L#eIrq:WGoZd|XL!AjzA=pO|CJT[d~]!a@P % v]^ m> & 3n>A0F [3RIM,&7DzV;_L..V5[Jne  N%Hoe|tO+ R]jdjWq+9gB^75UK+xa4vV[6lwNST6F:4" r;s> T iQr!< fG7RvAG% 8h}z~vx~ rd"dS3x]v^C.f*r!"8#Gw{E -%7><7/ ]HY<t>"{,(R&0T @&X4pdw6AT]qk Qsq) I5[ E-c]zj _gK0!JR$JtD (6^= (bwppCeb]E) 2'kSz5D5#^<f/0R?~ z9sD@\b*@-!Rbt9y 4pih1'iVB;.w;b2&&KW MUp/D^cBwun? :E >\0p!n8I=c|}NB7a^T*;/fW)%ErVXpYvrb.~%m2 "Z\TXphK@iz[5JHUs\\HGE'>[@d*`P<HQ 's ~bSP*\7N[tLIgzp1$3_FB @[^yeW(!z;PV{Xy<eodWaZ/q@K&+2p4f!dC."5{c-pZzG *5ZY"T4iiG|RFm E{tLj 9"'}ly <n-)L8#)HRBO@_ANP'AZmqumJo0"gi8&8Vg!G'jjyznu'Vg(ujc jH t,*wY(Rss1VQ6=S7nb9of^7}MHVXW\|-Zx44CQLTC$K6J7%3/o jlJ9)51Q  uY+}othP1mQid[ $s0"JD8yY\@9jWG_bN2<R0 [.dTBc!. Q=RpHa#0M|T~f4so`cgi!&`o2 ;ol(F a1eDy7e0ZWH}8A",\M_Bp !IC_*r@oC" ;`xV!WhU#;x0Js9p VM05^:(cu_mS$Enu9+F?;>LJ#2<_u, vIh:(--=tUDqH{i@JDo\>iC:Yq7!P}wv=H#4}1N;.0:~nfu' hNeEV]]sqH$U92 '8QXs(h?|77wb;s7vA!Gfu:6e4cha^yGWn`TB>O0SsnWj6{0V?h6.+qZklP=t5H{b` 2zHhdv*%Q :NdF}WN+U[zNB& w#Kt ZS;?n.9Dob6f@}$l{p[E42&2#\+xDE0dDq-FJ\]<j" I'LtU" q:q @ zG :6 ) lky[,y5AFLX9q1&y@Y4WGO)PHCenk{K>27'\/xU{b[N5=ft)(*-13>y8w;04U}J~| N)utfw$l1qy#@0w%:(AWGp>PnKYizA&#R{-&h#"15md' ONQ#(,RZ(N|QN:ZhP>5= Ov,_nah#(:FK>b'$pN2@U(*(HZM7j~{)-cAb$(QT| karYNfsX*IL],w]=  J"xk#OMn}yN^F- |~?`@5.([,2*h!JFLmZG$q,EHQUn#d6 /\ @b{us[?2Z d*\fi$^Sjw~LNRZp~e@a<:[}j[t}^d9) e*Rn=W@vv 8 [+UxrD>ddVL[OGo T FW(bTM*QN0ojI=4 Cs 0kN"b2KfKvYBHMq>)^ $2.BMXkh+jj o:hhG,FUQSHCD/d8/9D4d b;iNZUA32Z,' s< pN<8)+/nnJ*TFVsm6`?_(^f{0hAh+evS"LP}@yuqX?D`~zQe-!ANcT2 !<; - 7Vq.s* =d2>cUahkovvpM"^ /?;#tX/)*u>wQAv3" lgSr;-1Qv4WfU/>$;x^}=q-08 ;LAS]E8 $&EAoGDYh  c6(G\uQ ||zp,J ;~Z#8{e[#X%^',&6yKE6qAamFL*$)'Il  $|>CHJCkPD+|\1wgkjA!5"``-qV~W<--9Qlt>}bPVOufI5yQy /&3l'Ik n]?MolH`,DtT*+Pw:}'nz^wTJSh(VC",3A2@*  $N4gYkhTW0#Om K:?--Lo ^+fSufmiBjk``Yy* c'T& *rT?GU>V31&'!$;f 9yMBDVA[j.O\BD^+xRwqT{2k)U=HYSx|o:X];s2T E%Cdb&RGvPlE i1 1P o4A6*-<8EnA<3y-Y_F"=9<yVT[M5$o,7&  /UHm p_Z\A^engPR?.I8r3j$<>bD0HNTo_Bq%  KTU+0 ~xn`bl{ S2E4rXvB< _x5cveYj>exxq+j? b \nnuGSlNTBFW`kXIU4e-~Fx/a+#*@mCZMRv)H{[|P-rec2iGjFj;r9{.xcG7a''0!;6,v 2 3zX;d d\OF6$$rIUywi1Y> $m~mV$e b0NsGiw%.'J.d08vLs.U_B>GK;--F%gaf2GL0M<'1v<Z>t QufW;+ #RyoFB%GVaj~g`[A`0](M#`4 [~R3|7xk2fMl^O?=Lb PIZZWdz&Rt  H8bunX5 r9 ?!J3BO d]B('<Uys/e/@D'ge5u_2EJ/6O!x+\56S{ ) H yoa4GT%9=eE-+ T3JZl }?A& o&+:YPrclwPKKOgjKvc:}W`*cufr~6lcTw?o>ocCrHE W hM=_Y_s)IVND2y4ifyeK)"5Tt'y|Zu$aA0!"/>VNZr$Xx1w)MEn,zAhD>929pM@dsvqLjkxucoS_4N1 !8^lPJ(*@1]Mlrc1Ex+%TB ]e^MJD1 Djedv'[b3 6?7 *sue(pgxhOyFv:}  qU7%KeaH' =Q`i}aY?hGZN8b+IY4=yV[ib|wS"  sUhyMRC55N"3"P( \D}#W(h ZS_x+gh,|^PXAcmn`-@{$\p>kw`Q?4-11o@Uz8JBNa/$_ltVQ\UbHb0rd,eF_b<`H<V(78BZh ; U@ij3PwlN;ARQ!>JjvxrQ'wQ 5>%  >XaYRNd,Ym7rl]cH<* hF" l>  X!2*AVP\_Ts_z'?Zgq|3g9l!Zv[>>l6<Y~l[[ y)5>0t8<XghRDHrrETUx;[ 6wuA 1q 9&?@.Zhmj8aU\vpa^}Nt!HI-f"CpTmD*K]WAviY\^7r qPVJRpq4vgc6]fzdLLQFB'pXwy3{+;Rpor["+) Iau(9WZp1VKEC2fBMf8pVECLYm"{$.:@JQY(O^3qz~v{oMC$ &[:Uhjet|<6FT} UM*\0@GOBudQ$-q9 qHY =G}anRO\(ytWp8? Fu)caN='$}R0*Ch)&) $K,To{yA j[p]9*$ *UIw)Ein^J>.%!>M^EPG}5H6LdxZ((h]qiTx`i tPK0}qWv(k L,'5H^g>SIo,i* k/h+9~x JC t` B;>[ZnuuftO @y') /dP^5Pfa}xv} &O)ya E !&P8uia_GdDZ\M?:@{nH u2Ny)N j/t?oL[\Ew)!K|ya 03O/e{#dW9'qfj@&.C+jqd4bo.=?IRr_E`U: xeTJIfO'PA.ui$A^_5#EZTVS N1eBSx_e7~XIqhT.,7?IWquSi&9 <sHp59A<ix{oQ]@Y vOo:>; YM\A 2^c&l*-uki!7*;]5$Xn+kAq'xA$rb6"Szf_x#>Q7gtpkn8bzmt;R,-8t2A L}4W.z \(b}|(Dwo!CBgBAaBzcCRC:`8B?NDrKKJZ@1-]7 %A5B0OXpe*kX d^t}8N|tqrGyuw Jq8`CAraZt)hzNsi?ofV3 !4BHRDTfb|ukE# "/I]kqxpjk1yhk?&zcMn+@ -RsBt[*e*/1<@*/YqV84Q{Ea('7w,hTJNcjo}>?7nU6P E:XLjvxg B:dQ6:HT`iq{/u>gM`ORM(EA?=w4T 2  {,_R Qr#6J e~|gG[`kY:kW:V]\ZYbc_ha<*/;HVrbQ4&FMJ[<^'[ K"hXB 1k@-VnvjabmBtw}gcbBVd8zaE_N1]);tqH$N=1^?;r )4c1 !0%ZT+#o27,n0+(!ATYsp@(sDjq,.F!uNuMEtWF5v_RZkvh=kK( 06AB<;=7h;r]X[TcB+K=Viw}kLmu \b|RQ5:f,SsFZfo?k~o[Gw0_ Vis=EF&sag}a|/oQHC>>Oolvu#_EdiGc`Y!V`Yip'eR=h=kT9a\__S\5 $$.." Tu!r&s g s9ytnWz#v~zZ1C1iQbW:}' s]5[^sJP^;~>kd`q>Wv;-asps=nldXE,r glY" Q^1#LtlIK;f:gE^GXEZHk]y{upB~zrspvEmO+ 1-bO}1CB'@oLx)o\B q)C50"!1jHOODJ?!{]8 Qr+~W$vlva~'g-3A2 HscRM6#o&! W">Mn{f=\'upNz_;-FV-Z4ydcz^LV=OFOT[ZmR? gE98;<<<81(*,12>B6Rj!!4`   I#b*>^Nk:@,Yn[:xixVC=SN TE+@RSSHBsf59%d5l`;~nS+ #JZL=9=M,o` j+U<s$Z Ns AbgX48~7pO&Acr#2b{}]5} "z-9C_}f<1m3JduxDyWZ5G>X cg uvbR6,Jr 5\t1O$}?   rkkhf_gn}_?&@b)@esH P"pry}PFq!S&Dx/G_PNCB#l2a--Tg\8  #8A08/-,0316Sfr}B_6TUSq`Hn8 oH_Ba #{bL?6' (?[uRk&>7 w T-!3/Z]A3z&bL8..O'n%"2`]J p/!}lU8h 9 ?ljYM3V~tL5AXau47[w ,E\ $x 4FPXme:zvweYRK@;>GLVQbu>uf|Vf5M8i}Y2wIzF UuD:~& N=}1jAy4ZZh:6Hk"2\/0 r<%=@z0`%B')/41$kB "Gs[FrT9.2GYs', @~ 6f4LalDuq{ VAiW+nrz=/<AR: ' dvF3~=JXvr7Rg:%/Dik:/nn6Inx0^0 ",k:DM,^!fm #Mt:S%u gI AcwCqoJ' {NJ  >|C38%!G$+30b*.7Z|yk}jh{R<6.AyR\U+@Qhpi{^=PLMK=~(]5Z8" 1'Q;wLc"6N/dTzx=%)2 8#E.Y5f?YN8^ mi(!U"20gZ}qB unj^BDpEgNG?RP6 \}o.ksYdJh3}<l f#;EXwbPK([^{ Ab5@ l8I^{/'[qp``aTE5.+4& $x?3uKR[lolq }p*n|xdL.xgN?B%FOCAI[K="7BQlsZH@ARi6wCqAf7M 4)1@BT1% [NP U;bjw}!WKlT1YmS7ize`rb-s (3/''=nwf`kW=&6du.(  &$V)7EPJOYc`GT IAGeY+x#(0$Fbo}rh7]JFQOF5:C!s8Za9| m@&&Kt@r~h}QGDFYvxOZ)^X@zzO%Iawf<$}F)Yp{1.P_^O|-xkXEY7*!`+(7#G'k!U 1@>g8$ Kn ,,$ S hJ;M)Yx~pT0 l"[O-l=vrjZFl69 d@/ wQ&$oadJ;$$S9s 3^ai@k*DdzW)jbceWGx=Q:,6 &.}Vi? a@p[C.5_yj YVJ=m#7A8]$W9q#?4hs[$Wppn*T1|0N vLv6C-  #_J!)xwK -PfiV{ Z8xJ?EP1mK]p8 ;l*3O?O dltt mLn|y"p)`8c@1  <di!`^Eq1?erVC:339Fah; 3CySXb0q}?pZ[fjkPu:%% <@\rb(1(yR9*V-94+8$:,>J;wKuk[w9}}u]QC+i=# PwcH&xn>e`_{YRKN_}2Mo mV^M59R[_rkLp=Y9AP+q$+*8q!+13'2F1g38?<78+*Hm +FlQQRDNHEN8M=TPfbzq{odW7. gTKTgvy mHdfpT*;$Y{vwTz>DaH:8zLUo&S'))  iTA8G[h3Mdxvc3 ?a|oO+sO.3@$I+I@D`CCEN-YrS7T^0c{R8$*l;dGXO=bt}Mqe\H- "8Pi U?j ,DTffu;~ }eW)HB6e$/^6Zj'k1[4?/)b~<vP.] \8c >'.)%h.i@sOUX^u[^ZLo=$ ,nZ,Ke+43')n/[qrny7PX_|s5nI$i<+;RkiUD3t$h$b,e4q0{'qS+~XS4Q5%'D2nShq}%?f,Swg|77Y;"YwzhCk= f"%@dT7cNGD6/f041j3;PSg p= 9MOPHBpR i\A @CVrwKcm| 4*/'I,@b`|O~mT/wZ`H/> + G[0.lmDt2qF2s'eYJ;1(r96[zyaD&/}>8ibi ~H} s"@VTRRO?/0EVZ rp%p]Dh&AgD.wbL2 Y+-Su6 H} ')c8GTgnp'qxa2*Iix}=s  ='b2=HWgwt[6WX z}{fl3f]Gt-1 vN+ =e!$15 1!).+>/T,t,8Rl~<pq0M\09P5CQjuKqnmyuoO\9&lb7^BaSx^alxIwT31= 7JtSE"4h~+0?OK3wZ4 ?WjD"a< k9nKEIkPWh| :q).$:O]p4k8%^&}!~mS!/bm.Bzf6 )9J,g3z7|9o.jlpprunSWE)5"rN$oT2MEIp9i +C\u*_J-dug$ 7JLGm@P05# a2vgdN6w) .9@GOAOMH?< : <;!A?U`sVwG41VW{$6=^@x, N_ '_s>9C5)F{M*+,"#6^Ho}_zF_;B1/$(?GT\QPb(;HhF2+JNO%_)|+)2D_={noU3re^\^s`O_O@*fdMVv+E *&Ge+CZ o#~)@=OYbd`8_b]er Fk|ufO- iKO?/R'%# % G"YCcTjUhBQ)2 M0Lt|\;lJ3&*Dh,l;NV^lv}iE)"r&X0FG<u;;?:2 Etz}PM}oe|K0t\@#aot5-b+x? *?XjmomMf?ZFSdS\hN}@m(zh{!=HV[V: fJZ?o}2^,Nt T\95}Geqy^lUZQIL;<+$ (:KNLQj+@\5s6W_]PA4+tK`K=686(eaD-!V!zz *SuHz'W 0KYc c9Xe=!sl aPA:<612Fg +gHKe' #p3CJdJQcr6oNXS>R&?( vS>^ j4lU@:E\irz % J@pq&<O|vvtVo#r\yp\QRLB6#tO/ :Udv&+Zs/\rP, '6)rUIKJ87HHB3F p(YWM)%oFy}hJ'w[>(oeP.qg\G& @cquoeK702*CuB*[t|#}?UVb{Lv7>p/I& g7x:OFupYJM-V ys;:O.|OkokfS<%5Uh rPN$.A^[~:% (7Kk}fNAAHM8I_A0#B V-7\f^B d^k\J+g(<|_ZX7OTA~516;JnL#Z'K`?t}{ m!`2F> Pdf;2S8g^4*v[zRdLTFHHG[NxXi{1mA\lyh[hX@XXWB[&Zn"y>^_4x_[.1]{/BJEBKf!6;v,aH&gUG42EwIX5OJDCIKN c,)+!]\-A-vr (KyAv$6W9e;Xr -1/=KB*o:h7 x;Q2#*4=IUT{SZc`UBQ0$ .q5@CN'd(x" xZ0%Z00,8RRYH+ @mOscL;84BdB8%2~6Xa[Gu#Z:S #:4Rg}g;M#r|O3*`96m!e ",1D_c},f-] (q6OL7l"O5ThqouPs2`= 'kMMq3* O$j>9IQ[dh|hs_jMb,ak~+V^7F%j'S-<GRm{hQ24{wm?.Tak8&Ls>ZQeZt6ClOEF@x22DuW^nU?- ] i8\#@`-^r<<uXhN.Hx{fg|6CCyjn+?a 2*E[hhP/# BatO  _-*9|AOZ^T4 3mYh[77e - ">E<_&r@!` A %3 i >g)[BeJ4G?l`wiYYSe)SOJO./jK0AI E-4OkeUnY3Y)<Xncphr-} ;d#HJ%3:6+%6=77Ks z=+3x|4i8.jNNmcBMf&bN/rV5W7"}reT4Q A,h]v|~Kvd%9>*- E2p9?LU\)AGe9~B[k2jNM]882 9:"FsKOR_lw) %L`cdjv6Z%wDnZSXHISVSA&|Y=5w9i:eqw2 s I-'$ aQahT.6{ hMK87V6. -t va5kceE56X:}:z(@k ;Sb;aH'(XjC[EVcm X<VA$|duunT\!YX2Ho>LZ\VaA>a!? }fQGGJ}I|B3w8:WM3aN4|ft"dV& 0-=+:\okH5"#" CNl4w/~3<`N?Q5ZhQlcmic'JC_R[ba[a`N|sM uh^@4%, -_+S2so%1.D Yk~sox|n:W E~D?m9C.BEkTNA&xFQ6;AxbTJ4(+(U' ]9=x/,10=JKRIQYiCjtXH M[R+B  )-0S*Q'WsH-  .Y{"YLq|MmLsXB Dq[\%.6(C Z\ar1~tC$)O3i9?HXrMt x%T<$VZK7 #b^!fkk?YKXgmG.r,z?6Pmt7W9!>lK \WV^%qEVA7iFWB~:8;DrZZsWn;E rMRWg%T}zbx]|h|*[F :[]oT`hV9$+"+=F"3. )*!;EX_kox JucH G%f)fuub<Bji~YEaX/F0D[]tD^=x>.yGga"j/%b[ `C6 k,6#b(DdgRu WBGKQ84C#[%~+1&!)*bnJ> #8\eK%>vgQ<4/"7H@? =3=Z'aqiU\#c.6u@d&^gkmor.u~yl{zX9ev8~uRX/f)lzMlkz(sK*?g]s(0OxNS$--#'"Qb#0,->JMD 7 /2;LK>nv.qi7_OHc"mv(E>$" -GohG} #=Z?@Z[4ws|dC%oc Xm'MP&kTK80Dgi.H )+Dh$kRQt54n fWB+ #K^G$&3#GQWsq $@[k"|smgVB@.$00GJC2{l^&B4 Wp"<94_skPxI[~V{UG~'y\\* )Y8"/Hbl [`[/q ,.3HmH3 .bcUPgY/U]XQJ9,[D &h \^x0N5Ru* >e#x0zIzd|czBs5sbu7vO>r s5{`4Sr=43nw)#;XqWmy|l~i$695;4+x45pH-/En\P<- |[P\$CS)R*0%S53A<%q7EdQhugNTE>2 ,hB4?<&1J Jx 6o5pAVFkTvqmI\M.WnKA5&Ia`V`u: "DU"v48V$ %8x1Z$:1"6Z@J;%\^,v ZO)Fe 8)kgBSWh.hy~q{skR)1}1_J?~"{i{[,nR4 "!M3 |:#IMdDEW9Co Ii3 0B\ai0HU{|eqW y 1c f"/@/R;\'u/6 !&)9%YidS@LRK{=J43%a Wz ]?|by N=xYJ@pM2a`A$ yBnqjd4\}G&|Z]:.8}2J;; 6V87).IP=#f./[ N~K 2TFOOB88;4=Z@kA;CHOG*_/C _xzkwLm2/<L[__oaYjmyhWGk:O sZA'-'v2lAA5. 95NG]ChLsFJj}$g H{bCFcwgC !$uSp* *Vm:VNWfU|EJ6Nygx}M7dkBK0V9PU6v-*P}&[hf@dkeem In 'R>3Z1t*#vJN.,2:^A[z{#  }ygf>D/,?+&A a&0~NnHz!D%M`50!^$"%)=oF;>,+LPs6p@Akb=7\h[I/Q=mGI2a/[vyS`BF0i>kiyNwZm&+,5Jh)66*%,/9@7ia1.l =Aw.fvk3k)a>.Zv%V bR.mXC4A0MIJr2 . Fe9vO"T;Wq$Yvga4|A*l: wx]MA-z F&).0/j*9"|@|vlW@62Z!JST!b:Vt[); OJ+:b&ZE?PA ,8OngbM6# %TEh%%8 <5#XZuG-i1 TM`SZBp_g]B0S(( >p-!Nj]%8w[-vA '<ZDDHX|vgb~bFbafnvcQ^ 1B]izV4  '6@DH>Vv W$;+-4,9#f92J\*h*f\_{wldY/Nl.2=uAf0VG@9u_QQ~RGUW#`wr@ ?d@lY\gg@ >MPw^/wQ!G7,~aRWu^b^JQ-Q`wec / 6S~``fFZF,smc}i|siu}Kaky+(i `w)8CJNXdbO6";|]"Atj1 uC"4MPC.6^wZ&4C`YF 1K6VVXjXr]me_rLx@mEY[U}k(~_G+;hZ~-`trt24)d9 KjWY5UR]|nSq-hXAzpggAo|yXK0Ii)CLJ%7 ,jnn/z0er^sO0(7^L"X` p"OtyV!mXHG<42.!^ 5^@)#'Ek1b|N!@"?^80C 7[PqMduGjGfN^FH')'L{|Y6 U& s_xKD8$^D+1HYgnOow&V+Q}(tHP3"e0."bII"[+mBxp3i\ENp <NI5mxEK rYZT6m'Y(W4BIT`n&]4}aI;d= ! 7mZtldI%(X~Aly#b1A82/2576/Z\0 +/k#`XDe4i`ao'jAdz/Q~ccaHY0P!5  AZJ#<b\Zl(Ilzub)-RbaXI=9;75}0y,*,0 2S/$ sr2@~>[:'/%k:]@5AT|erhUC8=9[jypgemsZQKGF DIVjx}[>& !4Tj|) (?@XoLxqcWK'<f&+TLtz(FEC.|F&iE*pPU/E9z~sts<S_`'Z+I*-~zut  "/R0c5cK}sS ">D?;qk%@2.!gF+ "0Npv<4j*<NaxsQ/{h%Q$<2:SxW"RaCW1BB.<$/n#AQF."S*"#ST(,HW[^ir}fG"2Lhy~s\@,,>^Eh/0/9+p";uv38l6 Ld9omz oiecbj)sug[U]2g&u*1 jEY%-Qy-MD_qcda9^vWT_Iovh$Iz( Syp?@s^l.w`eZk[Y`d^I!wrfyIf&L3#~9qKcY@j*x) FH]xy<wuX.(4m"%2r}_/9 yx{c\XMNYMR\o 8fh#:g\8:(.@E{&\2 R'B4tg)Bd 1Tn}Vi@>U T9 Y* cM4^dqD, T)7=>8[8t=Ur9FKKKG8" eKLM9zx$$"RuzJY#fL.AfG4/.) ; 2DVg=z\vy\I@8*\G>>LZ`[QE- !UgMSA& 7Xc!j.Lymuw^<Ih]l^V-_ar"I0h:z1%~&s8i[gc\H3&"'>Zt|ky> 40HR^caXJ;#GXLkm3EOzP&^c.Nn.Z}ieUOU?c6v'|hUQbzE8m#?[qr|tB[v*R)KTt?w1jL.q.yzY0 `O>)z& 7A@CCH/T[k 2QdaU!M+O1T1K-*1?Y)\Bq%PXOPsd]I- jyyw+jX@MR$bYdx_#kE?%m+5;?ESahaD&)B\kooa%F4)7+$'%>0TBicN7fwIj= C tR=8 -*H^x\'*:Oq i_[YX$TLPlHM~^u|h`agb\a3h{js }G5j4ft\yMeUNg/` : r+2ZZ+%`P) 2Z|RP&%gWQXk-\&BBXsIt4vb3ruZ`B4)wp m*bMPi7yFL zEl"8<1 tM0)? 6 nVNNH4&7?^auudVay   iBpvJE3 a/M`>>Tz$>NV]`f+wOcj_LB<?HTXM<54>JH;&dI<=GFSqZ^ZOD:2<#^Q!~FkH$6Z`4%R`J GIZz@0Pn0=HU_k} #25( qZF?=~?R>;9N xD{Ml?@r93_  3 Zx-SuO qDs,krR5"n -Om}+5yN$mbbnW?sI"\4}*Mcllhb`_YPC;:AKTS#F#,+AYr N1Mj !Uj)~7DN v@Z=o+\$J/-BT^esse_ezM 5e_-n4uOez )/##:l> X@Sd}U7"#6@2xHl1Y U&$1=RarMHKQi+&Y8{JVVNDFRg.Ytyn[,I>IMe]r#CB[bn}x{iQ<-j#- 'LXj< wZLcH(G@.xHc8;VRj#qux~waK=1(j~+vv~%]<aS# i7]{T  4RnnC z4zjS0^?0/Q32 Il&15%2=*G$A+ {xgy<$8GOJ#?DDeb~-r 5^~QrZ:^6 i V/$<!L(MTy0^"SL}+$vT=7;FV*hEqZqjk|gcaaeie^XS]qsTw*aG#rOw,g ^[TAZ-U:' fv@M_q %3}=tDqGzLSPD1 #.7+]%^%,1S@*]rzqdEW^httSk)\ I6$%?Zi(oK:} Hy<w0q';K]nvYA-#"K-=TtZ4ck'N;9O"\b`WHG4h;_$p0\f"N5 %8=0 >gE 7Yp|vcUvLiSaW\S^MfJmPuZ{swhP0=+!,PC^nvQzyyy*uUeqN*}[r7R 'X'Nfc5D/]4 (:V~z,`2k2r !(5EO[u%8 ONk.|hppz6GKPY0hG{WeqqdLi2I1X-sK$b.{;r^RAm.E wejjL+3q %473&  rQ(7>.P,]+k4yIt,dD}P;nrP'LqpI-ocR:6  1R =Zx|V1 5Rtq.`DRbJOe 7_(FZgcQ4=V%1e`5 25$ 09u;^??Og~~k\J5"Hcx|e7T9\m X"uF}j dl%y=a G~09>GH<5:EG@1( s WA/#+2>LPLB46Pl<v 0~X~u]6  vvrrOj.hxe;;a$*%Y"w$+:Nn<Wl}Z/hE~xumY?`">![xgQ@9;J*j<=--m7a~}kPW&C3$hR>- 2Rlw]SL @=-c~+Mww^F, _'kL5!$V".AR d.m^u~&BVfleSK<# RrW(@%, uM+  d+V5P5L8A=.CA:78:=@<,lN 8"}sqtJHayx%X5c}T/~^> |,h0H.377+|x}v?enN26mlD 0Tm{BpfA;eC9qt5KPhreH]'U.zIyX70WmZrlZQXdwoYDU*, z-d@aNxY[TCE0h!*?Z 9/ =/H7N.^{\-Y8# e?'T?o`L;!T,BlAeI?4X&[M;37$B7NTYyYNFL Y@e[{o~|xyxnldR^4N1 tTK"}i]]`\N>.2C.R+a-u-/36AAiO`w+>fU9t WwG {y&j6~L~eRMRV+i CwhhZB# u{[}:Y&2Hjzfa WKCBCEHJwKZK/TivO'$+3?LxPvMzB.|-6;7*|&d,R@LWPhZz`fjjh[LMb;j)tuj]MB99C_C(`P-iwmFACHS]`izl[NA$0,7IasvobWU_p}7i+m%)*0;DHj<N:;L]jWiaW|V(UH/gVKE=1,))) .8I`;W`]^|gopYx,`7A?2 )b8k% )(%Hb~M4Sg~p=spnkknmbPD}BuEdMTPIKK=T!i }0\;,=<@DDd6(!oK , uc]RFEwSYaDq?Mm0S},gGkvfXLJWfq#w.x:xE|T[M8'   wV<&oVA#?j G~qv8Vu}I H  @uHal'kHdc^s_{i{qzq|[2}vjqXC?#O kFyfTB+ +1;^IUg/d:h~wtpcTO\st\E4~Y 9-2(;1=;>K=]Hna~/dh@%:A~4a%D' '.|,g-U:GW1z 'Vz 2HRV\9`T\^R_DN+, k:  '*'1p8j1aXQS\k6S)h<sRsjok_SKGDBFJ@(sKso\VM?A&<<>=9;E9TTclox!).&| eYUUME946EQUXbjsQ~4 (*5^  --BLKkJ:M ,Ffv`Yh  =]F~q&Sswk~fze|W{@ua:X-N u[ZI0@>85?XfeaeryDp :VysU=+0@6vU3JEyL [&egV&OWg`8 ,AuQjU\SNXKjSbob(  1Xu(9Oj0X0tcErW+rW:`<#q8+<A>:/qqu}pT- "4Kas\2s\I9.8OZ[`m~$?[s}~?t|jZM*@_0!/OjdD,$v4ePZzUK:% :Wkrqjk7ilvW*f@xorl^uLCANc#8FX`7\aZ\ag>t+[ 7KTLqC<9,i.&5dQ#pW'Q{}I$  %B\vlL, 1FXejoCt}t5r`N>w0i%UB? Vmtz *NuO MD}ctzjZG1$=Zq~x rk _I4 bG9 .) !u}\G5&dD.#%5'H1T8^/gz/`#Nv&Jd!*.&Z0 i(B0': K_q[>,%*7JazxcIr3h$hmsxwjZ K 8 )xT- -+S:BFLU^j ##(3H^nw}*h;RSHuFLJ8  ! xji_; (Gc|j`][]j~Q}wU?2$BksaUMFA8j.G'+<T[h!w\6 %/?[~$Al]WwI>3) oXA!,Dp 8e]6 .W|  {tsvtsolcQPA>63#, $  'MrxcDEf+}zk(X;HM;h1+  4K#c;{Rg (Cf  {6XzPP1 xfVB19Zw r?Nf5'(3Hi}j`SC4=&Wp}dSLNe>a{!<^zu]PJD<::>ACB7$] @&a1\/*If{~xz$=c0DTaw0DSW R+FJ6i=j5Wv|_6 $?\[x@oB  w jS/ISt L#&=\{Fw'C`-2XMYVNMXexd N5>d2 v\F8.X,0+0 :@GShm{> nX~@b-K, 7T{2a>=M%HbtuJH!/I~`Konh^TKF?{0jWKMV`bAo&| gI*a;!)?QXUXA]h^dt$3BR a.rPgztdUJ?4&zjZI:4455/$&.568~7r:iFZMJR=c:5+),.28?FKMSd_;qz`KJ5|#8L+_Hnex{wmc_VJGu6! m4MK8Z*d+n,m.`+Q!9 FS) 2]8[{oet`fdXrJ4bTMGJOYi6KZ*a;`HYPNVDa0lmpP\6A$ 9b|fN8F%u )5BPas GtnG! BYbW>|b>-;DkPHd-|3Jl\Gq!w@qck[G+ -]Y5'BXkzpd]P2ymd^WTMFnD_GPS?`/r#  2EU.`CpWk}.Miz}kJ*  %7><X0ynK*)> SiyvpfhYFB'_;h"'g%~)e;TNL]Cs=>KR [5gb},WEvw<uw\O|NuSwW~ezvi\RKGGFCCB?8 /$)"&" u;d> cB ^6;]}';BPns >/Z<tGIC3@k  _6Gro:Ej}aC `D'g/g6 m[PHEL_s 9h(5BMU(_Bm]z{ :k}{zun`K<9@IK@537?mDUKAI4A#9 1.0<GO|TfTaNlM}H@3|kV>#| :uJ-q[ $8H_xn!7Lm`3t\8 f4tcRv?f.esscT-CF;_Fu\v ^9tt_]RIPBaJ~Veu:[|1No>c (=KSW[Z F* gJ.q _N@1#"&)"*%'+5<F#N2RANO;\!a^R@.Z7*@P_qytz4W8u~;qFa@S5?-&(Z6zy}`4,Gf &%" 6DUcrwzwQw'wtmihfh`N8$ynfglv$<U l|!-Ir~vrt2z@xZrxlfXLG9% &&4)?%A:2-.571$2Ocvn!S0 '6FxP<OG;(>a?)wbWT&Z,]3Z@PQcVHj1x'! (6EZp!5?;-oQ>;<5*zz_qEm/g%])R5MESU[bakhlirgt\qUcUY^SjRxOOYciggp 1[,M>hVhz(BSZ`as`H^\O6eB!mA ~iZYXJ=0$$ &*,2351'6FHLLzNfWPj@8312@R;jQhz % .!100<&;$paU> !,<HLNMJD ?#9'/,/ &sMn-N 1wlt(]7_6\9Z Ow"9ENQVnWJRK>(Y~,^B-3]x $6.B4H(NX]^O4 Y!wlBf gifcfp~0Le (Fb}ycK7*&''5%Q"iz *4 440" |odS;#vpv)) &2@Es=[,L>+  &!N &0G>oJOM1C]4m#u 5Xr|~iC~zukY=  U1'1@wBP?+9.y[H'@4BAGRKkIwDjAJG1P*R9SeV`io&Eh1FXjqkYA ]6rS:+$'0>O`m~)e/Pn"A]szmU9kHj&-sj9: fA) *%N5tCTh ~=f ?PXvq{k_WV_gj_d:\"TTUZ`n~ %)+/,Vy kT=pM,(@U[i?K. $8A*@BD\\ww~zphn~dUlN\II<:.1 7=EIOXeq{?c!7L^u!:DLef<nO1wQ/hO?.JlL73$=)K-d/{19BKXc1h\pm$/5) 0c ,U}eUfxlV@7:>/=W1v;JF1u \9%%'+8#=1294$tEzFp9 )Js>o >/uHXdi7mHoNfRU`JuPcx{ydn@[A'sE)v M5**IZ[[UC2|[k;F$)*j8P8=5'27 8 > Y 2f .I_ bem#w!!lvAEnVJ$=-04%:6$$4CR.lf/5cZbP1$@SD* widO{S#Kl? |m^B1: LQ'KENNWj_WF97Y)o_Tg!AAow%#(52%zgN5sjki\PB3/26?c"5@O+i+ kK$~hJ%RdZbtqdTE><2,'.;:WY{|Bp3UditbC.y i_akjdN/ %<Svl; xnS]w~mQ'Mz%FN'ds0W8p 5,UAp[w .=7+~v ~yU)w km~N1AD L7XJb`]E#o3h2Fh&U:'m /iWXYtCs?d,6+ ,Jm tT*>;J_o^z*}0=<="C:C>4/$ 36!3=.i& 6NS\`w[L]vT{{M%;Skwwz~lJ*  "1I1gZpwz9/V'/4/.A1Y+|&@LLKy]ac4H!gBz1@t9?Ul@K<&x}tx< ;c %mVJQi ,BTh|,5tLR_?j.}1%9b|?ywqvm@/7tXB-fQ6z?!qTxCv< h ,)2a6FH@-#)-5:%{W,f){XCr?gKk[pwqi[XT`2?7+2J,SAHQ0gzTESlunrv};oI(?VntqiNDLb ,Ax7geG~._Td~>RROQbog9zS%rp/Z757< Nkr\ W"k6Z.Ny,4%zmg._UPllS5 H!?T+gJwq"sESw6}_&J ~k^P=&wP,0A`}}vp7nr}Cz &.5|+;+,?I6(7<lWI6P)</FAES7T#G7.(6HV}WeW_PwKPY^]'cOjuk`O< ;K\gwQIc1[,eCv5AK[nGo:t5S1po%@DTo=^vs[5 ?%@{|nZC*AOWnn@!oO4#%1{9@GjR]s\K$  "8#C$E]w}Sj.]c }.0 nSL% 'F q4{ u7Wl:%"Lm|dE%tD$@w vA$D[gls~0[jw%+3F_z&rM6v]QTY`  n>"405tVEJbsyK0'  ,$>AAJ7M0V:XNS_Vm`zbVa )<JNH3sm\3tw]lS`PIP*S\no]= #Q}-\  <AQl{[\,Vi?ypsbq#nioxr`d7iIgjb)SE3_o{h!bNAp@SZK@Ic$r9|Vii_Q?#825E<wQp>bdC.~#"%9ML|FJU\O=:FYG4*   {7M(15,-|$<0mOOUee+REafQRA4" cNRSG!>/*(.0 7ENJGTomfa\^aa[OD 6,&/.}%/5Hh7Jsn^cr}~\,~tU5^0KSQMS`owcTUjw{rLggqtkZcJ?=") uX(B;*6&3Pm3MTa{ D~Cd|PhF-w cU}_?x$~t^|yW'8Hg $-=NGg??SkgN+kH3+'+=H88i8q    Bdz_Mc/L;@NSPaRGb=e*Q<:ABDP}\uWkIGBISYels?t.`&@%   'pP7Do.N,J+>4??O@h<;;8/#5Gb $+J<RFRHSQP`LvIA1nJ*j/79/$$*9FPSF+ 2Jfxz.IX[a]6ac ^SB&~q^C%|pcP<1/14_nz}~^F>:>`5'Kv kZW^h t&Db +Hzfsvo{iue{c^O;,.55/+*')1;@j@5= ;BQhy|2uIk kqog_EN , }y_oE_)N S]`aqp_K>9CTgzSD},;N k5_6OX__p6 &+2534+;!9/#(3*D+O]xa.8akI*)Hc~`5r [K<35aCBH-;( #),# &.05,:7=@ACCAHKGh?2'8$a6KTI)4\#).!);Ole1syl/tDwm`Ob<N(A:1)  W>4:,Z"y!  9Tu  8`%z6~EqLcKXFM9A#5 +# 0FX^]]cp{w*T.LpydRM.R>YNUWKV=R.MD5+('"|~#|.y3u2r-t)z'~$$ (6Mji|K-# 4;73,+6HP? !|.X3<9%E U_aZAoYD0}|Zg8G$ 4Mt0CXclty5^{%.4;qPOv<9:; 65-<&7"*&## 24"IsxdYV6NJCT8X9`ClJ{LRap~ovWsDw5(! v^<  'Ilung&XiC3*#? Vtb5 %8wMGfwhL|#jN-|c^hz\/[*GZgx0Nj'kO3$(s:lDiGbHSLAP3S/R1W7QDFQ3c#y  />HTdpvx{xnu_pVhYZaKk?|8>M\fl3nZeTC<;ANau$')-35650+/w7r2pt~{O)oI"_l68zaNGF^U7q=hybVPW{buAr7]y~wr>kcpxzuu{o]G) )8KpYZmSTTPNT\[PHB;(xkmv|zseXTrVOU0I6" >y0\wp#hOezo(NrxC(e@AMXflaZR#B0w\MB;21:F`O7V ohH)';Ur ,Je{u_J:984P'(0 57!:+@3O5X5W>IK4a w ;j~mW8 .yB}MK@0'$-;EFB7(z\<-(.BdpS=).@WuuWP[gjjn(q;xFH<+1K]ti?t xW4uM,w([,@)()%!#,vAOV+o?`| -q$f bk|+NyvfWB&@by~wZ@*(.r/Q'5$ )38/ & - 2 <DQe}`?+ *ClZSrB8.%#- @Vo'DZkpke_YNDEJNMJMSfprk_U$J';#, $3==747>[Ww$/;DQ\wa_XMGD5GT`isv\=&%$6CIItNUQ7UW`o&29:;l=JH+\wOfF$\>)|I "8VstM&!X~ +W>k +Be%+*(%#"$"{q p{0PmnN6!#1A F'A+7$- r[I7# 3X%u/=|QeeEy' 7JRM?1( qT1,Pxk^SH=:3$|U*]4x[9#;Z}Gp&)TA{]v   =Ublrv}uX9! !6K!`6yJ]hh^Q@|/k\LA?CHJB4$}tt^o?{/go_S!RI[iiz{T4 !R~~^6 yZ=wia\VuGr1toU<%   Ky8`+8@HP\ o*79+ )C`,~610=A=92.$xiS=$ *:AGR[aa`]vYgTOM6="0ShK7,Kbyulw^aMQ=E4D6H=TE_MnWzev.>C}?s5g*f!m"o*f0U1C/,$ |]B+sV9 ,@NYclv}z})Eb{skdYRT[bjs )Lx&=M[emt"+5;:- t$P'.' # Aby~ibjmtUz:xo ggkokcZTLA5){[< )?KXh~iL.zu~ ,Df;Ra*k=lKhTi\j^f^_\T^Cd-mtvvvuqk[F5-)$, :6'  ! % *84LGY]\tXNA3 /D]xvmc]`^O9%|q3hK\bOuKOV\_[PB.  cOIHO|Ta_Cf$fe\O<@'znkkhb [#T7LFGUEfG|HIKNUar 5J^s0Le{e@%  5Kbu (5=A?<5,#&))'(%wkTY9D--'- 7HXr0_$- /)' 7HTboy~~s~M{(vrqr{xj]OB7,'! nW>$ ui~jktVA)`>&D'l~ (3ENR`Xi^pepnhz^NC7-(+.38==4*#"(3BVmzl^Q.GW6t+ |kU|=r kaR=l E"$2747G\r &>Rgt~|&v8rGkIiA\-G-uR0}}v#p=lVliqz zi\VQNON ON1JQE{=5-+0<J [p"+6FYp"8QoqX=~X5   ( 2 .(&& ~cK6( o]VNLIJR_k}n_RJF~EnFVK:OQI=,?d*Lv(4I;w>>ACH O[iv}du?dVPLQV\\aW?W\ f v->M^q4EHC;5A/i)&p]sQdHYHMIAJ.D;+ 2Jp#/25D4L*Q\mzwfR=*taO?.}x{pjY[FS:W1^&^PD <9=I#W6ZBTGBD%;2)""(7Nm.CTXX:RgF;51+3'I%Zh ty~~~|ulbXOHEFMZf1jKbbUuF<;BJJFA@u?qBtE|NYdb[RHA|;~4) ! +4(8/?0B4F@<O4^.l,r*o+e)]$Z![\^`]UkFL71('2E`tgZG6$txIoaO@964m3H28CQ^cfEk-mz$7W$x]"3>B[KxOTbw"14+ oTC<621324@Xw{ka_!`Bg_v(j<TFAL<ZBpHC6&eBnL+ !2? G&K:NNTf[|emzwywfI+|g[Yo[Z\F]1c#ihd ky6rWeoU~D5'|v smaM4_;/9 C O2_Grb 5IPNH$>-,,**3?LV]_]ZXZn]`aYaU`T`Ue\mfwu )Jor^N(A0>4C/J,P.T0X1]/f0r+%!$))*(!xmebcgqhJ/}~vkZD' xnhgih]pFX,@. -Fd$@/\Vszummx~eE'0uBXRC_4j+s&'.8ALX`gow|"/30' xlc_]^f0lPqqroh`/ZjRJ9  `>uI$iWLC<Yp} |(}F~fypjfceh*m@k[dwZRLIHID6"~\7o[MHItLdQVUKWBWA\ChHvWm<Xy%(25BBLKSXVfVrW}W}SxHq5s|xdQ=& !+{2k2_-W&PB-vlc^_]Q;jS? .$?]Di&/10,% %4DXjty~|cRF;-   2Ndw{iWB( +Ek%+06AN)Z5c<e:`5Z5T5R7S5S6O4E(;-pX7 fE%Ek  );LX]v`heXkAlgZF0|jT? ,! "C0hHcz!1Fa~zp` M8( 1Ki!3CScs  "*$/2462(tR7yma}X{QzN{OwMoGb>T7J-GE A:0("%1|:q=e@X?O7L(PZhv1H]higkolgceks-Nf u}-:E}N{Q}SSPC5(~dF& tS5~ {xtl`"X$S#P!S$Z/gHth .Ic} %Iq5Tu "047?IVds{|wocTA.yN$xXJ0V%W2fJ) 0CWn %Gs1Su  $(2CH]\sda\_fmv~|uto_hK^1SB) g{Aa"L =2/ 06+<>APC]DgHqN{WalvBj1K)cMwpxndZK;.)).350'  !,<NYZqS_GX2SMG<' ^<U!tf_`bbehfglwrmz`N:*  (9Nd 4a|v)k>]WPsD=<976/#$=[vq`QA3#{qjlv #?Yo-~D^1[~{qcVNKIHHyH]GCF-D@4$uN%u[2INDhGJSbshG)m UF@?AaC5E HFC@>w4UNiiw~ 4)E@PWUqY`fhcVF 8 -%!yPX'2mHr"EsVB:;y;k<^AVKU[_ikuu~ $ :Qfx|k>WdD2! (=Un@d sT:w%eO =+jJ+~~ !8Rj)I f(4;CO_o  q`N9p\H7+#"%(&!&/2.#uY?# "?uagZNF;0% #'.7GX&k8xH~Xio^L@:50.'   2)H1[8p><:83*!   teWLE}HxKxO{R~TVUTZ`a`^afny ~n*Y3F59618,;":7;>BFJIuAU30$=^$5ES-\Ef_o~tvvuxpYB $%,g45;@CBO<6. lbahv/:EUgu|gWKD@BLZelt~rg]X URT&`3wBXn~ Gj %'85LE`Vzdmtz~zkN+jE!bD)~hN5fK (h ; raWX^clz*?Uj &CaxB#g9GS`q,OkzhP6  k W H < -rNv-d TD6.{-X-4-,/24.$ 3Rp",3:CPZhu~$)/;M`w?e%B)^Pvkwupmnnpt{}nV>#W!~]X1 n@sR2,ANXgw5Pdu0AP_oz 0@N\m{mZB*qM*wf][j]J_.__^\YUND7+& (,4E"W0d?oN^q?Zq)7DS cpz$s&f)X,Q+O&V#a&u+0=JRNID?6*  x"K((+)wO)hLt.^I9+~yz$,110/1,8@?WHnLPUUQG*>I;f5*#"! #'*0>Riv_J=-0["(6BMTSM B7!*-#9HYlxzwm]rHX3<mZ~MmCb>[AVCPAMBJJMSV[gezq *Fay !(,*'"qC"0AN^eqVNMTbow.;FJM+K8FCAK<T0XXO@,c8dAydP=,  $/6=FJI2JORmY\[RD,0E]u ,CYn )8+<CA]IrQU[aaVG2p\J<.! ym_QD6# {{s[I=726=DHD=2% ,E_v3N.e:|COZfmqmaO0>L-n pF)+)!VrU;%wf(O.26CRf~- >GJGC=:":$B!KPQSZgx <] 1$H9`Rwn &:FKJJ_A95# Xn1: c3xrrux~ !)38HFZTfapkvqvsprgq`rXuP}D=>H|Rudojikpni-bA\]SKGD> 5&*:Ph{}q_BuaL:R%( zx}z~}):L]s *-**06>F JJ2JGM^Tvg.9,F7Q>\@f=q4z,#~rnkodtGw)m \A jL,iArT;$ +;N`t  6Ww }!}2|D~^|}|"09=BF H'D>ETOfbwt~}pdX?;v~ST2+zj_XY`iv%Eb6|Qm ,7?JVfru]N;'!5HZeknmfbhuv{ckNS=7,pb_f`Ic,l }kU@9)Tl%=Tiw`F2(Nj +$4==RI_]gvhgdhp|#(./o"b RF<-s`P@k3Z,M,F1A:=E8S1a+l,y)&1EXivcH,Y7!)29Ja}2Li 2ASbsczCzunkjYi*hfedexiTn9y#q"l1o={IRVRMLNZ2iKxcz~rdUF:2,*+,-/28%>-G2N7K?CC8K1S/\6`Kgfq +4>zAxC{>z6t'iYC(vpl]gOaGWBG=14% tjf%hAlZmqpv.Ev[hnWF3!2J\p-sCgZZtTNG=21EXkl[G-| bH1 bJ8( xcPA>@FHJNU]+i:zFSet}$.6;>:/#<\0=FPXaq ,<Pfw  z[w7N poHS<. iE1 &!$ #(3?IQ_p#C]rqaQ.B;4K*[#kz)39; <6;F5V0f*q'u&x(}-5;=BGLPU\'_-a*dpvxrjXE{4^&G4 ! |qg_XoSiQhSiOhKeF`DX@V>[?eCuEM]t /K_jni`YT OH&D1D;BIEVGcNjWqdsqp{jipv{}|rbWSMHIJJLVdpn_U~Jq=g(^VNH@4%fK4 !&$ |&q>gZav^afnv||zv%q/h5[7M9A742$*! $- 5@+Q:gELNQTTN)G<CN@b@vDKPRW[eo z q]F0yZ6o\QQZj~vsx$2APbs&6EQVRG?4# tdVH8(,<IS_jx 2Pk|zxadKP;3.$vR0(;Paovz~|o[B-"-;K]o|k!\0M?CKC\HrMSV^ht8K\fnv|ulfaa_ZPEk;U6?1,,))+-4;AJWabx\iO[=N'G @??EQ]l{2W.DT[ZXWSM D)@C:_<|??;/15% Y$yfcOB2! ~y|yxy 5DVi} 4Zk\B.#$/=Rr  (8Jb  !%*-371 |EwO) s@kUH>;EN[i+3',J#g$~*362+$# 2a !6;?HMB7B\}fL4  sbI)lM0   "$ ! Eft uw(--2<JXanw+xU]{MOe{ydR A %"rS1w\SPD/  ,>Ph-a4ZmttodSGwDbMK`2u{yqph\z\qfpoqqmwjp~}ztv~tV1zsgQ7( !'8%JC[dgpqrz}q~+:C@3u"YM?*#;NUP&;1;A?80  +=L[j|{`7&0BMRQI=314:>ABDFB7$ !M|vbE&$<JD84{6h;TH?V-](Z(J*9'.$/"9$;**.5@0JORiY{`hnwm9 wlhhx%C\u"-48=BELT0`Qm\yZzOt>l"`N5xZ>~'wkZT[XB9lD[WNfFl@i>i?y=64Z+fieg]SH@73;MYZTA.({nkueL2 &DhFq;P`q{yqf\X{X[acbabdggaVD.]q@`4X3Q7I4@*=Z<L); # spu.0-A!IS]cegn)v0{#wp|u_?!+{EvbokfvYuPlIqDeCKC=B.=3.+,A,M(I$8%(*/7I_u90 #"*FkzlN(# /7@Ur" iP5"  3>@9.$z}3Ocs&$$:WxmQ-|xneeJZ1X!fx }vpg`]bZfGC<'N fy}#8JYfu 0AHFFTw)", B Xl|bD%f2!KNw%^> % %1?<'!',Fo#4BMQV` n,xImsie^]nnU@+{fH. ~n_PB;:i9M9/98;@DFIIHGD?94, (D&R$Q!a~u m#s#|~8Uu&qAM]$v!")M4YxxsbE+nG#~@!,?A @,M1X6V<O:_6k5f=TEUK\OZWVemoqnmr4}HGBPV@+,40+:Xd[+R:VHZYQbK_LRBD-94110) W)y`C&zo*]5^8^9CA&F:1%A[}  ' At%A^}Cf)x+f-E3.:<:T0O/  '# hC 27:HM;$~~ 0?O[aadnwy~x} ,St~qhnyqimmS* |o^H1 *:<Kiv}grZcZU\MJF694"> ;*|WH=-(Hs!1G^r!#3J(K:?C/G!JPW\!cmw ~wtpdTF;-.DMU g*7;4' vp1j>YKD\8r7?QZS4 nNBLVG+zaVN?,&Z)*%',('-38-rVA 1 4Qy +=RqzS!%>[y}rmjaS|Fj7I!' /`xkly~  '/1)2 Y%/=OZ^%`0e/f'd(Y5S?Q<P6P3U-cs~^0qU4}lZPJA2"!1U~o_K-)R~1X~ cH3+F TZ^aeZh7e,a0b8dA_MPRAQ:M1T#mx,j5d,\SLF*E1?);=DNXfv5Og~7W} !*"~mP,{eR=d)V^hhhh`PIQ]b]YPHBCPd|ybVRD+ 5q_c_clqu} (Hhz)<Ocz #493)e!M7+ )'!%( p _I#0#)6i3W E :- gWZs!+<L]p /Kb-f5\;Q@:G)LZ#o*$0a=C?);?SmqnpftS^<I9-)*}.Q207)<4EBRO_[hfpkzf~b{`s`lijgbYW_ios{&()>A;8 .)Fdg4jVv1D\u{W6iAtcRA/ ~ 8mQZgR`wwfO4$%$ r U >- 0Usv!q"z')! |p3iBg;e%^M#9+(-5J_ gks(y2z@wUyj k,Z7WB]JdSc`Up7} "6@oAhAsGPW]^YL<* '8D{Qc^SkGo=n,r~}~tO1 V$;47?=F?J9I/="1)'(+ 2:A0@999-=GPV_mtuzufaxepec^U[NeMyQVY_h"ry~ 'Els_MB<65792'~%,358BRff~@! GyxWE<NVejmyf\_gu|p`L1 q[,AN&v  !&-26::B?I?L2NW`ca_bgkjcXNHp>F/ uU7ygUC6) $5:88Jm  -A JP&U9[Meaxv"(%#6OesykcVJ@6)!.9?<,yi WA+'@Ul~~taC!"- 8?BERey   wptlUn>t-|!gE( |nX @ +:Rbp}3X%K n + F[f hd \QC40(;80,5CQbvd@ *?L{XhyxT/  3GV_eqhdiVcC_(_dlrx||xroqty~wsnot{~zdF/"u_D$mP<'*6EYr $#"#%(/6>IZn(6><)1E%`y(7@ISZbqtV2 xl0_?OIAN6I266<CIOU_pfG0 :Qcrtpwvd \`gmojgis|{z~y]F-'@Tac\OA4q$bP=% ~|yow`yYy[zf}oqomjgk!zCg@|bwnbWL>46@Qet} (LykY;8^r[E4!}wsk[K7$!1BTxmng_Q?2% q9TY;x% (-.(ti`VI ;1#-*0%< Mcu 'BWhxh"=>]}yaM> 1$  1KhveSF> : 6*#"',,#&-8EOVXSH?93/058;>}DfPQ_=n0z-}4}A}M}Wbo~ycL2#6CII@1" ywxwtplgd dhk lno(t4}<>CNRNF =4)#5 @LU^is|qhfe^WTSUW_hms}n[C*?e{sooqu{}wv{yrpoole_][UK<'~i_#X.M:G?NARBUD\GdJiJ_ITGNCM:N*R\ isv{urtw}spt|zst~,>MV\h~&5FVf{sytgXI7'!-4+574;3<4:99=5A*FK LOV^fjmi{H!kD&rdVJ: /CWi| $*)!} { gYUX+\6aBfQp`}o}}oT<2Y qlWC3}"iTA/! (7GXi{3Lcz%8K\m~{ son!n/mChX]tK4 v'O$(uf[URRUUR|ItBl?h@^ALC3EE AAIZoykXKD=6 1 -  ! 0 =K TZ^$c4fNjkntuwvq}hZG)wh]TNJHEB@A?:65457=,>5C<JENMOOMJQ>W0`o2Nk4Mc x)BWgu}kU:-:FI@.[8|o_TNNNJ?+oM&uaVX f"4ALS]h's?{Tj}tcO9 !%?Yo~m[zSkOYIF=71)'   !.@Q^eg ec)b1c/d*d'd%f$k x v0nGl_o|z#/5:@/IBOQObJw<(s$a.P4D5@5A;?D8M3Q1R0N/D163*2 -&!!$*266/)'%#v"`"D%!(+-,'ytqhXB' &+/,& ",;KxWi^]aQaFZ:P.D':$3%.)-/185C@NPTeU|W]aciv    (+9=MNbbxwvl^L5 2GXcipyh=_; 4Lh|g Q90=HOQJo=W/>!"~cOAC"E'@.55)?H RZdjqzV+_9'?Uhz?(m:HS[\ ["U9KQ:f'puwtommmhn\NM.9"  "7@@90#pZE8.# ':L\"lAz_u8QjzgRA-iTA6"0&0&2#6&<,H/P1U/\(dlr~W5 )02k.G,/0466432-3I6_=pA|@;0" &,*$$+5FXfnqmdzYwOyIzEFHKKMTZ"a,j1p2p-j c^XTLC:3,%"&,/233/& 7Oalsz"1;=8, gL0_5 /<GLOUWUSSQO:P\ONNPMG<. m]O> .   (6H]v%+-1$98FOQeZzahiihe _UA& {ocYLEA@?9 +)17:?EmLZTIb9q0'"  !#8Og3_O-ew^?({qdU,HJ>g0|nXB 0# ()$  }}|~".=Oi (P(r5AGGC=5.(#)!3<G WhrqnhbY RNHA8-#$:QbjtM1{lU;"  ~k U!<7!N e~rB2Nh|.@LUeaGq,o]L ;.'8?DC=61,#  *8F#R&]"ky &1@N[jv ")3=ELNLH>0+?Vo}k\PE <!28%KZems|~y{tstgvZzG* f>`9';N`qqaVLE?<:9:?~FuMtWzahny -6:@FNW_dd_UK&?*01#55 0*% )9!J-[:nETcr*3?PewyjYF|3v$ohc[H2 lE%+28@HqPVW9\_flrssmeZK8" #;Snzm_TJ ?867%7*41482<2=5::7A3E-F'IR]eo|"5FRX]`dmxypgXD- {7Vs1Ol  $2 DS]chmvuT/ jBmVA 3! w_H6 *", 7BUrs\D+{i\UUY`fp},S|6Tt'*&y~poga`S[FU8M'GEHMV^jx #?\t8vNhcVyD5&"2BZt]6"GjxX87NbppTu:w#x sjb[TL@}.} &rFckTC/'3?JTgZJZ4XVQLJID=72-$|}#Fl/Ic{j|XpFh6e(c]THA=<:63," &Gn!"#! 4Tw HjoYD4&uP%.9 L[frzbI/ 1AO^jr~~m]N@3*&''),02578<DJMXeu{^A$ |!i&X)I)A(<&:%9!9:?JVbu "'.3410*|rj`XOFA@>72(1>4P;_HlXukz~z.uIoaj}bZG-(>O_lyzgZT{SwTrWd\Oc5rf K.#&$  nL- &E b~+<N_q~/K_wmoxeVG9, s dVLEA=80&!Ce iL.wi]SI<|(cSJFBELS\enu.yD}^x-Tx&,J/r11,'  uV7wY;(6@JNQUY]waedUgGk;n-nkf^ P?.! #%&'&%*9L`vpaSIB<5.&& Hh &/7?GOXfyq]F&*9 Oi*21-'! ~qdZVW]flmpiabSWJPEMAL<I2G'GH HO]n} s'iE`hYRKC 94/Z)~&')+/6?HPZdrtS+(;Ms[Uc2ec^ZXlYJZ([YVQH>j2^*\%Z#Y YXXbs "(+, -,-R-t.-) -t=]FJK:T&dx?d{'r\jeddd1eJcZ]dRlEo3olgb]SEz4m"bVE3"xg[SOMKFDCFI'N=QYQuNKIJNS=U]U{QH7%.Lh{wgXH:-! q ^J0'3>M^tjVC3 !&AZo~aE3'|ukbYRMC7(4Oi|x4vGtUq`oklue\SJC=94/,*)x(o,d4W>GJ4Z!m$6FRZ_dku}wtqojb[X\cm}|vqlf]R IBDfB?;50)%#+"B]t  vaN8gJ+ hO2}ukeeiq|&3< @@&A=CW?q9~.#l\OG#@'9'5 0)! !,)64<A>R9h336850%3P k ~ubPA1" 1BQc&s5DScsxngc!c)a3[<SAJ?A>7:04,.*,-&2;AFLSYcp}~hO6! }mz[ZF@2) zvsomigeb0_H\hXUPKGEF*H>NOT_Zq^a`\UOIFIvPjT[VLX<Z.^eo {$C~by|wx}{qea`^YTW\^^_r^bZPT:R%QRZh{'?Vj~(C\p (6?EJPV]el~qjqYqLs?r0ux }gP5tPw5k#_UMJKOOOLLNQSURJ@0 -BT_k~lO7# "&-9I[fmrwwuqppmf\V3MKDc;|2& /KcyreWNC7+ yk[L?73257<+B;GQKhQ~UVWYWOG ?$6;.T&l 4GT`irusmeVE;0! (9K\nzoYD/}sf[kRXM@J*D= 70*&()*,,%%@\t &9IwXihWwB-~ |vlcZPC93*!0 =O_s )2:@GMSVTMCv8d-U#H9, &$ #,=Sgy  0Ha$v2>GMQSTTOGB @ABD FD@=855;AEHKQY`cc^xUiJZ=Q4J-C,>.:136'8; ?DIKHD=3+# $(,.-)%  #%~%{!}~ !$#  u^F6/,/17>DGFHHIMT]gv/ER_krv{  *5?GOU\htx`K:,""$q _P B7.'%%$  ,:EUahmqvxwsqqtrnf[~PE9/'$&*-.,)"7FUfwvyckSWDE53$ ~ %.9K~d|z{} 0M`r&=yRkd^rM>2*# vhVA-     &.45106@JUcp{zyptep]lXjTeXb_`j`x^[YY\[VNF ?60,; CIPWbnx}}kW~B|*wpfXI<-   '9K]o*5>FMYix} ytnc WI;/' #}"qg[ PLQZew(279850 .*&  %,.*((+3?N[hx&3<DMZhszu{j}a|R|;zxuplfby^bUGJ.=0$ #4E[s"$*39>M_ mzym\LA=;:;CK#M(F(<&0$!     :Rdn sspke^SF 8-$   %-*264D4R1\)c"hkmmp pnie`ZVP}JhBU9A/-$  !2G^v $0=L!X"`"g!t #(.34/(   #*09BKPPMjGS?793.&"  o_OA60027>O|bsqj`ZURSW`f lp6qIrWu`ygbRA2%-CWfpv{!)0=~Lz]tljz`XOB0ubN5y m^N;) ,C^{-@O_o~ {xup%q+{28>DMXaiq{w{cqTjId@c5b(_] XM@4,&#p]MD><89CTi~':JZk{vmd\|SjHT>A500%+()'$#$(1;IYk|"%%"->L W_cggec^WQLLjNRN. "5H[iv~reUB1# %+04689:7.}"zxvtvwvqokfe_WMtGbBS>G>=@4D,H(N*U0_6g>oH}T_ky+=LU]a\URQPR V0Y>XGWKWPWUT]NeGn?u6,   rgZPD8+  !/9AFJNSXdrvmdVF6)   ypg]RHC<0$&.3}7x@vLuXxgzv|zvsqtvy}#*.4;?@@>97887679=AD*G5G?IFFP@\;i8v68?EMQSNE>}9t6h2]/T.M*F$C?==;9 873.(  *9I\l|vgVE9/& "+39=?@BDGMSZcjopng[M<* |z{ )<L[hq {|wo%g(^-R1H4C6C8D8I<PCTKSQPOIMAH9E0G&NYbgil ln$u2:@CD@?BDC?82,% vj_SI<-  %)(" ~~}}z xy|   "# '(( & %$$  #)/11//149=@@>:9768?FKQX_h qy~#'*,148;=?|AmE_GQJCL6K*N RUTOJD?=:72-'!{z{}  #( '&#!   #(-20$++&/!01/123 4458:>DJMPQRTTQLE>6.$ ~"}(19DO\is|xohed da]ZYUN D<4($08;:::<<7|-wnic\SKEGOYagjklpw $.5 >%G'P)V,^.d-m*y)'$|yxxxyyxsqqvyzy w q lfb`$^*Z1S:GG8T']` a^XQLIF@6*  r f ^ \ZZ_diov { -9EMTZ]]^^`ekooj bXOE:-%2=GNSRKB7-&! !&+05=EMSZ`flruxy|}vngc+^<\JXVO`Di;r/|$ }vpjc\VOHB<86689;=<;88889:<>?ACE|EvDm?d8[.T#QP SUX]dlx}vqqv|  $ .:FNUY_djr}~{tmgaZVT|P|JE@>:9::7532/- -0$142I1_.q*$$(.15:xBsGsJvLwLzIyBz=}:7520..058763/+&{ m^I2zpsj^hIk4p#rro m h ` YRJ*E;BQ@d?vABDHOV\cjpw   % 5BMS%V-X1]4c4k1u+" ~{xw~stmkcgWcK_?_5`,a$go} "7Las '/48@JT]acefeefhiklkllmlmmke]RG;/$ qX=# vaI4 saQB4* .ATds)4?FKPXet  #*-84D;M@T?Y;a6l2w+" yk_VMD?9 3.((/5;>BA;4.'"%-8EQ]fmx *4<BHOXdvq|ZsAe'SF<3,&  p^SNOT]hp{qhq_m_ighnjoqk{cZNB7.%#'/7AD=+(7CM]s"+-)  "7M^fkmpoib__^ajuvfWKA2$ "'.(8:@KBU=[6^1b.h2m=rIvRwUrUmUh]ci]tVvQqObKSHCE7C1>/7.111562?(K#X#f"qx %*)'')-1w0_,I+5.$3;DMPRVZWOHz;p$gaZUOLKMT\gq~umijiglx  ~yqnrv| ,00.+! '7 EPYadegilouy~~ ".3339<CO\gnwww{}o~^wNm@b1P!@ 3% }maYSLFEA:8>A?;@JI>+ym]H2 "1D[n}"5HWaipx '"$/5558>A?<> JQRQR Wdry||}squi`_NS8E"3 *'&! q[@%zyvmcTF=9 30%91B=DML_Zuu #>T*d7j=k?kBpKuUx`vgslsjv_|XU}TuMrDm7k-p#xz{ ~ |leji_O?1$kXE4,,)$$,14A[J]Ul_kyzaNLTao{ .9>CQdot*{<LYk|kZQJC8+|m`Y[bd]RB2#!,660($# x qopop qr#o/k9iFiTmfr}x~-9@BBBGNUW|R_J<>0$zjVJHKRWRG|@m8b8]FXXTeSkeoqv )6 CUox`O@) /Lev|yootuzsdP;& {jXLLVgv~}teZRPoPaU_`hlsryvxuv{",8ER Y^c&g1k:j@jCcCUAED7K%R Y^cfjqsV|E9,~)r-a1U4O3Q2Y3e5m$~rgjReD_{;p=n?oCnGeH[FRBM>D=D:R6].Y LC? <=Q#e'j+\0U:YH_^^v\eorpv;Wcb[N<",9$> @ISV Y g{  {wogfgd]SH5 &=Ugu{ th_ \_fmroi_]`cfotsokk)k+h&d)b2a1Z+R,J6C?=C9O8e:x;97541,%{ e\[SGBCn=_(QF@CHLPU\dkusc|VUYXOJRdu&4>DO\kwwn^J2x kd `ZRPQ%R2TB^HnF{BBB>:5.$7FWepsvyvx")% 3@ IVgqomnmcXwUc]QdDm?u={;q7e0]%\K 2wmfa`ckt{zundZQF;.{%z%,358?IVf| 4J$Z1jDuT}^ep|yr~c{Ov8s$su y|yqjgaXRuSeRUFE77201/)0 6"@-K-S$Zc!hls })?Wm}"$&.6427DMT^ipwqisYuJn6_PKD:5B}Ud_M^>Y.W#P@-  $-p5`APS@d7s9ADJTbo *18BNXc#p2|FYfmv}ztcUKA8/+)"q knmjkusdWG5&}k`TF;0 @Zmuf` _-aI__[o[cgefr %-3;CC;0% #+,&$%&(/r7\9E8,=C@5.,'oXB.zvkYKD@=AKTZdmq+yFg( =#B4?>AIKVVeXvSPQM?+ m]M>,vld]^)f-o0x8~AHP{]xr}}sdWOHC<763*#+'&297.&  }ri_UJ@:982.1x(~#4G]oy 3DUfsz){<}KQSwViZX]Kd@p/} yl`XW`nwxywqmgbeksz{qaQD;+ 4HSXg|  qZG 6%  *3;BEDFHIA85:=8-y lgiopnlmjnNn.qz  $"?6[HsXfy  %/575/.4?wE_FGG.LQYcmw~yld]TG;0($*8M_jopni}`l_]iNzA1" &,6AHJQb| (r3aBOO@S-T[lzzmxaoVeP[JOBF8=3,49?ELSWwUaNHG.@= 99=GOW_kx"19>@GScv1J`r|{y| !+r3e<[EOJ@I6J-S)`!p{ wtrl_N:*6N\[UONNOONHB?BKYgr|xl^QE;8871-06;%A1J7S<S@IB9I)Zn qod\\IV5RPNF<4.+.7sGaUSaIk>y8?IQSSUY_fo{'8FQY`glh\QI@5-!-'0(--#362 -,+,.16:@CC?81-++*)().2/(  + ;GMQTVXZ^_a_\WWZesukdabb`[VRPK C;%41+C#Vgt }p]J5 {tsv}{vkchs%2;AGLPS U VZ\ZTNNQQOKE>70+,-,'" !6Ng}~}}tgWKGEEGR\_]\YVPH#A5=D6P.Z&cjkihjid\[^epoa|SFCFMUanywcO>/!{uu y} '*-.-' &>Uiwqg^zUeQSNEM=L8I3M,\o  ! "#%"0@Sb iklmlmqx}yqi`XOC2 $/:I\qu+c8UBHH9K*KIINU]gk~htdndggehlfv_SF:1*%&&%!zne dhntx|}{| (5A"N(Z0e;oEvK~KF9*ujudk^dTaIc=b3b-`*c*i&u  &9ACB@>9 6530)!%-3899>FOWz^ueqmnumosuyz|}kR6   {tst{ (D_x ueTA2*&$# #+3:AHOWdotodUB0  ,|<yGzK}NSW]hz y fO?3'     $&'!~zxy{ 5J_u ubTG8(,#@+L4Q;NCIIDN?Q>O>M?G?>92+& #0:CIPUZ]ba\WR NH@#8#.$$ &,0.)!!3DT`joswrcqQmBe3X#KD>50/2430 ,(-#AVl ,<IYg vypoqvy~qbSE;3+ !")-3<FJMQZafjicYOIHEC@;1% } %-11-. 7AD!B&:(.' $ kZOKG@;8(:2?:E?MAVB_Bg?o8x32457994-%   ! -6:80& &0 :GVhx%%sj`W ND9$/2'D!S_ny  yuoh]O=)zohd^TG<769>?@CLXj &,+&!   "'+.28>DIOUY^_]ZZ [[ZWRLF=4( %-49<=> >=="B$G)M0O<UI[Waaekhskxjzex`sZoVjTgRdPaJ]?X6R-N$JA7,! }}~  /;ENV(^/g2p/x*).}4u8k>^AR<G4=.1,'/23 58:740*&#$)/v4g7[9W<W?\?`;c4d,d%hny /@PZd n{&06=EMT[tajdcg_lXsQvJx?x2x#wwx{|~}ys~mqhhde_e\gXjSoLsDzA~==>?@@=82,)'# &/):3I=XGeQlXqWrTsLvE{<3+$!yq g \ P C 5$ !'+,02/(!  $~.8?FLRTTTUWY[_]WVXZZWRKFEEEC?7+  2ALRVZ\_djs{~}{yustspjc\WTSQMF>5*    #(,.-+)'&% &-01/./34 41-(!'#(&+&*%%#   *?Vn|o^N<z&w slf`[VSTW_k|*7BNX_dgjnrx|~}xof]VNH@8/'$%*/ 011257&8-<2A6F8K;O=S<V:X2W+U#U\elqsrkaTH;0&  +6BMSWWWVTRO*J;CH:O6U1^+j#w|r|ij_[UNM?D)>:51/015ADHMU_ly*3=HQ\gr{  &.|4t;l?d>\8Q/F&<4-$umyiviunwy} #7!G.S;WHXVZe^rdzl|v{~vpkig{br[lReGa;\/U%H:+~|}!&*18<|=y:t4r'oorw|{||zrh_ZUSV[`dehjlpu{ -8@D DA#=08=1J(Xgx !,5=EMSzXsZk]__Q^BZ2T$J> *q]LB@CKXi{   ,$>$N![djkhge"a%Y#N?/  !+4999:;<>BEC;1' 8M`o|#',3:@DA:3/.1363-%uaM9%*6<#A)?-;1766;9><>A>E=H;J<G>>?7>,; 5*   )2; BGKMNKIE@<94.%  ".<IQVVxSpNiJfIfIhHjEl<o/sw {!1>HUblqt"y2}?IRZchkhtec`P[<W'UUWVVVTQLII}K{N}U_iry~|wu t q0o=oJoXpetsy|}xqufg\XQJG<=,2% |tnmox  '0 49:9658?GPUVSOJD=5.#  !'(&"! !)/479::;9740.' ~xqkfdcgnt}.CY o%,147>FIHD=5,"y rle\N?.    )05: ? E IJIFBA@CHKNNIA95553*  +;K\l{zobRA2!vcP@3&  0E^u-!@9NNX`^n`|`\XTQLC8.# kXG8,"        "1CXm &*x-e0Q.<-(,*(#re[MB7-%#(18=?@@?@DH"O'V,]-b,d-e0e3e3d1d.i'o"z #'((+ .6=AB A*?4<@<K=T?Z@`AhAq@{=:72.*% xiYK;/&    &4BRf}'6CNUYYXUPJA91% gM2unjmrw{ (2;ACGIJID=7200,'"p_ M;*  2Ha w!+4<B G"L9QNV^XnW}RLA5&|vpg`ZTNIC;2*!  %,39=@CFHHGB=73.,-1320.-+,.38:>DNYfr{~~zsg[PG=7.)$     $/9A}IlM\PPQEO:H2>,1)'& #%'* ,-0029AJV_ i q} +7E!Q%\+e.q0z13444/%} ukaXPLG@;63/,*((&&+1 9DP[djn sw!z*|1z4u3l.d+a'` `^[SJA7+ /H _r  | j S 8tmhggiihfcdhm!r,w6z?}D}FyFuCs@q;m5j,d\SJC:2,%'4E[r)$9*I.Y2j6{;AIPUVSOJD=72,% }qcP;%~~)=Rd pv!u,q5j8b9Z5R2L.H)G%H!IHGA<2$ ""$*.012/*y&n"d Z RLJH FC?;851-,,06@LXeu+7AI&Q;YO`dfxjnqv}~w lbYO @1" wmcWI8( *9F NV[`dgiigecc b a \RE4$ {uuvxyw rmjgea ] X R L H G KRZbg i%j*j+k+n)o)s)y*-/124458>FN4SLUeT~TTUTVY\]YTME<50.)# |obSF:- 5H[jw~ul_PA1$!.<IRX]dmuz~}|zwtqme[QI?:52.&  %.8"C&M(X,^/d3f4i5j5l3n/q'suu vwyxuqkd]ZZZ]``]VMD8,   "$&&%%" '.037<@DGHGFFGJOVYZWRKE?92)   $.7AKSW[`cfimnopnje`ZRH@6.)(((($ |xusrsuwz~ )6AO"_"p  vi[P H@6-  ").0/,(" vngb\WTTUY^dlz.ATbnw|&/5652/,x)o&c"UKD@: 3 - ( #  '1:BHLLIB>>A}DsFfFXEJ?>740-''%%%'-7BLT_l{!(.29=BHLTT]Yd[g\h\dZaY`U\TYTSSNQGMBJ?F;B8?5=2=1>/=,:*6)1%- *('$  #(,.-/0/,%ulbZRLKJHHHG HLVfy(3>IR[ahq z s`M<,  !-:FNpSdW\ZV^TbWfZi_hbdd]fTfMgFiBm@t<y6y.w#rn khfa^\]^afnv~%/9D OX'`7fFiVkblmkrgxc{\{UxMvEv>u8r1m)e\TKE=3( " +(2.:5A9F:I:L9N7N4L.J)C&:"0 & *7COW_fkoqpoopv|xl^M;* !1BRbnx{vqlgb]XRLE@;y5k0^-S-J.C0=5:>:J;X<j:{71+''+/49>BDGH G@7).4%@JS XYXWZ[[ZXUROPwOsOtQxU}X\`cgmquwuqjd/]FSXIfAt<88772-("yncZQF:+   %.6y<sApDnFkDnAq>x??CFJOSVZ_cfikliaZPG>5,!  "w+g6ZDORGaBq@}AA@>;976546555565|6l9Y=E@0FK QW_jx':L^n ",5=CGIHFEFIJIIGFGuMkS^[TbGh;o1r(t"vwwsp mhb[TLA1 ui_XSPN ONK(K0K5P9W=aAkFuL}QX]cfggfeec`YQF7' )6CLV`jv|yvtrnvlhg\`RWIO>L0I!GIJNSYdq~ )4=DLVcp}%.5;BEEDDDDEDvBq?j<d9`9]:\<Y=U;R9O9I<?@4B)EFG HIKNQRRSUVYYYYUOH=0! $+0330+%xqmm mpru{{skd _!\!^ b"h"n v~#)06:;=@A?=95331257775&3118/=0C2I5O5U6Y6[7[6Z4Y2Y1Z.\-_+e,l.t/z,% }xrkfb^[YRG:+  " '+/3 8 : ? B EHHGEDB> 80*%"  !(169994-%~{ywvyz{|!,4:>FNUZ^adgknqturoje_[XVTRNKHB:2(&/8AFLRZ`gpz $*17>FNXdo|yn]J7${tjc[VSRQPOKIGECBA<6.# vnib\UMB80*&%#!*17<&B.H6P>XHaRj]qiuuxyz{||wqi]QE);;2K)[gr|}rh^SE3| y wxz~,<KXet paO';2&>JYfr|xj\J:({rjc^WPJEA=:5(32.A)O#]jv#.7@IQXawmnye[OE;2+&   ",37;<<>CFJzPrVoXm[n\n[lXkRiKgEe?d8d2g-h*l'r({),/59>DJQZbillh`X O,F8>B6K-S&[agmr t t q i `TI @:52,&!")06;@EIKKMJF>5.*&" "+19AKT\chihgggimszxjZI6#p`SJFGLTZcjrz+8CLTZainrspjd\SMHFDEFINRV[`cdc_^ZUPNNOPPPS UWTOJ"C):10:(A$G LOQSSTS OJD?:3,&!  !+4 <ABB?=;;::853237;<;74.'   ymd]WQMHE@<<@DLU]gpy'07>DHJNQPMLNT\clrx~woie`[VwPoLfK[NNV@b3q$#-5=DMV_glpqmhedc`\XRNIEB@=:9754335;C MX1b@lMuU}[^`cdgl}ts{g]TME<3s&`K 7" tgYMC=979;?DJRY d$n*x07?DHKPTWUPJC=4( !.;GQZdmu|~|zuqmjgefjqzyk^RE7) #0;EOU]dmsy|vqjc^W Q JA9.$$,5 >DHLNMJE=3' /@O]hry|}~~~~~}zwsnf]'P1@9/?B EJOTXZ_}btdkfagWfNbE^@X>QAFF<L2Q'W_djpx~  )7FUdq'5DP[fynkr]pMi>_.V L@3&  &.58<:730 , &  ",49:61+%  #'),//,&      !% ),/1356643 5":%='@'C&C$D EC >952222-% !+4=DK)O3O:N?KBIFFKFQHTKXPYVX[U^R_N_H`Cb?d<d8`3\.X'SOLJIIIGDDCDFHGB;3) $+159:; 83+'#.5=BFFEEBAAB@<4*!'.6>EHJHC="8,34,<'D"LRUVUTOI D=7.'!  !!%&*+/266::=:@7B1D&FJR [fuwndXM>.(2<CJNQVZ^``__\VND=5.**(%"   !'++*'%" }zxy~ ('28:F=T=`?k?s>w>yBwHvNsQqTpUpVqUqTrSsTrTqQpRmVg[_^W`Lb?d1d$caeikmqv{udRB5*" vnid ]U&M4H@FKDSCXE`EhGoJwPXcnyuj_TF8* !,5=CGJNOQOMHA90)" -@ Tfu#)/}5w=qIhX`eUpKw?}3' xnaVJ@6+"   &))*)'),/0000/.//0025:AIT_hmrvy}~{wrlfa[VM@0 ~~~~ "%(,,+(%"    $ * .10 /*&#&#.#8%C'O(Y(d%n!y qcUI=2)  "-7@DFHGGIMQUXY[[[[WQLD=70+'%" ",355/)#  !  )2;?B@: 2("-8CMU[`eikostrolhd_ZUOHA<60,++)&$ #%%$ %&*/48<>=;9:=?@@AACHOWaiqx~| tj/aAVOKY@_7`*abb^YULB7,"    $*169;<:6/( *8ETboxxspkhikpvwzmf_VLA4&#1<DIOSUXYZYUQOPPTW\_ab^XOF<1')179 9 9 :;;85/( "        *4>EMT[afjnppnic\RE5%  (/7>DGHHC~>y9v6s3p1n.l)k&k"lns"y%&%$# #)-148=EO[jw !{5pHeWZeOtC90)! {qeYOFA=93.%    '6ES`kt}|sj]O @/2="ELRVZ^acedcbbbc_ZUME;2*   $(*,+(% "%(****-1463/)%! #)07;=?>=:::98764456 89:%8.783@.G*K)P)V(Z'^'_)]-V4N=FG>N4U)[bj t|zm^RHA:50+&!zts t"s#o!ke^XVW_lu z$w(q+l-n-s,{+)''%$$%$ 0>JQX^eiigcXI9,').0* $%'/67 1(" 2BP[dkpr%r)s+t0u7tAqLj]apVKB6(}uzezV|H;." &5CPy[qclhhjakXiUgVcW\SXMUCR>O>JGDP>V9W7W5[2^/^+]&akz   !'+,)%#'.5!8)915:4A8H=Q=[6d-n&z"%)/7@IOSW_nraO>1#{rlhffghukfmToAs3y%'/}5n9f<^?YETILJAM6U2a6mByLME>?DGJPU`kvvoh\NA4(  %*(   %9Og,:EP\iywgYL=,znbYX^iu}ulcVJ=2+"$08=><950)&%&&%%&%&&#y!w} "(+05852101.+(& z!y    * 5 =DI(N:PMP]NdJeCo:2+# zqg^\]XLDBB?8.&$%% ) 4 <>=;;BJQTTRSUY\_]\[XTOMKF@8."      *6>IR VTPOL,F9=A4E)FEDB@BM]mx}~vpmnooljg}gwmsyj_SKC7'6KXaejpuzyrmiea[PA7320+$$'%" +4=GLNOQUUVVVXZZ\\]`bbbbb`__ad`Z TQ%M:HR?i5{( }k~[rLg?^8Y3\-]'U LFC @<73, &" +;Qk %1@Qalx|~wqj_O;**:LW[UNLSbloqqndXI<2$ !   '/6CR`kx{iU>$(2=BEKRYfu|qbR@3+" znh#^/S>KOFa<r. /?KSZ^_``a`adfkqx|}{ukc^YSK>1&  3CLPRYcsskjhcWD. ,39?FPZahnsvy$}-0+}&z#w qi"b([.R/E*9 -!  sf[RK#E)@2>8>CALCLJKTF`>n9~/  x'q0m7c<U?G>B;A7B3E2O4[9b=k=u;7510/+&"     "-8?A?AIS[]]YUS\kw}}ysmif]$P&E%;&1)'.#6#?!EEEC@??&G(N$SUTOHB#A0?7;57/2,--&+ (+/0148<@KX^XRQPLILNMD:.{u+t7s?mFjMiQjRmOwMKGA92*%!!)039GR PC$:33>/H.O<WL\N]?^1a-e.h)h"g#k$q uw{"|/yCrRj[`jU|MLNMKHEA<720-'ud[VPIHIxHmFdG\KSIKEGDBI@M@MBNDRETFMIENDXCb;l/u#+BXsocVE2 $2IW]fvzk\M>/ }pf\TNLJHFFGIHHHLQU Ybp+37982/286".7(I#Ygy 3HRXckmr}zmz\uLy;(paWKA6*xk\K A6#$4GZn|w,r?hQbeexigcgoronuysjhnry{tsvtjh^UQFB?36&*( 5H[o ",015~CwOvNwC{>=7,# !+5>F!O%X-_4f=qI|U]cjnlged_W|QuTkXcW]XUeIs>x3{' yqkd[TQTxYfaYhNq=y$ s,h<gGiOfVa]ccgdhbgelkynpruvtnhgge`ZR{Ht=v4,%   &*02-"!+5<<753+  !# !%)/59;;;::,8>5U1l( wqpoeWLE:)  2@IPY_aaa`]XUSPJC<4-!wh ]YX\frwwz{vljr| ")4@HKPY_^WSPNG A$>%:"510 /,' %& $'+/25:>CIPTX\^^cjnmllie`^^~_y_u^p\nZn[q_s`u[yQG@90("!&9K]oztk^OA2$ xqljhiov~%4#C"T `hoz  ~tnljf`[U'K3>>1H$RX bpwtgkYfOdIbD`>[7U1M,C(9&0&-%0$1!-*& ( 5EX m   5Nbtwpq}xmbUE4$  '.-'"$.9B IPUY]aeimqstuwz { qf[$O1B87:.;$83 04;BEKRURPSZz`vfrmnpjlfd`^YZRVJPBH>=>.BHQZes w*h7XAIIAQEYScdluqsuvusty~~yxyyxupeUE6( +EYcgjlowvgYL>- !&*/ 36;>=<97 4$/&*(#&#!  !%)+.004>D}B<::9:=?:- %07>DH{GwDxBxAs?l<l:t7}42-)&%#  $/6:=CJPW[Y VP)K4G7E8E;BC=N4]*l"{ ~ w qjfdc`![#V%N$=!, (-/2587641*!  0>KVafgea]]_`bcb^WSMD:0# !%)0/:1C0G-I*J)O)U+],e+j)h,b1Z9UAUJWS\Zc]g_gagfjjlnnportrwqxmyi{g|f{a{Z|SxNnJaES@I<A8?7<7944/1&24 3+  v njikjkk)k.i*h#gfb[U O NNPU[ahq$9M^kw~teTF;2( %.7<?BEF C?'=6<C<O<X8c3k3p8u>{ABA=6-%$&)*-1~5z:t?lGdK[MSOHS<V.Z!`dddgnz}xuog]RIBx<k6`1X+P'JEA>>?CGKR\ix"3ALU[dnv}|vk`}T}JB;741.-..,,,*'""$'*+-,-,-11 -$!(+)+08AISZ_beefeeb\TNKLKI E<,&.4:=ABDJPTTTRNJGFD@:3- '")8HYj{ wcSH>3~'zxwy } $+17<??>:3z+u$og`ZRM I JOTXZ\_iu"&+06@JQU WTPID"@+<3891>&ENX_fknmje`ZTRSV[_`ZN@/!  #*3>N^mxzncYTPLG>2$ %.3651)!~|xtomnswwurnkkmsz#0:@CC?92,*& (:K [ju} ueVG8)"&((*,-//+%    "$%(,158:=;5*  &07<??CHMKFA(95/B'L!V^gosx{~}zume^WPIA5*   )6=ACEJOQOJC;3+'%$#")/6<AFHKKMNNNNLJHECBA=94-$  %9L]hrwwurqokd^ZUMFCCE{IyLyK|B92-&"-7@GNT[^``___^\ZVRMID=5-$ ### #! )3AQ\djqyvgYL@6+    !"##$! "%(.5>DIOUXUL@0 (0588789:;;:8679<=;61+%  !#$#$*"/ 37<CHL R[es}tngaUE3$  '08A K SZ_ba\VQMKKMQRQQOLG>4' $)-03444444442.+'"}zxy"+3:?D IL$M/O9NBMMJXFdCq?~=<:;973.($##"s"a!M?2(  #.7?DFJNRX^ba`_adggd[M>, *5>GNRTVWURONOOMIEA=84,#   &-15:AJWfqy} !'*z,t,j.`0U1J1@152)3440*%"  !!  &;N^lv|||yvunscuXxO~IA92-%  %+39=?DHKKIIIILM{MvMpHlBj<k6m1n.o*q'v"| $*.1444 45'534>1J-Y(f#nrrnjhik!l"k$h#c$Y$O%G&B'=%7#0"("""""!    &,19BJRY_emswyzyxtroke]RH<4,$ )3:?BBA@>=;:72+$ %08<=>@EMTX#Z&Z+V/T4T:W?XD[CZAU<M6B/:+3(-&$&& $#  ~(3< AFKQX_ekpvxy{|}zunf`[VQLHD?;4+#  $ * ."/&-*+-).'/'.)*-"17= B E J OSTROIC<7410.+)#   *39==AFNU\bec^XRMHB;2'  #%%%$$#"""!  "%'*-/49?BDEFDGHI F?81")($."5;?D GGEECCBEHGEB?<:85y3u/t,r)q'q'q'q&v$~! *28<AFMQUVX[_fmsuurmifc_ZUPKD>81,&" $)-.00.,*' #,5>FOV[^_\XUQPQRP KD;3-)!''$,27=?? > 83-'  {ww|  -<JZht~zod[QI@6,  "#%'),./00-*&&%&',.37;<;951/+&! &5BMV]djr|zp g\Q'G/=72:'9974.(  ~yxy|}}|}    (19@GNQTUVWY]acfgedcdeeaYQH=1%  !#$$%%&(,//.+'   $(,16:<=? ACDFFF"E'D,@2<79=5C1J,Q'W"[aef ggfdb\UI<. #)/5899875/)       !"#$'+/357651-'!   !"#"! '/6 =FNW]behkmmlic\TJ?5+!  "'*-.14:AKRZ_bb`]YVSNHA91*%   !##!      "$%(+0359:;==>===<;<>BHMQSUVVVWWWVSNKHGDA;6/& -7@IOU[`ejlmmotw|~{si^TNIC<5.*%    *5=DHJJJJGFEDA<73.*% $,4=CGKQX_eghd^UMGB >81 ()29 @ D H LQTUUVSOIB;3,'"!##$$$|$z#z#|! '3@N^o~{ri_TG<2)! "#$&')*+++,.135641. ,)&$" !& +!/#2&5,51665:5<4@2B0E,H'K LM LJE@;60)#   $*/469=BEIKMOSUVUROLF@=<:961-)$    "$ $" $*-/1369=?BEHKMMLJIGDB><:4-'   *28;:8620-+'!     ! ! !   #'.5;?@>92-(&$"  '/5:>AEHL LID9!.'%-4:@ EHKOQRQRV\ckqvurmid^XQJB:1*"  #-59:;97531/-*$  $)/5;AEIKNQSUVWVQMJE>6.'! "(.6:?CJQX`inruyywutspke]ULD;4. ( !   )4=FMONMJGB>72/...-+(#       &5BN W ^ c f ijigda[RH>4+ !      ! $%$! &4?FJMLJFA<72-'!     $'*.4%:-A4H8P<UBYHZM[RZTYSWQTNPKMGHDB@=:53-+$!   (.%1*1/05.9,;)=)>*@->0<.:(8"53553/*$    !%()($'+$4#<!D"L"Q!V XZ\`d hlpstvwwvtspje_YSLD=6.& $.9CJMQSX[\\[YTQQPOMLH?2(  !%(+-14789973.("   "$ & &(,06 ;%=*?.?0@2>6=98<2=+?%?!?>>?@?? ? =<<<<>>?A@?<840,($  $+3;FPWZYWUUVYXVQNLJJJKJHFD@<84/*&$"  !#$%&%"  " %&&&()(&$# " "&+.25566665767656776 3 - %   !#"    %)+-07>DHJKJGEB>81)"    "*4? JU_iq!v&y){.~146630{-y)v#uroh`UJ ?5.)$  !$%%& $ !     ",6AIPXb inruu(q3k;eC^JURKZ>c3k&sz}wne[SJ@6,!  !"   "#$%%&%"%/8@FJKJGD?:61,#  +5@KYdp{ $*..+'$w!mdYK<, "(.5<EMS[bhmrwz|||{wsokhea[TKB;2)   !#&(*+*(&"  !'.4:>BDEDCB?;4/*'%"  )2<EKPW^dgjkkjgdb_ZVOI?6,"   (07>ELT\djmlkihedc`\WQJC=5 ,#       $-8DOYbhm#o'p+q.o0k3f7_;Y?R?I=@:66*2,&          "$%'*+,-.-+(#   *7DNU\b gjknrvy{|yuqjbZRI?5,#  !'.7ALV^dhijkllmnmlkkhea_[VOHB<4*  "*2<ENUZ\]^^\ZVRLD<3,%#&*/5=ENUY[\^^````]YSNF? 81( $')+.27;@DINQUWY~[{]v\s\p[oYmUmPnHq@v6~-$ "*28>EKSZ`fmt}}vp~luklmcqXuM|D<5-(! .=IS[bimrvwxwvsnjbYOD9,!  !(/8@HMQV[_`a^XPF;0%%+/59?DHMRWY\]]\ZWTOIB:0'  (4@JSZ^acf~hwkqjlgich_iXlRpKtDx=}7/("  !$%*07>CGHJLORTUVVXXWUSQPNLHEA<96544 21-#)+%4!;CJMNLG @<72,$   )3=GOX^begjigeb]WQLF?5*!%'&$!  #'*-049;=@DIOU[^]XSLF @:3%+-$6@HS ] g q y ~vlbYPG?6-#   !     "/=IS^gpwz{{zyzz|~ {r h)^4V?NJFR=Z4`*d gh gda^]YWVTTSROKE>80("#%'()+ +)& !   "%)-./-*'%$$%(,.-+&  !'+,,,*($!  #/9?FINPUYZ\_dimopomjd_YVSPIA:5 2.,)# !$'*.25788;?DJPUX\_cfgfec`^ [YW!T)O.H2B4:545-4%565 5530-)'&%#! }|{|  (19?FLQVX[[ZXVTQMJE?92+$%0;FNVZ \^``^ZUNG@ 9 40-)%   !.:EOXbjr{yqi_XOG?7.#     "&*/6 =CIMOPQQPMKHDA>;84/)"&07?GPW^elsy~%-}5w<tDnKhQbU]XUYKYAW7V-T%SQNKIEB<83,$ "(07>CHHHGHGGHIIG B<5"-*$2:AGLPRTUXYZZXUPLF?6+ &.7@JQW]a cegknpqolhd^XRNJD;!3$*' ()) *+))('''&%#" !   %*06;>CFGFDB@?>;9640-+)&$  "',17=CHLNOLHD?;8}4y.s*n&j#f"ccdfi lorz&2=DJORW]bfikkmopponjhea]ZWTOLIFDB@><;:6/& %.7?FKORRUUX[`defec`]Y T$N)G,@/70/1)2#33245 8;?DF F G FEEFEB>951/.-*)& xrmjjmrw| &09@EJMNMKHD? :4/)"!" $%&()*)(('(+/3543/+'$!  #&)+.../-,*(&#""$(,16 8;>#?-A5A>?E;K4Q+U!WXW WVTRPONJFC@:52/.-+*)'&%$$ $ $$ # !   "/;GQY`fj l m m m l k h e ` Z SKC:-!~~~~~}}~ %,4<CLSY_cffgd `\WQ!J&D,>0956:5?4E3K1Q,W']"ciqx  {qg]PD7) ~|{yyy| #).269;=>@BCCCBB@?>;851,)%" (3=GOYblu}}zvqnjgda_]ZXSLF@9421.+(&%".8ALU ^is{wl`TI?5+! #)/5:?EHKOS T R R RPON L JGEA<4){wwwyy}    &-37;@DIPV[^`bbcdeddcca`_bcefhgfe b_\Z"W'U-P3J7C=:B0D&GGIJK KIGC=71-)(&#   )6@GMQR R SROLGC;2(   #%&%# " !         &/6;>?>=<976521/-,,*'$  #/:GTalx!(-159::~9t7h6Y5H463&1/ ,&#&0:DLUY[\]]_cegfca]YSME<3 - ('+!0'3,30/3)7<A EHIGA93,$  }zwvy| $1>JS[ckqw~xqmkihe_VKA5*!!)19?FNXaiorrmg`YOHA90' "&(*++*-2<HT^cddb^UKA5'  %*/026:=AEJMQSTTTVXXWVV VTS'P1M:IAGIDO?R:R5S.S&SRR RU[afhhhhhfaXNG@91,($  *6@HOUXYYYZZYZVRMIEB@>=:5-'!  ,4=DJMKHFFEB@BGKMMKHDB?;6-# "(17<=>=?AEGHJLNQTVSNG=3&!(.589<CKPSUVWY$X+S2M8K@KGHNDS?U:T7S4R0U(Y$Y!X VSPN LHC>:63/+&    #+/2455 4456'80976<2B1F5K7N4T0Y)_#cee b`^\ZWTRKFDCA><7/$ #).38> DKT\^_ ` `_[UTSUUOGB@<6.&       "(-1589962-'!  (18;@EMTXYZXTNHC?=92( #)2;CMTZ\\\^`cfikopolf^UNIE@:%3+.1(6!>FNU[^abbdhigcabdegfd\TI=3+#  "*/7<>>=:8510//-)# (4?KSY[\^biotwuqjaYSNI?5,%  $,5>GR[chkpuwxsmg_YSMF<3)  $/8BKRVXVTTRPQV_gkllmnqty}~{tlfb_X M@0 "$( +./035678889?BEC?:60)%! #(,/3641-+'% # /8AKYafioux{~~|ywy||xsi^VOJE?90% ").0/*&#$(-/.*%""#"$)/49@FK MKGC?"<*856@5K3T0Z+a$flqrrtvuog_VMB8.# !&)+-/38<=:657;@A=80)#     %-4<DMU]diknqruxz{vplgaXRKB5(   "%&((&#"! %, 0 21/-049>DGFEEFA91*!  &**++,----./149:5+ (/<JYeqz xqj`UKGB ;4 .'  "*0368>CEEGFC@;70)##%%)/26<AB@?>;875/& *8CMV^ciqy{sk`UJ=0' %,/.---*('#$$"! !&(%$'*,--.,*)!).$8"B"J"RZcku| ~}xtoid`YQIB8,!  tkeda^[\^_b hq|    #&),047:>BGNW^acc]W PJEA<60)#  !&)+/1124785675.(%"  !#$$$$&%$#$%$#    "!!(,-/2455678:;70&       ',0 4%7(9-:0<4=5;4733314*4#4454349=>=<; 850 )$!$(- 244420)!   %-5<BGNSUUUROM KID?:5-%      !!  #'-4:?CFFEEHLMOPPOOKD;4 0/., +('/!7@JQ W \bfggikjhfhjib[VPH;/"  "*17:<?BEB?<81*!   #(.3:CLTX]dkrwxxumfa^[WSNI@7-% #,5=DFILOQRRQOJIHFC?<5-'$"  !$$#"!  ',12320.,-+)'%#       "(+06:974/)&#!  #/7<<=;;; <;62!/%++'1$9!= AFJMNPRRNG A> 9 4 ,% #+0122238>CEB=7.(#      !"$#!       $ ) ,!2%8+?/C3G4G7E9B:B9D<EBFJEPBU=X7X1U+M&D;62.,)% #)18?EOWZW RNF@93 +$!(, 27=CIOTY]a`\UNG@:531-&     !"##$%&%!!!!"!# $ ##%%& ) ++)(%"   !"!  !#%'(*+,,-122/+(&'&$" ! #'+-/ 036 =#E&M'R*T/T3R5P5P5R3T/T,Q)L$E>84 1.(  '-26;?DGHGEB<7/#    *29?DGHHEA<81(  "%&$   "&+/24468<?A@<964 10-&     " ""    "#%$# %''&'&&&&&$! $),/2322//13442/+&!  !% ,#4%=$F!KNPRUX[^_ ] ZTNGA<62,$  "$$#   #+ 3<CJPTWY[\] ^ \WRMI E'B.?2:659.9'5 0*$      "(-0442.($!    $')-./01334459<>@@@=:5 .' +7BLU\bjry ztlb[TMB6)    #',0342.)"  "%'),,+*(%" $*18<>ADGKN P RS T U V Z ] ][VRM GB=8 3 -& &,2589;::61* ".9CJQUY[\^_```^ZVPH@80)!  $ - 7 @ G M Q UX[[[ZYVTSOIA9/%   %*.37:;<<=;82+%    %-37;?BDE C@<961."*(',%1!589;=>@ B DDFFGDA=70)%" "&+,,-0355431.)$  ").36 : =@DHLPQQ OJ F!B#?#=$<#9 61- (&"~{yyyyz~ !#$$! *6BM U^fm$q*u.w2y4{6|9~;~=|?v?m?b=U9I3?,5&-!$  ""##"   (/5<C LT[_c!f&i*m,n.p,n*k%e _WN G@7-$ $*28>BBCB@?> =;:73/$+'&+/259<>?@BDGKORQOKGA;6/)    !! $&()(&"   $ , 0 343/*%! "&)+-./022/+'#  (08?EKNPPNKID?841.)$  #'+.00 . ,(%   " %$((*,).&.$+#("$#"'"-#1$1%1#/!,'# "$% &%%&(*,-./00/+('&&&%$ &*-..///135440*$  %+169<<= ? AEHHG E%B)?*:(4&."(!! {yxz  !$'&-+3094>8A<BA?E;I8L7N5P2Q2T2X2\3`3e4h2l0o.p+q)q%p#ppol hd]VPJA8/% $,28=?? >=<">'?)B-D/E2B6?88928,6'3"0/+'!    "#"""!"&#*%/&4'9&@$F MTZ_ ceghhhhhe_YRLHC@<6/ (!"%(***)'%$"  !$&' ) ) ( % !         "&),./13557;?CHKM MMLKKJHDB?=;9 8 741.)# &/5;?BA>;951-&!         "!  "$&&%#"!        $.5=DJNTX\`cda^YTLE>7 1,)(%#!"&*.022458:<=<:7432 0/,)(&$$"  #)/5:?DHL%O+R.R3R7Q:O=L>H?D???<@9A6@2@-@(>#=;8 62/+'#     #' +'00477=:B<F=J;N8Q4T/W)W#XXWVWV UTQMH@6,#  %-6 ?FLOPNLHEB!>#:&5'0&+%'%#% $%%&$ "     !$&'.*6->0D4G7I8G8E7A6>59445/6)6#65446 5 431,'"  %!,)40;5B9H;M=O>O?Q?S>T=U>U=U=S=P;L:G7B5=27/3,-)*%%!!   !! !%$+%/'3*6,7,8,7+4*1*-(*&'"#    !%')+.1469;;9753/*'#   $(,158:<====<<;974/*$  !%(*) (#'#'!$!     ",6 ? GOV]dkquz}}zx solgd`\WQJC;3+$  ##"!! #%(+-///,*' % #  ""# "    %),%.+/1.7/=1C3F5I7J8J5J1L*N%PRSUVVVUTROLJFB>:61-("  "! $+ 28>CGMQW[\ ] \ Y V R P MKIFEB>82+$&.&5-<6B>JFOLTRWVYX[[]]\_[aZ`Z_Z\ZX[TZPYKXDX>W8V2S-Q)M$JGCA ?><<:73/+&!   "$'+ . 3 8 < ? B B @ = 9 5 1 .,'"   "## &!'")#($'%&'$(!('%"    $).3 5 7 63.*'#"%) .134311/-+*)'()))) )(&$#$"'")!+ ,*'#   $)-0 3578 9#:&<)=+?.@0A2?2>2;07/3-/*+$'%##$#$$$##"  %*08>CFEC?:5.&  "(-148;?BEFFB>93.("    #%&''%"$'",0120 /-*&#  (2:BHKMOPONJF B ><97420.,)(*-158 ;?BEG!J'K.J5J;HAFDAG<I5J/I'IGF C@;60+$ |{{{~ &0;DMT [`d g$h'i(i*g*d*`+\+X*Q)K'B&9&.'%(*+ )'$!    #'+/379; <==<:61+%      &.378876430,("  $)-03 5 78753!-&'' '&% $##!   %*.25!9%='?(?'=&:%6$0"+$   &+049 =BFIKMMNMLLKJGC<6 . '   "&)-03579;;<;963/+&          # + 2 9 @ EJNRUZ]`bb_]XTNE<1&   &).28<==;941.,+)'&%#" "#######%'*.1 3678752".%))$,.01/,(#  "%)+ .37:&>/@9ABAL?V<a8i3p-v'z"{{x sle_YRLE?:52/,)&"            #&),-/ / .,($   #)-#1&4(7+9-:.;,<'?!ADGI JJI F D A?< 9 5 1-)%!     '.49<=? @@@?><961*%     '.39>B EGGGE"C%>*9,5/32/5+:&=!ADFGG EC@>:620,*('&%&'(('%#! #*/48<>??><:61-'#  !$&)-16 : @CFGG!G%E)E,C1B4?7<98837/6,6*7%9":<=>>A BEGKMPSUWXWVSOKE@91)   ")1 :AFJKKJHFC@<73.*'$!"$&)++*++*)(( & $ " !        !"$%')*+)'$!    (!1&8*>/D3G6I8L;M<O=P>Q=R=R<R;S:R9O8L6H4D2=1812/-.&- *&!         !"!$$#'#*!*+,.0255554 3 1 . , (&$ " !             "%(*,/25688751.)#    ""#$%'))*+*)(''''&%"    $).3 7 <?BDEFHIIIHGDBA>=<:963 1.*% #'* ---,,*)'%"        $'*-024689:9:;== ><;:6!5&2+10/5.9-=,@*A(C&C$E$G#I#J$K%K&L(K)I+H,G-F,D+E*C)@'>$< 730+ $  !$'&&%$$%&&%$!  !$%(*+,++*) ) )))*)('''''),/36: = ?@ABCEEEDCA=:62-(!       #&* ,/134"5(50473;/A,E(I$M!PTW[] `baa^[YTPJC<5.(!  "#""   #*17=@CDDCCB A?<85!3#0%/',*)-%0 4676789:<<<;:8641.*%  $).3579:<===;:752.+&    " (-39?EKQUXXXYXXXWWURNKF@:2)   #%')*)('%" (2;DLSY]`cd ecb`#[)W/Q5L;DB=G4M,Q"UVV VUSOKE>71+%    !#$$#!             #&*,.0347776530,'"  !' +.14589:97530-*(%"      !(/4:?CEGGFEC@>:7!1)*3!<ELSY]`bbcccb^YRKC9/$   $+3!9#=$A&C(F)H*K+M,N*P'Q#RQQP NLIFDA>;84.)%! $(++*(&!  ",7@HN TX[]] [ X U Q K D =6/(#   %*.2578::973/)" $/;HT_hpsvvutsqoje_XPIB :3+$$*0478863 / )"  !$'*+-,+($ '.49<?ACDEFFECB?;8 4 1 ,'#!%*/3 69=?@@ABBC EDDCB?=;71*"     ! $ ( * +)'$! !#%%%%$!     #%#"  # * 18?DGKMNN NMJGE!B&?+</;3966:2;.<)<#<;96 2-'     #(,0379:;<:98631/.., *(&" # '),.02466653 0 ,(# "&)+-./0000.,*'$! $)-/244434445679:<>@ABCCCBA@>=;9863.+%   "%&')+,--,+)&#   " % )*,,-.,!*$(&%("+-/22 34321/.,+)&$   $)-158:<>=<<<<;960)$  "',0368<>BEGIJKLMMML KJF"B)<27516,7'8!677753/ + ( $     %*07 > F MTXYWTSOJDCCEGIJIGC=61,&     ""$%"'),.01"4"56555 5311.,)%         #!!"$$"    !#$$" !% ' ( * ,,--,+,-..-*%  #'+.0000/-,+)&"  ! # # " !        !%'+/13556:=>;988984.*+. 232/+#&'",16 9<?ABA@>;740+(%%&&'&$##"!     $*036:?EJNQRRRSUVUQKD= 7 1 ,%#(,.04;CGGCBCDC@=:77:>@?;1& "'()+,-+(%"   "###%&*1799741,&!  !%),/110.+)'%!  !&+-.29B K T [` `^ [VPJD;3 ,(&%     #'+/2468:;:72-(# !## % & $ "# #$!)-0120,(%!   "',.00.*'&'*/21.+)&$""      '/7=AA'B/B4@9<=5?-A&C!EDC@= ;987630,)$  "&&&'('&!    $-49>BFJOQTVWWVTPMIB<3) !'&" %()*'#     "%%%$"  &-48:<>@DINTUTSRQOMKHC<60+'%%#  !$'*,/34442/-)$ ',059:989878863 / *"! !    "&)*)&&''''&#  %)/27:=??=;861,&      #$%%'&&&&&&&&$   "!!    !*255651-,*#!"         #+3 :@FLOQROLHDA;50+(%!      #%(+,- 0 231/-%&) *+, -+*+/1331.+*)&"#&&$#!   "#%(+,,)'#  #(*)&&'('&'*-04:AGJHB:31,($!  "(/59;;<:72-& !%'+.0/169<>AB@= ;81*'%!$! "!       "&)- 2 6 9 : : 9 8 4 1-)$    ##%&'&%#    "#"!  " & + 0 48: 8 50,)&"    #$&(*,,, , , *'%$&& % $# !   "$$%%&()+,-)$    $%(*,- /"1#2!31/., ))' &""'* +,)(&&((&#"$&%$  #).1455787642/,)&!  #*27<@BDDHNRRNID<62/*&"   $%$#    #&(($"  # '+/48;?ACBA?=<;:73/*%!            & - 3 9 ?FLRVXYYYXVRNHB;3+%     #(+.0 111.+'" "&*/6=BFHIJJ IHEC@<8 4!0 ,* '#%'") ,./.+(&$"!    & / 5:=@BEINPPPNJE? 9 2*!    !%),.02457763.)%!  "(.2 5!6!3!0 +'"             !&()(%" #%&#       "%'&$"       #*023200..,* ' "             "          !!!  "$' + /369<ABA?;8530/.,'!  #,26:<<<:74443 0 , ($"      #%()))('%$"!        #$'),.010.+**))* ) '#                #' */37<?A CCAA?>==<":$7&3(.()'&&!&&&$ !        "#"!    #&(*,.01211.+($   "&*.2479;<<95.'!        !!!!  !%(*-.-+(%"!    !$( ,/135 9 ; = =;8 4 1-*& "     "#$# "!#&* ,0233310-*&!     %+17;?CFHJLLL L J F A ;4.'!     "%())((),.00//0 2 456530-,+*++++++($  !$&(()(((()(&"       "'-27;=>? ?=;962, %!#%'())*(((&%$!   #(-38=CHLOQSSRPOKF?8 /'        % *-259=ADEEFEDC@=951,'#     ""$%$$$$###!   "&((('%#  "$&'(() ('''&%%#!     #$$#" ! " #"#####"""#%(**('$"  !"##"   %*058<=><=:963.*%      &+.2467899;:999998 9#7$4'1*.+)+&)"' %#!   !#$&()***))*)))++--.02 221/-*%     $).26":$>&A'D)G,I/J2J4J5J7I8G8D8A6<3701,-''"#   !$'))))'%$#  !$%&%$"! !!#$%&&&&$$"!#%$#"                       #)/39=??@?>;:751.+)'#  !%)-/123455 6 66554210-)%!     !"#$$$$$$####! "% (*-.//.-+*($    #&*.024555677 7 777789997 5 3!/!,)&#    $) +.//!.&.*,/*3&7$;"> ?@AA@@>;8 6420-($   !"!!!"!"#$$#"    !   !$'(('&$"                      !%)-025567 9 : ;;;;:::99752.*%         !!###!#%!'(*)))'% #! !#&)*,-/000/-,+(&$!   " % ' *,-.-+($     $"'&*),,.-0,0-2-1.0/00/0-1,1*1&1"22334 2 1/,*'''''%$$##$$#"!   "$$%&&&$"!      "$%&''& % % $ ""! !           #'*-//0/. , +)'&$$$$$%#!   !&*.145541. + ( $        !"#$"           #$%&&''''%$#!                ! # #$#             !$')+,-///...-,+)&#"  !$')+,,+++**((&$$""!     #&'((('&% $ !    !#%$#!      !                !$%'()**)))*, - . .-+)($"            #%&' )+,---,++***)(&&&%''''('%%##"! ! !!      !$%&&$#   ! $&''&%"                 ! $ '(('&$!  !$'),,--,,,,++)&#     $')+,,,+*(& #                             !"######"#"!     "#$&)*+,+*)(( ' & % $# " "     "# # ##"##"!!             !!"""!! ! !  !!!!#$%'()* + + )'%! "##"             "$ &&%%%##!  !"$& ( **++)(&$!   #&((((''&&$#!!                             ""!             " $ & & ' ' & % #!   %*.3 5 665420-*'"   "#$$$%%%&&&&''&&%#"!  !# %')+,--,*'$    !"# % %'(*-0236 6 6 7 7 5 41-(#    "%(*-03589:98863 0 + &          ""!      "%(-159<>@ACDEEEDCA><83.*%                  "% & ' & % $$"!!!        !"#"# #$#)#-#1#4#5$7$8%8%8#8#8"6 53/-*&"    !'-27:>ACDDECA>;840+&!     !#$'(*+-/ 01234566442.+'$  $)+-.00010.+'%!          #',/2568787764321/.+*(%%# !  !""" !!       !""!      %*-023431/-*)'%#"           !#%') ++-./..,*!(#'$%&$(#,$.#1"3!455420/ - -+)%         $*/6<?BDEEEDA?>=;61,'!   "$&),.011224577630,)%!     "%''%"     "%')+--./37:;;<<=;83.*&"    #&())'''()(%$$!        !#%(+-.../00/.-, * *(&%$#!            #(,0246641,&"    !""###"!                    !"$ &)+.000 1 2320. + ( % " !           &*-265421/-++*&"  $(,///. , * ) ( ' #             $ '*+,--..0121/.,)''$!  !#$$$!        !$'* + , +*)('&&%$!                 ! """!   "'),/14 7 8 8886530,'#   !!          "$$$% %')+-.--,) % "!            "%')))))+,..-.//..-,,++,+)( & $ "          !#"%'&*(-*.+/-0-0+0)/&0$/ ,($                   ! #% $ % % & '&&%##""!          #$&)*,,,,*('%#!   "%'+.1458<@DFHIGC=840+($!         "(.47;=? A B @ @ ? = < ; ; ; ; : : 7 4/)$        !"#"    !       !#&(('&$!   "$%'&%$"              "%(*++)(%$$#"    "%())(('&%$$"  "%')+-.....-++* *)'&$"! "$ & (*,.//-)&"   #')-0456655441-(#          "#$#"!  ! "#!                                       !#$&%%&% $ ####""!                   #&(*++--.-.--+(%            "'-1479:::9851,&          !$&')))('%#        !$'+.1222210.,)&"            !$& (+-.//..,*'#      !# %()**#*%*)*)+),'-%-"-,++***) '%#"         "&)"+$-&-'.'/&0%2$1#1!00/-,*(&$ "   !%(,/25676530,*'$            #&(+,--.-++)*)'&%$"       "%)+./134 6 6 5 4 2 / , )'#            $(,.01211110-+) ' '%#"      !$&'))*+,,+*(%"                             !!!!!                !!"##$$##"!        "%&(())(('%"   !"$%'())***(''&&$#!           ! !             "#$%%'&%%$!                         "#$%%&%#"     !#$%%#"    "%%''('&$"                                            "$&()*+**(&%$"    !!      !#$#$""!          "#$$$"!    !!!                  !$%'''&''&&$"                    "%(+,...-,+)'$!    !%),/0223310.,+($     !%')+-/02323210-+ ( $ !"#%%%&&%$#"    "&(+-.00/.-*'#    "%()*,,,,++)('&%#"!  !#%&'(( ('&%"            "$%&&&'&%%$ # !           ! !              #'*.23577788887641/+'#   "'*/145666431/,(#  workrave-1.10.50/frontend/common/share/sounds/subtle/micro-break-started.wav0000644000175100001710000241405014221624107026030 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata   #%'()***)('%$"      $&(+-.//.-+('%#!       ! " !""!!    8K(zzA+FF:}%=NR1 N,  V#z/%  zx;  x  :8g&BM+9U& r I~AI vw R f sjTbg{-vJmcR* wyeDwYba2%RB8o+{O~&h+{d$9p;4a[6,00Hb\VCCkvdMkfpUSy :>9 & 2 qS  h [N& p eY"Px EWJiBF{tEw zxC #^DP5eP \ &':9;E69H V kY :](xU3F zE =cS9_ V}"w;JD*QvI} c<. .n{*^H(G(   `^ G|c > F 7  s@nk';/U=] cCjV0bB;FTb%-u,L=!x)GC}-P' U? dER=q^(9RB5*@F8gnVk0 I F }    7Ez  : l .Z"23 #R8Iz-496_ @ EWX  WLIs KboPfYVWlNwLlGq"'#/XmlHYVs[! A 8|ASAA&#w. Hm9pe B ~ 7BTBgJiHCvRR  i I' Q   P J X@P Dz@|i |.ONa* 4dk5A@fYV)OG<4dc.7KcDE-yuB=uqHq/t   [T G o #?dSv9+ Y  X'   V" E9  B2[Q k M $p:J~7JxM"fR0%7s}wO!7Ya(a>4=Sm-4T w?7|oyXl*r57c.`^;^'Qq(``^h+4+|:8 ,\ #  M`=xh #Y1tJjr 2  M    r  pNc ,3~A}5!74uQ>iwz?Oh`|>`Dl7;$@21p<$,nVUWg"&hF@5JK:0xctq>gy+Ve0*L)+4m$V;%Tj` G , q  '2J?Vf~0\|] F10 % xgA  D & a 7e&c u"(i\ Qc4k;=FLtTUfR^Tf(A_i ; F }c6Y m&e./xjiY!@kW,?SQu?'7a }:MKQ,Z(NqZ0Q (4?[VUeU#nd#(dHOk4SNJhvxh0oV"CqQ%+2kq, ! = j  IR! W   8[<}L rbx$]8   1 t $4 - ZB]0&eq*:%w*Y)|9q im0fdT @/5zL$"Fcya "<}&s?^&H{sd)6 )pf'y_yOF;z  #$ e cO05   G: 02[R S&UI uS  - % &H CS <8 /8\2Uo>>bbMttOhti.\7*dc>bq|(vnI8b0`nyY4R0bc!89kK(8e~^`v8S ~7&^ c ZI 0Xb cc Ow( -\ epK w'D8l):z K C f  O2P +lzv78t5_dz|4^,"YH;f9>';b;OYL Y%+Eq*y0~ufbr8KxB-'`LI5 [6t pm]n7_\C;u@x0kkOhGv7 j 7/e   ` J_  #I} #Yp[fm + +@ s e  a z 8  E$:x;&S2Z ,M.4H R& 4mDy>o|, b4bo*qPf"Uz'ajHQ LPx'G'!A;:b s V C , ` 3 QIo    H 1ZM X P b  J_5H(`tB `0w9DzKG?w<<[RrM\KoL*gi6S=e4\xjP }||IF q  . `Z  `y  ~ H [:HN* +H ~6 NF / W = <'-Jqcr9w2*`(M*j&#ij 1wd RkvO f( Z "F P * XYmBGR , 9 a~R~BFrq S d 1d Z y &  zs  0 ^ V6mkAGsVznnUK%N w2Z9XpT17Tn 08] U9 G + ]w* QU 3 OC B!X:=wc@m Fa$Hz1 vA }P6  5 B D GSZm;z6@g  *3 O - W  Q   Xv   = ePEh .vozE sHc Ctw}a9eA9cwf p@@"<:@rWf|F v `>LiSG=3 a)E._V &   }g O? ; c  & |3 =>z9L`n - T|g00. xpEWZ!dD2 ~ 2=r % Wa2/ =  F,e.1L%j!#ps T 0 --{@_Kjy_U)=lTT J "P XI @ ^ laT  0d r U{}}+9b"P 5. [ ![   OoWg/%S= JWme.xp~#av4 qsJ(Fk' @c0< jJcri~6SeI&  ( hc \^sF0<cIx#s 2*Ka9$J?(/- K9` p5*CLYL{ ke8 R< )yf:{$W55]'Io+,Ab; 0eHS3 R/rc`U4n ^Y  Am 1mq"~P(B>i*QQ ;q8\\n}mA  ^$=pqb ]Nz3"[a - ~ #  k 8  ~ ^  >$  R I ( Op dM \peEpG5Mn 6R _V  n*{IQk } Q6.i^I?Q|1upT(TX<l p@G%w% %ebew`8(e rC<WAe s,T(W[{t ]}w('} C  OiBUnju JOp zoqT(v" tC7> @ 1 Ebt s L i+u M 7@IdTuiJyh}A fY]%NU S 23ZMHp8Jx9B|W98s  n k !>C ? d+H %    c&R"&   %  " 9uCIz4 m7 ,  9 iw 7(h|:)1'Mz,Q  n~v.#}1J3#[KM4;AML*3 6u(0M>8zk,3ip4N,@Y n9 7?h)^o|(lalFa  / Q L ~~  v Q n  n )   l 7 DS,qqLoL;3XP /DdY)Q/SqO^]D BF 9?EZc Qk z:Z7s v %A4gdCTf-OY +foQ R>r l]X Bo  % -] Y _ % I & a JA d, j rI > i!%3<6y6WI;m  s DJ_]# 65Mc KA s Lvv/wP=*-vc_c._6H0 <~G\ 1N Oz; EtoeAN?E !c   lO _b j 7  BQ d@O `@ & "f YH<tl9 *3}/?r o9% _$sMtiX`ET%"\51Kkt~8]& q?w _3;w !kKv8QcJ 3_PX#RG:/AwTHe "~[P'\ M } R@j<]$b L  GEcJD O P  1Q! Sa _/Z1#V  9 b I {U8 ZMA ` D~/Ga"L|Qm"xT1R[o'/J c y i p n ^aJBvA\Xo/ Q<6mE B e #= BJ!)/w2=ej-B+=@>3%__bHO ]g mL4~5D `H =Hc-9  )hjl SC!+(XO ` i/sxgy+#p2~)?.5$ c M  JT:x 8  d|  2y H' y.j#!;rdt!S<-%n\-`hm&HYNCb2*8Ig n9 3z Kp#7I]x ?Rl q j ` 1+ WY# m2 = $"/zWnZgufk  [ WCW f JcIpu 4 &d  MJft H(&-_-6inPjY<#D?CBj2g6W ; x J ^a+  "   d>  . E 1 %J>.Y  [ ;  rdmL q73Q7AI} G ,A~ Z, 2\ , [ *B w+) d z8./ HG0BkU[|&`edPuIT7 ;HjJ4p;lz?IYR | Q y RY I{?d.=K 4 )954'z\ } 8h2fhf c4p B6m  <  5} 2  h NIs i ;h  )|gXg`fk#n J& N+=s* Pk~Z}2JSVFF6JJ7SD0b(YDJ=e@s'i<50@,#%: *1 Y ft ~04K b : n T L  dJ S  v + b vka)crTZnAD9 _B{m/>x^i1 qq/"cS<#?>FsI ) / : h?O5YXl 6dM J]^y^r>v:'k-pnK=n w3l % h\ hp $6 b\ 8 EM ^s bZB{1YU3/  9g*M"M{R+  1 xh2Ut2<Hl 'y]U9D|a Eq ]+ 1uVk 4KY*O 2~CoBT#Ar pt [ , RAC 23h1 Z {+OV   o b i   &  q =R %9r Pc b w$\J_1] k78dE4(]\O@TG(X.<m3 4c d-6 fuw9  $d [H 0 W ~ J !H O>RT$ >+C  _ (n = l x+x4w_=t= a{=U,|[ _ + dDw > P#  ]}<Xn_i 6 ' 0    .  . q. ! TAw~ RUp/b,?_[ PkD""+EI'+ [~rS\/)A mX7\sja]K`iMuQYqbrH7O  6 wN  W` F H *#Ia8Fhh e 4 } 4## 0 0 Z '  k3 if=p00I5]9{8!%UGeG0juL)81 NRl)Pr3{E/ ;2NRwS~ )+2uQ0*sat a5 * a S he : d \& 7((9< lo+   [ ) ` P  ~U|[JL #H @_7emeoWok ;Sg"=UxbE I EbP}X: , R Ar4 |YVY+;[FOmn_<g=I7h% e; *T # d  >o M l  q th  .TJ$+bYeWx8Hkl WZO\s >Kz%Zy/O(fH>v  JZ x  ;DWX/ m  oxfG/ - t7  c tOY,IKE[=`$GmA  ] ] C. 74rX`Z\W5D X+ z DSfd  # ! GR= 8`?kf'Q| ?CyzQ'ht-{_NW  SG? T 8 Y] p &=QC8z qssc  r}"(gh(@vDD (1|Fum ~EWArYG UJ+S z 'am&=f DQ7>qs dcu x +e  M; -a N 8>9zx*e'!z\X 'x.M\n6Gvh   tk %( W5cZq|T ^; %m:n} 5TD=?N='$HOMi?645"(EN\c s  As W! l / R4C7 7M1% }!f 4Z,Smr>AF4$L'K|$"fZ <4 6FkZk<zd h ( c B  x 2r~tJnfW : " ?v]`. S P'z\y68Bj C 2 +aS $ r3z n F d j+RS^:~<z{7  "! i VDfzX[GbW o6U-jz9` :] \ j- oj ` Q$V=yP3iwe7;Pc{t8BbKl{L MmWff=*jJO|"  !Z 9 %1 ]ui ] ) 1 hE#wvw D PV<A) B ; ;cE>q k ,( ] "N%;o*'T/vi Z`"g:X6#?lUBtM_`: P\ ; TWp7+Dn}<w4KC4nVQg .R V  |t} W vF B) M j M Bb _ a ?${*6RL~^o x_)Z[ usrJi/ @ * 1Bc-ncgP> = (zy0ES3rNKa\9VDlXq0US_bJ|l&Lo:]< J  ` !y Cb{K<y. ,  1kHQ  @ 2 h; Lyj}aq_VgT5#{ |aIM ]O&3-oj 4 :/A-1O= { o Z e(g*r @ B6[# r5GEt/#}I  X DB l \ t k2^ #M?4P m ? F30bm{K  0 `@-A +f ".t; E71J=C*   h ]>"( " ~ ] E3o  mX*e{#E9Za'Pk,uRah[Ql]tl[(TyP H)" S< v  X  K[9{|<o6 s`wi _ k\^;}m5m0g>0iRo }m1 EA4  6-\ r X;;JR S>^}~ 7xYk!7pM l@  Z5%+N~;5){uj{zS='~<l%@3%H -J- ! u|IR D V , 5 9 # ~ =  QP 5%"f`eKZG'M)Me` nP&E-]l 9bq;D 5E | e $Q wYw G(`rl Sq |d/hhIKH58s4F4XpkfS 1 b   j  "  _ <j h { Gwv" k|o=hoiZS$CXm*jYl^ .  =  l&y  CJ  "2 %C U O"  ?r7hHK  @ao4L4BTa{. F|L >\BD7m  1 5 e D ] 6L $?Y< me| _   l[ 2 $ JR Y  tV , g+ EUnU3r&Sg=r^ClD {Kmpcodahs_:dHLNTs= O Y!)^KQ$Q] c V|$xj d g  D ~VAg V 5 UXN:I}ko]rC`XU{w.JZ "dha4kqbCF. `E}U#"M:6E,gf U& qb[_p!tJ8:_t  H )D> F S x X ;   F W  P7   & ( v.AuH 1 t))C5Rl}2=';qF8e/ . vT^E# @Y d"!M* 5J(h|9 jr $-aJXYtil>S#L%G] # *F# Hr  # l qWE B  [#fxUuxhVxkeb o$;+X*f%2[JC]m$"Ug U  / dl' D BmQ@N[O2W  @w)u6gq!6-,:b0|n% N z$;y1| @pG U H  [{ < ^ $&d.9Rn2/lDVr( " ~Xo^$\HAgiLZ%BeJM"o$JO2bSGI&> q?ldM/2, RR # z 4 l`TL -$alx [%K= G ~ 7 ?~~-(s % Qu Cg1yl  /8"w Y QkI9||If hy4/\duc:,e(*&O z.EIU'l-iV-E1X 0v>!OOFB 680EH  M}j4V"k;9"Ph^[.q E} >.|R Gne6Lp    KT k LI 2ipyhW@3e9+dkFLb o%`g-e.SABMhu,F)* 1  \ C)Vrt6f @ 22 {  / Qf- H\M,.Ezkf"r/G=<>R_1GO^Ws*0w_ g} z  s E L 'e  mg?bT4?u@ VP;k?HeYF3~ K Q 8 ) = ; )J i ,Ak   No+E,@5, $!+%->An-U'L  I9U*!u-    0Z T o ,CI x '^_u v  +t 1N ]!hL 5 /S6V?a.B :$ kt: 3-^ 7  \{ 4 E 0gI _ tQ%._7"-a {H iv3=c"% ?j# ,7mG]?wsLV g3~bB %0\;^6    V { p'B v{ % Wj h ) PmK? I Gb ~b U R{92jvnfR=zoXDP{M:VkgM~&6+V;Mx]w[  uNve |( }_? 4rFy   x  @ r       FL;$B I ;v_ dO3xd m^=dB\fI Lq*vK3V bA |,* :|?h'+b`,|Sg  < }%'  jjXxVr GUNWo`~Sy &]u6_ G gIvSsE8 &5 h q ,  t}   /]D"<M .5 cv5v.>3Kt4Tz~W%qxwk:,D:7 fI *XaN?2`He\E=_Pv3>d"_<,?n lXtJ[OkW;Hs1h9~- q  N U MW A & e+ \ *D:%F(;!G<2b S  3 U 5*A7T#- {kS(r6^!yqRE< ? wY 0 q<3tIh- / lR  I)I g { }H:t wv+ ,K e f ~: A , "/w$ 3n[3[yAzeJ05 ]l2Io 7$q=B|6% Rs ' ps v9 K=  ; > ]  } 3 Tjr.E;I0po`eP=M-? L _\ ,*{   : nk^p  A. m/g ~Z!hT 8vDKb_z0x&xy'"<! [_s PX (i@Kx(/^ *  Tzi t (5 3 M b  \^g&*,5Q2, 4Lx-"_*^\L V z K Au l   ia  {D   hN/r >EVz?N+a M F$[pt"J0gbP!SmcB  4'lx h!r= xY SE2 \{  X< cN h`hSsV rC H` Y~#d%: YfL0+i u+ ^OD="}ms A_4Me$(\" ]DZl2} b  b >   E4a@V:w $\Q.tR 4; 3  [  y" $.t } "   ;JU ^/~qzpo3a C'[/6Jx"03yRg{V $h .:NH u3%     9}H6s  = D I y_~H'.Z1}v|". mSJ 9 s V/3 q ) ~ J-XiL+   B:dv, . I& m!#a!  D L !  [ ( Q W rO + tjmmMB! O-Q\?[7Uyhl0zAO[s^z|>z^EfVWSDq)jC 7^o |S  {Kt l_  x qnEQa* NxY AI^~ )7'/+KxLKs:$i )-8k  2 "= lZ~;r^e\`,g  9 >D F2mr$Q.3i%c*SLNk/@+"kV@P`'UM/K~V0>r  92 " jL @3\ \ H z &jo6Ysw0q (1*D:Q+Py[ xlC!k . D d z] -N+AABR z I Xj7u,zO.]aL[slxmvQUmaS   <lA%P9H~&g@ 4> 5WU D$ !COp,V|={ ' F 7 B , <yqu-Ux%G@ 7+ O % {G6\?r+0pTj<6!HT[ A  sWzY5De3 Q V *hQv( "$!gtVr9+FIT R^<x=l,   mk  +2 lf r  s h  A Q E t% W wJb5d9 oOB|.Ao / 1   n LLC . -Nx2- Lz 12,->=jG%:rcMp#eh6%mh"] QQm7:-d#OZHw %ALTV^X]? p\5 Pd y: u,8dSx: ) 'g~@e W}"W\D&8Sa\^fG\ gSc}? ;# : I9@<,c9*_`-<oGtL5/ ?26ZW4qIZ^'nEx;&FJ00tU 3G_+)%) \M t)l k! | y8 E 3  b 9 s  ~NM|[fh'*Q s KsUJvZ2)G-pTo= . FrqtG-l'4j)/z!Ll88ALN)6RN%1FW * E$w+.k|n^:nvqw6 n   K'%A1!n $ M BO8F>Lbr   s~ c 5j qTcIO)Ak-\8;,u9x#$Q dN20 c,\ C4 $jU, 6Te l 8T U Z L6  ty$ T}!GWF+kq_@/+uhy~p!J M - d-&@ m (uJ8<t:s^ ]1 M9\Yyo$ S ] gH ; 4  Z4 B8_z+D#'54.O#7D$&(P?B y! CZiPH6^NWYDEf ~R.*fB p6}:/!d N>kVd}`PBz?Y z `U nlP<<R%87Oo>SIl(nQt cH~, vE\U3 d>H 9  l\ p H $ N  01Bvr% {B$ b@%8u c N : O n  A0  <l2^or# l]zpBBiX u f krYGH@7dWtU{!F%h beR ( K"ih*t2 #"$B| < . $ 762w!a;1> +5S ms%zo9A .j +Ho_WC MnK{.>] -@Qh? ! Fp Z f( W %Y  G F  5a`pkDh}N >2+QR+k  cN, `  s/ ( ^L_W  ]esa " gbQn te( !P`!Z O l /BG!% eZ } e yx8 | d " b.& &,^!j) p yC :!V25jw VDH %Z(nv ^3 X * H$N LUSJx#z0.3_rx>xM"sJYa#kQ1 =|#-L\& ,hxJdD"wX 3l (.F  \ O x Ie ]vi - z    oH*4`58mC(Pk ,>!u9peI, 1 Bc?VOS0VrGE-k'g4m/zZDWaPQg NfYm4> |9t/ob6 `7 ` R@8EV  6  e y  1i k    R3 T w| 4JwuXU z h$ nxqE;nfa 7 # r n LKTQUq.|W 2o$j 3- Nie_Hu_L~ > ]*1Ge :+4n mL / HV~   H tp !  p1o  LsGuMXU{g IOmfnyv>]5|vNYb]=VaqzjfdY-mU | _ D  [th]>ti C a l\ EW CO.] S >}2v40~  V Y lyaMWsJEUr2|qPG'T`9zp^C]a,?xE0$.?c'gz~% "h7A e*  b  L>k=,fP@< ! _ { Lax>Fvv0( 0 % u/ktq >SM4Z  u HgNi1JI. < NlhmGB vK# U |- Vz$@&)O A ` =  '_ _ 8a;]>m?K 2 co y Ow Q`R ";Nu WD/Xme<_PJzu k Om1n9`Z~z T3 O'l >fop M +VX sN C P s0 gvK%j  qLa& Y G5F4^wJP3EvO( H| n :Po1 ,  T%JPBX x^Abr$\6# " @^b ^ *`H I (: z B A@Ry\ "E"PX'> W#SYk<# i   ` cH=9 8 KSM5 | ! jx ) t_Ujw%+AI0.1)h7qMViz _zyNX 4Ys\%BQSc#(HXZ  !#3GQJM *E-r #}x#e . a aQ\ iQ     5 J  =T1 h  8@Ru v 2_u :*i:mUU}HC1I["C>xU`_  - ' &q$c<Zw}<#(@O P fGAnzMraK;iY XfqUAXKcRfL 3"Yx qcZ 0W X  )J y @ ] U7   2 } 1 6C| A ~42s+{q+h #  d *  2 { *=x*Dq@IlgA 5 le^ 8BdGqn='854jq3^v&p]4x:Y (c|{k5 X N  ( _? 9xZ ? C fe V :hH  0  `$wE*&|o#`Pi^Z{ju8 T - lBK=)Cg Ize  ;&t l ZD \ W rb R 83\a*2g,  z _4F1Em>7 ~jf;XmLu7y q Z?Z.~k   \ 4 pL Y # 1_  r>%_ ZJ@ , nM_u|h_ FN+'dnp*WI}!  z,jgE(<Pdr { >& : j iz E R g 3, ?$S.e/GOl_t>4Vw8PIWZ;3yH3}jOc^VA9 _ S _ko|Ji, p PX!I <(0% p4@N ctGB kV |) r $ tO 8 e-2Ei- L38 v8 lRP'9 ( m* Weod jFUA-C=rb78=Rb>4B;~9GJ(Z5\W7ad] r / (. 6   S~ oI  *}wnY0dgoy# cY&Z8 : g  c_  * R 3 S B e hKmR38XW!R6Fn OIyP{k oSA>~ }>Di*Xs}8D/ DI2 K N :    "N 4 b (  r _R  ) TS U/HCw8 ,If[~j@=>:Yb  S 1 ( t% 2  Igd;TM@ `^y/C>XoM NCjwx(FaaPf[/Th=!tm  r  "` Z b 1-     9 $  UHCv| i?zaGRSDwD5T%xcvSjQ%O:gv+Cl.# D piOwdH \  4 < 6D4 Vx E3A>%Ae{Kw>I|*@]t-gym2) ) T\Z7& b!{ p _ ('"  X( ;1A:;Y?d0d 5@ Pf;Xu) +wa!E aR*nSx 9;N'ec ]REiW_ B(HDS R[ \&26R PB]~  l_Z   `'L%GE H u kV - v  n 2z@5 c?o0C(+M_%r8% yJF3hH6xBV ?aZpK$ qiC ;SuW)1Id*yu*vP5%!" O  uPRTE c< ~  @ ) i b| rgL { ,+ : F oC &ZCC%AZ:bAPfK #<[D+ ` ra8u V %L~v<>_\ *~S5Ov(x< $ m S 3 (Us ; KN d w * aWI |xZd)T T% fc!vF8T UOOsF2Z3 {2GLhmh3}3Cu\-]cIm,P c  HX #IJ6 !g$a5=WN 4m3r@1H&Uc>a>Q(uN5u;\_tf|e 9 s  T> tHmrNVjpW8L  |}hEY 3q]-2X&%=1wz B     n  h ! Y|ep n< ~ zhITBAM} p*AL"Ca {^N% d&  O  IPL| |D s t uJ% !l{Th!F 5xY1-3WcRVNT&fk: %p`,r X0j9W %$.Z NZ&S}R^7t\njEcT%h`T4B#qhhBt MEFO,1S `% D,eqj-|f"9 iZj.7 v2ju*.>Y"@N@\ ;;/v&60       {{@  8 v j B Ps a/ s^ bx|xZ_V%$K8 T[T g?5*&F?4ZHm8Q18-ZD:T  [~ J (pdv+*NE}W[-Ir'50b%?PL  J Y  Wv  e  !6  >  }w \  j @O  c U12}\#w _ lq # K' >DGn9IOKmd sVn1*l.GXB:1YTvT/qi  N   ) P  )rb 1UWD ' c  ^IWqI6!w! #Y@5V['Or>ptlAQBTP<8^m.WRd[ / e u  ) :q%~+;2ECQw*d>AB?9P&?MoL8)jqvM7 ;Zp] =c ^w UaxU ^zmd,K~r"QY6@Z vSe;/RuaQ w]qP!)N/ 7   @^XvC5=+)3 /e&, >1 9 g~ ^h" : 'Idv: <  ~qqP; "?Ce  @%]ZG[ PSnv 1 %H |k^\ Y; wjI[bistcrntT _@ L H ] w m `J^a[KS}Ui5gP U E=GTr5> KQ p R  L#0AM7|ypP & ~4_ [ S  qD,(Pwf  02 ;sS+3",Y_lcT=2S 6d $B  hNRmIY 6O go J A i p] 9 g MB$[=P8(a*&'~I~~PYg<PMRyCD$Q*Rd|]eO|'$,3w7}4jEIhVy%9J{(wB0 Sl G w  * qzX6qhD %uGuMDc"a5&?-=!etj:'rZ%tnJwC '9b "W (h+ R!03'a)jq/J;=Z U|%hW=&~|xfv(ks,@32p|! =  T> R0o g 6$  7 /tdn ".5J|MJ5W] GI+iskTWczea5p)gV-Zh9:dfzQF/+8yL;Tdub@|z\E{PKtpw?!dS` R|  RK b X} - !7hA5 wcw.2h9#zE$$h* 0 H 0 Ed  8*VQFFx'K;kR$E  M=  ,ESay.N?|,hu0 M  y}  m  }&lpXRu1b>1KQ6j2yL?EagMY4PKwQDt)j;ee<  ?  <Mth!.pV80lEy3y8M9(jjOu>l_w0:s@,.d*;    q  =\ ._p{$@X7)?LvB7Iv 3q8V2qoc'`N RjB/h9t,(n ^ O'2F[\` k 0c Y ^,@W|cqp be<0{6GZ7Iw|YIlA4cg`*$IX!EcSE >fA u9e#5 n1_Hj5 aY#0rP vhJ:  rYk!6  e 4)i]8qGqc3zj5    mg  H,'BlK#ybJ^i 8al 7 arl_WxpvE y6V iuqyTg!w L[? ` % 46h!Q&Z@:y~>jZ< .#  w!  3 _,G4u?UuhxrMn(.H|  jMs]"7" A m}W'O=.N;D-Qs; [e>C`Z%`f S r p  (>!e- =1vh R  8bIL  N R  ( 8  5 u9kOK+w <[.tG\OZ qvOj G u @  8 {  {pT2&~G ')-c8FKq#Fk/8Eh}(y[8 4 x gY$  }/< 0 ) [ e \.fXCZ \P=dzO?,-zZ9 C H ZP2( gN  'YgAjuzGjw3gO^*gl,%S+U 9!.V t-!9>k0 `  Es  Dw2Xz G, z[ ha f y>=Fi27GZC0GE5E{j{ 38mrE6q8+ey#Zt<qQ  "ET)i:  x;bbV9Zk>L   s;:O}U^W|QceczbVo { k[e1jBb /o+=#ZV1dsfU]?is2V({$NN 6 *jX+ H2WqSZDq(dj% Ld   x b 3 :  Qm?rtBQ5yc/ijto =xTr7E!"q a/])e[  L. 1     9r@m: ZN$ ~ cE2@SGRwaPN$*;zG )lE/  2  f tyB'9 rNpI!`\V H: h"O2V; <  u>JI i 1  `9;=t`k28A@k":i ?s KPEY &  [ W 4 K. A9[ ?b   wb)nUmLT!EU p \Om,1#j ^ )L e H LZ +y j^ @aKmk0sEz{axHWHSf.Uur@ X1 =t 6E*M$~q  u y]kkRev*h%%v[efL QM6KxK  rp 5' f k > =W'kT~CEN 'Fv:(Lj~nLl_KZxvzgNG6B ' %  _R<s Y}p W1 `U0Rz4~@qZl{kga]7}2>Y`W*ec}k@Jp{atZ+zZm^7-[ C"nN\C) Q4C2FhDxeHC~fD_31Z1Nt%s & Q idJ   u z `2yoiA+: ~-HYe`"&]1Bg!?j*lyiY5~l$"QZ @6ij$Fa~M~W3NTXy*P.$DS; 4lV-=!0cV"`5uP LR s  dl T   -u a 3 J6 tBW$5@(`Rb) & {' F { lI ; R - e<>X$p:}>6O- & 9cX <vMh8+$_o+=ku%,bS4AzU-T<'~5|7jass I,#l C Kn?-0z  K (X IAWA5   d  U} 0 U1eZKn8CA`}/LY!* /PMQ  c cNvs9 E2{u8Eo/kB~jn7A+aAJ&L+JwzSL*X A  v g - 7v - yX T#b p / i $JznuQ:")_l8OjO 6epcQ@?:5IVwI&\YK&h{kZq| AD N "  r =  &nSKVA5C )Y #l OF! ! KAEWs1 :6j/P|6ki5i0f%l `1H!kh/QPPW6 JUTh45?z'tbBf0yVW *MDM9rb30s UF4W2Zz 3 P    a J )& (T\}S9UVpi>8> ;j ey0Xtj".{EaXZ-y f1`+X],o# {`j_<!Sg5d  N? M 5 6 C lg ?H@ } RJQpg%R"n{+ o[IP `q ) kV     qN}L9bI457 Y(}(uF-kqb6.Qv%|(_ UOQgKtju2kgreH " \ '  ],K^o  j   F -   w)[jo}XlH*1m9UCDX0i[tsej69yO   B4O*Z@2q* WIsCoJscS3 fzH t5XB{ s("X:y  .    l ~ A  fE: o3{Lc Z 9!4M?rMX_F-@]K-:=?PR$ej6XY4\U:7`K-/ )  4 7 P( V{SXJHoa {P`_C-$GG79l):  8 $ W cN }?  97 L }> ( 0NAwqq6V%rk$X[p#OXU=9KOa|Z=&njia//JUK ?Em^SgpV {c3L9i%&G E_hqyRZG@T PL O I H Q uz{{F Z 8Z[ 8 c' 2pHn<#fm'qbK#1Bwv#]}lX~/GTR:5(K+W[vK0 ~ f qJ  Q^ ;7^G6(><DHHS>H! ==]Ca=S@ZiE`joBYZcS_i ' | k yOUC+  3 F)U % ; X J c  vb22gg'I_H;.[kg@Fy,TUa]^zz YYRt}1  q kY^VX(Z`Z*bK#u2F5NXN@#KN}|VY<: 9>    ] n/ ,Y  7m)pZC *u @D A_:LeSnM7C|w+RY^u9.CX|H1pLN=O"`wm  ^!R.  m@z " p X D h    _F'o8Q#k f)h1 $ 0 .Y \^ knE6!Es8ij7I\/jt)eD7U 2=V[ d;A5~pZy0kz`)'1[xnz'.(   |ZJPM\it]zvpj BK  O)Di<F]w%)u]67W23@*83SQ@S"Q1>t~324)oDyl=\sh5.> T5|RMbH?l+WIM"4%H0KX.J;>z   FP J ( 7G{;*"|`{H-u'gS qBvL.iUx-j57Lz-SEi IPn4:6R(d]@aJR  ?.#\mj =40] ~ |V l$!LDk UoF o".nMnEfLDeUoU'{wXE`JWl/JUP kSA OQ%l!2HX- \p@\c)i 15*v?8wZKK1) A f@  -VBs*\"p_(+%IS@H8wG]`X_|%?,?kGM"Qi  x,hc M#s( \   F ?z TKG`#/,BW E7~s\TK%4;@!dJ1NU^w *4s L 1 (a;IuFZ_B@Ooqr  -ef' Li`'CqK+?O1sQ8TE//I}^vZ<KQU1J)&kB/D84y-EsE>|,: |w&C"-itIn''*gP^|    Q tkAFM-XHeR*ea8 \PJU7Ew/5LC:Rl_ P  ` /$ m  h8 !c(q9H,6Um"5q w3MqJYj?s4 1f?4;w u?f6CHF { d n u M; {h ~  N a!tm[  ,Sl f|&[&H M2"oP>:5R^l1F>(c{CVD0hiY|4v\M-z K%o  Ch0o/T3k5i3GlY GU,K.! %4 L T 8+8pqZuBLT\t.jagn2t`m*&1.:Y?B zrHF <K;`V jL V Q _zH F W . 3 3  }42ts_eP,cRo! O^]1`s6kn!xnMs$&=V._,MqhWr8qGm&2)/#E6T($w:jhBC}_ JcVo>d2 fK iV`ObZ ^b![eQ4?/;f ~%X{N;L2ZQ.h?}/syH EdGVr)Eq"3[S TrR;r!Z@: =v)FeoTa@=NTV#W3b-K=FST  p#Ate- jFw \3"nazxq~tpHuT1 #U^%DZ z1MAS7{*!'T~WCSH|M:8Z/s^Sjvm0hhv)sQ*[B2*}L"/U\-*ylty?P3x< $ bT=%iubVo }k^7Hb[^L-uKr5Wf\zb'i;L[^}|!9 "e?WV}8:" V)0iDTVd~y.GF,hm4)Sv1Q}Z97'(V_O44f2$jO < bpE'J(a,)XI_ mxzbPw>r)QqW; t 1#OB -KtPcr?  Eg>Aki> 9: _kLM|!nnn|F7Yn|gu~9XfZ9uX{|$V9z2U^*6ttu$A&x\yxC$"*kG8dr'glw- ]B3NFdUKAv+',%Jd?nh 7m-WW6z[Z;|UM 6HQ:.p50xbcv RQmQT6AdNMw$I(Qo(kJ:pOqm*QE~iXTOs:sZy2;HR93{L:Bz$0-RXdo  R  7 ( 8#uzllDuNuGTQ@i?PVx+Nn,-C-l!"^k?0- _=N +az"I!;Ws  D  3(6 G7\2G? 4Y3 % hoYE:up][,r,C*rg|A%] XD8va|LG6QOcz!)&$\Rnq('C jUp5%FDc Y{E&! H V- w1  9 $ _ 5 Y As^XV b[G=jG'2f/wq\O-LHhbbjiWr>2vZH=eNoZBxM,J7~sIV9E\xxe a1}dsDGv.*|[]O(T)^}i&inJ;PDq)KFV Muzlyc.j>]WVQ/%[[*2*+9 t\qs"n~3*nigJFapUb!+FM3 [P@r0sS8CA0"bhQ&HvSU40oQ >JrE`I?$oP)V >m>|ZX( ]* ?rf2{3mi|-{jNd~O:E<K9IhofT ?  x$NHZD$%/V)e*V)g. 1I7TA[RfcntlS['i5` 8I'h?C+`>vgKB[ee%=[l953T0{Fa 7:@9^AL'`RnD[ f\eNO]a3f(D~6fii}HDaqM5kUT^*")sCS(6&Q.?J Pz)M]T*;.[y1>PRdXC0upk$bu9G0X%g33 I~d9LHs'(x]/; Dj)ly(_T]yj  '_2w;A6TWI6#8y g+E{hM-%1:#@} J.}#B m?{xXm$(GRog,pI^LuqHAmw ] q\0g -eaWZKS|ri[itq:!hVA3;H F LL P G YE  N&"5fza%:)Y?GunYq v/+4H* dv8"XRco 4Bo6YCGxsL hQkQbt{.tAlts5;N@^Y.1a++Z Q>Gy/X2TbT3kaA/ G?P!_(fY% wSjxYj9U;!|$qt-HV/E2Gb   k&unS`  RLH["=3 B@FXxwLI(bY0-:= {7# H)+fL eXj?S: `,3d?6o #6@llPazuz"PV;r9q+3{\N {u ^a vUDyPS;pu16][>)8,Y#Y;zL*rIZ9oE'4 lv+0Z\z7B$Ac/9Jm !U"g^*#hFYydePw~PT[V0[YjSqIMH]j8(4;@V,J.^q^5,zG^#~ \ O=K%{O .5\z{% rf{F?(TMCg.zb>6Ri(*?$q c&TtQrjOmaYP(54]6:zN'#395:;`_KkcseBtopz6Tq] Jb) +(<@kIso\kS -yT#\uEN3Ma^z :hBEg8:&^:Gnh:Kf2OfldnW?jY:'y=:e,! BtK6Jll)HG0YsLt*A ;S\TGo.l"u9o,>O?AV&6sa24g E)Hw)AjL5K nE503o DFjH}Z2V  ](  { ArTddr~gSyG2L.y20Anb=*v_tJ S**]  s j " H . = xMU*VVv7S >T7<* iyUc RU  1 | s \, D be8LJ&AQ-?^)-RaEI7tk-*~VZNtN2lJE|Q+ZvY{C&I5<0dw 6KI ?kD#jd,K~f6e)Zo"EMagq_th,4{lM_ZB=n"rgOZy"wlKI$OYI{(ERBl4g|X^AG415w]fCp{|:l)ZZ-jqo#<\l[7aa$6,=|~([ #}tru  ( s_ /!3~T]D+ ~EjtF`^Q/GeU% rA a;vLG%7|2&C"7[=K,+dGXTdz,LuMerXQ2lxEY _:p%hZ_2= N ; =6L g ' `*=<YhOhL7 |_%ao;%3 4`oaDSZ^8ZtO`mH _Xc.!  * ^ ;J**&w{DC!?0rVCcvvqK}mXqS(#uC ; Q T9 . n & N 3(K%vzr<t|pc+ Q z%Mh=vCk8g j h !| f-   Q E$P1T^(;iYE:vphx$UjLcR3.u8N\&PYYW[Mdo1XJNF_'_txR,V8<'Khn.JwJ,y}(P;>P`z UhN"74x}TV|w b_a~a 8=]7rvn~Sg+'"e XBS_lg4-J^MhPN0f4? ?f%1Id*j7H7'2C"h I^0FMfS4i'YXoyBr k' ^waqU,;jVS$f ZbfWaA{~, dJDxC}megR:W:B-8p(|gHpNa Wk_RrY5M =cvog*y   U: 1 ' 3l m,lX\;hb_Z<]?g;=rj\W/%|u'qB9:Rav 5E kK)U;JI,G.I4 5 S 7 7 F s4EE^MYZvfabGaC d HSWYy]ES(9( #0  6  " YP U m ^ 8 e fxtGq4sSLKw!uM/*oB={X J   {  %   X C'  3 R13[L),DOAzn@;@/'s9S/M7!^-}E \g.t:my-C?'^ e3j!oxE.90l5in*G)- k {J 1L D,`=[}g4_o>R5zQq,B( Uu,'6v)=>?(_2%/$LMDfkZp0hP0>uR]_`3O^+K1I  wgu/Zr D M^jGm-;zS;5! '  :~ 2 L p ; z{ZCd0k+`ZDJvm3jZUKRH!{ GJ;2o-Pe.:A%q{?<sH`_5?PZ&1 ^OTu(m3]I s wn ?   f H_ gCwu{{ )?AbUoV7_ H%blJ'@=7!1]\go0#AE+|Z1z(YO_r H=);+OuG?+h15?/z}|8 8   v%d+hL[Y,NEm2=o}>N9453 e h `W 2 Jd i fD /@ hy)AyGlm^iM"'4f [u_pwuv%zk<cHWRz[V_aS+N&cg4!N"WWYZ9dUQomz"3e-bqHkM  ( 6 L"()*X:'F;iC3FhA`r*D%83GXo4}n5R!UbFyH~ZF_HI X$1~:e!Pe>HOhAW[sxM)uE=@05b|aRg$a'>( ^l6]%TuN,2VDVFS8iv&yu7a W# +,U=FxstP 8mxbj+@ xT"C q O^HPo:bB u.o#CFq)lXR>'Fyd Fj>\F@#MbWu.8><(9H3 HDK&G~DHv06? s:,a$X$lo_{?.m<\'1a,k-+n@@X ~M5PjokT6k .`QoS`Z?r1N&{2}W8 &qcXz%<^Wj`}Fa)j"t35+// H3{YzgX=*dc( <_Z#!$uGSV\%MS!"on"[1:%z,qvp +`ls+-ISK igI'3} FBxt/ F<?F$Zf"1E - < Sq:y]8[+9c'= H++%`b>Qv cU7TP4gp:;e\l M';cjCtWN:1Rt]FSw+ xyI&Tl+v%DV"L\}.nI `IFJ&gq 5$ BPuG pv! ~x4 ?]R%0dr2bCwNe% `es8'|q1;ONd`UW ;j:vq/x)pdWyY+H{f1?}(.4RBN_+,d)"qnMZ<#O<+XIFri0a0t 3f]T2-MuWXIg6  fWG, |9% 8HNl"QWA_}1]RQe} EHU'n 9pbD.B@I|v99 : ~t# <o>J7*{|;M.9jkBuaJgU$ , `w{|`UqQ?T~7Swm'cLdxrDZ L-2X? NO R /unFRD%XmR|$Z3OO|S^CS_H"9@,TB ymE!q[w( j)p.CGDBIU#m5/<q+`sl"9mzC # -[L8mZWvRz(]<67@PC5Tv;kKLTFhoUyka@ 1r)dj/'u1+ &R[LkZ1Qr1Y}Ex d:xE 7 E~~/;;y[S*?Q0h7WXBZ9 1S:[;/W)@qI~z k|v `v7G !KW:z61H9]+Z`%)fl_mp#pXTX8*#]$:3A2.j8n"( oWgC*RS aMRt({3qTzOU2A {.SaADfE#wI 5AU  }H=4^S 7( 1 L j5~=#]d{W/r0"g\{ bc  jt[{8tm;Lsp'*/Aj&g+F 3fGx23ZjX{%IEeq.77r_(IMagA5L')b(crpY'UDJOW9?t}a~||,s|m -s&ShtNMPe82hK [o_UR-k }V`fzAz{ 4[!-$F{U.c<G6F7=}eTT@rX~zY8/6r=KM8^/DDj!:x^jP/3?e|d]V&m #.&e{eh%jL[ !q 3 TgCr&XD,E] Tw_qql:X,K4OIdqLjD9Hc[!F(Yy^Tk5={m*R C9yMUI&w>5)e Q)"=_OZZ=38uZe$l2I,bqk~dsQ*5ov  KTQO3_uwXI@m~]{9N$#0w(di{VjaUUA -IT@z{  M &.{ @VT j~ K@1Vf0fhY,@'Nf-fM?yUW}o$d O2KiPCe|wJ5O'o[GueC xsTf3GM*0"vu::G!PTF+aQJ<::jM%&%L K|b [ahcJ?G/irJ_:uY KTJ;s)o,n7J=5,|N|H|Is&FQ8M?xA[!uhhY>Z)\@O1j*CFt~ B KeU[937e  P Z,.=: >g`I3R,jj'amB#B|\oW&+e%6)`>~l ]QP@ln59p2 k(deL @`v eg r S l hs8' S|?apINK}HJB M[jHLI$xuZx_Q (CWn **\4_5v=J#teL%OA&QSzwWE^:s7PJ=;N xbj3gl<cwj%g7~{gXU]qj=t2 );@$MuXjr\rABQ@/m&R'1c!Xjl :gCd H947UL3! p?7'i`n#IBGR|kBzz_EG42# N&G_qvsg3R| /O::E>ccm\A/#Tyq ^HB^`os=r9"qN{:7QY8r> Mg AzlBKK@e 9;e.2c1Eo9E* I}}3aZ;A*S+T;uza?oZA)saHl8trWJo.&k<GhAyE0E 4.  D  gSedM*_uVcdv,.j+, <&7/SfB |R2^ :Iq6 7 NkQY&@>?\ghJ{?g [r+ [ EBe\   P TUUo O`XMAk^[DRp5/'>Vt+iS-a ~` W ~1 R \ZM -5{bWy -%H$EJyR!{0kc=AG>CMM6e[~2yz+6E?]vH:SvgoW8@+! ,W7kS8.1Iys6u`C1+1Hn~ 2?:_k&c+va" .1m@iN/cfkRTqKhd 3fwWG UEkx u!? jZk&AK=Q^]/7t\}vWR<6* 47hQuT(F]r?;$F\6Q.n1T9&=} E !_J/s|`<fN_^W-dn>ipzv R6q!=3: fK3dr[+0iT,yiMuD.%/.v5u`ri^ ] - N 4:jE0,`jB Uk~4= 8's *"5S6xQQngzldJ[0 ::9BPs| B G  f:k O/` VvL4$ /L$V-PNKE6oY-^{[!?\nkl!xnpNSCT]O+.2<s%\]7oM`GE_0DRlsx^ ]+/g%dn|aV2r]!,S9P5W S2DEcN(EXDBD hs86eHXEX")Vx:2s9uK!` CV!5t$G ,\q0=/AO[=;:Hn}m-\6P3kilU/ ,m=/k5 CaVo)TjTd`z%xz[-o>oVVjb/3Wo[\K9}VaitP&wxD1Pta:)Vh :L`V>oQphStB C[g[qV.y1?.k`iq=N^.ukZb  )h6^Z+l%%o.u|&dX`(FO*h>R cS@j#JIK]#V_L6lTtX*wWpKQa Qb.` ?  ak o ] 6h# aumrge&G 0{6p?=@)~]z}}V}f""n[ k_Abwud3~41"$|N9i+?bYBXlFm#K~)BB9>a 5-=]mTRBmXr{aMr~7>paQ~*kFrzp5Z [A)_c' l:B u^Qa.D.#0&4{~g"8 L9H?d_H[?!BJ.DcKUN<:KTp9;5$ `! HET`j;V_-)8a  r[a: ^`Fi ]-NA&qHdB!3jAW%?`n8Wh@0+vq8Y]~vky CY^)OU1.c'oRvY;vcm@We/%Q|u-[?"OM4SbbZ)3r7v,KkXnzW<gpR,&ixg+$9{2Xs<N.%{I3M^ eRfE'h&~{w!eL#DH9g;&ca)-R:95{t) Nf~rf y0@Zq?~sLrCAO69[Zsn~>ogqp@>{d-'KH B.~Dk@9%$-Uc'o*FJ2vga )i7+nT[z,qaXZFL1fdUjH5EDEnRk+wz{~Z |#xN)xrO3mbu)'M* ? XtIL;E'/53u @ Z  z @|v)wPM~`5$3{JGlxl!P [8RT;P ;sp;_outR%nug e [ f*joP&2h`8/MLe#\EQU6F|isl//<olGFC yj}G9iz!fip7 OUnb+60?c VX='wWa|XE&|/$l%St5ud)kYXh-,{>4AY&oS[^'!? 2f7 + SofAE!p}<k|TiUWy0-&t}J+" ,bVC j % osd5c ,LB.@.=PDNApsVZiTDDtbav}m.!Gc5,4WBK/,]$-B2WP nj)y48 >[#]{>{w9KPHauA+g5]d ;3 dS< )L$ V<"k =OR3-(iXux]Ri<UKnDom,M b R ?. ;"  6 q'gt<lv*Bojg}Ez #Y*RW{k)t)Nu=(wyr u " g,17!]:xZ.IuDBtNfT~ 9vD|?+43lybAZx4t=lS{}' gE}=E%S/LZ_S^R}qXttM)?zr?6 Z@iK .gJIS?fIwZI:/\*x : Q5Ks+! j)X>  ||Uia l@PO5WE>hXxdc#$0'yzD) QW&o0eYzIBjjrQ$ F1 35#:}3`lQ--7Jw^G6DgI /gx732kv}lS$4&-CL*]A,S.lMx T`p"DDR(TS989SYAaV+r}"s$q[pD$~g8rRi ,Yy{{I1LLWL=-UnUF{J{_zb+ |Xk?G3<[(FR7t8 Lw\/(xD  1  ^ ? ( < `hFc[5VGO, T>}J!A ku$`e\"8 t>:,wB DIA3H?w|iuRmfsHNx}R Sg2,a|6ggAjY */JE+|rzB D:47hM LJ`YG:;)Jp:o{-,xset,:Au*13b[m[]! %L:C/P4!c{F!o,L!*}:GMsoTR1sKBhA1u vi,pjR:rqzQPW'S0Jwn+#"] HhC44W8eg!4J11B"DIJiQqq\[T;TtNf@m\7?~Xe=. JQ%W}sI5o<|R=iB/1*8 ] =4BB B9t"xn] / V 1 S * | Z 9; A+qknU"m:ig$RU[8r5cAoY|>Q z' 3i{@6i`M${nvE$H ;m/=FPcD@bSwhVMTqT0H{| WM;Lc`)TVNyt) @}  2bj =Kk,<@UwRti?q.^Oi#Lb,:j3vr(m,XY+)ygg<af9])2V NUmO.)+Fgc>{{\zSo1E6ytx:d[6z&\m!MtSQ1vBCGnYj/7TkpY D;@%y cJ&z7'|UZ{`_~5k.)WLO0?ul y_M=\ R"OX(3<KEHuQyznXED,.t{_$Ja-v8g.{ Fe~!df0 _K^ p$8P6BZEN^T*;w\E:<+WK`SsQh]6d\v{EL_zs^]# ] [ } H e 8 $  ?oo_!"u 1nmC8C D :h? 7W;,?7O_i ],bSdUQt7c>BK9 P vr:FIG |VvnhnQ[Cv<}&5x*& F3|1}oRO^g}pet-7Xq#*8~5TP7\iG\Q"&q}l%BVB~!S+b^T'\Xi=^Rt3\B=~Y#Z`8;,@"q\,J.qk~x 5,014^2~cvL$3=@ZH<;B F+_dQ\yjD9NdRIB9ZsnP1rO9.87&pf;9Wb/y2C3#;WjecL/){z,Jd{nQ_H jxDb}4TH+(-:!@}&\aQ{G6Fl"63B"@0ZG AwIZzGNdDL9 #2#vU_9jM+|}w\ROT%nI@aiQ'VPYp5M*~l{#k*u5V F`" \xLKeeq"=<v6vEc8c&|mxlk#n$A cj *:wdm8\#&.iKeWv|ELXu&'2)(CqPHRD/@6Ya$,C~v/(_g6mB YQM$NkgDqf(fb % AIK_ {T%c`-=rJAh_=7{Cd[9P:x?@I>;<s;/xI]YHf884}+V e*n%:S . _ >NwPM$0'e[TomJgh'g @j ^-(v;A'7x6XiX@< M!h R0?gbGT@buqz8=#S YW 3/k:^M0K,ui$P|YbGMI<k?_ DG34%'\f E^/%s/BIG=* D$ CaM4{V H~W%i:wWD2@-hC.33+kS`ylp }_SHRapY`Z\B>"L<ruJ-$j 89hVEz~>I;/Ll/80Va3-p<o"~H a~Q@8bF@VKP3kpVp#>IQHtcwJL VTXmPIn=f oF9XY7o-,`[GUf+>]oA<\T(DP $#@HiW@(*-'X- O: 'JH@M W2$`A*kDMtpc%-\JkL(Lk_dxq67_ G8ojQVb*nH x\Ann?;}Qs/ !\[*L#%hAH.{R n 2'D ,BWv }*$Q"X3 = h J +  TDa4_PMjo}h)+"&}W#2i0M|Nen^8,i @G*5-UOlq\3!Rp XRXMs L2Wm8Y1!+[:f6X0oVmRoc#:($~A,w[A21m(tlh% \CwJC gkOC:x`^2*@Y;wM} W7>>`d!1:X,~scL|PqsM _mDBr!QJF{QjGUJEHo=c 4yJlN`-zl`{rkL=8%lMqwm7QD%|O2^aDYGwp%,$~NUpG&'.@l<`Qyb&bVo g<g}2Gb(Cqk;2x+v7%5fi2v " ~{4h7&3_mHC $etM] H&J[vtShHV9~}.\Y6%~,N?4sV 3REk-&YTq1{ 8y%+\cf %PIt%R mT/+${1S-}43 $7sTZuP.wo+D5Xwo y#II NP%R/GcP|aPEU,,'T Qr=f`K|3;8+8 UwOD`xI^0iL FUv;'FWy*HBI=-JV4zrdD)rT*] WM>(a9S/Av}pjdF\,dDLsU1&I.26]XD=lOm L,)F; hSsPt8^k/&.%Fg|]yR8uW6RE^cc ;ZNB9F`imBkwS+FLU>#KNt3(=rcUy0 }4P k36u!D11@\`8)Q|"t"28<c1PhM%r"M|c 49y_w.N~Z5kgV]r*p{MyHVfe] Cs'7 y0Ex5mF7; Ltb!hLq#+Q4d 7afa6\Ama6o3rSvE>Qn$C R~H=+?>| >R_=!N~|X^@GWIxGD7L"j[!NURYL[j >Bdh0nC;MZf_4)LaUi?)B3URgm^WrdA\Z3VI5$oo+Ke# &hrC4 [X.2S^Ekw^tD#M-zi$L5o>h&cMV+GbG5OK7 T[-;?moU_d2I@=<J~9dyHk&06`90>&OjG6#,^+LH?qLE xG^[)m8bc{2;FI@"1'FGK.(=69O(P/;x/=o}9dl5DpjVM/J)Gv8R`8w;mV$5a#g&s1G&KeW^CZu@+@90pd,M0ox9' =U-z4)vZfy5v`{JF3`o  L9P[%|s AA@zvO-($R"guj2o[l;9(iZbP3Dcj)roE4(^rVW3U#lk*ijfL)L !cl#dZO .>biLP[[` hsw+k pV]5^95&$ Op_"x%{]"b.MERWcu`4GGO+8N7tUYp[wZX^zEZ/@d4fn:{AG0C0wAT@ja [[1d\ 5 Z~50>eu=#~@oY1-{y|uSyX4~tg])\k424ve2 03T_i!TsetMoZbyS>RwU>?/O42Fz2-!'X:] q5cX6:v&I];?uMPssT CBP[^wv*\V.ozj4{RB"${'w!4mnuN?)Fc|'r$SA(GWH[j `&Fv<~KoSoJ]8?\+IZP<l0EsRTw}W'q>^[:,!B7mKmhYpbmN$7yHcW?.Xxp)?TuXrU#8aO@OR,wj&T4GUR6gb^-yt hOTWz6kfSee HWI.u@G[ax2H}{3:G 5>vd5S}~'KAyi; Ci`0,6x70DFp%`0.U[pA}Q&gi 9cR`@}^; [\D<C<Pm1*9Q/_2U6rPQ;stz+TI,F4&VN!JOWOS_`9l [4~Qt}N ft sCRk~7J.-|8u-$1'2z|Rm204G46P.s\lB|r.*BM{!pLX Z0FiR|eTv!S3v8jUhle@Cq;qOtyQTse]shG8?*:; c>{R}-Wh9JG_vD|=i1@AZtJ( =;Q\*~\!9b?~)-~]U5Nd {|/w$h>donEYhL=>OEf. ?dob56w#x|:n X#54z`1:.<MAOEJA\w$gmh9\ci)@dLuZCJ{udx@Kgw\M`Q6LdOC^mgB'NUHPY~"N`CB^ X.ZW(9"I4 WpoUv^Rb +R"E3: wmXw&HwR.U%UqvT -1GG>rX!2yC HYr9[9#edd'HD+8_o(@:]cmY&tz8EnZ}c]WuY8M3!uw,/ng}q4u :YMHM_!OoRGKy GclSY[Vuf#VRG03EEt}MesykZ'fRu `'o3RM7 I7{_Sr2O1,}Q 4' oeq[@}JQ3zgBUlOW'dp^4a6r<T5$#=iVuQOQ~B|9L^R,! E:-(]bnz^;% stYcu/ @Wuan<TI )Dl*S:/ !q +&18O! \A1H! ;H^ZFq7% Xu5}S79ebpFx0E[hcv mcr'"O27TBYeF27mzTM0bKv ]{  &-{&Mwn }0]Z>;_zY XY +DLa1XU>B,F?=cYp ! 2dR K;70~nM\l XmR|b1D6MQ vT^2Vxh`(c` S^HB+vBRbL-(2yYzi 5&R!>sOW6Uwhbry]L/e4P*q:HKd1|d6""]@2*fjQI$xn6F6Kx*s>?6PUD-aA.n<JI*K_ )8~^l_H 2'C~>4UU1wmE%z{v/!dGDZ{Ohg<{nAILBA g$t,fLV:42AFg|mlJ`d[R"$N+oW w0N,gDuz%ipzK<s~hc{7`Bs"[%#[:{gDpz.hf[A|9KK~PQYT#0I-< u  . 4Se.*vqwp2`  DNN) "-07w0_{r./db3 IO*?(2g)?;8p0S|=Vq@* O)VvIks,fTg89D%&U(v{Ay1 b}[aK%GHHmWWK'9c?zUMlz &azvQ,mH lXb*x>rJYw"VBp#3!VCAg : .3VF*r`=B_ u(?f.R# Tw6dY`;k/:b3s+wT< +pV_'wvWOas8G,E?\tGT_~#=u%R/IcSpvD}\P8;(}2im+,uXV\#7- lECz>(BnP 4* }tot5"l|rCk'dU_mm#q Xa'*g h. C{SVF>4%DV} ,(E0&;~hdV3.^yx+mt*Drj&#A+fQkPp#( "#s5fsk%"$:@(]epYOwV+Lft0lR!\->S kx`&~odXV5 hmN'UfQ*$k3% <CowYO8-G<h2 zHv6 V0W]Sv]iD v6#5byJ<kajyI94<AwH)VZKl3&a7R|?hOenG5(E!q_Lm,_ ?Nd6%Q Sw\#c9Rb>OW-~:M}Ui,oE) tWwGw0#,j%XU3.k*_"n!Pat$,0G6jSM]yXgK@C>o?oxM$fXTY{/CCa07qy; QX5{p[bbFSv\TQmupN-~@zcgxBq0?N | 0 L6ie D`h'4s%G/GGcJP#31[6 X*iMC~jQv^2d_E8\MeD5L${LjUD.|H>2]"b$l[lI4$JB]r"V6d9J@`0Xn7.d1 :*] [8hRp5=o]{O^Njn-FCfjU;! Zey 9a@ 22Z[`ENS`=*f+7criUBL9 Gm@#)C-j|Qe.*U?1 dS{&hKs~\!]N6(HT`Ll~, ,_qU 91sd@uj,~sodC(i fi ~C-0)lf*{1YkRw>8r`t#D u*~ZV?dLY{(/1Q=B 0r!?) /@H!r(rB/}zF}Ak"P-h`Ws,PR  EX.?)xWQ;UT1Ax*C{\A y%UC_5eVDp`M7y-=+4>@d6 kt>VZo[w`&^5 lq/ Oxj8 C8@6 ]kqs*i'!@D|,9B,aU=[T)$Zcn #rwBq aC|X4Kmym_Pz'xl FG@H0;Iv83;48/@"S; $3C>m~zoXB_}K[t{OVL*QgMLxJ;Z% tg^El (0~8z \g Bk$~?zRugTiGK#-c _O19cSCfc?  geIoL Ya*FLZ)dqzGf6n~e,y?h0aY?&'=6}rI*CNU7%kX{C~B"jp sJ3&xszs2:'BeqCL}Q]y[=dC{S{<?zc<JQv DbV  k ?:"1Z`;)ub'ek;vfHSwOw+o"X#Y:V {ji 1Z?ep_c:{d+R+~dh+;w?X]a+J{<vt-2+|k&(}xh +( 0IJGV(xr[*bpxl)rgR.2"|w7pQsR4az^7)v@s2],G2YZ]?.*pw;GM LnB&|nI./!J@ Rb%XmtXuA[4_ ZOxzczg9> %bm]=rzx"dK+ 'K9^Z 5CW K5t6y8W1 0 9ul_NbU!:b< J%Zzk^TK?1 / K5Fm[)zPQ *kX&J nVDT9:~P1N\7)t'ua$M?(>)Rlo{AsH, *"<F ^Kjid_,o9%ir}#.LG!8Z~:}K"Dpi@Fp_O18gTs 7p@RXz[1m?LMu |=kM#rOMNqgtaalS7}Nn]%+8cnqCK \  l}M0x[yO!6<VEHBU- uGS<K\mg:{Vp8z_sBLOjrdyayrz{~P6!;=J(|#P)lGqW'CT9|X ]`@ ,*5~g`Y$(Y+xZj^Q c?(T wcqN~vC/9C,>bqTQGN:19Mo|]Es!Sg}u)[fD /K92 * ez}z%~mHCeA-_H}1>+v']{l51~gBvuAv=r8K/V5m|j".BdR`V h%9M!>\Z:OEko\tn9`w'm8.n@QRO/x $ [PpO A`~*-.s\[vIN&k5jqH0VDE>%Ryn< ]MeeWp VG$R8 $LXIF~;6SD oE-Y6'*i+q?jpbd={_W/f F:iRCID bu}nIK{(w/M}xbSd|:  :U#t T7h%$S fsiX3`?6AQZ j7zY7Y7Y+BG}6mZ" pc,=v_Mk 2T^y2F;6VE0%1,P&|8yJ2t=Rj#ZHCB^z7\ORB uDgT3mFh&72VV~Q0= b@.A6%8 ~5ewP^6o=c[x50D;^Wpt52A%L d9rf1kH0FFe?cy\SA/F0e4O)oJvTft6ldX$TY;Vor_%!Gi4%+f2yO 4E/`y-[d~hx>' D<6M22ZLXDr,]<}jV$b=Mc'i|1f1 ixA.T&&vt)~a>9 0;bPks @|S@#,HI.e)3dWkS</|]HNB|y]7FbBmegG~Vn+H9BIc+u=YPb_=b,x^q~nZe`rIBpqM|B^wEsdv)(/3 a]?]X|2y[.(=% qmQ0U.\9E}~>7Tr^'jiN@yAAvw4:Ut{Dnb_EQPW}a1 yt 6=BGYm)wU+L'uknDEg&bhRhtW.,c&9wHPH/LF8Zzypkvr^\22gPBT3) ;D{L[L4Q_amNy xCHFV9,?:7zi 4&UA5ZxCwb9. #rC-&bwFDB1ucErQwHB g<Q9`d)C.>b@)*ps Gj^Ixql[@)M]Bp{vDhtYy}x{\@ PcpS\8Z# =V ds$xEzD<!]k tStRC17, lX# ?w \})kh2r 3O3z8Dpv*j*{,4l.7yvfsaeST0mnW_g;W]C{\\v=F-d Ai.*@8 sX0#WRB>N!"4T2:[gc8P {]]+H)&dWYV`+^ pi)|46w5N0:)be c^$:L1h`Xw~<$R.IqvSg-3(v>: xY2o$u9#xSHcl VA6_+mG]!=&:*D=%FFc+4<i`e D-j6CF9DO,4XLf7sk+\Y[ 5/jG 9j ;w\PsO[R!MV`^?FG:)q:`WJV8yFk|c=DLwff(A7>As<9 Ya(}#ygj:Q'{$*BLE3" [`vXe(/;[{"  ff+r^B*mQJ<(FC Mrd=XsP|)Q)4>N^wm%Y;E O)PQe0d 8WGaFJT:G plV  Q`| cmf.(90'CaGiKZFR7vEg  nA8'y?o$ }\VlbQ?_GPYd9 &of h Swjy&~~1 G\E`,*O7ooy/rc^.e ? iCEo+2)M O@!@kVXQj% dG!@1E(|eQDRB^4~R)_*Wags49a'(M9#Y*(|# OE2t'(WO1TG'oY>(}g\_0'/,M|ReCjUN-d7 X5=;pf]'W$7 e b1std>(gX[uWwM#Wf _&6J_mq"\r~dsn- A|- ORo"NlZ=Z+zb !N(dH\(ym* :jw7"^,U%Fh>{!)Rx] =7.& , +hn? dx<yCbAf~dF)Ly2,(s G|^UG %*8vsnfVb)O5Em'Cnq 33L`/);pLl1,VD'HpO+1f['MGZ<x\$FJ"ZXFVW l#$LTzFERU:m $*GxxSaVN(bPqqt"iK S)KIj|vj&G_j7l.G;Vf?M>Te'3- -|{\[ ut#d`JP<&IFK|#eHR]X\nE7Nyb\^ 7{ AQ`S` CXgqvi`Gsv Y2(ZPWeaG &R@?QA.v|7av=peF8C-_wiB"?t1 N ]g))"leo(g~N*]C;hA'SVH5 nTy w.B0X/)* V,kVoCl9}r59GEmcO'.#WC%bQ q9T;7S`b2%Mxa 2dP);I_AErmhd?F !YltQCT!5Cu$4u ne4o[9*VX&RhKO "!Z9{K%j6 r?hj-)O7|.UwEICwGJB!@(^]my8*Lu 5/_& _:=lx7?U &N mxQeu: 2]m0 Afbe9cGN9clMM qtAFLP'7CD><-\!#']i/Ro! a9R$*''m| <Z?V'L{eyt @IC( Rj~KTgScAvit<Qd[ Ds7xVNM8 -rb$(F w_iQf>a)8 M Zru4d{1/H;[S|>yT_vk>\_{!%g*OvW`Q<5t;S@PX?D /YUO*8IGc[R63G@4/*oUV/A=Oq En&WtV; |Fb7xlr^giDo` F<|29jj%Dl k ;W9b\wX+wo|xm3)8V{[AV]ZMG[wJ-F*{|mb{6]?>TtF6,0w$EI}+aE9Wh\@N} GBmJ%C%7N"/Bp.KZ`"ag8,`9'T4<^1Ot?*+~P"ez`I_hI t[2WDv[bfFrUnxT.ndF D+H* ->ZJB!n@N}M_fFFh`5KH@MQ#ONM/T`s g  wA^/}w|Nfs2da t5/N"wL^#@T:FG{_QZ5*NJ.IED>#nA9D = %gr\<0!F u/O]y-#K3$ .+b*'b&9 5*<Wrt%6_7#"Hlcgt4!PQV#"1v]@`hCl,]g<$"\neS6vQ{og^ii|d`9y9@\y&:BFKfM<"_r C4SF -:b|!3\ qg!D>Mr8< n7(3GhC\J5U)0N(k"b/kaU--w'cn{ e^FQKp<a(rr,3so%d;z%arIdl$3g/c6I_o +19$>hQULgo#Th QNXU't3v,a$StMNM~EQ6Iyg,C{PE5wi ]{ALz6f]Flvop9U~c"@&JY) lVv6f21mZ=Z&p0i;e x O!)aB O" :v~EX az\$9;hGiEbv"*wu 1('[|T7YP WW^EG;E;A'W\T]*O B>,:fC(ICIM|sZd$ a:1^yB,x `;osr.Ka ha\p#+B[&mO=3oh|Y0c_MfGO6%> ,gt&!Y CPeHin bHh|00NTUjwErg"i{'otu?b1e!4a #aGGVF;?ln)R6 p(BJe3Mhn[h`s:n)2Ny{>`ZaGTk4rxbzDk.c.``;0f3"41, /]+4Qb%)M&-t{iX^,de9(VnLW3\?LgVSvEpm'woHr Y Vw%7e10y#AcPOX:&}ic(zl2O(`>-KYJ .e8ow@TX&5qYhonJ`<ozS'+(@)o5&R@I'1hN!-@E ?[Z)zl){6cmfC}LXa,@l +rwoNVgj+2P=B!GmYva.Ekb>xPyQY'/Dp@{'1!(HGpZF.C/ Mcbi&":yo:/4 oE4b8+# p&x-uD0 *V(!i^bK:,A|k5LS[a{HhcW )Fq_M g$4%>Uo qodW 5mt6|lPfamX~ < +bx K&E3KUsZyG{h@,yLgL^z%lg)mvp5oU+ waG9_8Xf+2eDINamh_D9X5 bKgPz)iOlp\jz ~%G{x/<sRvi@R Z_D<]a xY8ys3uOminp]~JnP\u~ vKV ? ng\1Xa=RegC&'Ftwgr5U3[~JM20$&80n)a;b:uL^]ns)3 qLN5TDA4PEL($nPcT@[?^(9EJL:!uQiZWa0:6 UY==z~RIYv=M(Z "vW:7-[oeQ@ 3pZ\ 0Sm_/utmHFlZI,;(1B@% im(N%g8;aQ QoDGLyReJBG"$<V^ZYRTj .{=GY ;5&`vYjj=c;(h.OiQF,yBrglp^_ylZ. 0kx$lW[J^K 9Rm>NvG $S2|R{D 5V%_ p]g%$4iH\G&.7T[:').g#1D[w3\w<H_!lPX3TbI :3$!;'z, H QP{y MsiI OAXD*7(mAbDTZI'xv Mqx4;IbVHwNs7KO,9oi<qsBH'wwXgFa5NR?HDas1o9Q>Z::)G7be?=5u N3[%f/blH= {eZZ%#Ii9R5n<i9F4<(y ZW (4n%!2:j [fV'|O da/Q3-&<k}IY xF5Qcn/}4-gNoK-u1nLAsb.* gFSb%,j2n=$*, \g-U|QpUJS WX ,]g$*AI\"Mpg-xZnaIK\RK L5c3AeDNH]zwoEU[1@a`jCm}l"6uv#:`Bk.h7eqF.@lc\),#6*|zrZe1a kN0x_P^|ORu?0qV!,>gx`UqV"N!!NDmmr{r)z_86QLS[{LqJ $iQV Iu\[DsLp+)~9,o% #rK{eD <6;"/<W{d7$sg :\rE82qyMK {X{^%2 <PJpBPjnLX_OWr01 8ddniX*fPvGB(o{tF;dM&q` ^1,ls FO w1 jJNmarXenTZv"tUO!6@Vt Ru8)Ln ,OAu!]~\84G3%uoo?/DLd![5D6>` 2Ha)@6 Kh!]t=Z9nn>A M+C#>tJb}kQjf/Q P?;i-unDa#+`dW.X(abb%}mmgSm" /3BP75]zuV^<pR& `Rgc; :_ C2,S9!,zG''"g< ^I>2Z&D4D:#!>;8>wrS3`0i X{uZ 7 _sB\/c;82%*c#ceO2Ta"t6d}J950nHa&8,<!0?T^~@U^|`]mhuZ%fDO5i#6 QwPe'u )0Mx!Wgy~2j:T /hlT*w-P39nQ1nuGmDuVfZ$pe,-He/|z@gq_g5,wcxW6'?Sn69&%@txn\/3it %~ )tOi_BT<.t~7i9( ]/u* gpES&.V@rJV{r"`7hD. tlY+CweZoc) ,X^eDE5hup+Q+;[JlKE+D=,rc%WaOA"4b,XQ<A r4cu49!MeQMr+ {USSWTgJ(>XLq 5E]lq}4N1C!0`%p!NMYY <cf9;*f.j&x z[Pq1:!]4^(NJ5}RSIU0: Ne5Yau3*!Ca=.osy "bdzc?B])"Db*^\ QbQG,-1('@+g[]:nZ Tje]x+F }K"~c" +4;Un,L1?zBz{N&N ( r!AjVtyap3-v7d~o1 oq1?MVNRt VfCyp,6GZ{t/kp'@B+JI}:Wu=m"2 I^ZQ0~HG1 :QLFXS/uX`nWO{T]\7}I;Z&7'''(R:ry WI^{SC-[5)7B~5v!w^2H1]l}~ qIH%q4h'wXN,Q8NF5 );\7*c2Y$d]e u)VLT6C>bVA';PL`OvMn+S|( F v`4/E)1\t&IXHt&Lkc\pL0\d^)q 25wW "kzH/ z=%QpA|!M}>eRJ'\'ePr.H>94V/$gk@P.0^fGK<LS=3/utf[J. [TIZ#[cefk~s|*[S|+Z2 /wVu~lB|JZ_Fg># y,\tQZy<#? ,@)<wnZul}xdh;;M\j j7=\pVe=6NK<w r    c  r6KJ|x,dF KzO ] =j8=d|0kDAo_fqFTr 4(&e&O<C_ FX=J@y  pN,k[w?"=E%\_SNm!NsEE xt{GF(&`&wjjjf/%7 {(A%#~eeNST8=mtF51 3ySvooVK"drc~\.C^v{41a\f$.Mkc_:=%z?N/vF4/]0^tQn;V\?"A. GW c`R9dFdc]F]VUKfcUT6%n\SRz[^>fO\-9%\XEi^[{ O  rOK" a H}]ft*;x {ZDSb)]s"$%([K;_b*\anOw@/ ku.+Na wT~vZ&fO^m:;^KVCq0c,+  XdwC0?CwFr!To}2G|Dxd".7G T:&yelz]:BnK 5m7rt"~q]Q |~@)R\zKyt6uyJtJPgozLB>@YFjFP6lV#z>VDG:6QY`g qtVJ,!~hc~Q"blQFo&yo\0!vE#o(<@ <\so?Og6 J}jZ-y= zyE;=(wnRA"qgVEx!{x_,5![|^2D O~ xwL:D!W;`4,m6#40Rk$)CO8?uYmY Y M_O`OdsN@Ck@R0-f7hv<9~)>#<5.E>jo1PH]&'Ti7HcIx0SP-h~6M eOT`V\m](*0O{1%,sLkhGTtu:_"uammf&Rm?Gm!zH9%[}F&A!L C;K$5| 5M>;Lr7 (M Wo`1yo'#)Wja&t7Ct &l:M&xU= y4~E'b{]l<iOSdR^=!zzQm&"-nD}TrDyAO!r kJ3l!8eAZLC^jZj 9o[FZf|."^2 ^kC\A8"?k!{%Fpbr&L]?*S2~.p/8N:k oO&wM;+ 4YJ(%&VlmUJ0/@Qh7{OVDQC)^~7m/~ leF`pHW'BjBy9MW #H78@IjVX.uF5>Te?t{i?8{ArVDr>D@q I =,@` 60PD _Z `#-0gFG/`sp<-& E0@4s< 0Ihc-I E$Jq?)4n$-`= 9SYI4PiQ.Xp{;OOJk`z4u|73%m6z/8Z+X}u*be]S~]W\mu=7{@*3fLX6@<O"NroA6_taSDBZ5.Lj8"\S,!lp(u7c3]/#V_| 6RcO(N.%X0D/l]\d[Z|; h-\!]q33* |,K0y7Z?DY~\Kc=1N9F^rp8:.q VoPtSa[= K9 [l [|>b+tSFdrRc:&G I ;uR<gQ?4>d_da;wQtAq;;6a78_nVMr)5lS%;~my %ib&hqx&O3x8N,e*Qv~( z7Z`yMlr b_Nns<"')" J|cdDOC QW?xS^_o?23au> }*IdV}, G;D\moZgf+BZ\o6bjF1RmFD8u|LAQ$o@.>2]ekd =XGrQboIW{OJ>O^ mv*VTMR=~W|c%FCu  bNL;>,GD+VN0;?G\o9pI'tzHp{q{t(e\2S*p<`WXB?Gl42)lMLLCGYMrV1a2)Pl\K6 0a)jw$U4E[<A}>Z$h2!=nilV  ~;^A szVi/K%CwZ:+^ k=)Zrv]_9.vR]3p6-:llG 'oxB ) 0 9>*+"Ia #9AQGHl^RZ_FIgt2@0Jv&g~n05;bX5`{SuIgykKcu UgJAf32}N:Zzd .En%$JjnTB~3.mBgYg/FEqtSi S_$&]2?Q{$wh *4S.G?KoNLFTR s{PNMZ&PO0~d+^`"-.[Zg'XeaJc }~"{2_m.ti!s`QRED>7QmKd\RMlT\i$ il4NE3(( rB@<"t!# =gQqQ/Q3','6Nqb9z,TROIckr 48n.4b^gj^O]\HZ6SV[I _YK54}[cI__+@?C=-)A7OLbc<|!Fql|aTg,f\o*O;7"WSpAsRkLF#^.lmHO,yT-@].(Zub[u'Q%'/ ):>S~h'H-C!+TT]S~mNe-XO+ 7  *./agzncJnWU2Bib*XCp["s4';IMI :5AL=myA*k|/iu:,|rnElwkzz5bt9FTqq{&x\u(T-7h -(}+=2xn7a _/)"X{_Z`:FNy"7CWC^cqb_iBGhVJ(|xMr>z]+<)RlrXvd)6zD}&a7g3RYa )T-0;} Y:s 3d3~W+VX} >oay +Z ` dL!].'Bbauu/WDQ 4{J" r .a+h\]O$rwmVi?B+JFH$[x Qh!gIU%1y=zZ  #32'uo8d)c^ @|gY`9Jh!YMy?vvP }_FJuO,PcHos~J4rgKI8X+c]OO5/hn7#_A xBiD8#Pls1YK7]e3}`@:m)1aUa'y]dcOtgL;7zdi?? b T8r:+:z[?< ONg[NWV)DdKhtri"7I4uvX_(*hArrg|VcT~Wo ]$Xvw'zm!v3v(^U;C wIO,Stl+'@^*ob<j^dg>>+%VP'NLGr ~,RjF?$h`S;*gxOS-k?jQ_^LNK.?w&\(|7{O2n{Ba !,8@k[)O5*[- xo1, o -3NPn}NfL$m@:2)Z!x}iIB=_O x a )VVYj>5;gtED+n|'~TXoi\VOUQ+]3D2n~CT:Jh~LTifuekhDE?4Gbr~<Y S9VO#k%<f -8NXMrAQx=x +JfiG(\5NmGR)lM>+jD<Q*g'[- :#P4 f*\s,#c"A55*>H=:5dCv{n\ Rru| ,~edeF}K# t[.9=.IZAYKroK{2l:~][j/lF&i;x3n<pq'olmx6rUZ( 8=C6)Ho~8w@U(lG d+|w|~sYHZ+bavJJ4L`}Qf|^rK 5vN*QDoa6 #;[_ld.naNIj>QuL2uvdE_u. j`nr^%7k_%'9/p)5`>)ZH7,QZM?xu[\Sg0)~lS-*%U*, {_Qt#[0si$u#>G\{Sj ze+\?:9) .A/{mmz0~eBYZB3x:uzd>9$6 )4HX!wo! pi d',MG,z}Z,%RwGMxO7Ym0K)0<Q\%G9NzaJ?#?u,q{L\D1k %*U }5uRV@ YcVv[NAFN86U"jXY7tS^}qNR^y5p>x{2}fx2# MGgo?,p?\2Jk@$W~{dvs\lH"7#xcx<V6]+bI!9C=iiP;Sf<q+0\z^xr(TD`-^U{PMvj.{(k+p\N"Ur=%Gq=4K# VZ.FY-3:KnsYkg}V1\.<SOZL:R]ou*+-e(zU8[>>R]v ~3GwT&\S@> 0K .N'j0 HA]*poNJ(hY+(6L[5qgE yLiY/SDQ *[/4 @ih8  +[* :=jGr.g:R -_rSeL%f7Ky VyP*,k {F`%is}B7jMtacmiTH;Vh.zlae-5YB <<WI~ >33<e }9o{Wt:gP?!8va5 ;f(:TL:FVtA7 E= %g d7x1Y7[ ,g^3o>%D!T]dtHkK Uy Ppn4^49e~v na5Z[lP#N{ VYM/LiW}VW;7q2S] =R^^:IX<Y0@(#|FVA58UX\j$ ;~P (97iSvUXT C7ewwj5gg?QXrw;!_U~|`sB7+0{dAR,d~')fS]J_d~}fh{2gTo$jfV?RjH){M}Ho[!^b4+Q  mTjb'%4ISCa*Ahe:%ce9d,h"uR691{7V'=vp, B_ wNns4ch*YqWT? l<t.,GWH ^rreP }iv@Hv3yFd{6.&GP(*iXGz,S$@0kH=[?H:":('BB8l|i/Dg.EH$3L'nMUXV K2x4F<;].+:[w \[CE-^P N ?&71$QUL8H g~*Z80N4@iK?o>-Yl!ne(V^Ebm2NC`Pl,na8&[@9l-,Xq-"3*h_\[-]iWuCR;#w^fyQLQS;j). [!SdsP{[[g,a>#P|)%\g=?~CDx8RhtqU:.m ]9\Xj_Xn`]~]< L1>,8\txuV 2XP.6K`PBh"q$m/X=fnW/EZMriE3FVp??}!b3\swQ_ 2/joy.I qA6CP3Sp :*uXr ($5Wp$XSdl%3Ay sKs3<c0^-^[-<,#h 1O8WJ L.{X":X[Kx&U4!^["aE)ZA.-"#8L`N9gq>x&4t\"/Zl'8@Z.$WG4{k<zfJTx6!& ))ls#7F"&2-W$"*&"~_pN'U\R{B ={KW]~yP #pvN3OsR?#qQ<~c(gJs}\'uFVkK%\H3Mc"cZ_X .^7]E4}vNl)Hf([M:3& *`]\V(Ixo03lu,gk[ G |BsRN9LwdOj# g xdmo;SrV`Y-j#Oi5oaArV c7B'whfQRq WB;q=}H IghDfm"M16R>:xT% 0q?m21#D~OFyw\HIa%"C!1Aa nj{.z_iB Z\|;[5h{k T {R =tT@T895O Y(&C9pI^7!SyrGu*3p$`$Ybl4IYYR;1(|_ASk;)+I n r>HX6e, n'{y_1>9/qU`pe0i.iR$=l g `evIR1eNBte00"=nI`tUluJj3Po@xQc!9|9D~#mRwRS@w;'RD u1?^8Ot~zYVK)3d<EoXRFK74;0]eL~Y TJ5-Bq]QfQG^vY 9P?p'F}f<vs-x8 = 6%! N\a~or+'\"SID Rm:C5/BVk}rtpSDLlr-`k*& 1 4:)v +T[w]^"w%[m?}NT8%=X7yD"qH~$hU_aty{WKw9{cGi$DNj'LqIJY/RAZ";bwew02UqcK/J ;>yDEhwIR0We6+=q,B 881FbB Z!3J~pdxU0:%"]<E5&n;_[F6F[i{0M1F]M]cj\[GB)k Wy~c}^*byzYE3_ W!Dmy OgZ2"B*vJ gBp,":1dv{%WS}47HW uS)d6SMe25b53QY"T34)Jq)S=L9 6~!E`{[=p i,IenE jY!dAvKg4Q B=_W!g"&w*);C;r| +V9?1sc.j;Pkm~P 0lD?(5]-HGn#l&4DYcjjC <hoz*`x)W:JC;*0)7zB>-q*)g<5H)h'7;spiJqT1=1m G1EyC.CD?EOMTEK~}O'2%f+.) "Gq? &B~r?AUaN( =]hUz~}]N<z m# /_(=N=T=)5 $zO|lexnbGucpPcz*`GFb^sl_b]\q")\y_.1>reg_HB  `s"*bzK ?ITPXB ~eSSFmbd~y0vfS)W}2@ gI-hU@Y. ,`e.hQ WZs:!XwNb>EoqS>GVX]0) #l5DP27v0vt=xql{_|:[Slc#LA21q .=ILFg6CmM)8Ym_uB-/IhN?fpa1Gu=)}24=Icxtp\`N`~ a m0v.3,?dz:esI6>oRPp vYyKtWr`m+sH?<HT6i *t ^iMKArY:LJb^+ euJ| $iAU5hWErN0^{8g>}]YYaP3IWDEM o?$x_M^# zi;uhZs}.  EwI;J6`xT*!.-^xwWu0nVY[[t=]6}\AVXG;jnVe4u?~*!ha;;j@LK!5DPT&L\3LIZtvNQ]lv]_(*^ F%_#+8Eq5 $"j7)LevW;V<Uusor%heaz;}kv##^UmPtavRjKXf/8-CVdJn-XE)3um]?.(=DF@+m'jXc"hhPK,B&t<Uj1pT#ZGF\k8"{lbIZ7}N5_xsGq%_=yxjf>rX$eJi,pG u _nB7ii.qn% gz<tcz0x G, K9p#}UXW5vMO4KtXv*\ =!$A%xU[RW2OR0a=L@[l0'J9}}FoGE_e_h>9f~,  *M%%`?Zq|W)l`~ E8|^1]MF; VkHxo U_Nf\]|! ?'23-;u72!k-v7+ x3f=wOfARi1$_5Fm[/5;>'X DC?{ =)NJTbW^A:CR&/ Z\OT3m2Wa+JC`|_oH;n =]C^`d_1MT3="7Zes1l0 'Zt .cp~v;={! gycT/&!)%g)eKq9[Dy O A/`R|X~Ew6v6BHGd 9p 5P$ FO$`_O&wWYDOj~kmv(rq%[5N6!p 0xT&I_2o}R1 u<[W RIm6/imut~pvx'@Y|eX'1U#\pr yIR9"U G.i_Yz|2X8*YOUN%E "` !Yvaw+|s5la9K.Jmw i}"Xc jdr)(1)c/4\i(/D#68-P AU"SPd f&PjVchCP7KI)Vmn7/g%i5@^Jnopqvfu:v%.v20$-"f97eO"]QcI/9VG-hSVs0t9v DU@H[''StvCkL-4i +dd3aoPZ,}I "P8O` >oxau=(&k0PHP_bcQ> 7 =4 Ta4#%i_Pv]^+ V'@rRcLLZ ;2gRBI"Z=ci!qKt6[="PBo6d@HfucEzzA,[-c#8|qG(HvMped8but)`1cv1zXEL& |>,}!Pj#f~ Loy/xd RA_Z<8F.h('?BB/xV)=kdj;cN3K`[gwY'Nc!\ nBQ)Tk92UmL_-hO#vJuy~u '5Vr {'9Uu(KC:%&rbKMmX@N.8(+5-DrEsRuVtc6E 'V)L{SKk9;)'zHJM^,j%T ?[%#7d_%RUj  WZ|P}`~~dJ0"bx -WpnUzb9S 3S2&N3ffM7sZu?]IjJ0nf32b X*Xg!|TC! ?ym>w+ob<Z_Y8Zs&0e'b8-'z3XGt'J>^da4%9X5h9LlW8MxK g~D$2FiM<pEy{vcAL i vTE Qvhdv Z12y<8y1nGU ]J[TETBE/IST+Yk^PS959u0:00Nj8v($y7Gs1f0pu0rNc_e^;xry%M[3,1lF,6W t;M+$'Jm{9Q(U+6q8e79T:HQFie3H* =- ~\.VpI^Q(xCd/S.0&F1L)-gz1 c3tP<j5^RdLOC0;gRD "x-5C"wE)kAG|DaQN`WR\#sRFS{~GgVS}cHM} )C=aoVB->mAO/jb ~6Hz&SXK A,%xEWk]zyI^{ 5l>}GG Dha6Rb?_tTHK0h`|;]nBx{quqG_4Lt_-9*NP'Va!>|6 :I35Es;ijz#t<M 6`.C=.k $6R"v&+)(/p_@C|UgHmQk1#'=ga;t9wFoM=pp/1'T   :G Rd5#2{1hxi.-w8f8U la!Gd("Hy=]y#^qG (R&%$8YoW*t N vsc!I#sSEXx,)aHjk>-M1FWyGDw\H%~LwG,cjWMHMrRNe-"u1U3:(Q.BXSb|/S._0 1sl\#Ae+;fKVO6}'M,Yq&Y(@51 :['|&lPna]rnE=~_o]j2aS6?k0o(02H[=o'-|#5F(4n?@0$[OeT_catCPp$(GLk\^WC4"!A`t#+Le;}GBU$,`3rG99RR(|wlBjbIbmv%PS7o"xixO_Y*d(fq*\6MU]x"@(Meu^_%>$n](Cqf$o ! rj[Mn\o& JnBy=$lE)yZ57)m(\%%'0pMlnW;X$L5M.9%5Pbt `X 5PWfry{7V&o+ QJVmPOm0y-7Uw;h|D%<~ v]8f^U}6 &>NBQ1'Kz}r3rkmYrS^>{fKYj BU+K(Rhun6D.4: Egv l?3{\`zh<^hS94n D!e`%q +V2adT: yk&<jx9b_~B4B9`p^s!36 X O nJ"2Kef\o|IUyb(-3k";fzlmZG 3 cIZX^Aa;X_&#DWA:?Nk-RR?9J\[@r $&I0V5_2l!FEh.1S !A`e -B]A8YwVUK&Uv|zb'fq]i%}xf7=LwBw; \'OM'{F#.f7jp[OfA2 ']A/T&4VUKr dX0FF\IYy{YcRThSKO Os:v~%5R]~75&D\%wS25Jkc=I7{,H* zR@(\ @E $)BV!paz] IwH#NZ|y\ Xr$Y p\6=aT^NhJL/ 0dv 8~a V%!v)~>IeJ=v1x/o@.0Z%I!Mc2N*C]iaWl`\?ps=Cj.}UE?(ENUo)*?%3h:uQw(#J#syZWov9z[#Ehli^N6(1,%5{s ;4y<vZi30(xQ"p@y%jFX/pY!@DJ|fptV+=/ ! l+Yu%+~k^$f@6/3!*[LYtG "=Hiq=1'"dr6\.J2sL}Xj|1H]v!Ki|[ONJ96@U|SHhB%7<A"!Gvzz\iD$/0&_ &18#A]%O\ub")])!T,)z(t7D9?XS6<%A*.VB^z+9J/ c\v|RheGCXy *=q=nr=Ix2L_%H]=@</>X[XC[)*|n@Ec,Pd.s VvzgF9ZeHV>;3-7;q^r"Z3cOxG%VTdxN 3BPZc~|%[c~)'2zZTH8le)Ck,FHmb 9,%@HB1v<00o[M"b.zTa+ <_.QX??*.-z3hyYCRmcE7D1,6u4c~)lMAJ07iuZTL<OU$ b(:[Tx1`>8YQ<x.Iou7_ c+&C.9Lq7rNZ6Iez #B+TA_sdmWB& O4'G.Z *b5=Zz` nhM DW?c P?vey#q*O4*:Rs`=;u3kXtcrvy%t[3m "&lI]PVsL8Pwt7 /#Gke,I0\Q'zY@/]Z4 6kV p\BV<-DZr:d.p~~`w`'.FssM/%n9 \^D oZI~HcT-::OS? {4=9O :]Y8u&Q+%#/QfuWu;{o}3@zXSS#Q=I`y{A=="=)AZ&(oo+N(\qm[GhplF8^H~gMN"Pchx{x~jEN%"+Z 5P++QVSU[@fWCXz{Pr}`$P+48MUBQd=i  (f-aa=x6~cgdpGD mFylS;h[lGQUQt'Lm/Kf"Pj90Q2m0ylK"2KP LhupcOu6^=PA8I41&;:\~f5m)v.H[z8K|XMamsmfeI7!&BJ]v{SBs[Kf+\Ap(Sn\N$a8pFS,4A2l%HrvgY?hibl,  0c$# F qgQ:5v9W.Se=g?HP{V&+`aD(]D8B]xPqg0Vt6.fh2!D5aoPtWoR_Lv:!Y|.nJ9=1#- j!#+>J#wx owOHm9P"..L1?\LJ*(G(',hje5@n,@-F-&durvtonDx)v!s3Os.F#ONH7THI_".k[,|p{!bJSK~L(MhV1~pH<: Udl~b{1V Qvk'p>R7^QOx &'AId}?c h~[,2"(`BL^"!]Styy/{g}ZR]ihyxO.=>}_]>r@ rNU#4UWE6pLm 'tGyl-GP|aZYPIiU $n<5J\Ky7M^z ^W(S~^hA8CD6qn=#68!RH# Ksg-"V?{#B#qZYQ+eLY.Fa.Hz9NJbKom(G?avK'vWRT8B Ahb8k '$q$aN'+%!.OXA6 s:_k3Cf#QsuiNeOQ"g^ __[j2~w(o7$LrT=$#S$= M5h6$O7IK6(1MAk+# c-\&EQM[<G]=ab%^|TcXZ}Pc%O dZ31BCE^pSF 9c&o_S`u/<$8GTeoLi=X~F%$^Q7TJ5u][*wP (g[u#n\)&fSUyFf{4.uKhGzsgP@nnT9r0+2 Xj`BGhCm[5*Z761'-8g;T&'T-R|iZ!XkvG<htkz`6N<hpISOrcKAFP]K;B5lxr'yX\GQQOJHo1ZfE8&qs-`ZS$"pdxp@X D3%%3 \&?Dr<*IX lOW2}c''$ar3P)Uk vWJBRc n=2VQ@ ,mGg4vJ;7[k"7\]$5H0tT\519>DRfGfMIsUz!Z ' &DUk}Dy =:&`r%)T)Tnu][EHtm9[N%KGfvb7fc#fxa%Psu: 0U8 '9GeAH07*65;0P)zY /]I72[ L98g#XvlW DQEJ8-0`"@7l^A.s8r;:>I%> ~G<uNt~o>Uz uVWJK<-4\cs:j!cjLR1N.j)cB}|R3"' f)vTuQ/ST*Q =dzwY1q@/DWxu2 iG SY*6=pC%c ]a 9A%%c?E5dUUTZCw @k(m)|#f`2o;]F2VME XmxD](_sFf* *3ABgTTVY>eqGw# +BVk2~Xa"R) )* DNrD. d%Oo9n)lXAH$rPDEsq HLZQcEc*:BsVToA0@Ed}%FKm"RBz)c7LY~xR.zS6'6\>)@N``MZ25+% K}|7:lx^ej>IDl@,Yl'D7y-5l`eV1mI D]eHg+Pf zZb83HGTP1>8OxjyrzrQ?2k#*GW|)IQYq5]i#Ic{bkZ\k5SH[_y| t&yAf1y`2d ^h%2^v;\|R}gN@NG,kHtYPYTA\@c8uFt:W+2%i)!J\i|z.fWKv/v ryi`R=KVw#} "E$M]L'# X0wF^f_UO2,~3VnD0(,d&/IMeT s9WJbO2 0-FIWh78Fy4kZ<mwsw}pcQ@<H7HC2? 3!&2?Sj{v@zf'685$A9Qe Xp* R"7/#/1& $j!w 4+sP4,+5Jn[Iw;Vd5 o.(nWo;zY&:wbKHkpI^;-=ZeTk }x3'OuIL- -B=i`6] #K gg7#;8nM&$/~F,ndTKF#UKd[v&x5 g -w&Gf${DRiwXT=)q"yZv:"j^)=@.\"b^&)+*q (\lQ/.3*n+c++a =6 "n(`Jv|' NK_axdj-M_/TL}KL ~ic[CR%W%j3;-FbuQ11+44~^<@6/d;@Z^I6;9em F*sV?)4GWZ\EoritY:tqTU="1b^#C_]B"2qn eR5C>A0.f6f'YD$!ZtnL-E|\ [_6FVzB4bv@]2@MkJULTa`eUL(*3sXgz||V bElJ -J;3G[(wy]D5.!,Pgo (-<P%_]\F 0!{0a^H ue[ZXY`q.OxUD>&S|9f&2Dg;dOGL<>birOlfeOxP#<J&}'5(Ho]RXof9C{q(@ B9'-i^WhL=*B3/ 8{_#,}t`MTMF,<Nu[ 1lQX$@1B1I3:, =R@]ftnaV.; !!/%\;j$0<hG":Kzl  va2~S.T4h8ymlUPCRV?As8D*(QWLU=6Fc&GP.~@f#AG.N Qf|]%bNQPr{_@tRkoxy}j[BL8p;sV#HnhDEL`ZY8v(!07FLLZOz6O{-BWj}h=q?l[D12* 2P{~oRE"Kj]e`I WQ7n"H dl0G8uhq= {G8}E+m%41n&zcK*,8no!} vW6Z([ F<q5iN ",@{ZqSIWiO|D7@R`zY@j$=K9ZQ|G-+.h3#,cOB88D`|lY1dDc$4Yi2t!]`N_ $wN0s:{ ='.''6Wr}?oLk} h0U 8YV8o6-!:]9o ,Jw\3?9  _|` ,)EaaRT8ppZZe#,e AW^v>5vdO-D}z\`2XVeH O;&z9Mo{k fud23\_n2W $ 1l%%$,G&XG`PD}L*4#=$a. 9i U]D2N>OtL$?Hm=,z,e:$DZv 9v/}W};f|;6A8M xl. `^#%'IqB2*7+:E6!37L_`OBN",.1MKJ Y#*Mv*B$^K>9%P ViS\d,?RWZU8QkPJO_MaTJFB@i<$&>G(;* n bfaO~ZJu./S ,-FiPoD"4H=) mlW2qv,:_FzvninCh7tS>IdC9NUH$rqZqZoWFfs4G[1y[t~lmNdzkzrqFc:vBGj9hJJT6 4#@hyzTC+84/$2VE #T9x[Go33 0(^)}O >4( Ej "`Am rfd>H`{ Go@%41Li8?*'UUSy> Z|)ho?5=O!mL09UOPQBOJMLJJKNqgB!;m$d'SnvpZH:oU>$ t\#T4YSmt56 oT -Ht` no0S* %DHyv*/ $A"u&rh~yhURfU]3@&sq 7]F! O+:KcZREHjcMM*n- X>(^ {c/?Zr1k#Tmxr=e}:|]a*\MeVsp%NL.g`6PcXF%urb1fp{)6U|]( J5>%,LdC N^6H z`Vg tPiXH:<ykI+t(?=iz` F&,<3qs N4Fq J1\vkAYx<9\isdi- i='1?^ (Ps WsLJ!P|~\-q&l[JRaSd-\]- SGu _ c'_JJ~FDb}#p ;m{eD0=vj0ygc&jr\U4s) 'P3p\ v:btyGd:=x;?f5 93g:QKE`vF.ea ndr1v |V.R\fKOeZ JY>f8d{Mc~s[G0St (_NY?[n | Cd@% T%O8a`{T*Kf102eV}BZs;| nNyl!FeDs:~xrWIUUTsP,qk(}nA LC4]c|u]#X?aL`iygS )^7jiy^W.k<@qxiUV&2G=8J,Ji!MCm1$ba2 *C;gn kfzq|_i}zCeEZ% O Z7u>OFk;lc U9 H}\6 )Gg-Im}V6mU Ufu|`V<N[v|isZDl,3Z!pO)4ajdM?J\ uC~~da\SKVxPd#fPWtv\5`hpN#cy5Dfb6O;' BMLMOO}>`0@K,$ wNPR LLE:(Q FjYu\TS*Z_VIZe|ogJv=9;[ya~raVJWmhZBI`N9r/O .Qvt;j6O o|DO.+ M{7OOv0+iu{Wg+N2#=JmJOV]H=Rs\3!(7VcILvrI/a0}z"zHnU$?A$D"X liv`Ei' ~L$%ND{qaT.U^P9z R2W] *Qfom%[CS#.>#zcPAT6 |dpkz1DJ;  [+ EYRA8 PsH51f "J~E?j%+(/IO`riR~AAB[pz ;4wNSL I=; aV"YxNXT'T_x^DeW]?oeYOe{S(,2 <sjVhUwH E7!nC hZU3HeUp&XLAfy '8AKRe)`g=]c[6h#LJI Q|Tm#DNkIU *WS\:Q *' b#:bE)Tt|7>k|@OS/]+#->Xkpe3Ic-}Q "TpP IEYpv{T,xyQKipsm]K/Q2a@irk`Xb dt>$< 9+Nh=_ZQ= 58j3/):8) G,KPFVk\n&]!T|eH#9CAX~ut sWqtrvlj|j'6V o|yhJ".]vbTa9]Y!`n/71gQ^7.l8GHOXIZ4Y>"WcLTf)YBc^ytE/oWM~R/,Spx,6Fh6x{vE0mf!d3EYn*I_a[@c2^0%(b5Z(u>l]iUGb R|VH@EVwY#MPjsjB? t+-J<HbXohh}Kg9>'(8*`o kZWPAD* G&r;]]o5 y@'CtaUj &*^%` .b'f 2GQ[nw]D$=RCTeIy2'sB  $( u4bGAfCp%KDJg[tf/3984w{~`bsI|yqm]p1K&":7RmrD+8PoVY*G=MZY?j*1Zk,!B;W5H~Uzm{s}J|pM M:r\KC\zTd4 v@,>9H*m%|22!tbOIiD!eA wxGI;X.`>aYJv}!)\)t[!px"n=1``~MY rll-qgIP:zEy?) 3J/aC% 1`~tcq\lE} {E5 USs+GQIAyY{z>z=we$=3eVMSU$ib+:88:55p`.vi{+t_&rm>6z 6n)2~6,m_wA1(!-b/'"[ u,tR{]J_(?R; Bo2. 5e7w{T1){FaDG*B,p ?e1x2)HI{/#$: m23[LT@MY=$=l9yw;=VOUC%^'i( zye HX( T; gn'IHV%|3P|<;8" Y$:ru$ NwbS85Sv ~'PyC  <^t>b@{<xV~';mHa S z9m~fRVGMm&Od@jsj^UKY9.Bmf5!KDz {I/3Sqe)Tt!E\s^3B0VsryozH%Wy3 B~XPJL.K$0HS_w|zqVf 2f=o!o Aqk? `<h.sJ3AW^&q Gjs cX!9 .U-tBl$KZWmIO3/),+0DWrf^mDX0h.x v3~Md)`VLoVe4Ckxvu[&rH*->>6N V$32#0=*>1C\^\HFl= t|8V6K Q8irr7 #R]sv"gv]?B&H3WQc~sg\T1^1F".#0f (S:`2t  ;;IO;"8)vLH%9"[>j"S )T@? JrY*t^pbWDR% GvMU lnTN_z+d/>T$A?0_"H/1' 0 S {P "@\tDIvsurY#^[kqogrQ>alxK~]?#'Py!*?wz= YU&w_gP3{)kBw}wo[#YSf2G^ c,^8Q3PI6gU, kF5 As%j:J~|trl^T>P#$g&(-E[[WC,0#qI>S`}@{}3l Cs!:GB;95x\_qR\@I( P>{w|#g<94+e MfmrL{7t[ E_YNBG)8&\%$ f%wK,?  R2Hb@q*G%Ik{lL*(+=WIiLgQ`f8yY$.K~Z~cK/W, &Vsk(*-!Pgb4mbD Y#tW0MJ&rVkLDtG+~$}BwE"~Ty3hO5>hN*K#~/BT`EL!7=CJW:,q7Cy2Mex Do8a(&KF{0O nKplmBeWA~bR>k.[@$*;=Pgu$(&bW\Yevde*ves;OS+Gi\lWW.%s9P5 WndI$&?J:{: #SPx||u]Q^eU3?X' 8[^PLQh)~ "W!4Mii9.{3C  \ T  F{n1]y{SRbdTN?*gFaJ<v )QrO|LG,RH].la#VK^`z%$~ :}i3Se1yqWY,= ;:G9o"-[N0GY6dsgiDagUA52R7\8`0$_8~tkiY=*V%X+0+%S3\d:"P2Hx/&eaB5zz-}j6 X"M9=^/ G6LZ{ D~-l:e_:!p!A L||n8u$s:yWkpgO>-!/s'~S@J"c5~IPK?r,5rHKN#XbSk!6%n<"Tt: 5_$7=@7TTn\ct,`Y83ykXi]wV!T[jSr"yzzrxr2s_l}f^@~,eQ:-..9C=UFeVrx~|iN/5b~U a1 4EMI1<cx!c'G" ($/a8:b}<"05*!:&G@iams,~3]`,|xF UKaH!c5 uN:2J-<- 5H/LILeNzSlxrikJ! c6|p&d\|tg_a&V*=+F>vH jB; HzJSRT  waCaoqd*J1SvjQ)|wrkWE>2"%( 4S~5~ylB( v 6ewV# 2\x~u\L:`!"SI2%?Wb=_|]XP@%h$I*"dO`ZmSZ\< _IqN 9?)i~pgX#Fa@ Q *:JZsr]/V3P5M=X<g/ y)?L ZCmsrU+ _+;N+dP_0 _#@vUv*7iZ_t )^!ey?3dCF0( HgP7 rK:30/k?b9 <hdWd}jRH@n1 >_(;:h-f2B3:IYitqnwR} `81\_P=|>l~etkcpFv#Ns0Zy!? Upta4 5QU`:m;IRbyzysf`adhpEzZn~C $KnI#$-C]<sX{fpwG \.qS}iD! `LUtYT\^fzsQ `%tI G|R@~U+2 s|EK y9 T,!;B>x2R!CG%XBpcuvt)]1CKH?1!@wqM-%02GQN^xj jVFcV$N YzIl _C*e 7 ~\ KXKGIPb}!.M5\} d1[b?U^*CjqT4Rt007PdtGv1I,&0BzHjJ&.$$+".k'w9R1!]P{{O pehg mXqok|R/}kjifmy}_#'Wj~PNKQVejP? 1,5DUOk%= ~_d2V1E51+*35Lw :TAebb$Q~ 9  y(A<)O-W^$u${FhzYX@ M+\CF1Q|Q6 l?._ksXNmNA@&N_`J+!^.8 a{}{Q.)APSJ80.25@P`bYXd|6'*.*'/:Pt-`RId{q+U].oAI \hxu#CJ.s3,od{>`;--jAT5n{e\cnk"{z|Ii<3F_zVYc=i1tE~owNk@|sWXe'NqS1uA 3gvk4[|P~&*$#${rmZD:1tY6y\s>guqJ;ztR-[o2 7vS:a"fU.9|nKy Vc*Qq -2&,>s 9v]~/@AAQT\O+ao6G!m   -4!5D+_#*=8UeQOT9ceB|t`?+ t0^hX>b[al}o6RP / :V! _>!%D457:7$!99xA9 g$EBe4d0nRIGTwvC}^C1^Sm(wGv)u e} L7`3'0I}:^!$6f:VCR]Ak\Q??gA\|igl197DVb]K?DAFF?2@ll~w ]NL|mEqwNqYG= " b5#;EQuZ]FOQB.\Rb?`B9 _OXNNODm?9- \(LatNbi(}Wln;Upx}V"k[XT1 AMitwVEC+  A z !4(&7HomV8ynjuV~aG09Z Bqnr_ZQ19F\XqWdR>?(+<0y?3 @,B\CU.WLlfC$R:auaD-4 ?[|mI)]8,Pv*{lJ$!`W$-H\h\ Y-kgH x;jm0`ecEw!n+mZ}+6OAy9j;0eRB%## '2=F~` Dq B MH2AL[Yrlzvu0t7c.E1I3|M6ql;  v`RxD"0^0Wa'Ns*|jrO.}m]A#c%@ L =th;!b#Sr~d1#Lx9ve2cG*Zuzq[7 wcM&=MH%4gm LqwdF uqK.Sr;e'Z.;W}{!>Wbi6z1PVG-"z3~:119>mQim^N 8(Ac:=8^iHe *lPDT|}yCiqig_KrE>c 4?|+wA[-!Rgp> &p']fJb<>Dnc4#4y^'6blNCOPu,X/K24@]tEZqt'R8 3z1569/0?Qglu'{kR[Q>_[|-rATdiM(<5 z<%w0y00Gx=]$A_lWd<D6N?s5j/w b]R(|00 k[D 6L$ %&.;\iqN  *2*/ 2d>zcPr:PS&!bc l]v#HX>u~wyjlYIH22 %7r@C;BU[iBwjP4y8VOf0x&4+5R^h7 nBUFUsrH7.7*F LLYUg9T( AO aI2UT*J#x,%" L+jL{'eznL% M!x5|^NBS}])'LA]0d.puaK=Cc0BA|@4.1&  0^f^c?l#EkSecJ&d$G)1/!72(>A!GJFE<@EAl?/UwQntp(lXlxoM~A~?^iTZ <*+]-Q6bcsp[y;X bVH7C~_gR=<UDBHh|wz{^:y~kG1 za@ ^G2)%=BUTjf~'ms\II% [# 7`rx%tEghNu)okxyZ/2Tz} j) m ]URZ}YIApS+S1n02R0eCt2A<5K6"$YwtpkhNqej_qqU5T%\@Bbb $/%,V5JXM6 zh0PBqD0s&bTXKP`pG9v*^\#2&3MM='%6Snet6z}a?*{#>+83h7p.Ec>7`dS0(j9uMWT_~*4>dME1z'v3t4_$* TF+u!hI_[L\6M88L@ZZY[aNmJy[{kke fBnmo^X-b;zJNEDY+AViv)Xuk N%+2:}nnnHm'\M=%T3 m$0Knf\IVs)V|!^X;O?[=~%yaMy5:!  *):D@A]jSjFDH0M79H#OO_s$<\q=^p(Eg| S(#{iIh+TL_ *N 2NWm O}ybI ;SZ1?vR:[D0uu_aR 7kCq8f-CuFFEI:/|-^< !=K_s1FLUgm<}?x7^x'/5Q 6Q_ulZ1FVL}"Ff)uWUWi y f!\;g`P5I*f\N|iJ3 g=s`SQQJFyFo;i5^3\-\b z.D_ r 2Ow2CHHA?AU{*6AGIU\YD%130M.$lS:eb8%yiS0AM,ey-]U+ ""LIry2#wQu >qC _E{<$XX!6ZpR5P -JTQY<<:4=1;%) !+D>dV~dX.5OfqZB,ufkt|~vOr%d HvAV"3Z$rL46|@qRk~6:5:@DRaipaX{Ee+CsD:St]9.65^Fqp:sI$`enI`)YKEOTyT~AqbJ%)"*VM#03Seikm=ivxi% ~+I" rN== MRM#[5gO\Y@@ s ^]Y V]bP4#DK[rq!`&T .I!@T+XfV6 }LtC)pTvYKg*q}.NA]o)m<yb7]%eU3JB*D</d8u;AXkKq*>==Jb%@TerxCzmxm \8Dp4((;]} c-<FY jptrdQg=?!\ %O,'2Y*Yln9Qfy|r\ +s:( 'rcYOJ%;1'DXaowC&##M*xBav !1;=9+1J<h5! /Psf8"nVG:*vCb|fTWjV`1EM^}wD )9}EiJe@z6/ 1BM`oszB}ut65{V: *CX h  ;FFM<7NsV$*\G|tN 37;hfX1sX;+24$fFZ *gaB$elGU.7"1i4`4Rdu=SVOA$ydD" *({^nrME%k%V+/3(>iEH?JU`dl0~F<m`\\byIhX0~bH6\'Q{)Z0oJ62&E>kWl+diPJ@R\[qW^mv|'lDVV5]\E"vz`=|t ]@)0m1os#[ dLqJnI +_;891$> MIBO^`c_VTKQ^wtN4# Jz &@BSjk{@lg7 e)"5L{ijU- 0HD*uy "Vl\fv&1/ 5Qij4 wN}d=d8"2 <6"c7D z2:1#y]L : ! p8wKkSNh( 2#K'j(xb"Q-B386;"4" (>WmkY<4n0Tabsw=|bHJ/ cPH5 1lD}gB $2@JTf ,$[.-#J'@lJU-Jo*r{'ZNF2gE#{ao:E*+aIUgWm&8HJ#G>60 (;NFKD/hc54 qw?  JLw>w*Swi[*GQ+r (}moC]uoWl6X3^D= /~cRHEhCN.5 8^LEw u&29VukRYLPG!$( $?m3YD-1 q,NgQJUjf?o.v:C4y+j-\Nc.z3O0N<+<% 6P\AUDj:@E=2@f${hE   09(cCD'^B|U`yfpbiZ`AI(cNE~Ma`e{sr|yx?6HTQU>d3}b@)/kBU +3  #"P>D7 ';=2L(:&6JSL>"zG|o_MaATb7 DS?P{S7}*4C;>>0+\'ZtQ$ ~4[7M\\2WEnK;C]"[([w^N P!][J6,-2J4%3 4*!*1@_xxZ' *"@\]`D#IqfesBl06vd (N0q33, &O| J? \]3 LN)jKysr0-jW>)#%0.D*U"g ;mG^xkFo%1Z{hDz*KqsE.AvY<r:NO@T|]jpa'G*Rp;VWo-Qs,JL8" o9cEDh <gUJtS$wPT- }fE$/9Jfoc@K61>[Z%{ 4g#X`CrC~o M "-AFZ_\\XWWKI4eru`B {^=^5 1 h#(}(["B*}fXQSe p n#d>bRb\b\XaFy-r&.xP4y(a-\=oO[dlQv|T8Hcpofd[iVCa( /f7e7Yw{D x/gAc,wfg@a SGOmpd Y&PASb]how9_|Z'<36-Z= Yq8Hk{|Vt*e]VNAx;_:PBJUI}Scv.m #0WXb&>Q~fr|nbRo?N20-1- |A 4^r,FvtA}X)HGsbUQ<`}S-o/S-rb{cK?4m'0/p$K(;l[!fC UVQYKETCdOqfx~/g 2: <h8+ UeI|3rq }bOablLoQ6wk@ D s >`D+ nY QIJ<) 4NX1e'~oj[SZm ~  vW9 e.  *Ko`5  Hbjx{ncX,YCUUV[RY?I=,.&@}RlQ_FQ:B39 2$gu /AC8cI=[%hXT Q!Z jC|\9diM<V}+um[D )!@NSPI{;C<3##v1Q)918xL6] 'Rd5~7h Ozq\E'"Nko]E?@3 91Oobiw2ywQ MN?Tz=aM@5:16AIBP^`$YSG.Re\Scs3iCqSnlQ~)rG2AJPOWVRN=J>5+>\}1"XxfnOYcK5o0Aa{$'1'&Ml$_(fh^+Yz@slA`np})5$'23|HoV4oRuGPP1d n p v*A]yQ;dwO& ?_qC{~5{fB%)rD _0fPPYj,_WU\ad\,m8:*yfO:6*wauR\EP;eIaE?_mh$^UNw:& S"4*5BO]Y;\&g{XkO81,m($"w~^' xx.PRQyDd>T?E&/1RfziNo$z~c^q/ZJ4zNbyZ9 $4|Te[UDK/9wJ# iG$ <y{Fe N)q_ Wgcv 5b loQ=+0bsgURF(/ Iatg,5r[nkV1 *9}2^0@+# 0_}eE*.\U'Fnx \E3!):DxTkjoX;&.SVwgCA) wtsv|e RBN|`!NyF)?>3(%4<.}d;}+UC:W$gxj SL"T;SRM_Eq<9?2 .Fb$D [m%pIpgdJ/\E7Z1@cpjQ94-@dqsx(@Toovtoprb*I9'DHNPB&~So*k my-u-G[-i>p>t>uDpE^KH]0pc8 Ch)Ebq|z{vXfILS.XZa\cH95 &)"C0i(6f -2 g= t;IoK:BIOG/zrx|d{:h\R[wp'OF 5Xw$M{yrb N9-Q{P~]1;Zb[M>.5dG&SPB:?{Ugp9#Y=h>]jzwS/ o<s2  !M*:UmY4YJbpyw\xAo T1`"odlhbs"^{u=j}`[ ^G\Na>^+TH 5~h&mdkmx,dvppwjNb U? PFTVWV b^XUhAtvK%Vq~*-! i \j+D274%&I,_:]qF eJO3 " wGvvpmB|Wg.Sei|Zr4L, c.%A\mlO(3CNYfkmnyvyw'fl\xJwm<jQLW]sP`@aH|,s#t)x&33" x`No8\MQ_w,(=HM_T{OK{IeOWXHW4Q$K<"]?/+7LL>:Jqy?pxx]jPwMG@n3D'}~vhPh2*@/H(G; ' RkK4u;4Y")sK^kihQ. !  9N`bw>^;h_!3i\-/Yxt9ztmu,5nA\RCa0y  &>[P7XijA1 3\2l K(u(M% X uCqx HEpLx2=D73=@62V("l/lB!w^UK]}9[p{lWIEJ P'j>J\w7f{wh]K3. " \5 {w)n:]K^ex*aS4PYO?#-4>7*h<D sUB7/(! )589@FLNQRa}"_5KSRC (}G  -(zx|~z~`4v,[H?q*-i$7}NxgwI7;-<R?{CRpO+p:E=:6p0li9Q(O+T4>?:C@SE]Hz?. v\IGC1uY MYy-CB3\q}nWI[5=8 I]l2D9\Cr=;2 }#Y;2S \^lkJ5+z3s@qU^a2u#`6Yu"v/H,MdJ~;Z63BRcs|:>q[jy{!x5YV* =ge=S`,.T^4*779>FS[j# uCiqcdajp8IE- Im}twx}adFD.~XD6)#3Ngyrs|@@o8Wrxk8 e^/0sK*R))K*idh`^YTXbnx<mnR6+" t#M,'*'|cVRXYQg*$;]"14/&%0@IL A%<KPuRdaqIn)<LWcc:c\I W#p6ICr%e !;Mkk~iH|Y9#&w|}n-Rg3#Hp|ld^qRWQ>a.w)+-18@@@BUoH m~weYXewvu=bFCr`ZP[f`]B#+2CfH&FO^MX6a:&$3HcDw-@IRNNR _Bffnye%+wERY'ip-JSwpMqK"$# @l(@KG83!RWF6;Z|k.%N.qSzd(t+wqw5{Dvo1rT5n1y"Dn_+8r)E\lpgI2(:SWwp~u\O- vI"&0+! !;iO9a4jGix-z\5wo t/Up3$Gg& "  -E[$m89) d?yV?13sBZXYtV]k|(BNPIE8!?UhfLRn{Iz4VI9R,N@, rrw0j5hKEbt>]p*( |d!M?;O%R JB749`9:=`0b({/gKQZ1MJ0 <aX+S+&dmg| p-Q\,y(5&A~tE|)3>;81&ty(8H@Z_Yw[v 4BHIGINSBJAE^xX>2GQ6 ?mwfrpL#bAj*E+"EJmi '))w/'&=W\K2wql]t<8i_;/9Qrt@>[YA|)U(9H2?X|1YzjMTO0mlIR(>:,P;i :^o@jXGA<1!#)3yF@U [P$8E KE:-}&t3fLUER0Z,a4X-H!='<8I!j Oy7Xq.(Ku#?tMQg(|=oI!] $ |o:\a: #:Z"w/:IYR6$)Oz{T( ?HSh^f_rK8& )ie<eQ;Y+ '=e^QH5( '6FdsL|]7 dF ^1MbY `~#D8:Rc`_U4Y YflTD87%FGnZto6/6AXE\<]2qF&2-*W3+G3 .hw@[Ep-jh'~eS?K90(%.=Rl{c3LG8[ u-<STKUr`J^t7Yuo Rq~HVsn9s~}>]46c0Sp  *,0I7ZDYULd9Y)/S)E`n>:#@]^7h =|ilQZJJW@{>Ln1e*RrC3?HSoYEWM"}Fa S"AvlA9#LKzk}A]xpkcM8. g{cP?9E_5xJ>[n}_oQ*f6iRH&i'BrG)l6h<0  :hgkuhuD\$HA:91.*@vWlyug8IV%i L2(&p/8IkkC+8g:R(HZ(-*0;DiJBG*5u+W$=g=w\f UI=3-&} ^f}+A\u'J|sX=S}lYG2$mY3PSDJYmK!Iy(]w4l0^6f+$;S% 3 i 3 Y{lT`"xHmnY>tqq/WM,crn4]T:`1|A2ptHx7Q[N/mDsf]P-B712A_s} 82xPXLQ-AyaQEA}PCm g!4hsu')]A!#]_1 __cc[&N[@9..AHd~@ulddeAjotvCYF.my^NAqjg]n Fh|nQ+} U /*;~TxwljZB/g=KU-is}rZuXTp0 z~+Y <!kPEryNk/7PZ BR!N"6 xsxGvirs$_$O[~a1N. /JY}[PD94K.{.1570 "- 0$&Gm?"aCuZfaK/+Zli?c"k8L a !(/8 G+Wbgv'C^ #'l^VS|ZemC w$JE-l  Ex,(u&U$7 &8DNVZ;T^Gn7k(]WMADUjtso|yopgRe@m0y~ 7_s|sml|1sd\zAzoT'u5w+pQjq3F3\Yq5n,F}eXi4P.hE$.?GD: +.h WqF-d4 %@ZtwZ6{pkhilnh_W D i , 3m*UQ0JfZ}v ];U%|rn{\H)& ANU_&jJnefw[WND6#uO`UMXrgM D,KKdg~HmbAzsdxUhI]BJ:+3*|tsXdo}~wwv u:qfsqj]I5'DX^^^]Q?|;pJeMY4ST Z5bClSzm(Lf{xpJb&^bl~BekMq-e9\, -CZ!_ *55l<<8447tC?W lw}xhS= /V }`*E;,<!>$E)K/95!8>K^qwa^ZN<#3ITYSC+O#X 'Ju'K~}_ZL{*{|~{vacFK0@<68 Hf  h UNTf $Dj#&!m5 $Vtz~vt ||"~*n4GMo*NVF0jU:eC(zL Ez!>dX4Fgh3/71p\(6l 0D"*$'##-?[orrlNe&\P@24:B|Q_e`sxri_^_]UH2wnye;=_y|x*522>BHoQRNvRzZud`hEknp_; T.|E :X+yB\t[  [!= *[BKcnynk*(#L#|#}#~ci]E1zO(o UI<+&0.[E[q 7GS^[HxM&s a\N ,CV`f n!d8Lg1hgU/L8& dN>- - >:cTm9L$^@m9aIVgxkU{ jR0vfc\R>%1+/Yulec UE, !WgL;*.=JY`WdH_BR9F.<1)" sW97A\*9 b(Pz-Oh{xzJqbC"oU9S (7E^u#\o|xX5vjT4p(D:6`'D]w  uX(mHA9y&F >j 0=PBh~kM0nXJFzKcFoI\x Cw$IdtzzvtlbM<#=b-x s~ G{K3hakI zZq=f ]Q,3t|v w$620^{ #<SmRxJ77Ce|y_{?hVK9 (;/5CZa[^1]0Z~6IV|^-\M0O~U# )Rvx@`}:Xp8u~q0phZ RI8,*/47:Mds;{k!-$_1h;!Ssb`ju*4JXCGg0'Y- xj%)9P[Z6Xfd_|KGNM}AmVdfdjhaRjD)4^ 4d{feg<va!5?DSB(59faH1)<0*25{9jPWhJHLXj "9GG6u=qxgPj  4YyrI.2Jr {2}bO4ywOZa2jkztK$ >E*SZpus"d$m-9>8+? :LP^X ?G1bqv|~[HC!9D3S1W5i<{<:* S( 1bEAWTimxX?|0w)v4oaVTZYNA2'&CN W9 3Xe#GNc4Pq?|*Ni> f<|M-5&|7u6mgnrj/XDB^5l9o@cCS@XF]YRi?}&2CG'p1Bm!+$!47qA\]H4 #v!c2_@j;z)Hi_T4';7 &,(9 >:7?Of BZaqxv[Kn@8-+:KvnTJLd(46h?OL3QG:+ %.8=5!}jCRF=ARl.p g,Bax~vj[C#$:`*)!"+!4 0 53-&Q!v/.ufivxca|`cR>K>&|dQB) &5IZW&?-)%!Io1T|sy}`=1,/jY/O2vA83}3r)h2_ZX`[KO[0m dbryQ"G~qo[yBh7W1% ^IA@Nv"/7411 4 Ma*Ygqq`M0>8+A< , ;wcaN:8>BF Tevo[6{dEPLo DkJ+(D[T{hfO?+5^p%1@hTMm0X,iA,)3S!+-6FS; "NvmceHXNKIEB?`BJWcp{X+ #51"zv  +$j^jPxvhgh+_)Q$5(6M`scF!vM% Cg5BYcYkCO0? Gf[  '4?EWkyo`HPe`I%0.mM91,( r`R9z ['B T^r @j ! 3Jgk]cgu`Pd!qwqm}zjM2Fn]5urpg\MBAFE;#8M5w;DPXO<  :E9Q+1DS\bitwhW-R1F26@Ndt:eoaZUYXP!c5 l,FZk{rmW5q [>i0{y{{vX+%&_':F(p A{:ccC0,04A8n?QbppcGD2rms{wswuY}56%LV`BmtE'2 l}W=/^ o{{y_b>5(mO>8Kp'/f4 ;Yit"}$)zaE(#:NZe~3Xw7K_uw}Yv7m quwz{eZB/)61M1Y/e;s5vs jS< )& F)q=Q^`d%jw xXF"wJ{jUf+hin "]*24>CJVj!-0%.Ia|#7FU dKfd^|TLFOf +1)iC$wvwbaP+A8:GVf|ziacr5_x|9XuoW. DUTH0ckUJ:IKNMNQLJ=+0-7@Mc]RjJ|FO]ba[KA;3$+Db~%E\lu.tDlYibhcsnm<vnifc`oa4bhxvP5+)$@RY^^WUY)p_EIuY]XL9$ kTEBF@5k47) u,hF78B O]py9'Nt (DX(i0~1/*(.<SEontZA3*yhYOIA">#=;0 O-=;D`YFj8y4Da 8a .?B?8202k6Z<CD:N<T@N;>/% }W?/)*40F;CCEK[VZc=p%w{ww}/yF~RTG~+ #;4UPlpzzwlimUlG]CSFPVLoJJGBC; { k[G23^ upmZ@!wQ5"8N\r:R2sMexwmcWvOdNZOUNGL3I'>!0z[<$-Qiq vqe*UADV,k|/GV[P9  BU4aQnjla_Q6''%#',AID1=xQkf[eIT-D 9~z]g:UB0pfoM%M yCZk$Lk{fJ;' ]0|dWRPLHPdv} ";#[8zLUMB5)# kJ/(|#aJ7#P!&;B?8,(14Fdp a&>^'<GHKUbd^[]YLBu7b!I #{mX@3g/J*$,%1SwydYZ\TG Ol9Wp}l[H6!-zITaw 'h;LdEXrM)=b l`fqjc]bi}5tKybPPgU0V[d}4 Rs "'-<ALzf|b<`2 h:w]@/Nh(Djo:c`k#:I7QSJ`.j ~fB! |{ujaS4iuQqItJ|Xn{tqnm9m^p{z ,v>eQ\fTI;)Y4e?!t_V(W0g7y;<4% '5=J<bW`M$Mpdj?x[istiD9[r@ rl my|S3$}lb\]d kz!!>Ziome[TRM@%"&+6J_rwoaL& p_WRONRV\d q:Pj{oi)j*m$mho}U>3.5EXsb7@jw W68Tj!+5D]wnI( }W &"vorrL<8;{IcX>l2G\o !+-87RRut#G_ul@v{dB"udz[oFe.gpy[: "482!Ab+_n U*<I j )BRR>pS>.i K2 wpu0>;* Hx-Uw 1@4KMY`j`tG{|o\rGW$EBM_Bjiekugyb}XTUOD>=907%A$<8/_" L~t\;=pbI1;S]WE!.|[=!.MX[kx'f^N:*!K%u-5=Jav}XG<<8( =j |Y>(pAf* "5CNY[-G\*a`2 "jLWwI7" mM1!. : =85Dd &-7KFbQvRPG5 3[uy\(}>,/6K<ZFTFI?7G!TS F3%zeXNKRdw,|Wupos}k@lI>;9-7i-: D6LY[qbxlo\I53FU`e[KQ2LL NQMR^feYA(q[%I'B$K0TLYlVT]ir{seuH& 0S}Fp"('vQ,>\{{asMkEgJgZrs}9cKy &,l.T+8)&%*!5%I.\2u885' |\5rigt/Eh#"!uodM.0L_v).4>C5#j [F"s: oRBBRp9q#.3g84(  //kT#<G,m"}rlkbmGm9j4j0h(filjjt{ "A_zcvIx9~*&)2Fh|%D}Yx_mZWN@;'+ iCvkccz6~M,674F1h0v%} |u`> ~a>"+AJmGWDMN?Z,cb\UMKH+?Q9w<EGA ;03M$[ dkqsrv| /IZUB50e&E"}xzwq{qy Dc*}=UgonzfmS_8SID</iUR^}r| WwcN?<Kfyj@N/ #-/1=KM<({_>qWKFJdriiv"W*Rjx5DLF,tY:s;oaVuOeN[PTQTLXGf=01GmZ($ "0<Mlf"_8& xrl^J5%(;Mgs^SPUcrfODI[o&~=Zxt k dS7@o+<?NebkkaWGo;U.3&!sFlf[KQ8I$?4!*1"=#A/=B?RHcYyi0g!5BE<8LPNC, #~6WF,YqI }ijt}vm^QC1*L2RJOgI}A;6)  8P.g8s<~:7n1J% Z$nTB5,+5@GP[t )DWg t'4?HPQG8vQ&hB# xu u{-<DGM-\\lw|t0cTOqD=>{?x=z93,%!!%$$s*Z2?1 & /?JO[ p$.8?+>45/( b2 jM. u mo!t?wX}lx~~ 2Pjz{q_G'=_ 1=>?@:*~^?" ukgfjoy|=s" !')38=@D@O9]4b/W+B$+ FgA$ ~tnlieb`afu8k#Ec {"0=HJFA8/,3AP\[5e q{weP>( o}WkE_9S1I)?+8/8<=QFcTsf4Uz %'C;RNTbRrJ:2#rbUJD;(_ 4k&}kyhrphq_s]y_``[WS#[`mdLw$+7AIwSa^8k]~X9" saYK5!%?T`jyueXJ8,+1=POl:Zo vw2kFXYAg&t{W{;c K1wqnliccpcI;ARbs ' B])v6I\gkf_WK</i)#+06t?:F HD<& W!9DGBBkBADHKMID>3|\9iH)t(xEi&Da{p'N;/IT]_\PA07Qcr#{ ^(A/,$s2 qc\%i?^ ?y%CRUK. b,<I] eghjeg|"-;P`bZ{PqDg4^!WD'nSDFEKS [!bd jrl[E</zbDh#;EfC i/Ytx]D=xH|`}vtm\Hn?;; @DB5z,b0J<59) u V76R%q"#)8=JxVaq&y\ 1Ttq@ ~2]E@zHASYXOID>>IG1!/5'!""1Maoxg>+ &-:VJ"hNo}jMb7?-$  0Fby| @YzZ}F0ykW: #5AGG:"04U7&:6"!T /0OJo^kvd?c> fRLKKVs 7 f1>@6(  h/E@[{ ([@4WmyygK|)n\I=2"kQ E8'$2F(]9|;>To6O]kkbN8'(% '2>Qblr#v6oCdPS_>~*  h<}qY]KSLKQBX<\5o:EXk;Yl.v7t8e7R8B9.??BDRhxdattC$AV^cnvlN0{rt{zuphbdm,BWq*@CkEIL%UYTMKVks| "%#$s$Q(QgQ;&(GnU/>Uh5qfz}taL6p\J4$(DaqsjX65G Rbq{{zmsihb_^]jUx<bC53%3J3w6AJZ s&=FA8-*D"c~{S. kO;+&.22.*1>vEtHjLeLf@i*wkUC1*1::8Kj)[ -/%#9DE5e0)\A>P-\'h+v;_{|+CzStSuD~5yoig[RPNI@;<=8<@'>41:DUepywHtZ-%;Y8_x 4[pK%oP.~n]QTdvrr| #I0u.*(^3+I`mduOyM{Vg{}|}~},zItcg{O1 xk^JE7!/4BQv_Nq4(1Ml B^rxz&v:tJcMMC85( b"K3@DKPmSJA?E<v>K^m}  ^r(T6xP,r\HBITT[j1Rs=_p{|lM$1CwPUXC]>WFI[=r=D<37FW6iXrmvvm\@"}dFhM8( (28NOv^sA`||eByfTG:(*U2GI=1#SXI3cLAIZmCg W:^4ygzW5t!ZE 1 ,@Te{oEfK4.@,j.8L_z0QdkQuzwkU ;.Vk%9P~zgjx,6#=JLsUK6 [ ;-%} l#aE^kf{8h#AT U!I09<'FF@/\(ybXQJIJAKmRg(%F*S.Q(@/c; 2AVz^n*N5'!MHg'h9s&?JU[eopetVMU"\aZL9sn|()H=iJWfuv^: vuk]nAz" %4C;s=;/h>pVLNOQa}&9IRL7   #q J# 7SpGv7h#29.~nc;M @3xUo*sy>i <Q\ZZYJ1/=AHS]ejgZaX\YXTRUMnMT\j{5]a.skNmqsv~tbM5){){3Fb 7b6Vn{ud R @&raO!4?k 0EKLI~0iJ)r#"'C4MjoQ@3/6=Swa:c^lT< ziVhKMC:;%7;>>= ?GK"?1DUjiO>76_1''4GVk{k3iks  (#xaA!lkWTS?X(XXX]g%u0Ip1450**k1Y<YFiIxAy3}"?o 4KS M?+i?zzpaRK Tahr!)35<:6;$9?I[nkF# !/Fd~&=MYpUVE,+ }Z>$p+eGeje`^_ek(pV~!8IcRAQ#J <5:=6+ 8\,=LN@& zcG&uiio "/49M8^/i$veG( *4:@A> 0 ,#hG0""*4<J0`@Sj/p4E?.f=baOii~fF%z^F) wknx<`ss`E$ycRIIPd%Fi2IB//G]fY= .NeQnk[?U.,E^u *Qx   spw-E`~`.xcRH6="<EVhxeQtGYK6&w+X<1QqybrPN=/.' +:O-i=Pn }v3mGgUd[aZaO^AX4M*:*2;>:4|3z:M^gilv~riIQ$B 10[}$\KF_9g8g>aL^]bvpAetS0yNjTE88BRk <!Q,\'Y$Z#d ikr~z_O}@[3.1=Xw.V :SmTvj`UORQSQL=, (++)&s'p,|.%'Ie|#.:@BEHhC<6 & !Q r[LGOfe1G\*nPzk{todRLV`a`XI@u5R$2!#,6=GRVQKKOK@3% u^RNWq @n}}~nE*Hu`Hn*rmg_&\5UFUS[V_Ua[ejlw|pe~[oOeAY6A'(!5Qy$T+>FEABB;)i6x mbUKGDDIO\p&5 <.CUPwTG2#/<DyC9( x-P6,@ HKJD9$yfRB99a@QPKd@z-/Kl<^4DH>(g?h`pyneWH=;V9Hc} (*( R +Fiskb[H33A|HoK[YEj6|6:7/%!,111.+T{lZRR\lsL<4tH$*@-NFRcR~V\doy 'Fevu^F2oS{oe_\]c$o#!-62 0 >FF9%yO+%:M]r3Kax9QgvbG!Z2'12'`tCw3(. N3l[x-Ig`:|cJ1j9!JrG#t?KQQRH:#wcJ6/5? >5 '  .DQZbgdYF//I`hfhrxve]K$~/LexzgZK8l R?@JLLSgwh]Yf2|_eEw,fXNIHGJVZXR"T3_CqLPSPLKDPfWP>+"<Ul{}vfH$Z?/%wM}y2(g:NaXF>J`V{M<8/s]C!cB*% }j,ZKHl5!O=$hNfiU 4';GNRiT:Xbo}riungtZrSqMoKjIdFiFvJ}QzX[[Z^ZTNB41&Phwv}jD{h`a~fnx 1J\$b?dKmRrYxcvkpjlbqVsNjGV=B.5*  )AKOQ7ASqt{Pn6Y=$ #Luxmg#hDjasy 3Vpw`H:2g*O9%|gxV[P=^%} #>AXd1GZohF.~siba1VJ;0$M,]#FamxiR@'w mbI( ,116>ELI~>w-s(|(167:CPZ!d,z8H{RjWcSXID<;39%9; <ENXceZH 4"# 26/!uhZQOOS[j #<Sh hPu4U5-ZocX9V\[iyxuoeXF1',{5cDC]%t 5Rz}n4b_YW]enxx(^;@<(3 &{oxnQ4 {tzhSG:431;({&,7#K8f96-'C^o^sCq-dY L;* ~ jWE6 /0;(M<VMU^Yhnnpuxv5u=pIg_WlKe<\.U"J= :BO`|{U+|utux|!AW*fBmXsnvv}zujaZID31"{pdWd "*-+!$1Hi%0:GTZ\`nsJ%u"\.E04-&!f]foniz}ywy{';ERTJ? :80')/&34593*##!|X1 ?u"6CLUZ0UCIR?]7a<bI_QTJE;5$(~z;e 3FXf`pMr?o7kBdVXYJO9L*H7  a7 3@Vlv7KW_fjov'z>vKgSSVA\;`:a2a^]XUoL<=* $D]y /Iez~rgZQLmCU?DI9V3e(n!t#*5CR\_f9mQohqt~ t6NG%RSI?6& dC!zklnkt~|~|ytrnls(u8~=<?EJIHN O7!*/57:654/nYU\kna\]c.iPxfqx9Pds~Y1}{oabUS[Fc<h1q& ##A&Z-h=oIoSmWhZb[^U\Ea,aXNNTWX_eP){m^PLSW^p-31/%K`q,DMG<6- xk]G/\E>4&(?\w.G^loaK8%" " "|  "B\s0G_tzqeUD6'uX<|%.4 7 <%B,FACXAbCXDEA/:2#,BPZ%i-{.'~iQ6f L4.'A%[,w6I`y+;/Y$m z}}yq|h[c=\VQLJIFrDg@\;R8N2M!O R\ozpgc}b|elw ?'dAUbtoN+f>mYLIKtVPf9~+ ##1+>7K@aE@5.&  +.+/CXgu#0<LbyrV:(u\Jp<g2f+o'|$  &4A N_p |xqiO&ybPGJWmyvz $>MO/NEOaK~C90 ~V,,=O[\ Z.]@dScdTrD|?~9}(xlYE5,'&%#" ,<FGv;X1A,+"/;M~[opghggnz@i)BT^fh^L8+{lU;}sg_[YY]f+o8v9|47;3 &E_pxugVB/  *EWk~q gd\!M;,(6FT`%p1z;~EvVgeTh<h!e`O;'v^H6,&"&>Zr?%^/m9r;y?|BwIjTb]]]RV?I%= -  $#!*3=FMHBv8i%gorq}xaOB>DMY5g_z #6H[o{u_M6oL!{{efOS:>-#(. > Scp 4Oq4Rl!VoP4a;yv~~skik'p9xAFFB6(1 Ih q^G.,@Ui k%E(%$uh__dlv{}} ,@MT]lwrh^VN8 r_I$7$3/19Ke  +1.&%(*)  &.~2w:uErRw[aelqtop(t5y>wGpMgVUe=v)!(o5MH(Wbb^WzK]:A#) &-5|AoVeo\SLPbw8M`q/BOuUZOAH+9$*9?:,%! .?MRPJ@73* "7HQSOG@=@?!7)-9#Mg{#4@FHOVbvlU7qY5i[XRSUGCIROZ r %#2*=2E;K:R-V/Y0W&Q JFF#F%E'>'2#%  vnnqrw!8Mv#7JW`fp}un^G0 sV3s_\WC1&  &:Jb &^^:! uvtp|7J\kzp^QKE9$  (Lez 0{DYV8ftygT:"  }rbRG>88@O&k5CMaxwAw\q~zdQC0ygP8w"^ UW_ht!8@<>=8:4-:DGIIAJXbe`j&>Rap~|{xdC*qW:  !#~||}{ofdhvmxp{yzni/HZ/fWp]wo|xh[U]a\oO]B<:5.# #A*`6zCOavycP?%|teL6$kgf`]l}z$&)*-231* 5HQ`mys\?x_G{;_5>.A0HAKX!g(q# wT<6"&255334.*+%1&3036. ~cP@0$'Bf+9DR(`8lQstw 7RUoHV+>-Zynpsljotw !8JVZUGm:U)LI52AuE{WuarowlF" 1BJQ]g"jn pl_P F 9)silx=-SS[zfu  m|EbI+~o^LHIKw?v&~!&(z8rWpquz~'1>RhtqbUM(CB9P5K394+:$A#I!KC>: .")>P#_1h@uQXQC<77AuK`RDa+lk`D!|fmndbkoun ims):HIE<+Nq ~q_UA5,%=Qcln&w'qv}xiQ2 0@HJIIIJ>,$"2EED F I6QME_4m.z,$*1?Wwah\PU19upizfyn{pptpr},Tw0Xo{gYKx6||l\M7}yrs~ *< G&D2<79@>ODcDu8z/}3<CEBCKU`~hlj[qH|,|na N0~|wgYICKJ-B==8-! '55/ "& .#2!9EONB 3+-+8M]jv~kT?#   8KVSC+!(,)" m4XCFE8K3S3U=SFDN,Zs?c 4 IZa_P/7DXix~utcRK+/ |qiaQ=139942:;97629Pp,;B=;90*&#'=P W YUC' "'*2<@=9<JX!],`?`O]TXXUhU}QF~7x-i*W)P'M&>)2,+2!42(.!''5FQ]dbtWoEf-dugOE@DC>CYq'FczxpjdS;(8 L[gopomj$lDp_wpzw|z}vxqu_sCs&uvojnnczRpBt8}1&+1&%..21-+08DILJD9#.JmropobF& ymaUGxB|NUTSSTZ][ ]"h=wHHKTUZ`WTXTQF/6Zt  #,l*Y'J!<50% !)7AGR^`afe[J9-$r^Ydm~kTC/    .CZx  !)18?IIHOV\jy~yv)i9d@h>q<s8i.c)^ ]\N, )=Vm|.AQh|i]WLEB;z*Q-wmr}se^}\qacj`oVxG3$-Ec:Z!'5CKS XQOSU[^\UgPJN/F81,"i M :+-E\sJt    ,9DLrKUF*ECCJQLB?@CxEvGsGmDm?y1}$  ! 0AR\SB8/! *5;4(./& .GZhmcW J@#;:77?LQX]fpx!-.023AQ]^xbpdaaM[7XH({ocUMKJJSdy|_A0( +'21=@PXqp~N}gRA) b<pU<& !3G\y4PieG) #v7W@GGBN>\AhDxD@CFPbuoTF @4 (  #4r@e@_9Z3b,y& ,ALSau|iR4!)*"0:AB ? A EK+S/a,u'"o'].J330* % bH7.4DVizsx/It8]|`,=>F E9 eAsP# );H[x7RgyoR,' @Zv q*P4)? LNH<69>?8* %3 ;9'!2;CFxDpIqMzC~0 q`QE4(+9/A6B:9?,H\x  "&" -+R>lM|Xbdhqy~pf`\]_ba]X{PrEl7g%ea YUUUVXXRLHFB4w]KKU^cqud[Y1ZD_am ,Sw\4 zZ9~{v~?%-273!=^|=Wf{&07@@:-yZ5 /KZgw.70(0K^fhdj^@UB-tg|dddOeCe>i;wBSgzn_PEAIZn(JpnM#*8HTXRLB8.& #)4C2OY^lyj[UPMMwNkS]WUWRTHM=@9/535<?<6 / ' |Z:w` I/3Ni 40XXz$A[ukV?'x\;}^ A2'I^rr#`@Gh, %Ggwyz}073# dC{.k:fEeQebjxs!+c.<-$wZG;57?Rm'.4872,,/) 1CVcfbXJ8 %+/26;<8-&(+27=F!T-e>qR}^^[^~`s`iW_GV3N$G>80 *"touzdRA5--77OFf\|w9PamxmZIw7m \ H/}eL8( ,+>=PMdR{LC6' /K_nz{o_UTX[YzYXZ:]gw~'|Hrff~bl~ 9 MSQI8 w]RLC|4V"1 ';Ne&$ %(0= IV b*k1j=bL`P_RbNhDm;g.VB-  &,4ANW\ZV[_^\(Y4R<L@JAEB?<5/% zaE1''5L` my &+,'0N8k>CKWdnpld]V}Kw=l,]F) ve]g},<HHC3*=R~]amxxnbUOP[mw}~gK0 4I[rlQ6! *Fc~r`RD:60(   #'%$!%, 3BQ[birzyqh`ZTQO*M2E393,5<;:Kcj\IM_mkZD<DB-  /B%T4_8`8V@JQ@`6j.x,*++'n%G'#}~thec]WOC84:EN"Y;fOoarkppfR:# $:FP_nv~~v{ncaOYJZM]Gc:m%w ->;-4O7lH\krzrT6hG|(k[UV\`egn~wdXPKJIObx~6IOMDAJQH5 ".;A=3  $1=IWckmiaYPHA<<=@ EKLJ)DA?P?]BqCCDDA;4-#xe]P<$ hUON{L{KPV]gw!-7BHJJJE:-    0<GR|^ml\tS{MJLSVPMWxz`G4$&0Gkp^SJ@854l<_JZWQfDv749==>CP.YA[X[nczkpkW;"~mtMe.TB.);K\r! ,3=BGID0%-/(!xz .G[$d0h6o;uC|MwRmScSZMHF2@:0 &  +;BDHP^mtsmjaQ>& $ +2)462=)DCEE@3%  !z1o?aQVhLzJLONOVjm[I1"6H\s~qdXyPdIVEBA-;4--:3)b'C+/0 6;<94%rgfp  $6 LczjP<,$>%Zr rha^]sdYy="Jxp]C* reXNGGMTZfy%-KIh`zp{wfO5{cGn/\UU _ u #'+01-)>[q}xeM{DnHiRqcv{dQ@ '"(&$ #)/53?-J#TZ]TB* #;T,e5k:lAmIoRqXn_f``][ZYVXRVIP>G/6 (5AJW e oufE #4zEiWOe;m,n jaVD1!%'+/4>QnCl}siW@%  6M%h7L_r~n\M>-}ocZePZBZ-^_ds (387* !s^QMN+N/L(NPUZ `o +1* 2G a'~-4@PewmXK>2&rS1 %-29B M([Lhfpqmm`kNn8t"s gWLF6!"0DU_j"{"ycN@0ukc[N!D+G9PLWaWoVuWrekw^SE7) *If ~ u^G0 +Fd&<L]glkiocYY@P C2! +CRcqukT6jZOKN[n +25<A>6* %;O%b1t<EPt``uK910,!rZ@%%-6BIH EN#c'{)$rX>)$/696 -##8L TQG@9>DB9$ %=Rdrzyrsg_XVJX>Z6Z1]*c kqrs y  -Mdt~nie\VRTXWLB:1' $: IUaipvwxur}im^fU\MN7GN`u|rr}5NcqrjZC3(M ]^ZUSV\_\XyOsAw0,?KOMF8& .;Kaw4Nbnw{rbV@jO5 (6?HRWXRG3~tg_eq~0C\{ +4:;3" sT6 &4COeTK]5g'q&x*w,u%re S=&%FnKz ^= zyxx|#%7#P!j~ v]C,&;P`hifdbda[XTURH+8:$<:;6' vquz 'BZjruqeR7 '8IZelkg`TB,+BXky}{rrgd[QP9C;>Sq '=N\l+8CLYqh]mKi5_J13J^t)26p/d"_\YTI>/ )<|Ni[XfHn8p)lbT%J5<L-e!Gd~cD) )Ee <Uj}mQ2riXB)   *=HOSVVS|LvEv;|-$z.~7AKQSPH&;7(FJHE@=<>BGGHHHD :'/F&_$r$'1>HNSXZzX_M?<-|pklr{ /Qou `F& ~bJ8('269;AIU)eGwd}l^)NI7`v pP32Sl{#(++*'%y+X7?F-T^ cda\M9 wi\TTWY`ky!4COXahow~| qg#W3DB2X#hyuaK8*$""! 6B"E-J7Z:w=CHJIC8+o[=jRD<:;;>J[tz,v:u>x5-&! !(0<tFaPJV7\+`+^2Z?TUKqDEKUap| !6J]q{m[G0 hH,jH "&@[v$3G%Z/g:lLj]ejXlFj3l%nli"g2dISa4xuebEO4>0--"  :Zv" 8:-01'*+/- # 0FZgr%4BMOMJAm4U&NV ^^^YX[WH5-4;<93/)"#(-8FQWYXSI@1 '18:5n,I"-0DOZm){9uKmgls|bQC3/(  #'6.J<]GfUuaglqu{}vr{iu]mWdPUFE55&# r`SM}P[h{lTK Ys+4:=<81&4?H`#-=N^hkprSr%oi_TJ={*re WU`ly 'BeymYC4-,) '2,>DEYAj8t2x,{"}{z} ~vl]J3 !,<Pg0w>KSL;t%eWG9( r\MII$KJTh`umz||xiZG4!"/<Q e"|?ciO;7{@nDc9V*H!=0 hyM`CPKEU?\Q _jn!k%e,`9]S]y`bedb^UI;|,bI.=_{mS$G(>,2-- +'  %:K K:!'*02248630002.( !+!2*9(=$;%6"221)/;*F(L-P0U1[0_.V-H-<*3*-,.+7+E&Ueib]YRF4}zxz  { n hjz"+5@"J;RI[PhVv]~ecRC{5w"spkaP=)saSPZr%8%B8EQBm?<81( v^F3%    m ZMFA>DYu#0:BKS[ags~~o\D'"/>GJE@>><7*)'6.:=8V2v&  $09=>=x;d;N7<20.$-/ //(li^VVKPHHJDPK[Ugbtswm n)rGl`]qNzK~L}Wzhx~xy}<dvdP>/"lS @) jWG@CLY k$ 2DSbmsv"w4rKhhYE0 }fL/trqpib][\^hwyty""$$% &) 07985450%?e}#t+e8UFCT6Y0X-V)Q*B-...117GXgortm`N6!#5AFGE=4( ) 3;BKYc^TR$R*J-73:===@A<0t aTKID;>vSfm[WZalz-?OY]bdd`\VOI$AF8l0*&#"$)042/04a5=3/' %*&*<KYdlnjbVK=0& ')&"#!tu &9LZ`a_]UF/. DVerxvrmlieaYL<*.BXgqy}~y+j6W<H;87-/+$)p^PEA ERj &Ibz|o_L: ()@Yqx`E#  kPA<99BTsgdyVJCACH VoIsy h&XDDb4s%zr^ P=# %*&)C`~~m\G- /|8950+& :NZklW<#@Ylz~}wnbWI;*    !'-51E-V'b&c%_ UE1toonq{!<R_jpj`RB1%.D R`u  &.7?FpJJF!<.voblJr8,&&+9Nf <TkvfT*C45=/C+N+[+`-Z0S0P/K,A*7)0%&"  *7E OZem)q4o<f>Y:I.6" rcXW[al"' )?SbrvlcVF8-((("  aD$2(% %: S n (D])t?Up{i[yPlEf9^.[&V!I2|gRHFyEd>N978#@P_g&u4# '=LK >1((9%H!Vd p|{qeYRON S$U<SIKLCG9;)+{rmmnqr{ -AWjyyp`G- ,>OZbgfdZL@5*$!$,3?M]kv}~{qdT="4DP\jstqbhO_@N5;2 7?FQcv7Rm8Um}s~^rLi<^/L)=%0!% !!!%& #lZJ?9524:EVk>Yl&:N|a`m@l#a WW[ab`]R<!    '-451# ".9C/MHSYVdUnP~E6#_6#23/#|ocX LCE%P.a6w867@DE'<E-_v'*#zcM9'"%" ueYN ?4*+/;Ka}8\(:Uw`A'|cG*o^TRW`ispgu_u`vaua{a`ajx >Z#t6??>EO\eni~N1}pksj\n?v% $|2>LW`gnvz|ytl_P@3&#)2;!A'B-?:;F2M&JMUYTD4* !1>ED;+!/<tAcFURKeCr=u5y0/4@Rizob?Q_=z(ym_WSUmWa\TbHk@t=z@zFqQc_Np8yi U?).?HF!A5@SHvQTU]#oIi}~yn_PGED?:1)kL* aK<0.4AN]ky -Qt_> !&-6;8/ $?S`gif-^8S9I7>:5>,;1 '%&))'%&%    ")),27;95/& "%##&,2468<<6%|qg[SPOMMP_x 4`$2:@uE^GGL,HA:61yl^TLJMZo +Q,s=HUivoi`TrGk:m*cD |f F &""$2G`tCf.A[yx^F.tbRGEL\r_:Dd{icnwzvbK4"!  *8AB>;<><@FC0 $%$$%,3=dCPHNDS<Z2f!rkWB2/L^p~ 5Zr W/UM^i^~R=.&"(& { hS@/!|%^/@9#EOU)T2Q:?<6<+<!@I PPF8%|fQ<&%$ !"$&"';#Ww<^~(6Gx^[v=eI-  hRG@>G[t0EZkw{2~Me~~tdQ?- }]J>( &1<CD?o4Z%Z_`hxzpsu_QB86=K]t7"J-T6V6U9U?RJMUDd3vuf^[bqc83HYW*g w $y=lP[^Fj6x( '4.&12/5CNU_aXH<>?8',;!JTVQH9) vdV(I:;B+KYl{#8Uw `.<N"la?|Z1#/8@GOSRQMG>K0x Cbvnot{vmaWND?0 /G ]ktwxqcH+qaRF=97=Ja~8YtxfO9 .uQ_wJ5# 06:JblaRB,'8CHIHD>72.'/=GWflnvylWK;* '/ 39>&H?QQ[Yfaqfgiljgrb_WHG16+&o\K>3*|$x&u.z:Lay/}Vxzrh[TYp#JskP.~]2 z gY T PQYcn}$Hl!.<DEC?>90'!~si ca][]]VF(1BMUXWRI:)|nSDBCAJUZ}Yvcu|w|,ALQWXWRMC<5Vmrjjv_9*CXiv{lb]SKHPmfXA- /^udP?5*   &+3=JT\a_UG5{gUD1 ,A,KIIk<% -No -GVdbh@\LJQK;&  *17x8i8a7\4[-^+g&p{O,/$ }^B/'%"  &5FXbjllfXE.yqig gn ywm&`8VGVUZaciumkeZL<=(R`p}ka]YM>(.14689740-)$ # Ipxb]YJ<. '/8AILNS\cinrxxn `O;% taM>1& $,7Lg~|:}Zv7RomR8rL!^A&  &T"+0%477B<ND[JdIfEi=h5`)SKFBBGKI?0$ ! $4AKWbhgb[K7v m/h.f-h2m1x   (- /,2%CQ` q}reK*,@OYz_ebLa.a``_ _]4[VYYYVR JB+7<*UhkbWND91.14,&,06<AFNVXU)N9A?-<4*  i,V5D<8@0<.7/;5I?MMA^,r !Gh*8|EcOMN;E*>= :2%nR1 7 e& /*7P=r@=4+ nb}]zY~L5+>N_n{%.>HsEb4O(7)06:DMJ><GLA6+ (v1[:FD?LJRXSdNvHC<3*   $ 1*@5N=[@fCnAn<i/` WTWWVRF2 '3>K U]"g/p<{H[nxvl[wLf;O%4 ~tkdaafm{.@P\emqtr i\6NJ9]"n yyo]RIC>9.q_WQOXit~ (3:@A(A7@I>f71+$ hSJKH@5( &1ASes }lX?'  p_UZcq $368;:730& #8 M`o)x3z:w<qBgQ\cRsG;+ |jRD:+*33,# "/<F Q Y\VQI:* p^VRNIIKTh|})47/%""! #.*<5KBYPa\c__XUIE810. *"  %7ELPQNID6AT<w740,'#xP5( }} ";PagfaWMA8-#  +<E;'|ja\]gx'-..-*&!#CYo|o'e0`4U3E2800+')% !,8K_q |reVI9+ |z|}~weTHA =;$;+E4T:g9}205@LY1iP|i|{hw^g\VXGX8[,_#^ZRG6 "( ,/38;=93*  '+   & / *&'''-58762* '6AMQPLC6& "+/) ",28?DFHHKLLKH@2 .?FJNG3%/33/-%&:LX]\WRNOWeqy3J_qweVH</r"_K 4$xx|*=JPSSUTRTUTNH>0!%19@FD9({tlilq| %( %6A&M/XGdfot{{p]oRTF9.    *1>O_]I>4% !?Ylz}wiZKB>=8!,7Rm ~w m`O;#r_RKOYeq,;BF)L>JREa@j4q&w|}wj^VQLA1tmhcbgr !> Zz iXE( &2?GMSWYX V T9UHVLVLWJWDTCR-SQJ;,    -|FyYtfpzjmw|gS<(25 :@CCEEEDD A</09#?P^nz~mF,=M{_kmgwt{{wpbTG 8+$ xhWF/)B}`vdsov<^w$/14|8i>WCDE4?-2, / 4.-5>B:*s jinx 0DrUj_uegjloqpmh bW0HF7Y'l eF"}"-6:;;=D?LZTjY`]C^5^'_a^]XOC5( 5RhqhYL>';Ua\XT#N3=D"Q WYYVQJ?1$6_r|wmibH''7I\m{{y:bHQF=:(/"paVLD>?ELRX#`Nmt} -Metymn_`VQQ4LC9+      7JUbic_VI 9&gVPUey "&2AHEBM[YSQND.(10.18@ DL#T+f1v0~) ~qM" ++,11%     *&.0.6)9<DOZahovutvtncVF4'02,-6>M[ h's?YsffJL/4 rfVJ@y, *K j*?Qeuy_L?4- yl`WMD:*.DQ _nupXF@2x kcadkwaJCDCACWs  !5T}q V>0+G]p}wc/O;:@)@> CG@4&*8CJRQG?#9'/#,14=@3xu# 5^v iN 7 )   ~m Z HB Pm&+37<)B:HDNJTMWTW`XpUPNKG|Ec@G4&' %+07GPQOE4} -Nv"-<Rdt{m_M9frQcJ\OPTE^;v.!&2;HW`n~vnbJ{( ".?OX^)_5[?UIOVG_>a4_'UI:# '4CRamtxwodYM)@:0E#GKMF<4,!xw$<W%l8}HWens|}ufnAq sqqtqkycsXoLrA{4' ,0;v@o6k)hcad mu~ $,5;>;97/1T++*+/1048<HSY_ofRi8f)e^WTNGC<300*! l]VG5:Vp &<NbrwhN3% &+,'&(-7>C!KU^bb^XS$K<?V4g+s!s^M6jT9'@Ul#2?FG0?H6V(iy} x mWA, $.5BIJMVcnoomh[E.   %043* "'-00.,)#  !#+4> HNQQKA94-*$ng jls 2I]nz{~|{scJ+ %-5@K\ jv2{?Rm}pfYJ8%sfVC5/)    #+1446y6k7a6U4R-]'f#lru rt{zxxz&-1:*K8_FsRaks{pG#wh\RI?5+!$Gcrgbm^WWIU0X`hjjkqz|v~ qe#X,H0<232)2&4-482O6n:=<7.&""'.,T0v2454675.,('}%f#Q9$"&*+(%$   -Oo!!nO8'sedjv+=LXajlha\VSQMJG?7/'  (5?C@9-  &.>2Y7u>GNOI</# o]I 5 '**'$ !!4FWhutrocWK8' ~+7?A>;8:;=>>=<80' "/(G.]3p4z579}:q9d9\8Q;C>5B$G HE@7-$ 6L]jxrqfa_Q^>d'o !4BR_jrw}%.6?uEfGYGLEA<5)$,9BGIMOxVj\]aScPcOcPaX\jRF;0( #=Wm}q[KB<4-,4G]o|!*3;@v@c<N5824:BIOVn\V^C^:^7`>aMd\dn`[TKA0 ,=MTSSK8%xj\RMLPZfr}'6CPWZ\`a^Y%TGNkIGA>;6/&'/!0+"'4@vIPS.YZYUNE:0' zqop|rrxe`bcciu+2"50491?-E(I'D)<)4(,"%#   !/@Scr} |+m6^FOTA_2l#|xkoPl2lpu~  #"  '+.0/+#   2CR as||xrjdb^XRLIJMJFB@>:95-))+. ,  !&+08=CGE@;5/&%).9HR\ ^VD1*r7c=[B\EaDhAp>v6}( wqsy%(+3=EJ R ]5dKo^xn~y}w~ly]uIp5o!l^OE;/!  ~u%o1o8r;w<z:z80'   ,>N[`_`flonk e `XI+6;)F#M!Wcr"|&)+%xnbUI@2!{uqry$/;HTZZZYXY[/]<^DaF`@^8U1M-I'B>><76?P]fkkdZM:'  !0:BKQUY\]__]\]][#]'a)j*q,m.c+[$YXTOH@ 5)0Je{oX%B*.01253(r `SOXlz}|  .=MYdfb`a `*[4T:O=EE7O#Z adb`aehkllosurle[L?2# )*%#"   $""%*)$! $ "  /CMPX\YO>%,0= HQVY\^`bfkmjfb\]aeilmjf_UI?7.% !6JV_elnkgcbejlkjhd[N@-{m\OF?@$C0L;]IuV[ULD@?'9:/K[ir~zvvsonnnlcWLA8%3-+59 <>>CINQSQMHC<5.,+( &" z q i f joxzsqs}  9%S1m;BEIQY_dfihgd}ag^Q_<_-^$\_bffaWLB8+  !""! #8GORQMF?84-($BYk z#)4ANYxcflTs?s(rpmibZRI?x2n i gedcgq{}+:EJPYemnkf_WMA1!-?IJFA;5-! %-:C+GCD[>o:}5,th]SMHE?6159<;645973/ &#*)'#%+6BKRzTnObIXFMAC=<893<-F&Ti!')('("  *2 3'5(9%=!@@A&G0K9N>TB\J^R\SVLNAG8C2C+A!CJPYeqwwsk`R>+ |oea"a$g&s()('%'&"#,3891 &4BLQSQOIB<3( 2 H a z uj_WROC4! '4<80'!pg acjs~ $=Uj|~ruf`ZNJC;A-D HLVgysidh-qA|Q]cffcZMFBDIPW#`/m7x<;2 vkXA)  $6FP\fsr_|ODCKU`miL0 &)"z{$0<G!P&W+_0d7g<e@e?f?i=k9n0y&p`SE0 #.8BLTY[WPB4$+9DJLH?7/%  *3?M[iz~rf[VUWTPN KGFGFFEC;. |'v4z=CKPROJB=5+ s g^XY"a$s%&",8@DA<7/#  /@&M1\8i?qGuGw>w2z'! wmaXOI C < 60-%!  wxy|%-13/'!u$l!bZVX` l+>Ram ru.t;qGkVfabhcpfwishjd_^X]R_Ic>d0f%ggd[N@4*   !$%!  ')(! $*,+*(% !&%  &.=N_ksvz}{s.g>XLF\0lu{q^F+#-26:#?(A+B)A!<0 !$&).15651$ ,?R`gklkhaYPNNNQSS#P3MHIYE`?]8S0H*>)4,(033/( "'( #*2:AEILLD"6" #'*,)# +3 8:,=><O7_1i&mlh`ZVRKC?:2)"  ! #(.1!,%$&'& $~xohdflv '.2 8%=&A%B%B'C'J)U*`/g4e9^;T;F68/*'    %0?MXh wly\jO\FRDFG7M)Q"X`ipw =Ugqrkd`\VPJHIJJJKNMLJMNPPLF@5$ &.9BIMNJ D;5-Ngzi^YXXWYZ[\^fmp o q u zzum_J2.AO}X{_cdc`_bipsrkbS>$  ("0<8U>iCyGLRVUOxCp5t&| {hVE7*%*!-$*)%/ 36 5/' '+,& ,6<<6.! *7COY_cfe`UJ;* &0$72>BEPIYH_H`D`>a5a*acgnxwfUB, #',10,& "$'* )% $"  (7DR^fgaXL?0 upr{)=Sjv)1:BvKhT[[M`?b3b*_ YQG=6 4 1 0-05<ADCAA>9,tbSH?::@M^n *-(  *5;DKQVYXUTUWZ^afnz "*.-z+n%\I7$ yvy#!.,34/9$<?BA<4*  &07>@<3) /DXfr{ &'"{rgXI:+  !:!L#X `dge\K5!ydNB@HTan~/'@<MOU]VeOjCp-x|xkXH4  $1 @HL'L2J<DE<J/KG :&{uuuonnrz- I`p!{*13y,n_SLHHJKLID@@DIMO&O3N9N@LHIPDQ<K3A$8- xqjghnx $6 ?-C3>38+/ &  (%266F5O-P"MF;1'    5 Pn  &)($fM1 $$!}y|'+,++A+S(b!nr lcYOD8("* 6 C4IGNWSfVs\~chh}gxeq]kQb>V$G5! {x{5K[a`\[XUNC7, ""$')+3DYksungdabilfYNE=/vjcdn|'1)G)W)_-a2b3`0X.I.6-!+ $+D\rp^K2',+"%2#:+=0:325$6625:;3)"tljmt~ '(%!  .?K OK1B@8O,_ nt ofYL >2"&-8CQ ] k w$,4<@DEBm5Q*9 ! s`PB95:ALZhx!%+4:?CHI FDC"A#? 92+% #& ()*+..*%/@LTX[%\.Z8X?SCID?>75,(!  ,6> A@<1$   .<KTXXY\YPD9- ~|!&,-,+-140% &:KX`a]VJ9##5BF@80,'!!*1 7<<Q>_=h6o0r+n-b4S9B821") )047779<CIG@5 & $,4<BGKS)Y._/b+c"ejmkdYI7#&' "%2:??9))@Sajppol gd`ZL?3% "&)(,9*G*Q)Y&^aZ K6"{ $+2==HCQGVHYDZ8V%QI=/ ,=FIEA7 ,"  (:M^ p|~xt(l/a5T9G55)z`I90/6EZs=Yr$/43+#kP:' *AU c ln h [L<* yw~ 1C%S:]KeRiReL^?Q+>& zssy  !0.7:6D0H$GC9,  3Nh~ -7=>;4|'dG $}vqu~'= Qb%l0o5k3a.S$D:. .5 795," )07:=)=4<88:29+1"% 2Qr v_I2~0D\ozwmaVK<, &,+& ($ &?Y$o))&  ymc\V N B3&  & 8JWaim le\ND8,#}snmpx  (+(! wolo}& *)#$*/7 ? K[iw).o+\*K+9((" ~|z&1@NX_c eb[QA!.#"  !0BXp *8AE{FdAM88*%     #,9BJ S`mw} ~{uhV@+}-BUhs|}v mbSB!1#$# $2;#?)=+3(%# !!+; N_ijgd`XL{>n/i%hlpx3N"f){-13/%}g R>,  """$.%D$Y isvtqkbS=)'08AIS^hpr m\E* u`QIGIP\hu(.4;?E$H/E4B9;;09#631.'! %/7;<=;8(4@0U&em olg_TA) -Jd{'<GLkNOK4@2! rf^[^dkt.9<:5. '  $)(3*?+E1F;BD=N5V*[`a_ZSH<0"*?Raox|'}2{5t3o,f \QG>4'wka[^ep}*BTafe_TD5& .@Q`lw ~#:|Mp`\pIy5{$ywrme[RJFAy<p6j/k&s~   $,3;DMRQNJF@:2+,<$JXbe_SG;,l]T QT#]4iDyRakpqq k=aUTfFq:y-}~ |wpg^O?/"(3>HPURJ@6,    2I\m|xiU?)7[|$''''*./g0L/214775-"zrke_]\`gs7O_hki g j kmnmhdc`^^^ZYWSQNIB9/ 7Obqy{xrng^SH>1  $9M[bc]%T8JLA^8k-w&} | rbM7#}~~~vtz ,48;@FOWbp!-q7\>CC*EB:0' $1=DILLIH)D=AO?\>c:f7e6a1Z(L> 2*#~ 0<@BDB=5, (!%/7?JS\bdb^[ZXWVRLGC: . "    (/8?AA;5 *-@ThxudP>1#  !%'*..63:5=5A2H,M%STPKD:1*)),248;82-$ !'*-020/--/2 6#=8@L=Y4a'dc` \YYYXV SMB 3%* ,*!  &)78GJVZcfmpvz~ubJ0}bG0 ~{}{okoy(<"L$W!_hmnnnlkhf c ] T H ; - ").024311-"%9M[gqz}{wtqpp opojbWI:)uiglx ,>MUXWVW[`ehjlptrjb\WNBBKOLHGIJD;*#0 @N]flmlf]UMG?5)~{z|) 8BB8(  )1:?DNY`bb\ T MD=7#3'2%122*$'./&     #-10.,.15860(  #%,)5(="BE GF>3/..,+*.7CL LEA BA<84/& ,@P` o} x[=~~5I] r"-6::72* x`H5& $((*,024 30+ %'$%, 5 = DGC9."  $&%"  !! *0#8$>#@#>"@#D&F%G&C%A%?"<70'|z"&*..*#':KV\bfd[N@4&"2CR`ghcYPF>72+'$"&+479= A A?@DD!A"@9-%.589>HTbpyyk[K;"-1<?A?;1#4H\my|qeVC. "&)-.2 8?DGHJJE;,  %041/+#   +5<@BDA9- %?Veovyxq*c9TDIS=f.u vbJ3xmhhlw%$,+44:;>@CDIEQIXMaQiSmSoKi>a.TE6%  .|>rLkUfWaV^U^RgGu7& /@KPME=:?FJIHFA82 /%(# $.=M]jwu]D. %0~6m<d?a?g<s;<AFKR X_'b4c;c<d<b9_6\0Z+Y+V+U'ROLF=2##*,,& )Fb}|vncTF85)J\jomeYM<*&+(! }{yx)6"B&I(I&F"?6*! $(+,,,,% #+0340("0 AMWZYT K@(17"DNU]dieXF3$  $;ISZ\WJ=/ + 6?EHGGD@<4-%      &38:;<70,(   (=Paq~ q(a5ND=R.Y"[XRG:,    !' , -+% &/59;6+" "&'')/46762+$"/9= ??>;;= =#?%A'B)C'F NYaglng[M=-   #))+-05<ADA < 84 / ' +1326>GQY\]ZV4NHBW9`/h%nrst vvr kbX%M,@32:%@J R[bd_UG6$)1577752.,$ ,8?BEIJIE?7+  ## *7AJS^gq{{rfW G6& %,19CFB8,     # ')&"%'&% " ""    ,6?FKPME:-   (.26 4.%% 2=FKLF@:50% !0;HR\beffeeb ` \UH;+$)/4983+ &2?JRX[YRF<0" $*06;BGMPSSSNMJJJKJF?82+!   "+/234420!-%+(*/*3-21.4*5'6$7899:>CIMRQKB6) &6AJPX[ULHD<3*$ !#%  #&$  &-6@KV^f m s yzyzyulaRB0! #$" "#$&'$ #)/462(  "'19CLQSSPNJG EC @;60)# %(,/0/+$ |slhfghkpz  "#$"( 2?M[#htz|$|)z*u,p.i/b0Z-R-H/</2-',.12001-& *5!A%M'W)Z(Y"ZXSI?5*}~&.36654420/ 233 0'*0!7=? @CFE ?6 /+(6>@DJNQRQQQOPM"J#C!7 (#$ %&*+'#    *5;>>==?BDJO U []ZVS U(Y1^8f<q<~=AA>84.)}$m"\#H$0# vl!i$i"mt{ 1AOZcf%d,`1X6L7=4.-" &3AN X `cb] P'B/47'?EHKNQ OID@;1*%$!  $2BLSTSOF6#   &+.)143=4D4G1H*B#9,"    " !  '1!:'E)P*[+d-g,e&_ UJ=2) $'$!1> HP%V0Z8W?MBAA6<-6#0,)%!   ! !      !%'),15;>=:851' "/$;.B9?A<G8J2H+E#A >;;":"5-$ %+.159962/%,3'B"S^a^]_c deefjleYND8( %.58;<::;;:85432 4"7!;ADDC?><<;9960)# )7@HI@;70+%#%%&(% ! !(,+($! #',00/+&$)3= DFC<4.*%" $(),/40'  #"$!     " %)/).5,>)D*H0J8F?<G0P#W] dhib[QD6& ! !    )00,)$ (,.130+ $' 3?HMOMKMPQPPQPLE@> =;;> @ACFHHGEC=3( "2?KMHC>7)! $-32...//,($!3G[jx yj*U8=C(NX\ZTRPLJHB=5+ !"" $&'$     $$$###+/26989;@CCC!G.L7OBQGMFHC@B7=06)-&" "#  %,-)! (5>CHLOOKC8.%  %$ #"  %1=GLQU XTONON$G)?+4.'00-#&*-.,-.,$#8LY\] _ ba[N>2+$ #)-022.(!!&)* *++%(* (%& ).,&!!&)&! )5=@A@CED=4-++(  !%%  (.11-*$ $).3=GQ\fmpni]OC8!0-(;DFDBB?>;;=?>===>ABBBEJLD:/" " .8:#5/*8 99;:3% $'((* 0 69<?AA?>>:5-%"&*2>GJMRX]_^YQG;0$( 0 58974/)"  "&+188 3/-,( " $3?DED"?&6(.,(16:82)!  $*.8??;5.'&  &:J"V(](_"^]YUQOJD:/& !" /< CGGGD<3) " *%/+21212.5+7(9$8!74,$   &8HYf%l-l/k/j2g.`']^_[O?1!  &)+)&% '/1(:2F8N9X:_=cBcD]ETEJ@=:06/ &      '3$9(7+6-2+-),',"( '6CLRX]b`TF>4&  !&$*$-$.%.&)(- 29=><6-&%%$"       "%(-/22/+(" )4<@A?7.'  "/< HT+_9eDhKiNhMgEi8g*b_\SJB93/&   '-#1&2'7+7/627504!0-,*# +<MXZZYWPE;20.*)% $+5?IQTUPLF@70' %,../-))(%%$%#)*0279;?<E=J;I8K1G(@4)  !*2;BFHHGE"E.G8H@IFHGFED@><6806&.#   $-49<=?BGMQSWXURKB6( $*. 01%02-@%HOQ OKFC;0(  (6CPY`a`]YRK@3(!   -;JValvz|zwtog^TJ?4*! #+29<90"  $&**( %! %#*&+,+2+8);$<81,*+/37>EKNQQNJ D;1$ "*3>INQQNMIA7-"     $1; >=*853?-K%V_horsr okcXI8%$*--.132.' ")-,-0442/+)'&)/48::60& %09>CHGA7) !)+' %)'!&1;CKM IB6' &,28?GQUPKE@:631014773,#   "3$>&D$G!IHFC ?;72-(!   !$(+--+)'$  #0@P`p}{si^QD7( (9ENTVVTMF=2(  %19=>?=730.*%!   $+24'27,D'L!QSUSNJH GG D BC A :. ' 8FNSS QKE?:60)  #+4=DD>5,&#! +;ELRV[]]]bjr y~zqdTB- $)w-q-o,s*,,+(" (5?EKNMIC9*##! ( 2%7*9*7)1#+"  "   '.8BKPRROJB4(   $%!!-59;?ABCB@?=82,! '4<??:3( !%$#*". 38<> @@CHNRQMGA9/$  #-379;81*&&$     "   %+-//..037<=>?>7- '-.("  !(+*))+--/.-,+)( %#* 9CKPSUSPQSS"Q&K$C8*   *3<>=82)'2?MW]_]WOG>6-*.4;-A?FOF^Ck>t<y8z3w,t!ne]WQLJIF>3$  $  ! (2:A G MPQRR$P)K*C'4$'%2.<8F>N@WC]FdIgIjIjFg=`0X'OF>4(       (,05 =B E G GIJKHECA>:4,!    #&'(% "+4?FGE@5& ""   $,4;?BCB<3)  $*-,%   #(+.-+))*,+++*)'& %  $**&!!%(+.27985/#*3"DTb lonkf]VOJB:0%  "0;FPX\] YURPKHFB<3&,;CHMQTRMHGFDB ?-?:?C<K:P7T6Y3\.^)]#\ X!S#L#F =5+" '/685-% $)/357:==82+ "  *8C$F*C/<144.7%8<@ CCB?93)!  #)/7=BFJKH D<3+  !& '%#%&%$"    ! &))% (/33,$ %,29?BEFGG"D)@.71/0$,)$  #)/3564/,&!    "&-6>CFHE>5-$   ) 5 B P Z ejnmi$b*Z/P0C160(-% ~~&4@INSSQNIC<61,% !!"%'),*?.R4c6o7w9x>uCmH_MNP<Q+OG =0 &.4751+%   " &()(#')$, ..+)( )*+'!$+ 0#1'0+-.'01.'!$#  4HXdi kg_VKC8." #&(+-/0110/ *''*,$-*.0.60;4@8A=@D=J7O.M JB;1!#3CR^ ejkj%c)Z(P'E'9'.%!  !%)/6:=%A8CGDSD[Aa<e6d._$WN E=60,'#  $#+%3%;$F$O%U#UTRMF</#!1AQ`ktz|yobR@. "'1>O^gmonkbR@-    !-8BC</! #,5@IRZ ckon g^RE3#%$!%-%5"; :6/' !# $%%##"(#.$4#7#:$<$<#9#3*&' $   !    $0?LYe$n0u;|AD@;1x(jYG3! (16;=== 93(+4!?I QVWUPI?2! #,5<AGKOP-OEMYKfDp<x0% |yvph\NA9/)! zwz}  2BNVZZ RD2!         !!"+4;B KVeuxj\O@, #*27:;81&$0<FNRRNG? 2#(2?LU]_]VL=, #-5=EHHFECDCA:2(  -9CKNNKGB@@CF"E$B#< 0$ !,7AKSY[YRI;*#3 ?HNPOLE9, ' =MYaiqz { l [K:* %-5;AHOU!U#R#L!D9.$      ! %.:HU `hlnmibWMFB>7,  %/9CKOPOLF@80' &056664320.-*% $09=>?=9630,%$2? IOMJD=4+!  $ %%$  %').5?DFC=6/(  "$%$  )9DKPSUUSPPONLE<2%  !  !,7AHLNMJE=4(      "%(),(:%H!S]cdb\QG=2%    %)'#"!! #'($   ',158=(A<DPHcJtKzHyCt:s1p$i_SLF?3(     $')& $+3:@E ILMNNMHA6+  -5@KV^b]RH@81/+$ $' *,+(&#  $(*,-,*'%   .?HR_kmf ^UH7,!  "#"* .-) %"   ##! &)-1465532/,($   " $)/14 :CLU%`+j.o0k/b*U%E6" #&'((&! !( /7#>)C*F*G'E$A#;'1(%!   !&*./3420,(%" ! '+038>A@<70+)*,/49:94-$ #'+-.-D-U+a*d)d)d*g*f)a(Y%R!KB7)  #$$#$"    !%(+---0462-&   %-48998750*!  #'%#"   (,* ($ !%'&%  !%(),,+*& &08<>>>@A?70 , +/0110) ""   $&'&!  !&*+)%#' &#&.;JZgs|xl]K8&  !3>CED @ :4.( "   !(/4896)22*6"74 /)%"#%+2=HRWXVPF6# %+/110-(%!(6>@A @<4&  !*3: ? GIJIEB=5-$  &.1/+(& !   #%()*,.158960' '2ANW\\\VM@2(  !"!"%'&%"!&')'"!!!     !$(+//+$    "(-3664,"  )047777876777741*"  "'++4*7(7%6!4551+% "&+153+ ))004282;0>-<*:(9&4$+#%##!&*+* '(& %*0598889:=>?<7/0@(L OM F<1&    %.3 7!; @A?<4&     "#,)4-6/2/,.'.!,+'$  *4!<*C0I5I8D7;5/1"-(%"     ! !#+38;;80$    !      #+!-!,)#     $* , + )&#!"$'*+&   ) 1 69;>??#A$C%C%C#B=4- %  ,7@H O#P&O(K(E&A$<!72.+ %  "*/0+         "',06< BGKL&L1I;DA<E4H,I$ID< 2(! !$),-(  +6<:6 0(   - ;DJJHC;1)% $"#!+!2!5!440,) &#!     ,:E#N*S-R.I.=-0,",, -./0.-+&   .<FJIJJHA6) #')(#     '.38994,#       '5ALXblsvxwqhYF4$ !(.4655 : > ?;61*!  '/49:":,835;2@/C+E'G%G%G'C*<+4)+$     #)-1341/+& +8AGKONJB<70)!  !#%&'&$"  !&,/0.+(' $  !"#   !"!     ,> O]dhe]W S!O"L#J%I$G#B#7#+#! '17=@ CA;2*" !)047873-% ',-(&% & ' %"$%&%#-279971 +!%,/+# %09AGGA 92,%   "(/7;; 8 5 20-)!  !)27872 .(       &*+*'$"!##&),/342-& (3:>EMRVWWVTQNLKKGB9* !""#" !   &-6 ? E I KLG ?:4,$  %5EO!T%X'[+_.a0_1\2W2P2F190*/.- ,*)($   !)0345676 2 )  #+03553/*%  #&'&&%#!")/2 10.(    ##   !"!,!7!BIMMNPOE 9 ,  %)+.33/ -01.)"   !&$ #&&&).10+#   !&*++,-,.0220 .'!"+3 699:8532/+&!"*--2;EIGDB=4+&  !%)-39=?< 93-/<+J&R"WX\[RF = 6/&   (-*#"$$!    &4AKQOJGE?:3+"   %(%#! ")07=?@ >:6/%     "$$"&"0":"D"OWYUL C8+  ,:DE@81+    #'*) '!       $ ) -0122/)# $*(  !(.3699 4.%#( +.39=;621.( $)-03687+6:4@2@.>(< 83 -'  !$%#   /;BFE<2,)             &+01025774+     "'&!!&+/1 34563/,&    !"" *379 60' &-245531-*% %7DMTSKEA:,       !  !!!%(+***+ ++))&"             ",28<=><9.6;2A-='4!+$   #.7<?=:3(  $& ' %   ")/38<>>;60(!(04 1-,,++,.147996/&  #*19?DHHF@;7 3 1- * $   %,38:;#8&2,-0$-'   ""###""! (5B N"Y'`+`-]0S3E49505&41, $  %'$ #$%%('%     '-3773/-+%     !',00-*%  "&)** ))$  $+131, (!#%$  '.3;AB@><70)"  +12 477"5'1*/*.()%$  %+.00,'   $(+.1200.*   $%#$,#5#>!FJLLLKI HEA@=960+%) *&! ! "    !# ( +#-'.+.3/;0F1M1U2]3b4b7^:V<L>B?5=':4/)"    #).2467::86311 232.) ""%& (**++ +,/%/--4,7*4*.)&((' &"              (+)('# #+0357:>CE @6+    $*.2563/+&   #'+024554444/%  !&)-0237:=>>=93+" $'! !  #)' #  $'-47:821/)"" *18=?@AA@@@=92)    $'))*)%  !$#&-2440($" !(1:><82.*% ! !! #). -*$   $&# !      #).22/( &(*,3=HTZZX#U(N-?0,11 1.+'   !')(%          $,28<%?+@+>-=-:)5&."' #+ 27=>:,!"  % (+--!*&&&#     !    %-4;BHMNNKHD>7-# $0=FMMHA9 -"   "%''&$#!#%$""!  !(,-/131-'!           &/#6%=#C"H#M%P%R#Q!M G!>$4")     !&*-1 38; ;)52);A EFGEA;4,#      %$#   $*07 ;?CFJLN OON MJGEDCB=840,& -<FOU(Y0[9[AXDRAI>=:08!5546:;72*  #2AOZemsvwu rmgaXM A 5 *        !!'+,+'"      ""#"""$')**'#    -&=+M.[3e7l;pBpFlCe@Y;K3:.)+$   !$(*+.. +'  $&+13>;I@QAU>W8V/R#LC7-!     !  !%))/-5-:)>'?&?$>!="=&<&:#8!62.)$   '7F T`i&o&s$r#l!cXL>.   &(&  ")0468:<>@@?:4-#    ",9BB@;0#  #+28=@BA= 9 3' & -2440&  "!    $ )- 246 7 862-"') 02/) "0;$F,Q3W5[5^6^8[<WANDAG2K#IA4(         "!0)=-I-S.[/\.W+N%B!5'  !$'&"    #,18>D&F,H0H5H5F3C/>(60'     ,5<?@>!;"6#1"+%  !"! "(.4:?ACDB@ =70%*+"..+ %!*6?EFD>6-"   ""%$'$+"1 7;<= :1&!)04:?!A(C/C5B?AI=Q6Y.]$^[TH:+   ' .454#3&0'+'%& %$!       #$$%% %$!%)* )%  !!#")3<EJOQQMG>4( !"! !(-!2*71<6=8=9::5:.7%2022/(# !)07;;72)$)-02442,&    +7AJQVY[ YUK@2%#*--,*(&$  $*./+#   !"$%%"    '1: CHJ J%G*B.:223*7$984+$ !'+/12420+'! $ ) ,-*'#   %*-/+&  "'()'%!   +=LY`dc ^VM A$4&''''&%#"   (2;@CCC@;4)    $+ /27$:*:-4./1+4(5"7652 0+# "())$  !%*.24421 -*&#! %.59<== 84/)!"#%&'%!    ##!!    !"! !""   !' ,1699 7!3!/ +%    !%'' '&'%  "%&&$   $/7<AE HHE@7.$   $(,-."/&.)+,(.%2!445430-(  "%)-02320/"-&*(%&$   &+132 .("        "(,27>EJLJFC @<80("+256664.(! "##$%#!       " # # # # "       #&)+,)#    &*-,*'"   & -38<$?*?0;4780<(=;8 3,&  "%#!!##%('+)-,0-1/314464:3;4;48320+,#%!    '1:AGJLK G@7,#!&(*,)%!    !'.4 8::72,&    &),- -.-,,."1%5'9,=3>9>=;?3?*? =9 3*      " ###$"!   !%)+* %   !&'*-.,+*)((%"  !"    %+#/'1+2.01.2*3&21, '   ', /1210".%-'.'-&+%&#$!!    "# #!$!%$$$ %%$ !    #%& ' %"     '2;AEGGEC@=:84/+%     $ ).0112/+$    ' *++*(#    '- /"/!.)$  $%&&$!            #& &#   !',,)$   !$%%%#"$&),+* &     "##$$#"!!!#$$"   & / 5 : ;;4+ %,279;<=<82, $' -..(    "%&' *-/013553-' (4?FIIGB:0"!).38<>;5.'         !  %,147 ;?CEEB>94-$ $('$ "  !""#$')-26:>????<80%%-4 :<>=93," #&)+++-/ 0 2368:;:9652.)$!  $( ('#$*/35 2-#  *38;:83/(%"((& "$))'%#!        !'.4 7 852,#')!059 :82*! !',. . --+)''&%$##$$! '/4:AFHHB:3+#   !$ ''%!  "+ 5 = C H LLHC<620/-+)%! #&)(&  % (+,-&.0.9,B)G#KMMI D<2)" !*29>@?<60(!   ! %%$$ # "     $ +15886300/ ,$                !%(+,.12310.-)$  "&(*+- / 1 2 4 4 5 5 3 .'  !"%()(&!  !"   !*269; =<:62/,'#"       #',/2 3 32/-+)%            $.8@FIJIEA;2&        !&***&   ' - 3:?A>91%  &)( &"  (07>AA>92)   !$'+-*'%"  $).365/'*7BLSY]_^[VN D9.!   !%*,..-*%        !.8>BDDDA< 5,"    !!!    #"'#*!, ,+)%     )059:72+"  #&'(,/10-&    '!/%5)8,9094765826221,0&.!)#    !&)+)(&#              "%''&&'),0 133/+%   $(('" "$% % #  "&+159=?=8!2 +"       &.4884.#  *4<DKRVUSME=3)!  !'+/00.)$ "'!*$+&('"&#   !' .5?I!O#T%U(W*V-S.N,G)>#3) $&&'$!            &06972+ #  "%''&''*-0468:<=;7 0( (18<;72. *'$              $&(('"    "%&&#!    ! "!    "$#   %* /48;"="="9 3-%  #).49=@@@>:4-'"!#&%+(0'4%5!6767 641-*%"    %*,52<7B:D:C6?4912,*&   "%'(*+.00. +%!$()+*'$   "%%#   $)-!1)2/13,6&5!0)!   $'( )'%!#(+- ---,*((()('%"  "$&).27:=?>:6/'          "%*.2453/*$   *169<< ;9973/) &"  !%*/256799741-)$    )2:B GJIHE E CA=6.$ #(,/111.*%       !!       #*268 :<<<:73. '  !#%$!              !,5<?>:3*! $).034440,&  !""$&( )(%  %+0453/(!  "$"   !&)+++)$   #-6 >CFHG!D!>70(  !!     '0"6$:%<";5-&  "&&%#   ',/. *$    "(,2: AHMPRQNI?2$      ""  !"$#"!%)#-'/*0..0+.$)% "-5:;; 71(&-130+'!  "&()&   ( 0(508496846-2$+#       )168::71+$    &/%4+6/708/7+4&/ (  &+.-)#   $$$#   #!-%3)6-7/6.5,3*0&-#*%          ###  #+269>BB@=: 52/*$!!      !    !#%)-01 2 0- ( "                !$&''&% $ !           ! # &**(#     !$&&$"   ',/28=ABB?90%                         "&(('#        "%&& %"# '+/2552,'!      #%&'%"    ! "!!&*. 1577651,$            #).1220/ * &!             "%( ) )'$         "#### !!$ '((&$  "(*,+)%     #'+-./-+&   #(,/12 2 2221-$(%$'('$!      %&&&#                     !##!    $')()(('&"   #&))'%      !"!   !&)('"         !!"""""#&*.0269:71(               #&%"     )29<>@@><965 420,)&$ #"! $ & & &&()*,+*($     $ *15:=>>"=&>)@+@-?,;*6%0)#          "(-26677641/+&#    %,279:94/)"      "'+.$/(0)0).)*)'' "             !"#   $)/48:9:=><:6/)"     !$&('*-+2,6+9(=%?"CEC@ <81(                  &,0220- (#    %)+,+(& # ! #(-/1232.)$      !&,17:;;;;84-'              #&)**++,*))*+*+-01 1/,($ !"# $%#               #(,.000/.,(#   #%()**))**)) ) ( & %$$ % #     ',..,' "). 3 689761-'      $&' ' #   !$),/110/ + $         $*05:>?>=:5.%         %+/4576642+$            !#$$"  %(+-//.,)%   "%&'&$ !"##!          $'*)%      !$&''&%"            #') ('&"! !!    !'-02320,)$!           #%$ $#"!"'.48;= <94.&    &)*)&!          !""               !"#"        !,4:>?<61,% !!   "+1 7 <?BCB?<61+&!      %*---*%     %(%,/-9-?,E*G'I$KJJH C<4+      ! "      $&&%$!   # %&' % $ !          !               $&&$%)#.38; =<<;:76420+%             %*-/%/,1143565746330-,&% !$%$!    " &*0232220.)$ #)/36763-&   "*.0/-(!       &,14763-%  %*-- +%   $.6<??>9 2*      ' - 1 2 2 / )""(,".*.0-5*7$899984/*$ "&*+*'"         &,1454 30*$  #&))(#   !%$)(,+/-1-2-0,+,%)%!  "$ %$##! !      !"!        !!&.58:9 72+#   #(+..--, *'"  *4<BGKKKJJHE@:4-%      !$&')+--,,+)&"      %+14787651,&  #%'(*,+*' % #             '+-....+&"    "$'''#  $ + /231/* & !  !#$# # #   !$'*+-/021.)#    $),-.,(% !                           !"!    "(,--)&"         !$&())('$        #)-/..,*(%#""####   $'+-03431-(! $),-,)&"    % ' ( )-0/.*%   !#&()*(&#   !  ""!    "$&( ,.-* &$&'%!  "&)(((('$#!  !!!    ! ""       "$&&&& % # "     !$$#            "#&$+#-#.",*($            "')+++ +)(%#!          #$$$#"  #&( + , **($"  !"#$$ $ $! "$$%),02441,#  "$%$       #%') ,..-,,*(&$!                          ! !   "%''(&&''' ('%!         ',135532/-+( & "          #' * , . . , ) & #     "#"!"#$##   """!     "%''&%#"!   #&''&#   !                     $(+,+)&#    &.4:=>;71+%  (.355420-*)&# # &()+.111/,("          %)-001332/,)$!   "&)+ , , * '#        !%),-..021/ + &"         "$& ) * , ..0220.+(&"        "##                        "#!          !#$$#       #&(**+*'#   !!       "" " "!"                !%()(&!             !&)**(%!                      !%')**(%!  ! #%')))!("%!!                  !!!!""#$$#                    " ##"!      #%%%$#            !"!""&"( * * *)&"             !')+./0.*&!                               ""                              ")0589<<:5.'           !#$'*, - +&                      !                 !"""                                              !!     !"###!   "$ $ # !              !%'((('$!                                     "%'$%$                 ##$%$"       #')** )'&$ !&( )&%#!                                                  &)+*'#   #(, . - --,+(%             !                   !%'*,--,+($     "%''&#                                        ""!           %(,.#.%-&)&#%$"    $*/49=?@<83,&          !"$#"         !# $$$#!  !&&(('%!                                                   !%'*+++*($!    "$%$"                       !"##!      # '*++*'$!                                                             $%%%$!                                                  #&(((()*+,+ * ' $!                                                                                    "&(*)(&$"                      #&('&$!                !                !#%$#!                                                                                                                                                                                                               !                           !!                  !                                                                                         "#%%&&%$"                                                                  !"# # # "                         !##"                                                                                                                                                                                                                          !!!                                                                                                                                                                                 "#$$#!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      " $ %&& ' ' & $ "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      workrave-1.10.50/frontend/common/share/sounds/subtle/soundtheme0000644000175100001710000000075014221624107023544 0ustar00gdm00000000000000[general] description=Subtle author=Ruairi Fullam [rest_break_started] file=rest-break-started.wav [rest_break_ended] file=rest-break-ended.wav [micro_break_started] file=micro-break-started.wav [micro_break_ended] file=micro-break-ended.wav [break_ignored] file=break-ignored.wav [break_prelude] file=break-prelude.wav [daily_limit] file=daily-limit.wav [exercise_ended] file=exercise-ended.wav [exercise_step] file=exercise-step.wav [exercises_ended] file=exercises-ended.wav workrave-1.10.50/frontend/common/share/sounds/subtle/Makefile.am0000644000175100001710000000056714221624107023510 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/subtle sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} workrave-1.10.50/frontend/common/share/sounds/subtle/break-ignored.wav0000644000175100001710000241405014221624107024702 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata s7Tu_ H&0;GLPVTQORQW\ adcagdbcc ^M-=;;&6C+p m k I  ! C S Z [ I Lan3s'[uQ-*$XKn9;=. 0UK)ma7 s{g%R(gV]%  i r q  0 5 K\~P +PM 0 f cg$O _   n&6fi>ytjB0,  luzo|r_{$?@7>[-8#\Mr{gl?[dlcJdKg?e9iwwlb]' , |{ TA{kE >4$Hk9+S 2  ? h NG[+p e X fi>465B nj.5j 6q^1rkP.#< yfDTN_`K6<XGOm6j!mm~v^0U("+5*Tx\h=t\.<h )v]|/ 3&07"BCX+w& s^NP)W}`va|p?a|yc%%jlk2c}e:~%qe<S;K+Vfqk@UAw}5e*t_A~ie#HONL 5:3W0/A8SpMPiSR.drS  0 eU  2 qQ C LK , . 7[sQB>3,|%la?|k/3\.erhR" BYS'h|+ %NTfhgn>?s%j7s}4{,\Kd{t3wnllZ(Ibj V]59IEQW'h^9yFj]%  U3 y[  m 3 TO0+8U}RNPD*U5?zWfm drits7 2NQut}Jd-XbT$E0^q?HO=  Y%}>H_2`SgzJL?; W s U A " $ / =0! nbBVp4e<Kt:dYErl[bmRaYR?5ld  4L ocAZ'FP*_wa6oH}e[u1`@&yS?)"UvKs>UW sUzYUVAGW*\M{7TPPeX}?(a5H4'h=0\}}kYi?m<4~z4He'l]&V'wVMjb J" ^Yq$,yO]'`X!| ;js+E1)~Ii,#3=jta 96 y f  dZ 5g / `  aS % c ns m( eb\}e>&':5JaLFEaU0Uu._-),Hn-mV '^00|;kKm;VcW'g@`d#]#y((XgW#^X0"}P *Pmn#MA`(0)IhIJ;*j}9m24 7+w ~ b ] w < n_UAE@!HfL"v 27U1 rU5Xqv &Z1 ^QAqzPF_Mrv{~xpZ3/o^}\>Kzw_"5 "g8 n X B g z s F P  D V=\[I*l],%%SSiGS S^I}S'@H(}QcKCuQ WB|oC~-RHgW%9s<+`E0-eU0q{5r82\ecu;q+O"[]T}l@!q)R(4moqx8B*;A=B #p<&m_K7%=:i/gDfMc~diy@&@49l^qgT%2N=X'R'LK\jLz%QC-Wj"]y l C8 M _" v @LzG Diqkn  n *M6 'c 5\5jA(*R i b#NC:ro2 (4 k t;n p&" +Drbs$[j|>0`!=j# o8CS5;F4PjTL-K {-,vWW61 y7nP   Loj! 5k C}jq'F!i^ rh;yUQwK7lE9:U Oq2lvw-IXS .V?: /[O1Pb4^ \vX;H  z\FM +W  ZS  M  m L XG # A (gT 7} +  g rRd Z_ ~# |z}mF! ] !* Pi   o'$@u.c&0A7qJn1.U^?\nh {2Fzgg"yY>}*jfrF  _Dhz||j("20,Hl}3>;8!r-@4sjsx7NkxU `i W*eF&)tKLDB$9QZ>3RLo| 4E9"nc&I!#;L\h]) ? DTXFC4VA{9K"`]ZI%Ny_66ash  j x[ [+O J y(> &( 2` `hz 9Y3 eX Rs C  uZk7 \07 )L U?(2= `  h g   %&} NcE 4!KWo;PxW5Z}x~\3Z*1k3Za w'wr g mV!C0f6JLgVCd h #A}E%5_f9!  #y |7<N !@ )  <gy* z3H4A6@['3i;_jW20P\m5,W%aQy1<?h6C{2RXO  v2 (8 ! Jc k} z ' q AW  XfX XP Mh & \ i NEV&}7S tu 45n i xT2 \ U X</= J5 - r*8H1/ 1 v #>>{-D<0c)g8 KQ4TZQ}2S);P"}:9jZv~023.z8oqv8W +#FsC7nYj: r" [%t8lA)=?dQ4.]YD!U0C|dsI ^ h2-pc"  ' A sS U r)x ,4lny06) HRr?&-wdh./98#@ x+ca<~  !OSWu ]@\2x1){@3 G ea H{5T t Ca"; ^Y3%Z nkj) b4 4 QD A  z\I+  W> ^ + hI P+;_ /:b8<O iBlSg }ShHh73twBej3<IJ9l ^ F e{.POj\LAX@6xS*NNV* >_ SP*8}fZ8} (_`Yg}NLLB xoJ7q\b;+!4V;_M L*T+i5Fol? :~S R$uNVsOH/nJ#L}Sbb d_  u c!f, 7*"v~!0O$T=xUd&l>Td<7c 0 1 t x L9| * OGg M \| 4 3 K S8P \ k Z   =J6LzC-2HHt~Lf+k~Od2Wi|K&u]GrV&36h47k / p- ml=D7'jW4C }c1ADAWR}A7qi`!] Hi3v~]N Bf;* @p 3 g -// a U AJ o ! c  v*KX)!%d JYI:>{rl$_/8\4wwGLuC F S(%.T V+DoiyA u%CQ eT z[' S{5 0rq q rL 5 }- I@h ( eBi? . 5 -p.&jWa [Uj~. TP;#B9:$AI=E+_Q<tW0Adnf^df #o:aR2^%4" /:EG%\3P&^{G"2m .Bj<j!y "EA2v*-u;>y|~IypjNh |63R<JYsrm.Hb,S 8p%(y&wV=gu2VxZ& V{5wN+[2SzI{R8+vHgA:~x.$_\~J(,an,Lil~sHk2 QL)d|dGl+eB Hxo!CPsTwgMuW,TZ0zG~hNB sQsbhMp~0?SemQS&,M,@(+j.DH/N_UIgC)G-f`MZz#=xz[Q+5 Yt ;   V Z[J!Yy Y0\oK>d4hc-y7>sB r ; G _> , \xh4_k `  aLtp f <&2U^n?'() TQLj~ \[7]Uf GWdN`q>1ke{; !f` ?KSk{8Y*v )  {QNNwwRrqJ*hR02jFwlb=Ys \ri8 <T 8Io  } & % D - WlKp_ (*j\f/M?lk(Lm_D&w " AYW} $ 0& AY - 4& ;  j`% ZJ{vOXr 3  WE'z ] |f }/jbs/  0g '  # V h  le }ki1$#4 2" *lQ, g3M  ,Vy hhU7TQ1 2L0J]t{;rf MjM~=Y}6T(Xt9I3 y\P9Tzn&wV86x$Xuh(k Y.Vnh7mk 6 Zp'!u|%zEyzD\V nKs|qW#5 a~[YU)n - C Na  xY ,z hs 3&OXoAW`<*.8f" G(`izDXJC a; R i  | }C b @ tFS^T]ck4:C( E ?&Q w (&s^dT$BZYvOc+uEwC_)N[7;|#A90 @$})m8M7 q s ) 6  Z c*W:"kdor,l>eLad^eg6`+H%rMd4 " ( 1i 60  u \ ' ~ tQ}9Ln)?Z rN6y0%i[iH+|vt<nJ*j %M hn ~ 0 % j ' 3 s  /1 qx s@  mQ+*{0'T =Azs+0 p  > Cg b O0 u^ q E ^P=ZeEjjv#)ZWgjIT gsX5ebm:^" &k6pEd !LocbJ0;d%|/>/I4>h+[U_StoAT>+[ 38ER-4 .(pUyGKS3))Q(i&"IoFN[\W P=#XHQOV)Kk@Mm^\f<+&. A@SC1EJd$ZQ(=O  k (+ GR T  -: Wo_ aG=Fa91F+"S4WT>   ,N&   P 5b :  TAL(J3qLfNg~] : uY m EMtY2`m332Bmdg}]% ]": 0-(kjUf ^O c P 1:  g1 ^G ; E I~ 9 /{c?45 AOtJ0N?0+I{*pV#Z c\ 3eX[yiaW  e UN  E  Q yu I (t Tnqc+ *^}PxT}b&sBe=a6! +XLnR v  5 s & ]^\  b T YS690@S5_H'=>V4EzV VR|jM+G - tS o U  [O   G O2wd9TDRXIg/6&4B$YMp(@]kKcMi"eVK'NaTB1)plF1Rv2-q%>Oz pU5u ~S}4cWhd )GRqAZDESV`)*%)2uvlZ`A p!w,|1hhE xhJ?' h'z#( 4kbBLO V a ?   M ' q si2Q?e>Hgq2@C,?Nz$$~]kD=2M  x &o t { m\gw$(DS\ ,*e/ %eFE L ];-?v?atDch-E||Sb&O J|~w5iD4z.o cq K 1 < q: _4  a ~ [  RfwZ: d3lL)sN \4e(dTl7888fR03(zb$  V ]2  .  ?g  % [ @ uYT;6L37\2Vm|B.0leY_ a.YO @  4 #  F l! * Pd Ky6;5V4`    bvO0,D1Ty]|i\FSECH26Br_ D  % W 1 v ~5 GDsL |#$Pa@QAee0V4o~Dw5: V:(\9t^pzm^b>ku:bo z A  (r$JM>As6JxWE f~PHFv6ftNoQsFutWHf#B%r]*`)H-D+LxD"z)x; + Zy .9sE=f|,GGQV4$}3&Cuc F  5 +G @A 0 R L Yaby'O{>ANa&G]NcMO!)<;Lx=2vy n v. < * >@  >s.3fTqo+-W=]m_V-r.*X[w_6l-(Z`v&{;.q[Wiw}OkZ%lS]^bIh p $Kn3A"+ =|  4a :  a F  upd.BOL_7;6[?{e-F[L5XgMahG9F _i|o/+ J } c N y;   6' Q 6 7 w f N yhh;"  d.  )  JS  v   tlJ,Op Y^ & D L{ (X > .3DS@-<qUBsF7-ZbC\sF`&7  7 m[ # y P T x ,r~rjpMB]X,& QxY(9) O]J)x{T:u3uw4/ ' V{ x 0 C h |\|ldr &7 Si:H.+uV`=-^Ok^#'n_Vxl\:&P4]]93Y~{) 7x\ChWA " B R G L / N ?+qC+i tlw#z>8_Fj[a4UBt>guU$"RzY5-es$lGJ{   /  1  h kB 6 k B   ).Jn^ **8:Ha&F}A9 8 7 9 n i  !  Rf DXT o J ,& < Q 2  %+ q J 0 Q"TxkUN(sA8MN7>@K6[Dw CF_M I o0 l g /` H ): Aeg|%{vzR]4K eh;:$EYYnB 'oHjq$0 j1(}Wk1`|U2&RpTd7^tk|G'o@2H>mLD  2d) 5sW0xY2yQbfUsXW!k[0YuLO~ 3yNGLYDh7qr4(-hT 6{lw681<]xCkJKm3GdM ^/  1 R  k  F.OnjX<%\ k63^ frl 4xd|d8BeTR=z@)[y3i 0vM+n/n78-vs}+@iq lp~f\H%P2@d8t!0G3-=TW8O$Sd"x6_ #'   / K; @7 4 ^ #[igVC&9BHo.As)rcLm#-d v><HR8P d  t f V G g -n ' LZ~'   z * 4 V " Jz= Iu{OB|~2 [ X       l VwHVO % - g b,ymn<e"U_('533\br-1<# u ! 5 T & v:cxS3RRl@@\*kW)y4PkD_/9= xn3|pCpg1:}C+wBg.vf{{%4'dshbzUMGQ{ Un8fV4gh># UGU%YUTF^'<.lzf`{ 4qa40>`x? 2,5K[c&PK9eYWsK'Xtqm j O | ,  Q{ z dcmj_- ={?+5WW: j p n M|q%[jh^r N$~8)b{ o U 4 ; q&  Ha,r 1](z hpAba(#wi'I 2ej|_W9N ERMe]Wy9c qULl1i 8 w0 &  |A  *(q4pSB)SF|VXSZjrtlY)lB0V/mx)pR" 55*]wV# X n _ < * [ '[ ) G S | T r c A B#  s Bl z :D8iZ4I[-[Nm(t B#rOH:W j   o(  B   2 dkhYJ7 r7  pB]| C|yl2f)kq' $E&VJt%w O = 2y Up3tj.V`LCOHi{#,MMZJww#y\ ecsQ6? 3RQ/7\H Kb ^ f= }K1UE 7A t[(#HXL4L_L,H\gLU>LIkU{ $gxCe d#^4~ 0MjX8#[7:V/uS "1vlaWt+Cfm-OS`TO3^]yjElAY|kV 3*RG@sz'Oklsj{ P J \ 4w M .n> 9n79 \xpC4Y , 3B L  W @ iP//9pj%DP_E W  g   _* .x] cL  6Rvkz61*_a|<2&F04r? rRLCOy3/ >Y^+*$G^U#+ Spb+Q{=oO`Qb77pP>@c$/QOuDtf?3 arB8j.tB  x H  O : lq ix muU> { H= ;  7 YE  $%$eH >3%<Qx;``=yI8  d   Z  ] )   E HZ*!5Dpk S(U4Tvt$)=]aXgj# +N)c>o;?Vm:    Y Y p0 ofOJ,y@-"PB?h?EaP Fz=72v~)x)/ n:Q~95'vb2JZ`HOja4hs< YRpr30=<4j@' JC W2vE&Ft=<[^x -U> nw+"j 49bKEj& ZsOE8Ps5aGYceAQ ,MJ$[,0M3>vZ(|}!8 }C&<t*4W1@k0\VSN$44lh k \ mjpm~n.[y1 EX   iti"qL)}S.DGQ<..{9'0vNOB_5r`.0g&g <N\.ZD) < 5 $ "zdfIQCBwe;wS6n#8hgyJH!+b:tEJ){E:oDOU} t- f.|#[H p n  3 I5 A p c [b qh %*x L L  %# > a b _UEt*6-h}&Ym< &2C@h0CC- .     [ j N  *< l@UVp=YzupOu-KT3 Ry PahF %z%i#\(nk b  5z gM Aj A m L u b/r$wqTPZs=xpC;'$c;G'r'V%kyy#d]m=!t<,5B<--NZA,PBF^wDQ Ax zY6u>~Nh'svFUWnAtj_rGywcgi%"vHzV$Tz _Y~[n_Wn{]kosfKJM}BA YjJKG>_>Ni(1up.D9 $?>t(9lYT!B2^rIcm U"oF=RIXGYc&v!'!{_ 0[@*))1,; xRM4%P&D6ghC '>}L- NCGE!^y}j-+O=VZr`cA}i= [^=@,;3j;BwnnR<6,(3Ff)N'.QA/Oc0'v+1UdNqV~<1?n"K` A{,>/<EgHko_T>?1^ $)t cR( o  > > f PHG 7Z7 bc m6 Q x  ^r U{sLObk%(}F2>/ 5&  Z   "  ;  DJ y< 2hk wN;{N KpUP$,m< 7MFu%WyY<  5 O 8t   B xd|H O=rEdJHY"$v}(cPWQa{e$D}%kATp!O0'a@~(olCtZo5xv`-ZGtkn>-+c4RYgE^Y  XPEfnFtFB'\&ZEN}ni8$Up[f`\ , 2qET9'D` 1F6f8JTE]7qh]joW/E[Q c A [v WFFZ< C${z{i5PVx;qpggH =E`}7#A-zs6EM.K?$Hkuh l1 l>JMNQU9lRq%q?}pg7RHgz @mhX8*bF'#{:y|)'%GGMj({McJg#o=ck* t Y # g G B F t + ^ : wT P  :# A 0 k K5C1}aexh`Ls9) =c]/ <  90 E jO  % p   2  ?1K)RQuXGT 3x,19~;?ULTL)XZZ66 x? .    KHzPb4{I!ugciJp7|!Sg;BG-Dy &+rc|&6lvgS\I y!HC=|55 Kg0\Uq[F4@as rEgMP>e!3UG2MH8sz\l\EJDP: K7p)'G/e'D|1x#]EcPNv4/M6Hy0_~#?EG*+Q,!Ua$-n?1BXe'KIi|E?Ud_" P @,"kyJU(\7WBZ9a#\-3 a}Q$5e9y kuA} >QVFdX){)Mgxc|\vS+Iio0s6F;j;l?"R3Id|<~, f@E=~+qjg}nmxM.5CUFj  0S_:ue](OM{M`jY 7}@|c2 } q 8 h , (,:B |>rO - A C   K @ 3L`+" ] `2h }   ]    f "   qe h1GJ/ *a S@n#: ~8 h[R@  !pU:r7`+Hc@{zv,JI=o JD+wD<zDErr DU % nIQ[7;DK U4{ R*vN];} 3\?BB59g:Z"k$!yC gnLo~3!jIDGo BP$}O+<L`?d\OsELt<@K[pFdXz x/Gy,Ihv\EG<z~,T~0RzJ.TVEf 5:1<ukgx'R $=KQu4Gc = H E ?l_Y!VX\-zvnu6p / ] AH   9wKkfg3+>on5N6o=  h PG  ) ^~ i v L     ?(K2j/J*GB<l|'_cw6k.OQ4"Rj]h(A(I  ciT  u 3RtvA_4RZZ({N .<cC *h# Zt!'|"7 Y +]pG\+-uzi:<+o|/m@p32ki=L+eWjQ jRO>j00Q]I; ;n^U;Y6ph=yBX828Y#(%38[P~^JaHD+z1m;j1uEa&/9-n!Gv~]r|G- Bgt_V=*tdl%[M08 ,d7Q*c:9!~VqHVdYbw~ Zvnbs5 j$3DA !R =i{,b2h[Jx%=5"c>!= Y.bWr,;E_pKFRD7c.zPb4d3~. 0&S$:|2tp|0q6+9 2?YTuy0lz)?)?Rq!X#Tg*?[C #e%TN3 ^\U8a2  B ; q wI v 0n!a0L1*6k 4 YC  9l kB4@}BfgxA^;$B*^}UHd;h   E  I    e  D=H4CW[mD _k$m %zm>pb^G9lPr I7us%e'(Km"FpO) h O]]tdy`]G'=IzU3K:ifV_.[Hh} >4E@"0LTvk+$ D xG2gE^&/"FGz)]|)Yy (5Fs,M m$Xr=J-V1DK12ftKkcnit*VL F|~bh5xyMoYQ{'%oI,V8 ,>I\|Fev:j )2+zV%Q]8)LaLo.ggKF67W  n + !\RG=w^[=ZImUf}P9k zOPC:\8  <O>0 b 7n     l 8;  rH 4yk;0ug!=Npvkd8fO4(:>C!EPOb} R ;}brN Lc3JEVwH<W;3&!& ES1eZyHik   I  B  : L  V  I s 4 '$ uP V$ M<[x 0M Vm   $   [@X N j <     l =   PT Y   =L 2 *,V>p!U<PBi2(Av[%cDyz{8#,4ja,eJM,d"6?H M3yie)JhLm&YghIa1";Y^1KOp~7a=A|&n, 8z\*Peto~*qex_|UY 1   $Ux gv * > ]L rTo JDqL$rqB@#hQ(o}lqSyx Tdg-(10p|l4@w;Yc?(]qr , : > ] | 9 Y r k / &U v!U -$!!!.;P,~]|wwoigoGp Q  B >#(`ddaA3qAO;Kf(Fl i W K I Q#Px,  )LiUD;O8T\W~M%;.9_teJiNu>*T]}^y0[7,GEh B"P96MBS0+!-7b]r-/?X}#@Yo2#(hju:aY[d2m-9Bq? )t oefv}1kjlu'Yk\/q10G-PKfK}O9x!f|P$L'G3Op.vT88[4Y 2  2kf&lz(p2YpHnxK d  Uz [^ m  h OfM<=jks"=)EW<-:$ q  a3z$cv9 3vJiF_Z\^[1Zl7pC^~%nG9i]Oz3D[*C6 _dh!eHx`0*l_w<QQQa<@yJK/#.N>A&r6 655eGx>`2Cq>g*@dM ]Z;H  V yR2<*M+s!2QuM;q ]9BH+ Y ) aa 2  U ` 55)fY=}k,w-N'tnDq # 3  Jp 7FEu7g6K&[,v#w}<2cE*H6/NoE+6o ;~JbIUcX$jSjq/{c ]sl~WpN= [r 2j.NB_P 1+O0$n>Ms]h+"`sjj-^uiY) uFEvQAy;WNTCRekxQSCT|\X4N 0ofB9rFnpcBHZj_,X r^ DC C  ]O7J\O o  ]lM m L Hvj  :pmWEp2<0+5/Ou Q|)VqGZ^T=(+MPJnh[,`   T }Kh. d  -1%q} <V:n% 8 L $1!)%PfX!y){U]  fZ`EK'w-t {T0 u =C~#k@m'We\<ALCL"L7 0 j e  =0  Ty  $s  q_mJC$-V\iw465  &n Trf < @.  J' g lff.    (Uu >Q "n / #z         2A   c N k>WB6.E)qB }\ L ;S@  x U  L   9V{ o q@9'P&{+5$739 @e,.D-n~xm.n_;#|#bPae.8%0b R5.)e^/+"m4w$A<%Y R.&H9v{/mlEz|p} Z8ds&6PP#aR0"]oEwPfV<2 #!_!mbF+gZw$Lf~pH,C% w5+\([Jg7:;F~Vpm7b6EQ8c4jU`Ad5v`#%&D]PL e,WIp xb$#EPX` 1{&}B.\cn5Syw2$ 64y:2A:.[K} J3R8T3+Q 0V U9#6U0E7u@)P  E i D 7 KU@2K7D; t cU0%@ D H  J ( v s| &    ~tRpMH3   B m A o `)IC 9 IIw |S2NC= + c= / "  >? '1 3Z I }  B } \[b8> VAOZR~bj1M]^-SH#j).n RY.-\QcN(Js>T]DUUIHa4k2VDoWOM@"& L:^5*d  Jmk9;  e L fh0 /n P b K E  K K W a{ H {p Ck{, @ M v !  V  3W { (a    K  j q- Cx   G  N :C0&{  cf[  ,J x;\{/ x}7=;3)f~!/C0lg23d3<6CYNF1%mXLsv%Vz3:@"k zKZPO/0M0 {2vyPH~K%;\~HpY:| t +T j G\X yk')S5N  1Zh_ ZG | s q ~  O E M@ 3( 68Ho E P1 .  z> @S{H,94J=_Kj0n"i\aJ%P~hg)\7A+f/.`IRTH2!=sz%.P}qIe^U-YZ?nR8|mN(]0QeezXQ_;se Zv M 5 e!88E~l_ %  DX |/_~ 2eh5_eKA3E~L[@f\ WP  b/GRD*hw_^z2G_TL 9NVNs4ALi .#)Y#>`5w!xOqA"]n?r2iJFoZO>b>P M-p(t~5uP {xdbs J7'7z-n " 3  *To +r b u< R b_ l ) * rH_  u 7 E 74TG :6fBkiL:bS/ _?IO<U\y~ebmAc"OW|jb*` r1L" K U n E , HdYdN]O9AK1sj bJeAEL5,6>h)<Vc(-~6B'lNWazN({0ab8MK+C+ls-JWq>1+ l v  ^Z60 BJbcClV~ m Z I C w + $hn- rY7'  u U  z7:%mk z  }z  e/ P:R   X  q e   . ;  0 /G$vcrF>D<p^,ES)!Sh Q E ] I a q i  ' ^ s\NL+ow/U _ -|z3keL>Yysd)t[!F bH}<~eUL__T]9R#QIV\| ?9i_k t;oGuT42b4}RLkO>7w6HVK yN0tVrJq]mQn6:V7'A : gCK   :>_To\DN\E1{(3%\djhO$k/[Dp 2A=nYm(0 `"&R,>A.G'{wy'RP_Y0\0MBs|C['8Yq'i0258cZrW39{@l<0(>k+%-~];Wh*m *wQwd;j < ! M; {! ?.k],j]7 u  y 4M0Tbo-um&>W74|%1  e *k_PQ KO#4ww83*)CC&  D * E 7 t o ? C D_ _{:Gce y 6 : 4 SC Tp  P (  <* J r  Z[    , G >{<4*lIGu3S}3ZMKbv jq(84y?'\{ *( 1 S , ? nZy!.kF1Qu,l$@A ~=4w.B#g8F |Sk1Z cM 8<"bw)PSB{~~1zVgO"\rS| <]1Obc&PD_y^$C<"a=w|)UzC:IlrN$zHLP}gz1 IWDiIZ2lr[g?zp%!n F'"2"{@|,Tb#aZ .%Ag?)K  O2 d5;>Z[6*z | v  p  Dp  A i% #  h !  g k   r   W, )zP8V5eL |    + f b  B  D [  J 0 n  k 5%?cL8 E b  !6s u  '  /% {h vX  a  cd Zw M s_$4N-<PN(-C* E_w9g&>]8{[1L|h,.*hM/u]9F*;94G5#_,I4 oevS.&s?.nZa~VLQAGd + ofKb {,-`!f N ! _ k/ P ( i +{   M  ] B + dr a B x -<zkX z v  4FO?kG%#^*ZGl$tF 6#r`lU_!i XR{ 9"B0wbyjn 7 ds ] 84$li5b!=pUn2T"]\KURbzso^220GA#qk| i A F ! yn+| 9D~bt=Y+BJ< < 6 , g y a C  7 I _;*haOj.Uad'|)~%)~npiz!YUR%uW<u@I kg*WiB ^ aw.gJ 4 zA {:P]$8QEz9c`rF4  b1/Z(_( /Pp#QNWyS0 6ilcqbP6f9WFRUtBEF{u%' oC|`2-j5f!?4) DCef!T)l^Ne#D`Lc;Ce{NL|4}??D'M?nFL 0g* +*/`4q2wXb4*O 8, s= 8 b Y N ,B%  _q*^* Y2k?9:}y h PW   y  s   1 U m@ za=:   UB-J`, tbxM !   L l{ 1 : 2 l  i[f*P0^BKTp51\L Np1C*g4'EJ:Vi,.^V|@#XI7Dxh/.w,+\-Ol.`K:7-8=??SRP~`W{9bQUP~R =V@.N0 x . X C  ;b . o: Kz  9 ; W 7 >~ HT5o^]M1 [ = XR k K Q` #p "  4 ( z )  k Y OlWr 3&MZ Egn74VM_=( \?%LBA `8' vKW^  d(:tc@pHaucp-uaYMthsy\+aUC/N0{    + H! Q xl?0R~`N }84/4}Ua+3^O4#:blr z{:a8|r8 >4eKWhRZw*Nx( c]o}HRJfv?@\$,=N. 5C)m;=?f;!,'[+OeTGHi Jbp}L.wchi{ /B ^  y{ g b ? fB 0h =x|tKA uGRW"gal:dX^vF} X@=oay`# ~m: by-sh zBp#'<9wA.k  &  R7%aqj -|9t`5z@>PcUe$] pD#WfoVxw_w&On i>vJDrH0u-6UIXcpXNC;F"K QYBwJc`7E7? HdjPK~oQ2 <ZYF,qX<>Bt # I F j $ E] T [  ( F 9 k % i^'G:>v^8  p ! ^mL#   L T F  *  s ` 45 8x   w mE 2 M      ;   wz  S  !] "     Z   c n zi Q e 8 Z J  [G ^$ ) W{Dpu.o50v,X,H>ET-t0mkNT >5iym0XGEKiC@23a5!<]/3=aCbjLu T O  #r-g:\B -A{{},jEto+vl[P  >9z]+RAf%8FA @lvS7K`ZQDR^e0v6mnBGbn.#{5(hZ?b?{bwh0} MN"Ge<%z 5('s7}2{Z q=` t8iw}Afs5& ()P@s N(@E ,(RV8QkoI8C*_ M3#4q /|MrGB[HS(?Enypc=< ;dgzu; G G  6  W /1WWi!_* =  U _ _n  tB9sI:X0Cy{DVxs3&8[H&o[>$ N~'U Hk IM #  C q D@ {   [r   i/ r  F  >q  6 y I  x pv6x=} 4e h 0R |Q"R4^xm&Ndn^ evS< i]C\ Jb GHF'8Tg}0l1M@1SbtEv@j 4E1I(Bb 9t/dp6hEL%gJ@v-c2KUOob:=T`L!< [I7zn C.u g]DvcXN LsaK & u i~;lZB 'bi+zN SuAi i??D] }gyD6w3"Q)Mx*uTx]4 sX:wz<lH-n2A F-6[P v5Z dCM:X|V5R[H(M3:Dg@ ETfO3p E \ P sgC81".(l; JsJ`rfI!$a81<|e;c7{G'"uH*6J _oZ7;KW)2\Tgut & %RwY ~ml SX[ ]y!h5~/yU\f;?]/ Yna~TqJgk",PRzyD'&pG u v B >  Bmy =Q|*uxJ2fjMt aMrBUGMPwQj~9a^zM,8_UuXw,{    e [  K {  s ! 7 m!ju?b{s`L$a,Jr F)W1i) BQca0hr8k# x6BI4gl8 NstN/'dz5=Bc`@$wS%R;Qt`>8&L U2GBD{o>FI Wx_V.FNp M   L 3 Y @  9. GU kN =    ?g  kX("P]aVt Ky W }U $  $? b 6 `   D B  ^ S 8 %R \?  | 0  *P    4  N  s x|  A m ^     X H b   } dT "A i _   y< t H  c]r4[QF  b9gLD E> @qllM&=$n(grj``q2X3S)N\m$&V!AR%I^=zsPRlaon:cp6Q928 3E>T\E0GJ,gut25;?3_KJ@  m )fiao:(>4823[[= <Ie12SfPFRQg suN( O{bz6B D2q,X|A4SoFt35D%' Sw P Y n ! <( x  = o # QrS;9iq8aq`?ZY8,?  SJ7vV'o7-Q{y<@"'cxfGo]_|v rr4H8x4umx +  o f T  (  F8kdz\-G w/?7@?JuB# U~UtO8f<I:2[V'%N| N(!B?DU'O{ E$\Kq72cdO|{l[S[#[F$7 /09yw]\]_rfC;xywAHN# b75!M}%rB]LI+2u=kt gbky-4%6E>1 N/Slu2/J0L]h~J_WMyux^'W0@YtWZe,;K-i~<|DNSOA:{%n*P$KyJL^ \F r ~ oh  V @ ^- <  h ~ K V  tp ~  :  ONQYm;fcD4#9EO%8zG-(g@JZ@4T}Iy`u'   `        f W M  <!@[Ox%nGK# f6\9fElON] mU 4YR jtP\ bLvNw@$xV|mbv*Jy\tv>v2_] %| G:TR&\&cQ] o/{v8OG[!N%&e&&T-iq53Hh*&vjEku w&'lN q" XcPpGj8h9l-)q$],r Z*8 Qzr 5"K6| ] 6! O S = B & ( ' 7  r E  Z VLn+{(N_ ~BS`o2I&{HXoCqdY4UzJz-|l7N* ;_\ARgi )e^|(B"KTr j1 x'5KngzE*lvTjE5y7S ?|7"VZL+? i  N  * V  f   I  ps    7 q$Sz2_Y <   -( J c  l 78 p \ h    D   \0   q   v K $ o   2i R  W    R   T    c (H !Q G  " =v CyZ=8tV\L4@1'HOYhI\&x\t@".nWr5m>TnvEqtF`%H_[4#[=toX KY~1mIq=osn||%q7A)jS0E7?->s$r5q6WkIOYB4cAr6` 2PPDv0, n` p 3 B1 a 6 C5 +o&za j4b tM:Wso#hN_7OdYr9BN:D%M*,"FZ$ I[QE5WQ[1d_c-)"e/0Xu~sGffcXKEFSuW~gXaiw^eZ,m%( =tc 6 &]HJ:+<EOilZ~,QR#.4w<L/ff6xsR/?kGhw 6.L$3`017 b.3fA]xK\ `H-|%z.H'YK?@4=.R/RC3+M8 {s<P1lB<.^Z};H # ekrQ2QJO8)WfH9e-#<Yy{z-q 5"A^Ya[>N^C.3J+{+YwUm:{aX@ B>If) rA\"LFk0MjfctJ'GQH<K.z"j ]uakk\X <\:85nMXe^C# K/@x3Z#lVpPiM1Thni(1V+Elns8^2M +HthVX{UEj1Uj|[&w6 HgL[|*^b]6U@Tbc{FxjVN;"J-eDp;#g!WxM2 G3WQbrA)9MP.*s" b\57ur|loMKf5x.u3j$^k0rWO523qY$|')_uq w5AA;ADG"@hc2C]sU,dO <?J,+ _*37;%i8dg\7v! ,@SbKTwiV;Lt=g)p i-KP/i2M|tV}5(BORQoL$3RH[S8::Y3Q8e ]Ev*.gq 8Oni"(qRT64X}pX@Mv"2`l`]rg"& P} 4    )   t  L N 6 v  x P} Q+ \ rF -%a*Lu55Cdo\Glh>w1;`7?ca> |9Y.jl\I[1H[GBbwj+65FpCz2H Icy!OY/.[CvHogY<21"v1U>&@#VWo  ( 2   U $ Fl p @&   : * /!  @y (S=~ ~G  *  ? W  H   4 : 3 YD   m c  G xG  } } . v   o    ; 3   \ $ N  vO  uD   zZ )  =3 F Y . 0V Xj V   *>9SS6mi?pY*&r=9unta?]~Q LDaDB<I2jL LB%,,9\%EJRA'5$Ueg-.AWHa (MTD?-_RksLO)h2U :)q9Q+-a[*ZS(uj!t@WeI1y2|?_eN>K[oZy&P7 _c&~:3aZGsM73tX=hoPoEunaV9awT1RF4tj<D@rZVc:r"5&@~d:0R_) ;Uq`>w\u5%5Q!ca~z\dfkxq=l_ W wi  .a &i 2W*:6!mFVOc-nojOCqnWs#6uAF{nf12 iKt0^s(<xXPadkQ ')=JcG_Jj#dmI[z;n5:<Q1t}l c?Z#r.9(.A/D7Nr n@#ua\T)E|s|WO +zD[4<*M:~8KG1D)T^6HF`aW /uCH}fbqGKlX_{Ln9g++ZPzT-J/ 47UsUxYQ&0&/<," 6 "rJdBr [bG$=< 0xx[G]e;ML*] O+[Yetf@M,vH8NGB"]b&A]x=z61O;LxO~t)M>fbzgQepTcy~!&+P`Nc)fY4WT gb9B ; < p r  6D } T p v=  r [S 6  e <t od    Yy e rW8qX2(u{J Q(\<RP\xxO$LGL-g>~   f U    m `A   Rs ' k$J-27%J, TL g [ ` A S !@0Lc* V*mqn[y* uK (*g$_UzplY $G%,c;M//  L8fy|KZ&B7GF1d&_!^-w >~IGN}?t.&\WHAZN=KBg oduyU)2o EE9V3X~nQOvka9PI?M.U9,|RcA<nq QC-h~IN*i^7 v/K:~*;]m4Ik3~.P=&hAy\kek]Wt1ju u({F aTnom$YW+> o?#Q=Wc'Wr\}2[p=PD4p:Pq4Ap*ii{:Nc1.PSE,;   JWy[;a&g(kw ~<aDV=GVB 7$9JwuWK jpgGAXcbC 8ehUIef'8PP}Mz[Q,S rV(n,N [ 7T%{cwV: O   m  {   g ^ 3 :P h )  n ]w - } Ai  RGc@K#-0&dJ,T;G``}WtI7; `dn6S *izL&:M@?_  a %$qoqH2JRf)((\wiOSwHdm8x"wv9N$q&vl"dgC z $ aY 3  s ^s - }A   L nb   [ 5 sT9HPgqv YD)cBo  vf^9yw<Pj q 4 j  O { O m : H ; Z" *4 a   : f  _] ^NX!36$D?]FqR)l&V|Ys RB+;N6u0PwHe^:U9y}ip!",P~XdBz'sqfpv{L:`5=DN'roqWy?a%M--pE]kY3b{?jd)7_R`tdLJlJg@g [Q=E-Ujo9bE W&Hz%R 4'y+C*\OBYv_Yn p-Q#>0f_vm~v=w{tK"!F fTT(]P@[\8pB9gtG.o8Wt37T;_TYq+XBe/Df(];BxD?{ m4|TORCloaKBfbBPy> Pp6iDs-V"h+txikD/o-q"+rG ;z7FP+ 5^fFw?O[`J GQ dQ*{Ic{AmCy.<?11]<S=gM*e- viqt': k#bu38%fc523x2YF9l1`ilC~y\ o;E0&2]:)kH1d8[gMa]{o X0ewq-nJ6#,i\XB8P~^= &X1E I.-2{j98(9~WHr,W{YhMZ2HPpl!^*3juXtAKI)q7k&op?v] E  yzoRDu}d1s0F_M=DM-A;bKeH#p gPq_-c3~N93[ :6(g7;9k P7. X69rCC5 ~M)vy=(.tg=a:8><|wX/tp&zFw)|&KC:nKI8[( ro+a 3M lLoq@Dsv`1AY='SHmF>1T{J;n`%,t $S3  [e|hf\GP=1e'p[cA&8>/@w:Hj .179'<65X1`XAYVy1: l*X\\}0n6hL9e? pi#u3V3'|igr;9  -+U,UCm~~4quW~9 P -eMe #@Oc]-o|=WbVmqP;5{Th/GEc*[+v RvkTsCXT0=II/& mrQVwB'LzQU Z?L< EFN[(*f>Y-4u  i7NUk;N81K&3k0G~d!Gc *0j~S;19l g=r[17dcV9\/@`W6)2b;,<{B XF#{u*j{hY?QC#2 e,wK3 DAmpEw} 9 PK yyhK B+ ,U^6ep)?\4 -+  86 d' ^F{UNMP1OM0gdbgDQnskycoH{n  KDj' U /-=c&S_#)fEq'uNU/u:+ck>HB+(x*;>^dbyc.!&gP*RIB9(em-~N[\t Dyr6Fcr3q+!T^`p_fS{2sgSWeCvz^@w[@Z88C4 EM }XC=5+W;" U|\Ysr+o%4wIsTQ`Eqls , L_'jGGI]TV8`"']`nOPP *; ]o' 5Ps/HBebUYA?e7?rXM3L* rs}T! ^,ZTl)"^=A,2L ax Oya[ftx.QyhF<9$ .u7rt`Xthsx4t +^O]!m&rXm./6e1^UN?}Ew$Svu-!UVw/@M*OGZLHn\ia*zomKIRa}QEvSw:iknopikd(x^!*`9'HrQ\y`.]QiH7?SnK[t\%e  M .   &  x >k ' zi0_3 d  Z[Zx3S4)6#\HwDSi]wu|]Ym*-}mO; &  H0?,PIn ) P "2xU,B%%N64\aR }7>htt%+#N>AAS sdG{tHV4$MQ<kvt5cwh}} O\"c-jY!Tu,WlQ  E  (+ B   y ` z  \ g |J d9 ,T M T 2 b 5 4 V e 4  8< V ?d   o ACB*a>k  <  t/n0eG9on%lj"AK4SQPunC>mSoST sJ8O='XP\ogluH?ovGO'vX;Y 31g2p!_5pDuu[8qL6Pm';|XZs?L@U|p CYfyG;,S:fhW{Vn{Q+[8Rg AG@]PhTOU<\cmnUR9 v }JB   =rRZ{ V6T-^(~;0 N[(;f $. >=Leo4V-};eUGh_a`wc_=%l W%YzCucXl5yb+-[v >\&!Um|[2uZQ4j UwJI\UTiv)|DKHX|z3_n-of!0qce=P]j:%d=E=6SP!M~=3x\88 RT )G!*Uqi=TpeXRs R}eA)v-~?{ V=nvM`f'm8 W#M7 -z28?yrC!,ZJ9B ,\")k Ct<yQi2_YYf-1cLIeZ*A-?d0  1'L50Eu!9/T/ X2qDu{G &"){w 4%]}d]TEmBuzb_sg0NyE<.` */S= "vr'b%Ujwn~_M{1RC0) HKIq22d KG!@%*N4,wW }Ku uK +W4UagjEzYhJhhY:Nv ZlMAUABbib}6c/X@|O.+][$oGY@E*NNP5^)x}D#d7V"!445QCqiP3>fmqG!CM0JA&%4nWK+5 l  [\[Oi r}OT(skuT;3t%=PL-HVTyJWAXHQK>92?ZQyO4p] ' T3[mpiefo~7z,2O :A;c?-3n6Y0I#]pY'dSa pQ\W]h \<4LL`j~Q.9KE 7yZf>+WN8 8"&xJ+L,rT?os{Qi) zu>8=USF]tTy(3@e9U};C?V]yL,h *`I+Ujg?N%y7+K7}Khb&ul%*sLFII?8M 1-:^$Md  sJ!RD18QZ[LAY V{TpWIE7 2ZE@7B)IM9k}TC{B9)~<JT5`"OU?W}yj>TW*Fc3)V]]`$r0#  ] eA?D2;Ptx^Qc[2d6yY-0cI1!O ?gYLTe2/?b:@tG}9Kq36c]]lUu \CNE:_Qu&Bs~NFewag/^ejc^S#/ Q|K7?!- 6C7OEaNmC3 'EWiaOi5R-i@4-KX`l+g 2WT.`.3e q"+Nr`@e")xm\ >mJp}}FR-_;7A6V"Hc2qooG= !9cQC8! 5/NfbYYW+0H; <`r&*/.PW%VQ]TfoU>>0l@+K1<=FPv,|j_X/o9R>MU^O1opqeN&&d` >#4Y_j3Amz \H>/ jKB* '4 A km! ?bg -E;qeZ $o8|WC07zKp ,+Ny}sA"*Q!pr-~r`>1rbN5>lP:pw@ Fy .T[@hP_h#_Y&fU-^Gc' ]#m2IKI?~9\7|=qC@A#6)^40g?W>Cp:`aD%4nQ()D-RxwTHk;Ij @A;p3!z{;~}>h)uPD9?,i*-UTy0T*a*'Ap!gNgMOy5HCk*v:2%[aM)bkR6 S0_}c[i1mloP@[Z Y^2xN bw4o`$6e{rxl'%%'?OsN- Fb ]_2<_?%0VQqP!]3H} C Lx8gY\Ui1'hRxnuIy~ p;K$D]@&gI7YrfB.@S#H$"wSMgmeO\mr u8y0M>/`ijB|hA$y?PAtlS]j{f+'*jY6~:xZZkN#}wI9LmmW%ZhPiiL<ow3}%H|_"-84/lL9l"3]V| h/-,Y<5>G^k_==K>Xeqj:y]6$;   !+9;yRIO/ &*(1|qK}E)C1=E; 1f9R6SVN-Jy O?bI\Xfqvp$P8#t -gQZM XK*t;!eoLQ4Fr]3 VK:y3N+cbEURxB{T=pB H8h Hv\ EsxY)VaY-$X4-QNc}Dy^"jV> 3D`rIiy)C~~~@utNdc69'x7Q95zgHC\q%8Xo\m}/ "/W ^R #fYpy  E\@fEU0S^}[b)zJvD+5ZY4mzsagDv :hZoQ Urt2S N`v7Eh [VVR7HRJh|^`1#dl0e"r?zlg{5 Do|/WFk*,VGN;`+mwzI 0J14!S'94cae#s~,Ep5xMd8E'gkYrF=o"eGC]UQ44g+q`SKp:&7VO\o0+3^z]@YM=  qQo kFVbFIepl)isfZ-g azDE<?*%(77uHMcrePQ]pM`/1#_z+ G[Kv>CnA;rl(*\^T8Bk yZGL7RNgzXiVKMJ3%s#TUJ 52pcSlW`h$ l41'2@~e>X{F O8j4k.b}3w."ktS$)om)4:l/ <q|X9.^{yYDt9D+54=<yUx 3]W$i Mb(nr M(3>7"P 0-CghlrSC- Ay}rNdTN?yZL^%]k:4HO_>|G )x5LOT j^jb]Yed-Ud#r>'&2bqr}E`h$3> +]W."7S6R5|}\c~u}J81kvCjr}r{-f@;+!37]}7e+]T6*;.xVv*Ll-%c^gHKw$K(H)Y\DM11, Eii$ON/l X<S'FO'*!Z2 b' (J8sP1 $ ^ Y /Ep(sNL>@?SB~NQ:  $IJom'Ip"pjOU`UI;RR[i,CEXWl.FZzzmxy Sk2'8zYhwwh}{K@0axrhnYK2T|>rw*IW%Gzmf@ ZBxRV+}L.=-2)3Qgn_9[xeeK7#g$p@!j~h6@<$4k4_r3.f#w;aS`ldtNI9 9+ ; XX'Y9yL-#e\"uFD~.tQUj>74Q!55<W!5Vl0_se1TC2!)6?XB!D;-|gB4rJ|uve \iq%-t?h I6wM:w<p3 ,H5N7{i:pb  LK!TVbHn8E{F^@,7N^fluWRQP!|H c:@o ](A6Ilx^%eFTY7PUi%<Ws]2%T3)_ L`-bN6C8(2VH|ysh;V?dWNQT?q88TuRTmWC(K3<:CSds#^g3 0g8\Uek [8FC\Wq&c4vg]UC/?QWGZZM0$+/=j}b F/C%502> RGf<WoB%,~4;BUfR(V+eG b#Ofh.$^rOxkQXPi=7Mk=Sj<C,^=," _Ru$cY<VA!+=GH=eAHm]uU- 8n7UR3, mk]_j}t<  2;7nTD! &$0bla=PxyRaQ^CF9xHtIv2|ym!$Pixp<0~e;$   1LZI" S!9P"F]JHLoT:Vcx?h!5Ebh^ECH\-q+i]meJKP|p'/\hfS-F i*7ew <rvnBTryk[Q: iG<p'(gc?q$x\JA1vVHCH]M*## 8p7?*=eeAg. Lzk:G&&'BvRTm;x@JRTS".IzE BvfBqhAs0;7n_ a^"eDt'\ R\a^N9e*@_i( 04aV{jJ(U8A2f^ECr}?=e BT=LrwbH9.!,v?pNG2w6wI<<lBq ~Ol[p\79p XoM `Y0 -<EFA+G?Znqphro~CAerD[MR(n'a=c)`w$W'lKjA<Nj_ (oEDDi_^#?Il1 hT-)l520,kE$] }S97@% kE0oX{}oth}(E8rF.9+&1 Dv.T^# Dm=i c/7@@7HuzJh), e:58>VpM(]Ao)ar6dZU%MxOI_|zg1Oiw {C~5 9eO _:H$WbD9(/Cd:-epN)"Vqp{Jh 6!#43Q656*k%,'ioV&h G/ 26UGfFp-=u>-IUYM48'.+/DGf7-V~SD>4P NAt1M~w "b^oeK:(Q ,}Z'Q=su%>2$hP+ M3q'@cd-WYRflhB@q1!P `k'( !3(p*<V3g d"9\KOIf2T$A7 Ny:LKG&\c3@bl5{dkkk}\ .m|\ &5JNiWNbT%"EcsDnXJdw Gm>XgtlF K { IGH!]QO`Rm^~{[=:99= g<cb(.D7{62\GCu[wPsmv D2] abYvm QK"Y15z$ nEz'TQ?MF(NcL59Q>nZ.YGW~{zBCs  UlUL`,Zx(QUbNd5VfZ Tq,OI14x @BI1M\VR 0HN7TX{'f8 [hocBh'.pxyflJq' A/H>?8>FCB#n*-=m,_} `',LmGsyo~\ ;SgmPxf2zT?1d&DPL/C]zF43!6>O`$$_.1sA+aR7UqA9ka\01 \gP&[v@D-(tLvDzt&P>Kn> {fRM fdwi!mC",!'$4=6U"s4NhW>CS/^|4p %7/$h`DwD,*$6MQ(r 5JT.8!h6oAx"fmB=+V8_=l7=/4$sjz{SLj67.1g6'1}v}39%2g4\gflr2 bbpsl`gUndwnf |XX#~Z"tM:>"m.UYIF\, ':]aszV?rh 7|B5D++u&@9~amMAC:wJ%/A8kG H5 UBj.D(h+x#:z,Z3pE#2\]2bJ r>m-D\nVFFJN?9i*g)ArK? =s1/l<63QoiOD3 ~}t/sNsSig=nlg 3H rWD0-n? r 8WYhfV]3 `5+,u,lSuZJfq6fgh7p,B]e$fm `=p`xzS" Hd9Kj?_ H4~uO$7ggPQ:}@nCpmnL S}jMU&JY9SJ.zTqkC%;\.2_ 6,0(1D(C-yR ?Z1xw:mm23MGM0ymeYTH)v6"2M@g ,dZ$Hj* {O& .V7r5) pD/E\a_VD1E< 5j7=]&|"ANwX ?EHZ.~PXmaw}xh{rXuPFGoy&rP)#x#f>=__>'+MobO`empz?~x5!\Ws 2Vc ,) u:y]KT W4+(m" d&! `]'*rxQFd[N ulPg$E+"UTcoWx^tXwOW}y< 9s}osOn(mf,Uqh~#wtAw ?_KjB(+y Fd]G*Ez?sOLiGB;SJL5R R R  YB+X?6n|Nr oD;p&Y'59btn,kg\u ).UlzHh;Z wZ* >:=8O*E?):Z)`49Je&:4i:g SY'<` )}aF'p^nZXqH+p:mZmz#wmDN$ tiM)~%gKLQV_D ^5 0i||~)Y\IbxEaS8#(.CnSLzsaPe#rW;p#8S0 # P ]%VAp5`=/.?[w 8tdxw[KI(:U6p;CEH9 %~ .$#={io1q %&HuM)wpcKPWg\OTC_2}9d#^4]$NN 3t8|{S9<~HTR6K!;50&20rXl:0"k -ey^OH}=sRAC`B!HQksb`Gz /G$j8E[7V!F9/x!3FFPI7>Mpv6Le* 7>wu[>):{ 8*wa!97Kmt8'#-@0f3Fk2)%.[;dN.3fmD#b|pls{7}DcGB43`~`^!E[dh_|99:,)G}_Bks4F%J5 Tq+jlgYnYyykk&OY K'>M8mS;rE? NeK. ONwvi7d^w~v`kmfhTQ2S lh_O8|yxe^O.w =WZ"MDPm[_[:/@@t_ tpG&p\m}OC(  2{QswwlD{lweHhGqhIx(nl]G*QG!fwDEP; 1?rtHA Edq/f7yU`(#3(v807q/L\6sm}OxJfob/Hn'PW3i&#+vUdFm36f 8MOp{ J"6-DFKDVYe\zR;& *b1AX!k cE@1OvcbM2(:,V>hGm>i)b^mV;%)Tzz)_FXPP<7Zk+3)**v+f0hBqC#c1G5 F~3v $ '57HaqymL%"?[&Oaj}~bF8s\5L( /Gel(IG]zR0Ldnwqin~ |u!wM\zK7z_R\^ {?j~;<$-L.F1gj5=`4RI ;{aP%5H IqG&BQi8kJ!s1 ?~[:6Ucptdf^fqlkb^pTtPlQVR3T#Yq .p_CR"e[s,tT7bTR.N 7 gJ.=] \X^4ue;:F0#1DM_DmY@&uvN-{]K>2$kBr[,,7Z*AZT6|8b^SB)^z{damV-, ):) )3yNcf!QF,]nynX?BMx^x@y6Kv"\yz9/-_UgsAEnow`G.!Lavdzqw6?tN& cxAk:K} Q L_D>^p70d4;' {u6M19qea]VNKIP+oHe-[]/0erL\xuS].x A5"[.F{n3]\-@`AV]% '\ %=bNy3<:~P'qyxvprLI`AqGhwqwu1Gi ),Q};N$lKey=+$*eYh2:!GjoTt+HhZPy urBn.QvP 1}H0b0+}@pW: xpK }] GlNjC!^F+amJ|)"%` f++Wx~+%"8A,ju+Df1*J}|w.ftU  UXg5<l%8+J+3}t$t%5qaxUh(2 ii]3^$ Eq M)5:?#`%qT-I@|H6;'Iq3F2zs- Xx[UpmnPH;}Ld: 0JR3L6V?D&k&*ngTBm,K|lGZCAxMz f+Otw\D T,~OSTJFU!c[{^-4;APh OVJkTZ .vS@;jM&~HZQf{m9_ #j]/LGFW@^ySD_L ;HHYW`9W5) ?i>MS'Pa3pNsRok#E?l_E/S6v[EuqyLhacR3$%v,J&}~yJ&a'":A4_r3#OMv {wW}6*/X--,RU{[8o&n.r=.Du gTrZSJZzq 7h66 a`EaiZ -up!:>M{~l]D\< 1llPm5|.Saa)SJ3geCGE SbW>#Y:sX;ZK y3|Q rBaO9YDRW4H@=Vo\_J}u:myHdot4-SJ<RNe8E(eZekC<t k A0Oe\X_n?"e-~^i+@g$y>K}8 ']g;8N;7'VoVg"ql:SteW\urM  o5[jQ]<Kv(n (Qou .$|=/6'm~ V,MFmab|r ()3xSlZ;mwrpAY ;zm 4c:1|RCJ ADZB$tzf;2m\2T16h& :Gw&bo\z$)) !8j?G?JR"[$2L0DO}]+YlV0&8y$CSvHF<TLOF~<~+W1xDQox.^@Zqv|{+|@drO}5&TUzpM~>QlUiT>np7J3.Q$V)ngQx)pGXU"$FM\KbT4T(.86]*7*_HpU@]7e{A|h  (,q $r6 '(=QM4_]~Vr ERu{i>DH2O9j+;lt tW/4]$lY, EjVxwsBPwLps\]4bk!1W=ch!? h_ 43)LRoa;b*G0's~E(G]y95v2y)w:?wQjKilJ tv?]r*xqssRk2.K5yLt wy|91eKlnQBYRD*H)?:6V4QDB tg0(Q;L&$u*Xc}xzYYOB|z<&bnLa:{K X=G. _'OoN  6;7N'd([rt33 1 JnA( Db6Os\0ploS8H(@ @o^0{+vWE 3Pi_QFm>9/_H4W^%&JB@1+(3f L8:o33:wn`?L7l4# P&C"I-h9 T&*$=C 9R9Jl 3BZBB&`<o\x]M>'7" Bia%mr*K8'D_J'Q6gw9Pc|G6<$/=A 98IMKVZsmb>T3! s0173Izx2&{]=zY1VY s>bit `"ybY-iHA#\K:a2$kg[ZSuAtr:W@^4Nys^$&d |*aOAG9L.uHz~]_y I`G\JU!HF' cthqP%1f|7L&!Jh#{j6vh)6{l\WBab@fNEC/!_7Y bQL ".6:_ir_x[ wzwCxKz_c }6wAaOFh~q_f_`=d~e^3FZ6bSGL!_Y6)Ip>g O!UkK'JlL720<QK AiHZE3& TojS1%%6xbVzh{|VG}P&5q@ 6Q6[R+kMdjYB[<~!=<.6 g+4sk&Liu}Ei,xYysgXJ&lb/-*x  FCxsL 2c)'ad]!`nj?"*5( 0]Rvhlkb/PKUMT(; B _%T< -p~I|xY5- * rI~7v5jAN06$IBGl 3K~.SN7}'9rH@EhoaZomP*BXzZmF>QP!2}$=y8S1-7/<]qd%E9Z1]t GLwseQZLb{}qER;tH~ nNOL6D\_UDdHof@ali"Jx.9+$:t^P07/3Gsa3D - 4(PIj-O _W.SG]dJQ)).eCE)woggjN*6*x4zG|!>$F4OQZg)4YGg1Rod==ts59 G^ jDRKN^#4LK PK'3K\Hz8;n bj6u;#?]\$]N3j;vh? !Ng (\j_TK@^FWWlUEp*9I.&)At|`H4$l;F)R= ?<fcD{>dTSI^fNB?Pf^ma }~mpL35i3n "^PSF&g%6$K-gGsvPq|rh8@xy@nm3  4TagR$12B?:ZMwd119:(-,DWJOsR'*]j4f:|e?zre;9R'{Hyer~]{CXa[CI6X1%x3dZl_C6. r  V[c^\1>?PPa0l&/Qjb1 5IsP4<y `t0v 4|Q*  7z^d~FDffq !4x=  @Ojp)g|p|'{@f~;B8&).U`oxoLs'6Yf u=FHtJyMY|@T.?zaA7 2_q7&3Ic sks=P*lmR??YrooTIW%W|3yNXgXJ?cME?I{L>) ]=( aubVoJ%zZe@4 +~P!!=656Jml*v7YA?#5]sv}|uuhM`-0)G}JnXN=,.23% G`non|4+`=`/]DA!;"uh<Rc/=" 67m1gL2C?Dm|a]'B /S3rd\>C)bp_P P_m<~DQ' IXWRUJCeMQbfkcm rr|{x! )8SemlWa.bJwm}7YH*?nnE'Bak ]Dk,xZ+,KQOL%A/"WS0ZmK,D D05 L /`al Tc33:84^#fo%{eYm`x{6h$c059Y@!72(aEp$.26e=JKFW_C! 3%+p3LZC]a_izoxiU[TUuZt_^URHKSd`nO+tX)  (z"O 5vX+]<3x $C^'q|&@e7 7 hXGl/r-YOk2KK-[znjp4*)AG51 5Me5{d3[Ly8dnA[fHnoboq`~F9b>sQ~o:bU"mDYJH{FuD,'__:%c 22jTAs/w(ZoPk5i;n<`L)|yvuf8Wd!#V6]XmJYhMYv{r fEud1~ _+jCZ_"$M~ 7cq{ LycKz|PJ0 J^S> w?v`W&OSf?K4s@fowIvAKhr2Y?6s|l1AGIYmh^%L%]n>JERUqnXC?>kQRZ:v(D{\V[7:""1^yaJ:%81:QJXyEk<6$(6$x)dU^SGMQP3HxV#w:eVwctx(Lp3>Qh #)Coe1 -<?ITcsug_7H C> &E/M/,\xxcynk|o{h?+5z2s+lrwiZ;Q!`Tn},d-bK4*C!#^%80;9Kbyrtv~cG3v-;5-B:a@Q}%iD w;v]>&4+" rdJ71P?sq`yRp|#Het~ *7vG@;@Q Zo?!. ]i J~1>`;wWM:'N|IY`H'r%U[%OG4a fe T86T UEy8rh64f2'g2o)Qx+&Us|yU/2CG[{O2BjXgaaySv* f; o+u"tupsTt]9/$ 3$ujUD5,.0 t_TA2u7:4:@JZ'euU) YF (BWXG;-z 1 CpAz$H&#,u0-/*F  >Te{kPe{?oBr}L6+vYeH6A=&oFDz^ZzD<0c/*JOK0szRtmX0b?gF?1kflW{,iS2fxv4'Lm2zxg-BgE+B?8)M 3u2kr/Q^o%655m(bD8K"`,`(I2IAv^JW612] |U+ Pqb~D! f*Wd`q~l|IgyP&-`"''vTMf^ &Tn*=KtAF8Iil>m )h"KA18!RwE ZyrM-g+=B-\4{5p(?7yq # Fv's!EGysWb8q"&:A7$ )y^S7\[qY0 *33$@'27>Pdnk]K 2+vkU@'!  EE1qa7ZkWYjrzM{}B[-SV |zn9|O}.%n>;: skcK6~-x-.b?&g $~g?1T`l3t%o;n@qmbcyl9<55`ol_YNUxZfb<nD( D~^LzGRMAQ\Vu5 hQ"IUi4ev xZw2YEDGRHq]t~d> -3HWF?L !4ACD=nWahmA]"Eq9])( M(=QaAAxcvnI$Jiwvw{vzaD37CJB+}q\>%0GI5"22&$&+'0:bwh<sWLb @A9{4'/F%h]r{x>q#;BBMclrpW9 F{*[o8=6:1R}i{ zGeG2/8[YmhUPW_gx-MY_esP}"A^roUEI>/ uUy_[XLq1- jZk<E+@UjriXC8AQ\P * ,+njBtK!m?{ft{vpjS3WW 7mK 0Qpj=DX0%! 1UtpDNc9w;W /GE5,0Iw$2560" R,<DUm/X~|nm  `7`B:1'J$"#1Llvgw2xiUMPMNSgQ-,Diq9Qh?3tqyh%tvuslVs/{\Hs?c9`.L+ ho?y%;pk Eds|}xo^H'2TK95X#`h""Q=Z["FA5>.&2(:@BHP8]<UP>]0^6u>'iE$&/C??TluH||3^wnSIZV4\"F$dJCF5&k0-@919@#RnS1U1Pp Q}^,~ [#LR0Wb *Ab !`z=tpt{["P5Y>gQ_grxpk =oGv #+&x%Z]H"nl^|(gG+nXI{C4*6Jmf[JYlz%If1]Z5lN@??H[lww|u~_OC9%rRTaJ!"?wImWXw<-%#'4=;%9L?jHKQ_l@n{xLp3W{.bu`M^kM0u3qqV" }'T2ez| 1_ ;dfWm8KcoN$4() "'S&O3(@O\ubGd6c+]"UTTfJC:O0B% Ia_s6 t{ef$XJWS*8g6XWG?vKRs(}H# sT#3'PaM645Brwc^ct0lzpmqy[+JzeI0 ?ao&rVdD%!@%X"R)2, 2='qjU9vMW&iB.!\-NimqfhH]TSiytlu(mEW:5 VpWWc>aq5#Ov+4?Bb1uj3$ $5s/.Y"` 9VzAqEm#,&)Urh 9+]"HftEj}Zm"Ih0'5RVD35A{HnDt@=EwbE qXG^:S#rx~EaC ))} XO[ou9A)K)?Z|rO d*:LkTqp\ KSriw]jwb{TIRYiszxu}udyIib^w2;)DC~ 5b :6KyD% -NqfqwsVbA  )fu>77[z~u  Gwwvqkb5P3> rf+)Ig<xIdnEvT3&gp yJt'zj)Q{%Z:3# [;2zg3f| $A?/gEP @pEhtL gUJdWN5MempntkwiP8rwoFH'}3gmO?Mc{K ~}3\x QUAAbBe&m;-.8CJJOrQCU'k+Lhi\P1;;wrI"+70P z`oW,NJYouovoC/@R_WGHr"=Zio=s[oec\O:,$(k&yN?i1G- t<ux}l#S73_ @dM{(.sW<, W2'3C6tN/,9Gd48,!u#^0BG%H.VR'qko%.Dg$k#!/@FA:;5%#MdlnwoF$ wk k %Z'Eh( 1FA51r*K0/3/ xM301(f_M1{6t_^V5|{}vuZw2 j*MXB?)jzyGr#tj<Xhf9%Nwxwvooz =#`^{%)P5X>P`VtP%'!@Q\}hV+#*Tf[&Yxh`TC*V %1vQ{fzf!5G^z"o tg^VXdtrGHo+3.c# M{lSe:l%.KBp0]C^}aWA57E`Ty:?+'P '5DNWS;BW0IZ?a5 3=MOJINj_C}Ywx4F;MtW`bdbPM%Ep<p8O}^BUf]:1^$GvceN:Eab<_0g-Oa-}nXD244( yC+#i;x$aaK),z$^eD6qfA1-d)6'":H!U3Y Y^gd7Nc)~jHEWnqI#dL_t1^wDq2_&;('9N_uwF 0Y w>|_}xxpo\X_^Df:p\X=M=68  w^I7 ,$&5-5B:f\.za1`zK#[H=t1piX@+2gl`?acU57 n^}Kr.vqicfn07i7Q=B94A,Shl[>)tB}tz~q]QZy {kcWC &  8J\iMeK1#h!K()-0$$=c-BHOh9] %`86KWZtf$~``,*0{CLU^YR`}b>mhbRU7F2cq>T)KVor9tZPM:G->PGIVyT<28+l)"(-=@U:~( EdfTB-}i]fwd8 qHvH si4_EFQ'bf&qAb{f`YJB;fJ<& >AvhA ^&y08@s;e(V<&0219@?ATp#"'8BV'Ru{nfe=_lTIG3@, d'5160"Mk}5wEPitmwkGoW?(2MT\u-K]s)i"EcCx:bf6iN30'C"Uq  !  !;aqjeGIu#/EWZP?80Plyb_>E $ |uIW'<!'.w;tUr;2n`}k_C/q%Q!;$0/B aUMg8^aI8'1f\J7&V0+:=!1Bhuq*@m^z(1:B`GN` ,FXb_UuSIT*D4)X sjG%(mCHV#U7 ^:I Z%ygwm^VWX0cnu+u=r:~$ ;>xy7 ye-TB% 2CJdg0SfY6v[9Cr}T9Hbm\BA%#/+mS8pd\PFOdy)auue0~u`GHY0efr|T3wpg]]Z#S&T5\Sjsy1<=?Jd"?\_,P3$*<H?(.mK;cXD@Kn]K|:1}lr|pvYV9OTfz{[3u]I?F}X+qpQ,Nv,o~x ;r%UqQU .;IVYSW[^WD.1 E*HA?R!VWTQe1=S,W|8UnMz.a'- %@j*'qYKPE,x m[E21CsRYQDH>CM<_2Y*R*Y%[W_qn[KD98=+ &z4`<T3O&V!l  *49?Pkw-q4p4z8|Lqgn}yz_B5,'# /B]u|X/ =hH!BlmAt^UVe6nfS~@w3a!L5#"tikfVIMd/C!FOPoo/Ocov~j;%:=G,w M$+! %yj`RK5F|.\Q=f s xvsrWJ{mJ BQMmAP2: .\>!|v_]4&{O2f<@b& $wC?lx. b*A?+S fn>Qs]/8W"lz"8>Mj!'1(CEIo9(KZQIE}GfTYl\r9-eR~tsoiky&Qyz  !wP5-)nawYgFg$gdbV>4F\lnaK74:=>8    0>Ocy".2N4<L^liS8,7Q_V=!x Z 01AB4') >%SJSx=#!:@zTSA&+>V#g6}A:% >{Y?lyEHlB{'i"a+c h9$>ddX[] \UC*#V20R pypjw^C7:BA:pIfcn}nS%mD i9}^K<.*'SnLf>.01o&I* pN++\ ;m zPZ{F*ElQ) Cx.,0#) !-E^ibx0 6=ZVto&z:l>c~AVTO^w b2t`K<* 1_ {pU3  }_:(uxs~w+gY]zZbm|Lq!,>G9&wJ ZfA|J"sd_YO@>B;))~>N^2~8/hQ6{]vQ/ "1Qo}]^ZF&5>?=--B2H\I~HMW_a_abfn+<:85;JX`b_]TPSRF0$&%qKc0vofT>&l9|{-5BUb_[bbclvte R0@9-3!  q M#3BPg ,"S:zVs%:Nh&uDNY.fxy7Rm%31=EL_R9S+Z.]=TQF]?b>l2fY&R0L6C2>CK>0! zO9+{ignu 8qm^N9;[r~t\HBQh}_({cH:J2!{hm@uBZ)e/f%p!-<D; g?)t%6(# ~p_WU]=^.N%3 '8EC70, Fs{_=qUHJ9}!=@P]XE:DXgqjL)l{Bpprx`|{~spw}m \H) )i=JQ,ei^H9- {e@h:Y732/,*+/y:WS=r1* 9i)Ql{@dvh^UAqxFi]\bo}|^=)9/xN"X6j?2Pv=p%SmBvetnkmeh`g`jcm[fOPH*LYjz}xwgQX+LA6 | !?k#PxuR-*DpZ"-@dt"XCFn=9/'%&$*;Tv)Ng}0 Yy+9FMG!:?-X"v4 P<b[eeghmnswy{v{hy[hSRIG?HBNJWG\3TJS m  2Y_D*{]@2D'ti4' W{99]Q~NC?BG F54Wpyib]N;*{kTzCoAxFY@*>^4hhoBU\_YE72$gA'#*3`5?,T4  Bt Cer|T?>64`9@>*b/$(-k'J2KyegrYqJg3f{ ~$YFAm3*##)-5A,OBNPCK56%#!%'#B'`b>:oo$>>}^yg\{|cSFC.&Fw]jJ-.Bt]t g2Ab X(=(jgD1>gr*fmdSKqEL?G?dKWnQ4 ;K+ >(hAJ =sHx8(E5xANG[m{lFQkQMvRVZ?20/V2W*exO1HdI\ )& ""VuT?6l=PGyF/%'^Ws n <W] RWtqKY{ihnQ`@ 600( {,"$nH3){(*B[#[O<"Y|VqU8k ncjjD# f%$ } =I}Py[]y3/e<3VCC-"W,1@ZxRsgrc8!7`!sJ A b'~e=:/o!@lW/<!F`ntlM[(H2nH')1K M:#s)Bll^*$VnCI{ZW4? '6j4x%5NrN-=S wd0IVZbf i7k^J= <=;i66|:Q8P5:H\<J4f|K2jj _CUWFW?m5 -)!m1;;F\2e C4BeRgQF7D GX]$*5 Ml^%1-+`J/hy[B5x% 9%QO{T05 [zRuB2cKc)u bDaz=~<:H1ZH=o]A7vi6{zJ-1$-y dzzz%o}:M_iH> 8[L!2rNG%3rKf:?2?@2OQ9@aB#)Km"_[Qe  -;A39j'gPD7dQ3eQ(v j%g|8"2;C3/ % 7g}87   0"" '+, )1KetqOOoqmh38aA+3t6 ,(CKO cUWy)~ZSc\H?H22=M40]9\k> ?x|l`TNF5  %uHL9|/A S(F+PTz7k X?Re?\Vsd_V2V&2 %_J(0 5%I1eH.?&;)/:w79\X03Jp+}')TD/-Mb0[D r#clRTF%l(2EDyya,v*qj x n- N"]~!-HR\29?7XL_'KLvB]+O/$=288b7P0S`yo)2c&k]j5bpd@Ua~-Ec6uMsgww]Khtf]QQ)iIRBgZjPKO8n% 0 Goy[t"7S/l62,'m{Z9.01? Nfsstj[Wj u.TC869EA  l.-Q\C2TP8Y}q%Rjv_ZYpbcI/,>E[XRvYwwG{*l,-?NXA."2FB8SsbMb?WjG4@tkK |po(2%Khvy^e-dL/-Vj.(+"|C-7.M=i5 ;3F22 /%]*n$"Z\GyW[\F20/-YJqbh3L+A _~u4c6  6p{w k _K}F'D*j$AqB9<*A<Z@Wae9}=j\X|gitl_R` Gv#")Ci{d_+9   & l?@T_aNp@q X+  !'-Pe~fqBNJJTVFP=$|ucG+"MB  5CWsqF4:0+OwjCo rtx}kBn/E(KQXG'7<&xh@`r=7{JuuZB)I#V*VYhnjWUwu}vC )nSNT OESpakBTC;p*$u|i^r{ol`I7(2HNFu>ZDEJ!7[Gt.iZB!!'EY^cqsf[S4jK$Eu^ls]XHxHF3  ks h*& .@E=251"1?0 nR|G%'Mcs}ija H+7]gshn}t`FIWI).%1]"(@i00D\o#+jP_dQ5FFMOl7OPp"6OefMOZf":;bTZY_Tdd]3Hz =x'A#) " X9 <u   "$2HVR~MXck\`CR"7!-5#Kv 18!r1rQ3-$*' y"^$T(b8U;">R_P7'PYH;IXC4BzPX_GX9CCYkkl6[rz+HXMFSZI$}wrpkKSx,IScmckyu:R3+ AKY?%G\eZYRt%se; .i{"Si} T{  (:8~G_b$+Iet"sVwru~aA95*#BY]NXYLeRj_r]xRRbk\9CM/\.d-rr2ykk[g`4 lR3;KF*#$N>|g~qvJr 2JvyI 7n+;+*HW?Q ,KP@AMRICc2~;^ER_>{vpR~vQ\h${wynL +4^q}+M_T|5eB {OwD kbpvaUPa|wvslaRK22 /KoQ::*b ?|q)M\$s%u?siyzjlpiID].% )9.!"8:`W]PKd{pG. ": v3@8NdrCk{@%LaxuL 4/3:NEV?K#Ngq[9&*+ Pq ;T X#M)M6iQ{;MI;-&3@.N1^R^aw]N[~b?'!@N7&>NMMl3r9\(7  1V`E,&wGt % +5R]J=3J:TR4(, _ B&:(5  8 [aV Y3 Yl ,MCnws2v=5o|/WokZ?Vhut{GaXf3P.60;"Tqr`:=80T%*2x\hndtW5 1JZJ<SksZC*O.a+]&S+UIbrdLo S@>_^-rei~ud|]ug}~,hHlItRg`Qv/mkGV-E$)jH.,`E61111QMGv=bW|-TaMipdG![l(=^- E6A0!0* 5\{{ckxxoM=3$sq$cC?X-`2[;C0?/[Gm^mkhdhj][l}y}_TOK\5S?h1 ,MdegXE9Ci$PlsqxntOk6~Hs0VgN%2COEMku|^KF9jcO+ zeageS^1| 6{48 .]80$7=BUXb-J&m*Jw}]SR98.61%/;In]a~`gYH^iBQY4GI[p|^nVFl+P) l@  5 Q_aqu~k;l?ZE, ,>4*LTjLqt`]|\vUI;IdcQGO[N0(!4g/i;-ZKgN\\NYr?nzQ3 f  I Hw[}`c . /' 3>+q5)%Srurnt~*+.6HRSJ82%"<dvx_[BC0+4L[Fp&%AEQh!&?Y4 &7, /CIQuvma%q\]nzti0p_u~{fWXnhuFn5V$6 tx~r]b{:?HexaZt  * =#B"2'$33.DA69KUK<:>?/ )\<KZQ;q(h]jhRNhkx~`8&b71EczN& qk_;gcgLviiiiwns}pe__m*Dk Bs"7Hza`N3 ~}p{;X6%*;ONAn6Z6:68D$F9?Walw%BXULRh}mVC4+'"(9B;?cAl#Dd2~Jg<E((+E"^ spp `&A?>qB=.*Tpd:/DX_ c^RPi2Ot t^S?" .S+Ul*n;iAb<XF-lYB uTDN _!T51>Rw!NjtNJW`S>3+ 3T1\>g2{wf\&?* ynKN6xs9Nb}|y|tTp2^W]GoL=,x"U8Sn|jW'~iQD_F=HP^Zo6N;##%$p0KO/s iRD'(FWZI54rAgLV^:l#`"M0N,i}ns}zP~/_!GK_f`R;#%1#J/j327FXa^O%?59?4H/[/3568Ie24.& +-" 6Y^L;2+2a{tjQ8}jRx=]4C>'HGKO]f_WI2fSGrHST1fm p{ ,) # 1 6!-< N D.5<=MOccr}unpy('nu|r|{pc^lwz,aDIUCeAe3bi^Uk~/d_l &2dJ5iY6#w#_*D((,IXXE& +?Trrde_VB(Hm ~bpPC@ 417<?CB91r2p7x1y,m2L7'= INOMO{QUO7W#lz rX5|m\D#6!, (%;oK]VCbwo)@9EA-Z1l>%@PVv]kmjt w*kC[NUPSLGQ5c(~# 7B<% sbTOOMUbg`f{+VzDEkM!D\^\fx""$0FZ`\Ydw$Jn x[:&19Kf{|9p]ou~2`~2Q6gEySfY:20"~x}  5FlHO>2>NZR9jS7""%%;-Q-W$ZcxgP:.%    aG9& ~4Nl{pm|!%p/]4L.:$ 5iV\vZaa`ad#j8uDLVes{zmS+ *+%'2D\pupkmyxaLEMb+Pp_SN@)BMKC2mN5($&20xmbL6((.>c. 5--J-W6PC@N-VG#lG%f)jI ;OM:v*b)J)8!5;IgzlDYx6$#3E<^:m7rCs\^v8fJ==;0 %(Rpw_I@CF>52/!$"+@E>:6+ {rt{&XN6^z(JegXE0  0Nhx}#;[orm8fY`herrr[5 $qEJX1Z*c+u-8j<I>,Kd }|V;%teYLAENA,~m acq|cs?idaab\L:27G}KU=6'  |'_(6. =>G[j]LD=2% [=, xk~[mDZ#UXTS_hT@7)rdS;) *5N\l|\?0( sZ3  ois  7#\ "J%%-IIFHP`w 5IqK]IMUAe:q$ ( K u.F\-gEbbY\ckw! #"  yY@4/,047;D[w j]enmebcfwj-i6y8CqV^jKx:010''~HU^*h kms419HDeRamysU9  #9N_jz 5Ney~~'Irp]SL<%5Y vS5.FSY[h  10#2<DD5# zi~Qt1okjb|UMUqmK07lUSpDFH>,}k^Z)\6]DX^PF=:6(w_D 'zcD#  %n%\X^a_drpjm s2][5:KTi !n7ZPLgA{BD90@Se~    mV= $EjtqlXDDC:0.{[4 #,,.9F*SD_Xp\[a^RE3 wM#fH('-* t`A  8JW~cTs3#|[9 |cPq>j3g-a,Y"X]#k6EOZ_\XVW_ij]MG@3$fFqW{Bp5l-k#kqx ,368AO[dikluyr+mEf^[sC ]4" +6 =A> 9 8@.IDSMWQZOUIQHSLXScSmLt9t v/E7; CZ o z1Rr9JNQ[isy~zoij{xursqdcik]H$;=>gK[q #*K,e+l'ms}(1y,wp^I=6,{jfi d"R>BR;]>mKYYPE6t&e \(O/;,&'*3BYlsuzzjU:+2BMV^~obG6#kQ9(#).#1&7);2;;BDTRb\cY^OSIIA?=7?+?2'(0=Pdt~o\L@8+$8Qhz&6E&R(f,-) Y(+9IQHh=K6?78>7K@QIPMHT>d;y?HOG.)1.$#/;@Nm{pgv^kRcK`O_O`B\+I::BFIE]<A/(!  na[L?38GXo  tcRF?97:|6i3e@lZswvw~"/7s3g.[2M:<@&EKR[ ix&+u.a6GD&PV]a^}^u_o`hVhNtE:0* $<p$).Z<JTYXVQV\}ceiGt'y || w"u3z?~LW][]_^YQOR^fimx3L\m&:I(R9YFbLgKhFfDj5iaN7'  $;UuqU;!8MWcu jRu5mufD!sha^XTe_Dv( rS2$:IKLUcppTp;j%d^Q@3( e?!,<MYWI;1)yngCWE3# X7$ &9HQW`gigcgq~gG&eJ, *3?SepwxspldVOJ@<>>:9634>N]t /?'PQ]irr l2\\C/#"(* *, 6"F%Z.j6{9?B?96307F|Rm]ckXzKA:537Hdz#*15 6==3'scXPNNVl%8-N2a?nL{V^ly}|ucUMB3/37<K^n~viZK;-)&4Wxvqrj_[^YQMJCFFB8:EMU0g@vC~DJPXYP>+  #$ *;S o )C\r~{uo,dBUPDT)X]onZIGP`x3V5C T-mKbli_WUG/X8'*)"!'1;:~3w*,A^v /VpwiR7gQ D=3&  ",)'$## *-%jJkXRVXM:'" "! yk J#&  0BKJDAIZktocZYb n"yzxyT ~S5'"## $@\lo}&,G8b6s(~wmv`KO7'#0j?IRbecl;U`hw )7<>8() <=3" ww.A\{qxgIb"WH4hC.+4@MXbo7Rmx`G%5$* jI' zS#-7M]ejRx$+yBrJeGPD9D!H D4~i]tTPJ+B 935?JO-S@^Ylny|qt^_KQ7D!4 & x_G,2GY q!3GWgxrF  $(()29?@>9:HX`fq ~& .$8:APCmK]my}t4c[\VOE @(H;JNGbNm^mrc[WVYbks}kTG E;C[:}56AUi#y6I_} %( ~{tvqtqxngdl #$:<RSZrUG4 eH4&'--2=@7& #-03@QUSWajrqhhq{_F?u<c6S/C/16BQf~  @Veu{sbM:4<JXftlP8    v0j8a?]D^Pd^jkgz]W]p !,5992fC!yW0A:693/)" *4=<9"<0E9PKSdM<,$)5BNROG@:.xpaRHIU{kw|{mzUo2b F rd\`~isrpv #+"|k\Y_l|}{&Irz U.  ymjwrsz(Ca'7EJKK+O3V7ZC[VV[OLO7W]dlqpynSp*w|wpnw DZhw3Ol$$(*# tojdcyjqts}}"w=lYbbY]RYO]KbGgGfF`?Z4O&>22 <>1" +<GPSP$R)[-m0~0+x"yiH$~t{S7 o$[EHV4`!r q\{Gg-]VH5%nI-0J_qiQl<m7m9g4[)A!{aJ2vk kcW%O%G>65Kk|" "  wWA6( }zwrt~,{7>FP[_ZQMMQZ`bbhz|j_,TMRm[hmfdn "+5@Vu}gUG; 5:.@>AB@AHCbN^o5IYjydM;1.+#rcZ Y_*f8fA^D]EjEHHA2 @j|lS1 #.33/&"$!&#8+G.R'_u  )3 9*;/=*B$O)a.r1x0s,j'b#cgmk[G7-0(<0L2`2z4678>9i8:>yAsJl]asP7*6AHJC57,J/V.c%y tqsux|$>Rcr   $(##0ASalw}F tF    #<4HIL]Ypr&6HwKd3K 3,+,.0v/Z2?<&FSd&p!nikrsgU;  >Vbl{_6t[MD>6*}|~~ { t t0Qwxm`VN E*=G5U%N?1# ~_NKH/=F0[,|-16;AGOV`swsnaKw-n joyybMCAELTY] djvth eedb[TSTSQO?$nZNJB;=lIKP/RS QKMXc*qLs!@YjrjV"B!1`A& 'Hi $8L`u}k`WvJd?S1E2#*6LhkKucXHC*;3&{`L1;L#bt)/68@Q~dipL|2$" ];s aP;vowyqd]_fozz| +40v+r'q"rn\A*"$Y'3 "C`p *0;FMN>% + CONFGQbr~|i}ZtWvc}owuj~csip|t{}tx (HjoPC>32&K_ w *A!S^d{&8IPOSd " 'F\kv}*r>iYu{5\|~udJ0'2CIB<:ALV\]XOKXs{z}mbcuz^A03?CFEJ_xzogX?"9 Zko"p1sMyt .@MF1Y4"'& (0=J%V&^$^WPM(F?4Whs{l\I5),>Tesxd!J*"/@IKFBER]abb`&hA}deB}`KA?<6+  *G]i|tlb\RE5&+=FM\q~lR4s`PC84376- !((%'((+2;:r1W-:1@P^ced^SE7 hTC8/,3BP\o!2E{QvSqMhF_B[7^$f tzx}+/*$!+ 7EUh zR-.A PX]h|tqx  (z*f#PB98"<BOav *Ip{lR>6797331+  &'  $2,I1S9UN\ol$4HXbdintXvOgMUMJI<:%) 2ADGUdhqba[VXTVMN<=.'f>;`r*hBbaYK3w]^?4 hG&regoqng _V,WB\b^YG-  !hR;! |[>%$.#46<EGGPAU>XBYQUbFl5i \ NA4..x%gXKDDB@=930-&"%*+)((<%W%h${! <Wbi{yz~},*P8oERWVRMF>=6T(f &03/% ~g,R0I-@,94W:U:Z#C%N'\#fj qx{ bL<3 +# $()0>IPTbwyc\^a_%ZGVa[zk *>IP V_i&k-d0V1J7?D8S9`5f(o~.BRbzsptw}qieWC0('E(b-7ER_s 6H]q$+0.)"yx ~~qd]^bbV|@y,{/Ojzzrjd_^*\8X8V/Q&K C7&  (1BP]ky&2?F?/zhYK<.  i\RH@2  !&# '050" %&  %$&* /+5D=VH`QbXiZz_ghbYRJ<,"$|4i?PE:L1I6<A.DD ><;EVeeHl-l kn}/EK F$?&:(7&1"!vU9 #.:BHJF9$yurnow8b*;~GoTWe:v!}xeF%b>"}us{|maWMA0pXH@ERicGq,}  2LlY2(8<t;m:k6e-[H0 zmq\nOrA{2% "LhzxisdTc5`ZUQRVXZ<]1Z)[YW \fo(t?uT}bityig jh-^3T&M KQX]XQEb=J>:G,L"LKJKOWYXUND?DMTV] m"->PVH!25Sq " 2!A2JBRVUm[k:\z)Pu]A 1--)'7DR$cCyd! |cRH@.  $ 7 PcryytrxpYGBEGB@BMa} )@\w'Jdu }'|2|BT`^O9 -ExUddTuJ|DtAbAKI4^$ (=HH~DxAzDR\XMFGMQPJ:&{ioXbP\V\]ZYUTOSP^\qq%CWfx}wrfYNFGRbvzdPEAEzIcGG9%-,4>GLGv>d9[:S@IH?L8D5:466<@JTYgbyd_\]ahkdP<0.//+%)494)jJ#{l]RK?- |nddmuvqj,cCdWmbtarYnSlHn8w$ "%3AHUbfvws\rH_;J3/) &> Pd/w?GMS\dwhhf_`]UXHQ6H%@?CGPWVPMRZc_i;g^UTXdr| $165:G\u~wgzTsEk7f,l&!' ;?JZOvLHB9+|m^UT#\6mKf /9.@=FDMDXAdCkJlTl\idhcg\dP_IULEP5L'=) nU@r2Y&JI Qbt1HT`mn[E.xoaN<*(38ATl~fO:$ rSv6b!K2 (6@BCHQVUTPG;,wlc^\]]cs|jO-mK$ztqlc[U~V]eo}&Hcpph$b>^W[nTJ<*   ,;L`s %)<=USohtvsgVC/vfR=* &.:?DNZiu{{wux%$!"! #&!vbO#?$6"3342./5?IR^l|  |opwz*E]lz.?IRY\`n )5CLNKILQSRPTZbiq}  v{Wu9q!o mnoonqw} 6Mcz -J.d@zJLIJIJIB1$ 1/ jW\ U,38 <iZ!(+) ),3:4@uB@:66Z8l::;88<2@G M MQVY\]_a'_?ZXUSLA$6T3 7>DHOV [`hwqyzslf_^[@U3P;J^Cj;=4)  ~sw+ #lq~'m;nQg|xr%)Gy9sryroN_svfex^@3?@)5>= $BB+)<+ ,oD^P43C?ahRJO2bCeHA,*/:1:C@5!+)ALG),67JfdbV+]n8l;E*?IH.h+.&';,`mco2TE##{R$&(4a aD  W:+W%(MU'i I4;AB5cTF,DBP6z*+ ;U.gqK@;\#H+.okLtgF!yklBdO&mS[|n;wwV,%Lyc,`;2M"u]s3 %HG >) cano{Wto 4`U7:{ %CN`L\wt)Kin@i4}y ~HS@,%$2H:XViJ 3 %Ou0f~a8ll@ u*>L{@)'>LHE5NkjczEz$2$&# q[ At[\EG= .U`TB[sjl{ ) F ;KKNartmw}qv|x\>=eM`DL)i!s'!x~@$Wy:/{4yyF5b)O(Vf\alofcqgvkq\p[{NLRNEB^HUNG5-4* < \L1eR[ s"e+{+>ZD>B!QHWU@^&D |jbrzh erNK>swt{sS:5I'>$1q.^\]K38GLA:Sx & EPd5S9ueafTY^<e$&#%=BK]lYJPvqNAUqcm|ys{tWHMV>A61BGG x0:BQjwbX[neQ_\llX0JCOaW^>!/.DYG  $J\V|az8VR;gF sr'RPLv{|}1*N4=>,rz\+ra3fN\YDZK*E)EG 7 vQz3#M'yhU6!*87/165#wJCcsaT38+)^ ItdwV-|[L LC'{u,-w+;EB2^KE#Y"y~;ojlH 'E:skc;beYrFFE'@51$9B<9Gu0CtQxawzwan;aOB<3#~q CZNQk '47&>KU&T?K]IJ>'| qojsi>?gmQ89JTmt[EW 2 :(5C4]/r*h4  #0=79EPYSGD D$6V$   +2w/D;HNHGS`dgbMnVqn{lnWKI?y([MSYVURG=Qpti`N<@RQGGLGPm"<|^ox`G8>A.*NTC70(6RR8$  0 ".-*+-&  ]G3*3+}dUI;z&z +FV[etmHmN: yttrnoy $ 108dBNY`_\afg_VY^\YX[_[TVbrxyqgngByn_D' WC7# # )K`\c|vhS5WH@0+0& lU,ICK\OxJE}@zAA0}q h hq@sbnhecVFAA=-~V. !+dRSoRTK\txf'W8IN,k "%@]$/6McrqaOBJQ/',3BP\dp-T[d} 6DPg~\>F_z {#hbik kAm^|2hB^FdCfDhVkift\}g+Rxe g~(26>N[dfraFlB:nGdEQ08&  ' )H^YPQSCJM6Q*V(W!t):;4&oS0D4H RYXZm|_G:5GmzbI8%4SVLA98DG/ .Lqv|iki^kQbNW\YclT;0=X~{c0a4"%8<'uQ&&0AXdZPVir{uV/  (2: N"m&3;5)'6Jy[gfa_bI^4Q.<-? N RODDSVZ~_ukasIk=SHB]Ai<s-t pq "!'<VfjovyvnbXKy3n qseQ 9## /Nb kr{$5EQUYbjkir  8N_0jOekiddl~yfZZydriy\>~||[MLSVI0pT A :0       -Nx~t~tdURE* 9=r2m1wIyqvt{pjji_}G( yiP8,( $m ]XT L$=*,!$ #-;<=Laquoq{sdZSF *  2GD '-55;uQ[h/olug]e\AW+J.5E+Y1Y2I&2%-!D#\fWE52@X a"M.,3 ;Mc rx#3>Njrs-2( ( 4<5&*+ xWAAMY_\QJWo 5@r@wG]tyfjxr]QI>0)7+F9VA`GfBqJ|h}'n(n0F]szy?Xaegnz4DTimP}:*}#}" ubOC?4- 0, +-29<)|hZX`%p'3@?8/-44&}j_^t$}s/0+@'a&! Oy &7:66=;12=oDK>/)3<7$     /Gd*4?zVmxX7! )D\a cr/Kakri5 hMIR[tdZbDF=,5,'?LUXN8,:GU_W?/6EQUT?))8GNNC8;AVaajz{W*ohj~Uq,gbZTPMB0u%c#Z.d532000')#"'2@Y`P2 &6CHS_}crXqFb5>+#& (!#/>YwvlvmTKB887-+?]|#1BMWkxb6 zrcVxKa4@  wg_]XNEA?6&:G&D.E)`|eH/ ultthXA,-DQXMIRcigkZKQk~ ~`F.+@JJLCn9[9QIKRCH<:=*@<1"$/"-$$)' %;-Q0V6[=cFjDy?:;=9,|t+~4~8;GZileyathzo{peo@t%.J`q(--1={DOD,DI [ krsx 5O"S*W6f@ISbmqrtz~|qimcJ_DXDNM@W2X#H407? E K 9!9Sk! !0CMh`kqtv|}zt(q0q-m2gKeraVJ@<n>lCGIKTamgdnwv|)%&F3gJmbi}\D3?UN2 uNK j  xc$M239-B?O^ZacWhNpH|Nuzmlmf[RL HC??CqItNwPc[<l|$}vmeXC-#||}^QZp2j!69-&.9FMC+rgWHh??4'%%, 28A?A_0Hizwzyy{\HD7# ,@D=<NVRLD5& {hS5fG)zroqx5Pn&1:~@fJD[dox}vol^|K7 }nSLax{thP:Aa s kZF67Sii_N:6Moui][m +4;HUzbq{kH-$2N^J((LsshrneUMKMT\eu3H?(.EUK* $43 !-7G\pyk{[CJ]c]L, }o#_'C*& -LY]x][L@B-U#t z hlws *.*))( }!k5T58) !$&(-Ee}~kVE; 7 84('><+vlgaYQN#R]iu '! z x{o`^cf\I 7**4 B?+#/BI; ~!m3o=iKi]nlV|0 {UABHMOH7(.;CG=% #1BR[mjjlid]LERes~";P|^n9^qqtzp~u|%(8U mw/|:|BuIkTkdqpw{tiV>,!yrf[X[j&19;9:><5;E=AD:G3B(@#G(R,\$^^`gkicegcYUW]ZRJDDDA$B+L(S.T,V.`:jHsHv;s,q!pi.WGGT:S-OQOO\hdTF@DS^_TN'P4ZHo]krsuy}}{+}7}4w.o-i3hDf]`hXbQVQQQUO]HcAf9\+G:58@IG6,z5qKlhmsy|}    wou} qqzqtsi|\pFe/a!c&d3g<f9f.jr |!r R,853:9<4<-:8 8=6)   zbOBDGB1 1CTev"$#  '.y,m`Q@) "7Umrojfhw~yw !/};jE]HVF\DhAp>m:b4T,F#=86& ~dMB@GMNIITk ,@OZXQI=/oV:xg([>QWLjJuJrKeCT6N'NNJ A/'.{-e#O=#507@;J>L?E?D>M9\2g)n plb_jx #4;9k6U<>L%] iv~| !2}ArQe`ZsQQ[irtttt } vljphpJf,XNGFOSOF=4-!,A-a%2FQ^inQA;70'%%)9KX\"^(_.\1\,a#d`[WOI I JC6"*,:CFIMRW]ekkgc^ZWPG>:89>E&IDN_Ytk )15;CJT\_cku{{"~.49;?EKJ>623;FONHDDPdx~!'%#"*6DNTUSWbs  x4rBsLt^zsxkUD:4/%tmeYL?547=CGFFJSZ[VQLJHB8*  &1!1#.4H^ovqcZ^b`XI-p^RJHLVey ulr${/8z;k8[2U+[&j%z%# <UhzsbI* *;EE<{+dN;1/ //5>N`vpfa_a^]eu~~zwursoh[J2 ~{yyumgjwp`RD7)~xqe\]boyvy~{xyw`PD7' -Ru!!!$2> C C; .% *5AGFEFQdwybNA<<:;@IR[mxmgs   #)&!~~rd Z%T#QH< 67>J\q}#v=cMO_<t-%}l_WRI:-,2=K[y`e\UWI[=_1['WF,   !""$$*B4dAFB=:83-!nQ6"      "#   jJ,1Kav)-6<;;>:*{m~ZoHg5g"ffiiedecYOOL2CL9f3})}qkpvyz {"" tjjjbZWR#L%H'E(>)7+7/44/6,4315.51;4C6J:Q=`ArIR_o,C[my}tqt{zgYN@8;>;<?<8=KSYi{#&"$(*0.'(,' $&.A.OMVlat.;AwBkGcONU/WXTNNOU[]^YUUURLB8.&$(*)$!%1@MWamx "4I^xzo`UPKC:+  $$#%,7J`utX@($(# /J]hw|m^L(5Ef8Uvmk{`WQPVer{|ZE0uQ;)!'=[|yqokf^VLFGIJFyAq@kEqLOQLHFGMYforuz~T3}dYZRHB:34:7+# yqmklSlBk+g fky'F^trcXV{XrQmCo>uA~Nf}yurpfXE,}xzzi^[\`b]RK+K5Q6[/c&c!Z!RQW evvaK< 4,3 Ppu^H90'|%r'g!a`WG802;JW\_dluwidbb^ N'4Lpn^QD1 5Ysyvyrh`XNC1.Jbw|vu|xvzzvt{ /6:BJ{T^]IdBgV:P-P&S'S*Q1X9a:p0,7J`# Gcs$~,00-+,1;FNRV_qkQz6'~fZTSOIIWl     '-)21;.J$\hr%},261&$',- )*=IRVW[]^`aaa_eqtbJ2(&$#!~xv$u5rBpNq[vazc}lzpga_]XSMKKLRZ`eh pzvj_UOJGGFEvIYQ@X0\%[XUTWY^`0_=ZEUMSWSePtI~<{,z~|[@/#Dl 8LTXs^igasYNC;8{:x>pEgN]UKU.UVW[ZSKIJNRWYXTOMONG<3./025"7!66"92?CGNGQ<H,<7 :;7. fK:31)   .8AJWhs|qjg[B%}xph_VH:.% '((:L]k| xsn{f|cgr$r8nEqSvdyvtg[Z[\ZO7 +.,$kZQOPYj!};TbcYG70-'2F|Uz\x]yXav~mYE2"&?SbqxstvsmnpqrssmcXKA8*!z#h'a.e1q/v*r(e+V/M4Q:`;v81,*-.$&),3?JL<!sg`S@){ns.9;8x:b@TKXWg_r`r`edTkJoRrfryoe\qY][Vb\hei_gIh(pyoWJO]c[J0     "/;AB@BISXR@-   +489:9<:2%)27:6002 32,+4!:A$K4_D}R]gny~mR8* # */2?Rh &(& $" %,2 36?Pe{%/2- (:zL}aq{}{|wmaRF><?DKN#N(M)Q1YB^U`_`b^[\N\J_Ubchinkqhrbzbkzzl^]`\R~Fw7v)$)2440+1FW]b`[]gqtrmdbsm^R?, ?c6G}NvOqMnQm`mmnkobmWoFs;x8y:q0g\SG<1% v faeiifimy#.?Qanxn[K:(voptz ~ s e XN%C3;?1L"[n~sdRGEKS_d`_xcbkMs8w$ti]U ND=%31"?Pc~}r q|&)($%)v(j%Y$?% '0<GNQSU]hquzvh_R>&p\MC$@5EEQQ^Xi_r^{WPPMC4s f \TQNG<50*%"#.8> EUl~}uomjikquvvvvtk\F1%Bb~}ofa [U0T6U:U?UA]9g.l"kg`WK>) $ {yw)v7yE~Whxth[M:#eD(       *-.27=?=5-''(-369;0! ~wojkot|}}{fN0.<IPND8,(6?@BIKIFxBs8r0s/q,s"}&4AJKJGD<." (2?LUaxmcxHz%{| &*.4:;:81,*&  (3?KTvYf[YYPZJ\E_@_:^5\2^1_0b2h8qAwI{Ry]yhrz}~qcP=2)RnteWG:3//14=HT_kzysmaVMG@7-'%$ *4= F-S6`:f;i9f7c-_"XNG>2 /J^lzulucsYsMp?e7S4?4#3 /--/147;>>>FOYbjr{yi\M=.%|eM 6' /7 =CN[a_`cgk}rb}J8.)!  " ->QcuthfeaZXYbpth\L=3.,+)')+058=ADEHMOOOONNPPQUU U RQM E<%.6#CKR\hx%08>@BDGLU_lxweM<3,.5;>?EScr{{yz{~{mb`bee]ODAAEIG>66A O]'h4k>mFvJIC=:88:=;96678::9<CJScpyrkknpniegs(39;AEEC?81'*%()) *(("'",!/!1'293P0e.o0q6k;l=s>|<}@tIfSV\Fd<m=t=x4}# !.@OSRT[gv|tg[X\m{zm^GQfE2*-($&-{4j3_'[WPHA:2./1/*#!#''%"    !$'&"   #,8HXleXpFx:/u_M=4139;63 :IXbgikqyrcnZ^XQVITFLHBO7W3a2m7{>A>5015 3/,&8BFLRZbhllgbXOEz8s,m$e]UG#4'*,,-/2436|;uDnNhXfbdjgkqjihgf`ZTNG@8,saN@4 ,''+)9*F/N6O>NCOGRKUOXSVXQ[IYAX6V(RJGFFFDDDEwEoDkAi@g?c=a<\ARBLBIELHRNVUV^Vg\ri}x &@]yp\H4oU @.*6@JRVT QLGC=%24#AQ_o}qZG2  }o^L>640034336<>=7/-2536>FPZtfkodw^yWrRiOeK\DN?;;'<=<6+# '0:GS[ekpx 2H^t|hS=&#4E Y p &2;FT`gk g_)V:NPGeDt?~8-$!"%(*.7@HQTX\}gpyg`WJ<3//3#7-;1D.Q+c.r1001..3<CKPPOVajnsutu}~ulbVJ@4'  !1;@DFEEKRVWZ`m$&$&-6=@DFFGKLG<0('%! '4G]q  {rf^YRPS\l~zocYSNJ0DJ:`1q'xcM8(n]L:-$"$-4:@FMTXWQMKHB?91(  }m\NIIKLMLMPTX]bcahr}jT C 80)" ziXMC:349 :=B%J+[1r6;?BCFHI FB<3$#)( ueYPIB:1*"&. 28AHMP$Q(N*G+@0;54:4E4Q1[,`*b*d,g1k9j?aCSDJEAB8>4:505"3. -08 DIG H'M-V3b7q:4*"scTD!9'/&& ( 8@.CEGdNWbhe b&e?kZtt{{tnmmj^,M2:6(:@ CC<3*&# +8>A B(D5EF@X8h/q"{ {qeUA+|vofa][XRKrGaLOQ>W-^ep{{rlbVO?='/#  {sh Y)M/C69B1Q-a,l*u# jR=)% ,/332-*-377;>@DINT#Y*]2\;^DfHmIrHxE@=:60*"vi b*Z4N?BKPUSiZ`hrzollpw'9H*SG\acyiovwrh^ZZ_a_\VRSY^``ueiqb]XQE?:52%0:1J1T5\<`@hFtKLLNTTQI:( x ]F3   "*8CHJJJJHG!B;3){rlkoxzof]QD5+,'7+A1K3P4R6O5M6K<JCLGKIKLGMDMBP?S:N1A'2" #+/w1_6N?FKA\8m2~0*(,59>ELS^itz}|{{|qe[OB7(y mc_^_]YPD:/"   %|1~=GQW]fnooomljudl^fQjAs,|}o`WWYZ[RA0# !(7DOV[cqqb}UI|CjCUCE>?7@4@8B@CHENOSd]it'LozkXC0 )(#"%'(%  ;Zy(;CCCqIUP?V.]] XSW_cea[SMIKOND6s,d)T*C*/%~wncVJ>2,)%""x%f)Y/M9C@8D.H%IFC@8 , gO8".BSexwogdl{(08?GNV_fmv&.578?KTVUVW&^(g'p!{ #,8HYgt0BYp  (("|n_Q(C<=K:R:\=kEOZj,=HLF9,"!.7 <ELIB>;70u'g^^dmvs`SLHB:.+@OXbkt|         %!2'=%GSdu%8IPPPVdv{k}ToAc6V3I3;/*$ )7CKWl*{@uOkU^POEB=5@$FG=-xhUD7)n_R>! !3F\o}vhR|;q*hfiknry}{o^PHBCE GHH!I$M*X.h-v$~zV/*A!W%\+L.204 ;<=CGLSURKC7) ! % (( *-4>FIGEFIMOMC5( +8# &JkdC;2NNikxhz8O_kutP?6EfxnXN O\$u"b<-0,36;;@A)HOYfrvs pq v'B[`SO`tlnoq_1$)(aW[eszoYKMXlyxaf7X"V$Y'^*]'X OJJMQUXWTY`ed_TFr7f+b _f`;$+~3p7c,WI#:7,Kbz|ny|_C,ssth[D"p [NF>9;DL!PPM9J^JwLG=760,*+++ 0#5OX cew)&{iSRgwutthv>y9!){<h9XD7 CQ I>3&!v4S9K,F%& 9C=61'':A3% $ AX*M"?Kf w j\-g'utc \j"n=WA5:!8!:>Nmsjenstfp|pXIB9& 24!!30%!*1/4&*GSQSow}inkQz??y5m=~E0jV2\9_OGeh]_td[@ !(46!  )$%/<6# ~|nky z fbszi[azd>1/,'y'x$ *Ifyxx657Qkpe]ho}Y{Es.);IPU_gtyfOA8 $1Nly~|es[tC83!|}vptrU:(,.;A1',>KB ]NG>=6}\ 3-840Edtv`< [{Cx9y/s\A@T]XWi*1+!-Ki|a&S.^+k1jK[gTvbzjncX^IhTaghybQIVox(-(('614.-'2Jl})+.&-3HSgdwk}r{snwz`w``SB1+#&90J2P=PJPDU>f<FY`~b}g}uz}yww{v{{ihqt~qyu}}u_[bgd^fx{qmqvraZ _daX]lo_ONX[-OKCWEPFK<R%c#(!.)#0FTRMYhdL<?B5  %4Ru{sxpXE@E@,*71 #*2("+Fajq,JzGdADL1^1a7P:<::1F!:1 BLM@45BGE6nr{~ym^SvUd]c^`UFE*0 "(;IPSRPUepoeVA47<3 .GRLFMpYpP{7})v%h#XOScosykdg_KE)J:O<M4?)If|~  $0+ /CxFa@R8I:F?<2"   !=XgcjQqOQF.!$'   )>=;BNQE<;z6q'bJ A EL\o} %$+(#4<5-5Plz !2DMKSh,J^ltukb^ZN>9AM]nyyf,P4H3B7@KBaBo@qAvObnvxjYTYZXSKBERW{UtSpJv8z+l.Y3I-FJ =*#&/;DTlz~}ufjohV@}'iXD9%z}ynsUt=,kY[VD0%! gWUK0 d$R9MYDp;x-&# )3.-02>E7!00$'0AF715>Ld{ "3?FSags|z|}&v7y?CFRcnq{pvzrdQB9,$+1 >S`cc ly}z}vjdgjcZUakklljdVRYb ea`j z  #29FUWOC5) +4=HRYi$.#&/{1*&-.("&093$"*476@ILPZhsqbUQSPFJW^do !+* #6 \|(+% }m\TNGEHEv>j=XEKOES=Y2[ TOQSU[]TFAC>73(' 3EP"M"JTZ U K> ) {{u)i8^BZQWfQwG:5;:2+(% $2648BJKMVg3pGpKpLyB+zpsojdXFu;c>Z>U0H'4!    ue2^DWON`EoDxIIC@HSVMFHLG901.! ~j[RQZcfjprwuuyse\`jpvzl_TOJ>1)##0@KNS]gq " :L"Yh{|rhgic\[bhu~~x{tsvrrw &y=lNV\7m |obWH<79:55xBgVNf9p*{0;ERzZpYlNpEw9.|oc^__XJ6% xpspbH/ p aYX\^^sZ_RVOQXIf:t)z)v4o7h8b7b8c8^0S(E!5++.,$"-553118HQQJFEJR^frxop(q9oJlYojtvtyp{r}w{z#--- 3@'N?[Zdnez`ZYXVRH;46>ENW!\#b*q;GLLR^lj`\XTG5+% )@Q$Y5^DcNl[ocgh[mVvUQI@<<4)#%)""&!)-' {$/;>?GRY[aq ~sbQJ N SNHEK$V+W1U;WE\K]SY]Vl^vfg_WV]`\WTPH>AKQQMKR[][\\[QOZdd^VZgmnkpy|w~svvreWTO?12792(1BP[\k~s_F/  l^\^a_VICoDeK]SJX1P D85 687 *  #( %0'?0I7E4<,7+748C7@04002-} zz}| uy  !'$ '&"*340*1;;8699,zbMC>>7%z~&E\ixupgP8&l L4(%.2":)F+N)O-Q9VK[`YxPKLNLGBGOPKIHHB89@DB=BUemu%$& -%69BLGTGQKN[Yrhmio|lhoxyqny~|"*;JQU^p|wyvw{ytjgibTJH}NkLW>E3=2?4C1:))"(. +" !-)%*5BBg:G91?C>$1',#25*&";%>5-! |fQ:m`Y\_XNGDGUfkdv^k_hfcuUA0*tjddd\M?99?INK{DvI|Wl~ojrxzuswti\TQF&18BB>?GRZ_\OEDH LQPF@#E,V3iB|OV]fw />>7332+#$,) )0,))*&02-*.7:uA}GNJA==>:/&)00-,3:=>BN[_[^lz}{u~ "/AVcdZPHEFD9$ !./,048725ALQSYdmot{nd_ZXSI;36::90"xm"c*Z,Q.C-1(&$ (1676,!"! *369%7/56;7E5L3O.PLEBGNPNJGHSdovzzvxyuw}zszin_eYf^gj_pXnWm_ofnhsebff_RJI?, %7?#?%CKTW S P PPJ<4483-+{,g,V'F<4 'r`TI<13>GL$O&S*Z7[ESRKeDsAu8q#sz yrmgdii_VW_ gpurjg g dc cYG 5,(   ,.3AVg x",5Hav}|}uqogZOQ^kty!'(.110..*",;|CuEmGaJTMDR7U/Y-Z+T)M'L#R]ejntydK7(~qe_ceb[wQoEi?\BFC3;)-(% %-8BDB?zDrJkFe8c)k y{trrw~{yg|TKHB7*"*-4 @%L8N>FO\eed n1>BFN\.mM~j~vxzgXXainog`ey %1?KSZdr}rj`.SAGJ9I(FD J\p|1=?CQamokeo\`TWMNIQFa<e*a^`ep"'+6D$V2l7|40.39=<63138;94.+.6?@:3.-+* & !'$ "+!9#E#I$F%B@D HH E?; ;=DMP$K*F/C'K]l x}|oe[RMA0" sbTzIv=m1Z(G7+)7AIQV TO"J$E"<".+12 .#   ) + * & "%/69;90*-.&(7FOUVRK?4 + " qlk^ PD$=,;2=:E@HDBF9E4A073(=EFGMUcuxnfZQQqSbVUWJYC^9i+w  "/BXpwbQ|@o3f*abgjjq {#.7EYk ")5@IPRMG%I(J+I/D4@;;>4>/B3N<[HeYiglsqsrsv zsoppokkq| %2?LV[xbjk`tY~K7|jZvSkQ^UOU=P&H=416:6.'#$)00v'dTIB7*"pb_`\SLHJScqx~qg`[RIEB;3-)# +43,(%#'2::9;>HU\^abbdiold\VVXYVTSV[er}   $+3:=>BGIFDGGC?;9861 -,,,$,).*1'4%8'>*D.M1W0`.i0u458=<2(###$" tg^VQNNT^ekx!.8=CLYj} "#!!#')-236<@CGMQU3^EhQqX{^gr~{vsuwsgYJ;0+# ,;L[emw~~{vbM:)}ndZL>5//27 = G P V [afd ZMB7+ %+/1/033/+#zto o&n.m4p<xK\lz{ocYN}D|9{1z)y&{&{(|''(.:IYclrwzuh[rLc<W)OE=6349AJQV]gvuj`YXZZUNE@<:9:72.057y6v1v+w+w.q2e;ZDUOUVS]MdBm3w#{zvts tvz||xur"r%o)i0`;UEMLIJIAK9M7M>LFJHHEH=G1B(<%2%($!   .?M SW)Z6`@lH{Q^kw !%(,*#*5;~A~KyXmh[uH8-$vme[ I3  vpqldnYnSkRbRYNRIMEJBH@B>6@+C#@:1+&  }mdaaenwz}usw~}|}|ukea`]XNC=99= BEG.G?CEC@ ? ? AJTXWRPS\flmpsx&05669?GPW_+h=tQcpwuhYNE=5",.!469< ??<95.$whYNC5*~wp h`XNC93.'  {qj`VNLKKPYbjr|th[J7 % #(.6>C CB)?<:Q7c5p6~73.+-1451-("  (068N_nvz} .:DMTZaffeda^\ZUOID@<82)#    ( 7 FT a k qtvupjd^WPID@|>q:i8`9X?RFMLEP>Q6Q/L-H+D'A ;4 ,$  $'''~'z%vtt x} z c(M3<>2H*O$V\bjt}#)(%(1~<|CzDzE{DCBEO\goxzj~Z{NyCw4u&ttt vy}}|zyz}~ywsrssu|}{wsj`TOORSSW_rievZPF@:40,)'y$oe^XU WXWVX\`a`^ \YWUVSMC$8)1-*4#9>FMQUWYXV!T)Q5LEEVAg:y7567;DNYcoz{xspqv&6ER[`}czfvfocfYZOMG@C5?';:<BFLRZ^`^t[gX_T[NVIOIIJFJAL9O.U%XX UTSRONMOPON~OvNqHm@k9j4l-o&tusq qpkd\QG;."  zwurpopqs&u1z=7* vqmkor w}!',0379;<=;98871)  $0=L\l{|ofbbb`^ZY^fox !&('* 0 40)!0@ NYbn &06<?BGP^ipv|#*-.-/340'z tnic[L=6478756<DP\hpu}|z{|xnbYRL~G<+~|zvrlcXPLyIlD`>Y6V2U0T0R2O3M5M6Q6U8X?XGQMGQ=R7U1X*[ _^ZTMD=5,$ vmjklm llmpv~   #1!=*D3H9J=GC>I3N-P*O#KE>72.)$ !',//,&  }'w)r*o-m-p(p pu~,8AFN\iops"x#z'y(z%$$#  $*29AHRW[l_WdGh<k0n%o!n&l-m2n8lBlRoarjspyz{rj_RE:0)$ rlllhedfjpyzrj`Z~XwUqOlHlBl;h5b-`$bf b\UQLGBAB=4*#   &*++*'!~tgWI>7-$ "#("3%?,I2Z5k2{/.06?IRWXZ^diic]WSOJD : : 852,"  %-38;?@>71+#    &,"3*91:86@3E5M7T7\6c1f)i!ox&3BRbn{  $*3!<+H:SG`PlZucjr}zspkayQrAj.fb^ []bgkpx{o_M=-&,.--/0/+&  }zt nha^]ZUPLFEGKNMMMNTZ`ejmqw~|ywwwvutqqu~|yvtsrmf`[UL@3(+3 <FOW`hnt y %-4889:>ACFLU[_ejkgc^]XRKD?90& }ytokknnqstssvyxtlcZUOID?6.-.001128@JU^eh~p~z}~~xpjgc_[XVY\`cda^`chjkmlnt}w|l|e{a{]|Z~TNGFGIJHD>=?AAA;533/(zqg_ZWUOC4% !!|rh`[WRLFBBEKNPOKHIHD=1$  !%+39@BB@?BGLRUZakw  */466345543/,+- .01348?FK Q W \aho w ~  }|pudnZiWh]hdijkqn~rx  !   "*048<?@CEFHLTY_fls| #.":&C%I$R#[!dls!y%&$#$&)+06;@ELUWVSRTVVUTQNJGIKKJLQV[ agoy}ysmgcb`][\\YWWWXXWX\^\YW}XvYo[ha_hRoBw3% uqnniaX{OyGy>z9{5{-y&s kda ^ ZTNKH D?=840*(*--+*)(&&$!zsmf^ SLGEDDFD@=>??<74332468:lLl\lklzkhhjmosz} $+4#:+=3@<FBIFLHNINJLMNPOSQYS^VaZb\b\g\l[rXuVxSyP~OOPPPMG>60+$ #())+w0k5\8K::<*<>ADJOQOPRTTRMG=2'znaZVPMJJLNMJGEDABEHIHGGFD?:89~8x;s?oDnFlFhEdF^IWKQLMNHPCS>U6X,_"flo quy~(:HU b*o0~2222469;;:;>BDEDB@?><<940..-*&"  !&)**)'$  +7CMRTWVRK?0ysnic^VLB;863-'$"  |rh_XW[b gmqtvxxwqh_[Y[ZWwUnTfU_XZ]TeLpFxDEGIKMOUZ^a`[TJB:. ytlfcba]XTRQRQMIC?=#?)C+D-D.F*L%U]hpv xwxwvri_VQKEDDDEKVgz"+4;?= 85530+$    %*179=BJS[dlt{}wrokgfdgkpxymbXNHC@ACDCDGIJKKKKLMORUX^gr{,7?IU]gnruwx{  #,6CQ`kv#(19EOXbjpv}!! |xwwvttussrnjfb_^`bb`bacfhjf`YRLC4!~rf[{StOlJfD^=T7I1>+3&&#   !$&%!zpwhqekcaeVcK_C\;]5b.h(q$v"z!{|!#&)2y;sDqKoSm]ihbr[}TRQOMF?:=DMU[agoz '3AIMMMOPOLG@6+! !%' )-"40=;BBBIAO@WCbEmIqLrMrOpSmYlbkoizd\TLHFA7*  &*05;@GHE{@k=_<U=PAKAH=E9B6B3F4N7U9[7b5f3j3m8rAxK~RY]enyvh[PJC<2&yrjc ZRLHDA>8458<AGPX`fijgaWMD9* {tpjd^ZXZ`hmq&w1;BHJKIJMOMHCA?x=j;`6X2P+E%8,"  "#!#*#5#?&D*B.<2745427-:$AMX_dhmrxzvmd[RJE<1' "#)'1-86=ACKEPHQHMFH@B7=16,,)( '$ !"&,258::=BC@??@CGLQW]`bfjkllpqu{zqnpsqlfcab`\TJ@;:<:3+'),.-*%|wtk\MA821136=HWiw !&,28;=>= >=<;!<':)6)1&-", , .259@HN&T0[6c=kGtTbs #0$=/F:MEUO_VgZn[tYwS}OKF@92+ umigip{  xlaXQHA??>9$1/+7%?JWagi e^ZWSMD8,#xojiea[WV[`fgecwdpgmilkjlfjeidgejgpjtksilhde^bZdYjVoPpFo:l.j'e$`![U ME>=?CFILS\fq~  &''(,+=-N*['b"fksy{y uojgda`^\[_gqx~!) 17:!8!41.+$ -;GNPONN"R.S7S?OGKNHRJTOUUTYQWMRGM>K7I/H'D>4,'$$#"#*/469>FOVXUNF@<5+ zm^N>- ~{}sxfl^`XSNDE5<&78= DKS[cn{ .7=DLU[[TH;0) $6GVaeeiq{zrlhffftfefPi;p+w }"(-11/-.21+"  !-8DQ`n| n_RI?5)"&(&#%*1:DKRX\_`\TLGEB>:4-&# !##")!. 4#<)D3LTcu~ru ")/7@IQW]`dhotz !/ %#'+/ 55=BG9P Zb io9uI};"'?P?%"1zEx[wfwPx-z!,89,%)8|Oy]zTz?y<wLvev{z|`NR^nweB+*18=3 ~z#r;jRiYpPvNp`f{eksqotyyoius[]ujjwhiawVkTsX~]XMUlgRoNfUWXX]`Wb<U)J3DIEYCg0k%\(M,T*m)*&#-91,7@E916<k@Q=K4W1_-^#WE0,8AA:,0:7+$# |$u h` ` ^P1<1-''#   * ) ! 3Ucgi$f'i%|+14r3V48A%O&S-P$N Yhkgfhf`TUZV&K4=/=&A"='3=,Y/_2O/;&,(#1,3>/A%(%/68; EQSRYgsupnx':4'|)z.<Tjv`pAr9s/n5hIdSe<^QHIMG<78;;89@A9n4g9kHzQMMmPbWhVtPNUWOGHT]XSS[a`dpy|lwezgoujH+"!%.' tfpx|nTK_lxxb[nreo{|vfI8BW[[O3#7Tfrulg|z $161-.7<9431,"! !% "0$K2S?VBXCHJWU~]`ep|~|{ANMHBDXovnf]^x     9!B9"+%%) .     *IE=DEUvtlidZQOQMA6s1y-&lG(!yx~|{~yzuVITc{nuurorOjA]HQTI^Gc@W:98$6'27*;$A&:/48 :B(O3Y0[aktv#u%}"  +10;6=G4X#di'r-( (/6FXYLC839GKH A :00.@:GAEI>Y<k2s2p8m5n&pme _ `]!SJ GLKB;:;;538<7.+28325>GLOXbc]UV[SMIJKA5/*#. $$0A@) u`QJB4)% '*""*/)',31,,040(m&o(|)"mTR\egeT@G^wulbTGB?6,$!    9EIJLPb~xksubSIObof\PA@II4 &:;."$45' !! %279?ISX[`ehfceikvhcg[j[qks{tzyi_bllZJC@0   &/+#(&!   )4+=0E'Qcqy%073-1E`z.<? @J]m#s&q$f'[+]/l2y38DQ[bl{wkbVF:1,'   '%    -50#zkc]WRLK{LjK_H[D[CQB:@$:7773. +*'"  ,(! $/=E?3)%(5A</%"~ }!xr{vo|aSI@{7|.)*+(''))('+/5:=DKMMvOhTgYm[q`yhwpjz[WZ`jqqo{ &/ 8 :<FP UY_ejkijls#uu{ +/10*&0=HS]chvzvvspmlm|oqmdkVnQrTuTvNvHyA{8w6v?vGyIHGEGSafggdcqzpid_WP}MtMjKdFiDtEvIqFl>j7h3j2z-& }   ~~!o)e.]/Y0[3V6C4/-"" w trnki igc&_7^>^8Z0R/I0F1D6A7<'40)    % - 8@BBFM"P0P1N0N8RCTMWW[\aSfBf6a/](]%]$XQKHD=6441)%(17=BKV^g#r1~514AP^ii\RRPJD9%}olomihd_{axk}ux{}z{o`J2" {phbWORQH<0%"))*/6>Ncr{ *:ELV_fkll&n1q@pMnOmNnRk\chZyWTPICAEJKOZcg!f-h;nGrGpDoLqUx_nz{x|  w fULE>6.*++7/?3D:D@AEGHZDiCoHzJIA70+" yeM3($|nbYUTQOPXfw|plold\TNOSQH=6338=91*~$z$y,{0+    #,8D KH+C5CAIRPbZn^zWJDFFJH>.&&*066+$%*1782 -.4(84=;?A4G'L M"K(G-I0L.L*F,A5?B@N=X6[/T-M-L)N#MH!>#-!    $$/< GP U]mx   ~wo!e"R?4( vomkc]Z\]YRMNOLGGID;410/% wiYLA94310y0o5c=RIBY;j8x5) */.(!  (7GV`c%b#c"g#j$h!cXJBBFIKJEBEJJG?2$        "0=B??BGKLNT]abix}}{eQ?5/%     %.21 0 . 1 : DD<2.-2762,)+3(@2J;KHF[BlCuF{NSTNHFLWdjiglw  &3649FT` e#d)_0`7k9v<AM[zetiwmswwvzuuu}rmihmtssuy}~~}vvxsj^UMC4{*z$   ypvhadUcQ]GW9T,U$T T#Q-R5X5^1_5`4d4h8l;k1hgfd]WVUNA2& m`VNFA:0)'(-6AFKS_kyytqqtvs{wyxy{+=KTTPNOPLG>0((%(0&=#DFIQ^kw #5HYckll}rv{su}wzpvkukzpvxvvwusswzxtnhc]YWWVYTXNPIIJFLEPLW[civnorrsx{od[RPWTOHC=;@F~Cw>oBgDaH[QV\T`QaKeCg<k8o5z/}'yuwz~ }wr'o/p2l0`.X.T1R2R/W-[(\ _e mt~~{}~wmhbXQI;'|obUJGGEDBBDE DC$E2DA?H5E.E+F'F!HORKC>= >'>,=.1/"38:;86641,*#),&2 /*,039=9/$'&'),.254;2?)DKO!R#S&T'Y!_ceikn nmmnmmklquwy|  &&) ''% ~|xtrqpleg`g_kZpNtBu:u7z=IRROLKNYdea]\Z_c]L8)"& qeaafgdZRT_q%,15 9;<<= @FI#G DBB#?+:16626/0,-)5)C,Q0^3h6q<zIXgr|!),++1;DIKIEFNU[aehnz w!q oprsvwx wwwvsnkiggc_ZTLFB?<!55.>)F&M&Q$Wgy x su{}tgWG==<6, ).+" rmkdR;(}xx{ 6GMTdz~sk\D(,43029@ BC=-$ $**)$   (6 DQX!b%t+29@HPYcozvcM8, '$!)131/"-.,:(C#JOQYgr{ }tnfWD/ "'-267888750(  xqlgc]XUOJC>;74.,.//..-+($"zqh_TI@70)%"yy !"#!!!! !"#"####!      !&,28= ? C HLOQSUY\]aegeb^[WPI@6*     %3:95$2*2065?;FCFK?Q9Z7c7l<s?x;~0$}pigfaXJAABBD@5'"!##   $ ,7CM W blu&|2;CHScv    ##)(+,,.(.#-&*2*8-;2=4<5:6?6K6X7`7e8l7n6q2|.,,*% xi]UME?8435;DNSX]gqy|~rcSG@{=x@qDhA\=N9A756*672$}sk`PC;6453,%!!&.6;:EFFFHMTYXRMJI}OuUnXhUdSbRbU`]]iZrZu^ubvfzghikkkxlphkakXkQhM^KUHMDI?G;H9H:E;A;?;@:G8O8X<\@^E`JdLlMtN|NP~QxRrOqJsEuBrAjB\DNFDG>I7L2Q,Y"`e i j n ruwz{xvvvxvqkhgfhlprrsv{~}~~{{{rha\XRKE;30231,((*-00+$       *:KXdoz}ti_XVW-Z>]N`]cigxls}%z,y5y>zI}QW\bjs~}umdZOC7-% #(*,06;@B?82///.*%   v}lvfp`lYjQiGh<h2g+d'c&c#glqsuvwyxvrlgdb bcefjnv| "( +*($# "%'%##$(,..,* )+03579>FOW`go!x&08?ELVcoztlfedba`djs|}qg_XOH>3)$   ~yspmkklmmosw|zodXMB6+|ume_YURQSV\adfjmmlkgebbcgmty}umf_YRJC;4+#!%''''%$"  %,/136873100.-++(#  &19AIORUVYZYVQQQOLIGECA@ACCDGKOOOMKHEDEHKMQV ^b)e7gAhKgTd]cfbnau^vZtUtQvQuOuLtJqJkLePcUc[ebfiimiohrhthxjxjvhucv\vVvUvUwRyMyHvAu7t/u)v#wy~ywvu uuw y'}.6>GO~Wz^xaybzdxhtmpqlujzkmmnprrv #(09@BA@=80)!'.17<=>??;866 556#2,,2*8'A%J%R)V.Z2[7\>ZEVLQVNbGi@p8x2~/,(# |voha\WQKF?7-&!   tcRA3' }|{{|}~yspnmmke]XSQNLE<50-*)$  &9L^o+5=?AGQ\bfgd c e ggdb\VW"['`,a1b5_:Z=VAXEWJUMPPKUC]?eBnIvO~TX[^binppoljjizfv`rZpVnVoZqcqnounyl|jigc^ZURPMJFDA@?=;9641011000{1v3s4s4t2w2v2o3i4h7e9b:b<d?aC\HZOYRYU[WZYXZTZPZOWNRLKICF<?6702)0 .-0 3 5 : A F L T W VQNL IEC?:41-+,,)%$!  }sgZQ#J-F5A<;?7C4I3R4[6b:i:k7i3h/j,l,n*m'i!`[\ b f j l j g ffe(b1[8Q=FB=G8M5T1\*c"gjmt | ~|~  (*&"ylaZYVNB7/)%" (5?EHIKORSPKC;4. ' !$*28;<>?E LTZ_!c)h0o4x5578;@EHKOSW]adfjpx%*-29>BA=;>DKQUVX^fpx|z{pye|ZOD:410/.++*)&"  &0<EKLFA?=;82) wog^XXZ[_cjq|yrhb\YWVQJC>;94|/x*u$sqnmptx|~|{zxuvw{ !'-036:=BCDEGILN/R=VFYQ_^dnk{rw||mc_]^\WRRT[dj l mot|yttw{}~}tj_YWWWSLD?>@A=72//11.*())./*# {slf`WNC:4.)$}|vka[XXXXVTUX_ju|vld\SG9/&  "&),06BEFGGGJMQQRTX]cgjifca`^ZTNKHFFFHHKOW_djmpty~!%{,t5k:c=^>Y;S;P@MHINFNFNGNGOFUD\Ba?b?b@_A^@b>h@%@.>6==>D?LATDZE`DeBl>q:x7~3.' zumcYRIA 81)&#/9BLTZ`dh l)o1r;tEuRvbwtz{|||{xwtqle\UNF@~:w5r/o*n)l(h)c+_,[.]2c6g:k<n?p@t?|<950+&|zywtrqrv {~|wsr!q!p!m hb\WTTTPH B A B D G F B<:76851./27;<840/-,+&}xt pmnpty~&.6=@?}<t6j3_1V/O+F(?#7 .(!%!!#"!!#$# #',3=IVak s{       xrnkga][]_bde d efhif_WOJE A = ; 7 4 4 7=@BCFJNOPONLOSX[\![$\(]/]7\AVIPTK_Dk?t@{AB?<99<?CEGGGKPSSTW]dmv*5BMX_ekpuz{toh_WPJB;4.)$ |zwrmiea[WTQLIEEECDEJPV]dm}uy|vrlgc]XSPLF@93-)"  "$'+18@DHLQVZ_ceeefgjnquz !)09EQ^ju~{xsokhhffffhlpu}|wrke`ZUOJFB@@CEJPV\djotw{|}|zwuqmheb^YSNIFEEFHJKMQTSQNLHDA?;854332/,*(%#!|ywy{ }zsjaYPG=6/)! }vog_WNE;2*" $(,013555420,'! %+3;BIOSVYZ\^_^\]]\[YWUSRRSU~U~TSSSTUUUVW[^chmsy{vrpnmlji jm p.t9xCzK{QzVyYzYyYxXtVpUmSkRiPhQdR`T[WUZN[I^D_?a;72-'!   ! &,27;<>>BFJMMNPU\bdfhilqsuuuvx|}unf^WOH>5-'"xod\UPJC=72/,*(&! }{{{{yutsv{~ywutrniebaa`^YSPPPQPL H#H'I-M3P9T=WBYF^LeNmPtQ|S~U~VWXY[]^`cdca^[UN#H/?:7C/I'K"LORUY\\ZY\]\YTMHC>8 0 ) #  "$#&(),,03292>0D0J.R/W1_6f:n?tBwF{INQSTUV{XxZs^qaockegddebfbgcgdfecf^jYoTrQyNIB;50-,+++,,058:;x=s@oAjBcC\BUAO@K>G>C@?@;?7;46212-4*6'7#8!:?EKQW]bf kpttsqoljfa\WQMLJHEBBCEEECA?><<:62.,)'#  #,4<DJOUZ\[YX{VqUgRaN[JUFNBG>A9;7846/7+9'<%@#G"Q!\fov}  !#%&(-00,($   %,1|4x5r5m3h/d+a'^!YUPKJGFFEDDFHKLNQTY^dilorw~{vtrpnl g b^\YYXVQ%N)K-G0E3E7C;??"70,($  " ' , 4 : @ D IPYclv  "&&$!xts u!y#}(/6;?DNXcksz %+..,**,)& "'*,.39@G H I LPSY^``^ ^bfhga[VOJB9&-1!:EP]ku}sg^VPIB<7421/-(}$v oe\SL C;0$xrpq}uvwpyjyb{[WSRU[ahq~yqid_]^`cglry ,9ENTX[^_]YRK D<4-"$*/3 8=BHOU[^acfj lid^ZWUUT R"P&O*R.W1^5a8b=c@fEiJoLxNPQQNJFCA??@BDGKO{PsPnPlPkQkRkTiTfSgSkSpSuSyTzSxQvPyN{L}K~I}G{ExAx>x;w9t8o4g/^*V&Q#K#B"7#,%"&(+06;>>?>$?+A/A3?9;=5D1M.V,\+^']"\ZXYVS PMJHFEA<72.,(# &+269;>><865432221-*))+,.00.+'$~"} |xsn!i#d(_,Y0S3M5H6D9E=F<J:M5O1S/Z*b%j s{ }~  +26;?CFFC=82/-)#"%(-37730,($    }vohc_[VSRTVWXY[[\_bdecaabbab{ewhtnqsl|hc`acefc_ZWUSPKC=963.( $).3;D NW]ad'i1l=mIkXgd_nWvSSSQPOMNRW[^_`behknpsw{$*.0249=ACDHNW`houz|wsplhd`[TLE>5-&ytpkfaadjnqrrssrp~nvjmee^][WYPVKQGJDCA<A7B4C0D,F&D CCEHK LLLMQ TVVWVV W"Z#]"c gjmsz   !&),.0/,+,.010/.... .014!9)A5F>JHNPRVXZ`_icohrlsnroqpptqyr~qolknqtsqmjjlo|pwntjqfobmcmdpetcwczb}dhmqrqmkjnpqrpnmmkg_VLD@<72.-.5=GOW]dmtyzwslgc]VOG?:852-' ~wqib][ZYXWVUSPNIC<60,'" tlmpppmdahnqqgVLMSWZRA44535403BVgrwwpomivd]VPLJJKMLNQU[_bcdgk{rtwq{p}rrjb_aht{zvw~ $,27<AJT\aejkmmlie`[VQK}B}9{0w*j'V&G&E%C$A&?*>/450<4A:F@KEREW>^;d?jElHmJoGsx:rDiN^KTBU>XCVKMIE?<:6=:>B7F-G+E1B-B L\floty *--7FPUV^hitdhg^o\tbqematZTNQ~\d^T~NyH{I{SpWgSfLfGcCXEOPR_W_VZPYPVUZWgRvLwLsMoMqJqG{KOO|KqJlNdMeEg=]:J891.$$#'($')* !  """-.% %!    %156;BGEBDIH@632*!x w~x kgjm mj^P MQUXZVP PYcimjddlu|    tnotpefZ[XWZWWSXGS8L4G5M3V,[(`-`5[8X:]CgNnVqTsQqSp[|aa`eig`agmhcekojc`^WMILOIBAFJG CDD@73$61:75;-<,<0>4F2O-S0R5Q7P4Q2Z8h=rGIMU\behu&.49AEEGMXadjqx{|{wmaXPMNLE<5/,,.) ~vttska\ZX]{ctatYuSqPkPjUlYlXgPbMbOfRdV[[S\TTSKNFCA<?<>;:4..$.5;!=&@,K)X$]$Z)X1[<]FZHRGNJNQKXC_:f8i<e:f2k+s+~.-)).20.3<@>?EOVXZ`b]UPQMD@@FGEEHHC< =.D6F;?@8K:W@aCgAhEcL_TaWfUmYqetmrisaz^`^UPORQFFOXXPKOPKDDDB4-0671-2:<;>EID@EMQNLT\`_^_]VOORQHA>=;89=<4,)+'  ~~zpf`_`b_XRQRX~_b^YX[`fgb[VTSSRH:/'!{rf^]^^^[TPRUWZ[[\bmw{|}|zwqnpuwwwvuy~}{{} #&0785340&  +4889??>><<:77:;83236v6q8l9h8i6m1o.n.k/j,h(i(p,u.s.r/t/w1z/' } z{yqd[SKHF@93.++.+%  !+6DQZ_bhox #-7{?wCsInRl^mgqrt|ux~  ',4?HMQUZ\^`dc]U O OOLHDDD@?>>:304;AFIMSW]gqyyq{ke]YVTQOKE@=:3,% zxvtqprroigjkhaZULC:63-$ "  $%" ~~ ,9BLU\`fihedgimrssx} { t m mmlmoml m rv#y-|5|>{GOVXZ]]XQMMIB<9763|2w4u6o5k3j6l=oEnIpLpPoUo[r]r]p_pbmbi^f[g\i^k[kVlQmLoIvC>;=@AADJNL~JzJvLvNzL{K{L{OyPuNoNpOoOlLfHaFZFUGTFUDRBMAG=A59,2%/)"    vi_ZXU QNMMP!V%Y(W-R3N:L=K>O?SCTCSAU=Y9b6n1{*%"# |xwy{vqpru!y&}-~1{0{/0331+)$ $+.145422/)# {vqlfhjgedgmppomje`^[UMHJ~PwVqYp\pbrirqqxnmouz}~z{yrfZPHB<:74128@EFEGLQRUXXWW[bea[VVZZ Y ZZZ&X.W1[3\9WALKDUC[E^E`DbDgBmBsAuCuKsXsawe}iq~ $),+'&*.1247:<@GNQNLNQRRRT}VrWfY[_NhDp>u<z;8431.,*$ yvtqmkhhhlswx~xxy~zz{yxzszlxgvau_t_r`n]o[rYtXtZq^pbrbw`x^v[xXzY{ZxXuSvOxLuJlMcP]SZRUQMPEQ?V:^3f)i#m"r!z"'-7CKLNSY][Y[\[WQQOJC><:710 //,)$()+1*<&G&P)W.^3c4j6q8z9830132135888:?DFHKSWXY\bffhknmfa_^ZTQQRQOPTXXUUZ\[UTVVRPOONJFIKLGCBB>;630)#!"" xrkfdca]YTONM|LzH|E}By>v=xAzBz@{=~;:9>BDDDDEHNOJE?:652+$ ~xusrrqpjcacdbb`^_cgmswy}zxxxtojecfjlllnqw~  ~ywvuw|  ysmjjnommkknsutsrsuy|}zwvy|}zyy}{xwwvuqh`[YXXWUU[eny #$#&.8AGMPS[dnv| %'''-23359?BACINOMNRUSNLPTTTYaghipx|}w}tzq|kd\S}M~KH~Bw;s3s*u#s n!l"ortuw} |yune]YUPICA?=951.(  ".;ABBFHEA>;2&     "!"&,29>CEIOUY[[XUWZZZZYWWY\^_^\]bf koqrsw$}),/37769;<:51.,'!%09@GQ^gns|{xwtp|iuanYkThRaQZNTJRHNHGI@O=X?`@d?h=j<l@p@w={<|<{=z:y5y0{00.(""# ~xph ` Y USMF>5-&$" }zywtkc`begjhd chm s$v*u1m8g=f?h@jBjEgE`DWBSBU=X7Y/Y*W&Q#PW_elqsu} ',149AILLKJHEA=<83.+++'" #%(+++/131/24677530,+,-*&%&((%" |rha\YXWXZZZZ\`a`^]____^`achnuz~}rhaXOGCAABFM R X_jv!$('%'+~1}9~>~A}BvErLoTl]kdfibk^lYqTyPPRSRRU[agjot|}umhhfc_YTPRVY\`dhox "'+.2{7t<nAiFiHhGcG_I[LXPURSRTRTRQROSLUHWGXGWFWAZ=^8b3f-f+h*i'k!npt wxwy}||}~}~}zvsqomga]ZXUQMJIIJKMPQUY]`ef~ixkunsqtqtqqomlmjqhwd~baa_]^``_]\\]\[YXUROMIC?<;>ABDHKPRUXZ[Z\__]VPJFB =98)635?6H8N<P<S9U8W9V<V=Q?J@CC>F:F9F:G<I;I:F:B=AAAFBMBQBSAXA_BfBoDxF~GFDCEIMMLLMNPQQRSUY^eilnruy|~}{yyxxxwtpnkjga\YVTSQPMLJJJJFA;752.+($#!  {zyuokgcba\VPJD?<70)# {qhc_]]\XVTUUWZYWW\`gmsvx~}}  %+{.w/w/y2y6x9w8u4s0u)x"}  #(('''&  }{z{{xtqoprsrpopsw{}~{zyz|  #(.6>ELPTZ`fmtz~ )06:AIQW\_`bceggfdcfkxnrpopkphofoepcq_t\tYqWnUmRnNpJoFkAf=`9\5Z1U,R'N"IEBBEHIHH J N RTUWWUSSTSQONOQQPONLKKKLIEA=;840,(&" !%())(('$!        #)-28=DIMMMMPRTUUUVZ]aba^\[YWTNHCA@>>>;:9:; >ADHL RW\adgjnpq!q%o(m*k-j1j6h;e=c=a=`>_@_B_D^E_F`EbFcHcJdNbOaNaKaJbJaLaLcKdJhImItJxN|Q~TTRRRSS~Q{NyKyKyMwPrRoUlVhWgViXiZe\_[\XWRULTFR@M8G/C%?<>@A?=<<=><83.*(&# zvqljihfc_^] ] ]^^^^^`bbba`][XURN J FDBABCFJNQVY^cgjmp"r%u&w'z)|*}*~)))++*))*,./00/.,+)(%#!!#%(*,.1358889;>ACDEEDB@<71+(%#! !"""! ~}zwussssty||wqmkkjij jijnp%u-y5|<BGNV\adedegiiihhimrw{~xsomihgilqvy~{wrnjfa]WQMI GD@"<+847=7E8J;M=N<M;L9J6I5F4B/?'==?D G KPV]fnxzuokgda\WRQRUX\_bgnu}}{{{{zwrlgfdb_ZVSSTSRPN~L|J{JzH{E~A=::<?@?=;:<<<97679<?@@??BEGHHIHIIHD@:5210,)$" "' + / 4 8;>?@AAA@=8530-+*'$$!%$&(),+/.31567=8B:G:M:R9X9^:e<l>q@vCzH|L}QU[^beh~knqr}r|syqvntkthseq`o\mXkSkOlKoHpEsCvByB}CGKOUY]abcb`^[WUTRRQQPPPOPRRRQPPMKGD@<9630,&!xoga[WTQMLKJKLLHE@=952-("{vrqpppqrsw{ }yvtspnmoqtvvvuvxyzz{{}~{{{|{yxvvwz{zxwwy|~|zz{}   zvtttsqnmqw|   } zxvtrnmnortuuwxyxxxvrnkheca^]]^_aegikoqtwy|   &+16;@CINTX\_bgnv~  #%'~(|*{+z-x-u,r+m+i*h*d,b,_.]2Y5U9S<R@OFKKDP>U:Y5^1b+e%ehi jkkkkihhhgfdbab`_]\ZWTPNLHFDBA?<:8764210/..,($  $-4;@BAACCB@;4.+*'''''*06;>BEINTXZZZYXXURMHCB@@@>;866530,)'&%#"  #).369=BF JMO!Q'S,V3Z<]D^K_Q^T]TZRXOTMPIKCF<A5</;+9(7'6'6(5*6.84;:?BBIDMEPFTGXIZK[L\N\P[RYSXUVVUXT[R^Q_NbMcKfHgGjElClAlAl@k?k?j@jAkClCmDnDqCtAw>y<y;z9z7{5z5{7{9z<x=v>u>s>s=r9o7k3f-b&^ ZVPI@80*$ xpic^[YUQMKJKLLK HECAA?#;*61472<1D3L6R9T=UAUHTORXN`IfDj?m9r4v/x,{,|*|)})~+.138=CGLPSVXYYXYXY[\[YXVSOMIHFECCDFECA=:740,)%"  "$#$##!! }{{|} !&.z5v=sDrKrQsVuYw]zcgknpty~~{yyzz{~{tmfa_][XUSSTWXVTQOPPOKE?:860*#"+29 >@CAA@ABCFHKNQV[_bcgjlpru}w}wxz{||{{|}}~}zz{{z}yvxmycyX{M}D~<61.,++,.11246:=@CFIJKMONMLKGC>84/)#        ! # &'()**, /"0"0#0$,$*$*&*(*,(0&3#8!;?ACEHIHG G"H#J%K'L+M.O3P8P?RDTIWNYSZX\\]^^_^^_]`[aZbYcXfWkVqTtTvUwUxVxWvYs\q_pclgfjbk`m_o_p\qYqXrYsYrZr\r^r`r`p`qapdretgxg{g|i~lnprttrqpokhc_ZVQMHB<5/*$   ytoi`XND<4-'!~}{yxx wusstspmjhgffiknquzxrnjgda]YUQPNMJGGHIMQUY\`djoqsttvwxzzz yz{}%'(),-.-,+|)y&w%u%r&o%j!hgghhhhh hjmpqrtwz~|zzzzzyxyxz|} $+28>BGLRY`hmrx~  |xvvuspmkklkkjg f dddb_\"X&U*S.S0P3K8G;C=?>;=8=3>,<#:73/ ,'%$!!$*/49=CIOSUWXYXWUSPMJHFDA?=9865543111.*%!  #).37=?BDEFFGGGGFEFFEDDDCBA?><964310/.,+*)('&%$'()) +-.//.,+ '#%&#+". 0 47 9 ;"9%7&9'<'='?(@+@-?/>/>-?-A-A-@->.?/A/A-A-B-C.E/F1I1N1T1X1[2]3`3d3g4h4i6j9h<d@bAaD`E`G]HZIYIZI[I[H[H\J\L[NYOXPYOXPTPOQLPKPKPJPIPIRHTDWAY>[=]<`8c3i1l1q/u-w*y&z"zxwsok f c _ Z V P K D < 4*!    zuoib\#Y*V/R4M8I=ECCIBOCRDTDTCVCWDYG[L\Q[U\W\\^b]j]q\xY|WTSSSUVWXYZ[[Z[\]^aegikmptwwxvutrolga]XTPMJHDCBA=:61-("      %-4;AHOUZ`eil~q}t~xz{}~}xsmid_\ZXWVUTTUTTROLIEA;60*$   "&),-/01223569=BEILNQSTVWY}Z|[|^}`~b~c}b}a|`}_~___^]^]]^__`adjnsvy{|zxurmg`[VRMID@;7521.,,++*+*)'''&%"    "'),.023#3&3)3+3,2-1-/+/+/*1*2)3(5)5+5,6-6-7-7-7.4/30210204/5/5/60716355576978:7>7D7L6S5[4b5i7p:u=z@EIMPUY~]}^z`w`sanakbhchehehdjblaoatax`|][ZZZ[]_a|bvdqfjifmbp^tXvSxOzK|I~HHH~I}I}I~K~K~M~K~JGDBA?=;730-*&  zrld_ZVRNIEC@<9740,}(y%t ronmmmoqr r rssuvwwutuuvvwvwx{}}|zwtpnljggfikoty~ytspomlklmnmnprty} ")/269;=?ABB@???@|?{=z<{;|:|:}9<==>ADFHHHFEDBA>:7432210/,+(%}"|yyvvuvvxz{|~#).2578<@FJOUZ`flrvxy|~ ~{xvuusrnljkkkkigffefda^[YWSPLIEA>:62-+))*)**+,.//,)'$ !   " $ ( +/47;<=>@@BCCDDEGIJJJJJLMLKJIHJLLLJHGFEC@;72.+'"    "'+/257898886555423577899;;:9988:<>AEGJOTXZ\]^^^ZWQLE ?83+%!%),/222 10/,*&%!$$$)$.&0'2)4,5-7297;>=C=G<K;P:T;W<Z;Y9X7W5S4P2O2O1O/K-I)H&H$G%F$D#B"A#?$<&:*9.915416-:*?+D+J*L)O(Q'R'R'S(T*R+O)K(G&D&B$A!>;99 779<<=>AEIKMNNPOOMJFA<950*$ "%)/379<@B}CzE{HzJzLzOzSzU{Xz[{]}_}c~hlpu{{wtpnllmnopqrrrsutsqomjgc^XSNKHEA=:741.)$     !%(,/39AIQX^ciotvvusssssrppprtuvvuxz~~zyxxwtpnjhfc_ZUROMKFA=96530,($"!   $+2:BGLQVZ^begijlmqrtwx{|{wrle`\XVRPNMMLLKJFC@>;8533355789;<?@A@???=:63/,*(''%##""!$&&')*)'&%&& &&'%$#$')*,/5:>BFI#K'M,P.S/X0Z1\4^8b<e?gAiAhCgFeKaO_R^S]T\UZXXZX^X`X_W^U]T]Q^O_M_L\KXJUITFTDSDRFOGLIJJILJNLPNVO[P`RfVi\mcpgsjukulsmooiqeq`o\lWjPjIlBn;o4o.m(m"mnpqqpqtvy{{|{zz{ |zwvvvwwvuuvy{}}xurpmkgb^]][YVSOMMLKJGECB@><831.-+'# |{xuqmhd```__^^_bdhknquz #&).4:>BEFKQVZ[ZXTSQNJD=9631-*%#$'*,.14:?CFGGGIKNQRQPRSTROJD>72+$       !&+/369<>>>?????<;976433459>CGMQV[afjloqstuuuuvvxyzywuspmkhda^\ZXTQNLKIGECBBBDDEDEEDA=82,&!   !#%%&$"! # )"/"3!8 ;=?@BDE G GFECEGFEC?=:852-(%&&&&&&*.26888799841,*'&%#!   %*02469;<=>>@BCCA@><;;;;<>ADIMPTVY[]__``a bddee h$j'l*o+p-r-r.r1p3n5k6f6a4\4Y4W5V4V1W.Y,Y)Y%Z"[\]][[]\\\[YWTRPNLJJKMNNN M L L"N$P&Q(S)T+U.W1Z5]8]<^?^B^B_B_B`@`<`8]3\-Z'Z ZXVT QMJGE@;62/-++*)+-/357:=ABCBA@=;840+'"  !#&+17=BGMQTWZ[\\\\\\~\~[[]`cgjmptw{~|wuroligffhiijigd`^ZVRONNOPPPQONNNJFB=:741.*)''%"    "$%%$#!   "$&(*-059>BFGJLOQRTTSSRRQOMKJKKLKLNPRSVWXY[]_abegjmpsuwz|}{ywuroliggfeb`]YVSPMJF|CxBu?q>n:j7h4h2i/k,m)n%q!uy~   "%(+/379<@DGJMOOPPQRQNLIHGFEEECCBCAA@ACFKOU\binu{~|zzzyxvvusrnkgdca^\XUQNKIGC=82.)%!!%). 3 9>AEHMQUVY[]_``` _!]$\'\*].^3]9]@[GZNWUUZS`QcNgJkGnFpErEtDvAx?z={;{9{7y5y3x0v/u.s-q-n+l)i'e&b&^'Z)W,T.R1R3S5V9W>ZB\G`JdMhQnUrXvZz\_bfhe]TKFFF}Ay:t5p3m0i-e%b_]ZYXXVVXZ[]__abdegiiijjkjihgedaa`^\\[[[[ZZ[\\]]^^]^_^\ZVSOLIHEA>;850,'# }   "'(%!%/675.'(/54/'%*)#        &!"1::7:?HSZRFA>@EE:-%#%*+    !'+)).3300475358::;?EIIJPSTRSY\\]bgiihkmmihiifdegecabb`]\^^[YYYVROOONJJLMKJKLIB<85/)$!      %'%"(3655.2@JKIE?>GQRRPNR]efc_YX]b`ZUQT^glkjikrxwpga`bd_VMC>@@:1' %'#      "#%( +++-144 57:;<>BFHLRX]_bgkmmlnnliijhdabccbceghhik)j/g/e0d8f>hGiPjRkLlGlGiGjGnGo@m3j*i)j*k,k0l0n'n!l&h-g3i8i9g1c-b/a6_7Z:V9T/R&O'L,K-P/T,W"Y\beimptsqoopomkkhfcdffcbbb_[XVRMIHHD?;:<;:;====?DEC?@?<61,&  #+,~)|,|1}8|AwGsDt<u9s8p7p:s>s9o2n3p7v=yFvMvK{DBDEJLHA?BADEA:8;>BEC;;?DHKICADHJLH@=ADED<3.//-)!      %'& & # )22 -% !'-149>ACDGIIGGLPRQRUXZ\^``_\^^\YVU|V}VXZ^ualbidhhmkrmnldk^j[hZf^dad^dUcPaPaTa[dbfbf\fYdYb[_b\gYhWdUaQdNkMsOzO{NvMsMtLuJxH{FyFqFkDiAi?l?n=m9g5d1f/l.t,~**+(# (1678=FQZ_abemv|~{y}}wqqu|vlfdhjgc_^ahoqomlow}}xuqquwung`\]^[TMIHKMJD=51241+%! #'(%   "%( , 04679;=>%@0B9D:F;G=KAPIVR]XcYjXqXwY{[}^_[TO}O}P}U{XwVtQqOpPnRnUnXnUmNmIlFmFqGsJsHtCtBuFwJxR{[a`_bhlrrlfb^ZXRG:52/.+" ~  ~|yxwtqonmkiikllllkiea\XRLHFC?<751.*(&"    $(++((-04873256663/,-/14521356651/26;>@@@BEFEC@:763-&  "(.368:>@BDGJKKKMOOMJIIGFFFFEFGJMOPRUXXXYXWVUVUTQNMKHDA>;865541/-..-,-.0247987677754321.,*& "%' , 1 7 = @ @??BDILKIKNTZ_``behkpponrx~{phda\WPHCBBBCB@@DJLNMIGHKMNMKGIMOOLF?==<64.(%')(&!  !&),/2589;?BDEHKMNO RUY[_djmq tx{z{zzxvqomkiijk mmos x#|&~)-11/,++-.+'%#""{#y%w"tqom!j%g(f&f$h"h!g!f$f&h$h!e d!c#a'_*]*]&_$b bbbd fhhijjiijigd`]\ZWSPMIEDDCA????>=;98543/*$  |xtpkhfdb_]]^ __^_acfj lopqty~~"$&'(+.1442336874.(%"!!             #&'%#   !%'((*+*((((&#! "#"#&'&&'+---0|3v5r5n7n:r>uAuEtHrNqRsUvWyZz_ycvesesfugwgwftdpdmdjcj_l[kZjXeWaT_Q^PaPcPbO`O_Q_SaReQiQiQgTdSbScRhSlTlSjQiPiPkOoOtNwNzQ|SQRTUVTRQOLIEED?<8764/,)($!  &*, + +/6?FJLMRY`eijjmt{xuqkd]UONONKLMPT[_accbcegfffeeilnmmkkkmkigc_]\ZUPKFB?<4,%   %(#**,1/82?6F9L>MCMIMMMOOQSRTURVPUOTOTNSORPQNOHOEPCOCPEPFSDX@]?a@fAmCtD{EC?>@CFGFEGKPTXYXWZ]aa`]ZYy[u\s\oZkWfQcNbM_L\K[G]C]<]9\9]:`;d;g:h8k5n6r7t5v1y+}# |xvtrolkkjihikkllmprqqrqomige`[WTRQNNNNLJIIHFC?>:3+$   "&((%',0221.-146762126774/,+.010,)')*)%   "%(++,++*))+,-../14444679;<?A@?@@@>;:9999;;;:<=?ABBCEGGGHGFEEEEDBB#B%A*@/<4977925./*-&+#*)(#      '+.0 4!:BGLLJKN SWZ[[[]chjjgcbdeeea\Z[^`_[YWX]adeda`bcb]WQKIGD?80+())&#"#%+26799:>BCA@?>>?@=:743442.*%!     "'+-01357:=@BEILOPRUWY []_ a*a4b;d=f>f>e=c=a@a@`=a7b/c+d(g'h%k orv z}  ")18=<;=AEJJ|Fz@w?v@tCtEtEs@s9s3r2r2s2t0s,r%qppppnll ji h geb ^[X U R N KHFEFHHIIKNQUWXXXWVTQMHC@>=;8410/-,($ ~{xvrolkiiijjjklnppqrtuvxz{}~~~|z wtsqp qpqux|~  (.353-))**)#  $ ) *('%!!'!+#/#4!6788741- ) $ "'+/259:<=>@BBCAA?>=<=>>@CHKOPRTUXYZZYXWVUTSQOOOOOONNNNMLLKJHHGFC@?>;843210002223689::;;:9753/,+)(%"!    "%(().26886325642/,,.258;<=@FJKLKJLQVY\\ZZ[_`_]YTSSSROKECBDDBA?==@AA>;869<<<;;;>BBA=95469752112541-+)*-//,++-0575211121,&     !$&)+-/14 7 9<?C G$J(K)M(N(O)O,O1O6O:O>N?NBOEPJROUSWV[W^WcWgYl[p^s`v_yZ|XWUTSQMJIJMNPNLLLKLK~H|A|<}:}8|7|6}3}.~)()*+,~*}'~&}%|&z$z#zxwur ojfda`^[YYXXYYZZYYZ[\\[[Z[[]^^]\ZZYVQMIE@:4-&    $(+.00134542/+)(%!   !$%%&&'(*+,-.0134566666654444545531/..-+))()*+, - ,-.02221 2#2$3$4!4433579 99888886520.-, + ( & #"!     $&)-169;::76431-(%#""!  #(,0148;>>><988877520.-+(&#   $ * /3446777664333443123556889:;<=>>?ADFGIKLLLMMOPQSX[ ^acfh"k'm.p5s:u>vAyB{C~DDEDB=941-'! ~{wspnkhedba``_^][ZWTPMJFCA??><;;:;9988865420-)%! ~~}~ "&)*+-.00/-*'&#   !$%'*,,---*)'&&$"  "#$%%')***)(&&%&&$$%&'''()(((((&%$$%''')*,/0333469::::::;;;:88788631/.,,--,,-/00/-,+***+**,-/124466787654320/-+)(''&$"   !"#$%'('$! "%).368:=AFIKKKMNNPPQPOOPRTVUVWYZ[[ZYXWVUTROKHFCA?=:8655432100.--,*'''&''&&&&& (****!+'-+.005292<2>2?3?3A3A4B3B1A1@1>2<3:3:58452321303/202102.3,5+8*<'A%F#KPUZaflquy|   }zuoid_WRKE?:7421013568<=?@BCEEEEDCBA><951-)%                  "$&)-02333221.+(& $""#""#%)-0468:<?@AAA@ ?"?#@#@"? ><==>><:9 8 7520,)(&&%$##$$&()*+,.010/-+)'%"    !$(+,,,,.0221001110.,*+++*('&'*,-. - , +*)&" !%(+/267999:999976645442122469<>ACFHIJJJJLLLNPSVY]aehlpsvxzz{zzywvuuuuvwxzz{|{zywvtrolifb]XQKE@=9531112356899:;;:73/,(%"     %(+/26:>@BBEGHJKJHGDCBA>;730-+)&#! !""""!"##$#"              !""""#$%$"!#&*-0359;<==>=>==;:766643200///..-/135799:;;;:87421.+($        "%()+.158;=@BEHJKLMORSTUUTTUUUUTRQRRPOMLLLMMNNOPSUVVUUTR PKFA;8"5&3)0--0)3'5&6%7$7"7!7 889999;<>ACCGIM P R U XY]_adegijkklmmllllmlmmnoppqrrrrststtsrponljhea^ZVSPLIGECBBABCCCDEEEEEEEDCB@><:8631.+($!   #&))*))*)('&%&&&%$#"!  "#%')+++*('%#       !#$'()****+,++*)))**)('((***((()(('&$$##" !""    !#%( +"/$2%5&7'8)8*:+:-:.:0928376675:4;2;.;)=$=!>>>=<;:8631/...--..//02 2233320-)& !        !#$$#""!!!   "$$%'' ) +-02569< @ DHLNPSUXZZ[\]]]^^^]^_abbdefhjlmmnoprsrrqqrrtttstuvxxxwvuutpnjfda^\YTQOMKHEB@?>==<<;;:;9875454320/-++(&#    !#&*,/1358;=>@ACEGIIJIIIHHFECA@?>==>>ADGIIKJJJJKJJJIJIIHFC@=;:7532100/....01210/.-,*(%"                     "$%&'()*))''%#"  !"$&(*,.002455654556788::<=?>?>=<<;;;:::::::9:98765421/.,*(%#!  #%(,16;@CEGIKNOONNNNNNNMLKMNOPPPRTVXZYYYZZZYW URQPNMI F#C$@'>(<*9,6.3/.3-8+:+=)@'D%I#L P SUXY[]^^^]\\\[YXVUSSTTT UUWY\^`bdfhjlkljigeb`^ZYWUSQNMKIIHFEDCCCCBBBCCDDEGGGGGGDB?<963/*&!         !#&'(*+-/11113579::::;;;998 7 7 7 7 8 8 : : = ? B D D F GG G G G F CA?>==<<<<;;;;:864220.., , +!*")"&"$" "!                      !##$%&%%%$"    "%&"($*&+),+,.+0'3#68:= ADGJMPSVY[]_`bcfhikmnpprrqpopponmmlkjjiihgijjkkjjjjkmnnooponligb_\ZWTRPONLJJIIIIJKLLLNNNOPPPONMKHD@;61,'"  !#$&)+,,.--,,,,,++,-./03579;>?@BDGHIIIHHFDB?<852.*'$!!!"#$%(*-03579<>?@@@@?=;851-*'#      !!!"#$##"! !""!""#$"!      "#$#$$'(*,-024667663321/.-,,+*'%"   !%*-2589;;<<<<<;:999:;<<=?@CEFHIJKLMNOPPRRTTUUTRQPNKJ G C@<:752/.,",%,(-+-..1.4.7-:/=/>.@.A-A,B,C+C+D*D)D'C%B$C#C#D"C!CCDEFGGFFFEFGHJ L NQSVXZ]^_bceeffeca_\[XURPNKHECA@>=;977777689;=>ABDEFFDB@<84/+%      !#&(*+ + , - . / / /..///00/01356777789::::<=?BCEHJLMNONKJHGDB@>==<<=====<;:752/+(%"       "'*-/02343 4 430.,*(%#!    # &")",$0%3'5(8);)<(>(?'@&B#C!DDDEEFEGHHIJJ J L K LMOPPQSVWY[]_abehklnooonmljhfca`^]\[[Z[\]^`acefghhhggeedc`^]YVROJFB>;8644321110000/.-,+)(%#     "%(,.0345666531/,)&$"!  !"#$%&(+--//00.-+)%"                                          !! !#'+-+'$#%%# ! "&'%#!"$#!  "#%&'&'((*,,-/1379<?ADFGGFEB@?=<:8678 9 :;<>ADGJMORTVXYX WTPL!I#C&?(:'6%4(3.12/5-7+7*7);*B*I*M(P&P%O$Q$U$X#Y#X#U$R&R*V.X1U4S6O8J9K9N:Q9R7R6Q4O3R1W/Z,Z(Y%V"RSWYYWT P P U WWU R O OSTSQ N JJNPOMLIJORQO L HFHI FB?;;==950+( &&!           ""! !  $''(*-...134457764220,)+++**+*(&''&!                   !$&)-123345323443 5 8 :989; < < ; ;; : 889;97788#5#2!1!0#-'++*/*/*,&,#,!/#1&3$2$/$-%,$/ 1!3"2#/!,.03!6!6#5&3(6(:&>&A'B(A%C FLRZ]_ag mrwxwuuwy{{xutwxyxurp pppnlh hjnprssux}}zyyyxwspmllkhd`[YWRLGA>===<9778::873111/+&"           !                             !"%'+./.+((%$"   "&),/379;=?BCBCFGHHIJIHGFFFDCDEFFFGG E D D D CDEILN P Q T U T S S TTSSSRP"M&K*I0G5E:B<B>D@DCCGDKENEODQBRAT@U?Y?\>\>]>]>]=_=`<b=b:b8b7c7d8e8h8j8j9j9k8m7o5q4q3o/n+m*l+m*n(o'l'k'i&i$i%i'i(h)e(d)c+a-a,`+^*Z)W%U"TTSQOM L KJJHEA?><9851 . ,*($             !"!                    !"#$&&(('()))''()+,-01 1 2 5 6 6667775554100!1"0#/&.&.'1(2(4)4*6,8-7.7-7-8.9/816355585:3<1@1E0J.N,R+V+Z,]+a)d)f*h+h+h)j(m&o$r!suvvx{}~~}}~      ~ |zyxwuro m m l l j g ecccb`\XUROMHC=851.)$    #&''(+--/03665577642/-)&#!   $(*+-/0-,)'%"         !#$%$#""##$#""$%'**)**,,,,*&#"     "#$&()))+,-,,.0247:> ? @C F J KKLNN M M M N N NMP SUVWZ]_`` a"b%a(^)\)\*[*Z-W0U4U7T:R<P?OCNHNNLSKVKXLYK\I`HbHcGdFbF`D_C^A_@`>`=_=]<];_9a9c9e:f:f<f=g?i@k@m?n@m@l@l>m=m;m;l9i7f5b5`4^4]4Z4W5R6P7O6O7O7O8N8M5K3J2L1L.L,K)I'G%E!CB@=:62 0 / . ,* ' # !        "$%'())*)(&&%$#! !"#$%%&$$$$#! !!!"##""###!!                                   #&")&+*.+2+6+;->0B3E6G8J6M5O6Q7R9Q<P<O;M:K:I;F=B>=?:@7>5>4?4A2C1E1F2F4G5I5L5P4R4U4V4W4Y5[3^2a0b/d/d/e/e/g/h/i0j0j1i0i/j.k+l)l(k&k%j"j jkjkjhghhgfea_]!\#\$Z#X"V SRRRRQP NLLNNLJFC@??=;963231/+(&%&'&%"     "#%&&%%%&&&%%#"!!!                        !!!    !#$%'(*++ - . / 1 3468;<>@BEHKMPS V!Y#Z%]'^'^(_*_,^0_4_7`9`;`<`>_?_A^A\AZ@W?V?T?R@P@N@M>L=L=K<K<K<L;M9M8O8P8R:T;U<U=U=T?RAQCODMEKGIHGIFJELEMDOBPBQAR@S?U@V?X@Y@Z?Y>X>W>V>S=Q<N;J9F8A5<4824/2+0(.%,$+!**+,--,,--. . -,+*)(&$!     !#$&'''&%#!   "$&(*,.02468889::::87420/-,*'$"!               !"#$&'!(")#+$+%,(.).*0+0-1.2023345677:8;8=9?<A?B?B@BACBADAE@E@F@E@FAF@G@HAIBHBGCGDGEHFHGHIGIGJEHEGFEHDIBJ?J=K:L9N6N5P3Q1P/O-O+O*O'P%P#N!N NNOPOONNNMNNNLLKKJIHGEEE D DECCBBA@>=<::76431.+(%"         ! " "!                             ! ! ! !          "!""$#$$#"#"!!     $),0245666 5 5 433210//. -"-#.$/&1&4'7(:)<)@(C'F%I$K$N"P"S"W!Y!\#]#^%_(`+_-_/^2\4[7W:S<P=M>J>F>C=@<><<;:99796;5;4=5=5?5B5D6F6G8I:I;J=J=K?J?IBHCFDEECEAC?D<C9B6A3@1?0=.;,9,9+8*6)5)3)2'0&/#-!+)%!              !#$%&&&&&&&%%$#"!           #$&()+-/1355788875430.+*(%#                            #&(*+-.01 2 3"3#4$4&5'6'7(7*8+8-9-:.;/<.=/=/>0=2=4;4:6987:5<3>1?/@-@,@*@*@*@)@)>*=)=*<)<)=)=(='>%?%A$C"F!HJKLKMMNMMLLLLLKI H G E DBA@?>>=<;:876431/,*(&$"         " $ & ' ( ) )*)(''&%$$$#"""" " !                    ""#"""""!!!!"""""#"#"!    !"###$%$$$ $ $$%%&%&!'"(#*#*$+$-$.#0"1 369;>ACEGIKKLJIIHFEECA?>=<:985432210 /!0#1%0&1'1(1)0*1*0*0*0)/).(,(+')&(&%$## ""!  !! !          "$()+,--.--... . . . 0 0122221/.-, * ) ' & $ # # "            !#%'(((''''&&%%$##""! !!!               !!#!&"("+","/!1 2!2!2!2!2 2 2!2!1"1#/$/%/%.$,%+$*$)"(!' '%%$##"""#$%&&')*+----../12345679:: 9 888887532110/.-,+,,,+*)**+,+,,+,++*('%$#!    !#$')*, , -!."/"0#0$2$3%4%4%3%4&5&5%5$5$4#3"3"3"2!1 0-+*('(''(*,/145789::9741 - * ($! ! !             !"$%&(***++,+**'%#""            ! !  "#%&'()+,- . -----,+)''&&%$#""#""# # $%'()))**+++ +* ***)('%$#"!                       !"##"    "%')*,..00012 3 4 4 5 5 5 7 8 9 9 : : ; ; < ; 9 8 7 543210/-...-,+)))('%#"                 !$(+-02232220/,)%"                      !""$%&'())*+++*))('&$$"          ! # $ %%$$"""!!     !!!###$%%%&&&()***,../00122220.-,+*)('&$$$#"!     !#$%%%& & ' '&&&%%%$$#" #"#$$'#)$+#,$.$/&1'3)4)5*4,4.404245464818190:.;.<.;.:,9+9+9(9(:'9&8%8$7#6"6!6!4 210..-,*)( ' '(('&&&%$$#!  ! !!""######"""!      !"$%&''(((((('&'&&%$$##"!!  !!!!!"!!!      !!! !      !!!!!"!                !"#$$##"  ! ! ""!!          !#%' (()****)(('&$#!  !#$%&&()+,,**)***++, . / 0 1 2 3 4 6 8 ; <=>??AABA@@AAA A A ? > < ; 9 8 5 3 1 / /-*(&$"!!             !""#$$$$&&&'&'''&&&#"!          !     "!$"&$($)#*!+ ++)('%#!   !!!   !!#$%%'')****++,,-,,+++,+**)**+++****++++++,+*(%#         ! %(**-///.!0"1!0.,++!)"& $$"!%(,,+*-035435!9"<#>%>'<'9&9';(=);&9%6%2%1#24430-+- - -,)''*+*'#! "$$" $'('%#%(*)'%$%()(%# "&'&$! "#!      !"#""! #$&)+,,--,*)))(&&&'&&%&%###$#""##"      "&&''&)-0/-+)*,,+)'&(-/01 0 0 2 5 64 1 - + * * ($                !!" !       !" #" ! !"           #(*)),/365211 2 3 3 . ) & &&'(% !#$%"!!      "$%'*++*+,---.//./010//01/////--.//.. 0 01010/.-///.../. . .-* ( & %$"                "$$%$%%%$$$$##%%$"!       "$%%%)-0//--/221/,,,-.,*(),/ 1 3 2 1 3589753247764323541,)&'&#   "##%%''()*+,,-----...--./0010101221///. , + )('%%$##!!!"""!!        !#%&(((((&'&%#""!     !#"&#*$-%0%1%/%/%0&0%1#1"/ +*)***'% $ ##$#! #&(**)'''&'&$"#$&))((()*++)'&&&&&$! !"!     !""##$$$$#"###"""! !!!!!#$$%%&''())('%%#!          !#$'('''(*+,,+,-/0100035676433 3 2 0 , ( & $$"                             #&"(#*","/!1!1 22210/.,)'%$#! !#$')+-,+,+, - .-,+++++**++,// / .,,++*(&%$$%%$"       #$%')*)****))(*+*+,-.-.-.-,+**('% % $ % #$$%%$$$%$#"!     "%'('&%%%$"   "##"""!    !  ! !!#&'(((*++,+*++,- . . . ./0123457:=@@BCDFGIHHGGGHHGDA?>=;841.,*'$!           !#%()+- . //. . , , + , , , ++,-,,,,,+,,-,,,,,,, , - - , --....///.-, + ) (%#!                       #&'())*+,,*'%%$$## !$$&%$$')*+*)(*+,--++,..-,)'%%#    !"$&'(+,.//02222221120/.-,,,+*)((&&%%$$$$$$##"""#""## # # # #"!  !!  !#%&''&')+++)'&()*('&%$$%#"        $'(*+ , . 0 1!0".".".#-$.$-#,$*#(#'#&"%"$"#" """" "!"!""!""#"%"("+"-#/#0#2$5#8$9#;#="<!:;;<<;8633 1 0/,(&%&&'%$###$%&#"""###" !    !!#$%%&&''((())(((&&%%$#####"!"!!! ! !!!"""!"!             ""#%%( ( ) ( ) ( ) ( (('&&%$$#!!   "####$&(**+*,/144 5 3 3 4 55430....-+)'&&&%#     !"""#$$%%&&''& & % %$###"""##$$!$#&%&$(%(#*"*"*","-!../001223332210.,)'$!     !""##$$%%%%%&''&% $#"               !!  "#"#&(*,-,,,,-,,)'&&%$$#      !#$%&'(*,./01222232110011//.-,,++((''&&%$$#### " ! !                        !#####""""!    !!!"#%()+-/0 2 46899::;;:988654221/.- ,+**)('%%$#"    !!"!! !!!!!!"#$&'()+,-//00002122455677788988888887765443310/..-,+++*)''%$"!                      !#$$%&')*)*++,,,,-,--------,,+*)(''&%#"!                          "##$$$$ $ $ # # " ! !      ! ! ! " ! ! ! " " ! !       !"##$&&&&%%$%$$##"""###"##"#"""!""#$$$%&'((()()****)(('&%$#!!               "#%%&%%&'&'&%$##"!            "##########$$%%%&&&&'()****+++*++*+++,,--./0122345656554422100/0/0011122100/.-,+))(&&%$#"!!           !"$%%$#"!"!"!  !"#$#$$%')*)))*+,,,+*))) ( & $ "!!!!   !"$&(*+,./0111223333334556666687877788888766544310000100//..-,+*(('&$#"!!!!            !!###$$###"""""""""##"""!"!!      ! ! ! " " " " " " !                  !"##"! !"%'()*++,+ + * ) (&%#!!               !"!!!!  !"$$%'''('('''&%%$##"    !"$%&'(()((''&'&&'&''&&&%&%$$#"          !" # $ % & ' ( ) * + , , - .//01111211111111122222112232221100/..-,*)&%#"!   !"#$ & & & ''())))(('&&$#"!  !!! " " # $ $ $$%%$##"!       !!$%'(),-/01233444444321/..,,,+*****))))()*****++,+--..//..-,+)(&$"                                                      !"#$%%%%%##!!!! !!!!!!""#$$$%%%&%%$$$##!                ! !!!!   !!""#$$$$$$$##"""""###$$%%&&''((((((((((''&&%$$#"!      ! # $ % ' ' ( ) * + , ,, + + , + + * ***))**))**))) ) ( ( & & %$##!           !""#$%&()++,+,+++)((&%%$"!                    !"#$&'()++,,-....--,, + ***)))*)**++++**))(('&%&$$$#"!                 !""#""#""!              !" # #!"!!! ! !    !""""! " !!!"#$$%%$$#!                            !!         !  !!"####$###"!                                        " % %&''&&%$#! !!"""####" !              ! " ###$$$$# # # # " #"##$$%&& & ' & &&%%%$###!    !"!!              !!!"" # # " "              ""   ""$'**,,.//012211332000/-++)(&&''&$$#"!!!!! !"##$$%%$%%&%$ # #"!  !  !"""""##!!!!              !                                 !"#""""#""###!!    !         !!!!!!                 "#$&()****+*+**))))**++,---.--,,** ( & & $$"!!!                         "#%&&''''&'&&%%&&%&%&&&&&&&%&&'&%$$""                                   !##$###$#""!! !!"""#####"!                                     !"#%''()*+,- - - - - -../..//..--,+))('&$#"!                                ""# # $ & & & & ' ' ' & % % $ # !                               !!!!"" # " " ! ! !"!! !!" # # $ $ # # #"!                           !"#$%%&&& & & % $ # # " ! !                      !"!""##"""#####"##"""########"#""""#####!!                                 !"#%&(()))(('('%$#"! !!!!!                                      !!"####$%&(())*+,---..-,,,+*)(''&%%$%&'''((()))*******('&%$#!                           !"####$$$##"""!!!"""#$$%%%%%%%%%%$$$"!                                                     ""##$%&'((()*++,,,,-.//00112333222221110110/.--,+**(''&&%$$%$%%''((())('&%$""                                        !!"#$$$$%$$$%%&''''(''''&&$$#!                            "#$%%'''('''''&&&&&'''(()*++,,..//0001000000//////.-..--,,,*))''&$#"""!                                                           !!!"#$%%&''&&&&&%$#"!                                                                      !!##%%&'(()(('''&&&&&&&'((((())()((((((('&&%$#"                                                                                                     !! !"!                                                                       !###""#$%$$$$$$$$""!""""! !!                                                                                                             ! !!!! !"""""""!!                                                                                                     ! "$%&%%%%%%%$#""#"""!! !!!                                                                                                              ! ! ! !! ! " ""!!!!!     !!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              workrave-1.10.50/frontend/common/share/sounds/subtle/daily-limit.wav0000644000175100001710000241405014221624107024407 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata nhps{h]SH<0'+!nF   _*_$D*-5N@Na@li`i1x=Zt2> !+ Sl n \ 2 b.+ac;Hq@_O][O]3z(5LNC#-AHIH>Mr_01};U1= YH%:Q'YxhsT/B >  b w  2 9?  Q5 xl a 2ndd[<( F 0 +s oZ %t K  ! W v'4R0gL5V!)) tKf>LGWoz=8 =_P&a@56&[QH%B0Y d*VrV[S@uZFX"KI|bC9U a m 5@YwN Bn MdXy  F/p 0>j\j-?gm$UhBv_w6?A)Tyjh=k}5i?%_J3,+)p)T;c'1Ic7Au ?yG&,X= W~&?\SGl98+m%fm+HD19"Qc<O ;#&+>==g?zc0}TVf(@A5Vz}LC1cye{v[7"C|#UWGJ"EilOZ3 3rt5Dnd=U?#10Uvx,~(N;X%',kuBQ1,0}T[^9YS4k v$8(?YV9z/T 9lrV9aU+#?E/>T)U}?*f4` pyS`MqX<_hfLN>)f{,ZxD98M#`+coF Kf!B O = e K : [ . A3 9rqGH4E2d:A_+\Z ) B &_c) r\]q ;C9R;xB$~8m&*{I`&ec\ ~?v%UFX()vO%eKQ EX E  Q . B'{\(F^4!j7nv%;`}[l{v\?P lnzTnl1{?}'6TWLy, )Pi%UH\0Ft9J}V5k.<Sql&bEW>4[Y8]BJ5 )TYF4FFF1d)JpmE zUq 9FFnvL<g Tjr6p x G) ;, O 8 r _-wBAnE=NPnWRh6xgl]hS1sw2`S=YsOMx9ts?J/LQ Xn _ c ;gkFC $ptZ/- b 8hzFPkv,n83P h ' ZccM/ &l HQ U; qj{ozx?IX'fCe_v5boV<N'8j@ C,d]`jDA\O% !6sc:{8y}5~ Sf ~ r iA LM 1  4,x= ZsWi.Q dZ$I + N j @   )NxNYM0`A6K$M3LmGj2()WpybrMR.^9%pBkrDkRq=3UN !k  kv  \" % 5 P1 >QlI'X )53-1H?J~S6dnq[e#)#uEg>w1oUG|K5 k|biw(J4%sOgul , B7K #sej#H/e!y@[W8X\1- (AQlAd0a~ Fmi&]w1m o 7sFCbS8ET 8}!E{;Gh%l=gB  3jky;1rx6.|{J.[c0C0  76T G e'#QpsQ o.s|(e"ta65 gOz  }9{ r:A]"}Mi$+|xS6K!{Ir?y w C9  *XCO+ (?i6Yy?8_I=c\&Gz SgRO?qB"I1~!+IC:eD:ai^gNp#Ho ?  , =H"4m!  a KrP/x~ lC }^<](v/ G <v& B] | e4^a Zh LB_ Tv  r'Ts.Eet`AlH sQ l (]T ^hs' MAEr^ yyY 3f @ J W m  A]uWz!B#jU]uXjnRi~?6^H% DX|K{F+*G+H~"W=-L =dU+,|X 5NMYzXrR m]Z4e\B"+v )E}{,1dfNe8IlRoIXo)M($o?  @1 c oF8%.Ot bL8z7u\<xe\Z =`k/k&jSF}QDCc}r=   :7;svWShRgc4vz=Q-I +Azsv;8C+p`?rIR0J R u 4'  (/ ] j .1p {  F WQ% {&e/6.RJi -p Lma&L9d=  VGp1c?[  :vRV!NU+` 0+'D+"H L \4TaXNX */L"J EA8n{c4_ow6@)t(36\_is  9 zPU 1  g >!0 |hwx ok .]gm(If+A<Na`=mG_ & QG,FBit_ | (AaF2cM/KNm Q'K _ # CC p;1S@  G'q{ ?MZaw j ]P ]  J wznM  h 'e @D 1 ?Q5o @ ?<a4ag8z 2p=% MO(.NKiq \prv0  J, z!>ODDw[+}k{XA_3Y=-HYtaPUW$6&X,%B$aB~FRuSdU 3!]~ 8  pew6w[m 6#A&#v@*Ee&QYV>,Vq'by-Dr h$ Z K 6 &ChaM&P*.)BcoP)6Vz96I>5=R[_ !&aI + p G p 4  BWGEv` zl7,ba+q}2KM&p; Gy c,S% e l C<,~B_0  :e9[a"7!jRjp i 3 )0 k M }2u3]&1'-Dub5(M(+ `ZYWvatDv5%E w e   P - B 8 yw v  w rER/)~F]TQR5A?C_>J&A!%S Qzud>8 e +S/KHzbPV/I%XuH? ^ qe/L enO/2@V1 @xqf  xN:n4I @6 H B 6#cR  D  WJn<@;w*@4 b[ = G}^:z$AzN Nv *3qIPT=\e$$z2dTp(u0Cp{!"Nj` |V%% KAvz:co"G3 j)Q~ %l(knlg]G4MjE B 1 7 pD6y~ET; 9+wtB2)6bA/kiyoc~=2OnU[6<J~/,K c #  9   ;*T< 9zG hy*`or"R_ PZ5z}7_  z $ /v yK uts o fwT8:)5#l/mXwbVKqKRK< (>g,.wK,xVQ $ 5%0PJ+H&3"ILGm aWmFX V : R r _ ]  I > 2Q 41Oq r#/&(A];[D4\CHi9:P&,(] sV BOZ 9 [ \s 0 = xg  0 Q7J_itMH3NH$4H}xC1 Ra 8[4O   *Um-e !2l[3fVqf oMq-puGUm. *Bog $^M W F :9 ? 5 ^ z{)%`>CdS],otZ8?-SW:@w{GWg| y,?RQ$q"PJ`(JGV;hgG_T/ S w4X!.(!c' )#-:+6{sP:D)QI<j#$Wb[ S*,3OS[5k ]: n; J  I -d z c;uJgq}/-)o[DP`C(9&{NHN~Id T bc  u xn\2SM <Q ArFau:2e6rb6FHQ[okOOj)'569-&1}y+*UXzVEU 3 (T w Ao  AE  ? ZA ! m -S g VWb?iYlZD9S"K([:~U0t~ /O'T13QI{ zs.FW*k+"' Z zP  fr * w v+ P!W?yq*/Dn(gsQbUu)QV>XDjw ;i U Wq kz$WFmvsbqXy@Pf hAUR]+f5|Ua L o  t K p u B y)V5bCT@M 4@%Th;v>%/BGI ` ;%V%&&`N94VE%L=WVWg(&oF(N?XFe]qe@)*@(\V-wieuS'B2vy o=SF$iv >:oT xN ) O `vAAsai]A9(+fc5T]BD+@B *dU za> = E#ISl,YnT~k{]< N5 g 6I 2 Zd U b 9z  - O$  v@Wz$[.;!_V4!$egzj" z2V5e JQ, ETSAp7  o  t ^ m U MiG Xv`f5 ^2)W^zR_2:R  %WO7]@CuK.{_E"  T.  ( J$zUPtm.pt EX2 ;IR# S%V`[a5"%X0N\YP" z bl$ | _ M  &< m !O+ TgJI\'QaG#  {w7*Fji{F05nGXC63n(Il Q{x7(#OB+ P%\KI|G[Jq Nh1: LlskgWZ0UcM | /9v$:I L; \ QawxSh3_ .94Cq{h~& kF9 #s)dQNWv+ W b( @ q 6  6 N ` + @ h "1 * 7yRi#H0GlT6`j&3u\4n7KOn%6Z+D>Y8.6 U $-}@ 3 9F7O`Lbf>i\( f9bii-(00.WBe@n);HB:@S.W%b7KJ ] O 7f H h - $CL >76) n7iX$yjX%7XCd0V sDu#1m{D5o[t;5  w- Q  \ H &  : \XK5&i =Up`6ZgS+cJa8O ;<9f1i' ; 2  D O * \ z:e -J:mdt/ W7 5?JRS33{q1W$k2(sv  R Q 6 6tkAA DA75}eXSm8,3%&[|RC4kxa$U8VfYZhqrY ~[U {{c91H0fvu~?Qo zu@]GPK B^KdW%TEZ |GlK}+b`I/7|LZjAb>V pJeKPIm!GSBs%05\5giZg:\3fAz)'Ps,3JV- * 6_ o + k< l{   u Y 1  P 0 /c`_2 [jw!3F|Ze[f6Qhue4twz ~ DzO" np1A>`@6f3Py( 2#wK:]zUI[#f`! Au_vWYH&NJh|AXE2 #H&hy+Y z n D x  \ 'DDTK$ L 3 H # gnV^~ vX*#T9brWRCs.\2E|7.muxR=1 U: ?  a  kk p / : V mr!~Hs9x*{YaGVxqK +GHoSCwg$<h = O T N_q;B<'0%?4[pP7FMvmId[Ua@5?yQ3k7G 0R 5 Y Jt 1btR-2~ Xqr &[y?T $LqMI|)ddr@[bA5h St& t5X|gt%c1NYr&PXcstH~~kD~Er>t?d~ah=)*1pVK2ha"iR]p"wvSo9\FG#yo9{=^hD \A_b>XyC,)L3g9a_ksN09 &  ,  w S   y q 3[ ?HY4%-6mo M2dDtj<T]K Y _W# ncA:F%{  +p> * ~#ymYLH{ |u1 C-Nb {pxdpY  XCje sgjuT9GwC!-k4 oK v + . c v 6 b 5  W 3 00t   z Q>|]mMm=Ea[M1&oT-<cWQD) q]">{e#).b.~ z H < 1 Z * /S v  xN   J b%WdJeF24\4gj-N&OUmFq>  g  (   yD7YI FS?aP6j0KvpTj:4>MdBUG{LcCYi H  :zW$Fv  Ru gtI ir8^n+k`+rqHdEgPw,H`}|+X<g}$Y5'ndPI^s+\6:2yU1r't\; RW)h9 A31'nwtA4!fufi4mjU$ G: H*bFIr(o_iO ^VGNi  ^ A `# F bc 2E%1U{66gT.{ul>=\;C)6~eh"6UE+N ?| )n,Fs2tj|{"k*k #*/#H@MIpC?q,=L Y=_v'SD {  z  L A z D b "sk gnUZ 5 z H U \b)S(4y-@WVXk6oXHQ'zUb'W\?/ x 6 S  ]9 Y E P 1R [P h{n % "i leL9rD_fv]l-K~*o&?G9o9Ho1  k  v Z$ c  .% am5,b%i},%Ol`g!8wxssO?i *>q |'64 r7{Q| Hl C GS M Z_ N3,;pZNV0uy R4>GxRu!fF.m|l<9fRRkHFO,- Wy^30-WpmPD1B|7T*M0^ 5IKI N lEcZ\[+yo H7&Xx8R`hQ&*#x/tGj E)H.`DFf\E43y#=~Xg~L:iaY#9-ZQL-d @=+qGRFh)m; s~mS: P I  R j5 RJE&]:J[guG0R?ey#eyS)Z}* XbC<V?y8Q i}[]}H_ bX__ *;< F+9YGb^`&JEG"4%w,2a!G83?.c:OV)u  K,i/ UJ"I?DF si | =0  &. H|jr /a6Zn6v;DoiD5h@v<g\{H0_ho`8s1]p=dnok`-px\g3;~-&QxO@6=&N%br7y2D yC' xJ ]5 ;4 l [ a 8 v Z w  n  %HbmA?:N B q_ B OT G~/<j6  +;d;euf-sng ODSM{Qol>N@{j Y ( 8 ~, u^ Uw J z T ` e d 8p2RX|I0KB= +=9?PqD V W @  9)   N m q ' (Zf5'wQjcH7BlGmCHSva WC!g\.0 q ! > U p }+%Eq|H^;q)n[,0K\\!+dX&(FVP37i2LnU(-tIm~)L2/q,UiHvQC@2%PC!SBvx}Ckntn1Q yg3vF 8x0R!<.DT}{jA]G](E/l"Mj av_ 'tyBnKe | [GT8#,j0ZDfn` T\?q=  b =x ? {  y(#_ j)3MtRYIFt!xI'st,B8Ha "M.c4' " c S " S h Za a Y J ?> u Ku #~ ] J0  U K b _ `R Qx Ha]e7DE64]&43Cs]"x 1`ES1f'S$|| W)wd Y mZ  l % % QL ' 3 ( ,w&Q=((/b fn`?v O      / d  `- { yJev -bjOOLv<=(Ix  7n6 0n a q K+ 9c 'r&uv"3 p2QMz- :eeCO77!'}=%35l,HY-_G}iw~3\s)Otz2t3`Hd>_Xh0 4$_]ZIWSw :a 9q/!rfvHEvr^fC1iJaNdl!_?ujCDTnzrH[|[}M3ks#xPEa/{ki[kiGblr(Y>2JHw?p C_E`b&v8kh9Ut+ /w4I6;j(   @q x w 3 8VaBOELbI~Jh6NjU Z;~KmEM]C*^.].NQi`.O, l% Ma 0A B PR I f / S O %    L A 6 l i  ;)x4b[*zRv~azhHRF!+;ZVDIUyo[`4;lu{rDU  X7 k h s D8 ? a7  d ! DbV|} <?@ |my!~I4+ F|hae     $r } 3  \ e  P ,XiG+h}  =5"?Fp Do b" 1 kX D = _j}x_E\7*d4'yQ[UDC$=E&u[\+QFww8C!CH^8 )86eQBli >8 /f ZVO"d3&7+`Dw].#!CG'PQ3!$~95#j9-,BH`A(">f{4b_/ikoso4j)_Pv,!`-dDlHF'c3o2h+ph  A M+ ^g !b6S3/^B* y_ u)!IQtb= 4V.[P)trr8G]RQ_(y[}F.Kbu eN8,:;p]_OBLq0[T" !LnK=9Cl") <{ )sO&#3_71f zI,6L _4):{'3gA]$P3,MM6/_[3lr< >A$,a"yGjq|M2* s7cHzS/QBwZ5^(nA >3NX ;{ Upl  ?L03 dG(9n  NYYK%J0} =K fZt,R9 x W 1 o  m e: ! M i0 # k X  \ g : #  z  ZUGe M?XT q x ' f[KG3~ (|uRlvMaImQn>^ q  v  z < M9 '   : 6s'A(6L6NZXm [/5 r$lHT : b 2      U  Q  k~$b(QHW*QP(f}PHbTXiR!5-ZdNH)$IH mVFU u t ,)flbZ=y55kf-E@7l1#3!1>D^wE?4 #ag|bwSw-BpSH.v s9EA@F;Lzi2YPh{Q %Iu\NC]N$E4PsSvx\:X3[WG;M#$ J2_rtovD4yx<0(hWaZtV 9t5@}A''l{dbr KDGSpb:qKSzVh;Jm$*wcEn{@Jm^\hVd"3(IZ[s-5C%axE?(i3tNA <!=m>$p<We!<P~~d}2YZa19(;b,7Tp / G u O i8 h ? O U:  / E  h "   Q (  h7Nlz+g(w cm6`DqR b '.<^UgE) %LubMM ? z ny ^ / Z x l Z- Z '9g{Nh ^0}$Kk2^3`  ' 5 5  p  Q q # th,=nEQ=]2 wc_O0[-k" X~'B'2W S46nfJ M l [8k$Q_IEe0fwhRzj>KgXRb=}vp2WtKmMD , `Pet[@IB3xzxW3B}wq\J.XhWp$@qVEal_\in@S '6QvMF7f:^2[P^ZcEDZidrnU|`-U9wEWC- rVn,ww/,>$3}=C[qPL$<,)  es*ys[<F/!R3IwK"V>{By'Z_vK E `M C 4@ M 6 . H S 2 Y  " 8 L  D 3 6 % ;   UD 9n;swE%HGS(B%Ip%yT8>T(8z.y#;L3-) b rd?  r_ Q` e i Y M  y 8 -$ H1^(-_YpJGa (91xuKu} 4  4   \ 1  -   n33 etttq= +xc mK' Z4 K~6mZ0"X|+p4+Wj AQK_>/7#__ +/>9YNSb?;wDZF=<(.k \z&XBu&\ Aj?"eY 1N/~i<C#d]D$I>8tVl2XWkN7Nw?kd5[uf8n4?4I?vfyeGg7b5tK*Mc6"vhiv\TnRo >7q4 gxLUW<IrP7"-1 O?O\ m9rWH+CPO)911_|@.d0KC{]ZoHEyGr!% P@PUi  @4ht{Xc%`"zmR  lI22ci(LI&?w n'6 LvHM_Am 0 O   " F( & uR T V 0Y Z & ? O  / -y )N '} u  :" Cu B e E! V 5X .fQ9*q=YVu~S#4u8t7-_d;aSU n nY X  ,| S #>  ^ o A jQ,jmBylsm|{o KkHGL aH ) Z  6 -X 0 t ^ g : ?0)E/n|uW8,M<>/rw[>{V6T4<u%fOJ*#/W_]yk9bjRJ!-C+99sEEL]?eq1 #j6jl,SSBa~bnp!b=T31 Z.x lrz,u'xb)icD*}Y;#+{y]g~-NQx7bdwP/WUL?RDAjmO{'0.n/)m+ :btT4Bh!@ow7amayj +,uSr+V+X% lw OED=~rq/k Z)b?%{sdo3+:n_/O<t<3 KY^*tGT+/Vl/K B @5  r  h !a s , H [Q e# I> &n 9 id % [ )] & C: n m [ ? i & K-m9!uP"8>RAJu6jjk bxze%k_%hHeFf-n/t^;YlC31x M S  | N l J%   gw  @ &n9_{j0 VIiiy1<} x["#MN   a | [ ~5 P  } =F)B&lODEH96;6>buJRT+$&!HHOx+ll|LIeC4 T1&A^zojG;sCI6Z0=lbP&,{DPy\&j&2w\n3)M #mj_*j7 p08YN uv &n}EkN;P9 fBy4 oBZ/OA@dN"O/~iJu>T~P*'!9t /7E}x't4YGc4-#<]]= O6TPzd? 153Nb`T^1K   r ?  v   P  U @ 2 2 `Ue&%nfsc0o\8rvYR=Vy}dna@ZP A   " } % d _Z z / >nY{xo^P: AlyG`]>uVCF^L*ly3 J'Y_?A zJ* Gkv[ {TIQ >Ko!?SV0r*)XW"&khI1_w.  { H  r i d quKosf+(:VFgu`9}  s #e   b  & U i  t2 > ( 8  wi   46ti\<  ; H ] o   0  B PG6rx&c.WCq)<4V/)|j4oXwI8\C< wx]7Jkmo*Lg+S ]6(Yf=V&:&6lMjt A7pG4 .,#xqq)'&% EJDf_TE{'Fp;xKyX+G ryf,vtGE}z?A2S[HL3cu*q;[1 M jU[L })<$Aw_FQ'tX9-I(lm5Jl:$!\N)>Z&fD& )$ U 33VjS8OO%; \u7i<wJQe"M=iVaP  Th miH^5?KlJ\I \ L u &  D4dBnUFnxZ)JH:pE~ KH{!~S,nYUF NdMz5{ FW8({p>m^`8A Q6bQHO ? sl`(4yJ/83@b69~/@D-Ak or^"$"-+CrA2xy8C.Z/f2c "&q/];^+8 y06O2{bT  M~} u /   & w p  <*?VR$We&L{ k`8wUF & l I0 .4( h6bk2,K$#ucJxb7Mi{sh/ $QUl+ 4:|T {&I%Va@.Z*7mGfClF ~  | h!N=-2P{ug ( A |c :5*w{C d7|<onR#W#MU)\L?W#nATG|c#y0 NM[P m u & ^Y<rn*MT8>ItyY cs+H v kibLpP*A2O b@|VQzKbTvqwG'< 1#HeRtruK_i-ibn!f 3*to&oAS_rIe p l<fGy~HNPvS"z  tH-nnz ?<Z~ET T| 3  ^ ? i de   % nPx{clj (k[vyi72xVi9VYF?$>G } #*_4z+!HET}KuV~[_S&{ Z-YWOrDM_*/x]`K*  { ; + i  < q ([ C  X} M  R   F 38 *| A|iuB_&#)!+RQPIW`f6  /rB a s+N n < > } ](UnpQs/?tf)\wHwuN-juVWu;zRM$uKK[BKkNc]U% nn-JM2M_3$,l8El\yA:"._s>I5MN:c& #>.^dZl*WDicUl yvKm|P`P+}zvLp89*)~ yNJ,4%7v4 t)@)TaEx<On { R  it  ;  ` <   '8  u e BQ W ) *']  8K6v> v  OAS d A-#h &|`Q& Od& `LDi c  K  2FS^ 4u!  A C   N #X  = J0G p|   &m J  0 :  b    e0'3ICDA@ ! g L ( 3 V 7  - St<l p3 $ V   ' ;Q u cd [s 1IH  PYd /  S8X B = g ~k j| F  c >;T5 y  @~ 5`}6kwvF; )M:T>doUJr=cb{X9P<*l {CQ6keF jF0:RIm#4Bv}h"a&@@MC C g T W #f  dwhe kn\(&mZ}{U2Ti]R,S w t @K c! w  )l  5 : F  2c R . D*D!W?MYB&n/3Q ># `}"QzeBy@S 6(12Pq qq({1q4/Pp^tuL:seT+< B#] ; L &   ? , < )z>A i n  C q l;  mv ~ @X/ F ^J-[iz'_  G q =  z1 OB _tP+"e=1NK4b3#fM `M ]m  1 x@\[G < f k v?p(H }R  % _B{oh=. j w SK ;  P\A  )  ) r &c8M48e%c yh  ' @ "7i6 W^ p . Y q[v/5lAzu~-n<@?yM   W n  @ l ~ K t / 'del"I~')mDDaRt 3  B > .l N L%pF[k    q 4vL:DI5i""Nt 6 P   F n. C + t E l C({@L:%qxiBeG.55G'S{s`6+qK#gKPR07?P7Jk?/g_Y=< -XD Cq}d$Dy!Hs] }%7j{[ J3vklwP&I=Egxd7BEb.$Cb0Z~:`3hF3>^U@V}5|h7#?NsY7+CXob4N[U00/^*2.Fzy_L^q1wlEmV_:'lcIKT&FtL(F8Ey_;Ki`V.S?93nuwc} ; ~IP TS1x9A zPmRokK@&wKoze/4Cn&Q[9Q(,]#gk!@d 2<.8` $[861aDAIV#h+2.4 _wV%"-4 E >.D5 nC > m) { _ X I\5v #R(}^ T | Wo   U )TpWC4GS ZA8m   Q  Fb @ z\ t y   t r  A2   r q j    p @  K  j z  = ; RT% & l   6  : t  e h     i \  P d g p  f % bcuMH: BV|/rCYK@lX9:|< C ?(!* / `! ' D) B Kt GD] H Z} 'R y D V  n [ t 6 kS7=6(t/ZP.D_]CrhX$jdj sW5) IzMH*4KvFMiU,.HHN' :64f0;2t/f";$m!+QCP)..mk^b5=#,m\C<e=M]^A9l989Xb,bJ>jf>:]H!"#1l!NTvl_g l,JRS1NAE*Bn CP\ <{;_}]E2w8FzFm IzwZ gid<@vNC9@A6jmt8TVV& -zaX~l?x 5 !4 z| ^ ik*nc|]$w `4abJRBq>m  03oLu o5\;kHiH}9I $/tN 'V@G b%U#s~3i}8@uBR8Z X-tzLJ Z' tljY  '^IWvJEWu&,j.Ei e" ( |    3 \ v  C  M Q3l/~]4\b#tTh& VIc* -fC {  v q&j%I  9_n!P  + p  6 |5  +lo& v;]W 9B n i>yV0D  eB yhi   h ?U H  > 4  az  r Nyt   TTa  y % Ha({Zz`?|,dB^ 0   0    [26V1'|6 cPm os iO  w v ( d DD = U * s y2  .k+G ~   H  H 5 1h t yH  v , D ~ y m _ Z@!<}WZRY\'@YxE"N  $Sl.c8( 2VQ(DdjUvbn) \~$( OR  N>Gz9_s/]\ |mUQeGGc Ag8>wl\U-2E2H|K_@>juA$ >ucgl'lGLdzGM5{80sWOQ_\u'V"FdouwZ/&p?jey}[$IWwB Quy  E*w6a AdM1$b)   e  ^| StVv\xc WD}G]-A)ZL_Jo cp Z E N*   2 H p    m ( qVR< z7  XdW||4LxYPqa  R *   h K  ^1?3\#sJ{V O=QG k5yrz'48pfhI7<mCGr@s4Y!#_`|mz/xW 40 z\eJ'AE7 PyGS2=92kf _;-<G*8&mP zNqIX%;gn9bfx45 ?24Iu H aXv+FPpr4 @ Vc0] 6 Y hG z | w ( /t |> i * 9 hWbUCp,zZ U LLWH Mxy,lUZO"(F0;uAVCF+yPI>NjFuq Y[e`b rOe];mf y "  " ~ T i   E S Q  )<  ] om d 5o K: xea  $w ] _ Fq DV 1 s ; [ 6 P 1d3 u 1  8 `e K omx  H  p [ D 7 4 U %   W fB , Z , j #  1/t"nx>N9j +z.[+13i0)*y  ~5qL6b# m*^ ?cGK4zVo&8:S-=uA(O;$bG D Y   O5CACytna,7vo - Aj r_ -9 m K! Q (]V  (F :%:lReQ<|B"Rv:eX$cXmXLdn?x8U&q d6D*6rCdtIO:pPc7%lxU5*X)4~ho!)JdrChaR8ja*>z5Wv (L| Ye[X|0F+/c 0-C?8N}VT0= (* + Z3 J : q~`?FAIz 4   ( # k ~  5Sh(04;$zx PLKblC;7V^/E$@UY{h}r Q/ um[ApZMg Le n0  $R 2 ?  H  H Ku \/ Y \zj  = 6}  '  f 2 oY<   =| Pr@-p6hb;({Cx\ s O W ZQ < S ; HEMk~  > (Q a  ( / v s 3    y< o tC.ZM[SmF< T0}Rgwt'-|J TM < 8 z =   ;  (^f ,+ p !  r   Cz ; 4 k .  q I  2 ^  < t  ,b; L\ o@  R5q - v 6 g?   B  9Z u | "    f %  ^ 1 B z    E {  MY )Y4Nn/[/N I"Yuw| 'N\Q[O8^KO k ^ZRXD-4U8C3;1}J=hcde/jnrFx]M-x Nvj%R  9j < -  5 - 6 ; J z |",vGVVZ_]"^f<>GV!q<]V>adV'EQuA9a 1<Ag}Kc*w 5r'?t:* ,0R3Db3F0HNSRs"' 8 X]jtX,`4We ?:HO7spDp$mxoR4`,aXR'ns}hAslcH.j)+pwjsbrfk,5S0->No#m4 fr";R! %%=mDR!MI\ *[wEHJINUP4k*yEMl(]%i;N2|hpU`\kPMz1]/YDm$ iB}"&8Y:O,4*,N ^Rg'?FD)P&pa+zBCO ~i?k(9++ ,6.IR;m`zt.xB YF7#I'|} U G' wiN: \ ^ i 3 <CG_\809Z}!CTkH1XH D|O:?5W,,2J +v9;J<+VR k$g-(3-Mb[i(d/~QX1I!OYu MU Ab|I:+bDgV?BF\ v * ]t   (K H y  <2;}An-LyU ; e T  f . G L1YzkA8 #       \  D: 4 .   E K  F ? 9 @ s s Q (|    l p PVk:]gW+Z}F@% Pe  e Q 3 x V P\   .} a   f ` 9  W }    N ( xk,  Hs&QrNBm1 Ezwa;8LY^W#Ad e)y@BN P3t[)KS6O'+eWkBtJv+QZEE ^U1>C{.3UHi;cV~/4-=yvEW=cl`#th]A,lyd"=7iG;m3g[76=#D/ S`:snGQzeh=XRE:A_D{z|{|QZ. Goz89#fv.D?8Az)EPdjd\u;BE5r8 ECn\@ 87*)u%vDTY:[xU!@|-AD;+%y7A3G&Nx7!{b>7`BNO^]RhS2{>9O9Ibp#rNeev^vc,\>,(&&6DH~ o j Y a5d?Y`8(XUBGl3j7vxd\c/r_YEINbN9|!|:7JLzA// #ZCQ]hZ49Eh-e3qINZX}={ &-63zEG`i?O^'\\F>_Q"94b|YYn'. luIK apbne7    9 ^;  2  ;  ) # l : m } ) $ 5 C / 2 m # & G    kRpA | & > H iD Ia/l3%EZ5X~>1(deqk>qy[3w`VfO0Ue^x0F[ S  c   X#"w?E"o{W- tZ w   m '*2a{@^M,F]rn(xUmKr %_   m   <n \~  / |  &    ` a  w   *v  H k $ 3  |y ac C U   v /D :    /$  o/  & | V  ak (&U>]ng|[!$ eYxa*l)<Uu@\xp$,P;J/z# ;2GRww%Q(\[d\>Zh\0g+?T0z>|IE7:[ !Q9E&$.uA+9Po+m3%|n_jkbEsY$,T6qoI^?6>m[#H4N{_u u6dy E* }1Y2 p  W   0 O   . w x m* i gV  )   Ad%F\l2tAaT  G l%T p  [|  }  qd U T qt"n1F}Bm^ { 73 6 j } / e> ~"cqTCf\oxiAC!VX y fM _a/~ XM@+P60 B[:!SPC g 5jCI?FCfRKZe40NGH'fV \ygCP8a%  KT jWh81M@G;s%OO^kgrv}?"u(= Kwg!K*?1V5 (XyyHc# -5R0K5rB]|ixIcM4C2U=$6&A"%rsObA&7p7^}C-7:GHlmFY_=9%p2FKg=vf;K\tgPUYbrvei6@_?aEa{uJ[X{FB \J!kWV=EqK]bgNtNm|3W=5 A_e-6]n'3f6*$'}_M`C#~@jVd7(^Z9p\:q9:-U+, #u~GcoUG75" :|Za3x!a+A \'    ~ ?jja$sDQbeOGGQiy,R)Utq "jdUjy#; s*!X ' \ ]  " J z ; 4   : E = . @ O  1   > x] Y b ? ? -F mK O b `}   ; , aX  \   u w T "k   Z9 W @ v L P? J S ?  M  w a Q 4m /v 7 }  Hjj<vXUZ]+NVd2 {.&cm3~ n 7  U v V @e n  q R +    C  W a h Y   G  X B s R F  i K  )b u -   a x% = Y > u 3 j  V  c\   K fxX6 wZR3'gg.o2 TvIA~+pp$ r.z*i, &^R5"q3v~`j}6 mq)n wFl+<{{-EK7 p<%u#;CNN)1#1'?0+ FM- ROuk`"pK!Km8AJ?>mP{~''w\a\ O &djZXGbaA _6uCo%Rsqvi16|2i#3KX@ /Ind 7; #(dJ[ f 8irv|O ",}?!M 0 oN[~qfrp=; q { Sj zK S I,j!V20N`f enb%&'hX& + :> 4C K : c rxsaJ_-! M  4 ]  4 4GX4rL   h  >K X L{epei/n5H#f0+?P-Q8bU=zH52cL.~Tn23$mJTDK2S?SFo,cSFw]B!iSft,{1 9Ka=%*P{.M|d H977 hZ 9*nn7%6?s=4A d e  i 7 ? D  ; F I 6 U S  s Y t   D ;j0sUHO~>&xHv|q[k'hU1g   ,.^e!3F/{V"w+* ~ _ X6F]3Jl_&.K]efT6=t}dpi(n +[@rE1!T* Pp`cFGOO<MI;yv;:zg|9Tq>p7mUg@OC{)*dI"I53D&5crj\4/t<$:.W]\]E8k:x3 .8[ i +LrW&h  ^ Y# T  B  u # X  kgiL\Q@?1yuPS K.+O^#SxRR/A%q@/`!;~>k ~|.d_U/I)*rv  @  8 X   N W sr'9v+nTXxd$& @:7 O0Q?T93maq |B*5#(:h]DtOAO){.+vGy!UV 1)U{0 `/X+h+V(Ni_*dvzD[h-U$7+;E'HQ6{! }hx(.Nuhyk)_G( RBNdM#4 (3 tf  v bW ph s 4   M j ' u ~W Z - !YOP "~ 5c  q$S\[,K# T &a1<F *-Qw JE 4 gH G 8  MF $s tm ^ Q p { \ $f UR J ^ Y5 axa= i 1 ] ]  ~n7zDeZ 3'Jg ^ 02 , e( O :\   2 1IGqFl>@cL s { m W U ^ \ J    ~ 6 u c M S j z Ma w|     / L^ B| @ F i ' T  %nZ@OVU|L/t>Q(t*_l|.3~DL"[z;K crQm9!;H5Kaf+J_ /Es ]}^Tp= na2UvcN,W=4A70d;QXYxgBV9*^'t*nw, jVm$  $   " ! 1u ,]7O`s ^vKIPV8u}NT;i2zN}^,yL>!nZF`sr|.blVc\ ~ :bi@=rPB#1plvjD&WCb +d]#@Fq,?bf2coc^OJI2GEJav.u m#n?ZEK""qUYazB/0U\) + h9DB u(jWUC|`CW8'{X;SZ@]rs;%J-//YsWWYn"s]5ag@> aT.'0'0>0n.\<7"['L~4tIe%&-)ap2 [L\ g=o  , f    l 4;  + w  N 1 k 8 =  { }l   @  D2 I l   ? / ?[ , $f~_s`Qt_z  R %  AZU>>j _8Ca*Tby2VdBu3P01@97] ; l 2 b G V ,  O 2W =(0v1" o 6 6 a  J ) m h 3 u~  | y ,l ~ m =   f9  2g 4  ]  U{ BEtlE/ \ Cu    !   G  J 8tX4Ct++4|-o M   a 7 U r BA c /40F!kd< ,]t,S-7H>*;Erc^(j3m0Z^C-{L@3wmA`}0^2"u"}U%C@$]iOe Np&cQqv(Y :_?E.gBd-[tLp t!Cs335<? 0IZ aC/%`3(UD&=XLLp_@Ftt8a Np !V OG r9 e0 f  6  p2s^ V7794@..SM}]  C  = * 3 {  a 8Cbh m hX`3&0hAH}  z[_X+ :_FWUrUR6g-k>'8,R{r*D -F M z { Fg 8 X goEC].kaP^qYOt :apVh&b#P~R[xS1ADCEuB9eo#_%{f_ 4?J@>!< ]x.rt i\`m6Cg1 x@k*NB" !=5Th.jU}7xM%dp%q_N"1&:d&Wr8E~ + H  E cK9z~N(9#4M5GwVuG^Jn 6O_2lPb \  K  # A sJtPx m+_oYYwg}ub;{xuR|3o 4n~Thnj  x H i     9 J Q B / 9  g i p4   e M    r7 FT 1 _  O  _ClUZSyAQg# -s>fE}z ThgznS&'hf+<4M ! T y y6 YODDNXJJ:,w]fF Z 6S  M^  "MC?VQ*i0eXy]\&gX^frFl/Wtll:,ZnIt6/J -H9nk {  p g n j D.Yo Y v 2l y bTnG$ 5vy8 \&$RUE@d3s)l ._=g7~3VT<caR?Ne~<QSo6^K,,3jFm!V E =dSAG giyBfgAhZf})xzSOoW :nU-s;eMpF.VM D5K40jiOfx)OG653y\s{|Z\P: |boZF7"c1$IܸۥPb)_qNݖ޿<7YyO#f,'^ [aUh6vj:qh{i60O+|g27}cSW0O+l*r:!eS(5f~Yw]9"md@_u = P 4DK@3&p/~cp]_/n  v9 [ f ) | > 3 K Y&  E !D uJdg>o N 5 V@    f;;)+^xhUy!q$~~lF;G)1KbVDO$e,A-h k.uN4]tY?js1J+YXG+LH<_ j t r w& ]5U  o" >z l F < `\ z t  / `  /-/ld#F O    2  O |  u   "C g a : OP  U  4\  ##9    n   %h h S^vH;)]d+qvbn<)tJ+l4nv*'O5apRK^=0{g|Z<(]I`Z=L";_Brd\~[ZxF4?Y(,[K#.9>} .EHV}F[0#1.}>Q!_q)W>CC*gWha4/q%^Ev v%Y 1 n , 8 u 6 ^ Z R!t/~V#*NOn A " xh k( P9  { 0K]SFw jD3.Z`BM)?9I>--|i$ELy^Db$O2=3SG6{.26 *,~'0MY``Pe5m8 l0z[U a&z @sndW#22r"\al>Xjt ]hX7S8UCpx78,/[?)$ s 5$kQCsP=Kg]t(% =}1LOGHyiEdwXSvq52;Ok&F0+aSivLSjB ?h(Bw fA*v;1O9 ۪١!C~]|ޙs~;`i?$a `FC#OKD<L^ ssR|4abLFf ?edV3Z%jkgsC.P#<3E)~e'I r F [ n f e f S ~ ~M60s ~ -* 4 s % ; D E B l> 7m*iR=Ur6]^_ihTWnGtA3?J]1rdS8-{ :.1vkL .l 7 5P ]R  "4`]  u~iF z T!Q_R$3rl{ D --2f<< .(sA\  W }   M P CZ ;~ 2 7 X ) M   r E 5 \ & F  " l ,   m6siKT]>\Sy5:sz- E  Z D  1$ :M   f`j1y @~ @ * T ju Ou ) Y' y Vh: Q,G#  w Rr w / v D^FR,    i  $ }  i 8 } g > Z K  x N CB ( | 61r_  vX -TY/ q c  N/ !H =   F e  8 $DC% q Y " q C w'5) ' : Z p 'S{ p b YihX@:RywyAq 8 }? % + H#  } < x   FB]:a<JIvMd ;hO l J: } & #$,= e;zK*^v  .1  I . V ( ( W"   0Q%e v) / }= ;  L- fr ! #  ' JK~b n N Y ` X   R t_ [^2(9_:&L9- 4%%D_( J{DST$(_{qu*'PX5J ,)w#\k  ; [! _V % .B@  e7 s rX G  ~4Tc@ 5vH C~ TOaV9HXa|g zxi# &  Qt wW $b6 ] E$q    VZDXu1 du O { 5c? Z    r _ e4>E mwL y )n X ! i  3 i Ay 1 Sr9l+F7/E3JKk Q9 .  i A 2 CB:p k  bS U    B 2 -wF8"Tc] B  /&    ) \  S { M G 3  )   8 ;jAi[=Lq%hy;=AQH.DGR:1S,[*xIz6BH-YAT%"HyvCb,^tKA,>}Xa +Wf*I3D{q,STv)(3 K<'Cjr %r!p m(etP-W:lWTB~"&4~[]goozf?%so P1"Z^ .1k R  4 E ]* Mz  d u h &:`=%R7&,jLW#\R UxLd4[[SI=D?Ond[TY;^$6c[s@ V q )O@}/j7w6m>YW~A= XRal%^.  iu-     [U   . w " P > o }  C + > ~ 4 f >  'xam"@ u 8   D ;c~4   XK^!- ,3_  L P }w#O8J|3g9V>d{+Bd8 .(qX_A W7U:P{=HkL /$`m:'N>*~EOZ 8__jQc}a  V [9"v<l?( > + c    a" Agc<C?i 8U j  t    s  SF   a x 8  *  i tQ3 W ^P     WGX  u h0 .  -       TV 2I$z#DoI0qU2*D*`T." Zv)hz*f}Rr6g tO+FE4_ 4o.~%B_2.,b_eQa#R p$}e6tno< e4=QW oxs6J S. | E   d ^#0-`r&B](  ) x  Q db   x % * = 9Oio.E[9.S> GF GZ_'kt\WOs -  08 7b > { qu !  GV%e F iPjIy m7l | 7.T ^ `!  1 J&^J{?h` ^Jl&.}jbJ_+> B  Pn -3Xz{ X ( $ Be As -)O]P|O4 S<$-qx@ i1h*?1]s.[ a =)=1 I/2Z( {. u C \ a  G "  S   } a  V9cty & G xKo~3H U p:_l!VGLOA 1D\DS+i,+VQ(j{d|SWkIUgm*:aCa~")QJ%PO LU8pas}\$A=_PW6&8 (+hR)^u68[ 1@>(C%n_*vPHp):I&@S u XxuS  v . X  fcQ[MVi$4u\n5c, kzhb - I9 ( 0 [ 6&# <  chWDv}a-4? 6 E   n<4F@B  h u NDh  ] b H o  Y6Om2#O9nrG2x n- 9! "^ 5$F q%u&($(Rb' %7 [" y! '! z04TY76,E')oS(u+#zQ_}Qz>_*^} /Z<'92Gjh'Aff!X@bOEagK> +p& + c ` n>!DCVe<*x7:5YIUIGrgZ} d 02 g hr ($ (:1[R*vmDB a&a", ) I `U$ "|%7[W l.     g " }V^     <  jI MtVx=K#n>dX%|2~em Wpo:?u {-_  G n1[Pz5:Y~9:3+:0 wV>kcp4;t)cu[y_ @5Xkx(2_p/V&S>Nl2XjD1~JB[RDS4 $>5 H>^{r'/,_gX,ABRpL%pm !C xwW`* Eo>5={p&WNL 6x}2i&:n\|#;h$^o44dT|0Z*+@> !q [_-_+sxoPoNSlH]>}s. P U6 &\w;L=.<~nD(`:C1HH=opv[" C % '  kK6r-htqbNdzIqWm T 6  \Y ) E  + u a   8 P f ~ 1   M . ?  W  ]U=O~G; $ ~ F s i [!8 q6n g?3@v$[Q4#1s3s  V p } H    ' {| h tkN\)Kvj-1p 3 -M 9e%$ Z  5 k [z i  co :   *z(3U V  d8x  RY  ^L   ( 0-;j V g D &  E^2`( WRm 7ZgZKy: UrNn^V3O&`mau78$~q[-`cGivh/qS 3P> yO%6lU I  XW  !W,I;o, W  -9 `  E0 ) _a  9 B s , 1 x g P 4  Z 2h ''u  + fP r i 3G ]  ?. s 8 y INSXX)h@{|u>f#c>kQjL P f\&$Uuo}-F/l mJg}Kcy6NY.;\w0BJR3df$g)~P xw"%w)i:5M+ mYU7 ED  K zN <   s S OdN}H|6 8auSmZg"!c\*dK, es6Gr*p#5 Uh d>"ZqHzg&BE !'~A#5@z63?+O>:O; U/_$ o=sqQ$ ) J!YG:HU$?Krc] b ,9crr c+cj $;FiR u\ C; A Z ) " 5U 4 * m < U 9  /1fw> ;L  U  L- 4z9M@pFt5ijWXOy[gq, RFqv)] HJh(:/#j'.jnn@Gc l7G C "N7r&?ILm's.-$ Q u>lo@sWwNDV|F R b B   0 " F 4  n  C&    Q@%|W69~KY  h @ vg 6  l E C 4  f a y $(svfM!z2DGwhb>K r\U=FU/KuP5 4{&I{1nO-t eY e !?1 *5q3T?40r,Z7 &(PDTYg2V\?QU) UW*{2PUkMB51^n L4$[P& )aKz"zMNn) t 8p_H $  !T1 s  x J N j7{| g  lR  ;+]. \  {$ V14 hFz$zDPcg/I{'`DO}7a#{m j9Q (gbP385iAb6_ X/ J `  H K M u . % # w . yPU@ D # yA Cs X YH+$I"G U Y}@Vkp$XbWM/o_ 2U LM|BS>eHJ|AZ7]P>h][Tkiw\t$L'R5u%%6c1&FWur8%(>b^KuyA3a5yYVWsQq4wad nFn<6_azR.V:)q8_phje} ! : _ g 3 h 4 jdvTtpT s 6 'J'    `  B D E =X{j*     s , [m   |  @J t   | E t8 6 r%   o A 5 0VQC2 \*O h F x 1 j  (   J  6 \ ] _   E c   c k JYG  vj)2vH !i~^G$w4]~]L19z1|`u$+0*uW%"yK?~.8;.Z JH A o=96nU]3Ft!)gD~ ^F (GKaPc"B3.H^:X?h?{}a 1wMRozVO:v2$</t Lvqw%HLBwhI1   , A  _ l M6~9h1K4sbu>$ ^+g3LC",'+N h! <,)A:s8<(t+glKwwfYD0MLnc5vMI"\Y! ^ xp#X09O^'=|r=_^Aq_ 3 # n e ;  s I~ 6 qCo EG u>7.^N D\@18WmP'c5 Q Z,  p1E 'Y%,#t/T$lO7 \l{<9(":6J(*[d<2#_LKq0rFNwPX~9!q'/Imt{FRj&p3V?t&q) WG45*zr  u Xu  5Dm?IQG*8ZUb/X_g:T0<e} xd=&cB*  Q '   _4  M  2]3ccfb} D-/})f-gg\Z~|`1S:0k )n~!JP 4<0wJS"6JaNym96\=~" [TS,;wfc5qG>SbCdC~AmxQEaeJC+1V6O$^aK9:\6 XI5p79 9~HJ9K841XG] Cn#c#'i=O qD,CvT%6q ym#a)nS]Br4D'MPS*@Uw]%BwHpnfP$YltLuB,A .Ji-t? U u}(!1tIAKf\v_gRa{9JkUOTnw.-il,  K b 4 tSf;V*BNu2x?Z-  N #0Dl$ ,q'8u@*v])8z) vo ) 0 0`rJJx8o fv'j{g @  $  K z ~ 0f"Tnhz}O^gv* $)   ]oYj*^JU9'/<+D4zF.R)" -= f 9 R ~ 1N w^ 3 *I uOeAOvTrJ8B_Hb[[s@,?vPGm~5=[;Euit"H$8Sz4e1^oImk+kOgVHu% : bO ) / r )]Mr}obw}gm[HcDpwKb-9T?@vrx-@nF }%\w2c|$[Q:<R}MiPss3=oc=Bc~_>` #L43/JW8m5}cU +}_nz  q 7 C  >TI2wcW:Z[$N| Y R    [i=y}^qzN U]J@&N cvBSKzs}^o f )KSl@Hqu A !P:|53ILOVZ}7z   % & b g  X GtIvvoZJ3nQ1)sYsx0,bw &6An=9XI}?LJF9Ff7' #(cmHCH L  u Wz |= ^ 6b zR z s < =E ^m jL  / uNqAlFWht,$<c@jp.i{x~uZ#h,_q~YJC8\m``u X> 02{nb-nc )~$u1PFP7([^=YCU9ZAD  Ulo8DsrQ "KR C^}`sE.['XidF_6G:J])G7f[+!1T@4cr) K,6CfNM6v)y&IzM<~fO8J P<5vE}#m-@Sn2;DVLy-n)"BiJ-bDC18u:  1 ^ r u A FQ t PE g l nF *?;Ae]y]gmq+s$MgN/f)vH=0U'|izA\;9<+8+WO,j Kj}u.=g { P l S  2   ^16)#^ $isyAHI&b80 8 -" T 1 O s.|#.VkKk *Z1ODKK  $X AEflq aw`l0bb &~t  x  aufiuDM29RP3cTfd*0 # ?  qvg=|/ > .L&u*K)v@e ws*3a>Fh7=%0quCb-F )lud,X%t#m C>|*u"[1oqZ`?}} ^c.hLM+pip|:ijk 9,=4e]2Hor? kmX<\Na- ;r9QslAjz&D\ n\(D"T=Z[ Fua$Wr03 @5& oEY /]9f3'E5L)F& 2Q_Tfg;l ZM713$<%F4T @I  5  L M   ,   {T 'R g/ !1q%s2?o V ?33O35gd(=3KH\\A VSw(5Ke} '_Mw| H}]} z.\V0-D"k:gy r 1?I]3\wq:hU)&6 G[{}JNTuF}Vk+"J.oTk/HEPpBnQ} 2G*nh";$RDAr!  \ I ' U $`/  !F@^Q S M/ 4 -i 9zv&V/   6 8 6 * > @  c & * $ $_ c [ & y   r k 'uN'@w ^w  -  0 U =24m %Z _ 1W;Z\~A  6hj   , 5} G" _  \  PM  \     =  *p ( . :- Q y   j H <M  5 ` E  /'   S n - -94   O- 3,eq"P:3HH`'?j  R  p  ~$ r  O MF*v<!t~  } R^   m [P j  $ o 7  N  '  WoCRZxl9  1 e [ ( ZU%=g wl1W9i:";@j0'U^Fy80-EF@A`?w8!n'dR_/F`YD| VQ}h)lxnr"+BS|G,2Jrc}'Gdtq)\x:1*$wd"(0{Rq:nA5f%g! D C B> JZb',)' !`#;=-) J .3 Q+ s  a(` :j\81n-*o L6h z Jm t ] L "v #W_t.(2/7JWyq ]*2bsiTwI=3-wiA2'}'l=R5e$]A[A -.Gt-lNk}][%SI`q Pzv><~0YrB63\.VsK7<>u-5y1Z$+}X"#*CG*Sa"gOVCj"H1#kK. Y6/hW:=u8ub#D2x55?)6/Pc=Fa#JcaH c.   l k O c  & 9 z ?= V ~ $  04 < D `d ` s` sU )r  n ; s / 9O ~| ) _ t } +G ) l -. % % Ty C k , NP  OF v  "@ NX q    8W\w>  M < 9  f 3  ) qO&f'mxA,l L O j  [ V ' f P \ 29    ( K x3 4 |7Ue!O"=Mc^W:.- \/ Z   +   t1    }2  =    ]z s^+#)%bxsc>f'{RBW9^G 5 Z0WWq6%h|uiM3!Aea@|IQb/B#B|J+!l+-j3$t2f67/x E2UHFvY@r Y*09txr (w ~.+2(qouUdid_c,SdrUR[4">L.WBr}v="FY47eDXk]''UW&de3M(]9"L kzR'61{#ndoX*J`R|aait_?g6xzrojnx,g+rGB\~xvhRq\>Idq/-QwAc`>1 j 4ICJQ:e 3TzS 5[ u    y W B c   h* y  u  i  m C > 1 l8e.`T>E7X[.YX ) 26*AKKWRX=;+ q'. !#n; v ?T ', vv3uF> LA r 1  n k tuX9xE>kf|  %  + B P ~ ; 5 $ U q p f w y k n u z O  k ! ;Q#9;`zETkt~S bR\D/0;b\v<;s ?]; 56 L 1#4mR[\wSf |teDjkc< q| 4MG#{?dLT\h.CwhT2u^D!b}W[hDM2A>|;PU?MUz uh}^!+oV@E^^ `i,ug]VJ)J0@m|6ZpaRT#xO !fl|WIH [y@$Z0bRD$Uuf 92aa3m}%TvbU.#)(Ei3/PKVrjQ<=U&!&8 ifRSTLc)[{04g\ M5r/{4pK2g|T;U\#Z3Hp/2xeFaLr2*Db*'*[~; >3 2D0^ g.y_@!&B(H^ ! M ZX ] K ) n_ e C > % ~uB E j P a $=2v Mij4Q\I4oPZg $ }   > K Ig 10 $ @e " < Q[ a J s " cGo+NJ1blQsd(DVZ|(WadBsn> \g|H1,8+W?*"o07/=53*_{fUj]W""HRi{1'Eq.DB x_CVvk&H7Kno}M"uC>.7`@FLW0!wlQe]Z#!b?et!zjL+v=eU > r =~jIxOtZpvl])3Q #bXW$@B`GjrL XcUE,P(vckx~Dmm\l > Z n9 v Q" e z 9 Ho Lpt3 ] A  ] t X\?!BpA]G4z3I1, }"s[x kKCSx?MuCUt M9UhOFPWy PYDa f#` 6_(1i0F@$/zL(TKFg+wns~-/\BuE>5L[ B\`R~    f p"u.=,S'_rXggCmj=UW >Ao;JpMu ~kT|O&6u*r"CCl;QdKgJrvn3OC 0HJWQ&dL=R?y5nl`UVektGN_FH@ItUh ?v"PyZ(;Gqe{,% ]@   E  G  <&{:Qhrwrs !6c307Ap,O~R d {C4ye68g| #) y9Ip0#@dx+n"QQw1 i?DfPyGlG[o'}09wBUik0,)kl[V58s}RwPkVpdb!_}&]DQJj&I/la+uon81"0nD0XZ.pZs9<@{| )A;AL+y<3NtVqsMWC!oejxxg H}XG2MBB@vt:FZV${Cd:KW76/fP]Z;N,py+Xb\8e5N*z}J ?h(&u{`lH+9S] Mnz Spy-7.2[fa6%"    k Q v^ %  j Z e}O e ) ; I v  /    & XW  E_pAgJHz%v lD}^j}   /= Ee D  ^tBpKJ q |   4  % *  o   x &E#b( R U  [  N = ]u R \   mu~f;@`p } s C  zm<~sZf1'p9 ~$Ya6 rFT0N|s4 YjHF-J p  J E % [ l XH   @ ~h W O  % 1 2 G n \ n r   D 7r os ; & R z N .)   ZS  Ewguvq7.~SU$6[ xOya)Z z{~b ,`:U-R7Ea2G|#aL2A.A@j"=m~/_UyO :F+\6D[7<s-L~<C@s!^F*\% GVWu}dS+xWg''mVP0vw^zd .YgJWP6)-{L^ojb sy"}l!<ME dr\OL1q(Ya_g/F0S hN+m4: eQ.7)|~5^\kCfED!nHiufT B(+4hCHxu2}Tj* G"o5@8+s| r>HMDD0GDZuH :#Y&(`,_;( /)~=&$pV5}\ d2 l    }I ,  ` CZ "- SC 7B Yx 2 O  # J d 6  ~ +   @ LF D & 0 ]N _  F:Q|!zX976G (  ?w _ d ; u f 0|  }~@uF,Eu<-m`laU I{njN7)=c 6jc\Ks?m+"=  K9}h 02ly*e U2'X2d\A(85gtqv=zz[?u!>>nQM k52zt95 BQ d j  = j iYs.T-FhM?S GS7'}y-q   )V >c !_ c P O &   o ( )2   qq LR  SsAnDPj_~wKES{[uQ}-NdOQgPw2Rs?HP1e1tP+\`/hJuemlJ(vx/f|sT8$~-Aa2pz OMpl 'nmJ[gS 28xp=m!2<]pa'pbUP^!W.nyX6F',;w n<5B'vAt_.( Qo@hK vc;pqMueTqAU.}Y(Lb}Hb K .nd#Sv &\D_?A|`<.cKT(e_u4(K" K\<9[b/Snhj 9P1@N67ILK+FtH*]1hG*easSq/;]9B` ZYeBeDT.JirR;2 ^ yo {`!e8=nFj#iZ\-3LbvK,]o|Dtef9lw^/W3-Adx(MOaOPf |jSu[ l6DuiR{o C@CN$}%.'6_XveZ193;fdEX q .Y Y h   -8aVaU0O_f.pw6<\T}}u;GY|.{_#W1R4^JS n<aifCW`$Kg| 8Te$A4K&Ua~B#=a~}9tC,Q w5 BC  ZP *  ( 1  *'M    .e l   Y0  ,  Y c 1? ?   g PC x K  B  D d   f .x  Br +8 o :k    N  z y4$nW>Nw 8 " M 'U   z v *,LE0qI:-wL1 R @  u1 s .  - Z & [ 0  {  eJ ;] c3 6`9 gyXZ Pw ? rm 0 9 \k $ < c 2 iZ } 1F - . 7J6,x+j} Gw- 9+j c 5 l  x V~ ;:m$}> 'lpi$G,(s<ZQ{lk~{_#<Oy->UePZi&gNHr>7\f jB  T  < % l %Q O ? e | V`$"6NQm o_;q. y >Ns$QS:Sp ?!];J C"%qLg\>@ j''rCUk&B      aN 0  ] 1 ; u z~CAZYD\UO&mNc~k[VQ^qkr)g%xN%}H +Z+q1pYor~2zJQ4x|k *z~oph7^fI589K`mk& i\A+Zb7 ^~7j u82n7ORvaH/drTM {%?hWikWH|"b}tY}UUx"%PlP'IlfR0@3h=Tc gZD<!<Y\PNKm[gFr '^ZIk.NJv0-QmeBL,X(v XV- )V Aj     z  c[ = H  1? d  & [ SC   o   Y *vF,.-\_,1EbYzEb[gq ? a hQ Ch   5   Q J^ ; J  ] $s lp     W  r s ?&  P k 7  N   & 2 " S ~ $ 5 G &  \S H x b \  J      s  n b '  v \  Z k / N z9  O gE . h  x  i /Q s  Rh1  gdt{zk|i#sCdt6qh7 Y) d=e!(|sd*I'JkP U7,{J(y_~V99E@s/t`t yn{euTX]vFY+:$.M } 8&?jNp`E(?tm8}[9Q{+ZqkH5:5Y|0':0zxs7$YI( 'Y33xMkfA>cM5fj}ZdQH$}'#CXN/]>{!.I}Y<:a+%=v<1XM`#tc.F6A@1%>mEfEaAjrm! nAjrVc46q;"HaM\0v)wx} `klN\%(5 7 6  <, U iC z  9 Z ^: % a5oIq88!~t y|0Nq(  5rx} e  SU ;)  B `  4  2u v E - i  q !D " " m ^ t s  hK  HU  P : d    U] dw6?HOcsvU= 'o  N `{kw_t602}~yP{Khh#B|X@8B.2;vs@$|Gh[q6sM:<q76I'<9JJ$3bfVk8:BF 7{a=xS.q8$#/`qMT-<\0xtI>,+p+WpiHC9R}IETz]x0./3A)E5'sJ#"byq"+H<}_,G1"Lr' C  N  " # *p T<YGj^mtmXqKpsqJ)++ |%@jmQ$^3 _5H10O*Pe}$'y'g=K^Ry_\+{(+"2.pdZwHd:*r{x}J~|6s/yFhkmE/ `Cfz \; GJGK|)Y9VlS-)o n/Un]Y |-0A 'UPNpe!-16pSU3xP;%OTD>00]!wQY4i@cd%S4!c,bx:KU(N] !XpiL-I#PmT/dn2Urz 1Hp|lY&+ ]mNG^f]uB"[I s%}+HxN}$H1wTSvruo"divWE]_v1)myL5a4]4s+)[U\N-dOj_UX+p xB77P^p*!>O$P m2FR/Hm1Qr{b6$$:SZ :)jXWb1Ta % NSA K# k O Q N N) U 2 r qF X3 cO X 8 :3 D  w  X e "  xx T Q( % 1l8%NYbw`4m r.  2       {z ~    1    * L |V  '  (|  % ? ' 6 h !3 rLm[ S.@@KoP1g&wQA5oRw.wEZ3K  7q{[g 9'm+ ,K ku+ $[sg9vD[I\)Uf7T+Cvh`tIAV/N_/;>xPoj20dh9JlA~VCH/>Yk6e;$Z'a9+"Ib `B0 =2Jy}mx#:o 4<RF\mq/O][UkW 8)yB/|(ngB&4 <_:{sCRo ?ED0k&?VX1B: JY u a S 7 ; (  W   ] ')B\mr 4MO{J  M k o T  ?@ AE ? O S V j; { H 7qHtnv)%#}(Yd5c}cF zX  g %  . , U  ~*O ZZ + <  L f )Y k Y  0 l5 m   < nD > zIW[ 0eN-hWO.o 1^-g;-_Cs6 0iAC1`/p X"_e/1NA]T>;Yrye~NA|*&]kuUy6Y.D"@R&>ckv,9pw^)vnk~%lM'sw~iNQm^"A BP7*T"3: R8~0(7>!}t/q:4G$o%0i8P~|N4h{kQ=_3xWllSwc#&1-Q`8"9C*N8_% drf}0udl@]qc 6 O Ji \ >T b f U 3 8 x  Nn k 6  95    E 4  x oy n I* Z } @ 6  L 7 8 ?F (    qMil\ s   L ZN%w7N F@>"COXHPL\oN W w )[ E~Wi c- uWOE1( YRulUpSlGfbX!a'xyn6 J"J&5F<)$[lItv"/hmgwbO0SwYL^K O 7Yg@Gy9=cJOZO)apmlG4T>^1zWZu5{tf|J`4?rt;+]'~)|o(\5u^k~[2E$8 H>z}.#%>gg$6u :jzK93e2}Ep.KVw586?k&h(:O7b 'A-IS8uTMJuJk C@bx$+ h%c=4\%k4tGOHF:[A"CEZ}5k1th # r?LX+;lRq{;,AbaJ*3Ul=:Z zZeTwIP~C_P4Qs'7L}h;!xgZ8%&!r aXJvaxL&^^E36G7;#"VkqYNkkGs|Os7tprM ~ODlf|8utMI`<OAJY-wOTzjR{b3wdF `#4R7O^H/g T8jhbH]ld|h@p+_ wXz^s, D)JV :J[I`LJzCA}Cy K*c;ADn 35D@y9..YxZC #V"/1+Z/S  E 1 H S x/ ' O ( b b [ a w s > ; kCN$!! BcQmc- 8PERT(4T=B6<-k@7e|R!Ye7>oylU[ ,fT^ Pm$dw@pvP{?f*v*t:Ia+7XsQp`u _0TS1e5d.'IMHqapn >QaC f$Q#zUt$E/!j :YgA6qBxg[n5ru:K*q)-&uC0 ew P( N   6pRrW+rr(}@XkN!5gI0&aFXw`}8B;Lbfw^_W}tA3n`%=6+>+&U_}48jBg]c>@$(Pn4L1uu:B]N9n LW:<YNmNcoD>{b e6I"*V-+@>% SS@!x8`a;w'73Q13F&w0+B]1G0)m5_nl:6sx!'o e U S dL c s * r w V V- % N#BhOAS)3= {7m6y_Tz/$G Q5z? N  >CQGXK{+).l@ Y_i=QUHH!;GxuhD_ n%U 7H;6.:;.1#*+ZQ9_o^Zb< 78F/v`VESInWEf0   zXs"A@  729pLu*ckkvc? tVc3)p7jV]|oJD:U;U2^LU7lm^Xs6%6W=8 (FBvX3}h*wG}7 +I<LF?9jODSef{ TQuz i'%e7$ m[M;DsU4!G|v(Ln wa9  ?)Wyp_wk40Ml57)K=n)x%m8i0vqRjY[7R. ;-OSjCcs!Tosi)_MN8c}fpCZ?7)=+i5yAR:MXyCWA1-H ZDEE7M^<V \Acl~ ZfbU`'X<9,<.}9[S  LK]& q577cS.a4G(=c`M1h2OSEzY#pXH<-Pusxd}X ;kj~[j=^=p?" qPD 4G#B^/<<6545gb/G)c}vd!y4zS6Ejl|aaeZ h ~ Em *. '  `]~ F\] R~WZ*c;5}]]s1bH ]?fD, <{ Uj().7{/Z|hDDv7|2:g[ XKo!Q%j2vtFL8&SVnppu)AqD?}II>6B7\THY6`'p`69i[j//vXWLHP% :3 $q~6GR\C+[Lrvn`R5W/9,=X-_M#Ra0))t';a I\ZVzm{%a${s W/>yVg%iE65}[o(j&U\jsV =R'- w!^Z@\IBb*/{6c$D8I,[qY' Q?l_2 !YlcM{3BAIM%C}\ l'i+5C`|<$_&3D.A':|`BEYz.  Nt(k oi_`_=2hrmKJ UX&`w}gpUXF#/k~tH)=,n,jm0OAL(Mt'U$=QJ9Mm|zEtvhht-@ 6:9;+HsR ,30o/]YN)b+kUCg(k$9/T) 7\ Lo5; _   q$ 3 % 9 o 6  -:c. h70d` XW6Kpa(,|[P"TYFqdV`xh2Ead?y{>,V42_(!<pLNE))x4}Px<FN/M^PsAwtn]4] ^ W q 2     c J f ` K 6  Un[M.G@:&6#E33V1SnK} vMi%cAAtt(P0,rsH/;YqYHERE!DJM0*vIv 47EIZ TElY Iq9E~F c0<l[?ySs`p`l7e G |WO?X im^u![w,{K.:`o*aJgxlj!-a{DZ!^X:TeN&JUFeS} J Lcg T2=Y-11+W*g[q\! ?je1ky ())4RQ (;,  2uvG8 B|iR56Bm O;_e`CYry![ I~Vq$W8:7?+ - [U!Btf6I~\zT"&y;kJz@d?*&ULFJK $g)~[!F HoA! =e"4 B rR 4R M 8E > MU  t j V T ^ t^ 1\ I g %X HXJz M")8wO2@h5S/G>Aplsa`\*dE'H'#2=Uklu{{ae1JZ mk J.u`D!U::.soOO_0'QP Mud`y+u/{je+jsTvCm[w^u\`rA7&`}&'e:}zxEwn)9W3'cyN~pC^!Nnv+   ^m3U(:A&FJ#r"1dk'P\gToCk&H8yP=E4Z% TC ko7sD3m6%#L= `6c9ufgL#G|lvZXn -=]a YM|+gC7,^7 a _ < ) $ - 6 'A pO F K   4$ NI > * q" I# *%    y   U  X I 2 s R C E t> |= -   $ ;   y K j  d>@/6*XsM-pdA )L}B-l"}^}\LU+ 0bN aOLI hwN*Sq*%OFV Ig)XlcfZ$@{M-[./ihf'j#FsJynzEl1L VN }{ Bm?Ps^E:sRR xj!><7!U_G:,-,FE]r LJu^O[hkqX'[RX?x28F[ xkn(L-h=Ofk$LZD)VMe `">_rck+i;p9COQ979wF=4JN8;o.5:2f3CJfJg*'Ze R <_{|x lA a} @ % | 0 b~,D%OW-BSO0(=iVaqiq}_\x|a|[GDE=?4A6 uk6VN>T<Ymv$9 JYJ-.E g wwi<g0d h|DqLYCbOx&4jE"Oo$'yEw(5B+DQ2v}L,~rz`Uw %Sj d32` Zc/m&rbt&]uB'N+=5fkMHWf o1 MU %^ i P )  Kf{q+rQ3&#Z(8Bjy\+ @r1 /`NCt4/B. 2'&N}x^ha}pljloWCG)M~@-6wQ*KRZ ^  ^  zo }  U 0 ~ = nY szu^|~|vlD\}D  b  4 <    ] o ] F %0 Q l  o y   m  - b     !    q 4j T S:   oQ \ j z~ l 9 9O*TB+0M[}a^adE'-IB \Ot$'Qu"SQtZ?VT:7wawl puW;)K"/Pe\DAfNp S,bM!dg: \ $2Z0pjEh$U{2KDNT5?U\XDbqjWwx+rHH=_ !$mapYhdRPA|ED N1,Ds ERZDs [x,7Ug+q8)f["SndU?X2[.kW~%YRL+$6MLdk=e|l}?s$V878"++"e"3'BtV;l|E1-%2T1f8j[?3\Kj6yG-=Qtx%yiE@#k3: (|o1`,*.<[wC Y3( Z)R,8aKTl7*R7H2uH7KOPfmD$'B%QKVVuekcL|uclmq`\@\^{ve3fhZ;)'hxvsT7;$93V3/2 FEd rG$:s uupUAh8{_)n~sIa,#$0DS*dKo~psyzzzF,jrwZT1?./fJ hr\&hpd$hRFKf pr P5}RA);/!>$N!9|\+=e&HxE|hN,6gG ]P*e-:mg'(c9< -&oe*^ ihQ3o {4d3u>X`[!\TT~a dP/$% r:I;]% Dyv#W Lw J!#ec >QA@XK;9s;BYGf8 -m!7@IM  M37 < 0/ K  `   y ;d a; z  yy (  ? X{N6[2^V"cd7p=(-B]B0!092"^2]:\C;g*!m!rPB[ 0T4cx{^QePF0gH-TT,<cb3D(>O;0%XPritz=q/ U#j'!T: ?V&_d"Jgu|to>Z'$Eiu3@znvJG:@ gj_##o_({p& D N|l<K2.o9r:YA]X" VeS17J"e Yu*Enqmr_$N  Y 7 p\D8My_r@i5m4=e'|Jay#6<D?Vo}c ?  Z  P   _ # z# H8 .[ : 8 2 G    5    v P Y | 2 4 1 6  [ 1  !   t \ \ P N D  9~:"  ~ L   f  v 5 * > QU l x  b "Q  > L  j _ !  P ti92rk\QD<I_U'pLUspFF*/nZOS:D#{,%S&O{{?"L;K2:0oL?z,!|nC@.l!hKlJJ;`ZuoogsqKUGXU=sX&A3 f?[( !"6O4mxt}|aS_t}hLH61+E dSf0tH `j!Zy ve^s:l)n<o/.[~ !<'Wu*5zsYLM5m=e /g:FLN`9CX&8qAP J (27+)m6* <iBNV|$ a2.><>@A_,QL7tX?g9.Lu%|Awpi?TF]u/* 6. Y b T D! ;; $? <   ^[BrxzM!>,\cP; 4@ZkVL+vg\T/i/&:<!lIkH9s <} =ar+$Iz5nB)`A" m` LK>4/]%)% l*Et pUKa")V7z*Mk1  # {  H   ( a F    y CY   SZ/IenV:$ b   \ ?o A  y UA 9 )w -( N 6  < { i Q E   | Y <v &   a R <> Y p)_y-<s% 4LL?Y/*04H _DN}eIKSY MXtl1_ST'a> g2xShm[6pB_?J\;+$.$!>Q\QD11vA pyp_QJM`w~oFj@#*\}[5b&Tn|qQw{]nEXH8VEbuhc]a|p/ u% V!x_^4l Mv*b!/\k%d}[r]C%)8WtY=( HJ,tH==;2p=A.@vnD.Pi( ,wL}2rEt;KTaZ2JZ 4gOJD@Rtd.RZ %'iP-=A8+F7E+W Fz&X BY g9)UIa&}Q+$ w-Z%7 Gx`}[9!)B[obgu [!D! Xmxo" R?WMJFjZN=5(CDb-=WSoUGE+-  j8{# b    i :E p [~  P  h T ;    2  1  ] k T :# lq|G$I `#&T!p+|4g1{ kowUdzG2}Sx\!-Gik{A#q2N 0jn 2 5W b kJ  O| ~A { j- ? ^ y \ : ; 4; JQWZ7 ndm /uV\C4o>3|jpDd. A3(k?5]}93ju7(T-Di}j\F( +Q'{4)~#Sb^^* #ta <W    l X ^ k | / 9 ! O* A ym ~ o  { X<`! ^a,)26^<!I=_pmy'2r61"W.V;T<i^0 Jz TBuS+$1)#l@ihg>G[D3/?"2&L~+.+G|#J(12p,V6NPQ8?).PS2z83sO9 n$4(|5(c]>{H"b v' 7ykl22<4g)x@]H9VHde9_L? ,\6wd4dz5?fTvu}6OKg~9`?^Hk7<m%Wr@E6@?5 di/'i.k-T- ax+<f7GSmH1:`R_`Vo2"s#F\|c f` |$JU|TCU '~: B HY +]Qz@s,zG}}K5  y(a, ML=f S=` zoU j8mkMPuO( k=  N] t^q|wb?1hjAWG[86^He9T X G t + ^q y k( 6 X / . Vc I ! 1 & E U  Pj<7>;1@.*g"?y {  +JNxNv3~\o(eN#T 66c/qi s9ij?Qs9g4 6QRgtV#FS<.   k6bSv/?&C244).JM|!`= R_ R G a b *6 %<7DO^qx`JlOT |NM0#/P~WUA<a 2|bq-A+s<z`',&^:7x Z>^n 5' S3uY0"4mx}i5h^ yp@m ^pr<~DWaFua$M(<x{{ kA,VLHy kbE&l:Ek5+G> \z`bZ81/8NdueB[kEI(2>;XNi`"7DDx->]u)i<>}[n4 EOm#2}SIaf*Uddf^)_cmQa3]%[ BKR(4 7@xUK9tnR".GRa|rb/;\p1~SK@9z1y? xT?O:>&j8`)wc4W+Tu>y[(Y.2xXAtH1=B5=pZsy/U[1EL)!R7eeyh% x, kxwOkXx\zWr~1v8B.IXk1 4zKCns~uPFH<]\OG.q)M mTlQaQNvW\W,Z /FSaE ZLUZBaDii6-Iw:/PLqMJ^JeaPbi(=iCjS~H^ \f#?}yExin%h6/[Y.l'TJUyBB,KtDl5|UMtd?oI LJ(ZoZ{rGzsZ:=Jk{u}`Ut_v`aval{Hk7jPPs r1rrB_ -QLfZ52}0\gbkijkEmql0zBmX-M^=P }{D^[*+ dOX_xaZGI`Q0XQ (T G'l^{"em]|3: ;5zoo~vkdU:i2T"4-<X -AN:0@ _O!q`0m!Py~maB&uY;_#9S~4U+1>h]E\ {}~\*n*"(f%;@LHC{Ae]NIYegoitdw m [  J!&)RBc9jdc6*R]YO?KDg !;  , y n N ' Q ,  5 m J E NN Q  f 0 B  c9r`R^5 >hba4^ #% AZg{ <Y [djyN[ .jYVc0{fUE,@3xe>mYQiJ$\ &?G^)lShI$g:.};bh^-ZC"~k$F}Ax>F\2;"d_@*!.XHfqP;H#}uGe aQN=x $Pk|o19Ht+t"v&K%Lv8 Ks_&Y+}Qp,_^7'54n5 n"y6H`v\ %QPo4":PfXG_6Tt~ daiHfxX~gt\^9D>c`v:<Hrz \1;J%dfyw|^zGgAQNt= XjVCWM&%"-!Ph8 wlN!4d 377Wp3|L3M[r{b11ON1 /1:5=c/O#9"-;V{GHA :Qp2VlmW}RR0'HmQH+F[[8-4bz]=j32x~^E&=n2 *=)]d k!$B# g^O~J#f1 x:S'sxu^x!*y)G\EaaAU@CSou6 .Xq\nPDcS&w["Yu ;5vJ5$29]Jv~~v~kQ@Jd/Ng;Uca8CqR>{dJmMb" #ZzUR.p%6(e8H\OafuLspPx<>T P7!D`XXN]wd^8\wP]l%i)cmOTB=?ZqK`bL( ",+G2fM Vt@_xT$FGOR_gz8j?xXe*KkPh 5));M}@ $hAE7r3pPOQ6`/|H>}8{>a{oyWM"H>4"Oj *+xWxr~mvRcL?kKy8!(Ll{RS.B = )hS6I @CJ :[;Dbj(^zib9eum;Ki.z6oj0 ~ s@Bpd'?g&^+za<hN#D [  s  + 9 )   3       1 A x{ m D t}Kqeeu3>U q?{EAjwJ 8n<&-#TlO7!J~ % M^@4OIi2( QdC[@t^{Z]<pG6H & 0} \YV(c "W :7p`k>  !dWMAZitZU :pxE5"mNCYG`V<&y3{wyuPD}/eD7>AK}x2I4Dv! dg)ZpV2Fz}Z SDygn9]5.t>rHV`PC B;2AHu|\5/ {CrNK19Nx84S+(yD&Ei~~^.Fo$EVwD)guOQ/w;GDm|#aeR]x|,l[MG^qaaM7AF_=V16U:w1+X!)w}hb(`^mc)_N`Pu&xjfS!mB&NP9'-]Ks0+R c+ 1dL<Tgf]dol8C{yQ'").F/2U>r#C}#tJ`{A <~j$j80R1R_?Vqrsusmv:2_aWaZlbE= Vgx[0 rx5}lu_tr| wXo}>;TRHq0w?<i_)z? 08&}a;U\n[GmG&x(h#cA5GM9`!/&/BPGw/[|l$6 C ' fQE v~    %  ' 6M t<  2 > ? ll   y D[ oQ | c Y n (   O ZY )f o c E V .AN}dU5G@cw_<W; 5:SNJU|?0 *=$ vWKJHcA|#bY2dj_1.sqJ5iL:=d|/d7+]]a0I~|P ;R.vh&ZbWQ ?3Q@ A$ j#!9{N!($y=DI [ x\{YF8'yO+e IKTZVBU0* RQsBWf.DJ]fU/}u?[U%6cC~D|gJ))'2g#:SYdzxaoh2|o7ScH/OHQ; :JdjE)%!,2;Uts~zM5 " 6WT5" -YT 2icDUmpxtof @zWs'|xsiH l/Qx`9K$\FRlVHO4.*Vn~jk[]VkH971.} L8kyi )W3cECQehSNKz@E4FxAi$:~8>KE:7k'- XBwuG"r[@>P= )BQ@j F"H1L<w<_>v?j]%D.}7jva?0?Ri*II?#\!XrQVLVxrwAK l;0 vTW\9sk2+% #I fz<wb*xYx% I~=a"N]oFO S\sn^_)cLF~5 W#n6|JS2Uth_:?Uck z(ymr|H(O^H :hszJrxuwg@*ri:U<5OC3g;3rykJ*VdN*E'zd`}:j|WXNJxdvf4Z\ C h!O0`e'2ZL*H  0sT$IjJu7'j'<7O~q &/E@cwVO]+SP 2#2c?ZuiE0"3Td+GWnp^SBz=V?m%}E[ .If}"D^0XfY|ICTp9J9%">]p{|(zptaq7F$+?@,oanc%|y(cW2JHqWT~LVcQ+ p? #qv|  -OcvC7Ls]h$[J wtw)J| [~I_S[yN5@d1RV[n 8I}drylF'u(LOzd3H"P?EGY 3>\|>~z3IT:LAAL>>K/%M@a^}LV(  2OtqFCZ4uvIQ 1R[` X-~w[~4{pR1 $Ki %S`2 b #"R$!#Z"LKG],pNs6 ](3@W}@&8{C8ObHJ6b@ . z  9$V*p3>HfWx5AZu,>('OlSfMXQ9O=+%;OP4gKp6d(v,[y=iqs]>f!` wukN~L\4OB\^G-Q%,(o 3  %"64q RQ\]XN@dPS xL- yt^BdY.!%6RXIq{z u'_K+mu> Vkv0!g>0$rm]gC%lniS3M@*(UPP/NL GFu(t,._<hxqq>&-D_|(> J[.}z((iYUrhR,uI8KK6,^}nT|9*.BZnpgXTcc|gV[(#h2>C~HlH'#>H5Ma7o Aot_a.v a=X6Q2,o#5BQRSe[yw|P%t)xaUQIK7?  4}Te[vNRj+WRV-$S3;;4/h7%??5]+E*TZdtpmsCG!QR9!Rd1!A_XE* *@TtlVvhhN5b!.kD[KZHaHuOxa^uCH{h]9!+;|6}#x U-%7:n1 X"Gjmd^W]2ma,v"U;.5O%`2c6h"yU ,YA|PHU"c \IX!o!|tRO$<4-_D(.{,\sJCKXY#QRUmctwfff-]+z`g5\ M7"'  %G NF;! G[VUX lnfY-)[Y/-b7rPw{x.ijO)Kh1&!Du &5x:eI+pa\ SO6LGIX=i7y5,{ cF0+{*D7BHBh?==&9%).2#|X<#S 1 yuUtd_eBv.;q\Vvb>M}kju E#izRIhkcdp!R}N7#jeDwS4/y|rKg&t;m2W4D0-Xzl'R-S%K(, CZK:VENkv}J)$% -BN,DU ^k};~|DO\.cboaII`y 9`'3&@(=Drs&~9@S^3W;*35HZhxjdON9=A=UPjt}< .jf0KQ}7u]2JLB%xwV'&Flr,}8n Zc h,^NFwF.q^ 'F9mS~h DidqsxuMtJ52v.w!5_byNb2cfbYOGJXlxxs"nq/T(7Zi&EJKNKO^cZH2 !'>H.Y,g*?RTOVzsO5445Ug"dJWdFo3xR tg^3YK_QIE'Dt<7.6 +{f6 5lP"vl73]S& l\YwdGr%nv"f$Bbsm]\tKz MBOSvM L9~F&dD9z9k5{{]j.K?7 *:=Rz4Es }+`P*xhO."V# uBkE#=yGI7k3w\> \j#D8=Ab0;S'xoove_PG>3Gf  @>5d JUCpaF?io|uI" Gnf, <{8JLTVdbxg+l^<LDyP5/S_tEdx" 7YJ oQ*&s2C[;n (:TE-H"] gvfa_`XGOls>'# stwfaS>I$^y#<1]jq90Jj7r &eGO"zYCa8CDD?* ]~x_3 ~K*\0$<Zzp<Tq-@Nj*uURv   l>w89sD[kE?M9bd^bQIR%Yf}sVeird$h-J( 6:X$IJuq$#9@6sUdAd1m"i7aZU}9M.p;xW*/FQXZ@"tf]G4^zO nldh{\ BP9|'+dxzohew:oLlkL)>PLydgZ RI+QPu3PeZKMD4MI2 ]yg? wdM=$:f"}0+* '&dE 3'B9~MF'3a!_kM@TDF.7&{^,QkuDivvps "a8 &Mg)~EWZ/\bpxq:w CZME1 r:JgTdxp\W!@ d6wvNmL<t,>$K}wU:$b' y87>-|4IXrt*S^!B U$~s vEl{_%=IF9S'BC-)" $4V'9C,B=<0373\9_&/l|5Cx^-?' 1@xUhB>sm 9\qEvFuu|sA,4USz An3zC]-@,%*' ,`  ( Z6fK&=g v10Ih`WPI7h!E**=1 sXMVHN=^ twaN3 Jy47R'M3|!Uz/S1oU~n*R42>MWZPa63Wta2~l<WC'  ~*[B%_ ~r},hP$Henovu3L,#&~jTE;#?9x3e5VjznuO2 0U(J$TJ%!QxOH C {=^m|sZpyw` *H]>6+'c$D7$2F0 8Waw5q}kt~t[l7? 4|DHrT;4\9*C LVath3tS3 6jN~[GU|g[lE_?FE(PbfJ^{_jr^|DETffJ! NtrM)vp|AIF<dg|uts-w~d8', 7)96$Ru"hI`KQ2*BKLBQ A*TQcfFP&E{# z g6EmaEU~vC~g9jULE0"{fWt)nk)I]sin@mokd\PBbD"NXSD70-U293%{X\k4e]4K[cDIwxh%{momt@C!u@FA:h*<";pg[D4 U$z Ps}&Xo[G; ..]C{)?kuAl 1PxipeG$HhjvB~-)1EX/Dw]5$S 2&d4-"*W~`F++^X" DzsUvFcsvEa/R}K*@mBq8k '6/A@>`%hLK>BNID:?EG8vE P *&;^z]NLNuN?F?//VAY^aie<b ZH7e6 wAkN& !=c 4]'}^ >u'!9+p8=>3 P%2C^spJt5j-V%JPrzWF!~k8R o>:f$Q U&7P&|^ 8 l.IeF$?MLD;*n$h 8,9OqZAP= !>iX"JBV% TBo&Me`J9}#W4,)/I*v*/20::$'le5hPA=o6T? (C}jek>Ok (,$ (6GXn "=1cb2(\2~??) o!h-p0+1([F@;/ (J?^zF8| XiCw+Z:!0<,uR,RvbI70ZIMcB+m%n4Z^n/]pR tQ&2(%;jUwQpOl4g6_JS]MGR \sS#Tw}-Y, b(@U+doyqZNqp?M0"$-q3B]  M,D:%?lQ5r"w6U3/>0.' }JmZD-0P'F#~55u\u}icQ@7%f--CO nP4)1+P/P.</)!%i@Q[^z|:qt@r`QQY]U>-0D!bM|&Bidk_GNC@BDF7G^D~G_rc6390 &/<EYq6Wi58DIC96,Vp_wmr~yv 2n!S)YgT5*Y{KppEi6*#1*g mU <( 4~RK"ovZ2iD>(H>Nc@W4CY &O-yjiNJv!*8KT-_Hn[aU,B+ vO = B Vr~F51(V&  18@B9,*%  3H;#d3+9@4EDPMXBg3$&_ 5| 6UR(klj98}+VZ)xxmtwju 8oJ`B^BiGJD)tV3wncI&+e+2Pfq#(,#Znq]0h!GW~V=( "<PZ_d'lht~t mj tqZ\|{\= % +yaMq @VoP@2zY2+X%S.Lal{KbSN Q_t_C+OtB d'I \ "a)kLQ6?xJ0|eN ?,bTP)r/XYmuT *F^!x7HTe}7CTg{N3a ;"g*     =0&Fc{NlSy@R37Qo`=7GpM3VhGc > / N v`J,v[D-"\|w4z0:ao@j3boJAEr F|}qbSD>4@ i4F.J@R=W2Z`bUD;*mWPY\SPSe&\"V& x'Ff0Vu2Sq^-xqrqpno\sD}5+ V0*3]JkLHdBGnX\_ULYt=Y"sb?#^c1E;=3u$D~ez|qJ'&G}ocK<6)"  ""$ (*,w&_(L>EaFUl&pLmE[ #FljWOGCn<E!LtbVH-zzvrnd`U]_bxdggV<<(h+WO)[[ N: -669VE#H?*hV6 2T#?ML8(lR0\=oZF:{8@7>CVxo5`=W8})8<Hb~"6"GKN~GDJcRY[=U{= 2j3pKq|Yn,aite|jyc5ZRL>#b; ,PlX~c[E3&   wS6$%%&0BYgxB Vh #.\: <1y'N!vb_T5lyZ_P6LA/%8dB kC5^b'b?ZRFQ2>)maZ}Kj8g(puN)&@\gqSMME5wbD+#>f8k3P^GfuA]SKv7e\ =[  (*0--)!7 Srv _ QK @2 2 J4QHJ_BqJyZggO& -@,JH[^qns{ +?O+qATp9OURS1NA9QZU? fA _?" ;`~]; uQd0D#xN^7j D6;Hdv^KERIRO JF@;;8i/#p  M$AUdkvZy8V=559 4)*F]x ,A;Snar})Ux~{[;"_C1*!N{#3Fdz]G.E\IMRRT`Klelt[{;  ^*1]Y#{f=x-`4RJKd@z rK1&[4uT>(n^m+]X F;Yz^cqb\oVK:<!IPSQH4m\K,~|v|aX[uk^I4 x``u[$=I&^r"",6>I^o"Ba,H`Wy!OzKCVM}^f.>"R#~?=Kmp8 f!Mp{Ql+y]0DvjZkL8#bbX_< ">0cj}`@!  e8-@[s^=DyqO%?lea{,1!b+3DS5SLx~o$=hY|}I8LiNXn`@Z\XOGwGJhEMAB??<;C+T"m7EC`P3Lm`.7ZJtZ?3dWL"hy&Sfy7\6tLo;%_4 |,*wr,%? a1DCQRIb(<+%+ Uf%`B<  =@Z'J1]`6_`I}Eyw,0] RQ&##EP&heyQ47!$u$DQwN_>{]/%B/-d\iEhRT/,8`L<Ek $}]JZU2@qcC?Spf ;pSTDMW2[7u,_4V1lLx $Q}|C?~[y{z1}Kg)i.SUuq-,C^]oop# 6_xxf4se~u6peF5n9 $nvWwq?c ",ZU\c:#YWh5H}l&CfA yq?5F8.64eW$m9!+.[A031]td=(,''Zr(HBj x*)P^2Jdc-k AFa~_G,=%Vz$9l8* z9U_bn\g~1# ;K ", .0?G'SJ@q+>va+.MV>cW(9$zhu*+a>Bi|y2]Or!#X&E,nUbkW*; D|W><~`oLFYIpTY~UI>]0;UvqQx@f~pf~~d>% }$+'8\udvXUatn\Kn.djR&] gN:9bicud<  >4pqVPZ'_[cA4<a :jx|^Y.gtRn1((<#V[DtPow{ pud?xi? (:IHBhf U+P8s>8_+?xqFzM\x(qv*>DmZgsn2tJarrO_r/a\mna(I+)SOT9Vs7v#^1e#7VU:+PP*MR JUE*].p!>qVLBTdU((8-MPV`wvums3  (:-F4!!(,$m 2k5|KGG866.6YcYJ1IYd T%qm`&uL=PxmX^/6!`glOw;g+GK*p W r#3g4ZW]\Z/ &B\`Ae ifO@6U{;yZ( |GyjJi2WD  f4e7z4zja]~uO :vO^>Z01D21E3,YdQ(.SR`eN Cl,D2;00+#!<(}0IPS am7 sG2KB651JiGjG&b%[2 ]s ^2PMIgFWN<{chY0R,s!Aj <%lk et7],1xbxx@UG.B)!Uxve)@b){'!<SFVq0@ L6XAMK1vz"lAS[3Y"_Bwmy}x4`:?; Vwv5 m7iKZe>$i[H" z#Y-%)|a*|{>WI N$d?pIXh^Y`Vj@W-v{nXsDc&q2t`]vKstbOrK^\Jk*]C=<A\vIozP2e]^ONGjVQ`qpvuU0?IZlyzmvrpM)7i>uqmbSB)">&e&#+y6zcT~`+|vrtf;oYX]eat3$du-Zz&v1uK1mICf<$qaAE0u7nFd&F<%#')/b2:Dp-FSdfQMRH=m3l\mkf:g3'E 3<# (89DZSYw~saH23=BtE5> 03LJfxxs]TgjWWP C-!'o-0`x3eQ_I`&&  9 ULEKuSy4uF9&LNCt \5 :oQ}6.r.p3U{ERj>{?jBK6:5,A` zqQ+ 7P_\(a7;EYv@vfoZ,T5?[l!A/vOPP-_A- U~ gLJgo{^`I1(#=`vjJ'!7 2 "#N5~D>)T3M%uwipsZAfO<"G Axu0sjwvhce>hr~qP.&lE >fvoXW_YQ.tcVX`dV5!Z(70&+/D[kkds.1*-Ch  gA0+j2VHvr]IDXv:n4PD})m%l9zZ(RVAo6P=BKBcFvCt9^-P(^>tMHEs\N^9NAF\]}^F<?2 d5y]\Il"q?O da!6# %5N b?nhyQ5d|c|QQA(syjsOeF'"nJCPkqRj'T A/!w <=p=xYKy}h}runxiA@LNJHORTTK9<[5d!msvmSuH,wI 8Ks`\D! {xsl eG#8= 9S dMo>F0 " cHAc1n$e.PM94dx]T~Zsj|#q2j.]] s7R^~h|!AdL>708X b8 *5'&V42P!t!sUUXaDwpzag)-O!eP<{G{|v!GjzXS"b/vBe`$U5N?C16Lh2nQSm  !PfVZ`kwi_^rR  .(r46_sjF-=?B , xdZV?R*$(< UxdD-+*[+#K| >=7U#w6@NMR{kke0x 4$ J<T])TINtMSq}b_W^{Y[V<.GF9$k,1;;4.=^8$zd(O@>G+Obs\DOgv}xr^;0JHqU:)+(lG7-{__WJHJOhW.!-w1:JH~H1C@I__1ccl_Ns`poq_7Br/N\D<,`029@LMa]GDT[V-bsmLq2P!|Itj0cLlzvt}1=M]ls\\je9TT[TpD{81;`|B w]Iu2G',&c<AW7?!8@s2H aVqr]C96+n6iA#{q#in:RGIk h@!7 `v(YwE /  TOq  [(*3'>_:6&8Gh(=HF72H~mIczddibN,{rX/wfzr{>m]\ \Dmj8~W#xWGSn!NJz$`|40G\^q *($.M/U3Rn^kWiYVnB?;;JuTVRQS_du}MDi{?kCK4/+$##P-3X4zBYjY.qmr2n^qmZHOak[R @;kwn`nX]fPk5Y  y(),4S%, >p wf_]D%Gm&Nn#K`isrp{|r gHgu{fO6-D>VLfF}2!&&G'ei^LDY}.h~kT_)j-AAtQEIN_?a_:`WH;ZfH7-lwp`Q78;G9*w kw9h|@Jlkr{f$zN-\pox_@1&& {g^IIx?6]w[G&?C<M6@3>[zvngJ+dq23r'MVWi*j5oz_*  (HU[+X/T&\!}'Iys[?2d%9l?XY* n![?LGFCW.w)f<40 kVPMMG2  8< "W}riKzr_F> zL425BVe]2IE8V1k;U`_e~*>JKHnEG:( ,2"-BO PNKB;BLNPfH{ S <Z6J\vT rQ=12y:_>XEuE- 2E_%^xxL1W#7xi_Fi&5 /\\! 2H G<=U9Z7Q6Q?W?P*H B)d&c>#|NO' t li$kw{%Ei&9Qlx{O( ;_q{,Rm+]3AORRYdaH) adL;8=FK9Xt7(M^l 7.sA\)@6$ Q:EVdcK<)MUXiz=3Oy\K`]TOK>d$C:Kim9sG!#5FIB<;G[dW2 ')/5 .$KX+eTwCr"sv!  9Rn}>iwBs-?RyBt<We}Ccokn+ERXj0"n6AD6""/f;>GSdnuzc,zE#5L`oUf@,4L]jym4yg\K<:'44( {U?62" 6RfX9w$G!{AnDa8<j  #10`)6#   'v4eMOn5tsQ9r 2c`&Nr?k|fN/?k||]?+#\5.3?H V_#ivbfmmmRn9svX1}~ylhhotn`ZZR< nLs'Bz=\8}Inw9d [i.Yn_Y>YddowT2}haonr#1gHJh8$'3I~!*&r%f]NEMViTnU5 ! Gr)j""oByk\PLHHKJJOUTk_hrqgbY+WBZXKe>t9%xdJ/iA*^* tY9H[7-!&56J=W7Z#U F'Y#_%tV0".K!l) ,"1>B`Sd7Qnw^rBW*B:DHB=FVenlrTqCg3Y LJR`$q7HTd|'7I_{zW<%(. 37zGao=^"Mw 'H]gknc{Y\SG5 %!) /-$vH)i7}^YC6) }mX]4F@C6&""  {jV>m^UZa{\ET&PKIP_hs{ r)c6Q6+.  u\Ih Q,RI_+t<k2JX[ccZS~QZD12(09Gcuz:^{ 8Mey {w~|q[>FFIOpbBugWB* ugSDq@{3d733;:;>F C;8:L0+ !0$>.8B0Q8cLvmulekfS@.xT{Y5a> vfYD3~*(+;R3mY{|mM-(A"m =e .:YP5nwfg*lUlimkm`hSgVqcvct]lKl/dNA: 1*"I 1^43xr>uEuDgK8'~{ rV; pWMDEmJZFO;A,,+ -   BPWd+q[*OkmO1~X=;Bx;R2.)) 4;)H8\=l=yHSh#, /&I3e=vKv]]ZkU\LV@PC4 7'D<[6qwl_L4~M! !=KKRjN J 6bdD.% 9btFxi~Dn'^qzh<*@2@P0k-=P-,f+xJXWH`KnhnF(,FXuW[N2NevY?wzH$m\`pb9g:y,mn=Y"E1w{`5Bs2="D:LQdm$@Tdi<fQd\difp(./&3BIUf]r[mV]GD55#:GK>(xR,zyX5.e 8nVBq!#eHl";B;1-+)qM kBlCvaK5I  .vPQu4 ve[TUTG/]|-;AU_ZdSQZ\G]cmS, D#h0DZq4JX^T?*#7 >DGB63?TpwGqnu~+<0PJh`peH.a4 0sLdgWI8(3&u.0*-*0J2d=qLx]djj_VOr@]!H/ }5rgdWI47 u%FWl&8AC>*zaM@/X({dF!xmsMu 97eOcq}F)E"g?ZsxbUJEEEA62354- .JH$2G{J#" !#%+|0X0)&sgN-~e]am{m][[]XxAO!xYbD' qE qT*>g xm'nFds> &7FkFD=!2''Ch .Su=W`^eK{ /8GWPxNF4, 4BMW\ZSLB.)U~!480    ~~yiT@0qeZL>3,8%_ %" $' a2 0lCG[$mvv n1WJ:b$r  &7B,K?OIII8;)  lXKEFLVg !4Je~)Y220.-,-0[.;))/?S_cZI6.-+0*U)(2K9k]x|rgW@'p=&9YoJ1+55ALCf?80/0. $ #-/(Lo2#7JreN+ TthSmx   rd \W UZfr|b~=cB% )Qj?0:Em]E~d@ //|&\A*?<4<W@|i$Z 4ReAa\QlGHOUVF )1a## 1L5bZs{!.." _E%U$mYK@;^>8@&E#M,S@UU]_ibl^iYgRcSgVwUMMYlpC|ne[QD;?Ql{nc\c@qf}'Piwsaf"cu`10=?==*?hUu'Pu)TuZzaM^<6+ "*,')'3Pr0e 4b-DPRW\]ZUNGJS&WAL]5q  =d/ASp0ESVMD?=50/'ClGnN4!p S ?5% eA% }vuwonjAvgbbhnztX2u>wa&LSCwEHE@, #"~K{^-?L(coy7R'bJewijgr0;"AXIHD>6%!,BZht`NB===GU[gtwBl:d]<hbZWNLRSMLR^wu`H';`nZD(j?wQ*qVm0$f? %/?Y|8LTQ}IgCdDpJzQURGBHWiy%/Hn6U#nAe0Ss~~~}Lxv`OA.<QN=,#"mU="+<K_];w'Ew^_vbz!/:CP^ipot\}RM?d0_){&t+fP<'uikqiR5xZ <"&*6Ib}wRJNG=54: Mn!6Mg}sgjvvrtvTq$_A%(+ E!`Ev~}*eJUmT]d_Q?3-+18=BAR7i' "%$ -DXimzs9NQ$blrsh~ViES8E-9( tpUZ<M'G? 960 -('&zqrsodjSF=#+yvgQ>*mf:iXkmis^j\Y]KeCkCa@K:68'8"=$P,l/+'/Bb~#()'-`7BLT-[h\bp5P\3_Lfbtqz '9GR0\K_\i\F/3fGp|\A .(/(D$SXTH5  m`airgsBp#ls}`BxupeO9*!reR;3M^]5m     "[0$:J[niIs0~tgk~ -2)6FJHBBBGFA]=G@GM[^yq{tdUJB!B(DDDLWez8bu r$n1\7A>*QpS"_6qm|Eo&5BEkVemmghv !aC+yk Z&H:,GF6!zpxUF6_G<{9o/e&R$>!0$2-9@=O?O8@),7f~~y{'6L`,mLo[)@IPYh}saWU$RY? :IE8, 05+  (Dg.GftI ^O3 `8f7X*(-&Q a.q~fkcYcFl7}5;EP_e|D) 2`@v.77$%Jt&3@Oas :+WKsqAc7Pl Lwuf\0UaN{G?9=DD9 (?]jXM>( w^D2p+P#?80*)'(x/_:AA"7(  jQ>-%5Gb~omogagjdZI/ mFz\3GO?[Kj\hpqu~Cc~{wFf6k3T+0<vILOR/a8q8ET]g,Ov*53$uhcj]JY7N: "  {plknWk)bXNFGiPR]@k( $i6V=B>39&1"[r?F-   #6 GZt `<mD*iH96415CVr}  #2;IV[]YUO @;+=1F7R@]Rmdtpwt{vx{v_G+0EZbYL@0xW'?*-!!  !>Zp[6f+W/ |a?#5Kds^Q*NRRr^fihqteYI-7L+c#t(;INSZev #*8?HW]^o_^ZVP>qjaSC,6Mg (Mr2/DESX`coh{ls{zj]QF|8.+*&(08?A C(D(?6 -+-(#$|T/rY@(jec\L?2/:,K.Q,T)P%G?@HF5~iI rP. )Kqn\'KMGgI{D6"~xpgXJ98(NYem<] -` ":$h%#+A`7tXx|cNA@GRTX\&h3<AEN\+g8lIlgg|ci~wkYU]d\@qH~s^F-/Y (<IMF;56AOW\\ ]c!f`S <#'+-(7Lxdl|aN3tW>- _1d=fKCJMK?3,0wDddP?1$J w  (8=2 /C$U3k=CGN]mu{{}2/M1^,a$ZQN^|"!@[a^PB=BF;<T(p  "$(0@TbTbUA/)k*`)VG 6)(,$~]?!"/3z0Z!3  |pod\PF2. $.683,/B_|f@#eB(0AO]p~0G._Otkyulq]\[IjFQbml\NMY)d-g'e$^)W=[]p ":J'I@9O"V\s#++%[:(&!tbL2kREINKA7z,m&Z(=,'w_F!3(""\A6;Po)AVcmu}wjW*CT4*'+-5"Yw{g_B[f[~]ZVY\``iXPI>>3<+@4GGQL^OhQtTZkz 3 ENO ECHJA?>BN~h{~xn[Dw+mmuvt}wi_TMKMNNI9$ *<%@3>G9]-s6\n ZT&R(K!IQ ]mtiSU,I=*zh ]N 9g3mUF|7j+['J'; . " k]SPXao1Kf6Repx}t_=mfkqz '#(   $8St Gr+;?6 Dy7~)GSb~uzc D$/7>S|$=`fE' O 07}*[D5, teH{pt5Tt",027DUc>nYulxz{vhQ4mS?1*  ",;IT^ e d `cht z'f,U&I>7/ :~jiclvGwpn`VW`:lGxPc| )?Qu]heYnIt/o_PFCA> -qp}+/&!se`YNEIYo/ACDFLNO=bA~]y9qmjbU>6?M\ffR@m9S974,uR?80' 1BRbfl} !/=Oe *Gg~`BeH/ w.]>MRFqA5& +5EV[yjkT3!$/78%'2/714#)wd}Ln&ecfecelrsrrn}lwmkpWpJiP]_Kp5q$eL- mXN>+ #)/0-& nUB:2KRQI>8:?F/N@RM`WrZTH9) "2DQVU^K5@76>@>y7g0a2`>_MbUiSvONWgsrx}~0EPVYYUQMHIR\hpiYqHX6<#$ {gM8&  kO9!!&6DR`p~&p5WL>cq{").( 3IyZMjx~~znxiwnzuyx @k %>Ut"7Mg ((2 KczktX]LHO9U,[fu2Lo%oPUDn|pxeXW-PLQdv~lubhcdd`]TJ>.# rckXgSz\p}}8Qco=n 6KRrcv #8QkzcN&?-2+*.6?gP@h)oaZS|Fw2um]B#\1pXKMV_]UNKP]lrtrbwWVVNIGDCHPTX_htpV7}eJ3 sa Z3]AbCcA_>W<L@<M.[!gs n]V[Y2aju@e1I_oyx#w<uAq4n!ok`Z^guu{]mI_9Y"] gqz,7==2{ n\LDB?=:/$9Pf~vvm_eEX#J9) T(t^QOPNC32c.Z|-Ea"1)E7[DoUl}|{Nxi\Y/G-q^RF7% w)q;sKzYdmtz>c:Si} e1EF$Zix|jZF5,(%"&,{6cCOU>i'a;yng\TpKh=c.b"fkpz  #-1, vY= eG*s bYY]ee:q|/AQ^b` _be#g2i?lBp;r2s*o!k!k*m2d:ZGSVKc?v2&+Fd} (0:FO%T+T)P L P`p{^H8+! )8EP[h}3Nclj_BTaM}I;# !,4AVplL{/{kdfh^F( ,AS}_dZSGH)FC:."bA)  #3Mta$J1~ m $Cd#AS0[CaQmG;Lw 0>@/)OqzX[q_0*DVzpcwUgN\V}hy)Is+DYo 8>(-?\ep:UA$`k ; vptkc`Ckkjg`Fow;Mc3gWdzVr#..U *F!bhU@>'C]D?/Q ;\m}M &;N\WECqXPgSuz6.'0A GJY,v|won^Ql_4jA!6C&RVauQG7!w.]OTZ@^VzGw6-;av!lEaeaux{f:D7BO`wX _"dn3w *2#? 1DY<YBm3]Em.u:pF&GqRQ =E)O;GB.: 07<6 6-J7H.FJWr4dkVMLhTqZO3 *2E50bAbkimr4y[:T~Bqv5YL ]l{k =!a5~VwvD;Nd_ ymnm[\F:"0e3FW`j{"CL> 1M"oJbhM(4.|d>\d^crN=I@"jOE85+ "~ZYi!dS0"ShUhC\![_`#H`v\i&<@8Xj8" "4D,. ;erkhcm| xyx{}F<ydL4b#>/fIk~p1t,:OHqK|B3.@WMhQsp\PV[YK.~ a6 #'H8RBJ>?sZpq{rsb7I79@4K6=^~cFu3s-}-~O]p .6C:ITbrvt&kee\zXhUoI-A'J{d;`/EloSJMWcmW3:6%V{ #{TNdolzg%p^hyrx,f,1:e1Y{v_a%?D96}AeSn^zdpYOA7?Tl} Ej6M\#b4\V[ht })SjZOJI#JE?>707L\rp*OttZL}Mn=q%t cN4 zumU0l]seUf8q$ zZ3 oF)#K+Jb{fv R? hq&- myjn}v;sbM!\,%"AIyn8xy~v: (O01;Nj9zGg.frqU;(" {rEp^5 s\N{OWYZF/ `A~tdO>/zxo; 3XswnpEl.o9pIo2qlehitSzs`]iPOqdV)e6<3(7a5:Stsh[_YTJ5!:Q ]f~7  w[8oCqvxR&V?z_uXg\`clpvolfV- ,DT_I_ZR8=.{ZbNOfD6&wxPK$]2s?JXj^x7x#x xsse|#*>R}}7KSg~ -b!8Wu' CRDo=y<<?IODs;iCxVbv)S{admgIt_'W<=E9#P FfSKH&4JI, 0ZkuK1!^$5H>.6'6&M/cBnL<'x8f,=SRC<:a61633$JVTYmuhnx:#7UAOdV=egm ;ZR&-^6tI.Wp"o_UE/  }T!~rvC - "@?/-]=# uo|Lf D" sN+  ?$H]QEMbs#v~bo7n|9\[V '/3QcSgJS@G;W>e9_<G<.6)(+%/]7<6)|zgA~lqqdXL5(Fi1i 7h|Y#8A(] p$An  #+++*.0UAgJC7) M{ 5Vq*@KA1,Nfqppu@nxpbJ. 4\k{CrFOC4D6Sy3f$P5|f]b`Z}TyeimPZ3OJ7tkim~|.vFRU4W%]*n2~4CtY`jMpJtRw_Zi(ni`anl[xE."{%y 21%5)RGuy.'01c1G7=<?;L3S$RWT[!i sd1 -698%7*?1TDoYp}i8x^PC/Z0#~ l$]'PIFCCHNYckj;lDkckida\Q;A\2$g]6Y,##]9>Xs/AUcihj%pvy'|ExYpW~MIOewc$2OjF]l%((*.y1`,g#)+$9e B5*P'Z+R1R1_-r+4CeN4PL-MxSazA\`evzeu?7 :|qcV)K(E)C5JBV;aca^c^kcgf`YQB1pAk/WAGi5& i&T+M.L2B/%% -MmpraUQ7F8B[;55:?A?/m@'Y*,U c4,+>;aZlj_F/*#?QTM|BE0(!,BQ$Q0QEN]hd\VPSt]ZdI7sJ&OmujQ9t&n*aGZm\z_mYfPyC1&-6 ?HK G'GXUaaWK3)-52(M36I[a\`^2|O0(( 8K@y~(x:eJKC..)"?&r"U^)    '90j26@nXK|& +9?Fd&Nm:fF6O_p}|psdBN4"zTJE:727DYY$9.6H]kstgXW]`F[qN}3w{ xkey +5ooy i6}hefie!Q()1 /$ u"u?~Wjn`GY!&Nz);GKB1' %%'J0g9<ASgx 9Wl{ _*52>Umw{~waOA?}Qeoy~%.1o9;Kf|{w{]?*}nl[AP'G5 &"u_TYG71-/*&.;BFSSf6J 3xqb J00UkcV[p(Il.>#{xxgtXhEV3A-,$exRlFyA?921+QMI\No]|jmjqwt&v'xi#@9P aj4eXXV]d^L*;cdB/.?Hb[o8Y,y66B^|Q sY< {xxkvMoOkdsjYI<2&vk xtg]jDN 3pxu^QA46F^9Vw+'$]5K5K+]v :i /CRdvBb~wl|#Keq}2mGjO@m[_\r\\baopfC`@))Q~!x5]LNe[~z%N5QJFeCyDIZjrqjuSn5k3cAV9QLFB<, wcZ]ny}Ms$cPLF!wR,x\VbmplBlt *FfxzzvnrtW!3[wwP.%=)N&I= 21=M3VBUQLcEcISWY\{N33W:[/jysy ]+`0H588438=9?nGTP'Ygljfe^ZVKCELPKB/n _ccM5v:YCJEBL6K)2vbXvCK'! -41 2 - l#R'H?, $: FD "~<y"#(,9Vo|{uv2S4:(<I Ve%s6@A?G3`HxD#0wTtk~0<HAx.x'~*)),-$+7<DS\ap &Mn~qH    ~We!R1~e_kqmeVFC) /x6w:u3b6HT;k;d=??5fhaN7"]B85?/*/ & )9BKcvS~'b L>@:`3i"mw|\eKT@]@tKQWh@'b:K[j.;52( /5:K`z' ? QfAz*Z.=0POiJu-{ pU=771$2@IOZfn="lN0VJ(z^PJ>.S/#+@=\Pobrsr[:Zx/Nhz JVafZPY)a=XPFd5r)t$q=oepntkfUBJh|oh vu}.@Vmzp$Qw<Pd[1j >~*g0J\4\IVL\Vjb~v\HJQaiTm!^Y\]UB2/6ALMA85;GRRJGNyVT^E_CNB27oi~gd[S?B0(?QX@ueN8)xvmibUFq3l%cRNN KC0'?#n3<?=>I]u%(rchx%?KKSq"O&  !9M_ p%,#)2337B]*HXWPE>ENG/ yhlGb'U>%nVOI5~vqrqqrvujX<tn^E[XNB>BH^tya{UiSPT3NC2'"'0 =#GANg[ryh\`p/wcmfkp~ *Kfdw=|  B)g7{>@H[{#>] :F=1,(*0-! )7@3m ]a1pFX`devli|go~}Y>"{oe[L4vifmvvjV<&_(l`W?cC)z`YA)#.;;4++493!"( }rP* &.:IPW`)k>Ul{y~b|OGF=-!;Vef`bk A#2AR)cCtTf !*23-`LD5 3f #0Kvy}rtj`h>c[OG/B?:C.5 &?[lrWQUaqlMp!W<& pfdcfdS=( 2.".H\i{"5/(HZeqE|9%\Aa~}lfe3bK\OQE?930:-O2h5w.wka es)EYbjs}!Lp~#$!m!W$K&B(=(=#CL\kzywysv\i=P,zagJW@IE?T5`+d#]"Q-H;JFRNYQ\EW>Q=TB_JlNuQrWbdLr?;;8.-=EDE}Pctx~8zUys}~udO8##&!yjQ<1!{q nv 5Nk 2CXs)7?KRQNI~HnBd9a<g?pEtOnPgM^RY_Ygcghcfcacbbhgqpzz}zrjc\UK5  mdckvzmvRw<~0*./*  BgvR&yobTbHB=&4,!%8JV X*T<PDQESAU?W;V,Zgy 7M_j=uc{{ tu1xHp]bgZiK]7K)>(834853[8;FXfokzb``Zc]fRhHkBl@qKb-`xk\F#iLr,`TLIG?4-("(IZ PB;754-eG(gRFEE7" ycyK`9G(, vaTGz)kc]_o~}m~dxe{lw}sow $=P[[VRZg~1@O]q %Iq '7J^fht  )/09ER`p vw%y3CZs|{unjj~mtiic_hXrQvAp4b-K',$$ .=CC91.--/39|;C|W{n* < O` t 8FOY1bEj^uyn\L?- &"';I Ue{!*<HPUJ5 ! viz`kWUN<D*6(  }Z;{sqZB}5y/z.v7s?tEsRphnttv 4RszcH7)((A@PZ\qiqx~}bD% *7@EKS\cly5INJ<.4<1 ocXOIF@f;;6/ ()568>NokV8xodayoprh_`JW?R:W?`Pcc`eUYER7N0Z+{%T !.ARRMjUV\Jl8& 11MShcnx!B_zuaXI/  &"$t=eOTHAC.A=57;0(/9;FNHBCHIR `'i2k;CP^pxeJ+ ym~`wSrHn=g0_5UHJZDiDxEw@m2mxvQ) oa$T3E77;&Oi}&y,\.4,# vdWV]^[L4!$%)2@V k }t|{dPr80.4f?7II@+a E0##3FP PF6$!2>>3)&2/Y=HMLGHRbjfW G=BQ`krzkL3! /@FD>@L ^p/::/ *;=6345750-3@Paqw x&z@_~%26-shaYNGFHnJNG-= & x^H9/$sbSG>6:Li~}}zkZF2$ #0 E` ~+Jm>Z(eBc^`y_]XW[`n6GOQU_q   '@Xv}fQhCR8>/*' !"+8lCWHGF1;%%" )6Ojx|~|pmqrllvt`VRH:/%o\LB@HYl~zfZJ3}zpd O7pQ:(}U.s^sVXYG^7\$UM#E)B1/(>qBW8@)) #0<A$@09458?>RIaWfgcx\]m0Sq>jBi-L&qTx ".?Wy~w;mWjpqtlc^br*S v tV7y|{eH) wi] VK>.vxhb_OW9I(7# 3BE>}+| ~xx ti` WJ=21>Nay*7BLJ5 nY"I3?E+T`fekwlN6(!+4-><FCEI;Q-[cjov'B` *Hd ywgZL=0${gK0  4JW\_^SC6&|obZoWW[Fa8i/q/x/)#"wfYOC6'"./)-58<BIUev}zn\LGIJNV h&3@Qd=rRz\n!,5:<<CQ\gt '<Ww)76- vnjhkq{omr{u|^gDQ2<)($(2<BEOalylUa1Q B5'ziXH8* zh'Y2K9<;.60(upmcWKD=6 38@L\l ~~| -Fb"*%4I=hGLQUXXU OG)?;8L1`-o,y039@N\hpuK.cH /$@]w  }tu~{l[J;4/ %Bc|iWI:, i9vaJ2r^TU`i{llq]~L;,!?n $5I`ve=  0AQcs6Qct~vrpm+iQakYwW{\kx\HA J,\Imavnutp|lq7Q!b3hCeUjlpy:OQD5)$'=+X&rjO8#  'IbbU@' xl^O<t&J)vXI@|3j#T:!5OSQLNYj{vp{dSB/naUIA:;BN[djhdcegedflx c%=5?A7(  !/6?MEdGEGP^im1q<wD:$ ,Datlfba``d$e/\2P/C/*/.&jN1xyuL* wsx):JZjz'E^vrQ(mRQ'1!.67!3A)_ z%0:EP` mvzz.x=rEpHqItF}JQRLGHGTm#?Tblsvuo3fQYiKDDJNKB7,$ &7"F%R/[@`O`Q\PUJS<X(bp|{tm!c4VDDJ0I!HA=DKNSXYW\c_Q>w(ohe^\XUK?2'o"K);-6224025%?N^nyvvgZRBC-9:F VckruwudyBhVF90(0Igqe3WLNcOvRYenqlidTE<;`208GT_rtokffjt bC+yY?66@OYUH@@FOSR&J;FHCNCPGLK?@3&# 0Ha}}imW[HIA;=+@@=6&(Oissjfc^U-ID=Z7p1{,&}z|-9Ke~ /F`u{jT?'%P {",2+1U+v%%7CKKbF8= 2' *7FOQLB6'/562&4HTYZ^\VJ<1/ 41<<AF?P4U"VW[gxdRLIIF?2'{k`WW\afmz   cM;40/../00(/ DS-aIlgy "A]r`>&saY[bktrbI, T8+),+#t{c^YLSHPJPKSGX1dtuZC1 /#7+;)7&300N4y<DLVbt'/)!|:RabQ?0#%17665;DLT\kv~z[N~T}i "6DN[vtgo_[UEF28:DLD5'!,>RctqZD6+%"# q`N=- {uva{SNLMOQTRI<+{tqonrxo\_>R!NMLOQK?>K2iHXajqw,~Mh+7J^kxwoyjwhzktiQ@5.'$:So3Obls|.6w.` E. wnlp'n,f/].V*K'C)@-?355(4,16/H,_)r{eQ<,+2>LQg^|_`bis/AEr:c#O B?GYjv )Fg )(/./2-50697J6_6s8Hb|pZC,p`VMDGWk~eJ.~gK-~zY?* +3:?=:9=CIPazlO9.08>CJQ[j{|~vpowFt'6HZ|cfdUhFm6x)}}hv]u[z]^YYblto_wHp0j_WUV W Y]#Z3XATJSGS8W)^"e"i%s+}07G_z{lX@-rxJj+\M:*qhcdit~yhYUY[`p~{zxx{*:P*dIqcvz{~~{sf\SE2t\G9448@KU`jrztjr(5CKQSQLDA5EEPSZb`rfmy{|zxunc[_j t|'5:}:~0!zouug^U}JvAv9u5o5d0T$E: ;EMPI>:BjRJa,p |ua'Q:BD5O*^$p! yuz wlkixehbLb-bcc ]R G;-!)Hc prkhly '/9CMV[\]]_bgo=yk-@Rgzs\F1#wgYSQR\fr~fOA;<8-  +9EPwUfTcPpJB<::;>!G;MEUI[N\X]c^o`xc{dsiknjokrju`xJw+tj]L?1!7N_e^NA93})reYOMPUXWSMEA@?<78>N`ouroln(r8uKt_qxks#8Ke3NbmqpuxK(txga`K[=T9H;98*1" !$)+'$t'M.#32*  !-m2e3]5Q>@W+|weR=, *I]mgYiLnC}@CF{ImIhDsBFOWbuAb  &1;DLNS_suf!e*o,(! (2:BHMWev-7/%_>#rliUb<_!S = %/1(  !+9CLQK@4' .E_| "=Wm| ,?R`hp{$-/..k2M9-F T^hw}xuqdTwDq5s+{'#!2EUZvUaHP;F0@"92)#  !iW MJ#H0FAOOaWqUvLrAd5N,5&"w_H6$~j\RG@BGJ{J`JEE0G!Wn (M nr`O#A@5[-t!0'N-<9EMRfar&Fn!e,P:FJ@W9a.h#p |%4EQSPKKPY_`dkw/Nn 4DRaq+<IRw]hiXwJ<+v\F4l'WG9, qHvV:$  #.:FNU^k{ *AVlyqslZlEn3j"[MB 8*xlbR@1"s[D,nS6$}{{} |,{?|Wl~/J5gDKNSYbjkkls}fO; $/BSg|x\: />MY^`cykwsw~rjeejx|oeYSTbt|sol hfc`_)e:hLd]YjGs7})! ~soptvwvitYsKs>n0f V H:-$ p^RQNtG^EKK9U,b"qx tjfdit 7EV<jWk{"!$,5t@ZNBX/\f s~vmlns+?\v .@Sfs~ t#i7_KV[PhFt=~?DIOV\^]^\ZYXSlQTR7PIB6$r^Gm.b^_djqsy[I=5-(! |tjb\PB2"~tcWSXcuoS9&%2>L\ksx(3;<<95/y#m fgmtiAt"a-V4S7X5e3u+! (6BNYfx$%$~qcT@& yh]`kw&4?GO[!i<uZ~y}r`1PbB7"'7??8,!#*12LBiUgz4IV^fou y#w8kLZ[J^=`1b&gn{mUD<:61.38;=8.!n\H6#ubL9'{fVuHX79% {wwx}snhggjr~wld_ZWYx^daSgEi6g%fhlpv #&(+-11/.3<IS\}btemjineoal\dWWQEL7E,@'8 36@ O aw %%(4DO[`bddbde&b=VGK=G0I!KK*KPIqC{;3*" 'iPPs1yifz{ZB4)fYemaTdiyk\^jqyvO/*%95\EQ\k *6)  1:;%:28:>BA?70 *-.,"  {ol vd6+Hct,Ll9fLbV?H\kvj2*.1:E6<;:KsmGEIF9i4R:% yr*l"bTD .  uZA& lPR`^WeFL(4   -=@9$)*(:B0",iB[UehtjrWgJhViixsfv +RfaZSIMgunYD+"-&  $*,##F``OA-0C$6'/21)5Q|HSD;EIQ N4; [%7PV=&];6J`tuzYV3>"+#-&5%.!1B>&_;8GZhfP@Pv>PIId$@[{#ERN:J^XhtiMB=50#*FU\M2%2831&+Pl ,UwiCOs !3@<AWm8FuHfBj3~/DWO>1'1WyxlYQB'" vd}comZpHb0]p{{uV:$!uL . -4,  !:STG=:BXlgYQxTTY.deM+      !Tmnfhm-Lo|hNDD F4J*A,-3CWY%J%CA=AatjK8i/[/Z9X:W%A ~\W]a]I jccc`J)9!U|  2Qv{`^nx~}kZb~|`B;>p5WPS\\I1#/|7X9<>?<X"^]YKGo(2FH80=StBs""9DKVp%!,OqhV^}{]>132-#lR I RP7#8858}Cn^jxuuxpoy :dzgZX\itL-zg^]k|aG<5BQA $-<MWg@VW X<y|e|]j[>ppn/IJCJe"w0402p>fGhY^`TD>mipurcA!%2CG:4M5kH^m`wAd(f*u-& ~e Ydu n TGShzsi!r(;Pi|]M|]t}  !'//*$ $00-214=B}@u;s;y?zHsVmdfdVhMofz  )/),B]hb_o%Fj:aGZl +' %+268<J^tzn`Z}fuovbvLrBjEYJCW;`<^6V*U\cqv#`2U:P@LWG=% yqt{/97-$1Ur{xnchwu[x9aTA1&,' #$ybLBA98<5y[LLH:) kK/CIK\QiUrMy<-)0:ISQFG`{rj.c;g:p5kCTg:'zoaQ6%C]cecbscUeAe4Z1R/E!1'2ENE91!aONS_XD0'&)-#tZD/4W+n}wP2" u]MDGYs~rdWJ<'0:1'!  4G\fdg{1U~._zqu~r[LNUYXK4*2?wEoFtE>He0Rk{yx;JPcy4Tgrnfm]e[bZnXfspnrwsi\SQ^yhF) pZ<`>)"{vzj[NSr_Ty5$)! /74x5n.) 04?FB5+,/=Nm^_qaaUD5(%qb_`[W]hqmsrkc\Y_ju|n|W`KEG0I$G DBFFA@(<@-PVY[^f ry)z0.8ENYfypN=*824;5E5U1q'"#Eay#~w|}wy| '6DSUMM\zty{ sj b/Z*Q@)#,06>IJ>(r_S.QHR`LnAv/||eyMa=O6J5F4;(-xu~&9KY`abjx  1EXl~<R_c0jHsVs`ltcVMRYhu$;FzFs<g.Z,I64DMU^l +7BB>5-%,D W ev&=Vp)8GV_aclz}qibXQJ?526:=;6)/2-8,@+G,M.J0I/L2V9`@f@l<t3|%u_E,   $=ILOXdjhZzAj&YH7-+5AIS_p~~ym_RC850& +>sJ[MQKHS8e/}3AVfoolkh'j/v6Ic}}gL4 #  '9HKJIJSaxqaVK=+fO@?<.! &4u>d?L9/+*?LQrW`fVzRMC7){ kN.{v~c8{uvxqlg^RHDzC]@<9")!sgaa]TIDGN U%W#M(=87E5R9U@FE2EEK[*r9BA?IZ i'oBmV`_Jb4i(v&*.**=O^ilkq #9M_q$+( &+4Ii#+.)#070&t"b-O4=,.$ ycG( }aG7-   %$"")JQQOKEIRRG!5/"Dby)4=FNNL[luxuepOl7mt~uaQ@1% $$!  xgJ. #4FU\]\\\dnkU>' )09ELH>/*7CO`y&?GDGTg~-CSew #3<BHLSevzri`^hy"198 y~   7JXenxU4&$(.797?O]bXB|'pf c k x~ylYvA`.[&W%O"H?41=NWVNA8>KV\_b [0QFR]SqK:2KcziL3,%7%>#A EO"Y&\1_Kcgbscomd}\Xcqwz   tVAx1o)k&l#eQ;&$(37*xaRK A-#4F[typmqtuxvmh`rWgOWC:&xo|otmgmSf@N605 ;H"W(_1`6c6il<~@O[[WVyRWTBc6n-m&e]NC?:*~uu6~MamkXHK[l"/:CJJGFGLSUSSW[bkqv}wfxOu;0&%:GPMOYdcU< rni%`,P073 5=N%T*N(>+ *%4>9R7a,p%y*120%mK1*4?FMX_dntrgWE<ANX^cfe$h7qJw]rrfWJGRaj5nOphpxnopjZE2&(3<??EHJPXXPNTf,?N]m "#!.%6)@%J"Zm}*>FFIQ]jsrg\TOPL;%qZKtDiBVE7F@5.#ohjmp!o)k4e=eGjRjWcZ[fUuHAFOUXXTOT\ZRK=47GT\cors{znaPE HPO+J?NONXG[DWKTI]EfAfCFE:) #0#907=(JSUSSWYZVM?6/($)7 93 /5 FTV L(?'6%A,X7n>}CC6%vfU0@:+;88AS_^RD89FTWQF;38L>aFoCt1rvxuypf_QFD-?:/'$&  "/, zrlfjqoh_XXdw #1~wGOQ[~kyz|{|~~{rhfq.=HT)`9mDuI|IEA~B}KWbms{*268?CC>7/'"'2:=&?6EBHMI[IkH~JNVZ[XPI>5+ {zlqalXiNgBg6c-Z#PJ E@<5,# }iVJ@71.u,d'S$F >!9$7)8-5-0-/,3*<-E0O/W%]gu{}|ursx|xmbZ\c$e-^5UCRSU\\]eXmRnOiQf[gjnsyrljluvi_^ep zy0u@vJ|P[i|4FMNOUamxrf\QG@;;=CLOL~Dx<q2k)g$aVI 4  |&o/e0\/T-N0K6H:B8</8&2 (#.> JRSWap||rkhlrurf[V W \aflw>\y{vpi^URSW]`^_dfkrtqqu~}iWIA<7219HWeljb]XQI=. xqty}}th}aobgffgoe|_YX_jqn`M@=<6{)uj ZG5# }reUIBDHQ\htz_LB>3 yrlf`]_ab_YM?2(#()(') +159 ? G/V2j0/4F_v}z} !r]B&+7H PTY`r,: K#]3l;v>{>zAtLn`cqQz=}%| }dK7) "'-4<F{OwVxYUQI>. {{ypj#e6cM]eMz9&  "" $,)<2T=nPet|!#$*40?GP]comnnnlmmeUJD@@@A<4137>vCkB_DVLPYOhS{^n~vi_WNE</pV8 '6?DHKQxVcSPMh1m$t{qaSI GJOZhs|zvvvv|xlbXMB5' +6GYcjntx~zme_ZPA/rllquustxteXK</&'z-y6}@HNWdpw|ojg`TJBAHSXU&N0I3I1O,Z'd$g#k$p&{')-3:?ACDGNYdkrx!3EU`gmrw}.=DB?=(@6CFETFcFtGHHHIHD=5.(w#f YRNJIIIKNPOMKFDHOXbjszu`K:+thYK<)|wqfWG3ugYKB?=<9y0c#J- woeVE5'   &0:BLXfq } #$${)k0V5@:(AFO\jrurkddfhinu#,0.'#!"% # +8HZp#)+,1:GY|kwywum\H5$ !$#!  '.4r=eIZYJi8x*"$.;BHN[l~|wsoiaWLC<61-*%"$% &-4<%H2U>eEvFC?;943321 4?&O6`GpY|l| 4Pmyl^PF@<70' o aVJ ?3( }ncZPsDh;]4T4R:QDQQP]OgOvMLG;0"$-4<DFC>725>F KN(M8JJIYJhDy7%)9EP\k~|qh`VJ8%kUA.  |wtqnf]rVTP5F8,$#)4DWl} .BR^dc_\YQF :-! '!1)<6FCNPVYa]kdwlw0qHdaVzH:0,/49>AC I T _ i q v}   '-3 56&727>5H2U/d,r)}*/2|7|;{B{HyOuXq_odpiyrvz}vojjlkjjou~o^QID>4*yocUA- ydQC5' }ncben|ubR@0# ~lT8u nlovxuqpt|xspmjcWMEBBC>4' !,7AJQZcklid^XW\bjq}|iTD6)~void_ZSMORVY\` h t"%'*/464-{&x"qgVD$5-.9'IZk z%0?LTY^eqxss{,;JX d"q?|]z #)**'" &,6E'W3cCgQjVmXsT|NHD<4{+{#|{u"j)_/V1Q2N1N1I5C=BAEIMOVVa_gnj|pv|tmhggfa[N?1+)%w!hVH=635 79>IUeuxjXF6)! |rihmonm%i(e-i3u=HT^bdfhlqtme^UNKG@7115>LVz]qdjof}ca^\akz'2=BE LOM(I7EK=\7f3i0l,p*s(v#yy rkg edd`YRNKG}Cp;h.^M7gN>0xmdXE1 vfP6  $&)+/8{AmE]DOCDA9D3H.H*B&<%3(),$2%8*;,A,J)R)Z,h1t4|5558BPar-=IT'^(B7HFUTfbyr  *2?K[m&|4yBtNq`rvx|{tfR<(s^M@ 6%#  kZOIE@ 6 .)()(&" xss{xaP@)/>Qb t~|pXC/ !-8@GRbp~.Mm ):IWfs} }rfYL @5%  %'($uh[N>+   )-29?DHJFDBEFyHuIuEw=~8641/,&whVC2$ qaQE=2( ~zzxuphd dgfd#b(\+W,U.V4U;RCPJMTI]GhIsI~B:0%$,6FYlx#9Tl  -5 754%6*:.=3=8;>5D0K-S-[1b2g-k#mpt xwwwwy}}umc]XSOLIJLNPQRQOPRUoXgWfUhSdTYUNSHOFGJ?O5P,H&?"40032)  "& +3:@IS\eou{}{~ |r"j)c2[AQSEf9w/(%#    xn"b"S D!9%6)6$60) "   *047;CRcr~~rdVLD<6+qep][ZF[1ZW TQRSWUME=9}5o3a.W$TX`jwz{~~o^QE:),;GWn!'+/:HZgr} *"J$f! "!/.7@@UFlKQTPJA7*>`  !&),0577:@B@;2" zyvtoeWF3$|vk[J:-#xrjaY UR*O3I9?:0>"GQZ] ZS KFB%@0=<5F-K*Q-X4`;fFlNwXcr%,/10,# *4@N_q.?LVahjjhc}^uYkW`YT`Gm;{/#xj^P}Bx4v&z~weSC94345777<GR\emvzgVF81,++*%!!%(+.13-496D7I7K5K/H"B=5+! wle_^ZUSSROORUX]c hmqqojgdccc`][UNF:, %)+50?9FAOKXUb^miwt}}vhUD6'    ~ wmaO>*zmaTH =50+&%/:ITZ]"_(c+h,q0w1}0~.,% "1?P_q {*s5hA\MQ[Dj9y58>HU_kw       (2:?BHQ[ab\UNJGA6( yj]OA5*"ykV?) wlc^]^^\Z]bkx !$" '9Mbx (05 <CLVblpty~ #'/8@IS]fkoonnmnt}qaR@)'1:>=6, ~uj_yVuLqDl;f0b!`` aa^[YWX [] ]([.[3]6a:gCkOlZk`jglnozu}xn_TKB<8423489<>BLXgu }/yEvZtmn{idccfkmlgaXPH:* kWB+ l$X3B@.M] ipy #',4=FOW_hq{ulcWMD;3-* "+4;AFG@3'!,F^q.DYixxjZMD<5( !(/6=CD@:2)}||xpeWHw<l3`)UOLMJD=50/131336=JRTQLGCA>8-"{y#x"wtpl"i'k)p&s qni&e1b:^=W;N7C576-8(9&7(/))*%+)..57?<3'|yy~}tlid_vUjE_2R!E:0)" pbQ>3,))) (')0:EOW] clz!*/10.,05;ACCGJMOKE9-# &0 ;HWj{~{yvrqquz|{x ts!u-|6>HSao}}}}zsnouzqid\QF;0*}%w tqk aRE7+!    /9>A?>:5~.m&bZTSSV Z&`+g/l7q?vIyP}TXZ[`joqpngb\UKC<77=IPVZZXYYXSLEBDKQRRPMLMLKLOU^hs{yeSD<978<;850+#q^O@3' !-6>EJNXgy!)l6]FO[Bp7.& #.9E'S8dFuNPLF9)%0:BGHLS^kzug__elt{y uok+e7]FRXGm@AIRZ^]TI?1zk]RJFC@7+{j YJ>86;@E{HtFn;c-S?(}rg|[gQSF@>/:#669=@C IMPUZahpy  xfVIC C C B BDHNU[ahn$z8JSWVSMqE_9K/7%!&**))*+*)+19ETg{$=Xp*%93C@<S9k62136:??DaFGIJJHG BBELQU WUPJB 8*       wmhggfc`[UOG?6.,07>EJNSVXX%T+N-H-G,J*P(W)\*^)^']%^%]$V%L%>!0&  {pcWGq7a&Q@ /" $ 3C*Q9^HiWtft%())&&'"!y(m2gC+FKPRSU\eo~|n`UG7#xmd\TG7,$#(+*&!$&'',4<kCQH7JHHJOV[^_afox $&)))*,+$ "-; K^!q+3=IXj{}xtm~cvYsSsQuSyZ|b}j{t}~~0ASdv    ,38=BJVdpzzrib\XSRTY] ` ` Z PE;. |phcbyfplfu[}PF>510.+'! }tjbWH7( |obWMF@<60z+q'i"d_\ Z[`flpokd]VLB8-#reYRJ D@=951+'&( .4#8*<.>.@,C*D(C$A<;= B HNUY_foz &/;M_r|hP;% 0F[m| & .+75@>FFLOSWY_\e[hYhSdMbG_B\?V=O>CB8K.W(d%q&z)/8AMX}esmcqPr Mbspe fx#4=@{C\DHKI`IoCu<G;W7^3^0P.326 4 //0023-# i^ iy  -|8<?EMU ` im,pRykv|z"/>IKR c0zEDCA>Ol|q^ L?8IW J5 &2NSC81/@^m]YTRb  ,:50/1AX_H4($8Ex8i b ced bZOMRPI:%$!{nycnUnB|/## qrrj`VOMTZ{W[QMIKCK@IB8@7*xxy_D;DS_ d\G(A7KMYi_|\L0  +/-,p6O@4O+^0b.^"[ [aflgZROQW}\XOKRZeqttx# =OSX[[h *2, "1A"?!A"C!I` #BVTG:'&CE+ 8JNQY[o  & M$)'"!(32`9y>u=p5s13784)-$tg^_dgfc``flh`YPNT^ceccgr/QTzKuSnlbVI<3-% "~tfWLC:2$oURRNMJ8$s*`=YOYY[RZ9WPNS"[#c*f(_Q FDJ!PTNE@BJOQF6'"!$rW:-'   %&,9HQZ\]_fpzyj}`Q8(`-h!x~oaPKYjiVC:u:rDtWuZuHo9d,]#b)hCjUeOW@C:3?.O0g/{,{%kd[Yg|tjiq|xf\WUfyzjcen{n]N A=(D-D*2&# l\X\V@)"(-. tf!d f!k#x%(w)]'K"J#O'Q.G73BJKLOSZ_ \RLK R \jt{'6;1$):B=3  $'25@<D:;:8>KGeVuhsx~!.6;;Gb7j &('#!#(-+0/#.CRRSXYe p qu$+013<HQ[_]XWUPI ?<0a$~!  +HZZQD5%yl_QqB_5N(>,   (3-")()z<uSsntuutpooi]PE7,&|v{uZC8314==1++&z{upofT=')5ANX\__R9oS/|_QPTTTX_^]acZE,  $v,n7qA|JV^gt|i]]m{!x!|~wl ` PEBB7  % -!1;1U/j-{38?EJPWblqqoifh&i8kJmUn\p[sMz8)'2Ieyzwme]TNzKqJ[H?B.;-25*@(O)U+S.P5P=QFTSYcWpJ|937EXjpg^]^aecUGGVr '/47x6a5X7d9x;;>@BHOzPwLuDe6H'&%/9HJ;$ xngfdabdmy /AT][^o~uoj`WQTZgtxyz{{xwvm c^X RNI@869?HRW`m}~xqhYEk5R*3"   ##p[D43>HJC&207851/21.+%!"(+*&  (5BO^m|~}*9DJT_kw#%&+3<HU]b/fBiWklondWMFCD+FFFeDABFJJD8.'$$%# $+2541.059962-)%##$"$$+4Ga~p_UVZan}wfVE5( yurmyjfgXbSaS`[bh_wZRF80& ,DZn !!     uonrurle_]ZQ ;!%# v\JFFGC;3-$ ~odbaR5xmfe gihcZUUY\]ZnZPa=l3|(}2@IRZcmw~   % )*#39@HQ Xacedfjqx| .9=BIVhqcJ|7s5pFt[wiyrxqykye|cedU:!""&/<C{Ap8c,Z%V(T5QDOMMLKCJ8K/I'D=5-'(+.28?GSZ]]XRJC<4,$!#&('%$$%'(('*/7?&E7F@DI@V=Z<V=K?>?.<(>)@1D:JBKHFL>M6O1Q/Q.M/E.8+0+//55<>BHHPKTJVEY>\7`3e,g"him*uC|c  #(=MZfowwpfazeulqqlngide^bUYMGE3;2-'" wcPGIPV\bmyvmkosvy~p_O{ErAmFjMkUj\fd`pZRQQRQsNiKaG]D`Bc>e9g.f$ksw r hXD, ,E_r|~#{'|/5>A@?ADLWbn{yv|"-8BMXafh/jCmYrtw}yqouzvt||{{ }wmbYN FCBCDFIJLNOKGC A@7FQMfSqXv[w]wb~jmmieaaf loqojge_TD0 (6<;'1JY^]WP P `y    mP5'&.5<?@GVa`T@)#$      "(+)$ &&&*12&pd_s]b[STDK2<0+'#uj e_T LFDE B 9 ,"  (4;=<94*xtnoijkgminrm{ot~{zwzzqkhaXSL @/# .7EVhu .AR[a lwzx%z+}*x&i#X H 9$/&)( ),1:GRY[^ aenv~ {oe^VOG@<=@DGHGCBDDB>82*#slhdb`[XX\aj}l~g`ahv *:IZix'=B6,0=N`rz{ ~$q-f3i7y88?HT]ceeddca\TMKOU[_b_`czfrdebW]NVNWP^NeAi*kh _WQ!I-;:*AHUfv~|p`Y[]]^[SNU`gf[J939>A@;33>MVUI8((0550,ysj` WMECB=4*" #'*.6?GKJ FA:,661;(F Zkrq$l)g*e-i0p4s<tFuQrXn`pmvz{xncXT[eo}ulimyq^QJIJNOQX\[`fhc^^fs|pg`YQH>4*"%%%#    #*+)'&&('"*4DNQZk  )5< @ L^p{ $,5AIKG~EuCpGkMfVdZe[b^\dUhMnCt>t?oCmEiKiVkbnmmzfa\VRK@0! zskf_UKC;3-q(f%a#]$[$[$V#H"3"  sjknnj]SV`gg`M/ '4@GLT[gvseinlg_VRV`hfYB*polbVH96?D>}/l_TJ>60-/4 77"8.7.6!: @FOYcn z !1FUVM=.(-58530/5BHC5&(,*(*0+:.D7LBUFY?\1_$gq|,;DINV^jv{teYWd{ .=KXiw"{zyvr oj'g0h/h0d8]CRJHOAP=E:36%4#0'./196A9E8O3_+q#~|sjfffd`[W{Y_ee`XNHC>6,    (06>H\t{|jS>7:=:;AGNZcd` ZUS\ k"{$$  &1?GE@:44:CEAAHQZcbUC0!  o%_&QIC;2& yog_WM @: A*I7NFNTF`6k*u,~8FQY\]dr}veZ[*d7qC{KPQRUY^ekqsvixlyxzywuuvz &+7Japtqhaft -9BIJID;1( ~xz{vnga`a^T~Ds5h)[#N(A35<'CKR Xaoyxoe^amy}qlzpz{}wng]K7$   !&&$#$$%'&  ~ v o hda^YRH=3,%   z"w"wz |yqid\ M ; )   !(-258}8p9e:[9P:B845%0,(  yjc_YND;0(),,* &$' -+263<4=4?/A'D"HOU Z_fp}  %.7?JT^k{  #$##+%B)S+\,a+d(l'v+~2~:wCnKjTl]tjv~yy({J}b}nzsuvp{nlid\TLGDA><7z4i4_7[;U=I=9>-@.C5GEKUN`M]JRFDB?<@2B&>725@Pcw-@EEA>AEFB:559BMNE7,(,.-&#&0AUehc \VUXYTLDDJXdh cZVW]hs{{qh_[]^`_^[\_~bcc^[Z\_{_m\cW\SVRORIRAN>IBCI?P;Q9J8>5//%& |usuy${/x<uLsZofknftb|_\^dnyskhhgigaZVVSNIDA@BBEJNPS[cjptw|.=Pg~}{tlc[SI?1$  #.8<<;=HTWVUUVZdnst~sxqqth{a^^}]x]sYqQuI~A<;::89:?DJKJFEFGJNQTVZ^_^s[fUYNOGFB9;*3-& !  !$%&''*,..100/-)%  +4<EMUcmmjheeaTAz)rlf_VMD:0& tdWMFA7) wn_N?5,& !'-25~4|2216=DLT_iw| mYD&3-&14=GR]hq}!.;EQ]kz#.:IV`hln#m'k-f7`EWTL`Ff@g>e:h7m1u,{){&u rt{}(4<AC?<<@CGD@;983&*-6BNUVQICCEHJK LOYgt%+0345764/"#*)))))()*.6DTcox~     %((.4z;r?iE`MTRIX?e7p2u-w*q#eYPI>4-(%*48;;;;=DJRX_fp|}unf`\XUyQxGs9k)aV MD=1!{x!xz} #,5:<AGOV]&`*c,h,n+u+y,z({ xx~xi^TF5) ( 29BKT^hqvy{}~~yqjeb`_\ZzZz[~_eloqqsx&4CSalrxyy{(,.3?KZmzyrlghlledky{rg]SKGEC;3,('''#!/: :#:!::951 )  #(*+( ~yvin^eT[HS=L3@)8'/+*/&0"/(  iS=(s_K9) '|7jDUOEV7^&fq }4MdjxXG4'"$! &+07#@$I*T0^,l#{}wsnllmmnpoqv 0>HQZahr| %3CPX^cgjo ru)x:{G~R^jv}umg_VOJGGJNSWY\bjs{ '3CTcq{|~{tmgb\UPMF>7-$ |qf`ZSOKF?7/' {tlfeffgdbepypg]O=.&#$&% %,+%! $+047=GS`kswz{~ zy"y*z3x=tFnLiLfGcCc?a<_9^6_+cj rz}~zupljklnmkfb]VzMsCm7k.e&XF2" '.49@FLQWZ]]^adfhgegfd`]XUSTWZ\^_begihgfffkpuz!)2=IYjx (/3&566B3P3^1p/-)%  " 5EPX]aflrvy{|zwtzpnib`\WWPRMKN@S6Y)`f koqtwxvr{rqte{[RKE?6," ~{tkb[UOH>3+),035787t7h7_5W1P*L#H C@<83- ' wdM2 {pbXPI"D&A+>19:7E6R1[(dk s} %.29?EFFGILW`kt~wmaUNIA:4.(',0," !'*+--/02210////1/-,+-147:=AITa my %1@Tiy "(09AGIK2PIW`_qf{l}p{tzz} "-48AP]gmolhimquwtrx~yslaXOHC@;4+"  &-2436w<p<h9`2V)KA8/ 'xpk gfc"a&^-_4`9b=c?c>c8b2c-g%iln mkkk jihg#e$e$g%i%k'l*m-p/t2x5|2}.(!}tnjfdekv |tn{hrck^iZgUdS^QZPZP[Q[RYSUSMTBU6W,Y#[\]]]^_`aa``bdin|srwkye{b~^~YSNIE@9658?FLPQNHA9 /!#, 5>E MU]'c4iBqQz_jt~ # $'+5#A)L.V0]/d-l,v+*($ xl_SG=2(  '2;@A?=v=jA_HSRHX=W3\,e$r  sjc_\TH9/+*) (! #!#1>DG INSURH7& ,345:?CE@7~.o*e*\+U'QNNRYclt|~dN>2% zgUC"1+!0369;=?<5.'! %{1k>`KYVV^Xd]j[pVyMD>;6.'"! "'!-%3#7:?BGL Q!U'X3[DaRg^oexecflrx '5CRZafkpty|#~-9I]p    !-:FTdu|vrlhhhfc\TLD=4*  |{|~{urqxosnmlglbk]kZkYhYeY`Y[YXYXXXUWTTUPZO\N_NdMlMsJyD{@|=|=x=q>l;i8f7d:a?]F\KZOXPUSRUO]JeGlFpHrMuUy_}jtzysskpdm_nZnUnNnEmCmIoTq^udxfzezc|bbb^RD:52-$~vpib^YTNKHECA@>965321,&"  |sle_ZWV[fsuolicYL@71*! !)/49?FMSY]afnty|}}~%1<EGFB=:80)$"#'1:@BFJT`jru{md\RIDCAB@=70+(&'(),/6<@@?93,&  ,=LW_hs|wtnf[NA6,~&~!|zxvsqqv #/<HT]deddccfk lnmnno%n1f@\MRWI_D`A]CXDRDJAA=:914)."'  {l\}H|6v$mc ZSSSWXWVVW[_^ZVUV~[rbgianaqctjwn}ponpqlcQ<(~uqry ,:GT_dghls~vmhfedeiouz|}~ %0:BJPUZ`gnty}0Ke~ $(/7>FIJJJIG$E/@6;;9C7Q9`=l>w?~<99973{,p#cWPOOOQQ PRZbffd`\^aejnnkkkkigdbbekpuvurrtuvxwoyk|lnnmkjijiiecdis}}vqosy~zxwxzzyvnf^WOH@95310.)# #),-,-x,j+[(R#OMKFB;5 /+'%# !&/4883+&# xmaX#R&O#Q PMJE"B$@&?)<1:;9J8Y7f9m=mClGjIiKhKhOcR[VSXR\T`XeYoRyJ?6.)%" !$+5>DC>82/-y)v%t!pl i%g)i)n#tz ~{&w.v1v.x&{}~}}}}~ ~-9A@=99:=@@?=;::6*  !',*%       '1<DGGHG K S^is |  %-157;<??><;<=BCC?<8542-)%" !"#! "& * ,+*)%%%(#/136 8 8975248>CB=6.& }upmibXMB:2.' ti`WNGA;753." !$),1:}EPYbkqyxpha[WYZ[YTNID@93,'&*/346668|BxErKmQlVpYv[~ZUMD>84/+%"!"!!$*05=GT[_^XSQRUUURMJKKG?6+&$%! }} }wspmmmpswwtpjb[VUVXZ[ZWVXZ[YY\cny %),-048;;867=DLQVZ`is{~#y)u0t9rAnGkGiDf=g6f1d,](W&P$J!F!C#A%?%;&6#1,% "+3<DKOOJHHHHHGHIHGB;0& #1@NXbgyknnfr^xV~MD91+&"  {xyx}pic^ZYXXYZYZZ]`fkqx~wl\J6#  !$#  '3:@EIMPRVY\_`bddb_\XVSUX[^bhmtzz~urni`UG9+ (2?IPX`}jyuurolhgfgjnswz|   # ,4 9AHM O*P6S?VF]Fe@n6s.v*x*|++,-19AFEA93-+-0014;CHKK G?"8+433;1B.H)K$MNOSW\_ befgg ggda_`!d jqx xohaYQJC=:742//.14689999875/)" yphcbcdc`ZTOJD<4)  !*2;CINRVX[]\[]`ehkkihhf`^[YYZ[^`_ZTPLGA91*'''&$#$%)+/378<BJQX[\[]^aegjkmqv{}{vpha\wXmTdQ[LVHPIJJDG>B896/5$42/+('('%    )1:>CHNSY[]`foz &4v@nKhUc__i[vQH>5-$ '/5:>F OYcmt&z-}3441/--,,*((*--,)# #,:Nf~|uplje_XSOMKKGB?<93+! %&&%{(q-k6f?_EWGOFIFDFCFBG@E;>641-.*/-133:3>4@7C=EDJLPPSRSRROPOPMUJ]Eh>r7x1{+{'z$vpg^RE8/,&"&( +.134678;<?@A@ACDFFGGFEFEEFHKMP|TuVmWdY\ZV]QbOgRkYp^uazdda_^\\\~]x^qclkfr^wXzPzHuBn>f:\3T,K%E@;863/ '    #'*/169=CJT^fnu} &-12464/' *7DS_lu )18?GNTY[^afznquk|d^[[]^]\Z[^ab`_]^acb_[WTRPKFCBAABCBA=962/*"} tkb[RJC>:8889:<<;:72-(! "*02347<CKSZahq{~  xpjgxendcdYeNiDn:r1t)u%w"{  $(-132.+&"~wyqtmoiieca\`VaSbQcNdKdIdFfEkEsH}IJHDA=;941./15:>@BEIQUY\]`ekpttstw|(2;BxKpTl^jghoeucx`{^}_^~Z}U|M}FCBDFFEA><95/)"$+39:<=@CECBBFJNQTSOKGB>82.*+/59<@BGO[fp{qdX OE.:<.I$Wamxzqjfffea__`cfgd^XRO&J0D8=B5G0K-N-O-N+M)L&J"HGGHLQW_flquwy#x&w*u.t2t4t3t/t*s$oiaYMB7+ }zxz}wne_YVTSQOOQPPOLE>6.% ~{ytplhffffggfi!m0q@uRwczu!+6>BJLILWdt}si^UMF@91)# &'' ,<L[jqnq|   vib^YQH 5 #''3/>4<96=8AFGRMaSpYy]y_|acefeda\ZYZ\^bgskfqbugykzezYxRtQsTr[rdpaoSnKnLoNoPmVjPf?a/['Y#Y [^dghiklmlkjilqw~}ppsq!u(n.^4M:K@JGJOHUF[;_,a+a-a1b7`<^8\2[3Y<YBYE\F_<`-_#^"]"^`bbbabehjigd_[YWUQNIF C B A>6.'" ! !%,5ANYdzixirjgjXpFx4*(%sjhjjbP?89::5)!" %34+#$%&'') !*.& $!!"( ; OYYX[an #/<N]`VKDADKKC:8<FT\YRQV^kvxqlr{ 4GZeipteaff_YQMTbkooifpnZPRYcmpmmt{wfUMKGB8'+?LQTVb w~nehry{|}xzokjai_m_sXsHn=l1m&qzuus g VJECCA6(#"%+.' ubODACD=).@N{PtOlQ_VO_Dl>;95, $(+1>K\s}uu|xqsy!%)' !5BLRXfvzz)8EKMPWYSG7'  #1;BLX`of`nWuTtOnBc5X*Q$P&P1K:E7B4C6<:7C2S*\^`gp ~wq#l"e[P!D(;0:5B1N)V'V'W'_'l!tz{uh\TPQSO?67:860)%6EMJHL TZ[SB4-(!  zka\VOF;1,/378646;;71( #/564348>?81)  !#$!0:>#@0FBNUT_\h^mXpQsN|LLOOJEDGNTVSRW_ky}  *3:>@ELTWXRH?=:6-"  ' + '" $ (2BQ_kryzuvxyrbSH?95.(1 55:DQX[XWW|_visqoucvXsSrYv`|bd}^uXhWa]`_b`ccaa^ZYPXL]MdIh@f2`\ Z`fkllkmrwyxsnkmqtspm{jrjkjmcpYnQjJ`FSFKGJGLFPFSHUIPKIGI<R.Y!ZVNFDEINUY\_nwlea^YMA:8:<9~,{}zysfY TTW[WJ#<+.5$BNV WWVXZ\_`cjuywzyusrpj_TP|R~X_dffjrw{yvtw~'=OX_flmkhdciqy $.5762/5@JQTUU Z __\UJBD MWajv#()&"#)-7DJPW`cb`]]bku}|sokgaYPF;0($#! r*h0d1c3a7_?_F`O^S[PWNPODP7R)VWU U Zcp~}yxz~xpg[PHC?~<r5f+^#Z[ c#j*p0w5~;DP]hxmmlcj\l[ocqpq|ng]YTOI@1$ y sprvz{{{ywwuo{focbcWhJq8|( }sh` `fmuvq nnlj k jd\Zbn~yigjovx"s5gF^TTbIq@7)   ()(,05L]nvvroli)f3d>^ITQNZSe`koq~ty}zvvtrrsw#~&*/344/(*3CUbhhhmsw{|xuz'8>?@?>BEB;60*('    ).,&   ~|"t,g8YFGX5j"} {m\O@ 2(%!$,5<@AA@A?<889"='B(L'S*R1K8C<;;24))!     th]RF<67::71)$$'('# *6}@wJqOnSpVoYn]najfai]m]rYwVuRqLnBj8f0`&^_b ekqyuvlkabWZQSOMMEL?K;K9I6B2@-;&5.'$#'. 4;CJMRW\_]^afqz &,/,)'(,"1)413;5G;P@QDOKOTR[W^`chmk}kosz}smgeik k hfhkr v$w(u-u1w5}74.,+2<KV^emwznfb]YRLD?831) '05;ADHKI}?t1k%_VMGBBA@@AEMXeuqg}a``a`^\\[[ZRD70. 1353!/")$&'%,&4<@@><>EJKGB=;;>>95/.3994+#%/7=CKRUTOKJQ\emqqnklmlcVKFJRWx[m]dZ^W]U[VVWNSGIB=A2B.C0C5?99<4:06*4$58984.,1:FNSTUW[^]YRKGGHHEC>92.+("     "&(+.7H\o !(/6<CKV(b3n:z<=@BA>8426>HQZbkt} !$)-379;:|7w/o#kiknpsux|}||~wk`TH?;83/,)$ o\"H-89+E MQSW\cjoqqqruz|ztnh c _YQ JEBABCB?:4-%ukedgmppmpw~zsj_TI@81( {uk^UNKKIC8.))++(     -7=CJQ[hu~  #'*.9!E(Q.[3d6h5m1u,z+{*x*q+i*e(d(h*o/v6{=}CIMT[afims{(-1357>JTY]agmyrsrmlhfe`dZgVjVnXqZtZu[v\w]w^t\qVoMmBn6s(vy|~ {vssw{{uqnnoomifec]UMD=:; =@!B+A/?/@+?'=$8#.#!$# ""!#$$!#) /6<BFI!L$N'O%PMJHFFEB<3(  }qgce|ktoqsruvz|}xnbV{OsNjNcQ`S]RYQSSLVFYD\H]M\OWPTQTRXW]bancwc{`~\ZXXXTJDGOXcq{,= L[jy $))**,.0-'! ")1:CK$Q)T-X/]1a5c9c;a=a<d;l8u8}89;:::;<=<;5/*'$#|xocU KHKNMLJD=:962)!&/7:>?;:;;7/% %,!0!0 / .#.&/'2'3'0$,$%&*+*% !(+.-,+,/0x.s.p.l/g5e;eAhCoE{FINW^acehpy}rh^WURKA}8v2m/e-\+T(O"IA7.# ztnmlkjga]YVRMC90) &#" &+. 0 157651+&(,/04;@HR]gov}znc [XVSQJ#D&@(@*@/>37:.@$F!H#I'K-M1T4^7i;qAzGKLIB=;;=?=;;>@AB@;:<AEILNPUXZ[ZUQNNLJGA=;80)!!)3;?AEIMSY]bhov~zxupkhjmrusplkihd^XUV[^z_t^q[oYl[g^aa_dcbj]o[t]r_jae`jZuPHBABA=846=FMRTW^jvzx{ucRGFEA><<?FPVZZY[`ly{xx v pg\QHGIHDA<7432,"vp lifb\XY]`c f hjnty}~ '.21.-/366420---*# ~y's3n@gI]RSZJcBk;t7{6~5{4w4s7rP:P7P3Q2Q1T4X9Y>V?S?O>J<K<P?TCUDUBWBXBZE_KdOdPcO^L[IYF[KaPcQbRbRcTfYjcrkunqmlkjggfeifnhofnbnaqcvgkqrojf`[UL>-~sg^YVQJD@AKV_bcehow||w~ph_XTSSRNG>5.& |voh]RE?>}=v>p7H9R9^7j6w888620}0|2~4676420.-,y+q(i'f'g&k%p&t%{#  &3@P_jt{{urokd[PE=72#,2'?$I!P!U#[!`ehh fccddb\SKD?94/)##'+-.,)(),.00/36;>?>===>?=<<>AEHHFEGJOSVY_gpx}wronkhb[VRRPLGA; 6 2 -&  #(-4<FOVZ^bcddcccdeghkmmmmljjihhijlq|tyxyzwzuzqxlwiwevcwdxfvjukxj|jlpv|  $*1;DMQUWZ]bdb_\\_bfijmqw{x~s}q{ntklfhfffgiiojthwdxc|cegie^UOKID>4& }zunihhjlkihgjklk#f'`+[,T+O)J(C(:(3(-'*%)$'!%"! ## $"$$%$&"'!*+)&!  %3AO[gqz|yrjaXPID=4)  zohb]WPKHEA<5/("       "# #%#! ! &+- . - / 5? KU\aejr|    "*2:@CFHFCA?==;9987678741.+**($ $(%"*2 8<@CGIIJJLNSYbhmztlz`VQMLFA91+$   #)-"1&5'8)8)8*9*9):(>'C&G&L'P(R(S)T*T.U2V6X9[;_>d>i>o?s>u?t>r?n?jAeDaG`KaMbOdQiTqU{UUQMID@;71,}'$##$'+17?DKQWZ]afkptx{|{yuo{hrbm[jUiNjIkGgI`KYNRNNNHNDLCIBHCDH>N:T5[1`0b0a/_-]*Y(U'R'O'M'M%M"O!P R!P!K!D;2'      &057;BHMTZ_dlu{~}z w wy{ !#%&(+/49==;r9h7`6W2N/E);"3,&   x rngb_]\ ZWQ#I*C1=57<1E/N,W*]*b,e0i3p6u6z4~0,~)|%|!~ {#y&t)m0h4d8e9h9l8o5p4r3u/z+'$   |wojd_\[ZXUQJB90&ytoljkjfc^X RNJFA&=2::9?:FEBAI>P@XFaLiQkVjWgYe^be`i_j]j\e^^b[k]u__`a__dknonkimrsttuuz~xpkifbZUOKIFA91& %-3579;?@BAAAA@=94-'#xn ea^ Z W TSSRSQNJECBBBA?><:73/({x v u spomkhfebaabe gkotx!z&~,38;>?DJS\bfintx} zqi_W P LHD?< :9;;97"6'7.759@:K<T>[B`FcLhOnQtQxQ{S{T{U{W|V~SO|LvJoHgDa@\;Y6U3O2J1F2F2I4M7P;PANGLLKOKRLVNYM\K_GaEcFeHiJmGsCw<y8y6z3z1y.w(s pkihih fb_^\YUNGA>=>=:8677863.*&$#"   (2;CKPV^fow{of_[ZZWTSQPLG?6+"    sg]SH>4*" '0;DNXblu{vh]SJC=84 0)-5,C+R)`'n%y#      }wrmihhh"l)p,v-{0148<@BCDCC?:3+$  "(.48=BHLQVXYZ[_acefjow &.38;>ABEHLPV]cjpv}zsja[TMC:0& ~}}{{z{}xsqnlhc`]]_bb`]ZW WSME=60,($! "# %# !#$$"&&)*-,105374:3;.<'<!=<;:8789":*:2;7::9<8=7A5E1L.U,](e&l"u{vniffefhjmnnlg^UJC=85469<?CGGHGGGHILQTUVVTRPNIGFF}G|LyQxTzX|Y}X|U{RxMwGyB{>};~:~987751.+'# #(-/0/.*%   "*1y8o@eEYJQOITDZ@^;c8h4m/t)|!}}~|uplhfca_]ZXUQMIFCA@@@@BDFIKMNNPPPQQPNLJHHIJKQW^gt}tk`RB1!{ pe]'V1RM6N-O#QS TUTQLIHGFCA>;;==<<;=?EJORTVW W W WUTSTVY[\^bfjot x } $&()**)&} vplg b_[[Z^adgmv  %+17:;84/+(%#!"%(,27:?FNU\cipx !+3<EOYczluso{i`TH:-# !##"   !$%''~((+---~,x,s/p2o3m3m2m/o.s/w1z4z7x7t6q7l9h;e<`:`4a,g$pz ~~}}zwpliec`ZUQOPQQOKJJMOQNJFCB>8/$  !(-5=GR]el ptx%}+.120+% {xwtqnlmortromjjkjhfecccb]XSPMNMKIFGGHJF@92+%&2?LZhs{~wqid^WSNJFB=841.+'%!      $*/4<DLT]ckrx~~ukbXOG@<;:998530,&  #')++*))+*)))*/367}6v4p1m0j/k/l0m1l0j2l4m9o<r>q>p=o;o8o6r5t4t4r3n4j3d6_7\8W7P4I0C-?-;-:,8,5-2,///2053;4=5=5=5>6A9F;L?BGMRVX\bgkjhggghhhea[XUSMIC?@BFHIIJ~JyKtLoMjKfKcL`N^Q]U^X`Zb[dXdWcTcRdQcMbIaG`G]H\K[OZRYTXTTSNRGOAK:F4?/7)0$)$  yvurnkihjjk heb!`-`9`F_P\[WcTjQpOvM{KIHILSY`fjou{{vrommkkiggfedcccegjklkllmmkhfdba`^|]x[sXlUeR_PYNVLSKOLMNHQAW;^3f+n#u|yrldZPHA:2*!   #%&)*+*('$%%& $ )5B P\ht  {vqlg c]WNGC!>$:)6.25,<&A!HLPQR RQOKJHIKNTX]cfilnopoonnm~lvkohjfbb[_T]QZNXNUNUNUNTOVPWQZRYTYTYUXUYWZY\[]\_^a`eaicnethzi~iihiknpsstvwzywtpmlljh f cba_\VOHD@ =$9(5.13.6+<(C'J&O$Q"R!P"O%O-Q4S=UEWNWWY_]eblgrlvpys|u{ !'*++-011.)" |vronoonkhhhiigdcxbrckfeh^iZgXeWdUdUeRfJfCf<g5i0m-s*w&z!|!#&*,,,,--///../2553/)$! #+29@DHM S Y]aehmqux}%-49;===;<;;<?BGKPQSSTUWXY[ ^$a(b*d-d/d2`3\5X3S1N-K(G#B ?<: 96530.,*)(''&$! xsnie`ZVSOLIFEDEHJ~LzMxOxRzT|W}[~_cfjm~p|qxrurqqopmmljjhgeba\^V[SYOYMYKYKZJ[I\J^K`M_M`L_J^F\AYCKRY`eimptx}   }vqmieb][~[zYvYuXsXrXnZj]ea]cWcPeJfDg;g1h'ijj loquxz|{||~~~~|zxvvwvvvy| !&+0356667:>BHOT[bipvz}|vnhda```_`aa`]YTOJFDDCDEFHHHIGFFFIKORX\_aa_[YUQNKIIIHFC@<9878:=BHQY_ehjlptwy z ~ !"#$%$$%(,16;@CINSVWWWX[^`bbdehkmljhgijjifca{_y^x\yW{R|L|E{Bz?{<|6~1,|'z$v ronk d[RHA;5-%   %'*-../.,,-./12 4 668787#7&7&6%8#9 :;<=>?@@A@?>= : 9 851-(#  "(,//.,*)'&$%',/5<@CEHKLMORVZ^beg|gwgterdrbs`s]u[vYwXzX~XVVSOJD>94/*'%~$|%y&v'r'o'k&h%g%d%c(b)b+b.f1j4o8v;|=???@@AABBCCDEGIKLNPTWZ]`cegggec`\XSNKGA;72,'    "#%'))+++**(%! xqh `WNGCA="8$4&/%,#(%! !###"    %-7COYcmu} $+037:>BHIKIGCA=70+&#$'()*)((()*,04:CKRUWWTSQNLJHHKOQSRNID?:841126;?DFGILQTWY^agkn omkfc`^YWUTTTSQLGDB@ ??ADKRZ_b c ba`^]\]^bh n u x z y wusqpqsvz~~{xtrrswz~}wsqqsux|}uokiijllllje]SH<0(  !$&),049;==??BDEEFEFHHHFB@>=<<;965323322x2q5k8g;g>g?h@jBlEnInMnQnSkViXgZf\g^h`l`o^u\z\\\\]\ZZYYZ\[ZYZ\^__]YUROKE?943235589<?@@@}?v=n=f<^:U7K6C4?2>0@-B)E#HLQUZ ]__``dgkopqsrrrqokg f fiklln#o'r+t0w3v7s:q=p?q?r<u9y5}/( !(+-048<>=94.*%  $&(*-./ .,*'*0,81A7I=SC[GbMhTl[qbthwjwlwoupsspulygyaw[wTvOwIvCt=q8k6d6_8[;V>QAKCBE;H6I4I1H/D*C&@#>"=$;%7'3(1'/&.&,)(*$*('# "&).5=FMV]dmtz~vme\SNIEC@>==?@CDGJ{MqQhUaXZXVXRWNUISGNDJDGECEAD>D<B:B9C8F9G:J:L:N9P9S;W?ZB]E^G\HZLXPVVUZU^T_SaSaVbYc^dddhbk\nTqKvBz:2)!      ! !!"! $( / 6!<"@"CDGIL OQSTWY\_`]ZUOJD=4*  !& -6?HQW\`eh lkki'f/b7`A]IXRPZGb>g7j2m/o.p/q.p/p3o9p>qErIrLsOsSoWk[g`debi_n\sZyVUTUVWVURRQQQRRTWZ]~^|^{\{W}QJC<4.(%#  {vrqopruy|xpi}axYrQnLkIgJcMaR^X\^Ze[kZqWvUxSxSuTrUpWoZp[r]t`vbwdwexeydxaw^tZoXkUhRiOmLsIyF~DB>;631..----/357:<===>??@???><;741/+*(*+,.037=AEIN Q UY\^` ` aaba_ \WTOKFA<60+'!   &,03322359;?CGLQUXXWVV W V X Y W T NHB<4+#  %+3:?CGKPV\agjlorxz{zz{}~{upjea[SJ?6.(    xld`_``YPMNQUWTRRW[`ba__adikgda_cikklou|{ wtp olf_[ Z\^ _ ` __^`bdbbdilomgb`^ZWOC:520-*%$%(,...16=BGFDEIMNMIDDHNT XXZ`g ouxxx}(5:72125<>7,$ ",1+!!$     $/1*!"*5@F&B,7163;5A8F=LEGJ:J9J>JEMLRRZM_Ab7c8e<hApIyD6,08<E@1"!"!  xuoh`[VSRNHB=;;>??@BqEiKjOkQiPeQ_QZRZTbViTlOjKdH\FYC^Ad:e1a*Y#PILRTQMGCHR[\][ [ cq{~~~$)()+/3540+(('($ !)./,,03652+)())'   #'&$&+*2//2'0")!&,( ',++06AMQMEyBnAgDbJ^M\FX>R<N<N@MHKNIJEBB=@>BABH?N=M:E5A5E6K4T1_/a,\*W-X2]3d5j6n6h6a;b?jArB|AAD}K{RWXWVUrWgYeVfOgHg@bP?U=[:_9_9Z=TAVC\Ac@h@jCdK_R`WfXmYqZr]kdalYnXmWiPfGf:k(prttuz   #%%%&'+01015=EKNOQTW]bcdfnu|sg^[YYVOGCBBCC>:;@ ENQNKJKLK#F'<)3'0!01%3025-1),(*)+(0&6!73* " " ,+&"#)29;81,&,583-*.6@EDCAAFT`b``fnyzwuu{|tsw}yrlhhkmf_]ahpsnfdddjtwqlntx~|vrtuvz{ojijlld]Z^afpsmhlpvxsdYTPNNOG=8;?BA7,%$%&)($"*4@GGC@ELT\ba\]binle^\bhmong`aege\RMPX^ac`[Y]a_XK@<?C?80( %('##',"0+5,>(E%I&L&K'H-F4G4H0G)E"B ?%@+B+F'H&H&G"G!J!P V\a d h pz    }|zyvrlhefec`[XVVVVUTRSVWWVTOLHC<6-$   | sstsrld\Y[^a_!Z!TWak"s'z+~+)''*.130./38<=:67;AEFC@AEKRVVUX^fkpponrw|~{zz}|vronnmhc_]] ^ _ ^ \ [\]^]!\!Z#Z'Z/[9\@\AX>T:P5M3H6C8<33+*"$()().4?GHEB><BJLHEDIR\`]ZWVZdkkhiow x n!e``^TH@<; ;:1 &      !#%'*.27;@EJORSTVX[_beint{~sjjnpldVIFFHIHC<9@INNKECHPW]`a|^zbwmsukxevaq^k^j`nbva|aacfjlmlnqu|woha[UME<5/)%  #+4<FPWVQKF@<5.'$#',2540.+)'! }y(u1p7n?lIjPfUcX`WZVWXU]TbSfThTgVbW\YY[X\W]U[QVHQCKBFDAF;G7L1N,L)K%L"OOLC9.'#$+3:?CFF GGGFILORW[ ^`c eikmpw ~ &)*'# $)-,*)(&%#   !%'*-/3566543222//.-.//.,,,+++(&%"   !"%'()/59<@BDGIKKKIGGGGEDDCDGFFFEEIMONOOOP SSRPL IHHF C>; : :;<<:99;?BDB?=<< : 7 2 .++-0244 6 7 ; = = <975 543 1.*'(*&*$+ 048= ?>=BLYforqprtvwqjeiqz}~~}{zwuwvkx_{ZWVTRLE@=83,%$*.,(&&&%#!*131,'#   $(+-038=ACFIMRVXZZZ\^bdffeee ed`\XSOL#I(E/@8<?6B1D,H&K LKKN RXbkv  ~}|||}}{vrmeWE7/+'&! $&%##&((%! {ojjn s wz{{~#)/5;wBqIpOtR{RQPN}M{L{K|KzKsKhL[NRPPOTNYI]C_@`;a8d6h5m3p4q6o7n:r:}:9878:=AFJQVZ^`bbdefhijlpruxxyu{x|}ywvuqmkieca^YVUUVVTSPMLJHEA?=@CEGHGHJMNOKJIIJJIFA>==><:89<AEII#J&I%K"LMK"H(D0B5A7A7B6A3>1;19/7-8(:%9&7,677B:K?RDXI\KaLgLnMoNoNlNlKpHvE~DDC@;73|0v-o+f(_%\"\`dhlmm mljhc^ZYZ]^^]]_ ]YSMF@:9;=?BBE GIGFC>:8898767:<;85/("  #,27<BGMT[bipw|}|{yxy{{tke`_`dfgimqvwvoh^WRQRPJGHLOOLE<1*'((%  %*-+& &0:AEKU`krtqopuwpj e&_,Z5S<NAG@D>B8?4=3985A0L-S+W'Z"_glon i c ^]ahpuvuvx{yuk_SMKNPSTV[bimmjecdiqz}zzyvqmigfggecccddz`x\xVyR{PzNxKvGuCs@m>e?ZBNCED@D?D@H@L@S?X?_AcGhImFuD{B><<~?}E~KPS|Vy[w_vauauaq_k]c\]^XdWjTmTkSfScU_W[ZS^H^<_/]"YXXY[ YYWZ]__`][YYYXZXWWZ[\]][[\]^`bbegknprr{swvswnxnyqzuxvxxw{wvuussruwy~|xurqpqqnkhfc_ZRKGEDBCEFIMSX\]]^bglnrwz| %+27=DJPTX[]_bdfffggilnnnooqrttusstvwusppprrq|qwrvswu{x}{zzz{{|zwqmifedb^[Z[\^^\\]_beffefhhifb\WTPM"H,A6<>8D5J3Q2W/\-`)^'X&Q%M$L"MOOMIGEDCB> 6 / . 038< ? >=?CHMK C#<%<%@%E&L(T,Y-\0b0i/q/z--}-t.m-n+o*r*v+x,w,t*v({&$" xsu| }}}|zvpkjihc]UQRW]cimprwz}|wpjggffeb]\]_^YOD>;>|?{@{>|:|3{0y0w0u,u%tuts r qrssqlgc_\YWTQNMMLIE@=<;;<=>@BFJLLLLNPQSTW[`flqtw} "%(++,/369:9879:;<=>AFLQUWY]bglqwz~}zyupkgfgkrzzuqoomhc[RIA:0&#' * )'&',2:CKS]gpv{|z{~  %)-/35678750*"       ~ywuspmheeffeb^~\v[r\q^p_n`iagchhinltlvjvdtYrPrHtBv<v7u2s+r'r&t'v&w%t"pli gfed a _ _ ace d$b$_"]]] ]\[Z[_eimnorw} #&*+.14568:>CINRW[_dhlorv{}xy}|uuwxyzz}}vsw{~~|ywut|q}pnlljihgghihiijjjjhecaa`aba_^^^_][XXX$Z)\-]-](]!^adgii i i"k%n(o*p-n,j)f$e!e"c&`.Z6S:N>IBHFDJ@M<O9O7J7F<C>B@CBEBFCGIFNFSEWCZB[C]@a;e5i2k3j5g8e=e?hAjClFlGlInKpKrHtFsFqHlLhPfUeYd[e^cb_e]g]j\i[fXcS`K_D`>_;^7[2X,U&S PLE=4 +%! #(-26:>?DJQYahlqux{|||~~uolihcacipvyxtomlmnmjhhjljf}^zTwKtErBp>oxCwHxMzQzTyXyZ{^_`cgmt~  ~||~"(/5:>?ACFHIIKLNPQPMIEA=;7433356642.-++*))(+-./.-,,..01257:;<;:976433346799:;;;; 9 : ;=@BDEGH I&J+J0J3J6J:L=OBTGXI\L]N_RaWd^fdfjdmboap`raqbraq`n]i\d]a\`\`[`X`U^SYSVSRTQROOKKFG@D<@;==8@4E/G*H)H)H*I)L)N'P&O%N%N'P&S$W#[#[%X'U*Q,M,J.H.D.>.8-5*4&6"7751,&!  |yupjfca^ [YWW W X Y ZZ[^adg i&k(l&n"pstuttsvwwxy{ }   "(.04:AKRVWUSONLJFDB BDGJ K#H&C)?,=/=2=3=4;5<6>9A<D>E@F@D?=>6=.=)=$; ;::;=>=<:742.*'%$$$$$"   !$'+..-,*(&&$"   !   "',/13579<?CG M T ] e n u {    }|}}xspnnoponmnoonnmorv{}~yur~pynrmlkgkci_hZfUcO`J]CZ?W=U:T5S1S-R+R*Q*Q,Q,Q,R*R*S*S-U/U.W,Y+\+_+_.a0b3c4e5g4f2h1i1j0k-n+p'q$r#r$q(r+s-u.w0{0~36:<<;<>AEGHEB>94,#  %),/222220.....,,+*)(&$""$&()+,+-..,*))*+,,+*)('&#! ""#""  !$(+,,+,+*(&"  "#&'()+./101259>CFJOSW\_bfiot z"'))((),.//+(&%%&%#  "#   {yvsqnlhfdb^]\\\\\[YWUROKGC?=::841+&"    %*.001245 5 432235"7'9-:2969;9>8A7D6H3J-L(M$N!PRTX[]`bdfhgfdba`` _!_!^#^&](]*\+Y(W%T#R QNMKHGEC!B"@#=%:%7$8#9$:%;&<(>)@*C+G-H.K-M+N)Q%T X\]^^`a b b`][XYXYXVVWZ]___^^^_^[YVSRQOJF C A ?>>< < = = >@AAAAB E G H IKMORUVY[]_behkosw{}}zxsokfc`^[YVRPLID?:52.,)&" ~{zxxyz{{} ~}}   $*06;?BE HJLNO P R!R$Q(P*O.N0M/M.L.J+J'J!IIJ JHGEEEEEEFHKNQTWZ]`cfggghijkllllkjgeb_]\ZYWUSQOKIGB?<850-'"         "##&).39=@CEDDEEEB@?>>?=:7533220//148;<=>?ABDEEFILPTUUTRNKHFB>;;=?ACBBBCCDCBBCHMRWY]`fjostuw}~~~}xqjd_ZUNE>:8753.*((((%!"$$##% '))'%#!%$)%.(2*5,5-4.4/508284754516/7/8/9/8-8(8#76642/) $    " & +29= @ D I O U Z _acfjmnnlifec`^Y UQNLKIFDBBCEGGHILPRRSPNMMLJHEBBDFIKJIIJJJHEB?>=<;952/-+*&$! !!   !*28>BEHMQTUWY\^aa`]XTPMIEA= ; :::740.#.'.+./,3+6+:+;-</;0;0;/;+:(8&7$4!210000/02 4 79;<?CFLPSVXZ_acdddegjlmnononnlkihggfeb`^\ZYWVVWZ\^`acdfggecb`_\ZWVTSRQONKJJJKKJJKLLKKHGE}D{By@x?w=v=x>z>}????@ACEFGJ~L}O{Q|S}U}W~X~Z[]_cehkoswz~|ywusqnmjhea]ZVQLGA;50,(%!   #'*/269;=>?@ABDDEFFEEDCB?<976776777789;;:8754344468;>BDFIOSX]cimqty} |x$u(p,k/f2`5\:X>UCSGPJLMJOGQEQDSBS=R9Q4O0O+N'O"ONMKIFDA?=;:9899:;<=?BDGJKNQSVVWWUUTTSSTUWY[\^```a`_^]][Z{YwUrRnOjJgDc=`6Z.W(Q"MIFD@= : 987431/.../247<@EHLMPQQRTVWXXX V S OJFC?=<=?@BEH J K I G E D CCCEGIKOTXZ[[\_bfjmqv{!$'*-/122221/-,)%  !%)*)()+,./0121/*%{ s l f_ZTPKGC@<9630//./013342/-, *#(%'''*'+)++*-)/&1%2#4#6#9$:'=)?-B0F3M5S5Z4`3f1k1p0u0y2}45677741-'##(.49>DIOV^elrv{}{xuqke_XOE:/$   #&(+-/1124455667889:9987541/-,+*)('$#~!|!y w v!v!t#q$p'n*l-k.l0m2n3q7t9y=@DINTY^aefiknpsvx|~{xvtrponnnooonnmllkjkkmlnoqrrsqqppnn ljhec^!Z$U'P,K1G6B9?9:;7;4<0>+@'A#ABDH MSY\]]]\[WSMHC??@?>:7765520/.025|8|9|9|:|=|@}B}F|H}K~N~Q~W}[}`}cdfhiknnoprtx{}}||}}}}|{|{|}{zy{||||~~~zwtplgc`__^^]\[XTNH@94/*&! }yuspmlnmnmiebbcgjnorux{||{{|  !""##%%$%%%&()+,-037:=AEIMPRTUUUTTRPMKHE@=852/, *'$"$!*!. 269;;<=> ?AAAABCCCBBAACFIMOQSVWY\^`beimqttttsssqpnmlmmmmlmmoqrsux{ ~ | | | | } ~ ~ ~ ~ |ywtpnnmlljiigeb\VOIB<61,(#  #)/48>DJRY_dinrwz~|zxw u s s srqqpmljihfe b a _ _ ^]\[Z"X%W%U%S'P'L(J'H$E$C%A(>-;186593<0A.G*M'Q$T"U UVX\]_`_^^ ] \ ZWSQQSUXXXXWVWUSPNMMNNONLJHGFDB@@@ACDCBA?=;:9 : < @FMTZ_bdhjlm!o#s&w)}+-.034677{7v7r7o6k5j3i1h.e-c,_*\(W%S"QNLJKJKKIFDA?;865432/.*&     !&-39=BFzIuMrPqRqTsTuUuUuUtTrTqTqSqSqSqTpUqWsYv[x^xaudohhlbo\qVrOsIsCr>p;o:l8g8c4`/])Y#USOLJGEDC"C(B.B0D1D1D3D7C;A?@C?G=K;O:S8X7Z6Y5U5R4N3K2I1H/I-I+I(J%M$O"P PMIGFGKPU[cksz   '-17<ENTZ]`adhlqtuvy}|ywwvtqmjhhgfeb_^\]\[XVRPNLKGCA@?>=:7421347:>BHMRUWWVUTSTSQOMJGB<4* ~}|}||}  &,39@EJPTY\_``bdhjmpsvy|}}}~~~}|{{{ywsoliec`_^^^^___^_]\ZXVUUTSSQPMLJJHGGILO QTT!T%T'T'S&Q&O(K)H*E,D-C1A5@;?>=@;A8@6>3>/@*A'D$G JPUY^bdfh i k n s x }|xspmlkkkiec ` ^__bfioty~|zyxxxyz{zwqjc\XUPMHDA>94.'       !#%&' ' (*+.37;==?@CGKNSW]dimop q r s v z~! !"#$#"!!  } { {{yvsokgeb_\\[]_bba_\YXWVTTTVWXXUOKGEC?<:876530*$   "&)-148<@DJNRVZ]aehihihhihgfeccddcbaaaaa````abccdccdddddddeefffefededeededd dcca$`*_._4_9_=_A^D]E[FYHWKUNSPPRKSGTCUAV?U=T;U:U:U9W;Y=\?_AdCgCkCnCqCtBwByA|?=;;:986420/.-++++,,--./01123346899:;;=>??ABBBBA?=;86521.//002257{9x<t?p@kCfD_FZGUHPGIFCD=A6>-<&740,' "     !#$%'((()**,./00234579:=?BFHJLMNNOOONOOQQSSTUUTUUVUUTTSTSRPNMKIFDB?<;:8640-*'# !$%%&'&&#""""#"  "%'(') ) *))(' & $"      }{{{{|}}}~~ #'*-03579;<<<<<;9:889<?BDFIJMOONMJGEC@<852/-, *&"!)/39<@ABBACDFGHJ K#L%N'P)S+S+U*W(Y']$`"e!i"l"o prtvxxy z ~  !"""! !!$&({*w,t-r0p0o1k2h3e4c5a6\7V9P:K;G9D7C6A4?1;-6)2%. )#    "%(+/38>CFIKLOSVZ\_adgjlllmnoqrssuvvxxvvuuvxyzzz{|{xuqlgb^\YW T R O K F @ : 5 2/.../0!2"3#3%3&2'1'1*2-3156698<9>;@;A:A9@6?2>/;,:)9'9&:$;$<&=(=*=-;.9.6,2*.(+)')%*#*!+ ,/122.*&! "#$ % %$%$#    '.6=BGLPSVWVTOKHC@><::;<=>?>=<=>?>??@ABDEEDCCBB@><;9:974/)%   $& $!   %,27<@FIMNOOPQTUVVUUUTUTRQPQRTSRPMJHEC>;8 66678752/,(%     "'-26:=?@BEHLQUXZ ]_bc ccdegko#s&v)y+|)(,2:ACB=;<>@A?=<@CFxGqCj>d:_;[>VBRFNGKCFACC?F<H8K4I2D2>2;3;5;7:7:748.7,7/532:/=,;)5)1)2*3,5,6-5-1-0+2*4)8(<(?'>'<(;)<+=,C-F-E,B*B(A&D$I"KHD@>>@@; 40////)!      !##! !$%%""&''%##%(&%!#&&$        !$+1335:AINNMNQTURLEA>=;82,'#" #&*.0/..038<>@DGLPRRONOPRUVTTVY\^^\ZZ[\^_^[\]^`_\WSQPOLHB<972-%    #"!! #'+.0//39<>?=<>@?<72/0110.+,0576311331.)$$')(&"  !%(+1:@EHIIMPSSSRS W [ [ Y VS O L I D=842488988;>A?;86664.&   "#" !')*,049?DFGGGKOQSUVXZ[[YXWWZZ[[ZYYYYXXWWXZZZZZZ\]][YXVUS N J FC@=; 73/-,+*'$""#$$!"& '%" !#&'%# !$$"" $ ( . 4 6889: ? DEC@=;;;;!8"2"/+++.,*'&'),,*)()+/0.+ ( ( )+,+' % " !"!#%#  !"!&!& $!!%")&**(-%-","+%,(.)1*4*4+1/+3'7&8&7&5%4!3567521368874337986457:<;:7568886469>AA@>< ;:72-) %!%#%$$"!!"&('$! !##           #(+,+)'&&%%# !#$& '''),..+(&% % ###!    " # # !!"#"!"!!#&), ,"+#)&(((**+*,*.*/*/*/..2-6-7-8-8-7-9-9*9(9&7$6"4 441.*%! %+,,-.148;>@@BCCA=:6345665668:951,)'()('''(*,,)&$%&(***++,/0.+(&')+-/147:=><9654577776541-&  $(*))*++*($      !##""%&%&())'$   "),.035787531258:<<=@CDFFGGJNSW[\^^^^][XSNLKIFC?<863.*&#!!%(+-../121100137;?CDEEEDCA?<;<==>><;7431/-++-135652 / - ) &#  !$'***))(&%$!!!!       !#$%%$!    !"$"$&%(&*),+..1011,1(2%3%5(6*6.5/4.3.5/5/41110/.*,#+)&#            "%(+///,*&%#      """!!#%&&&&%#   !$(/48<?BEFFFFFFIKMOPQRTUTSQP P PSVY[_aehjkkjih h h i jkkjjk m k if e d e efggfffgfeb`\YWUT"Q%N(L*K-M0O5O8O<M=MAKEKKLPLTLWJYG[C\C^CaBa@b=b9b5d0g,j)l&n#n mmmlkjg e egjlnnmnnmkiebaabaa^]\]^\\ZXYYZZ[[\^`aa`_^^^`abbbabba_\ZWUTROLHD@=82,&#"    %+039>DIKNNOOOQTWYZ\]^`_^\Z Y XY[^^`abcdca`__^ ]!`#a&c)d)e*g*f*d+a-\.Y/U0Q0K0G1E4D6@7?8?8=8<:;=:A8B8C8D9E:F=G?IBJEJHILJNLPNQQSRTSWTXVXWYYZZ[YZWXUUSRPOPJOFNAL<I8H5F3E0B/?/;/703113/3-4*2'1&/%.$-$,$*!*+**++ ,+)'%$##"###$%&()))*+,,-.0122243210/..--,+)('&# "###$&'(&#  !$$%(*-..+))()***++,-./.-**+./147:=?ACDDEFHJMQVZ_dhlpqqpppsuvwwwwy{|{ywttuvwwvtqpolhbZTQOMKHFBA@?>:52//.///0//111/,*(''(''&$##!         "$%&'(*+,,,,.012334579:;=>BEJNPSUXYZZYYXYYXWVTRQOMIHGGHIIHHIKLNMKKJLMMKHECAA?;7300//-+)*+.122}4{5z7x:v;r;p8m4l2k0i.e+a'^!\[Z[ [[[[ZZYWTPNMMMNNOPRUXZ[[]`dfjmpqsvy{||{|~  %-48 > ABFIMNNMJ!H%F'D+A0<69<6A3C2D1C1?0</:/9/80724201/1/1.3.6,9);#;<?ADFHHHIKMOPNMNOQTUUUX\"`%e&i&l#nptwz| |!zxw!v#t%q%n#hd`\YVRLHEC@>;9879:<>?!A$C&E'F)G+G,E,E*D&E DEEFFGHHHHHHHHGGGEDB@<9 6 20.+)'%$"   !&*,--//0000/0111/+&# !%(())+.////0369:;;:8:;;:999 ; >@@> ; 9 8 8 8 642223441 -)%" "&(*,/49=@CDEFJKJIG#G'H*J,K-L/L1L3L7L;O>PBPEPJPNQUTZX^]__`a`d`g`iamap`q_p^p^p`paqcsas^rZrUrQrNsMtJtGrDpBoAmAmBoBn@n=m9n6o3r2t/v-w+y'{&}&&((&"~{xvtsqoljihhgeb^[WTPMJFCCA><987543}0{-{+{*{)x)u(q'o%p"r"s"t sqppr s rpmjijmopqprtw{}~ "%),/037:==;976530-)'&&$"   "#%%'(+.1333211 2 3 5 7 : >BGNSU"W&X*X0Y4[7[:[=\A[D\H]L^N`P`R^UZYX^UaTdUfUhUkVoWrYv^xazd}ffgghikmnorvz~}zwtsrqpo~kzivfseqdpbpar^v]x\{]}^~^}]~\[XXW}VzTzPzMyJxItFqDlBh?e>a<]:Y8U5R3P/N+M*J(F'B%="73/+%!   !!"$%&'*-1469:<;<=>>>==>?ADFHKMNPSUWX[]_bccba^\ZXXVUTTTUVVVTSSRRSRPNLJIGC>71+'# $())**-14679<AEHIHDA?=<9631114777768;==<<=?CEGECA><:83/+*** , ,+*)*-012358=A D!F!G GGGGGFDB@@@?><840.-+*)()+- /"/#.#,#*$($'$&%$$##!!!"#$$&& ')*++,++,--,+**)))(&$"!  } { yxxxurokhgdca`_`cefghiikmpruwz #( .1479<#>'A)C+D.F3G7I<J@JDIFJGHHHIHHIHJFKDMCNCQBTCXD[F_GbFfFjEoEtExD~DCCBBDEHHJLLNPRUVWZ[_cgijkkijjiggfggihgd`]}ZyWwTrRoOjMfK`J[JTKOIJFE@A;>6;17,3'/",($!            #&*-/135!5%6*6.6174878:9<9>:@:A9C7G6J4M2O/Q-R*R'Q&P&P&O$O$O#O"P"S"U XZ\^_!_$`'a)a+a.`/a1b2c2d1e/d-d-c,b,_,],\,Z+W)U'S&R$P!OLHE@<840-*'&%% % # !      !"$&(*+-..-*)'%"!   #%'('' '())*)*,-/02 2 4!4$6'6*7,8-9/92:6<;>A@FAHCKFNIQLUOZR^S`UbVfXjYoZtZxZ|Z}[]`aceefghgfda^][YWV|UwTuTqTpToRoOnMlJhIfGdGdEdDdDbE`G^K_M`PaSaU`X`Z^\]_\`\`[`Y`YaYaZ`\^`]b[eYfWhTjPkMmIoFpCp@p<o8o4p.p)p$n kieb ^ZUPLGD@=97520.-,,.//13577887655444332110.+*'%&&'(*+.14688;=@BEFGGIIIHEB?;8642/-+)('&%$$#%'),-/23445321///-,,)('$$"  !!      "#%&&&%$#! "#%'(*,-/012 4 6 9 = @ A A C C B@>;7420./..-.--,*)'())+++**)&!   #(+,-.//0.-+)())})|'}&}&}&~%&%$#~"{!y!u"s"p!nmlllkkkigdc``^^^]^`cdfgijmosv{ %).369;=>?><;87542/+('&&%#"""%(*+./147:;=>?BDFGH H I JKLLKK"L&L(M+O.O.P/O.O.O.O0O3M5M8M;M?MAMCNDMDNAN>N;M8L6I4G4E3C3B3A3?3<5;6:5959383634334140403/3-3,2+1+0,.,,,),()')&(%(&'''&&&%%$$##! !     #%'(()))))*,/26:;=>@ABA@@@BBCCB?=;:98644456665321112112356530-*'%"  "####!!   #%'),.147889:<=<:966431-*(&$! "#%%&&&%%#!! #'*.269=@CFILNORTVWXXYYXWVTRPOMKHFDA?=;97531/-,+++*)(%$"  !#'(+.258:=?AAB@?>=<;<<=>??@?>>>>?ACEJNRUZ[^^__]]ZYXUUSQNKHFDCBAABCEFHHIHHGFFFDCA?= ; 9 50+'"  "#%%###%&''''(+,,+++,/26:<@CHKNNNNPQSUVX[_bfghjknprsuuwwwvutqoljgda^\ZVSOLJGFC@>>>><;8776421//0112347:<>>>@@BDEEFHIKLKK KKKKKKJIH H IHFB?=:73/ + ( %#"!    ##&)+,,+ + * * ))('''()***)**,,.11347:;;<>@CEGIKLNPRRSRRRQQQRQRRTWY[^afjpuz~}|{zzyywvtrqomjhecbba_][XVSPNKHEB@?=:73/+'$    #$&(*+-//0///.....012344320/.,,**('&% # !                !##$$$"! }|zyyyxwvutssstuwxz}}zywwvttttsttttuv x y|}"%'*-/01224679:9:;<=>>?@CFHKLNOOPPNMKJHHFDCA><851-*)'&&&%&&'(('''())))(('&%"   ! "#$&&&'(+-/146:=@EHKOTX^diotz~~~~zwsnjea\XUSONKHFDB?>;:99:;<=>?ACDDEEEDDBA?=9631/+(%#   !$'),.148=BEJOTX\_`abdddeefffghhhggijlnqtwz}}yvspomljfc_]YVSPLKKKLLKIHHFCA<9630-+'#    !"""! !  !!""#$&'),/1369=@BEHLPSVZ\_`bbcbaabcdfhjlmnnnmkiihhgedca^[WQKD>93.)%!   !$'*-0368;=?ACEFFFEDCBBA?>><;;:875310-,+**,-/023567887677665420.,+(&%#"####!  !     "$ & &&%#"#!$$#'!*,./01222111 0 1 2 4 5 68:=?ABCDFGHJJLORVX[^ `cfikmoruwz|~|ywuspmjheca_\YWURPMIEB?<8520.-+*(%"    "$&()+-.0249;?@AACBDEFGHKORTUTUTUWWY\`ekosw{}   { y utrqonljheb_][YYYXWUTRPN M J I J J K L LLLKJGDA@>==<>>>>=!=!:"8"6"4"4!4 5579:<===;:977766"5%4(3*2-10.2,5)7(:&<%=&?&B&C&E&E%F%F$F!GGGGFEE E FFFDDDEEEEFFGIIKMNNMMLJGD?;71-(! ~~~~~}~~~~}|zyxvsplkkkkk l moqsuvwxxz| ~"##%%%%%$###$%')+,-/00~/|/z/x/w0w3x4y5{6}676766445678998641-+(%$$%&)*+,-,,+*(('''(('&$!      !#&(*+-------,,,---//002233445689::;<;<=>?@BDEHJLORTWZ^acgiloprssrronljgfda_][XURNJFB?<965333100.--,+)&$"          "$&'''& ( ) + - . 136:=?@ABDFGJKLMNNOONKJHGGGH!I$K&L)N-Q/S2U4T6S8S:S;S<S>T?S?S@T@T@T?T>S<R:O7L4I2G/E.C,B,@+>+<+;+9*7*4)0),')'''%&#&"'!(!) , - / 1357:=@BDFHIKKLLLLMLLLLLMMNNNMMLLKKJJJJJJJJI HFEB@=:63200/-,*)('&%%%')*-.//.-+($!   "%')+,- / 0 1 469;=?BEGHJLNPRSTUVVWXYZZZ[[\^^_``aabbccddefghjlmprtvwxz}!!"#$%&~%{%y$w$t$r%p%m%m%k$j$h$f"e"c ba`_]]]\\]]\[[YXVUSRQONMKJ H GEDA@??@?@@@@@?><;:86430-)&#  !"# $$$%'(,0368:< < < < ; ; : ;:<<>>?? ? =>==>>? B"C#F"H"J"K#L$L&L'L(L)J*K+J,I-J.J0K2L3K4K5K8K;K=K@MBNEPHRKVOXR\V]Z_^`b`gal`o`r`uavbxbxcxdwfufsgqfofmelejdgdfcdbdbcbbaab`a_`_`__a_a^b^d^e]e^e_f_faeacbab_c]a\`Y_X]U[SYQXNVLTIRFQBO>M:K7H3F0D-B)B&B$C!EFGIJKLN M NNOOPPQQQPOMKHEC@=;9776542/,*'$! }{yxxxxwvtttsrqonmmmmmmmnoqstv x y |}~~}{zy x!w!x x xyyxxxxwvvwwxz{|}}~      !"$%&''''(()(('&&' ( ()+,/47;>ACFILOQRTTUVWXWUSRQONMLJIHHFEB?<;974 1!/ . --,+)&$#!      !!!"$&'()+-.247:>BGLSZ_djotxz{{{|{|{zzz{} ~}|{}~ #&~'}({)y,x.v/v0u1s0p0m0j1g2e1a0^/[.X,U,S+P(N%K"HEA>;740-*%"     "#%&'()+-.03568:;=>?AACFGJLNOOMLJIGDB@<:7420/00234579<?BFJNSX]begjlmnnnmlkkkjjjjjihf d b `^\]]]]^]]][YWTPLHD@<83.!*"'"$!#" "#$$ !#!&")","-"0!369<>AEHJKKKJHFDA?<:9754310..,*)(()*++++*)'%"       #(--+**+.00-**-16877:>DHHEDGKORQNKLORUWUTUW[^_]\_dkpqokmqw|~{xx|  z z }  { x vuuskb\[[!\%\&W*P,K0L2L5L6K6F6@5;7;9;:=9=8;777585:59675504+3'3&4'4)1*0(.%/#1$3&3'3(2&4!69 ;"<#<#<!=?CDCCDDEG E DB@ ? A@@?==>@BBBBCDHJKKLLMNMKGDB@=961.,*)'$! !#%'&&&'(*)(&$&&&%#    |uqonpomjknrwz{z|~          #')*((*/331/ 0 25 6 51,(%%(% !!$!) ,- ,++-142.,**+)%!   "#$&'))**))))**)''''(&%#! !   $*--/27<<:78:<=<;867:=@ABDINPPRTUW[^__^\]^^][[ZYYYYYWVWY\[YXVTRQPONMNOQRQQRSSTVVTSQOMJC=83/,)'#!## !""                     !%'&&'*-012349?EHIIJJKJIIGDDIOSUVVVVWUTSQPQ T V V S ROLHE@;85458986410-*(('),02210/..,**,-0367642/+' #!"#$&'(*-./1358 ;>@CE H K M N OOPQSSUUUVVWWUTSRQRSRRQQQRQONLIGFDA?<9630+&!         "&*--+)'&&'*-1359;<;;;<?CGKPSUWYZWURPPPPPPQPMKIFB><9:::;<=<===;8520////00/,*'!       !!####%&&&#!!    "$$%%$$&'(())*++,,,+,-,----.///.--,,,---/0222334456789;<=>>>>>>>>??ABDFFGGHIIIHHIHIJKJIIHFFDCA???@A@??>=<;:99:;<>>>>=<;97543321/,+(&$"      "#$$$$%'''''&'%$!   !"$$$$$%%'(*+-/13555433210.-,-..---,,../..0368;<===?@@@???AAAA=:97630.-,./00.,+,,-,+*++,-,+(%$#"    "$')'$""$%&()*))))'$ #'),/13676544789:9865441,(%$%%&&$"! ! $')+.1342.*(())(%!                !#$%&''&$#! "#"##"          #$&)*+,-.!. ......//0111!2#2%2%4%3$3#5"5#5&7*7-8-9-9-8-7/60403,2(1#0 001 0!1!0"1#1&0(0+.-..,.+/+1,4,8.<.?/A/B1E1I3L3O3O3P5Q5Q7R9T<W=Y?Z?Z@Z@Z@Z>Y=V;S:P8M7J7G7F6F5F4G2G0G/F,G*G'G#D!B!> ;"9"8"7#7"6#4#2"0!0/-+($!    $%%&(),,,*)'&%&''&%&&%$#! !! !!!"!!    "#&'''('&$$#!!  !%'()++,,,-,+**)*))((()**,,-.01111223333332234555678;;<;<====>>>@@ABCDDEEEEEDCCCAA@>>=;:9877555 4 447799::<>@@A A!A"B!CCBA@ ?">&='<(<*:-8/7172707,7*7(6)6'8'8'9%9#9"8"9#9$:#: :9876 7"6#5#4"3"2#1#1#/".,*(((('))*+-//00 0 01211221321-*&#     !##$#$$&''''&&%$#" !!!""##!  "#%&'(+,,,--./0000001233456898877666554 4 444432!2$0'/*.,-.+/*0)2(5(9'<&?&B$F#I!LMOOONLKKLLKLKKJIHEA?;976543310/.+ (%"!"# " !   !  "$%%#! !                $)/37998888998778776520///01233566640-+'%$!    "$$$#"          !$'*.135568:=?@BCDGIJKKJIIJLMN O!P"R"U"X"["^#_$_$_$a%d%f%h&i&j&j%j#k#l$m$k$j$h%e&d'd)d*c+b+_*\*[)X)W*V*T*Q*L*H*E*C*C*A*?(=&<$:";!;;:7520000. - ,*)))'#   """#%&((&$!      "#%&&(**+*+++++,+++**(''%$#"""##$# $ % % '')*+-.1!3#5$8%9$;"=!? @!A!A"A"B!B!C D D E EDEEFFEF F!G!H"I#J#K#L#K!JKJJIIGFGGF F!E!D#B$A%?$?%?&>'=);+:+:):):'9&9%9$9"888777666666 5 4320.-,+**++--/001224467889:::7530/,+)'%$$$"!   !"#%&'''&&&'&&''((('''(&&&%%%%&''&&''()*+,.1346799;<<;;:;<<<<;9875420/---,,,+*)('%#     !!!"""##$$%&&''''&''((()*+,-- , ,*)(&%#"""!!    !!      !                           !$%&))**('%$##"!     "$&&&&%$"                    !"""!     " & ' ()***+++**+,--.,*)&$#   !""!  ""#$$$$%'()('&&&&'(('(()*))&$"   #&& ' ( ( '&'&$$##$&( )!*!+!,!+ + +!+"*#*$*%*'*(*)**))(*&*$+"+-.//134656554555556679::::;;< = =>>?@ B C B C C D EEFFFGHHHHFFDCB@?>=====<<<<;<<<<===>>==<<<;975422100//00123578:;<>??@@A@@@@@@?@????@@@AACCEEGHHJLLNOQRTUWXYY[[\]]]]]]^^^]^]]\\\[ZYXWVUTRQQPNMMKJIHFDCA@>>===<<;;:998864320.-+ ) ( & % $ " !        !!""#$&(*+-/133455556554210/-,+***+,-../1245679;>@ACDDEEGHHHHJKMMNNNMNNNNNNNPQRTUTUTUTTRQPOOONLJGDB?=:7532200/../001357:=@ACC C B B A@><;;;:;:9874431 0 . - , , + * ( ' $ "                 !$&)+,,./...,+++++++****)'&&%$$%$##""    #&)+,/1355677999987767764322333222123455667875420000///025788:;=@CDEGHKLNMLLJJIIGFECCBA?<85420.+'$"!   !#%&'*,-./022355677899:::::99;<==??ABDDDDDDDDCCCA@>=<:96410/.,* * )((&%#!   !"#%&&&&%&'(*-/1469;<<==>@BCDEEFHIIJIJLOQSUWWX[[[ZXVUUUTTSQPOONMKHGGHJJJJJKKKIFDA@?>=<<;;:;:999:<>ACEG H J KKLLLLNQSVXYZ[\[YWTQOLIHEB?=:8541 .!-"."/#/#0$0&0&1'2(2(1(1)/(.(,'+'+&*&*%(%'$%$%%#&"& &''''''(''&&&''''&&''(() * * +,-/011112334457789:<<==>?@ABCCDEEFFGFGHHJKLMOPQSSUUVVXYYZZ[\\]]]\\\\\[ZZYWVVUTSRQQPPPOOOOOOPPPQQQSSRQPNMMLKKJIJKKJKJJJJJJKJJJIHHFDCB@?=<; 9 8 7 6 5 4 2 1 / - , * ) ( & $ # "    ! " $ % & ' ( * +,,../ 0 1 2 3 33222100/--**)'%#!     !#&),.135689;=?@CDFGGHGFFEEDCBAA@@?><;976420/..-,**))((''('''&&$#"      !#%&&&&&&'()),0368:==?@BDFGIJJLMMMKLLKKKKLMNOOPPOOPQQQQPPQPNMJIFDCBABBDEGHIIJJIJJJKLNPQRRRQPPPQRSUWYZ[[ZYXWVTRQQQQPPOLJHEDB@?>>???=;8631/-+))*,,+*)))('(''(())(&#         !"#$&&()*+,,,-..0134567888876544432211////...///0/.-,+*('$#!    !"#$%&'*,.//01233434467:;;99::;;::;;===<9764310/..02355433332222356775410.,*(&%$#"!   !!!!  !!!###" "!!  "$& ' ( ((('&&&'()****+++*+,,.134678::99889:<>?ABBCDCCBBBEGKMOQRSRSRQQQSUWXZ\]]]]\\\\]^^_`_``_^\ZYWVVVVUTSROLIEB@><<;:::987743345689:<=>>>=;9:999875531.+(%$$$$$%%%%%$!         " # &'))*,-/01223443322234567 7 899::;<?@BEHIMOPRSUVXYZ[\]]\\ZXVTQPMMKKKJKKLLLLLLLLLLKKKJIGDCA?<;8643310/-,**)(&&%%%%$%$#""!!!  ""#$%&((*+-./ 0122233211123357 7 9 : < > ? @ A BCEFHHIIIIIJIHHGGGGGFGFEEDCBAA??>=;:97 5 3 2 / .,,+))(&%%#!     !"#%'*+./1 4 7 8 9 9 : < <=>?ACFJMOPQRRSRQQPPOPQQQPPOOONONMNNNNOMLMLMNMMKKJIHFC@><:98766665431.----.//1120/--+*)('&%$#!!""!                               #&'(() ) * + - / 0 3 5 7 : < = >>=>?@BCDGIJ L!L"M"M$L$K$J$L#L"N PQSUVYYXXXWWXXXXWWWVV U S Q P P P R TUVWXXYXWUTSRQQQQRPPPNKHECA@@@@ABBB@@>>=<<=>>@BBCDDDEFGGGGGGFFECA?>=<;976655421/-,+*('%%%$$$#"!!!!        !!" ! ! !! !!!"##$&'(**,-.014578:<>????>><;9752/-+)'$"                           !""$%'()*,,-,,+)'&$#"     ! ! " ##$%'()*,,-.//...----..//112323223333322322211112122346789;<<=>>=><=<<<;:9988898999999876665331110/.-+,,++*)))))('&&&((''((()***+,,..--+)'%$!                !#$&(+, . / / / 1 2 3 4 4 5 567887777888877779:::;=?ABCDEHJLNPQRSTUUTTSRRQOMKHFDBA?>><<;;:899978754310.,*(&&$!   !"##%%%&&&%$#!!        "!!!!"!           !##"#%')*)' '!)!*",#-$-%.&1'4%7$9#:$:#<#>"@BCCDEHJLNMMOQRRRQQRTTTSRRSTTRQPQRTUUUVXZ\]] ] _ a b c ccccdee d b ` ` ` ` _ ] [ Z[\[YVUTTTRPMLKKJIFDDCCB@=:9:97520//-+'#!       !"$&%#"""##!                                  !""#$&''('((*+---,,++,*)('''(()(()+-...///0111011220/0/./00000235545556888777899776666521.,,,+)&&&''((''')+,-,+-./11/..../-)&$#!      ! $ ###$%''(''''!(")#)&'(&*$,$-#.".!/01//.-.---,,--/0 / . / 0 223457:<=?ABCFGGFFFHIIJIIIJLLKIHHHIGFDDDDDBA?>==<:741/-*&"                  "#$$#$$%$$$%'(*+ + + +-.///013 4 5 6 5 5 7 7 88 8889:<>?@@ACEEGGHIJLMLJIHGGEDA@@@ B BCCCDEFGGFFGHIKLLLMNNNNLKJJJJJIHFECA>=;;::9:::;;:: 9 8 8 7 754210.,(%!                        !#$$#"!"###!!!!"$$$""#%')*+,./133222368:;=>@ACBB?><<<<=<;;;;:9865546778878987641//00//..-..-+)))+,-..//0120.-,--.//..-,+)'$"                       # % ( ) * + - . /////00222223211/.-,,++)('&%#!                               " # % %& ' ) *+,--.//023445567678 7 8 8:;;<<<=>==<<;;<;<;<<==<<<;:;<<<<<<<=<;987765543221/.-+*****)*))('%#"      "#$%&'((((''(*,-//135789889:<=?@AABDEEEEDDEE G G G G F F E D C @ = : 76532 0 0 / / ///..../0224445677765456666554555442235678899;:::98889::::998876421111000/..--,+*)))))('&%$$"    "#$%&&'(*+++,./0221112110///011000012321234443100/.-*)(''('%$#"!!    !""!! !!!!                   !#######"#######!"!! ! !"##"#""!                      !"#$%'()*+,---..-......---.-..../0122345788889::9998877766557778989:;;<;<==>>?@@@@@@?=<:87533100/.--,,,,,,.//13446778877 76664310.-*('&%$$$##""        !"&')*+-.02468:;=>?@@AABC E!F"G"H$J$K$L$L&M&N%O$O#O"Q"S!T"U!V!X Y XY Z Z ZZZYYYXWVUSSQONMMMLKKJJJIGF F E EEDDCCCCDCCCBBCCBBCCCCDDCCBBAAA@?>>=<<:9865433320/-,+*)'&%$""!                           !"#%%'( (!)!) * ) )( ( '!'"&"$$$$$%#&!&!' (()))**,,,++*('&$#!                       !!!!!!!######%&&'''(()(''&&&'''(()*++++++,,,,,,,,----,-..////001110/.-,+*(%#!   !"$%&&'((&&$$"                          "#%')+,----,,+,+** ) * *()'&'%&&&''(+,-./0012 1 2 344556788999:::::988877543110/..-........-.---. .!/!/#/$0$0#0#0"1!1 2 34679;<>?A A C D E F GIIK K L M M N MMMLLLLKJKJIIHGFEFEEEDDDDDDCCCDDDDDEEFFEEDDCCCCBBBBBBABA@?>>>>==<<;:97531/-+)&$#!                                !#%%%&&''(()*)*++*)(%$$#"!                       !!"###$$$%%%$$$##!!                       !!!"$%''())*++,-../01233356799;==?@AAAAAABABAAAAAA@@??>>>==<==<=<<;;;;::8888766432210/.,+)'%#!       !!"$%&&')*+----,,,*)*)))**+,,,+**((&&$$##!!                                               "#%&'((()***+++,+,,+,++,-.012 4 5 6 6"8"8"8"9"9"9"9!;!; ;;;::9886544321//-,*)('&%$## # " ! !                                  !"$$%'((()+,,-,,,-----.././//0124679:<<==>====>=>>>=>>>==<<;==>>==>>>>=<;:9998754310.,*(&%$#"                !!"#$%&'()*,-./0022345555654433221 1 1 1112221100//.-+*)'&%#!                                    ! !!!!!!!!!""!!                               !"#$$$$$#$$$###$### #!""""#"#"##$#$#$$&"'"(")!+!-./0134567789998664210/-,++*******++++**** ) ( ' % %##"!                                  ! " # # # $ % % % && '' ''())*,-./001212111000////001 0 1 1 1 233334567788899::::::;;<<<;;<<<<;;::997755432100..-,*)('&$"!                        ! " # $$$$$##$$###$$%%%&'''((''('''&&%%%$$##"!!!!                                                 " ""##&(**+++,.01110123 2210123333246788889::87532331 0 . , - . .-.--./13224579::::;=>>==<<==<:877665310//.-*(&%$$$" !"""!                               !!! !!"!""##%%%''())**)))))('&&%%%%$$#######"####"!""!"!      !"##""!!!                             !#$&&&&&&%&&&')*+---,,+**))))+-./000100/.///1111111100///01223444442222224555655322010113333331000//000110/.,+(%#"!                                         !"#$$%&(**+++,-.//00111101001121111110/..-,-,,,,++*))(('&&'''''''('&&&%$$$#$$##""!!!                                                                          !"#$$$#""!""!!!!  !!""!                                                              !"# # % % & & ' ( ) ) ) * * * + + , --. 0 0 1 3 3 4 5 6 8 8 9 : ; ; <=>?@@A@AAA@@@A@AAABABC D C C C D D D D D D C C C B A @>>=<;::987665432100/.. . - , , + + *('&&$$#""!            !!##$$$%&&&&''''''''''''()(((((('''&&&%%$$#""""!!  !!!""""#####"!!              "##$$##"""!"!!!!           "##%&()*+-.001344 6 7 7889:::::;;; :!:"9#9$:$8&9&9'9'9'9'8&8&8%8&7%7$6$6#6#6"5"5!5!5 5!5 5 4 45 5 555667778888999:::;;<<====>>>>>==<=<<;:998765433321100// . / . , , + + + *)((''&%%$$$$$$$###""!                                                                                                  ! ! !  !        !       !!!!!!!!!!"!!"""##"###" # " # #####$##$$$$%%&''())**+++,,--..//00 0 / 0 / 0 / / 0 0 1112 2 2434566778889:9:9988765544221100/.---,,++**)(''&$$$"!!                     ! !!!!!                                                                                    !!""###$$%%%&&&&&'((()*)****)************++,,,,,,,,,+++*))(('&&%%$###""!!                                                                                                                  !"!!""""#"####%%&''''((())***+++,,-,-,,----.--///.//000 1 1 1222 1 11100///..--,, + * ) ) ( ( ' ' % $ $ " "                                           ! !                                                              !"#$$%&')*+++,,.///.///00.--,.///../001100/012211011010..-..--,,+++*)(&& % % % # " " ! !!                  !!                                           ! !!##$##$%%%%$$$% % % % % % &&&&%%%%%%$$#####!                                                                                                                                                            !""""###$%$%$$$$$##$$$%%$$$$$$$#$$###$$#""##"###$#$#####!!                                                                                       !""""#####$%%&''(())))))(('('(())***)*)*))))****+++++++*++++++++**))(('&&%%%%%$$#""!"!! !                                           ! ! ! ! ! " ! ! ! !                                                                                                                                    !"""##$$%%%% & & ' ( ( ( ( * * + + , , ,, ,---../////00011111222112221122222333343333221100//..--,,,+*+ * ) ) ) ) ( ( ( ( ' & & % $ # # ! !                                                                                                                                                                                       !   !!!""#""""#""""""##""""!!        ! ! ! " ! ! " ""! ! !!!   !! ! ! ! !""!!!""!""!"!!!!   ! ! ! " ! " # # $ $ % % % &&'&'''('''''&&&%%$##! workrave-1.10.50/frontend/common/share/sounds/subtle/rest-break-started.wav0000644000175100001710000241405014221624107025674 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata Kg{I87EG1%O8W;ICmzDU{z  0 T> ):- n 9#N[ k4,Q7)7  E!9 U S E H0<w<^7W4jj`y'F/dh C:(thD}%@VUGJvV ARFm35Un X-"#zr%f2]%&5DSJlxNxp:->1 / o Gp{hN BpT7Z!0`xDrLr~4:|`7PokJ&=DSp.iI.h50/F \q6y5M&M+.,(pp{g+cp(yQ`000 +QS03}.;'d>\T c =ojXJ aur @{1)F7n)dLtH { v%ELR'{5A_%jZfz2L D#Lx3I466YB|%!6gPJU@^V  p+tvJKGra j1 !3ZqqUQ]W$ F q bc+ km%Oi` e bV~<<Cao{D ) 0 M)#*9<4.u"[@U2EGu~Ie?iQUZ1_?wBIdcplC;4>jQS`_$DgFl"B4,a 2S GOOdu :A< d2 c6FfmL Y^ E5@K|r~XZL>,* I)q>I:~ Z3 j .<MA\vJU5r;os.?e3pO.y%Z5;<`X%ndi)Fgj/< HjLzu3 7l5@ VW[ ,?N=lLO-+ i D8UKpT]=  GjL< *~a_RQB0uS  74ttZ2Xr`A+  j ]zG! %b0je|3K  StE' Bug.N{YNjloDuH:$s.! OEe3 KFq1&X#k lU } \1Qo%l 9 cD;W0j0@2 T to7M:!8[34~I"N+P]!A ! tL]a\ hv- 7%7'y|N;Z2WHo:^O<n  W6A 8 |[dNG76Y6+ $ (xD|"Nq>j  ~g'%w]Cmo KdD  P5J  V7sH>dZr{BqGX"ab~7' r6aHO> Bg ?4j9i1Tl='m? G ` P VP*T } <mPEH ^ <&cr2W/#P?M k  }fhu)'b.@;U$vtJE7krrsv|M WbfRFgWrD{P- e Zm\Q#x56fOsPr?sSzN :iyK s, /E G_*]vc 4 q k;^*&<>sc \ |e:wk e= a[u\Z6%3Lo}RPN[G4\08b `"ueYU<c4&2*WljNR+!oR G| Lmb 4 * 4( &18  M5aa  v<chB\ O  MU7G#l4 St ZSe~Y&zr]9f=&"P[,?->L *]"yQM5D(}x3J0vE%KA3  IlYVW^Fer;{B1;"d1   }r w  X  CHXt~ V 5Yi h/  HR=#7Kz6l#[ Wa ^h96)|2'XP`P:e^R1fkZ wYOCZ#BH5 f\.l#.~G]FVXKi9|_aU Tyu 2 ^ 4" F*  -R  BL # %{  <Ut3ZSV_!w q_` kgK=V|Gjt|Z.V#%4Y%& @AOkE%T ID+J |@?Br6J:m6 bqH x b I_ q{a)O F fe 0XpR  iy(x+S  "H\ l *V]:#n:DV8  J|'hX gnk;> CNYuxf`qFhl;8"4YR !._MZyKJL*g ~Gp"54 \ ~s H o' T d  i7g Cub  /.5 #pK  T ?r1 ZH{] z:y'k`jT;io5 /m% 9  %\Xrz_lOKIMKy ob ?+Vt_I$ [u|/31y4$/  8 x;w% ]N  H e1 a>*m?qsw J  K' g   zH qY JBR G0I`r_\'t'q(3e1r  k>/G-RZe\bkK'F.eX>TMF(uZ]Xs (+ 9 _ KJ( a W: ~h[( ]0 [ W!s~ }b R3Qo VG / B)Z]gu21xnMm 3F\} R   PNE(K<\p.+DF*[NU uCPj2\At]"/O(p}<AonE ) R5 ,  BC'2"y$ = w >s!k6j\AE 8 :.  }  Idp@Gt8U1 r==H b t4EM<fM=u\5LKjBa)<yDvw? Lr!A"W&AT7{?wUBE U ! $IG   o $ j|N[G8 gr.nt'm0uWrilP540 s Eu]]{5t,NNUAX,@?,GNLe;/3\2{j,hjJ}3@'MO, j   `5 m m @, -lSo *  h%nT  .J ]; D1<Qe+>vp.lF-} Pez/m?+~}kS|cY]>T  .X%~@GpXh{0)'zJt7+,C 4 |{~Vj8]<Z l iY Q \ @FMjYtOV}  4m. '   S? ?I:jTr|{"D:ASrzFc)CK7y8~i:zJtC^^'ju3gyxdrt:[[3i 1].o 5ZzY;[vwAK, HFh_XoeZe A Q   J=N e-] x0 =?xS>0 )%  $  jBu C k8S<#2Q^"W+qq2J#y !-)i7XbN7="n&G _P@ESF Ng}p7r]\D :;XwZ s|n_R5`wh w \ , +  z2Zi YyVOYZ ;` A< 9et#'|IT p~ 3  -s:z!kgphXRD.8>OT_'2W /Hm35gVk#~g Kx,:HfbR8cJ4&wD z1^o"f.DZ4DE Y^jK59+n%X=g S @g t ' ^ O_ T (m G X+ CS1 |  5  * Fa:g.!>#Z`>-_!Y\=O6hXN/N%.TU.:YUEEyFb/($(R/TU!D |>:gs&`7Fw *Q f o H '  ` sX(Lgl C b~EF 4 B  / @ &mWgPL$QfErPddfq1I7,X+xG]Tk0;q@[*Zvm}+t8 (Np41"Xoz4nv&AC*uKRYMK8 =  * &* {t6$@O!f`(QP .X >/  ;}fS*m&jmrjgT- {DZ^29-cQ6FH`% F=I!|[|U kZ.(+{|6Hj~gujuuSGc 9kIAHfaUv;'1Jm.e~v>tYyK>4u * -'tpp| VB Z  &<zzn. 4d9aA DI  [ZJ`gQqi"!S64#g))?C}8baMb&RK#Os?RTp- >ZXgD-08N:W july?PGb7p/ -i Q DJ 8@(uZG?YT9a\p&@CdWn ?uABjGjO>/[e@ISBDruBI]1]CZMVddKTG%> 8 !\nqG4&;%c:KWiO9%:x\DIdHO{AL E   L4A v{) N>T3$7Zu,@QjzY/l|H`Tw".tZ6RO4!^/ nPWZF Za04rGw,Z~B/d l'fjNd-Q#^E%c.S$ue]_ 1 - s 4 w<axD)\AvC# Pa1NIGx%*59y@(7 n |{ +4$ 8n>u`^joh>LSM95?B^,5&|m~)-U&?m0'C[@s *X#Kj}1 =  w*xEBj$Oe(ffFe)`Q6AD )4j/.;?`>VrTX2)r \0WV*vblF pO)oE#~ p(*2\@KALv]e:IeNn3 wyMT<S"ClB(>F1nC m% KA+yj_x*/-Xd 3KR4-7 Pu15 9 92)u6@VP)w.=xycb#0aU60Zp?Cv|?oaCBgr86<VY1oL\D(\HS&TPi}1J3T(\Vhh:# Hb(=grMqydgJVy]S@ oTLu|?~`!aa:ENI(li]t~fG&~UIOJ c7'0)QXhSRUR<VbCv}VT)Xa QV6+vy~]LHNFrIi@yfm/ui]E{am_Ko7*VU/;Pr$:e:`~&eDtVQ<]\"e(*C}$%M"i q&wlC cVqOt\Fp2uH)(])E^)PRe"v] 0<_j?M"kIG 7}(N'C{e 1]c3|Qm%Tl4%DX@UwaD@!Xa_ :5[88W9pRa kZ[[z>5*tQexFp"ukq h3_e]1`S]V/@uT 6Jlne~F m|>?LE$5:5Lt'jX3zdTTwQBUgDc`To?$s}V/Xjf96&O'jS;uq'EB2wUPZ@Z$&-M:&b(B\o?'b 7x}k*XA8=d|PX0lC_l>yh==-L jJ7o`BQeC b>|Iu3*OS^s%!|rY[fcj`_S,I7{BUboLxy9jxs?p%cjAO`D'N%=t^kv">h3?xIGMw [$ &3H3,>H^S#p /brdjHLWmc+lp;L<5]s 5pRaaA V|Z pY`U7kWh{mWBAExdS+z PTM. \$QWoXF7RZ|}&=U{?o8U1QWq5DnuXO/ _(4o_U2?-4\O6!Q4e+#@{^OZ]a s2:O;EELzI_ZVRZdWwY&dN(H=d@^A<[M};'%\R+39A|n*Zo-|&W6=1az4+!?AT. 1;hZB$7Q "Xv uc9"!NJ0l&M~~r#;<m.f/ZH]h\h>8/ z"OEcX6<93>B#O{gB}(awQQLdpYF9{ dg._ ]tl_ezvbjFdO[&n"9%xD)d "&&AetF]SnUD? X%aNmA. Em)WB_L^l]&BQ!VALDm C7|JWsU`I<O`ZKBG!41EZ%Pm>PK zu}CT ,-`:/ T! X#( EpqNInv0 poD~V'4\[%~uFD b1 @ f r V_ S1SE|F08rGsn)S=I8 F0} M& Xv |  " B ` W   = IT k a['AE2{$2fw >n2nv` _{fLB% 7Q Z&8s_dlV6phjI ^M h< (AE  !  ux x  B0  ( ( ( P  ;  S>7Ol TE qOx-Ye/9?zrlqhn@et1Y   h-r|%8dy ,`cHgY4  H Mp W ,F2SR Kb 4 ' cFyit|q&>],;A&l[<(~tI0r.I1j/"jgDHv eK 6 V JM 9 U "q^:_GFj?&  /5vd&A 9 ; (  e| ? wb.;# 5 R I k e     wJ=gm lGy ( !]4gae(3}X_-wob%!+Sg3 a8z9RFA77t {b2. ~ MB(Sln 8   V &SY0o  Ln e f 34T.[ J Z_1Bv{r>azlJ4&2*S6g995jNL=bnV4I+"C OY5cf9Jv $ P&0<,5 ;+H F z    /L/C9-,9 \U!^H2ZE]G0 zOq?/m ob'!9 ' W|q%HttG+2JT /  i  q?Iewq g tP0z Ls9IWONp7Vyw7b5j8  X[O;oUDOjBII(:q MQ C|4QP>DOP  sd:7 NK c 3HP M {VI,h m X I }  t W -2U#3m.{s@UG%g`+c~."?L:h@{8q9wLX9 _ RV a\:4 ` k | 5 }u?t ac A:Pt>- K*VA$TsVvzE=2[nT"@_"Oz4luQCtP) U2{l7_@1APr {q v pP  z b)$IzTq)&7 s  ! &+ btSZS= Ce6c~{;zZ: !qpd_O<SSY + ?n,JJ. `-cF=z@cm\ ( Q < 2K .kTM 0x8S"Ax E<faj N4{LZ:dZf/Eh@d>Fu6<1"MYKx *04D'$Cr 6`1{E ;~/U4 *MO7zE;i t mSVm  Z R   3 y>Vt H   1 - B T0vtEO^uO)`L4}N%4q{ ]FLyg{Z::Srqs93N`|*$ffN Yh &6L]BiD 5b\ @>N/3:!K6hf@ <%13r?8K&IS ~ : D\z+'@E s_.,omtiar U*#:u "t . d 3 fgUt "i@ b z.'w<R@G   ,  > 8hU Oo#hn`A !GFSt #V=p[ x 5  <+}z ?12NK~. k ( | ">=#W uN~ u`|[= yO n : v;2/Lx t@I<%}yu\~3!psE4v3@L-% D; n!*o?mrQbb@QdN- a q D( ' SM TB;-A$# W . 4  Q d8gJi`X!]:K{ov#1* =rypPs; d~P:!E !R@& P .-D$ ["{? hEGK4|L /2 <z > <m S Oqy LcpyA*eW N a . * 0 y \q s\n#j},$DEw*K{V/4< V v % Lxc <HJma}~3 U "7 > (^<}\hu5b?MopF_jQ24SWGlAK6z=UU{+-XV;y'yr K7JAsGj3^2sIx: -:|!>je6  ^=L+BREl^   O Y ->'y 1Z&)`KP&K[+.i8R<u s S QW@f +:& )yIn1t>O>6P rRr3kw { 3 N5 I hnp,` .C[5?W#9"Tw")h=)F]vV<fkQvPDF@L J-;bbY =hPrj$ 8s  c) 1 s* v  h 4 ]hQwQmU z f 4)vF9d8yzTytN=L%x] ]3FL2 e80=Nc=/H1s| Imn% H<# ; 6goYq k(^E0fLEvuL <   2CBVh 2/L:3Pf+`Ne\GRVGS:tgYjVscQR@T]Q/R;$`qy^. ' h;ZaD nm~;6WC X&YX,/"wZh~g@pE;T`dqQ7$6WSq 5X9 R & I BZ b V= WNEF*,qK95"/i5U A!+mH ! WC3Y(#?k.m*9i $x6n87K'"_LT5o} VY"uh5A Fce >>w*9v2@aRyf q  :   VC\| PO%IKTMS:~! Fv@~u>L*@CtP 8b(=c@Xx_tVeATq;w5MW116s:7M4Y/3v*FV&j W(Q$D6_ ?pq 5   m~#g['"^Blja &ra] xE&M(E-ec(hK,h[J/fO]rEY\w u;+Cb4PY^3*08 A."<mN&HX4 (  3 {]A^OIsG'S4)@ay+szzV!E1._]HG+| n Rw @\ *{B6yWAmR~* @Wn"bOJJvZ%Y {xw" 4I b 3 sdr(7V,YJ)=8tn]nG h  I e |*'KykNC0)d QNae[!! .IFu23)_ B/^HLw|16:e{?h DJ +TLHig _1>> Uw>3 _Tg?Zly    M*VTW=ITxU=nLh0-q9Kz0bSe&`igs@oV5 # v8i!W~$*_Kc)\v74zD\]hzEF:9%BO}  F >OH>>+#s5Yf_:q:ZV ,v4h wVS |t3Q)- 87Hf]8d`7WU IG[]R <G@Q\fRZ  'frz]e<S4-  *wv?4W  .F IQPI Ny rx"Q%\A3~ [ oY:)w%R=|,YcaW"dT_S7&k"y/ V qfGTKZ HL  & vN e` Tv4-Cgn~.z3[b+z_FQy;u}[-$; {Qi#SX}Gp@\ ).^b9Eino\ol&hV- l%M ]H`Bcf   U/;4$w'v;kt84@jDGaxAh\e4$VrI?Q/0wpNSR{u?XqZE \9Krzmy4u3$^#,w'D x ~ { xsIC *H3i^X ZoB7@%h7 V&K0hvhq_;DpjW L^<=a +x6pFAAD >5 @]kvjWC> & ]" nHi2gujcYFJCEAXqiwm|U`d#xmFHw<MY)yRdKihv}!yem%Vb >zPjBK8S 5 v  43O#Je ^ Q~f.PXHGd.PU5q r :!G[aYU!-<HNZV1IG8e`xfj^#}Oa(?V2)D&Mb{;-+ HjK1<Fh !( ,  L ID -++zK*RX}wju+6G |Vhg`Qr1;c3_gW^?lM4IERVIE#F{` e.0]} h ` C G&(F ?'N|bXv2RQF FXS\".Ps_=f7gT W ,,,F/^n [8|cdiscXaK*\i|cx>\{7Pg`1T b juPU! x Z Mf t yB!ow\'l !QM,i\ 2gN{WNKpBZ@;Db5H'*O22JN>_xN$q48B /D$gj 2 ep )d|)vV ^7 l  i Z i!yi"fv{)A-n,P.h'UO~&<~=|EG(a!\($8]-u|hc>y!L;4AdB 9R\jv5]nk\y\-8-dt)E/jl!?F\9 <C  YPEGC)Y/kzqkaxU"bG\^?K 0oyF]hJujUv ^pXH%!yJ maZh8z\J H^yYlIk(e Ab*44 tR m`\DR   S) !L<W;eX-}}\C9je \}PE!Du 'P[qZ$p2{j tq+)?,2[F`yuf6|g  ^7 uu ) I  uo   = 6 A6L$P=   I t cycTtT[P  Cb *xY|NE^D*3nRQl~9Tz7G Xeuq( %g4wg=/nV aiaK   (n "[r);b4/~_)_rA~kZtKxRnR`7=5&r{]M V1sJ"A\4 @ 7 8 H PJ   6az)   DD&[B z:5)w%o^Xh"7)%dQ J(%o@W =S 4g\B|eR*iu<^.Z"u414lmkgW P , @Y$d \ m9DR E  * HJ0e{Ahb^:"xDT34Xv+zBA{)#n.cDil!ZV$Qg7=Vzl!xDmRs/h?}lY<|K|C|{>s G r j   Qd M ^ * um*Z3   X#2|vCx4n MlQd R{` Yw.y_7z]kun)p@Pv:eb&8BbS?olMX*l8p;y`d|L7-\Al* F2 p , c ~q  O T: hstH5CS*$Vb=Kq#)v,use^G s ; !)  s BG  g 2_Cb^J-k,U  +B93.rPfa-t0D[\Q47]?j(7 (YopR1Cv~iiJ4<\1M!E Ek R,,e8 10iY 8 F[  X4 n[   d p  ,& ~+e  xy;Dl-&oSsLaxm+i  Egu3:t [yb5C}:1 gUQ"&SgYXd/^ \ SzYJPMr@  ] ]I563/G A+ V  S q/T_Jf YQ }XU 8`8R=$S638VZf |P  /bh1&Vp\) R {   | q Z)A4)_C'S0 qRd;pmYb6>)L$ |'/D83Ac "VJlq' m.TD^&b td(f t|a O ' bV - 7<AnoK |/~ e y =N j7]>m}'EU(>1(*D>m I~z[s:`JZ %xLeW k]! HIpz G )h64 E i q I   * 3p , ryc  =UoY- 2-`OY 9cAedHiI<a@ `O 2 e F^-lQ  *n BGBr q3`d;fk-kTNi<d?W, 9 }Q0|6{ ^3}=d c-  ) T"c&1b  l($khO_  }R ' ]4 G~]|-9>' ]UR~ q= `H^ : ] J; G:8 94tgBg!~Xm & KO+^D`yS[i_ m ]yUKx#Sh5s''7.RN~ty t~:`\(Xr[g O E{1 dAY@'p N ;  Oa+< q$ikqli19Uo|u /R+XaWr'M=f[6l` < :[Tl`Ek tRQ R9p :  , ~ , q < JJ W  z)M8=A%p^sT!M \j tO  ;yB x *_p(Gq+ 9U pHigF:rgOyE q]~JTY H   )b}IY[3aRGbW B W jA#K\"/t4,2^  @   ;U3 ,eZy5rJr 4o2S!R( S U {9  n A e 2h j3+ | X Q<z\P Q6vpkO52:(IwCz}:br0;cc"XYd,-.!i,*Y1#MhI~FQ7 W I-YE @Qh^ "CZ!\ @-~e (3 0Y_/J3 e ! < <  J [;Z-"'eWB|Hj hU2  niP0] Iv}/YH {A.P1  C/OY<Y;9Ha)Whe !W ujxb% gT  " SmM +%m > ) Y&0Za 7a{jg%a7"V[]ofVN'   9 j  K6%N `Z ~ #5 b Da \]m yK %e x X   b 5@0auP qjLM0:ie#SpxBTRHtMx4X&Y*%@5  t t 2 ~  7uU"l7^@ F <Qk27 g}/br0  sN W3 =1  &  mL*~{,0{(&_##%G#>qpX%vDOrLQKtIH?8\Fx* w7mgQEsB3QVS)R F  / 8@[,mP dQ i  f3 faUb8y+(B 3?Jv}qZ,,r/<`Y=, 6 {  q ?Jw R V5'cGlp4s8q|6pq HJqt7K\3'Cszm=[5K [V }=}zizWj*acn[ i { zN:h S lN*Vhy7Lu ]DS(cxl!_dp0t2Y/5)Z9{SP>y^*mNhxRajhp%fCKkxW)ueYIUUe`S{TpSQvZ{ G  0U K x  6 t ! Ft 1 = ={0(c|BGoe|qUuR;Il e0] qVH w  >i `o ws} =v6<1q ,' K )t ;B8D , X Wm~7SB}7WL&&I(Dlw 'IwlI ;.R<F 715.z\$ |3  nN  5 zNi>q*;(\ZHt'=*, `S p~du  6 O k* ^ #^ 8 9X0\z,b '2eLEY5%ZY/S|bxvIV,~EnM`=KQODET;\?oQWN4C  :z /  =/ *W\f   ]  J h  / Fx tKAy+:anr1ZSAmC6_p!.  # { &I 1-)HJt$qf 7+j/Pq"'_.d%u9 g CW(xkq6I[JNs8M+F"Ii, g xZ R u ZW AR6:!hnG'^N5-9zC*%P Ec9 cXg]QH mhenW Q<}g_/.?^$4omt-08&V/,\>p:#l3v'(! hvh` t5H8VR&oC -x6z]K{:) 875!H=mXsTrZVG62\QWsjN9lG |  19   Y H S   + oD^dF}t8BQl"nx!@O~-/68RywuB$p~%NMKaI&FUo.N6N-Z @ PwWEL)  N R y  c]ZC)HYv>)Z[ (&lF)hsD^O042E5&lbl=;JD[v9qc-vc 'HG!sz0Zk %U0^+}   ! Q  # $Bo~$/x@Yh o D `+t!OX\Cr\*NoI{oUI _yEp7gs*t~(pyI.{ k 4u 1"O_n2=  7 >"Ws71<7C/?#6 lT*Rk"a J[Q1$(p_A,GqA:T _Z|o4qwS]Wp 8,u`]2! Ti(  ;   s Q< s J B  ^ i v q,   wI&a]d$^hE*EF^H :X6j%,I-@Mq4o!CU9m( HF49\@W"Q9.*R?@Iw   HGY F6   U  6 E jh  !   ; t 6 J AuQjhe =>mk!)Fjy}#28oU}="co>  .wD<-D[-0Mk! BUZ]Jr=CL-btVhjl. ?TI8R2 veSP G@/AqRC<ayhJ0 08 %FXZ$wT0/!ebd*>hJ</aP.&?glE+(xUfcjAO~MTbJjRB=;{sx(,R'tP.2 * pU ; |  cudL-k/]/#*KErM|3" ,(gW8 | S~  .N e K   ]E8)jQ4`>S*1}e F}j$Pqo~_%I RFdSzftw-?Q_,T{#/ .7kme*7`Xg    i  8   =X'A#;'lX% {9 -  qM K n ?RL}zAT v}rEv<}]%3-G]uI+AOW*Rr 2}|Cyrh:RxKpOIb  O, U {;TDJ#e 5r @  M&#8q >t' :zG{/v\J}=?eIs|)3wbtD\&g*y7Xc51qRj O pIbC * s Ugb VKPhKS]Zq #s5f`m7tzI~ rPRV0!@[f ."woB^NOdfe &*? h > le    8o[e8)Vbb0M w) Em+|TxG4<|@s@;{Hksjp{d)kD$ a\ |u&Uc50N&Y8=6jQ}XT6Ow  _ < y X  w3 dz2[&4v3?/Q(l4A -C0hE"A(TF8O,94*X,eAa6Ba T,rt( r8ld /*r)Yc bnR`3\2xIj'mP  |C~=z?<a7jL[I7y7qm *Rgaa_R8j|-J4e-W51Vt{.In!)On=1eXDmWD7'Zmy'}<),\I2 K  d yE ` N} L M4)QRlZb??no?hhK}~uXyJ3g8/"|TFb Un<l9UJ3 I I `Fz71F&05(tsJZm-2[/5CQ.So%-A!xM=ZvPcV-E}xmrKV6 w& Tc]%DbQ | 6 ` FJmq..Er,$ A8!(}]ZT 06$Q54:bJYq7^l  2 'L - ,F  c(n 1& - V V^;IBs[&A' :O+0ypUu=or>  Q .yV7fl/n(e0{=_CI*L.V:vf)4R 4 gP ) $ 4 B ++nz.BMO^0l >5A"D'7v5NCvu B ;~!lUB#Y37Mb O9 63w? +'J09{> 2eoYG'x"/>9bLB8?ai5.vErXrU +Lwk"w]Gv_I|Q8X"T&$@i9` >WAP )%h p `\;"I  0?@:3j9,=:uoV3?.Ni* Yx&; ]0,W`O eYy%HPOi]|(W!*:bfe>l[9G9',nFdt(^0ktn/2 {<n'Zc}q17]T|b uCk%#`#Lk%}8Se8iEduX Zl @   21r\@Pw}BXD7?Fi)a~%$Q0"i Q(-jYuXYV\SP& XorVRYE%^9I>_L]KT;YtG#w ^U 0 - ]9 dQoS*I7{p>z[~P*{$gb(oSt@Ws[f;z>3R:Dm]a{Ars'[ P3LduLP+3)oh0vI4q-CW_GQ)jq'yak_ad`?5= _{Qx}WTrDVeQMwDB5 + %qN M~ d-(gRYUo A_ 8 f4 Dy-q: sQ  qW zf tfoberi2V*NR]z@O i t*&oq\ ._[&B@@E;,3&>{b I 8 l g 7 a p z{ O  d EY#LbK+X.}r%? y[tVI<?7Gx5_@;!If(9MYu*VP7H&}@0iB4KAV~s9+DbL\&p"Fs7   W%;O}F8BI5 lTo3>A~c*wpMbB(C-|PP6D q ; ( ^ ~ 8uU;`%PvV[q# ZAE)cRyL9t"-?JkbZ0[P$/^N| Fy2=2Z+$`(3bSQc0+z`;{h  :< E3Io J < M_:UtLSUMEvaF[G/r=VA:;S5;X+ '(iZ/iY{j&*i4^ i]4 5~C7^1 va ~n V    Ej q   p{ \kTn>!<q` p  uj _ M   N{)PD/>lwEL 46W ]{  ' U{Ehb D #! J56  FPS:O F}WN( `"0L:Av&*=RDo+N)DArLy"~E BB6Cv+  2P%mR !$ \} '  d4F *.,\JO V*vpC3^'^[.VreJ|PbrL-AY~U"ai7 /1)k<)X: x o Am u   ` VE C  J  AUZG-_3y7S#(H!r?Ggb gP~j|D=E-f7|0H{,<wl R4gY E?*-s?!pR  tN 1*/0^  Unyz J5UpZ>fiuW{kIIX 7 M 9 c8 s  g,`&/ U .9-5 ;q  TOa<z O ) gYF r|TKn5\ 2 n6/!$>ems  [16b "LiDkQ Y ,0T O|g_<( C 6b  t>J^` 8 jV+@S`b_jVsRh!` | 0RR #v j7d(}XeZ^Ar * F\g1y hz'G  T= Cw qfg8Fk+pT7 [B+i|=VQ}!sB FM{t AEGPCla !8 IAv=O  7&  p i9}O 1  @ Cq  R 3h < 5*CA#}{r;V&:H-GgK'@^Q Q{p#2Pzg=?* .Tl$(a`9' nv g $ I6WzN u5bM$]~KBWV#)/<w  ]8 j9T8 ;!>#  (Wqk="G8 3dPq  ? udqs u z ' l 21w.F li Gz i!bR)'Mf0$o4~(V9-Cim! G@.v  dEv k ![{R@A@( L!{r]zs<  d>yLu (3".UyOoH LK6yx ~ 3[3T av W   Sb { tcmK;N%_R !pcA8# z 1f$v^6J!YUR=78zIYmh~M2atOv4 < M H k `qi FM4 AMd`P(uO==4  w ^ "RV? c4r : n m4 ] L|ptWk/DG$ B }l'7 =)] iO`X1y5[ o  KH \ pEIA >; 8wD ]L$;7@ z$/Qb#Wm0C:)`NLB [ @ >j "n ) r> } L :A$ 4m 6AB  N 'ewV  P{V &WW2p(g6NR$T&!L+j1Z^!=.mH/ CU  |   02_@E C<`6vIhZ   *SAT.0- x #zln6?QAuU>[bt]"Q{op`Z:"LDDZ A . 19}q~7(7 v;` ! -LY5qQNn.x  :sV' hm2IDq!:#9K55zI-  iVbg a::O3U'_9#\1 F*g( P:&{3 % 6 P <gG > *$z7 F 7 ^e}J d@<65lnwiy%!ifghArn  _)| yyt Lq%?' p_B V yNhB4G04M  / 2 Q gHYw$n)S_PYXd!V$F~S  J? WJ %q I5  ` '$hR-N{ RNUC7 o^G Z[Ss.1x5rku#h H M,n4hjnhd*DN. J5o *' j ,O "c + O o 2o'aig&n^  b P2X Y :0Hf;P Q~r(k     Oe90OLuK;OAa @ }ci wE P(S6 s=  =X _~ V4 d%" nc  LC P @ W \ < m 19nR!G}q#3=wtJ 1 GO- - 8 =Y |lF SP#mx9 ;ea34F    / _ q < | B? 2  ])Vr8DN0 K$N0g%gJwe ^ 2  v :Fo .h(k ?  O h k  ^   s 5s#@>r]g! 3?!\;8L ct*n`nq) Pa P9XZ6*6m $M$-^  ]]]1* ; > $  "  `YA]^M*n`gYy8q(^%>r_kr}~'^SWF{G9fr-96 z 9 A.D z 9& H ` YE #N%G   6 F?z5Ll ZA 9 p v  `-U}kg{XAw)0M> 1$JVt0"`Nar a  |Zn5[V-i/A`4BVAq=j 8>9hDZ\ ^ @ 04+6*Jp8:a=iEjf59k{ Bw X;y|Ad-Y jp & ucv zUDY~;u+8As :(~63\x=?vOWznlJ"?6VYMa_v;y  I M 9  V!J#u`KZIg\?W`fb}>z9"@7=K8Fv2iOs&u\) ,  ]@ p;I,t&" a  ^ 7 ^ S (/-m^-:wz )DAZ#`!YY)On_x [=U-V!Z0l>aw n J R N  H s +_<pTGg1]#w9w a: JzLj>)D@9Wn n3nXoIN?FUG [ A 3";=yX-d(a\  R ' xRpe\~ z _W!Jm cj GG'fD!{esww% [:|Su~nxW7t#YU5#\gz 6 # ]V f/yrJb 9IHi?2>R 1 ]A   g 6' koZ hy <o4  e{sp\0[{}FjA >[Mg~1c=&'17Rf6lE)D;pf\'rrg /\ 9nVo =e  I+IESn! X OF&)!$) >j( BrJ4m}NkDM ; nF  q z   "0{DT0RrAw# V;h) s W Yg ~6 2p`Ke#D7 0 N]U({E3 h - < u  n  : lp  jo(Q-kw=     +vrp+W*[vp 3*JxUQr~JunJwX#Y a- {#kS+2 lr yc. o44(j)pL  ['Cr=$wAiN#M(ch^Fh2 &q-e^)% +6F89Pg5Q d \06DmZBD'hJ\"dl4n r Q~XL # M(REpB bsOLzVu=AdI)&5R5_u6d ?cieye%f,vO?y  {Lr-<%\zv| h a"Aj4F] b#i{b:$qL6p+Uon** (%dB 1' [ ;  g >LV  {t R ~ x ?Q ) )\8  k'wH`!7 YeNnU'mdbq h*@+0; q;@cMX|9   8 w  ^A@Qx  ) &L>^c zAMgHyb0jrrhiP}Dcv^~ 3!SBwrnC3m?tTI qO/O6Lj   )}XOeMEnh!w_k6Rh`?M:Hs(kYJX@K~{k  CGn $ + :EbHV tWS_D:W w  ki  *J 2 +Q<Mt-'DT%ow({X`'pA=~KYDrVE   lR dMLgVTItl~+]`L8 )@& t Yy   U q U )5' ~ Q*Tki~J\>o?CqCA O@u{fm 2 `  / >)LTjiNkHeuLeaEb~B-oD{@x  X $ 5 NMgw`\_~uJ{Ju5( cC r ~ P2=f-t}24(W * - l C "  -iMb#oYI ,ZL}aEKCwpD&/D$-}Tl&??+8B\Y==}j\.>BZ|*H ds   #FWz8dSMz'GY>jN#[q7S~*c'H =oNhZ} PcY]wrN`>; =cA: w_y=3;r{R1w^R' 4H I*[67zI5 L _KW]u |R98[~sFcbT/-&cQff{>*n:Ke B-BY~ ByqQZ(Eet6R]  6 Im#k0{>\t"&bZq_|Nv`g! k#ME d P> C )|<I u N H 5 }  Y4UYqnoGWd> Cl&p>S!2b0EwE|m(a#oX:fup * s ] \ #Z r% E8yXf6'@f^xy] " > n # m 2TK,d Ndp0J U|D5Kx;}V!/Y/@x#R R? ` ksKT;Hdr )= )  P  Os ~[8 Mk6O"8 Z-C ] q hhp#4GRZ9iT1v-Z ? . #R] & I (. hsD  {  Oi<pFt\ n7?FnyvclAUd9mIe   ue ?,zTG|N_>M; .sjnDm^Ir$ r/9sMCtTu!C$% . 0  % C#VH/o*.*xL?->Vva p 6 k(D{$T ) ON :p  3oWE^  A V m` \  U k=y2E7|Zltd   D  nN @  kI8}XySX( x @( )g,[+gxj=;*bC5XSZK uE37 9 Q 2,Fi6o?rHen6cp2'~; GaQ8#My "  P*\ef-g=oC5E/2/VpU B  ? zus#S:E=Phh~*CYGthuX\QaGMFW(-GNL5=\*p @+!e-]{gWwD _ b  E~r1"2# 7C\ sYu{n}PLBIfaLm>Ja#gdj8cHCZWh<=ZR?g-gv )ZoK)oQ8Xq-~(i =eYW t` 6 -D    X 2 r{hh  J i K o7  k T !Fc'=;Zxf3r'W(7;Va]UGmC'?J\!-];2ytK*]-qR51 5 Y:f ( T 1@^b, }F- w@ 2$ )n~XN7m?l2<" | O B 7 8 / R@:>{{,:kN%$%{ Vmp#Nc @j7%h7B1wY6@Aj"V;MnFBSbs!\7mh | #  WIAnZ V?*N=u JsN[XA> i> X Qg I pT@oGh8hYN0+. Dn1-}luUAWt:"UXR]AK  yu]Y,[ZRAYo){ S _ {stIIn-1}*yC em1 |W+i8hn^ T<C\%bE 7 ! eY 5 ZY a T W  B + 2k,NkR ~  w e ~ p 4 un,nm. S/rgqQ}G3BIvW;jQJISuk+ f[dqG f I cbtC* z cK$;qL~(vTLJl9D4Mu7T`SKBA3RB81!_ Z Lh/*;io$N0 {1c7Nv<, GF$K[.BaZ1eO_exM?# A*M/dZ]K To Y kN kDncyab.[uI/EWK}l("4.R2~K98/BS  ! 56C: 74? i ttd!1SZP~&hJT*_ KU;7UM#{DR!-oH\N fc|=dD_J;L([%J0"*cr B>,4"eUk[^e eO 5  U 'E | ?*~O[G"S&iWd\Sl9v(`rrd87QM99}{K#P4 T M 1 !\_p|8-{RNDK] q Q- m*v2o$EA 2UchM?2/U|#vJZpgUC'0d$J"l/?].k{,o5 d$i[jDJ z[]Z  lw:jnMKAE0osw2m~ df 7"E.Q h d 'n&8S$rt2}ZDIm)^O)ShoHUILD_3?0ezN&sf^eX3.-]FMK5`&=O@#.S,.VqI^e a|![\Y/7rKx`R)$^ %BF_5`w%_x\o.rY3n5GKe=olO:fjw8oK. pGv1eGg2 oa~O0CWx1?3J?\q~ :raqUk D |2o*$&v#'X|Q%^jF l1) sR g7/&@}I51z#QgS{MK1!u$qWvnN*z9rh#i3icw4Y{"/at5z\i Y ,D q SZ$y ",4g5IMEg;  , . fU9@$|~v7d\&M"H>E, z}=2  G}zxdU F bj7 I r mq;TZCdPVxPd #qVY@%!/;(8Dh p 6=$YV<3`p C3C4E NG lJ : #k  $Cis,'KV5?q[0~\ UehupKJLzi x V  4 P #wy:d?~SVQSf^x+p?P4=x a\&Tl,< 0,R*@.A_)\?45+k6H>h{bZ ` gpy;aiORNZo$#}^8T#yOn *>Rs\ \O W2I;tL  J) awIJRSq1\j.\=HS/ @](";T^c:k%[j{>[ux?OvgOs!iU7g>.Vf8y5C#R{~l~W]O x ( G 3  1ov?=buRa?P<mc{cpM'?eGNI(KJ*cb vYFMlbBoTu9N iz&+`W +0% ]S I|Lhg Virz7_<kVW{fIIFx3Wo3 [Z0 9{3n=fI  k w  @ Ri>o ,E$|giF'b3TF$7)tm|'l&   {  S K 7ZY8FN$><>gUf*k:*gw|M64ygTR5Z1YmQ~&O0lz'}P;:_Uhan!`4R a=- 5N zZhxfH K{(M)v7luN h  [:s4?r%L(P%je%<aEy7U<}#idu%jQAt~srk#JXYM  ~ { v  : k \d vYS?II ]qo\c!G5){ M,[+9g~,JOOxBzi%s^1'NE5E1z/ I  \ O d % #  7e[$bAc=UfI'a}h (BUG}Pzi4!1o9Ux(.$(pJmb4ppFzJh4YP_C{FlBV%V d @ G G T3r7E.2Xi8F!5D:CNMhc9 #M\d:}gnA6Bnil<4>h'0]`MxVCwu3k !QQ_[:UeiKiq+s[3EvLg/sf 9}-,!7! N((_SX~ XeXH2F:UN8(Oi! D)fF 49!uDh8D:yH {lL~'5\~'ITX6]" \:{NBP"4t`{  =kXP I } ( ?QngR WoSsG,Z7].N^('GO h@  cfFws@[Sc|>&e4V3# wh:&e[14O3t[gci eK-;fd8)% K {EhPq/:y0\r*mBE^T!-8iQ`3KuckMRP vH g~ 7]}wKh+V& 1D&(7?^_  2 e+ J+O]1*q64/f G8WY X%LNlF*f cZM5Sv'bJ&KX;xC!+Fytc6f,  \ a _6^AE-^HH9D*Bl>Yn]F(<(KOZJDtpg)/<;Io"WpSDr:kB9<6%S_O  ^ s J 9 L (W j i Un,8;.t#+X']; kwI\LQ~C1I9R/oNtGmf4KoA@%~s/=[FwqDH-o7/76|, %${UOB#meo YY{\5{,^;y:;|iaYm`F{c2;*!_`GhZNZUAm9xs9n9@/%N; Ch|$B?3BbM+T^WvJy?yuH7KV?nY'-lVY&@^aYT_ qI8E >Y Z s.>F@J&_=$r3nJK%o#,,=_E 0D = RHTj|P f M"\LrPTw'IdGlDs _ S2  "P ,~^Qrr\wK q;|#a\*jwh] ^KVua`C?MWq/U.AuDr ?F}.D.d:sI{*@rnr,6!un*nq<_!C=`mG;kR.r-S p > AQ0V {xr&P|j] ImQ hjpW#w~84K4Sban_972rV<#,Y~)KPD !3X9?\;q.#\`?m `8  | Z O @v   wE>~]c)JMbUKoEc_@ 5.U:uG[ n4;&SIB=u32 Hsfm x!9(v\   <J1 m H }D 8 eOtJT6{}O<R&m3- R_9b=.I2mf}'+D+5Cgvt(Vw8l)l]e(<SU K@  ;K  % ,d3/f )qkA8rQ:DeiK9=D~SWE Afs=" F gYYOA@[O2'C F4Y`7lW.MwnZE6u3 4L=M.pwy >'be]%FvqjjcJZscxq%mW5]O`&i$+9H5K1f3JSN}&; R& NgdnUalE{I_VVMz {aQR>Cg29r}'|` lGbRQ '  SG`iK80xCKPMpi{UlJw{ m]>) | r A J } {GX WM:$`>I0au8C T#l7:zu+sZg7].R_%38dGN7~cLw@" &b{R~`Xdkr4]-Xo2]kN Zz ( ugLnCV#gik"w8wigI+2vZE~{"pNA@rLO [53SsvvxDLT*^*vh3[%ASA ^,In90U nW/tUccOzWecXF*:;zT#4]F"(GBW0 mmR* . %T 5l ) )yeyY>b@7ZkuU 7lagsRSILYkhsU: [1y3. l$)n//F`yze c^x_Mg&f"jA{=oac-rQhVo%"j @7+rUvza.6:Jza 82gC-@ C`>bfrv,.c;^ +; gJ(BQ Y5H Z8,fBSV$!(Hl7.Y\,S <65K;? {` To   /qeCS ZYZ$ ;JucL/3j&ZcZU%+7}0X[l}{v\  J-s$5^X[9[H{NLLLl| &LhUMv^3@s1{@D~ v' 8 Be 1 EM k?yQ$tnrK59U5iTO CeDU~ Q [R|KWl\!NT;bRD$3~zgaAnzgFN+A`s"}99B{UGc } 4D [6 G d 5@?,!p*4 ba" L>$j$rSt3;~OcF(WC(uj8,+!:1^B L TS,+[2i{{mPUxMKIquQ$SxhSj(3JTQ'?q"QP+t7%+5 c ut. };EIphj=:@8=G'cNN u_]=x/]pdL P ~! 9 ^[ o0 siCfp8"-)T] Eg{iQ3zZG0it(I\._Ws%`-uc(9O~ Li%iju"gW$/Tq. u)v'=2,<Knvxarm7E?? }4;W]*~tP:0 e2<q`).d+C(vzxXq0D[*`@R51K|b[6 UDkm |  1  g ,DA]Ancwv EF'Vo45*9c~UG lBj;Z^X{[rR?>M;uoud"zGbCRU(C54;}2HWy e,u -o'Z~* -7I <D(!G*!\oP)jo[1N&yY-0 hh#Wa:nUG^k gdnt:~"I^*. ywXElAC Qep)!P{w.5S 5\Ih2&l(q@,pZ26(mzw&s(B3XA5- :1UT9o2T r6< ~ b C pb | A n H ) ;  pG8I#)kG6 RE?"E f+ #rc=`v ]SJzB267=S:b$nERkza@|ea-4Kg p va  ( f1%`"J*yPLEdtHA[* evq#FNz 2D':j!fC7x d'9?$W .)H; = ti@C&`6ysexo*yh8P,tpt'T*[_ }G"p}?y5-l9fR%rk" O4J|aUG F#KbI%{ VQ > q90}"W@E_|V0w y U9JWsS)}32AEZ@878n*Mw{Vo1f3/s*23iu`Y?W {hrU7WQ<v~-0qZB U?v{p`;  K6 b&sF8$ i\@Xt<7{;1wBy @VLKX=0^6^,{N9oUF cbzJ@a8 eE:z"t _   p  c1)C&%o2iAM(,wflgqZ%(@nX)2I;SP$0,Y%gw.d+YR @ z5C*h9m 6hf@o9>Y|n>e*M&H2%rFB~C/9"5' vEFCgJ|xd+oQ i- iG5i{g(Eb~=.X_51O&3|FSWaY!-lx2X?!2]IHM14T+:O)+n7m(VS) KzEGD/D/>-Y7C]3N#FVL/ K  W x C:}y5OG$u0t-dzQ5(\|za\mZ 1  " .E   B} hG]V0_%I {AZe7TyAa82.4'@0"Os,edkJC:cA]`]d0z]5 <@ZnVY7J]OT[mjea'-oEA@AJ)"+ k:g\PL UsM"D &fa* o.KUM/|C#uO'5~.ns}?e=F6+(10'F|c`w%9'~4ja!(PTzexl gk=8 .8Uh:r+ .|HUWpGt@KRioPuO=k/A8\V-|G!gL3e} -6YF }.2] 2l:jy@.aXV hTbzT<D~USgw 4 ZaI/>* _f0wF9/(?PpzhK,6Tl#TI}<O"oqTj~g\"3}4rgHQ9NC,U8%FJ" FG4leex?lwQ0?:=l#Y6rgD\=]@b~uD *J]@%ZU7+,~J!]3@>o)+[ <IZzSPDK8^uZk`^YD1QoQU.B 9-pP5wK{sND# +~s`F'Qv$f  aFC-FxVR~#^7:GpgIf2Ze|L@,BE%ug]@Fiv#Mk oRRT> F%O3^>C-Tcm@PLZMK6~L= xPt&TR mB6T k@|?@6kYh=!'ajxqcP2|unF"dYg:hMi^c_[.7mh[y`LXyEG/p'S\BPz@7@Rsdk,"b Eq*="?<FrT~A)7 psf'5nA\Y~ |NR\?"X@Z3Q_}pxka%DjgK;H]>Z-po 96Rb&BS$T;U2@<(YN:8/E>;M2D75a4U p=U+Dz0"?/iW I \2xyk|8Jf#n+fn O_B^}o}u+o iaH0wv|9yyT k]{J!VJx^Z#C L/ow'~fa[`9L?{~8{OwiGz3_"<]SFHU4P6P&w*Z:K5 L+$wN"k"QBd >rCN|? 82/-+^QH ."m~2$mEXaC KAAt1u|0ySx:(2 xCWvsr&sRzU"=B"M#ov !jqp0z<WOFp8 pb Cn|C {%o7Z #_l;=.ay`(=TVavq|D_uP8z$TJBwo lgVH$j Mih1f1M=Wq[]L+ hGD :n3MD]Y096aUBi*{YG{`hLE7 k32\rTDk4;=QJT9^p+:7M7Zyg!G&g-|9J ,#|,|XSF1=Zd Q[f4W/k;Gla^R  X]Koi< Pgw=VjI/9"ghF+hR'Z3pw'QvMrHCjg&D*1\WCX mP| to4`sQgi3Krua=h^UzO%s_R: CI+XsqcH-E@f[O &F/-EXtk/ae-_$@jD&BG~]I/gpo|S'8cB}0^njTSjq VjgOqlpKwP Tk":6fo{K0[#o@Kf-uhvjPtI0S}W@L3d]{>-AX ~( E3sm=iJB]]M}&B$;-]EL^cLL/mLD ID)e-c01/_jK[451@cu[bnj>)Ob$M(Yzm!_PH: KR}@SvS0.1iJ'As1${//y -N'%.*'3$uI)N{5)b9)h7rU4]I |!kls.1rxlk8M?T yU uC^h;5}np}r9,l+0tL u2q;4/ K$S^x}smX" "#;<gg579.6X h:-|F:?hwX${T,MA>A%#qH1.e(o|81W0(otAF'a7EUUDt4w:'S9?+g6 yPRijW)c&kUj+}A@%$.~^Ll]f\" D=0E]LDTfFs2QAU^n2z*1NhLj Y,; XmV-K;])h!}G5;]C-@UK@yrhI8~Y%*?cdr0xf-1oEzS5p?KZq^' (ib{:`j? z(,zg^QC!/G]/KB_v*>(F >p!UFc,y:G>6  >.[|dc#$.Sw3gf| {xL~71Z,490!z%5}PR<.Htg_$i0]7E}$@x~U_JEzz#A}|sMhL AXqsV.aHjAQh0Tx?}<m Kak o i\xU*~sY,w1 #rGi^.W.Q|hY[%0v'Is&5IGW\LI17Ka|DyW{L[,fcHc}Yvr-Q #j3B_&kP-"?mDh.OEchq{%OW{$|]2&=qYy"(+1kyu1y*t-QjV. 1G9k}* bV{#Zr6}U@0R {X<=V%{*A?Fo|khr!aD> CM QmK6~s6_^}a5KAU|H\E B)?:w%fP5u\@B;Exe|||~aeIn!MiyG-= ;y;t`\tU"phF DE x5?Ee`K?#`S' k~SC&_.Z&p_tvV9\i/pfj18` gkVjx-hXGn^x0v6V~Fk~7psT 1(j'([|I ] ]{c!J/JNY|$w0M(G/n]B[A;|XO(I88Kb]#zlk8w_m2*Xytcni\OBAh%NBVKB[.6y@/t,<>+UWLM,tH. B .^*vv6Lju9q -fE7.m|1tt+\r#p2xdE>!q$E'3!a!m}/917L<t:) us[~;B74E={b-E~1.t9W$ yuGhbzdNVE'gg~A-La*zIxE0SGs3o$imdBlMH_9Nk]SOsQ $E/MN$9$Jk(xr~jj,r }u[kD%X?*AIU _w.QF`3W~^[(ur /bl{MPr<$18m!\nTQr= ;bY]~d4d( `Y%a> 7:*iR%$,~'FP@  u1CeW.('_y3AWR3tf3n(k1 D}a<sPE1VULm;P}Y>_7ILL'bM#g^I TWUKfEV`"2}wuWT4sV)(.M yJC}\XMCQs(f$O|z.J\eZf_ 4FW@@r\nQeUt&HU]y ]vx]n39\OyAna'1rNoPa%}uG<vI;jx-qX {o F5pODX{3AaU2nupFy8iYA >rd*%KVqjm)_`2)gw]n=Ha(*!2mMj,Ao00<^q{G> As=Yz+d{@z;9e,xjy^nMM CT @glU&MQ?<qaG0{ORl^ i|bXp6BpW pe:7?cN3!Y-yws).z{wUl-~=P74B$?h]( 7dHk  Lwrp#}Cvf[R(*,&2~2~UmU:iq{)ka) ~myvo1y89~g$h"&T",F bXZFHMfM{=3t6mA(cB1CE"a w y m0 e 5  |g >hu Ha0BB1cx@0 5^Djfy1.-CqQG'=c&)]S 4|U]DF""Tykpdrm^Ni6y){ I.}sm  b>}L@f8ql %`PeP\tN]?*&|9m l3fmnV VE#u1V; LW;n; |NT{ qSn|J|b1+P].5f3-Y0`L<LhU2E%>U8} V}9( -'2ul"sDx bN*TW\t46a1 '3m$'Lo)[? a V#Kj{\#)*( t`*Fb<*7)q"p9hp[" SWL]dw54bLh/vK'0rgMr 0553(b[-ZTi-2f@Oo"q&M jLREA,vK0XGD7.]+UHeeF vvf T{9k|Vlt07,T`t /$ =2z#\+Mi/5ZgX*> 3eH9Y&,hG'qhK1LO:hLDsM> Jek mZ7 1f{vsUFKjrhVVM# lO|oFEbe  +C  !wVQ"[pflV"#=yv2'yPt6}BCv[Zw< FJj; xGL}cz| )p[}w,q/96q5u>' YX!;>y wvD. e( (*{f2.X-cU^HcH 1A(ecM7?C}DNNcDl7@z#;<\-8+nH 3] |~eMHJcN D.t:\?aAGLf8`A@[[j4]ksT{LV^~H|rF^(}SaJ v!(ia2qgM  5Jl  Bt3xizaQ$d!I-%&jz%8/(Y&{fI!.7CbeE('rC `k=&e 4YA%2oZH[^ :-mD3jx\_uh/n!o);/ soR*miG  }~,@9]Wm2N^x&Cf =bq-s}R+ U r]UCYTW##Z g$ 5,SV R9$cj%?A8hvJ8e>uKU  OTY- u =pAkT{INTa(<V@KjX[J\Lg<LNOBpB*0>pt&SFACnkC*1.rm,J8 U;30(R'q$LRwM+2m&|b}h'GltGya[J3$nNYmaEY()L: bI{<]f:}&Z7sWs.sGd VMB,h X[?)zN`9 XJT\rHyn#L] ),5"y3 MI;LX k^OP $w6`4 ER>g^ =KNlJ GT[{,h |bVf(Jv'w}<2|EHfhB9E wHA}*o LA>/^"}kx,\D  E$`rn$AhK;,o!6,ghCMrUo|a6#`-2)_[$o1Y~ ju]Wf!Y/=<0s:Oj|]vu2Du^e0fR&=H{4^xf#FO [/X 0& I r T}3[~^TpgQ(D# : sVYflVOX-JgX POQ3m{XEm?>kij+i2WTA81mbhvJ3BNh6s;NQex{Bpf9X:=nK_ I MH1%^*,vYcaW]RQ+\i7[W0Ma+3$Ngg=A9cIr;MJf/}>QlTY6*xM 9j)v-XJ4@L c`#"U/`/.HT#'"Gw&<s -xN g"3l!OO83 %O$o^Z3_I"j3,*`i!TxyYlaW# YiG eK Ecbev[26`VgXQlycj(.BiJ$vKgW#zTdc*{;e$Zn!22A%_@q1([6Sc1EC~ei5?r) `[}u nNI_nlX Z j:40%ok)m[xI2k;`j2j"E Gb|]x0Fb$=F6,Px] rw*;Cnt$KT*<5~#VDYBzx&x4EZ5& $wQ$#W<eV?&)K*q(yre +'T~kE;Ja>Kn0-wP>#`GQC uemaw=iv`\ :-51!g2 1Bv7m]}c*Mn M kYDek3:9 |Y|!>spl?6ts(c$FY1.X-{m+89s mPt_6!md9Rj`o>X'g/!5dTVnj= 4"9. P YDdk)%jRf -U?kMJ@H`{?8_ VKoS*'&8do|{fkiK~i=luC8Tk> L;h=s Y< EaD#m%k %^C`[iwgn!5Kze`HwL9!sk4DVnm O}4^ @[5 f&"j6#e%x)nlds0H iATT |8'RFdi#5 TJ/O(HPS.{z2X!1tsT59u WH9]v?WM"I 5w)!K bQ=J>TIvi;n'ZpjMF@c rY1Lp[[k'kBV*:{G,9-zIv0V\gLd#;n')0~d4IWalby`DCHZB5~W  !`l'hNiz\eHUs[\rSC?T#~W n[w'C"s%p/jA] ;D:d}&y<F|c7-a4iqr9ye8bMMSQ9&kHe9maOBN/S ^tV$^Kv/7yp";kVTPu639A ]TT|?D4Y/6)5q~D%uCNnG!+u={ M~?u.^B.aJ0 c*(J_2=*nbIVl gae:[vfp sW8<LOZmb{#n]vJ/ <Wr(V9lC*\ ;=#A`e#=@f2,b"axvnb?AYyn.zc*l}DarpGqi hxtQ`h!t_O4HnMwAx'CGS%O^-Djq(ehV`uP>|>=p;PvPS6? v|R6<\i)ni`C5^RES(i43^5cH/o!Mgp|VS8 L),*r,x U6 P3 TjGDn$q\TOLYv!T|pLL <u=/n|fKNKIg*/tquYX7wSsAIjE['#?!t@Pu\T BjwDacZZ9"_x.QgDiB~cyi(2Ufnv|cN*o ! 1v| J x05?\H>n5z#% 5 E+N Me&t8 Q]>Jr6E@dl v gF(sF +7 ?$;t 7tJ 1q0mY; xxQSNA318U^IKY&^lxVTeL8a%lb ;_.cl]q9~<rjGpD[zUuosA UBMMA?*!]$/ ..4(^|K~,\0*I9!E` R^fj"v_ :n1Mf/`g_,(+lTZ\1 EJ$MJFw%Ag})cmPpf1o0k.d,sRK oor;D@DbdY4=XYhD`_xrn-leN8HAN@5@bOGW^aOkYOs{%'<^&sIC{jGAI!EB mPEN>uu}&EWZi`~Ye#sA<CkX`c8hmX(}2Tq-G9Mdf)UDvK~{tMDZf:E> W`9qd >F!vn f`>7NH047'JOz$4wN+@'3xi^UlI Lo.C G C; WMY\w|ch;l,Ax1bjUR`jD6b?/7 5u[G6,iOb0` BCk]_ "`O"7/(}MMN|I[EC*@aH D.~L()ltv{Oi;FKwGiOT-~wI| Qdv{:b O-$nRgUc$a7w!>"rfLKm V Cm;9.zH+gPW]QXN?T3T^ Or}sSnaTC]>-t*wJ 4** f$WJGs\Ct^ L]nR%(:EgW.zsF?^EO ["\ge$}A C.D.T8n"vI#m9 tUX3- 9F3CqW@Lc}+oJ;`7QH/ObPdbxuQ}O\b ?+PJnPb<'5f'_a+E_  G}PHK$ANVcVd[K.%LR_dhyk~wrJxk4z8]8ay}<@4r0cu p ]Nu7u\?<rGL` ]R|3v9cwQX bJz#)<l5R6rq+r5>T8{byO Sr@i{HQk CzXA?.3Np|$W:SwyUh <.NNnUY O*WW)xnG]'<juwN ifej%t0= n" R $/j ,Xj:.\;S i30.YkOtkwDcMKh~)l c>j/"/=L8 ?L$5#?z/AD3-EIF' 0KJFu P*~a<r,qRmCw&|? @>8Du%cscNIyo@ e3%/ZRY}7p3S3 kq^^w-O iWvN4 *-Q,,eIl 1a C[etBP\AOb<--XP/tPkK{tZ$ G>$m;z 5w~A)F,y~v%g_:0k,8-SLu|q)f4x<C6%IW\dg@VL"Q[ G4F_T ~78j7OX9{hnq&d(,vRj aaZ]hK^o L+Ca[m@$6;~=fLV)C!)g$Y6P Pg %Kix!F!x@cY{dE$C+VOW'g`Jp59Q`nIz$ F /YZaN(Ba sZ1' b#AjK1>NG:X'6]qT $g!&*6 cV8Q)!X$<5kxPj0 @~pquHR1 pwWH~Ot1+=1fK~r|C# To4\nUVZez##m|=nIk<$i:)\F%k ConL[r>PRn iv 6`<yk$';*X;PU(  Uzv <"hjW  |ocB7a)^?ah@,{^1Q"R{P5{=3 Q  s w ; g HrIz7~S]SAi7YU1nx>0%K~*HR3!51WN {>T( F=ESZ$ngly*+rdqn^&q4o0G<+[9G^`~[TarvFCnvc5uO;#Ya6L M~NEAfH 3E } C)`)9}Q:>vN5_.]t iY7._Ry3d!$JR~:geEHB9Ux"qIC^AZi?'xK }ArQ%~pIBuSZxj&lL~;I xMo+dA1hK0Vs$:St5[LKdff\S(8} :DDr{hF^ ^T*ot.3 )v(Wds~s"!!G1 >cO&l 0y'u J 1'$fNu,TYiL8PQ%9eiFH8 T} h|9Q# ){ Uo]u Zbs vV,3KH c,~;m] 6& i X8=p;m@>|DYYgL1,<<KWWjDpAY|I\eTcwq`8UVxeJ&P6  &^ SGkR$]J/i-P~b Y:4kIMU3Hy'hc>>}^lP%`kCnY>k`8c>_xG6m"z_``6 >  Z U ]  :S `>N( nADF&j),H477- S" 7?+=8y-m|A(Lsd}zx]I)n9D<?s;"p-_~[# ` uC8=??ky0W#+[]QpoiOwcLkUW7M+5,X=&q*PYon):'EEh je;X)qIaW4 K(ND DrbHxT|NZEG 9X@M&#tt/$"*B``_vp uiE;kjHr+zJucMTW;,~w=esWL1Ycc6QPt*C_?3ou[T8a=fD \`US1X.UUM"u4}q 8K yAbf]Q% O`BA8V6N\j'@%Q[f0`.%";Ce_55F.,3P,gL9RDw`"Yx+l 5M:7e%}cWahlJi)RX62>?6lk-7~1YsT6 d]^giKD)\\~A`` fr[;]-Gnp, P>f4gTZ^A)+GISHSvKx`]M[ 9V dj.uU?6PeC* }d*5jq C1kn$!0 K*|A])oiP/bkK3$!aax_=p5TBNW h#K=B 6h"1d>dzC[UYBM_ KK$8>ecf 0l|w "SqnJ>B D|jkv $Grlr0+iKwc F| /((m< ZdLj4@C n&d*'x@$B20lj $  ?{pP sKmR6bKGu"|'S&Wo7)xv@ ypm5b;*(]mJ b@,s!^Mn[$A#AnBjQY]c94M=-GcBi&toZweKYivBY*U(Dt%yw0M]._k^cp<+T~SO8G/,wOA6rZT aqgA?p*:2&b01i@Z {9U 4H"]gV7O\a-}<BU`(B-bSu2f{:_7HEGA5ikR I/S-4Le3Z ^3:})#XwBn-]&_L{' |o EV^c,w Inp\ FBOJ  ;DXogH x uOu<m3Y*oag{-a+wK6$2;)q'4|!U9[!:|2|&FMaT5CCl hRgZ?g Fe>Yz2iJ=#, .Q@hL$pCnbWi@_\>j"){n9.s(wQ^,<LC][HzB6zqF.wgGU{C6y><>2f1wR,W'Ni/h(wE| MnU]QBYB@EmB@= jgy"dG {~$3nGrTT [?0FjlVm!z9e?ETnKB  {VE^%UqCk8t5Q= Ph^8[il9EM+tcdVBd>{D,!1`yV*pZTb4nCA11YL @Ou1lW9AGs3::+9/Ga;E?8pO mG}pJ#Dt3| Xte7wO4-6nPgov8BsR7dl %~u Jxv<'n Nj;+T`FVq"OtSNT-I<4@"LZUxcr-' S>Xgb'R$@D%60%$q_IVCP.[ Mh1  !xjB\dFfC|  45]j#;n_LfEF}CK,9U98qmXs"M7*Uy o]J&XWC #rez`o $;^.wx!Hv1?8 -RV 2gk7e%;dMO.F b;?0i6 P;?= [(`.ipMCW-V:gxs:>j[?UiP\@G(t4MbE^~usj5K$C5dFI_1[ 6de?ph5[z8b Ss@bLL,9%B=kJg x{u2 SZ|f]L``GF: Qu*74oingM~{}$*oi$ =tB9,s!mVMZI+65q81?%-k"}QXl"9)MOa]0T;QUtFe29G*K0]UM m=KT 3$ 3::jKeg<o%qxp/MgaTi T(<~wI`Rv<A>0$1?e?}9p>w[&><S{zJ7E "r!&8o'ho@9r KBN,?pFFvgrBCyTg8<6J+g?Nl.K. H#ax\LM:O9RFrlASC$R|&0`'n UE$ o% XG/nUd(qikM0X]f7`+I0)gD_-1N^HUMt%^ ]A #P4Pxv,|CH5 +MC. h6?Q^TxC^;C]AtQ,b0q?nA= _E#8ajV n`.0)^7rFwliOkT V\Z1q6n=_h2XxNh 7yhBfe+<xb&a~_jlUrkz|vLcXFl&INbpg& 5r4cNcJ} .\=DfQ0^b(2]F,y)8==^]8Nonf,1B|s37G$ghy? K];+U d]B8R"8-2KNV"}pw /ePOM?>;E@$-}] 98&~("+c $+=hc&?t$1M?\3GW{gEMC/*~ =oU[(={ `~WrOh*f&5/Bj`uq\5'L nB"*$fs 0-VuoCWL]R&z@+0VBN`SA WD(iG\:ku%*Y (Y I BY ;D)v(F@'G!9e1C(|GDzYay ")`y)r0%rXH,$Ba1Z4$DDppdrgvh}p`S5F,*las`Wrs_-BZn* LX14qQ:pA[ds(6At\q5>ov"]}Uar BxQU.[5=qv#E.fry{Iu\cfu(|}6M8bG1pFya_Uh M^'.>>qQ#%?Q)x]Y= {G{\:O1^B8`'OJ)D{C|;haL J"3.i-ZAj SzOxw1OcKWG?xzw5 "'y(XeY?kK1x3>S=)A51 *&@{4 o(y_}fz{n, IlLQTw?VROc@qu&1&xzA:q3T>0DqA5.)'/2UhNtA1L[udRQu XsZdcKNm]I` s0h|?lsa$P3x2M 4;s&{UM*~T7"OxH,,7;=0u i/*Z[-r1na}E#4gOE nb"{z43] %6BdF@-K+R!>jt c`aNL.rN7G(0a>Sm[SFT ,tM5Qi Z; QJW-u!-`-!x+ /)w ?m(6!qB{k:O~mL40xB YjI} `S<e q\Bx c[)Qm.d&r@_>RP\u/c# vqGoTt:ODf'_KJK/Pt~43i ._TCn\L5@yI{d?7b0vWLm>th+F3+ihx9Ti[6c$Y'T7&mg@Wf9{YAPq150GY2}*2h!dW"zS%hm|W/fMj' u$!h2g`G`41_u|kXA[\pWU-m!OC]?T/;_5em}c\d*t$)]T?vn%h9=nUqE*^4og~QI|4dR! m,ME`2TG RC#'58 2#!{LL?}YNr1{ zPFNugY 4((13fXi i-** U[W6+6bGC$T;{G~qoixq4 z4 ^EV!EnJ /H#4aQxHt]GN6cZ`^R N}pp^0g,Bg1\;amX @W2Y~ [S8 `RA?OA>d1@UHyjG)8kqd fE"G}-Y!e8N?ZO|20Lw=?V?+AF.{n_k`^2Td*? W%}/o(Tm.bWao5.}(}K>4 1IUqvJMw]\I|uWa@D(<jff9b|#CxerA `U`P IYH;dn?hn8Iwv6(Ft1`=o k 2n%HcS O?O'3(kZ4S\Zd0n!{mwchz? DybkC>tJKQqo{ YpPk <K#pp3;P%9-'>| E.*4?_gxQ' xM5)qZZ9~z~r4VU Zu6`9e"; *5UZi}Qyx)\lY_)Bd*JoqQ[y4WK}B8;zg QZX""&6DS*.nX6,w?_c)8D}K(!`w,Gstf t`keAFD5V4MyCR8RA,n;4Ut8iGE|n"#fp_-4/]Q< ) vT_FL)qTf0Wk$ $+\ L3/Z5SzDoc5%] GuZsQRe~"kPot0]j:3TO_K!g JsAAPFV|XU}}'"( wQ Abh)5k5SWl7aZf"_e8 K5yk k+,l&\%&?PMR^9N$fO./LK4r;ZaHAcN4GHBmC{  Yj~_GH%j;l\mok"qK$ /`_:kGuj Td^  aXO`/( ]$4FB~Qd %WP+0aIUf9zIB`Gn%RK]U\^"* -<fnh sVCpJ@Jw2"Lo7 KFyuV %/D5. 1R8Wl4 1~7[s] >:5;a^P*hO):S5|#1= .ZM9f9vv4p 3mJ.:l*|{-f` (*fd_) i)iz g!qMTLHod(_8rfBizRVlw\d>6z(a^#LRnm51{+ 7:, n/]VAtZY[_^)}(6Jift>cWka*}tR_9~clK)p@1%Z )C9+wQnO3aBL~* :p[xByHV4J{!@ ea/Ab%!kozqPvga6`N!(Qd>8*D2QWHS^hDTX/X5lc(e-4W~oyw- # ^ ?pr &B]nJb62L{)5plOO"m+yMtTlrVTQLfyn)]aQT{y'  d&m#Us:|v/>=3.VnP([U\_V5/cQ99jP>:I@\uL`0A#YCZ|/5 A"YK( ;j%6"T>n nhT~e5r@"SWZx{6p&#4\}3anN3''z1^J~ n9% @w_l|zbb5'7FsjS-A#"kwCA(#&UWWD tP s({GdYje3$5#QrvY*58BjqnRFeK #!0#  *yE4{d/QmAjE-(MA[&F ~Q1COl !E';D*%E`{TFL@'(\pa`;:`-(TX+E2,cJ{~e6mZ.=!nQY*d8_]} t'M9r8A[s0z"WMOw:.pA m-I7B_fR;T1 X a wqHTG(5|I/9]9,i}pUP8lb;8Y=J7Q_NoTc`*9pNqc@ zk2}F2]{,0>YobZ4> &8&9Sy PpxlCQ6"2!>C:D(fs`RXtS0 z3s|}~PF/^7I|PUF jB2TbR~xbw$ vrIrW* N n(;97W/ @l>;P EpQUww+]_[=)B3AQ ;r|2)(=C (r )=$K]6;WSlfv!Z@hiX;]G/)fXRBD/$7r7:*jvw/cxiLm+;rzya1d*:= $$1{9C1p %<sth4Hy`kD[3QqSwWdsg;uno0?+/f-Yj_)>P )k>D r@!-Gd{vEE-40-MEu~;yFK-) &#- z/Ch(71$_ m"Z$s#@^ik>z]K#a?E6uI#-&B\` yDoVzWrwEks U!_q {i K~Z +}F$eN*])b_-h^6_U?T/CkL|^ 5~Y!j8pQ|]uJgG{wqHPF',cKh!Zk>Y)   5ozG""$pDm>id%)p5o^<1Tn1BN&5%,$8eq]hQAWP2kzuSaHTtQ7UkXfr|moQ9& 9p ';iMq@9_^'.# ]U[n?jl# A,}p,I0]_y"p%+ g6 p@]]:lO@uX*^E.e!z y8oS7` @R3uVoEo( YFKK >^g` 3Wg3 ;b?5:)+:8Mv~LoQPw%1p? 116Z8J){[tnZqpIX@P`t[0}kHb 55mL8$N/=W.j |a~W ?d9Ot8}6E5V +#a9c,n&K?H$iA6m ' {wALR$(|m5 4MQ:$zHd'nQv0K|AuEr]IuFdaE0|'gbsuo#T{L~BBv.E^x&!;0B S]cd g1c~[;R/3Rd>[^u Op[},@K`X%9a_b[1u ov.^/] PH=s+6OCYmo)Ij5D[fvdF` Pg6>1SI-b,p?A[$n:WSu=nkC%XlORt9_IDCZs_S-|$99tTh/:Q<wyS>\ `}AHb!HE oTf  tr@@(CQB=y-Y,:d rCF^XJ&WXGb2=,pEo yHpG-3$TH;9G~ '1B1HIruc<8;h>D:0L X,NoTEG(Vaj}1eWZ>*>Y"f+h3a$~@u'"=J5l 9_urB2lA 4<5!|Ctb8X)$.M tsBU<o&*[E4g~&c oz][*8e#cGVBq&y4s` U]=r5ku+3&8{oW2^uC !l ~HKGa$Ob7gL##q urT2 @H eC[hand^1oq$j0#\`xy** y #m$HG/]kIE[RJ -5v~bPCa!1T xJD"%;kAY1k 52m-1kw!U^A_A  `x9..F6f;c* 479{P}9iaeg[>jN&W& 3aS1=?n9%|FT9H)Wn-(F@Z~.+=V !z."`7 sI;V] ai.3VTK@EQWRwm) "M[q=8wQl7IKv3 wd|vz=&LDL#8gv3SMI5LZ"GabE4gp@WCd{$D9mq&>~X }i a%W)F5w=w1ow]Bd%I x|VVofY /_u`zZnks5>\JB& zN p2ZqN>82**wa~dpBuPZIJr *)/~WBPP\Q/N)U M-z#UDxvLd<xSwe1 W ]hyEHMxR-uicd o*Tt\Q]IF >+GBlS V;r5?y7W?sydxES?)\[oKuHdP#} RurQ)}}^Mus{PfTrAK0 a$ w ?R`Ni2EZ 4eFnmi&{Vb[BWUR9KZd}l^sf2H}E5l |) /h+Kn7-97t]r&%zmDXh4@4H|X#"  4p[0Z=3"yWl>"eI.9Z`=*o4r$unnJ3K~E .RLj[4cyr &)nhG!q&w|."!.Z|1@'3M$wy16o2R?/XZ.uyH[9jE&$wbArw*.[ C|F;%T-YPtq*{ !J*qxYZ)9x\5l;71%P>jb4LC ;=LJ!Ylpm Q?|nUEN>}^$O:|Mc=;qN3d0_#0s]5@_ axy2nfsKN,;yl%[Ch}`<a 4Y_AH_AYt&_92'_zT)1r@_ 3i "O8{=mJ$X}fK>rO#</_nE|%D:i*cP@lB $2rX?(E*8P+,0HpD2G OF$#j!9nZ69IzRAqwcdfmv[5in mkWb| ]39|a`&Av.`H|'jZS2EiWeUoH`& gyTgLpNuX)ifU^~ai1jH2`t *r2?2d4Xh~%+y]=)D => Xj;Ax Bw+j]r(\((CYD!aTGU/t)HZ0\bR>jD3_:V#y{29DS_FP#*i8 cAsQ]n^l}dBj_o$B@TJ93v.$ub2<zydX0."(qtplGPB @;^\^pE8$@:\lmTt?U]&1cnw<GC= :Q"f@;X#oJ XkG)>/\HQMa3J/5!B(~i3} 76?%,+;]t`V5[a?9Lng7m8aG(h%aM9/Aj+H 7! y.gT%4AW&dua]/CAomRg7~?I\06C8>Cfe(z0iOBDqwB|M8yH/ :`WpLcT%+KymgPe-<i'[s/@wR  I/} k?hv;O%Toc:'EogbV6M$22Sx<xE2 T/sh_WD{zn 5a'*V*Nns}DDhshn1-X %D&q*hf`MJx&Y #Lcye y^j9*>($Bz`0;-H-8,!(N]%Ycx.Eq8+lv\R\ahP3tsi#lH_7.<*:r?6XSvUyo$GD>e3=oVRnWe%tHnSj<`Dz G|"e"`WM8} =,p#p7Z$dzRTYfUQ)^]0d]~g/ fTT )pB^H ALjr_?Rm xa),&|"AO~BsLsjyJu^RdsIvbs b.s\Nn Doykh&{dZ$)&a #>"QcE^$]T&uoE_ )0vV}YGP'fZ*k]kK|"m-\`ih@MCjawrK@%8$rdK!{Y]T'X,J[|6w\hT~[5T?h^DW < &O>gAs Bso,-A0V8+-RKqsP5QETu XqM'Nk"%>{mm&+1w=5vO6ndaW\6r , R+'E Z F l8UlVT-GN$dEX/w$}4&aMmF&$h1=2:0$J Wt7i}* TRyHpb{<_~M^)_Jqx]A>C  5&Y  4@`X XQ gz;W..\L9;ix8vp>7o8*)f.9 ~^"=:LsUDk} qj_AwR>9 S\XUFd7]ahvv )ipd=I~qb?hET  q1d!yh`c(P11+>,X 0F$ 9)+)ONw?*0X7nK<PH'maM/LhPK#wro?I)u$(DXu )=|0@Az9394X=HQQ@i3_}r3ya^DaT.w!7vl:nvt|uBbTD7fU   +YdNp&00cD]a 4[\B49Dvrn-RQtt"DQwF(@'Gz[u.m:&=x Ha"os17'k0M}Ug{;*_0rUSSr{b//=&5,O|{{a#T+c3rhu0DwD-#49+1S3i`O*"V}@{[} ' fk'V:hFRrF7iVbuPV}&5-+ #LgfyW$Al~b9*XF]*@ U0c%CFOi@*H7mxxEKN  uT'i1}:k(WANX;NB,V/y Ix4n8X~%k)3:2B98^Q"d_+7w3GlL#9-LGLsF';>kA& cgC47Qfy"m8J:2M/E X a~RMDf |a:MKHLNi[ RG5*'z:%G?>& {?!<!p'wlR-kwV1i1q{)r <=k%KJE[ktYF j 6qE8q(UhJx~v4LQ+-T9!KzGA&>f<H*]3,**9yY@@eq G "g1x#?".!TL6,5! 1[Wt; n!e{|b4E~*6VPVt D'Fw9# uCq Cqg4 3XR_9dw<8 \ c{2$Gya~a./ `_MaF~mN:)6DhA5yp6  JeVk-8fBnPcYt S] )0-=,#0k: (ZR_lj}W6I06HrXq9>W0]|l;`#  9XF)tF_2K(RXs`wFi4 MfM E,#By3NG/LxL%N/ 3(A.%M9)~o*-+2!<"?~kQHRjzC}x:r[ _qf.!}f>Hqk6,AgWC-(CV&4sC&!cLlP|{&\HM%9d We@h&wKrVnoEqw8$ ih~2|Z5*i$:8 yHVb^YUM'>a ~X vU= GzZg#KXVMagu\d"b.4\`Z>uD fCp =2(!"DNno<4ir2"#8tA$OwoaWRXa9zs6%zEo,V>tWS7F9,N$xVS 0(q3eA``J8Hk,T^R%Ha-`BR(5+ 73tYQh{R|e'"_I(*;E*Lg6Jx1(a27= soS&A&2ZdPTb@py-x,M<Z =97y$if[;8; +dWJk\.EMhF'7Z|e6) 5)^$'?u&c|JitnP~ Y^PgB}h _MyB"0MC4 ap7;-1kQz%&R#e]`oqfO6#/9B=s3bfH1F_/e4u1^+.)!]h,#Ud#{ wY17nn # OT3g[{IJ~hx)SnuO MH Iz1*crw7vT}B\sEXr a6f^4Z&/01I< ck<3a6Pq5='U _qA{LX;p@MvYi|>]  &-W MMrZ<)+/\.^na.sQ1~s#t*?nAO&+A @G[L5&T j'5 Hi_ ' y[_PvfQB<N( |C^3|n,} 15n<IKp| o1JJknC3D)jGor>PR*/OsZL)eJ q#h=&LA[XK},}dW< .Rtdde{ @\7g`*gxyX k7jL5{Fm7n_PHP1f+9Hm & "E(|Pj#_Gb0mY[JxK%w,Z<1'q*!8p4)OE[D)Pl<aB}<3X=GO,})HF-m12Y 1a?=F{;^/'I -&+*Z * !f K wKF68j+q=G/BkdA :K*px*|d_>}U~p5cq#_Gnjn>^FH2b Ow`ceqhCJKfM+$Sz+9n3(qr gnWw p9.'V9%L5QB_Z{&KLCUt bI|$=<&Bg<'-G_/[y- Z\gCffE H0/G,F$MyPJEh y6SnH" v!}&0?>bAux+rp"#L27cj;5axaG*%,l$M|wjXDT5%+x8hcl`Qn <,'Px8+UjylXH[T;V+bQF( So<&<^S09uL d1:14P 21J UBJ*T6(ASt;{qE<^_: 1]y;,]oUM$FZ)eXA 4WOObOFSi@>RrHK9;m=E"4_4b+Kyo/Jlq8.Ky'D^Qe-JO104oW 1y#(%L_;[0\:c_2V{x5m\<g"+cJf8#>ESZPK>1(LZaX49bQE9*p3X6~DQ6eIv8#99\W<M =xe9`Rk+xt!eM-I "=1epC40H"8 |QVMm>Fpp;(E9^CbQMD8G\C;7aur] `!b?G#B 9k55\h6ZZh5o=<$U_/+ek~Rx.7Er^YU~_/$Sv %vXS"BZLE+bSbGKP.E4I3+]c.j!`c5:JT U7s-9ijAn6V+Qk#{ko7#b)~b}"!7H/Ua!}z\@v/R<\3vn<(#M{AfR)0zEAoGO -/|L4xjPV'Olr7/ WQI=/=YC`PHA_0Z/j'[s:iM3uW "Pk,ZvJe/sopOrUr\{Hj7oIpCpL5CKU'Gp}jf8OF4tiz.a4)t:R4a7v&OX^q8/Nh^\7:3D>NoHLMAqV>CjnBu+o+YFQh\auM?X ew[YD_FOHcP)HhapgrnrO 3?!daR, sb<XQ+lt; / =W@7<~4eTI {Aitr=xUL![m{`'4 nTc;a--N'6>`NDPS{ 'cQ :c4]} xO3Gc/@.9p4"h1}GAgocY9$GC }[6o<?EtqWH?oQY?)3sjSWr)v|c'z2{~V7umb"Q> fM)Ewi1m3P5 ( '%Tn*>Dwp2H{637!o^x8aUtn^~~~\?()s f fw@TCVU]NJr 4x]!N$u&{>-N?=8 D$h_w)j3wV$ay8^#~kBR_z%"d.Sh!a0 rfB};r1ZQ[NK{rECR7^0l"]CE3g]|N#6)A-%@Uso?ZIB8OL%C. }aA5@+Xu,[ (02- H:1K ^jz5&r.=i-N<nVCbi ljh<Z;)O0h.}(<rK5Ijw/yxun ]1muIk3 5 JY&o Fgk'ahOD;nI\XXI#DFgePw@s(=39UC u(z>:28&00H#'_)]}x5[`6Zq[HJf0DRJ~<$-qR!b d;pslQE;nhx49!=OVb1VeW ]` q4bpn &d:{~ln\j}62?ao(9j$_4}w:Q=rSuny Up :/p8E@z'Dk`vkj1&^+oChs3knPvL$  x9S009qT.ptnGC6%-Rvf C|%sP!"/;) Um#-`N9/bD:"NpQ=|9\ aaZfqr]\le\-]RE=Lyb/t.}cDCc_oTG,Q&q'}k&q!aCxZ pZb} 1/_ )a2N^?c$`E*! :^%Hy^W@2f8a=E'%&5Z\<Sc 4% JDu4j8:? !{W}J[Hwe.upt%Fh4>{l ANznJEPl;! yzmb,j;: #  S+J=(J`[ C!,JUp(3w;N+k7SEZyZjDNi'&E;< }3h<= A~B[9b"4~yAN$agbs(h &h:{V_;%Q5i*G#'rbWZ7_X2pi/MLx:f~uxs<5Fa5/yvA] kV[xcg1|6_PR2<8@qtZz~fruFV 8f%$o)0  .#' l5Ni   T%1fM9hI;>]_~uf.D^T_h XYc)O_U8(37>i>x$ }S{J]ntpz.8JY-d=]6ulrV}2*[`YeqXhM9LO;`>M(fNgtT!"3>SWS/'i}:U<7\X,~}=`phS92Nm:Dq"[XBN0 v*dtTs> CQ~f5b0 aqP4C+,!5@z'Df#f3{JNW0Bsy/Bl3*B2Zvw;()3I4Ypum nP`"H'46i^eAX.zUKuWiisRLoX\@p+<RAt|& h~ZgQJ/{,(`i,!f>kj]0tA0q,IT;@209<%JT&OQA xo6"481 -0 K F}, 9 #Ligwy(:Y#Pxo<rjAac1z1e I6o|\s-eC3Mj4#')4@ym55=T,3$)~X %4_uTz'<D.a y"5?l$mdlSziH)w0V/DlQh"FC5lPZ@ HYTsn(W$`*)-n `~;E}g76K[ME9<.9s/0B=GfF l=k)yVVax~CH7D)'*JJC,Ue.cVfL:@1[~5xmUM, T1Y$N/O= ro> C >cW* 5ETet4:p 1 hd{/A3N%\i|Ayu|boyx6{\GG E6yF-!^o8~~J_*A,);G1rf6tD5AnVWPdeK6[B+<Pf4.XpDmoK3Ui@>srD bgqhH]( >x=:er@&-X?5^g; NTZ m?e#j'=H(iq|y'oTA1@48X%+!-V%jOzz-XZfwuYY5Or?FwQ W4&>U;spvx5E9Oe~8-IoUsLQdBuYk_(%Dd'pmV=o)4H60x-$em"^2*E^aovmU`t]xT+WJ)5K2>f)>uD6B7SLFhG_u{a8g1s "=C0) pj#B% 1Y* J p1ADh+ :Io;t:q(+-Sh&,^7&~. $b*da'B| *3I9i1zpbSR`+l9HM*hU>2 4][I*-:>1A-l1T r 6 QZ >0IcV)NfUyhZ95]s_0i N&,8BMe\AZnDei^ c&$qzL Ukl.[Hnte1B:DmuQ m#U$-oT<1{Z)ssqquM*SnE 9(D^?o C:Kdv@f[i3fgVNE0z7Po(qg&N/~K?^K/29DmYc8 `6/\UImI0VG:~<E==GG@P3aA :d"F*eF MVJqC [> W ;]{~df]BC^R =;D(uG 0i@:n|m5J~D#hcWG'i0):z\JAt1HhqOS^HZ)A00 Wl_HxBaSI}=b72wC uxkq %8zV ql{eQO$!A3+g=\?j%E7i,}ZUN-l #V%EoH/>_+vDc,Y??1S4:b>OhRGf$S/Im/}&{vxoRh3Op11#a `>4),e6xu..$    x)Qd{)_)] REg "9("' -vVZq bE(?W[,xxXi03eO%<3vRd ~ITSu;ekgDfKBYzCwsNX3@6z3Ij&#tbA7.=P7)&w  .C^(9R*Lq* ![O1Zf TMyk&N"kd. PziVfr L+VoPW9',a/"'>XH/p\5_%Ka* >NwoB\Ley,6nV jN+k&uhMg;.7v>~Bt^n 1!l(#7Tot`^%s2;+2YpD CK_b^+pd~qvkrZ7i/{cP.b)ML7z8RjYH?T)6p/9yNr:4"+qYYhHNd_k04Sx">p!_#m b,P,}v "&Rg,,1AsgHU2;k -)JmuUY]u@{aT) 8o#> W0"\&9k= !g?O*4f T?ki&NN j 4NNqu4mK^-A|v@%&q}-Y|:>bm8 (4CUXu5PBsR,<hYPZq}m O$]|V1p%XsUQ( pGBRacG+[{I<1?j"Mbhh|OP,=g'Kr U'DI"MJ$$`,trwjIo6f5zg7O3i@gSD`KmVrV3 !W.k K}WAw5:s]o'(&Qh QY,fahl]awEL_$17 hg$Y' '1}T+cZU* Kdy]Zhj[|UQtFy5a fLL+ 8U87@}pU"G'qd 1 KjKTQtY# ,t:)HK 3"_ p7"-_ )]N:][\VvNPA,k_k,6v?1e'+5<GXrN #,<' B^/'ve$ :MvueoxR|js8-Crzd0 Gk\~)i`Ndy(3oU&V\U&Gwv& l!(28n2/L{I 0 VW~nkD4IL6T},H`rgg3<rBxA%vA<Vbl-&p(Kq=X#*nMq8jcP[Eo7W+[>sI$;n@J XV/QNlxQD*\  LFUA0D?4.  e+ R7.Nn+|OS3ML^ m(( PGqsnrG&J!BX. __HV*:Rb"`ILk4Q8c5`#)v)KP&]!CX%lg(kT>5^JPBQ']LQ/HW&&y@ Cg!c5zp+HRy> nn4KF^9QU`xLGNzf6W=<0]E8V }{rk:0s~TquJ(TZ1 OF<9x^vT{E{2tjL=n8j^ `5Kw{ 4UfAi}U7yOTo`u^B TII2]3, |3*mor<8Y[iOK=1Kez0[98NxUP`HVie7j-Su+ J\B6[$iwNAA&$>&79V?66C\KXoM8aaAf SyW@@Zb;W#P #L *j'i%r;>pY/e-a>\c:S$Ky!vnqXIbB"7R"{^\Y6]/76|Ccsw7|4n:eeiw#^781O&Iz)Bc& T]ky,m 8e| .9Ey}xu%Dwx\\RI9iaTkXgzx}}gw <Z5N`sfwS/#s~.zL?i}n!r0BmSP5T'%D7-uUZY"Zzz5)R7{natvDjGCc z & R70d2lZZcu ,`1,~M5tw2(wMY": 3%"a6KK2F>yQ{sUL{BP]u^"ldSJBH<">1y Uy9~B-8UzmvwZ--qi/2GAo? mq-rytpL6-|EjO|I $DZO<=!p51GsaZe?~284d3=r QCZ|`F8?z~2,7]eg%~#bCFN=" Nt m{+q^1 gk[@jffo;K4"=<)fg =Bhb 3Fln;G}Y+ ];^3:O"{g2Zgf.^Bxol7t`e wP 0dE1:v@L^d vf]? kL :{pPlxbeB)!u +][ l|`&E_.xukAW&o_G{4R+"9uwkW#{vO `< t`6R]'"K5$;&LmAja)Y8jv9.z\<3I7C8/ B&U-'Xy{ 3GD0*er]yMCJ:MXhF"~ u`Zas,SVzb< pU )VH@Krv)S*( ?aoL8a7}s\8-4C@MehN' sM;:O|uS^b  mvZN5Y=M{17@bsuwi @/<.1#9&WUWLU&{Pu= =m}Ah[eWaCy Vw8K)X80'ZZ$lyth>"Q 9gl8to7v+(s lg- t^v _R xB;zlN0*"@ 38oE i4JV^w0rm7lD,c Q* ?'=oFG>H7s,Ll3Tk?G8C6BK f|(-fmow"9W_Y[}+^A!eZt`@d Rq]73MTM_>  {Ac\a[czC!@}(_ui^*ERdK `Q(>ardONMA=?JJ0b'9Wm/cs`zCUY]\K<VX(.p&]7D qkN,3_c%d-N!%D;UN82 AY/]{OQTX]"]T; M{x5kcj_440!&+Zcp ,4G`w!H:'tbmG Qv2o!o>^n;$dwT/rJou9gH:.PXa x2Gy8?`?XRg]$p}$rL8/?+ "MJSyW<C, `e/)cO Ot#ytG5((Mn}V :7+fwc; x^t|1 WR=m xNs`P{U \P8 I!je-rXC1.^z'=-P0[xB 5gk[H3$7Ti'=2v8GYyV}W![Z8WqdHQr 2YQv\=|T;D>T!tO-]Qn mha`@|?=^npC$<JImC&AVE{Lz q$.%# Z}~{>DHhUK2#_*>w`D8`/`I&&E5~-O1I y@0F fe6pL:rLPTO,97qa8& 'FA6U0]lU LA-Pf(p.G fLMnh7\cQ5?Zlop2;N?j Yl6 w,ohl{ Mt,"HN{KK--SMU+8B<QiN{U:9,d5cE;Az[hv 7~Qzpn:O|/e7 U 0021X& ,~,T Wp$jdt5fa: T LiaU["'|m;  x1 u'tPS0Xmc}x}b}vrkNB /;q5+QUha6/Tx'{!wkK!v|:Z0!(,9[y!-of7'2bQMr".u!t!~3}G]O'.\ ?[gD- DCap h+P DCIFXmN%?X''1*|HBT^qI<X_I%W- #-Ps. ?FYy|M&-O*c8oQD{=O\A=  EOd+QI?j 2VkFw&H9T zHdgfI0^ \zH_G8s9EsuV0NT>'v:tv pg>|[@B3RpJ,[ch%P\g\hO ,hnQ}F&V]ESlpsb]^S1ms{{C$ h::m;k|'vJ?.SIuW9"&cE| cc_1$, V|2@:O q<sxu!!K*kB%y.r*y'Ed70tNe7#z?6^R$1amgHL\ z` ?R]7jJ`)HVgw7E[Y#=JwnfNL3#~ fiJ@BVn+Jbv/JZes3p'eD;Zoe6*Ql!,Y|u(\W1yh+^Jikq} hiG7&Q-!awg Xu0AkZCu,x74:KO:<~ D.`;:b!zPW8GvohG^4{472owEO1AtDZQKx}VA-& jg'{(Av( M; mT^#f5=ur5.Jt { >LLK4]_AXo KK1Q<~%3I U^s ^u9@ao0d?dkf!oo[ @#{%L8c;6]dEp&wzbfrJ({(Hj8>K[ddmf<ih;N `c"ZZ}#S|nYn?`2\$J$$3c@6CB23^O nA6-"& [ R' #a =ipikq8{F@=|TJ+"Ilqi KU7j]8?P HexF</Uw3\=|v}y?kR8R (7m5(QuY^xl[H.}:^ bB, d0q5X\|u ;6CLjZ&_d [0Hx&^5V %(,'3DN^ =q,/Iy7t2fIB;tJ8`J{@?Ykd5ZN:{!,Bor|N:{?* 'Q,%x)DeXa(ed\Z;kUm fk%Z|-<2(_&hv)3ah''Rl/L{fo+)9Pb@X0{&^(p.~ u&^>KU6yY+K2wK_ E({ak`F(ut;~hwxzikeOX6$2oo#-+x!m,}~lQ* 4EP?Fk0b|K4 h`_( E!eY{&3Wj\j1D0-e#+ !^s--GOa. )T5[;bD4x\VZfue:s.?Rb?y~D8Q) 07H 8z4ouO7-8=X^=\?}`zHbjfC2{h1lc3{2:j`d5k'zje^D!|MjBi^ / mB>lf*wiL#3n0V;.=/;j6vN;ltF.Z/+`~Wi!DBTNO 0KQWO6;|p57Tm_ o? ![&wQt4m%_c k}#c!O{CHOh}{_bxensglslbt:!dsS4q mp}c~<nyEKUhg7\4= DF_+ -XVn+ qdlMhZ6) #b-5.$(Vy!^hpLw( ; \o-~kWP+i^`lb5D?kn~rPw_cpx.4 K ;q*i6u>!Y#)'^< CI yZ|lQals*?PX!XEJr,/h \D 6Au9Q@[mz+$Sk3sor5Sn%/?sd#<71!%{4-V?5i4%2;v%QAK71kM.r4u}n9 4.U|Kxm9@n3<wh=8 J\s /qZ9"dG;i bUYon:wPR$P% (R&e ov!{o9 6JX[1Pn;):d&hEz<$2itPI+j8\+mlys &+m77q .Qgr4ncN5[ i BS5dtl+%yq*W8E**3VAL%H2 ZHzC*$E_@*87mCq#0~]z1:fh^ 2hxL+YrK~\9EN,j)RzgX"` -F:#.gdV0u$ln&_y[Vi!?_+=UoK#t+BchcgucTTCfhJZGn~sgY5f7&2u1AoE#a6[<8>AOikD+:Tq$?`Ft}b;(f[] m"b4L;8%'T;(iQE@:l6#l+OY{z.Y{XLLXpyR0|8C3|kL-0e  xA1knd;5 "/=L(N|/6b9q\nO1:+p7G 'Y,/MTzt8ho(n{S @%9Qb^iDP>4{8V.? eNKMBOu3+nN=;n*3C[uq: &:9 FaG %xxz PJGre% J#nI/>d+gy p)GYpT9! Vc+|h_{$M5+Bh;`X2} '}{l$>>IM?b_ &[F^q*K6\0f?Z).xx|w zm;iU@[_L]NBf^n8eT&l"}lm\S02=L;h2c@k?l2WI~kfYlA>|IPB*(MnjI>.Av!YO:SJ\z}!\1iQB5Sm4 A[.6s-bOImJZ#CbH (V*'^G&|*tmH@'}LjGXF^z\(CrhnDB\lt6v _#<lF >ZnhPC6pX)# sQQG(pPEPQb^= bv^]ocV=]9`0 #*E&'.Xh kmk]>aqjpF4r-7k h*cEfdcXgx49 D=p#zbBOf]>r/VQ&oU~opri<j4ftFt#, @`L^9+&RhA^xC Z1IyF-\o""N25,0%JiLdAU+b4!{VR87hy~67m;i6!hh 4pA:=M]s^$PC:$u J (.L}?I!~)3D0'!.=8Xn{|_oc+cdZW]U6 Br17BZ2 )#M#\^s~"97@I@; {e7IDE;}^D @HX;KbX"tM <_%lohmbDQ/6:BFJT%kh~o[dj|gluoRKIaMfiP.lSMKL:A#9_D13GO[J/A 4;Mo{lfE*zP{ p9x & ,9SkCk,H_`{ [ g>  &7C3i)E(YXY.c Ak:[M<sUrqam)~hr8dKC&4_q@QnG xF`k?0%B/AqFWn.UPSk=_ ;iw3g/x'#*=oE3\jW/P#@^ldeMTCxssei\$kB `JFam{zV402;#?X'HxGT09#J 5X^9c{/Vn#!58)JAq5^Vq $et".@('-wR 7q;,N zzT&/b))3v*L) ;=3WHWJ: r+CL\uzkK))=*y KDq!YS4S.7Bw&VHHZ h3+>cU(CS/o| 'Y<y]6:9Bs Cvt49f\}aLFKm[9r= Tn}]+Sy`IH3OhW _}Y-$YSQ:s}6i{A&Hg _] fLE'PV$YeW']PW9; ShVi%,# mYF 1_ 7h^H7MQhRuRLE9q157{d?%"@aUKs qZ+j9M[ NK;APV_tX%(8A_z&>FHHL=,$= y[X#@\dx*OO uBCQR2YJ[_s4CNx(d(GE=[8v :`SWK#xvJ|3!M0AP(kh@Jl0]vNuji2~bF,)HuMA&Z;MOU`NcbM~HeV=mK ]%3-)'$e$%e"f/EzPHB%#@dw[{|T}|Y R{3u7]?4 OG6|;MEDiB 3+Rklum~- s{8YV7,;.Y [-*b;-%GeX4zPZ# E?f \wbDJY(f3Ph+(]8gA B='!1 "Ix#=Wtek0B?K N^ awi ||T\)d8{-PpzYez{\9`KV .YdszM:ss`@7;^bQ(_* SEeiP6"r >'FQ\eyh.j<uUX?5*JZ$1z>aLH=Y/IY +xtYo{ &&Rxzg\9v+8jVVdj:m{Ed MVL? ![HcF%pi.u m5vu.m0NI jrO.j|6w %;X!Dwouj'[z(~vm_i6ht9u[MEPSLP\i`m1NA&!OTS84tGJb__TTMOgwc< Y-zy8ni=O 6m{o\eK#A L s(z\K8lZS  yOyu}}hC2=^)1m}\nzF4~ k_JI~F>ii+<Vs}H'd"Ah"ed(.+Xg(?Y":@5$48 >0 ][[$jIyVjWTw_`|y B4pNT[ k(#hnm_pm7G0"P[DxL%o~UKVl7M;nO;$2r hGCA>M4e8 s0W6X,rP}k4jXwp_HG;rm*|@W =|Dc:op%~4U?3,eL7Zt)Qd2x?6/wu{xtnDo.vkN\J^}@wr?BftumswR:dBb" :|n[~=G[qX A]uXF'nwY(>WrmrK!fM   !n-=R&qa"3BB<,&)K= EJr."$>wp mTmF6XNvzLdSI@L;&Ng *C'ia|_$BR.j?~h~_o. zD_Bj*fQP_sCqI}fl*at~bC9:Bl9V(B s! h*(Q|l*@N[m`T`Bh-E~ :H` ~KK 5ZahOx#~h=9kPZ{jjdY} 9UTA4/'^U@SA%e=Ki062XhJKb|/{P$D3>AuzA WpJy prlY= ToPk|#-"e\kr)QcA3!2o`.R~$g   7Wqj(: i7,Qa$}Lm|z_B37*>N+jjHOL:B# /_xN*$ }p? 0S_ZEa9nD~jcn~\EPq3Ij}{}}|a1u!"24? sVYgjCzw)JqImzssmhY@''  |-&:6w0 gE#zpW=0*fy#@T^hb9UOtUQJ6IK<Hn9f-/ &J"%(/x94V+1@[q7tPVi}zpVmnxfloH##I{BV'N(f~cpZg:\ _y+kP9lYNQi50]v <pA{g;! g}<n/X- Z" 'RtWj a2/e '65,ot 9iG!SB7wrZ|y a7 sznVf+w|cBl7:v}((o*dw{c3 A#9GJ9R^>")HSI- U^,ag 1wS-wD ;aw{ G1?><@GC7)(4]D1UecEJY&w  p8~cwK'7SN%9:jeTx6fvFrN>"6Xqpg.PW0! !*t;fZdpk|tfW8Eq1&{ XBt%LdX9) }28!5q&YgP$#]h*j.WIkn(uKNx0&kXA :COPlr,0"XmndM; ( Qrv :eg= P ({jz\p<pz.sV!F=Vhe$Z)I(@835]9F^uD'6n?kN[h@u5zBvwpbgG=XPk9qyJ$^<D:e*n[O>j!= MTqzj,,T{W/4K f  L<K)C /{W.\Wy1DDC2I%`POHE?u7U(a@\j]]IC!3!I?wyL@DOpsttbcM\7J0 2?e^$0ATgrw@}mrDv^> @'kmM5]6 M040 1ATk  + 38?{NWZdsl; k?m.53OHLlV@5.$N%Fg<ZfO-E7fp/1,J9u3*# 3sSuCud5v.9MYhD]!3/h<\y`,2nn`K,}|\U~[|p{vf5Q46| !I*/)THyTP867Fd%X1vdke_dZ@S0P$dK4OMJ]z}r( 3L6IzI_k>}^7)Mtn0egGOC<4(5;,;L9oRxv[? 5Om P"4B\0@S_aYA qkI/ZrVGDWD:0$ #($ @q|sc>8 Xx-]es"KmVzcH Jxkt5vwH4fH6,K$6x+57/a]+Ls[\Tla4N~.d Tl$N|V (QAL]Uff`][FY$ '1k km)(a80f h#9Q:fhzq1]Q~\K|#Cje;is9<  ):GVsh<d= p5JjGLR_xX #Nu5GJaHD+WyqUgez?0Ks03fthZ(QfFB@MNJCE@"k9X)DhZEc"`S : Bp-d2|?ykY@,m%7&5W<e '*:?BJZc_j.W;zmF5HMNK8rYLdN.WSA9@Vl :tSFif#iE:mK\cqyp`h J6^2f )$_Uka3bk($Lv-O~ta]M` rhryP/ws[,v5PKa{)| 71%"%)IktphLjo|*Ox #69:7.&$! ~t^K@7k[DR bGsmY,HZ/C-1"0;9}<;7' bF&A 2m oM "=)Z B:+c 47- v=&gLmUrn$Qzlpeyt}^nT $OqgCcq^RZf+|g&;3,IGjAbltO.@yq3%?1pNQ/ #3XR4y%2bDD+*xq!N gRnk\@"i KnU=9+M7:^ #Y59<6HmXfh ZJ@1mI~G@O2"@ +`Ke _RF )O2FE[prvK{ofi]=C'7NmeSSoq{Ms"fZFOiN+.|S|^,.f(E (`gU##V"Vx80slm0bD#CykO>)_v=;(3@@Jz!(UlWG;"Ppz`NBBWbOWOSkugTJPSMD< [_ Yi\I*uY8dz %b& 1F/x+enU-. Uhf&ia"W&g>bnliM5XkOIj]Km/I =DQ ^}k'6*VMP#cY^}Z@T!&#Bl(}k1dW1$&-K#m!zjy Ed>A?u'Q)_h kx$w8_}/SV`]<aX JT {wO^dK n;-/?vYG2k)8GNw>|o2;q3[f9JQb}%/ytq]M^^U4VxS? mbv_JTx&%lE=ogR*MAn25X}lX):!0&T(M1JOfs<VLw`>53.')z=dZJS%5(36nh^g_r-jrm8 L/Ts'/x7{;w?^O)h UncyiYd0`nw/W~5X~jM<*~rzeeDiiw~L=LHA I f$qXpG</=ZH_X-EO:L&X}jbIK*M T`q1}]L'J~::7],\@XkRwkh<l5@ +Nu("g"eFhmhuAatK>ZTHnH8R UTR1KLBtNj:WlW6a\+m ;<vL8c`MUE2g X'6KljneYx$ Gb4E'AL>"$2 8;`XY+a4sZPc.s-s=;)g/  ;qm9edX7 f@3d %wNbK2|!M So%]b?T@ZT"otI5WIhytvE <g< Z~HK9G |{P'bWYQ],DAz:>h5gb;(.^F: 5S|]R<92QFo;D15#4 M+g6!N+FwZ <8jPw.v'GveobuGX0,zuka?j,BTP}![QTrO[C8=;1&4y;'[pv?kQ2G2m#/ #(IRT?DjFx`N;5M< K^tj\]YjC7~v;/t<<#C=#w5YD'|>Y4} z *Vkh?WIDUFbEc3s*\|5x[Ge<H1G@1( ](#EL~{ \ D_/HokS xYGY}}M&j RtO!"(_K0T$(%.3 8oRlM,ws frB.-]/7$IQ0g_JQER0Un6(Ow8^r psD-*;HD~}udg9 ">RosUbwX 2) 'p5jr$]9$YyuykNwNh}`NPMH0^jp g{i?  PN6  n7,kZX:bN*0o2.,iY4YQj$QOJt/cbs2(JMcqm*Q-4"/.7&1x<"_J%6Alt^Zt<4]tY>J8ERZ`d(M 8Ye{ a1 2@k;U<hC|BPJFR-@h2V~zmedx$TY HEI=.$j#JO5bZ^f~h3ZQ l=h_STa6jfmgTVQ[s"yS`/b_ L}NB2Mk *~HW^=v \?!J302yE*PM7|kb`[_|M@tx iT_nb\N8.Y,#/dXtg.B%. >gh=IbbzMfMFa0p$o8 w`@#j'_[&3Om|!(D$VFYpE(B`'>dk !7K#w ;pm=8QfVp$UY' 9fn*8rvp*$<Rl35 QlaK7 H"M6>ED>#(HZ[= B-Vq8iy*(=i.V)9Qo q_jRJX$kU4-jc)oc;{DK^pREqyjVC)6YhF,-80z[5 g(3f''&M uNsW 6k+>KH['WB'u; 4S'^j.hi?4__ @G"vV)Jnp89{dI'so{r:~D% #2 $# Grcf9Gl} +e7,*!L }oT,4;#Rh02 o7M *:`15# ]9 6/6c<]"51#.n$ /N A^{uv6pkX*Dh&ZubqF?/9RpO(hA,.3,k$75W:zbGA60XY< \3Qr~hTAg._^Q7" "A r /U{'`8s\[B HxurJn4*$ R fndzFv,dU_kS)QjN`;22>X$?pE9<JH(B}/ }-(,%w ccreAS}l;C)c+H;fZzioyf`aGS&:Y.g6X>4u0`~N(Bo ?KhVRhD|EL[opqNV U"s4v0p3i;]JI:-gy,H-#c&,2FYkq|Fx,iUI3o8 |!282){r.j%.Kk.~}vHq`8(g~7">C4}igxY40^R Qo2!\6d-mW#IRJ|a8xjIB(|Em4Le{K&}v&u;oUam]fs=oz:}cDaud0MgG%_*t%y.9[HVp'bFHLSdvei;O''`/'KonH1/Ba /W%~U 9h~oPwUHMXh|p#TB)djP:3 ) &*,$-  ")V(CLbiVH= 8E)t4-  4!u' o,Ly  nR7+Sa^T8mj|r^R\\&don%_XIU?`"qf{4~j>  Iuj}%Nn~2apf LA?U0n`*zYG}940..I.3Zh!(Tr@my/XqB2$pY\< Gk"DnJ+3MRfr{!n?f6UizoR88r6N8898E.4Mamjk`;Dm[,<>.$F49{+s7c=/e!;7UMV{JGMXJ; vS-vx.&RLhjtw{~xqv|hG1%)X<Ok_";K{OWFE9O/o!fW6NM8[`jv|d7{#`3FE?d@CBLS[j9}b\zsj^KTwWw{kBCw"G4;5D,FDDFCs/R B-bCw']@/*i1N;8G[#T+C>ZdcWF3#PdB0D$PNGB;"=An`bfuk?G\C66S<Wq)r']>_cL{=U3%2Caxk4Gz T6d2jeM/{{FhL)D $AeaO!2-H2Y4i*/>O[WB0/<,VB{RUP/Ng?/& )6*T*d&m%_#B%%0!DQTNE=:S5,u#V=4a`HQ u9=" ,EO zJ)Mr}`K9 05ANXU`j<]QB E~nX&7Qkvz~bFj.> ^nF;,U,1?Z~pe5cj]VW[__`1fLqW}^s|v"6VebN&+BSafkooul5hd^J0th eca%b4mP|o:=eAQ&[jsbbG`"tz?P}Hvz{ Dr%d(f8kP8-sS+`o; Cn'uC9|;=~ k7U\;y~[pbZ[hyJw{tmi_[G% xfXNLG}EST&qxgVC)%\wzjU>=Qet{I+#$"G%h7Qo ($Q-iHsw|Rh~R=(\Hr1v%M-KrM,$ =>PnUO=TKE,n\]Z\b.cEi_z{B| ;pn0Vm%mm6?nP/yPjT>Xl|R4gA3{"tOB3vAy  )x<DH`GC8F1/)toq'i/X9IKEa;w3?N^uTz]A/%h-tgzb|bX: 6Q#c8oLfL !6#hpX-XeDS-- (9;= S+ B v.[9Xte;")E_p{`D00F-JO=h7q!w{p^I:-+7DUhz0~H~Wku~~kW<'0% y7kAO"( " *'>?SXgr~ =g2d{[8fYC( {hT+8Yq:,bUwktc]Q>7! |1<.{}'`z7!)+@6c96*G.A+K?;0H%agnzb!|iWNH1/w;<@B?.x^NSava:ve_i&c\{ xI+DC6;AS'mWw+|\4,#P>&D(u}}tT;>"E>/%=^zJH-q#40 ($A .3.fb25vBx xl].BN-dt.5! B\imR2 =m,<@@=3"9jPpxLQDUDf,v <0@=6;QNIDfutA-IB}]R61CC &B` Fd(p(aO0>NJSC=9".`sM/& waF7&]/5\zlI(&\cG^JGZO\mX y1A[[[&OXdQ#l  N/1,4?eG i/ %h`D7I_l~T*z.slM42@5*c%/Pez+a,~1c`E(eP3v&[4r(UiO4,\mcLQb~DFJDF4la@ Y*kzP>Jq&TtXhl"&3\S;5&txZe@U\wnd1bGx[b|cmI-'k #4<k+4 /C-n9E;C }JP"MK`mgho}<^#[fj\kl"GanuR?d;#]Q1h: 4mEvW[N`\dP*  caf]L1p-f Jbm|9RttA"18 4"p^d@A9  *^d#Ugliue2 *:V`.=Is >96fDdq JW Nn? y34KM~:8   ,Uf_QQ9XB "{qRjUjr"&I-lq8".&X1?@7vM"1&XD l3arKEg80IqiA y \#=0;Pb`H2 +1mljBg+19d|2\<E4j}b9A i! %A_/b}z)m ]5|I~j]3;2\E ;v=\!;R{2(KQOPHO9(/c$ : vT=Rp)^}tuQ*s|~tppjr {3k@w'<X+Pk~Hdjpc`'F(,2AOn7& *9VICG^S56%)3DUo{cxs[`[]\2EulO6}0V4<;:G <F'tT>773'>9\;7- .87HT`Qb9X%3XAxA$|7^MLfD Tj? v0Zr('_2 D@]_htIbdjdP7MNB9&M ~N1# $"  = J{~ DJjofM;,s,}|x5zhsQ8g!G %0\wD#.XvE &BbC7C[kb1p3{T6Upu[{EA#t2ru~kj~o& URmK={V. EU E=mUfD84n4i)[<}W|^fXa=U2 r\Ym sz]9#A?BKSeOo>N^3`K7_6.s_I3K4M]e_NNxb[C:1/F\V7Jfhd?;nMR!C\ggrlI2 3g\.-*`>[zW5z{V<)%3?QbfjWT; POur}l,N~U1brh@|M|h`ru{nZK0GEP &)*2 c4gpIP-/3OF:6fSf-*m~'e,`sUWW{vY7-.&0{(/xNI wlyazJ7\a ]?cux?t%)#XO oE0 Ft+\pCHs%Jk |,q]T6x#R+_?+z :|slaTPPPNDDL?ok?Mtdy?b3n7s0(1y:YdM;32' 3 \ !,Tg A|jL iZ[\ kkn+t:6p#B| ?ug}rpYJT[\R,Q3p.-.U"@6)07!+2Z}'[EuO~J'!FMMb~u]i\C,"8[rP;8<7,, \L+GzXiFm9l1[QOC4.e.#2INAG\eenxq<9 AHc}7 l\y<8Tqhe:[KCT~+:Q{'(%"G^v)In 54+](~?YGiLbSC*!/^( M=6`Xj~8HplQnM(=j5tuc&#Enixz3^~&Gggmqp\d@OMV~K@@^_GCQcu*X>`}S_)  _SL 090#"_h;t#G?su;#Ct@<WW\bd_SSg HszP2  &tVR]  f[bfrBP0 )hb2!, #;^jss9y:{ wk\[lu|,F}=k%bN~`26CZ`Ig%G:3~M0D^uuY0OoN6q L)> q,a+U;B6d+4"}K#_3@JDRBN6-:=&C^R_i=u[q{5r8x=zHtS~OKSgsn cFvb2; YAIdyv|}Y:Yu^#{G o *Z7EbweyS]A=DWmx]:R]oJry!\"Uy 0RzaH1$ h N!3. R  ;axmfb]]vBu)RNuxg`Bd6t /%IMalgaG9\mzTFVx.Qyz!{kfGJ.,# 16KIcZrdqkudD{jn}dKEwHf?N8:0), ",4219\}kO,It@J7",Sw|_<$pIkyp}RrE|MH{_N%Nd`} nM%rN5|)4~DyitwlY$A?pqu\:U 0zcJ></ C`s{0|HUbx:_Rv&U^;xY4JK JO+X)=-JUqJ~6[~b; #^A%Oex^CB"\33F`!Q6xMSZmo_;AGjVFuGL`!}M*" 3mUJ{EW_c)3'+R# !^,)(+a L )JC[z &Uj3}tIX B/l<"/2 5!K2a)`M;/ e<#*Daz'!1NDr_fkr`TA*+=EDCE G>Cr81)%WKBx3o@[0 #k*V)A9=F`QUaZxInj3~^8 ^1vY=l&p ~[5AbuDl~%mP?sv:N mH&.[d)V\jR@8mhyQI  9Pgh=`- p#dRdWX51\_5QTOpj}1j]Q(Lun-?\gA6D\ym5- q4k`M1)%Dc~<RamwU.u1*/,&c'G2F1Y &&%,8=$lPN[^RIM [t{8P 1?@IHNNVf|{ sd8bd^Q2 (,4' wR:6>>=HQXi-FH=1vL!'HorQ-&0'~T) OB`yqT9$uW6nXK[B72p46!8_:BOeomhegjyU>!} 7;\9 l'?Lee?O"& xO,Nn5)ufV>a(X0BYZt iBg1SpzXL=hL@5gVTb7t0ESdo@LyI aDD.($i2(YMZ'<wXchFh3j:qSl~{7k~M,a]5P Y.s=ULI^:v# oO " 8@EDEP^]]\ ]/\RhkppiiRRH4:L|,j#U,08 <<5*rD 1^ i ~/Ql](.0:IK4_*6JUTWlq!G!r?h#*;`GPJ9"CpMpSzmT<l= C!3N.ds}Gz^?,'!d$:R1a5Q%S| uiNqDxG b0vY?39Is m"33@O-`{r 8cn4-32a,+]7Zr~mT6!A\q,qK3(w)Y:>^Jof4X_E5*#. 6 >QkzT %Lhr49j/Uy})R[H?l}iuTV>,,W#,k (*R7pFPe|vgRv?Q&DHC2a,pRGjEVFFI;c3*-@:dm*e  "H]_XN>0& -?Rjq?8Yeowz{sc=Ef(xN g&68y0u.q7kJodoux?-Y|~gejpiq1vqbAZR&"D6da&e 6yyv~AA>k][by ]I,Fm~5Zs~{k\? tw@3JxUF/x!U07@c ;*Vicoz3t%@ K:Dn+5fmUI>.,/3}-[C ',-,Ca 0Kml-_umX<* WU&ieL$P1['alm1)w5@=DPeH'"Igr ^ vPG!f9M|/uV60DXgtE3i} X!05 3/ slI(EweoVMW5c!s(@YrV"'RIwn%(% 0[}i`Z UH- 1^~I |3.3*X# pM18D5UAbVxar +BHFA%<U(|i+5HVRVDsrh~P=0-=XwM| ASi0Ws~za}B{6b7/32(V{F$kXQGCC=DnCZF0[#rR y$U/%4;4Wk!m; sR;`0-8_#a&<@72Q# =]s $:S``O<) Q5]p1Je.~o.OD\:]6 ';NZV(MCF]>d.h(q,vEk]U62miEc6'Cba> )R)H f9f0b&s5DBPTHL3I Y'r_`m}@o=q <:;32'iD~n/}uwzyvYsHyG_/SDok}^1BH2I':)*.9P-nk_O<0 lOA4k!'1CiZCte}C'Bh .&B>ZYrjngcm sNsY^)J4 ya`snJ(a 3o%Ba ~06/Syqy55e $"oEv!,06KRdswnk>_cdqa _UK.>4 Y%j+&[a#9$o;`LaUfMg;l'u}6u). 9qbE+3S%  tO 'Or|bM<5;FU dojK,3 E^soAsC.nLUgILYl6WKg$tU~r|jU7|R3i0p<Du @o /Owf@zodiQg;e`ZWY`V9Q#PLD4+Dj&?e0Maia}Y[]=_8Y6X;hGd@auS5  *<LZ]yVfHM=01{h]l Q%KfcS@%";GlL>SZb`YlL3EB/d(yHO4)!-m3@X*s^ +DLB.zW'0) 9Sju=qhsnW9E*pjVq!No w`!:+4/'$c+!:FwR]ow-vYFiCJH&g:{wrjZ);8%7,,?Qk}f XILBBI S:\9e)r }ni&_<IW.v ~W5M#Bc '*(-00.26;<2' 8QahnyuiQ(unu4]0 <ECbCp8i2g/X67EVemv]}2tX4 jG's_NTe G-eI{cteQ4  d_\]`do6._;?AFH>$ oYB$ l`TB-  +Fk <e}~tmru\:}|wx{>u.J&\8bD`@Z;X;l6) j*HU_=!o;VC75@4~+ -B`/BLNNU\agqzwJy y{?*7$BPLXd!qiskdaK`w`jxF}1^&jE +x1R21<Tu{gejt*q+Zt\K<--Q}'61Y8$7 Pg~ #fM3tS9*y` MI-REgYiv8\w+C[qtY?w&IlW@05 G"a7JVUJGNXZ^cgcXK:% #x$k^ I3# '9MZ8aWly{u[D.##P% &-38G_O~l[&K5=A;N<[BiRfsqdVlOUN/G; 0a;Tfg]tUlVqTuP|OC1q,x o - Hjsndhje~v~F%l>|*8X{2vzsP?1;$L%G-5:EPnmycCy<Gz3FMe|.+yvvuj} 9MZ]S\hiy1`eH!}<Es.h+[Ev}Q'Z#EMgm[JCy=Q=2O,z?F 7L' &;UI"T`u /5S_|}qg]VRWef6HLB;Y"o:8eVc\tJKgF,DV3l,EC'q#O.\OM9~q|,Og~"Dd~!wpdVSYTR]c_L4~rE}<wr3xzf|[duw|zsv3z`?`t\+CMRjy|wr4^iWM:4=~EK]p H!0*$3$,`:Xpzdo\rbolD/K{!M,iWbOY]UR WN;r55Q} f%X,X/YCcFs$}^p.eQ<7A[jbv-c_C5mK@<: @+>\6/.3,'-)U/m1j&M*,,SD\ZIkTuvh: ^gJ9+CFA4|K# &;Ka/Jn ?m<KXV86mn^~ReDB@X}e)JHAbCQb}f2kBiNA@Qla8 #17};v0lv:R - < =<1!/4?B>C,P]v8@+6MNQND:/?S\fpwUt5qrG]n7iRD?1 Bs Xt2Su 3`&=cG2dq; d7&-IzeacYON8<e6tETO)\d a =   V;Xa_#bU70 ?ieB(t:%9@Rmx` "e0AS"ZDeQsm$B?#!:LBITErXS>wT7*4:8 ,$,=YpS4B &UOC %2 D'=A/O1a;30I,}n  :YrVM.bM`#`*LHHbp#R0.It-2iGI$E:qRLag!gdqCC(?2Pu_`=R:ZJkM5N{'N=HFxN]ULP7 sJ4F,=cgyc1ES^-cz:"<^^^U^t:ID\-4{_a'D)dWs8X,o<zGnRZY6_bhkngeWDK.>0  fPB5)GD2wotYB6.'$/MwnI!:[iB2' |4`>6>C6jn\HTWX\Wer{&Hr}}sbX0^W`qw2vIqps3O]I3[hJ(4H ])+* c!A?cw|lTz:e/S%VmV|p5TREj- IpKMr 7UY(w/gxH@ x_ .;brazn(K, v/ YuPsunf\UBerc_6V4mXBg-`7M]-7WJWhh|uX=mAQ>/% :a,|Jwq\D5 1Xgodx43gQCf)pwunhwiU]AD/Jr -.?VRf!:[<yi~k\_\P6~v[&}X7qI( /ajM6-")`B%Zk#C`u/I]k/CbDmC =QTPc=F1*8rP8o$Chl[>["|u\a-=N! !07= ?aEUf8c7g2Olwnle?'B\y{L"+APYT,KP?d)mt [aQBaA )"5Qwv}>b~KaP aqWF:>aGDb"GlpCD j~N &+2yU]]Mof}A!!(8Ttj3mS]LON[SmJetoC!tXB73( .9/(" ;`{gL,e=hUG1rN3& &;>qUXY_6rjeE* Nr'*-QvdJ*lO ;4,-;.B8MRPrQI<"vs_V=?9D\M )KWix*Om1hUzW'"6Qr-$dDQB+"'''0!a<~R|D eF)2OeNxcG.' ?QT@++5!C WqM7Tvx o)5/U%-cn1RC5yjnztW>% .b*Rrk%Y$]7Bmy]=,ZNwi8}E,xN!k)/)7Pgokq~PVy@^ntk[MIG?0|X'Yp'X]p+?C6 bLA=Kj{]J@2wkemUFV!#&  7+@VxnP:$wO wfH+vT9g1#Ks#LHl E4Z~'FnueJ&|`Fy)_OFK`%%(,'(F#X.a%mpiZD)l M5\;p]VUc8`,O]bo~}Y)@kvy{)>J)FlCC7D |SwbL>54a0C/%2@Ul!~,//7Ofu,8K'bIm`i{YD)/8:=:cNB>ATlnVNPL=JxMRWN/9IQRMICW;40+$"&$%.{?5Q]c:cYHND Xp/mMy"6Qq+6<0KC[AY6C&3(  ;daC-D`jgaQ1{R.!.@LPEd:4- !   &I|Fkr]S[Y4kymV>2(8<?L?`JuzI}}iK.}csEbUQL@L8%; Mf(]*T<OZM,3$ "qX->?.@'4&*-,/4&1$ aG2$'60Uhw "B+R9_FiGh5T= 6, X a'+,3??<766=AIjRUPE7 */ K_]OE9%rh d]Yang1t2TtNw>ktaC$ shX@$=^ %%.,+*$0'A$[u yn`I&lAnYYh~4OcpusXy'|{sjgpnUz>./G`kyrU- 5ePE~).'8"M^x #Hk~`E&"()*Hbl:qgY<LH@CJ[neC!wim4@JXcWkml*apSFA<,>I>Z9Y3[2a-d%^!UK: ]%IjZygK vu_AM KVbdSYF0 tX=!5Vw=XWB->CEKS^jttk}]qWg`[lSyKA7+  % =_nH#L LgM@?Ol#$%+,,2>$O&i"|x=r6BE M \ooT0u>W4k c$`Q]]_`([\SIEHReeG- 3KWYPA/ /T} "%'$8Nd{j:S_YgvnH-dX/.CFA- =Xvw`OJ=Ca4(*<b  ; {#X3>8);<?@7+Y%cL=9DWu%6DJJBDc=}313:BIS~^jbYaL\7ZUB+ Z89u ">c~ ]0 u\I2-Ov;c "#ybiCm%| 1ebF1% 82 9clXME :- }"(0/,!*?,Y+l#w  g8=NgxwyZc3U MA/$ze"T&H/CJ?o<5/8ACH2N@SG^MyRPKC:.f f M 0vN)Q;ls^TV W-XO]hfs}uz}IrubN3y@ hH' .^sXC81/257\;9>HHO?<H^i!n:pRxhphQ@7/:aO9tgC!   +KxzN4?@DGI^BH:30( &Ok{=ppnI!DVr&1EX]f-oy{lgTKK&ILT`eq7~&YC~ wr"u*|06@E?.-LfmQk rt,CUl f5*?Que<}Dx_58DIK^N&I?4-+*(.8;48`?#Svu]NLZ~8t}`?3#UphI4$Fi,]q+FKppUE@HS^hon%xvFlD)1W~&9[5^zD .HcYM`;[,I%*%-4;AGYpDs F5tMh|3j>_xhnSb/TA1@)%#1K~pffksw~L (C a|  oD/DWblq|[PIIKMV0eCxLJB0 }6fRWiPSTSM@5)tN!|Rh,> C}lnXB) Jq3ZP#&%<w u5KK_uh8 {[4 z3>a*@I7MYNxTZ_gb_ZY{WmO[FG><5613"+vF#?Udpsxzw2fbH%&Hzlj_Y[_`aeighio7|vV?32;KNh`qzqeWJ"<6-HTZbp{{lS,oJ' ) 4)<PA~A?7 -<$l &V{nmu|H~>(o2e6f9g>iHuRZZaj~t}yzsj[J4#HjztbI#Ius}!=Z V '*(-O)m&&,:Jx_btC"yb]=?$dQzPpYpcxku%:Qi{);FzK`PCVTNEGOUYnVWQM1C.=/;260/()&)! 'v1sBs]o{jdch~vM!yS0  "-5;=;5/(/N m  ).-3@LS[]WRPN/EJ>j=>;74B/i#tfhowq;h4qJ& '6BMSYbpx0z?qK`[I`-`b^WKB>=:62//2-$".?Uq&S!Oi|  p&X+33 @Vfqz|IwsUm/eVB.  )4=I\|'%b4@FE<- &5-~ i,\LVhF'qSgdWK7f!!0<9!  5]GEl 5IWaW@Le[E@@0 ~q[B?C523&:TjoC0?^VC]~xsv|cMD?1HudA'gTXb^Q<#19%Z~+Ueb`[QD34N\a]L ?4+wK$IoCSbns{fhkaZR(IPB3T|~yzpkgP\-OPav|rdZ?8@M`pm`b+[/J48,( rf{{;#qriq*[%#3'D+K(l *;HXSC6= Yu~huVnRb7H +u7A-0@>5BG  YBUeo; #%(*.s/h.9(%)-+2g>;Vo~|X/2@rupn?y+CF3 '! !*)0T5:2#& *Lkhz~lpl[E4.,+$a"$-KkTDOSK4.Jlzr^3#06^:NJYXWU?K4N5V=SCEP6G'{VMO)I5EDNSW^ObVcb^WROH6CHQZ/_h[P@Z/2V{`a[TYMPI4MWb{N "Y%6/4Si vut t`VTSPKLSLR9;!mYD, JYhKsZLA+>MKm]o'R}(8AZ|whO=:.tHaTG=n0I6 3 '32$.-5DPN\LJB& ',)~plic^^ngdqZr^w~vQru)Pci{  2?>?FR\gbo}^g{?`NG?3% ;O[uxCm&+7AHDd:S(]l{~pihjjue^`cbbnhvz"5LH/Mlh"cUQ Wk a5|iUIHJ!MWh 8HU^jy,{D_V?XeyutI$tZA[11OnBr&Dp xo+--R]3)30Cdw~t:T&)Hc{T,8h9OYK Mlb\\]c: ~8a"Or_0} U"Np!"mS;iL1#;G[z^/uh`Z`s("N-r("~XAH=~zrh`_6\E_JoYw:Yo4}[kZ?*}s!m8h5`*\1a/h"y"'yq7K/+^}.'xq'l7qFt\~pu~9GC 789HzbOkBe'XNE :. ~} &6>>>Lgi>'-GTjNqY!bG1 #8za[0C|  1OtQDH@<83 hYWXU QV[ZXl{iVC6+NTx$7X}GNe"ucL C<8BOWZ]ds|} 'D]q|~4I6~uk\LEE=v*M! t6=OMgHLK MI=0*C -NdhK.$ +17?OH|^ns|7H\nr[]}5SOKXVFLpOS6"jW@& 0SdqPNa[;6:5LlL*V)x+i3c#f1dm[Uapu~ '[tsv #$`$"+8ESfss^E, %,@iTD_,d%q/~7Kks^G:-|`E3*Q!4E5  %/?Ya5%?*N`O`tnhhlvpvY\@e1%S<"@,Jm1WttX9 MzxItT7?n 1 CU_aab)c*[0LMBr?=1!qU;M0B5fVirh>keL8  uruhw.}q`="%|/6:Sz8IPF}*t w~ow&J~i|v+VxeM{Cm9e0mue@!#55#&>C8?Xlntxyv~weat_^`:n!z'/&  *$--.0 4 -(z>LLyGKRTG2*-X2D<EGANBZ=l4y3|9S|mV;$$=M\__[cwwri_UPU`znO8C<-I]stfYJ<;3ABH|a{Z;<_vzl@[cassYt?plbYZ{aT]2UV bme I"8W|mC")M:dQpk~!@CEU^VxHN@>AHLcPNLE;E!QljK&L5^CfPiPwNRw^kivs|zlW6,QlZYMNSMIP$Zo ',>:SJhX|\lsbQ<$0c xO X! $*+y.L38=+FIS_a\Q|Bt/v| 0^lQ<.-/28>CIUn476=RR`\cSdB]SG;+ G .@OP>(vpd_$s1AUizZ8 kYD8!$3GeD_[Ua]F0 #.)"&%%8J_pz)Msv{Ob"E"2DRVd7w)%zx{#q2a0M=2PZi^;*"1n%:Qdz3`ltLT38%#-;?CyG:IL UctAT\]VRaozcSY!kK)5Yqv .w?m]a|SOY]]_aQ6   3CLF<AJC"*,B]o~ dK5J#229<'lS?Tw#ia[SMIKQV\Kg}pskc _=bkku~{$qIcuR@.&)|gLn;S>.&,/:HDdKZnvpeF[jRH=1$iO/ wYBs/dbfl#v*z1o=mMb~#7M{0GROMD/ b;rheTFR&\3W?WDcDxFMW_hq~-yAyVzbwfmd^_IN4?DOL6|nddgfbdq:TdibVI=. !,;Tk{<`lF([-~nht (m6[<O;H<I;D4;$Cg 7J{Xvhsv|0Vu|eBr]R~Gl8f(aWI 8+%3K`q "$# /=St .H_y ?^uwT(yUY>!n@CDGKMIHFFIuK[G@>!8307@HRgz{xnbYRRP;]0 *FhPMP?a>xGNKIP[ch/hVdv][\`ku %{0T730%$ $)8>866/" *R z/GH>2kTS'@ .0NqzdP>2.3=5MMak}[-~z[KLIFLQZk}-9AM]foBv]}ozxpljV5}lYK-@F5X0f/38?ISY\\)V$J6u;rI%\ A' #/:FRbt=gEq$:N]obIe-c]UI9*&#$0v@gY^zWYk; #s=S3|tdSH@2 xa?'  1+EGch=+`5=II='rbT8 #6IYgsrktmu~slcYTMI<)  #*%8$F]ulF!#6FRXuN_8N!A >?3"6Rj2EYk  $9.F8FD;O%WZYUWsZC]YQD4$  1L`s3>@{6[9|Fyql/jLfk\PE@>DM ^.pS}i|>\m |V%{hUA-m_WXO? 5"6$@*L1f2*wnmu2HYht'8CP/^EoSwdzpvoh^PJ5.vInN1 '8FN)T[VRH7&'=BEE:*|xxvollq|wxHr 6iwcP=^*NM G9)|mgm{/Oiz}~~}{si`$TABX(emj[G7+ wmmpu||/J Wez*11-09qHl\jth_WUPH=!bv>og\J9&*<\y._via_i^WbKm<x-,05<>>;1& )Mu 3LhrO0xh|Uy=v.r#qqw|}}Kt|W4 iQGIV)n48=BEDFGG=0!m [NN_| ,Kf!z/?Qi "=K}Ld?A!!eF'r aR@0$v`B @_&DYo  1>C@8# 'Jl2Rcluwpf]UNE?=98f>@HURI?5x#[ B7230)%% )4D#Z/j*x{ny$18>,FBOOYD`-ch ljcZ$M8@E3T'hvy thN.  "*/9GOQ,W<mA?2! X#kK) +:?IZdaTF"70%>#I0REZbahgaSGAp3,#oYG><ARcisu[G13D$Sbhk'e6[>M=CD=M4K';* tmmx7Qbqxm]K<(  #8Pg|~vfUE1ytqw{nig&m%z! %,5@Vz)79546/ "  t `YW[o tT(oXI<48>#R)o-~-( wl^[ bq?S`e]MC:$ "-7FWfpwtkaZU!O(D.55%60' +5AIILQH~1qkhly#:Shr uy ",9J]doePj(noiY?yfWE0! $.?P`jt6'KCV`[`dfbVB. hBy*r9wI~]txk\STYcw|gR;'<QWcYD[&YURNJGIM S([P_\\_Z Q.LMJdBp4o'ga] XRKB=>D FC= 2&&.3 . &7I^vkL,   _$B(0+&0<GLQ)V6YDSRDe7|)4Qj{xiRECDyDnFcERBAH,Wiy ,BT f{.:BIT\agloqneVH=7{2z+~" raP>,zj]PB54p8QA8N.b0u022669L^es%A]s#9QglcTHd5H. "0=J QR!R!V \`cgmt!v.vCrcnvg|]O7wjYLi?A. "Hn Bs-BP&[-W(K>1 vN%tYH:47CWl2Ja+q7~;::8}4z/|*w%oc ^YRLE=. ~ ,9IU^gkke\Z`effg`O9# +13! -D0Z@iJqOlSkUdRQK=A*5#,($  !6LZ^`_YN<((7@ H'N'N'G(;,&. )y dW%U!W^o":VplZSU{Xb^Ff+ow| 3Xv   qT!<+//-.)/ 0.#!#|]:) +>R_kxzukeh r~*:FP\eh!g)b2V8B=(; 3$  2vGiSaR`LcFp?7' 5 Qo+>RdjefkgQj+R5na[Y[cluGq4GS]caSI8sIjO8! 1Gb){37@P^c^U#H0=;=HGVM\K^J[HUFI::/2*.(/"-,-037:AHR[erlYSQT{ctuiYD' naZUUYb-p@}LUaoyym[OJHGHMNQUVTLCA 9( # 5J_#u(6GZo{{oZD*gI,uolf^tWgUdZle{t  z y "&(.9?CF-M:QERPUc[y]\WOLJF?7+rgaXJ9 -sZFAAK\q (C]u|o`L7$ !'# ")' );$J+Z.f3m+u }~q_K8)b>!@g,F\n9Wovjd\L;(t_QA*   2>EO^n{~u[+A:"GQX\bnuqopplkmxjK"   )3ASdv  0>@GKIx@V2, `:3Jbv *69<CHC:78;g9S9JBK@N1T+W2c2q!.Eby /674% v._CIM3WhogZC-y vsq,rBR`f[ME9((3AD96DNH2mYJ 9&'/2%A9^HQZepoe/\;X=L<@<7F/R,[,]3\9V7V8[AaEg<j,`L2wx7Qeo m0bFOO9Q)]ZAD \mm(e2W5L11!% tb~YzT]w}}rt n _JCCFUp+-X<uDMW{cliXiGl6u$ 0G[l]3ulow~zj\O<& lJ".Yj_P:-(Ek"Au2_6Uhmj[:{lehqtwvY2X~mN| \~q[L B *-<%F6INHh@z0aIFMe+Qt$)18h>I@1BIZ s(x2O5+4' v=MLA4&  '-'eD30:Mj !23*  "'09HAqDJXn`<d@ $@IE:(8GGN[a_R:  ~nidbh}wh`_] ^0oSoxo`Vc{ !2F_zzsY7{lW;'  hREEO[ekou $K$| &.4;:+   -VE$_uT%%FzZmecrYQB,gC! 3BLtcaI=DXp2&7TLe "*/-#nI'[$l_SJGLS]h 2U+q398&gI.n]M ;,%27(<:EKZY}n9NhU<Q=%}~~} 4Hd*;H&:>KSf{wT3k=}mg d,aT[tM9'1EN^nmaQD:0$ 1DHHHIH?-'!1"@&L-P*K ?) *=I!G&C&D0?A6J-@- (")= J]fTB9& wg]VVXPMONO\iv{{p}gadn}$(9L]m~yuvx-w]xwgO?3&{]I6 ]8&8Vjt: jS<$ %CWcfgJc$b kw 2`(5Ta 3Rg&x0.)%qW4wnUL6)s`zXwT}Z{sps  vcRF<^wiUB*mO3{jajx*J}5Q8\e[\a^UL<- #&(-*mTC&z jn}}x5sXlydcdm|a 7 $ x`\p'(!'0>3T2[?NV:[.K%DE5$ )-(!g E%  .Pq?mvjf^3RaI~GRXZ[YVVR<" w iL((9<7,{pg\VXZY\hj]XXY\agmnjffn ': @G:q3EV\Y0U:LB3;% u_C! m/_GZ]YjXuY_r|e>fWK/h#O9-4F$W3fLv\copn{+5TFO^t  ;Um}xN, tm^:~nr~_>CO*]mrt{mzYqGj4dXH6f@  2@^j(/GO`c{pptqhglwwpnokX@.,/* zW3sjbaee_PA8/  >` 0:14>.;1A9K3K"IC3$(:MZ em'r*q)e*O0;(+$ %&05*  'C]loswwrfT@-!'#$.AVjt\D16uLi^`qbx4Ste_oAw%yiQ3~hQ;/0248CuV`kRKA1- 8&JFhg *Khs|eI3zsbD(  %3DT[][ ]'e2j.m.u,{+w0d9M7:8AELQJ]E?K2N3I\-s)4?GHA95746BQUK?3#qbdoy3?>CVC]8d+p'z-z1{33~6p=a<W9M3D';0 )% "+,&! "5Mev{|qipo]vR|G7( !0)AAUTik~zvl_N@=Lb{rdsPnCo6y# zY9}YB3  {wu|1i88AJOLH?2-}3|@}PxbkwV>zvcfVST<[%i{q`VH1$6EKD.2N#v,W mK1#) )   /?Pdt)=M\rffgXlIv=|0z%l]UL<'+< NZXO<bD% /Mo .8(:57C-L] xxj[J=5*Pk y { { ys pqw}}zz~}%u1b:G;&>@DGr=M)0 +d*`!WI94/%#'( !*320-,((&)3AKRTF) '.*  ,JbstndN+uZG>>ADHRa r&3;CJT` m5sHi^Uz9zX95MTVY|_e]XXOSBN;G;A<@=CHD[?r3& 3J{Z`fNuFCACN~]pkfyYD#%8New7^|rk^ OC":4.B&G(C33CRYXUnO:A*j@! 4}Nbt%).*"$5 EO SX3XKV_PtG<,#$3>t<R?7M^ cdb\L</*%~m%e&Z"QLXr%;}L|UOKJGB>? ?:-#/ CU_enysQ'.=FFDKWemrrl_YSLD:. #"!mWD7./6DWo %-29@KXba`age(\<TQNeHyHYp{hP26?A 9,_!`@>!`1990#*McxkQ9h5SNE`>n8u>}K\u4NkuaOB2}nc`~g[n7t zpb^cm0BR_ffc:`W]n[WQKA6+ p]C &}]>! .?Pg:K\ntvz}xus i"U)=5,?&H(P+]/k4r=rKmcg_TE4#|_>vXA41(#%$, 9 1 ( $ '0;IVad`[WSM?1' 3Ok} sdQ@-)6>=>BBM5~!v}Sy*z}tU=../.,+09G'X<lOeu}{=yppaP>(,>HC2nJ(`,F:0EVi{Brp^F()=HLOOIy@l8a4V/K+>'6#2/-.;Ww'Qo0f  nfXH=,sWA) 4Oct| #3@JTZ+]M\mXOE=z3b%J7 %%&+- % '3AKKB92' $ 6AHJE<-6IW`caU/F<9H+PJ :*  % ;+L<WMb^lqsuqiu_][IT2OMMKKD;}+tj aZVU[cl '>SakmbQ>,'BT_is~$V~q]H%8,,"  pF!xi``*h>{M\fe ]-QPFq:2)zdQ?&vT, %C_x:akR7B [jpw~vng`_cktgRC0""-.AGW[mn~vdS|Gu;h.ZMB6%r[@' +QFX[_tgfc^YSM~E]<71'   +8DN WZZ"\1[CYRZ[_djr{u]G3 o P1    |ri^PF? =;8;>GWo@"{$'%!  qd\XVRRM>&  "0?O\bfjn/oJh[[aL_8W I3q^VTRQQXaiq|~>`},=Pcs{pu^jMdAc6h)rz vcJ1zV6!'(67E>PCXIXMSJR=^)p|'>UccyZoSiJfBh<j>mDwO]ly2yOrgnxi^VPLIKOTUQA3" |]=}s+h1`-] VNIFIR_o %+/,!  ++59>AFFGF?@35)#  &2:?@=:630+" /?G LKF?8/*+/-% !%($"%%*$@"Vk"}(*)$|dH-,>IU]b da#]*X.N-A&4*!  hS?46Je$DX e)k+n(o!kbUF;52,#    0"@5NE[PgVmXgZYdDn.uxvpkfaYI8,~#m\O LR[ m!"  "8JW affc!a)^2]?cMmUvWxSpMeGX>I08|hchptaJ0&3?FB6),Mq %$!&=[y4N[ZSF4%3{?kP`cXyW[]N2zV3~{xrhYIw:\/O-I1K5T@cWrx#7CJKJG?6-'*%B)X5gDnQwX~XUPH|=n0f fea\[UJ:*  !1<A<-qkkp$z/;GQXakopnok`W J*?C2\"woZE0  .C\u~ gS(>+#)#nXB+3K^t#Fg"(2=lDVIAR.[!`cee aZXSKC< 1(! 6+J5U3\2b5bBZTPkF}8&vgUB-q_QHKrWkjiebdflv"@Talsz 0VxkV= xaE)~[<$!.Ec -EZdgilkijhglw&<RilP/eC$ &09*>;?JBXFaJeLcIXCL:>02'%&(,+*.4;AIT\\[VLA7' !8Ncs}viYG2'3=HQX]^[OE:- /? KTXYZYTNF <0$ yh`ZXZ_eq*9DOXf w%;IVh||n\B%whS: %;#N/Y8_C`Oc]dg_jQi=h(d_TD03Mg.FbmP4 mN0tkfdhirVH;',7> GN2OHGX<c.r <Yq 1>HOQOMNRWZYXY\^][SuH]:G'3 ytmf^ZXUTOLILRbv !-86PE`Yocu^w[xX~UQF|5y+r.h,_#Y!W&S)N,I0F;@F9N3S/U/[,e*f)^&\!bif W I@3 '+-*#w[A537?>9L}c~q~{-Kj&9KU_d|i]h?f/a([R G7%   -37I9a9}4++%SYs}mV?101*p_SB+ ";Qi|zi\SH9*/F_w *BR{\sjke_^]_[UURME=x5^$B'~rtgb]XUcJw?205;:ASp/@Qj1zLkd_xR< yly[vBv(mcao}~qq{8g )+E0X#]Z^jt`u3q_I=7k-Q'B;.$.CPVYZ>\.i%!$6I6Wc hp~ hP!A7..2>Yz?Ymy)30.$&:Pg}zncYOB9:=8&s[D+iQwBc8G,,!2I_r2T&3A`0QpeavTB%  }od^k|~]8 -c#9 CLP#A3)GU[cogw0{sgR6V 7jL) )Ah+/A]"w>g}y=umicR/m]QC2&"(26*582?+CNQZeoj \O G)@4;I)Z aa[J+ tiZU_sulcXQSY _;bPcVhToSsXscg_O@83 ,"$ 4OfbO4(m"^W]l!'!Jk *<Lb|m^M&{fK- ~ibfo,<?<78 ?*<A*Vi ~ursp\E:1& ,4879|;8:?GJNV`jj]OmOUSAR2M+H)E-4>)U)k,~16;- | ji6aONeA|CPbz7TrrkodVOL@64}3],7{klRWALKT[?gexs2ON)c nutbzQi3TC 6'.5I`w [ '>Vs~ZA1yaG-qWRSSUcu{r*vKgsv{xoc Q87b y"$' v^I5! )FPK@5& 3FW`aYN>,'PqmK* &9Qdq{yyhTA1% ,OomWA% yeUYm&045*Ut z hW&G27:&DW qfG'kL,));3 +$ q)O:<E)IB4) {m^SP"W6_?dKqMBBOVD0.;?}?BRl(6z@\EED+< :@FF9~#pw|wt{"#<Rgv%/8=8$ |m\z;pps|s]LBH.RDZXbdxmy/sB_IDK&P [hw~pU>4- told]%`+q.++,($ "'')4GXgt|~yaOB;?J'Q-O5H;@92:%:2"}m)]ET`WzftaI , oYA& %6L d)kJca`{bgfe@iitx eVN D9, rXB+ wbWNB52;J\u&130* $#.9B<-+-*)"9N`krwy{mec[OF< &#6?7+"+7>93- ' 2<?;2" $-//&1C<]Rqjmhmztu{xwwvfoL_.P@' qQ>;3r,g/kDnWohv 0-T?jJ|Ubptom}lm\]BK)6 -=N]hon hb']4SFJRC[=f8l3c1]3Y6S3D03/%*nD%(&*$((&%@ ^r| 4erjjjo!*;P]fjljfL`5^!L-ro|aC +(AXt%6KYfvnu\oAyY( ,DXiy}paZUH8:l23=EBLqU_ec+dCbU[hPoAj.]!<V2{y"{,}89+#|+t'pw zsru{4Umz}q[8@L!MPY^YOE3  (+:/C-G3SB[S\`TcPiL{A74.%#0BpMSP<N,D0qid^#T7OH[Ty_ktp!cCZ`Wr[y`vWtDp4h"^O>3+$_F3  "1E]w2Nh#3CQcu~tzTm0aZOB1(!$'(&$*/1.18@A??@;-&>Xtpkeda__clzrvmpdbfWrL7 y$l;dPedst}~~~3J]lolllibZ}WuQmL_BI*3 ! oM- *>W|0\y{U. 0\93<CGK JG'>:7L9e=GRZY"OG9n$6 OSA# xK }{wvvwx#+  #. 532=,D&H F>=HNH@>B?3' $-1 7> @/A=@H:N/Z"m |ph\M=2&x}>bw$^5CF&Yjomd`r\TP=B.5'(!$+3@Rl1H`s|tncR<* -BYdijlk\?#  &+&" *F\k sslcVE3$  3H\ n|h_^\sXaRGP)Wduvg^\\am z+8?CHQ W"^5kC~LLMI>1!qYC3%xkgkx  ;]nM- {U2'Jp7W{(0, xcQ=! 3Qmt^A!  !:NVRL>( ! %:K^s2I]x|siV?.$rU<"2MfvX9|a@!Fo!7Mbqy$/11)yk]J4!.E_ztT/8E!\ fnrqg^UE / xkgjpu0I[gpy~reWJ5#!):)Q@bLvU\accc\QKH@r-S8# mVKEBESm>Tan||shYB! z"g(V'S&Y#b'k({" "*,=2W4r/"s_C& 'A^vteXC, 0@J)Q=YL\R[WTbLl>s.smcUIA7%'5D1NORkSVWXWRI;-"m[A!vnlq~~}8\{nN.z^F 3' "3FYo!=Seqvpga]O?,'8BDDA=:50)0D YhvvaP A0  "&0:4DSGsC7%pR/ teVMHM\jy -47=EGD9," %-7AzGrImGmEs=~2,)$2UumW@(  ),-/4<FNQM=+  !tdVPS\j{ :Y/{>L]n}q}fpV_AF/1! vwnhh]hXl_zn*!H9`JrY_bed_rMb9J+*" jy\iQ^ITLLUFaDqCKZw@_|-V|~iWD1zfL2.Ll lI"[;$ 6Qj0 ANYdkk!a*O46=?3# "5BLU+^Dc]am_t[{XRF4 { x u k ZC() 35/#sa]adhp!1=G P[dlxwaF/ $<MX^ZUSS SUXYVSOJE=3028>CB;2)&#&3&A%J PUamu|mU:'3BRai`NB7) .G>akr{zpfmZOQ7F!9&jL1v!`M<&/4*L+g3BWo)3#;KDnNWY]g}qrr_oHg1\I0~ndbep-Mb,vRv  iCeCi M8/5@Puflfdhr&9PjY'oUE::?JYh{,2436<G Q$Y<aMiXq`yjp}ku_nLc2T:,=EC6'%9O eu u'\,?.) !--N3o65-&""&.4n5J-'%"$   "$),( %(+04 2%*,3@N_v|`? "6FZpq\@ybJ3  2$O@t\y$NxxikYJL#A4 wWA503nDO,a9w@BDEDA= :(50,64 0+"  %4DR_*i4qBxT~lzfT>s)\A('?VlyzxsgT@0!   )2;GLQV_fjlmkeZOE?@DJOROH%@65H+Uaksz|tk`qQe>Z'OHJWl| 5HYhtz{xreWH:& eM<0./8H&`3}E_y<]zzhQ9h?nR>n-XG7.1(<3NAiQcu  :Qg"x)03/$weN5jTFDJVj&;:MX^thszp\D)zwUZ<;)$7Kb} 1W| v nkhilno`wC*$}'r&l*e2e>cCjHxR]befaW I>1!#  -;GNQRUW[[WWVU MF$<24A*L!X]ZQE9/# {#3?HOONG?0$8IXcq}~scP:!  -; J"\%m${ql_QP2JP]p:WrywxhH%sWD;9<@FM]Aue7Rlwb_BJ1qVLHLT_gpz ! *31??GIMSPYPTNGL4G:*usw 6Pfw$-5>JqW^gHy-x_F.)Qy}naXZbnu_K=0# *.38?DL{Q^TCR,MF;+-AYmzpqy !&:;RPcflypqqmi_YPHGIMtQVR9PLHE@9/"  +8?AA?;3+"~yy| )Gbu $r*d*U)J(<#+  %:JWbi lg`O6  (9GVagc[N;$ %6Kcv 0H\lvu[?!q^M<){ k_UI<1*'(*.9FR]k*<HPSW YU PKE@:60+# ""#&-7?A&<35B3Q0a(p }{{~x{uynufx]P@+.u@bQRcFp=~;AIOU^itcF(, BS\`[TI|<u,qpruvvt{ + =T&f,r1~2/%  e!J(/0566687n6b3T1H+D&J#S#`my  ,7?@>;50"((+ )'%&&&&%%(,163*"5L_ny}rfXI5!   4?A?<91$ #(.6?HNV^`\VPC.-Ni{tlmpw}xgUE6* ">Yp ,;HRTOE<.p[E/vojhgknt.B OYZXQI>4(  ! )=LUYWUPOMG?5*#8Qf }~ U -/@Setr\L@941/3@}MnY_hOy@0$?UohVyB3+'}&h$L%+* 4=IU_k~/B S2gGvXgz~X5vgXK<&{jk{z~|wuw~2>FPVOB6"$%! '3HX_%`.e7i<hDaLWUBZ,_e nzvdM6 (@]nodXMHD-zsl`YY[[X_r !:Yp~zqlcTIBBA GK+H/A/@+;(1)%+. -.9J[k~$5<56CI?%~upi^M8" pZK>0& !&),5@Re$s2>=4)=WsoYC0 '1:DDABGMMG>" $:MrtP(8Qer|{~czRrGiCbL[ZUiSvVY^bjm i%[DK_>t-q]{Jd=W1M H EHE@=@FOUY]gz #8Qj{&.6CRN@>6&{bH+ &*./39@FJLS` hi h.e:bHQV6a e e_TE3"u}vqoy"7CJTcp vunaO<'(2:AFP]k}ye G!!;Rgyq|axSkJWKDS3e$z&),360*&0BS]\Y\_[QG>;<@(IBSZXpVM@8*tcN2$1?HME2&w(o$mm nqw=VmjZxA(!$)m4SH5]n 1Nao~|zztzc}Q?. ",17:9/&&*,A/V0g0x226:7- P.@T}h_}C635>OtaglWzD759>@?@ : 03"A LV\]W{M^:B+ xvw}#&,7DQ^r&Fd'4CP[kxueWH8& |^= ,<J[`VUWPLF@< 9<DGE@1^@, )9rJj_jyt 9"O:`Rlgyt{xodP<0%y Z8,8FPLDA9, !4pB\LOPHN>B7,?KXiwypry&9Nawm.aBTZ?k0x({#vj Z'H.0-1>MZ^YLC?C<$ (9V{~hVJJWct]53M^hkkhaWOI>u6j0b+c(k%{ 8Pdwtk`_fuo[K<0" ?Vgnonrn^VPD8' {!p"i dbs (>R\hr}|jP5 ! 5 GZjsskbZURRSV"XAX^XyXY[YRB+oN/x`L?8/zgYN(H;HMKSSQ^Tscmu/DTgzq(^AIW1l    hP3} _7 -Nh%8H\&k3kG`\QlBu1vrkf`VF4$ *@]{tnq~jD$7ENQRLkAW1TT NKXs &CSbqvmb_XN I1E?5JU_d_UD/ (-)"#+ 1=2[2t.%({8dHRZFr9/~&y~~o`K-~{wi+S6C<;<95?+P!ap %4CSYWL<.&   ,9Oo $.?Rteb{XC. s^I 8 . .45 13.9%730 -/53%m[PF;, }iY,KB?Y;o2.8JZl~ %:E/SBhXys~lS:! dE2vaL6 0Pq<P^cddh%r?vVrme[Zce_`igQ9,vcP<%'0AXpgyLy+} yaPC=>6&2Ty9d zu/q>eNT_Fn<z60("{#u(i$\M8$ .8BKNNNU\bb]R?+"/:FNW[ZUPH?6) '8BHLN=I^C};/'qd%U(D*9*8(@$D >9-~fSC1+:`"*(  '4@*N7XA\Q]\Y[TLN:G-=&95136 6-3I7w;BKSV_hntuphlIh-]J4! vh_TB/x'h&\'R)H4A@>D=G@PD]LpWf{4H[kx%.9ADJQ~]shfsXC-pg[G91 (  ! *Llw`I4!7MdqnvhiccVa@elv.9?EC@?@=80 " = Vdr  $'j&G'(% $p&a*b-h,l+q)v'"~wux)|/~,~&*471# -D.Z=nL[i{}tlcYTVZ}\i[ZYDX+QF6" n_`jw  vcuOcIYWSqRV]dp&Lj~+@Tdntz~~}uxmpecWVEN5F.>0,2103:> DM'U:RRGl7z'whT:p]TL<,!~xqh^"V#NE=35'Qj"4F^|-4;4IKU`^pk~mT9ucF  m]QLLRZ\\blqsv|{snq~ /Pr%1?TfsqWC/kQ4"'+-'   '8IV_a,ZAR[E|7)wfL7#!2@F)H2H:G?H@K7M&LLLMKE5o[H<3.+3E[it$?Yw $1>N\jw^>#rdSB,znc[[[`hq{'*++-16:;:1& 4F\r #BxbokaYY^acaa`o_S\:X%PD0|k]UNIDCFSgwcQ;35A*M3Z;oBEEC=7 301.F+_&nsm id`\ZPA0  5Unf>#5J_vzy|pbQ=(rga^]_beiq#+24_8;;;;=@CKU`gbjHm2omg_TE4"  &*(! sc[^ju{xqmjhjnE{i!?]y~p`O=*}jW@,  &03442+$/:EMRVWVPHt:l*aVQZjzjXLFDHRdw$1>H%Q/R7U?VCRGJIDKEMKNTR_RmP~G?5+! &{,S4.<L]m|w`I/~qkiijou|s^MA7.-6CRa"y*,,($Ev   & 595#(/=IQVZv\L^([XROIHmEUAB9815*2!,.9M_z.DR[]\YTLF;*-@uNmXp_|glmjf_"V=KWAq82+'&&%!{qlaO6&/7;6+    (<KUYVOC5' "  &/=K[hwv i#U8=H$TZ^_`]XVSSROG;+ %%-12@4O1^1k7t@vJpV`cLo6|! jS>' |tjb]]_bjy-DZlv}t"a(J+5./26=DKOV^hq} p)[MBt'    (y,N)!"]D2 *Ff>R{`}lw}zreQ7!+4;CI|L`QCY,cknpt uo*bAMc31[ t^H2  -@S_hibP9# &" vnikpx 0 @LQ#U'Y)\+\+[*X%W%S)M1G>EJGXFgAt9~79>BqF_HKJ3MPPLC6${j `\XSNIEHSj )AViyxmfciyqn{dXM<.&!'<Tk '3CTbmw{hXK|As8j/_*L%8%%'%   )-..)zi[PGB;79ASj Fe.J`r}p[{Hr7h%\OE>;>BHMQOG9*!;UqgB_< 0Sx Lmxf U?.$A XkqYB-#3<=<?CE?4' #(& $''$"   %*-.+'  /@R`ed_[TI;-   &04862-#  #q-]6N?CF;F2B+;-46,B"Re |'LogRA/ )6BGI F@-58*>#A"E#J&K$F!7"  zfUG<426?HWk7 ] )034321v.f)T!>) 1EUbd[M8% $+05761.+X'|""p*I2&; AINRNH@6*4IU\bjpogT;# {j\O@!/9"KZ$e3nEnXfl^RD90+*,.16%8)3)($ !)3AP [ i y  #'+034i2P,;!% # &2<B-F>JPMbOqO}ONLJNUZ\XUTeTAPJB:3.z/g2W1K/A-7(3 8A P`p8K[n}~uj]H3! ~,?OX"]8\N[g[\][YY]emtsqinGj$e^SE5% !8M_o||tiR3|j[MC>ACEM[n  &$+54E:S7\/a"fh ga\XPKGC@=;961/20J3a7x<=<;74.)# sYA(~~"(' -;L[gklkjgd%`4]B[PYYU]SYSOP<L&D :." $4BP`krxtdO7 p^OHLVg{ !4DX glj c \N;)  .He #+*&"W)zV9" )<Tp " Dh wcM7#  />P dz&-38?DGD=61b-@)$}eTHB?>CJS\jz &22C<O@W?[<\7Y0U)L$B7( %4?EG!E+=44:*;$4+"   !&85OA_MjSoUpSlPbIZBO8?-.  $),/5<AA>;6 2 , ) %   tf[V UX_l$*,+*'$2#R'q/8BKRY^a`^ZTK=,hO6# #" ~,C7YTmoq\Aj%R>+vg\XZcs  +4;<940*!|pcYUW^chr2CUct!/=IT[b{gmmanUlFf1a[VRMGB><:972/-+(%!&/:A HOTZ^_\VOA1  !')*)(# &4DVe+o4w<}ELORV|XpV`PNL;L&NMMLLJD@==@CHOTWY[]\YUROI?0 }soopuy(8ER[clprsqmh_UH9) 2 Jcv }tnkf]RB4$(9HT\beggfd]QA/ &3@O]hqy~ %1<FMQSRzMuDq7n)g] SD3 *3;BHMxMuKvE~:,  "3 L e} r_M9#  )/3551/-+%   !4DR^jtz||ytlaTF5#  $$$09B JLHC<2# ,8BGJJHC8& ) 6D)R5\BbMiOrKyD~<4+"}q`K1'3<DHIH&G5EBFMFWGaFnAx;5-& sbN >-'-26862,%}{|wrnhdfmv& 7K.W:XGYQ]W_\b^d]cZhQrFw9r-l oxyn]K8# )8HVa|fqdk`p\|[YTL?1)# ##zohb_ emu!0GUY_jqv}~yy~~m[ J.7: E Q]k{zo_I73<Rsbfi\xTI:( *:GRZamyqfaW G0*482( 3FZiuk R :$   +018&E*R,],d)h$los|yeL3zr #%)4@LYfs}s e"U8DH/Sfvr^TA* &-26775/!secx|uy *5DOR RR&Q>UUWhUzQLC:1&|[@%):EJ{NsNiGW:B+>KYcjr~ %/77 0++)"(4ARb v t_&J32=E LRZZWPF9(k]_dcbcgu")'-7;>EG4BB@LBTA\>b?b<]0X"SNG=;5'   ! ). 2450&# **!$(6GT aotwy$+4<DJzRvSnQiGi3_G1!"*253/)$ $<Sdoy #+7FPV[asjhvWx?v&srpmjf^O7xquwkl|vv|=Tfw|pe]]]V1MGE]<v2*uaJ6' &9Ng|naRCAA#@*944=0I,U/`/h&klmlh]M<+   -:A"H(N-R-P'JC ===71+%   *355310-**/489::>CFFC>:;:9:+;88520+2$9ES_gk otvtsodP;( 4Ocy~{|uxouhaYRLHGF*@=7G+@3,'&%&#!)6EWg"s3vCuLoNfJ^DZ;W1U(VZ`f l r v{|nU6vjdeyla{UOIDC<2)!,*5+D&[#p #(,*%"+$J)g+y*)#wzvrogS=3-"$#  (6@KSYakrs qi0\>MF;N&XWSA# znd\UM?44;J\kv=[oz|vv "7FRWZ\\U|LjFZ?F541*4!:@ A>81'sfZ\m &4BLQ OI!A/59(AF FCA=4-& $. - -/6@M VQL H>68;5,'  |{ $ / <FI)F7?G8V6a9f7b6[3Q.C*4.&:ERf{|vrso`M<(->yIqOoQkRgUcW`UdLu>2(  wg]Y[hz '5CKU!_Geqhkrwz~ yocVG5y gP4P)H x#&'$ *8;:5<HMMSZP=0 8,QRhovqskVvGh<Z4J1>679,.!  yn_TU[bu&0320' $!;(T-h5t:{<{9n3Y*J D:% $)/36J9\:l9s6h6Y8P7M4G-;"( }yx~4J]orh][TJA<1  1>J X\!O*8/$5< BDEGLORSUWXQH>4,# %4AN[fszz{uthpRs:y"  ,5=EIJMPSRNF<0');GRbkj^N7 *7=DLV]ekm6lUjnd[O?/ vU4u\F5* 1CVs #?[x  f!J'0+,--*% ")-28#>(A$>!<$>?:1*"q`amtt{wxz'.2-)3=#;'1,%047;C"K#S'Y7\H`RhYn_qaoad`U`EZ3P#@2 -," zz $%'%$  "#  xmn) <KQQTVUVZ`iq"x&{*y,o.b2U2G.3" &09@GKOQPOLJJJG@:)3:,K![enxuh`\QB;6,)297"2),/!2.)$   !(@-U.^-f*o(w'y&y$r#g!d!_&Y+Z)^([(R)M(E%-  zrow   #*$1.4355343-1 ) +9EQ\hpuutm^N?0   '*+(!-541+()-+&    $()2;?AED>85+ *9HRZ__ZRG;*( 058:5$++-/6?CCDDC<2+$(3>IU_bca_ ZTO/M?LGLFK@G=>;04#& &,-+$  %8$A1E;C@D?C<C8B6A0@*B%L$Y$^"Q B":)21%8;=;1& !% %,$7%?!DDA ;4 -$ %),6AEB>5+&*),A Y s t`I3 &/555 52$*'%$& (*,..)" ,:BGKOQQKC 6+!,4 @GIHFA91-'  2CPVVNC:2(   *4:;:5 /&' 4BP_ltvy~{m\J8) +2782(   # ,7;6.$ &4CQ[`b]TJ@2'0 :CHD<2(  #/7<=;:;6 *0?J RX\\YUJ9& -:F MQQPO$G(;',   /@NW_d e f aZQF<0$  ) 7AFGE<-$" #.8:83/*,&B"T]``[RHA;3)"(|03651.+'!     %/:AELWblu~~q_ K5 !!  #2AI!J*C65C"N UZ\YRF5" 3FSWVUM<+( 5?GLNMH>1% (,)$ 0:BIN PRT R NC3!      "(/7 >D#E.B7:?2G,R(Z&]#X M B#5%*& %" &# %)++ (&5"JZj x|wqi^UNIC?;3% '0;B B>;;"8%1*$/2 1.*$  0DR_hje_ XN'@046);?A?9, );MVZX O?2+%9F QZbhgaT@* '/3440*+1!7%9'<%>!=82, %   #)*&%( *("&,&5&>&E&F!C; 1'    !/=&J7XFbVifisaQ>, vgVG6$   # (/(=&G#OZjwzkU>%~!$! %) .367:<<82+" !7KYcghjjf]TKB80#)1">EF?2   +8CQ ^iquvqi]P?-  )2=HT[`da]TME7& $.49<<;741-(!",6<?>=;6/' 2EVclni]O ?"/)5ALTXXWTM ?- "')("  )8FQW"\(a/h4j5i4c0W*H#8( #,4<@ABC A=#6./9'ENT UTNG>2& !$,0$1--0'/) #  $#" $ )-&2298B>KCTIZMZQSTHX8[)^]\YRH:- '.4:<?BB@AA=81)"   (%0-56;@=H?MAN@L?H=A8810(("       ($4)A.L2W4a3n.y,(#lS9#),.+(# , > K V ev!)19BL|TrVhWbS]LVBL5>)+ !/;FORQNGA;3 *! %3BS`%i)p+w({"}|xq dUE5$&<N_mx ~u j_WK=,.>N\kv ygQ8  (6?GMOOMIC>81+%! #()'" "/:FSamtvtof[M=+ $&(("&+#3 9;>=<3* %,38;;973-(     "%&&%!"0:AHN Q$T'W+X2T:OBFH:I'GA9-! #()")2)>(F%I#G&C->0:053-4$68;;:4,$  #,36750(  %(('%  3BJNR#U1W@XQWbTpPxKyFvAn=d6Y0L'=- vjfhoy-APX]`a``a_\Y[YPB//>O#Z'])^&\"ZWTPMKF>#2.%;DNW^a_YOC5) $,36531-%  $ 1 >HS_ j u  ~&z,v3n:bAXGOJDL:K3I-E%@8-# }tpmjlpx $-8FT`j'p2t<tGqPmWfYZWLS?L4C)8"- "&(05863/& !/9@FHHC>3)  '/542/*    )17984+!;Tgs}oaUG1 '.36640*.3-</F0L1R0T-W*Z'W&P'C)0,-,)'&%l#[NHGKY m5K^o}wV5   $& )/8@HRY]aefb[PA1  "-6@GMNH<2+$ !'*/59=>;730+ )'&$$+#2!8!<:863-'!  $ .6%=2C@EMHWI\E_>_5_*b!dc` ZRLGB;3-"  )01246 5+/8'CKT] bec^UKA7,(.24640*  '4A$N'Z'e(n)v0~7>~EvLjOYNIK5N L D5#   '+..-**%      '2984/, -,%  !$/7;;8 51.,*)/ 5 9 <==>91* (%!$( ,048=BIPZemqqke]UMD8)|ogbdho |  *60CBPSW`WhSmLq@r0q"omlf]SG 7(  { { yu~ "-;FJIFEGCA=<>CG PW!Z2YDTPOWH[=Y0R"F6) !   !(0:ACB@93-)% 0>P f | }n^PE<4, !* 29<?A@7+   #-6<CII(E1@432%/0 23/*('%#!!  ", 3 : = <5.(#$(*((+-*%    ,:L[fptv q eVH:$ %4DTcnv|{vn f `1XBIK;R.V\^[ULB91+'!  "*/12,$  "+-(#!&'! #%,:0O5b<o>w:|972* ~wm]N=*-:DJMLG?6/& &/6:71)$$)/12'6.?3I;P@V@X?S@M?F==801$(   #+ 1 8A GHJLNLIF@ 6 . * )*($  $.49:730+(#     $ .6<E P Y ac`YRNH;) !%+4>IPSRRPKD9(    $5EPUXTOE8)" 0=GR\issme]QC6$  ,4;=7*y tstw%9FQ]iprrmi'l<oSrjr}uvurng_{TdHJ86%({soov%.12.+&  &0 7AMTXXSN&F/@7>?BHIUQ`VhUjKj9c'YN D8-! +9ADC?95-% ")14676679=AGMOPONKHE@8/()#//...././2 9>@@BDA;5(  #,3;AC#>%4"' $.;FORQLB:1' %:JWacaaba^[TH:1,% "%(,.38;:6+!',/,% "+28;<<91",D\r  "{$s)g3S@>G0J'JIIA4$(18:9*7=3J1R1[6\9V:P9L;H>A:8301(2!48:&60):? >94+# "" -8(B8KDMMMUL^IbBc7g.h$hb[SMC6 )      "$'.21.*#-:CLT^eggfaYPIGC:3*  }$1BS_f mo,kB_UPeBs6~( xm^L<,  "+4<AA<3)&9K Zh*q8wF|T~d}pyzu}o~jea]{YxOrBo3m'n!lhaZQB3' yplhjs}(=JT_ip x{qf']+T*M%L#KMN QTTPG>5-%$1>IPPQO!I$D%B >97777773) %3<DHJHHC81,$  &,168510110244%231=2E2N3W3[1Z-_$cebba_XQJA4& $&)& #4 DLQUTPNKHD?:644773/+%  $=Um"'))%{l\ L@81' }| #+./+$ ' 3>JUa"k(p0u8y?}B}D|H|I{JxLtOqNoJjE`@U:I1:#& %.!?)P/]5d?jHoOtSzY}]{_s\kWdRYJJ@53!"    &,044."  ##'0<FORTY]^_^W'N9EI:T-Y"]_\TMG;.!    !!$$*%.$0"//124 78761*"  &,17?CFGGA9.$  '3&</A7A@AIEQKZTd\n`vbb_YP{Hr:b(SA2$$#   ug\TMHHLV_gnz +:"I0Z<mBHLQUY_b`[UPzJoCe;\3Q+G"=61./030) {sja^[^j~.IZejllj cWI<2(     ".(82?;F?P@Z@a@b:^0Y#RG :/$   %(),048?HPTTRQR RS%R4N@LKKTCZ:^2a,d(f(f'b$\VOG ;. (;!K"Zcl qsrhYE3# %"6*H1Y7g>sC{HKNNK~Gt@h0\QG:(    !/;FMSX!]0c>jJsSw\wcqhhk\mNo>q,rm ga[SJA7-" ,DWfs}eL5 -<HPSUZ[WNC9.%  );LW_a`]ZWWUSPMIB8, #*159<:3(     #$ )-/%+,$3:?CD?80&  * :'J/W5_:eAeFaMXNLL=K+B5$3 BO$[.b8fAgHgHbEZAL;?420&0-)(+.13:DKQTXZYXSM E="5.-9%CIORRPNKG@8-#| vtuwz  ".9AHPU&T*S-T0U5R:M=G@AB;B5@/?*D%JQX _cc`\WMB5"!$%$!     "%"*-.8.?.E2J6M8Q5V3Y/X*Q$I@83 .($!!"$&)+.18>CE HKGA:3) yspqv~&4=CGLNPNKFB<;<==;83 ,'!*6AJQZbg#i(i,g3a7Y:O;D66,'  ".9@CCA!<*33&;= <82)   * :$K)[0i1u236;{AsDlC`?R;B60.!&!  !(,/.+# !")$5$@%J'Q+T.X1\4b7e6g1h+f)b&\#UNF<2)    $&%  "+5<BH MRUWWVS P JC=7-! #/9@HKI D<0&  (4 ? GGD<4,%  $+.//2540'  "-6@ IQV%W,V1T4O8H9@:79.8"8:<:70*"    %*-.-'# ) / 244!2-0:/@/?09/0,&'%$! %6DLQU]ch i he_U$I(9*+-1 6;;942258::;=?>;7200 //%-.,7,>.B2A3?19.3)*%  {vux|".9CFIIIHHGA6*"'0:EOTVTPLJHHGGGHLRUX!Z%\&^(]+Z-U.L/B/7.+- ., *% ~ups{   #$$   $+ 1#5(9+;-:+;)>#ABCC A<4)"%'&%%$#"!  "( ,.0/0#1&1&.'+&''!*,. ./12541. (!  )>P_nz {#r+f6ZAJH<J-HE?94-%  &,-+!$$%())&  &4?HOU UQK(F1A8==8@2B)B"CC@ >:5/)" " &*)'$+,,) $  %08?A>:40145654/'       $')+- 156678974-(#!  "%(+/33/)"#+3!7)91798@7E7G7G8G9J7K4M/Q'TW XXVRKC;/!~(;M]mz~si[K:*  (09BHIF@80(" $)"-0/93@6D:EABI:R1]$elooke[QE6%ysrr stvy!}  $),--..-./ 258(;/?2A3C0E+J"KJG DBA?=<7 3/*&##% '(%        &/ 364#4+22/6,9)7'3$,###%% "  !*28:94-% ,6:>@ B DFILMLIGC=3 %!!  ",5:@DF KMNN L F >2% "$%$  2DS`muxvph[M? 1$&4> E HKOO NLHD@??=:88751, '"   "$%&&#  "- 8BKT\flruxw snf\SKD< 5/)" !%(%   '0466640+%   )4@JQX\]Z ULD;0%'6FRY[[ ZVP'H3=>1I$RX ]`_\TMC9.%  "+3;@ DFGGEC@90%#)-/012335'738<6D4L/T'[a dfhklkhe`YSK@0'.25666777754110-+&   %(*../010,))*,29BKXcowyyt l ` U J@6,%  wtsw}#),..-*' ""&*1";%@(B+B,F.J/K2E1>354,4#7: >@?:3-%  (:IYht}",{9oCbKRS=W%VRI=- $1;CE EGG H&D.<5/:!;9 61*! +5<D MS(W3Z=YCSEOCM@I>>;27%2*    "%(%  !$%&# %069<BLURKLNKEB ?(4/.4)7:<? @@AACB?:4,% !&,5?HQZdjn pqolhaVH 7$zm_UNMOSV\dq ~%'++#% 5DOUWXWSLC:1)$"#*0 26(:1>8C>HDMGPIMEE;=09&9: 5+xtvz $' *% +4=DE?4( $(94I?UJbQnUwV|V~VzXqXhT[LK?93)) ->M Y`_(`.`-Z)R%J@2 %  '8GTZ#a(g*m-n.k.j-j+f+]$RG> 4' !*19AEEFEA;5,! !(1;<:?CC@>:70&   $053/)"  $*-/&118<CFMLSPXVZXYXWRQJM?J4C+5"    $3CP[be"i'l,m0p5r4p-o%mjge`UH>0! './12/%* B[#p-39==<:4, |tj]L:()39 7 3 0.+%   *7AJPW^cf h kll#e)Z+O-G0@2920/(,"++++* ( ( *+($   %+010244-'+(%%&(,4@HP\h r|zrdVH9&  (.4;?@DJQY`is}|#x,s1l1c*Z!PC 0'1774220.) '3:AGPX^dijnrssvwwqke] RF;0%      " .'60>:ICTHYJ`Gf@f4_(VJ=/ #   #()&! "/:CB=740+# #)+& )4<?=:879930*"+;IU`ipqponni`R@* #.9CIKH!B2;D6V3c-l)q&s!qhWE7%      %=Rap{$.8BGHyInLfQ^XUYI]=\0U$H; 2( !7JZglo oll,l5f<aAYEOFCH6M*QWYZX WUSSVUNGB>;<;6.)$  yvvyyxx{   $6F Q Z befgjptwxupd[TOE:1&! ! ! $ & &&#   |topu| '8IWcmpm g`XN&E*<+2*'))' %%%)'-)/%-)  &4<?AEGLQRQNKGB:0$ +%<'M%_#o"z ynd]VLA7/& )7DSdoyxpf\N?0"  !',+-27;=?><73.&'19>BFLNNNO P LH F GE>71+#    !'+-.#1,:9DBKFLJJOGTBV=V8U3S.N'H@4' #! "* 3 > FOUWSNLHB90)!%063, %"  #!,)2-90=4;:9>9C:F5H/D->,6-//(, &"         %)/299ADGMHVG]Cc@`>Y;R:L9E5;//(#   #' (& #*4@HIFDC A<61!+'(-(-+,/-2,4(8=A= 9 8 8 5330)" xuvy~ !'*,/2 44/"(*#. ...- *!))$%*/36:?CEHJHEE D@8!0')( &$ '+--,("/?J OME8*"*167:=??ABA<72+# #*./0/..,* '&#* - ,,)#  #'% -BSbnz|xpdZPC4% "#2$A$K%U)\0_5\9T8I6;-,#   ~zvuy%2:>=:4/(#  !""! #)/$6,<3B;H@PBTAW?U<Q6I2A1:.5&1 .("   $)-0!1)21391A-I*Q'W$XWUSRO IC9. !$"  !+24567773,!   $(-29?ELQVWWQ H@8/" !*17;?CFGFB>< 5!*"% ('%#&(''+2346;@FJMNJ D:2"-&*)&**(&%#  %2=GPX^ab!_%]&Y"SJ@2#  %*-)#  %+/0&0-14280:+;&9"620.)#  $'+.0242,%     $)*,./123420.+ '!  #(('%  ",1 355"4'/,)1!57:= =:4.&        !"###"##"   $'+++"'#!$'())*+*')++*&$! "$(*-06=BHKI HF D(>-41)330,&!   %. 49=#B+E3F8E:G:G8G3D+C#CDDB@ > <;93+       ! & )+, + + +*'#     "$ "   !&)('#   ")169: ;<;61,%  $'(''((& #"%(()*+.///.//2677651-'#  )3<FOTWWTNF>6.'"    #*.121/,"*)*/)5(=(E(I(K(J(I&C%9#- #      #'('#   &/8@FKLHC=4+!   !&(( &$! "#$ % &),-.035451-'    !$'()+-/1345651+#%.6;> > <:89999<==:62*$ % *0354$2(.+(,!-,- -+($" !$%(*,///.- *&        $(+,*%   (04!6%7)7(6&4#,    &*./)! $+14650*#  #+27653/)"   %)+,/58;;82+" $,04564431.,)$     $*. 17864.$  ! (.13443/)%! #!*+22:6B7H9K9N9P9P:Q;N;G:<;09%61*!       '/4651-&! !$(/48983/*#!(,/0.-,++)&!  !&'(%!  '6FVbiorqpnhaYR JA 6 *   "$&&#  %'&$  &,279:9741,'! $0 <ELRW]abc`YQG<1'  $*06:<= ?BBA;3+"   $'&$ "     %,157641-' ! -8@HLNOLH@4(  $)-010,($ *2 :BJQVYZZYXSMD7*!$&''&%$"  !,4:<?ADEFDA<3*$-7<?<92*!   )17;>@@?<7/&    $*/ /$-'+))*((&&%!%&)+*)&#      #2?GLLHC<4*!!(,/234431#.%+%)%'%%)$0"7@HO TXZXRLB7*   ! !' - .-*$&-5;B G JJIC=3( &,0320+"     !)2<EKMNNLHD>5,# !),-*'"#*05540 +$#&&# "(/48:!;&:*7.00(2210.,*(&"    *4?HQVY[YVND8- # !$'+.01221/*%  ").2320+%   #-6>DHHE?:3*!   !#$$! $+3:AEHIJJGB<60,(&$$!     '19@FIIIHDA=7/%  !# '*+)('%$#!    !&+07<?BCA<7 0 (   !$&'()(#  #-7?EJMMJD= 5-%!%* /248;>?=;853.(!#""  "%) ++*'"%,4>GRY\]\YVQI=1" "" "! "&)**(&#!  5JX\]chf `ZQF;2(    "'!3<CGIMPROH;, '05:@HQTQPTU Q M3KDCU7e.s$| zm]K8%  '6AGLLKGA8*## #$ $,3:@BC@<5.%              '4BNXafiif\OC7*'1>C BDFB$<(6+0.#/.,)'! $<P`iopnf!^-U6L=?C0E#C?:4.& $2>A??>6 /,'6@ HORSSSRJ<)z wy#*0552-'" ,; KZjvwl_Q@-   +3:?B@= 6-$ !&-477421#0).+*(#!     %1?JQVZ^[VLB6)   !%'&%" .?RfvxcK1   &")$,%,%-%-$&##&)(%  $/9BIQWZ^__^ZW%Q(G+:++)%   %08@FKLID=5/%   % +0$0-.7+A)I(P)S,S0R2O1J0D1<232)20(   (069;960' -9EOW\^^XN C&9+//(2 69 :741-)$ #.6>IT]^WNF?6-" '04664/(!  "')'!  (07::7672'  !'-2567751*$    %,17:;:986553-'  $-320.+&"  "*17<=:3( +@Seu xhWB,  %*,-,*$ !"%#"" !"  1=IVcmqokhge^UJ<* "&*-.//.,("  !$%# #*./,&! !%(*+,,+ ' #  /;BEEB=94 . % ! (6BKSVUVT(P.L-E,;%1 ( !''$.6;@BB>7.$ ~wroqu| !"3(C,R0^6h;n>rDuNvUrWlVeSYNKE;=+83 +  &())&" !-9AC FIG?;95"0'()+,+("   #'/8>@@;0 (-243/*$,<GQWZUJ?5+ ! %)+.00/.,*&   "%)*+***(%  &2<IVbikig`XNF>4'  &,27=EJOTY^cd`YNA1       %.: G.O;SJTYTeOpGy=}5~,}"xo cUD1 %' *.5!8!51,'       ! & (($!   (2:@DHKKHC;/$  "+3;BFJKKIHGEDC>7.$* 8BHLOPLE:,  !""  $-5-99>EAQE]IcMePfOjMmIlDn;r1t$uv xyxtlaVG6% ,8 FT_glnmi b%W,J4<:-?E LOQUVTPMJC92,% %,1220+$  $.367 5. $,6 @JPUURLF>4)#$!  "%((#  $(+-/0/-(# $0;=98741/. -+)) +"+#(!% "    &,00//,%   +39<?A?<83.("!&/9CLOOPRROKB3"!$&')**(#'1:BGMQSTSOJB:/$ #&)+-/2431,*'"     $/7=ELSX]_``_]YSKB6( !$%!   %2=GMSZ^^ZUPH=2( !*18>@A?<60'    & * -/10,) '#%,49 : 8 5 1 ,(% #'),-,+'" -8>BDEEB?;1(" &.38:;=ABA?; 72-"(,"7BL TZ][VMA6, %+*168A?JBSF[GcFjCl@o;q2r'rplhc^XQG9&  $0<EHIKLLJIGE?91*#  %+/13588762+$ &-1341-)& # ,;H S[^]'Z/S5I:==.< <84/(! &0687651+'#   $9JXdnturmga[PC4$ %,28>EGIGB;1 &'-000-*$  "##&"'!(#'##" !!$%#  #', /35430 .)&!   $')+++++*( &!        %2@MW\``[RF;,      *0231-)'&$! '05:<<<=<<<:60 ) ! #&(*.00/*'"  ""  &,16 :!=!>><62.+(#     !(+*(% !"$&'&$""& ())('(+./,'!   !           $,5 = B E E C > 7/& "'+/10-'!      $)-%1*5/91<2>1=07+1&*"   !##!$& &&%!   $(*,+*)))+,/121 /+" +4;CHKKF@7, $) - 025663-&   "'*++(" %-47884-$ ! $&'&!$&"- 28=<<9 5/(     !%'%   $/8AHMOLG>5*   $09>?><7.!!!+:GR[bhjie[M>.  ' .4663.)"   ",48:860) $.59973,!$/<G QWXTMB7-#   &/ 442+# (3 >GMQ P N H A ;4.%    $ %%##&&$!  '/36640)$"*04541.&)0#9?BD@7.! *6>DEDB?8/% &3>H PUZ\__]WQKA 7 +       !"  %+03676530*$ *28;<;83-%     $)+,, --,,(#  !# %$!  !-7?CGIIJD<4+# # %%&%#     "*17;==<6.&   $')+,,,) '!  "!  !###"      !+5>FJLJE?7.$   &+.. - ) #   $''#&*#0!2320,' "    &/8 = C FHKLMMNLI D <3)   ' , 0258;>BEED @ ;2&  !)18?BEGIK LLJHD<4)#(**(# $(+,+*'$  "%()*+($$)-/ 00/,)% !& *-/120-& !* /47:;<;850( %,144 31.*$!#$#   ',29BJPSRMHA7+  !!      "%%""$" "!   &.47"9+969?8F8M6Q1R*U YZYWTMC9.   "),///+%$- 39=CFGFC?5,#  #&%#  ##!  %/8CLSX[[ZVOG>2#  #(-2664/+$ )5?I PUZZUQ M!H ?71*"     ! /8<A E EB<1' !#$%&''&!   # ()+3-<.F/O.T*P&L G?8.!   ")($!  &,5>B?<83+#  "'+./.,'"  ##  "+ 16>CGMMF?92+&&,26:;=>=;98850)#'.4<CHJIHIGGGFB=95 0*""( +/10.,*'#    '- 2 7;=;6/)"     &3?IQY[X#W%T&O"I?5-%  "!   $'*++*'%! &3>DIHEB>;72-* &$$#"#$   %+/233320,(#  !""!  %$'%-(.+-/-0*+%%#"      &,16:== = <94.)""*121-,+& !  &-5:>CF GF+B7>C7M1S*S$K =-    *8BFE=4-'  #.5 9<>>?<852.+(%! )2:><6)    !(,-+))&%"'07;?BE!F(F+D,@-:+3)*(#(%  &*,, )%#, 388:82* !'/431/.1!4$5'3'.&)"#  !$$%%$"     $-8'C-H2H3H4J4L3I2K0I,>$1%  $(+-.-+("%) ,(   .?IR#X'\+^.^,_)X%K :,      ""# #,$<'J)W)a'f"fc\UMB4& &-35552,%  #/:HV b"i!mldXKA7,     #$$#$%%$%&&&%#!&, 2 9>EHGD<3(    $,49?EKOQR P%M'G(?+6-+,(! "-5:====;:5-%  &.5<AEH IHHD=71+#      %-7#?-F5L;Q>S>S>S;P7M2G+?"5,"    ",6>E JMM H%C)=-60-1&0 01100 110-)#       !%(+..-,% '- 4 9;<;;;:851,&  "$"!        $+.)#    "$(&/'5';&B%I%J#J"F B@?; 5.)%   "*165100.*%$'* + ) % !          ( -2530)$    ( 5 @GO Q PKG@8/'   "*0 6 : ==;950)   #(,269:952-*#   $(- 16!;*=1A4B6A8@7=0;'6!1*"    #).5#=)E.J3N6O7N8H8A79512(0 -'     ! !$*047<ABCB<2 %     !&+/2320,&  $,39<==<:5.&          " !      $(+,",#-"+!* &"   & .38<A D DEGHG!D"@#9!3.)%    $)/479:95.("     !#$$$#!      !#$###"       "#$$$%&&&%%#      ",5=BEFF E ECA=84.)%"      $'*,*'%!      #'+-/010.)$                          ( / 5 9 =?AA@>;62-'!    "$'+.0/-)%%+./0/. * '$"&* + +)&#   $&&$"!!#$%%$$  ! ! ""#"!     % . 6 =CILMLKHD?7/'    !$&&% $ #!       " % ()'%!        " # %%&%"                   "(-!0!2"4"5!5 43220-* '$   !"%&%#          %+ 1 6 9 :9840.*&#       "$%&()+-.-,+(#     " ',..,*($#!  "$%$    !' +.25788852/,) % #           !"!             "%'$)*(.(0&0$0 /,(% "    !%(*,,,)' "      "%&%#  !$(,0578 863/"*$$$$"  )3<CKRVXWUOF<1%  $ +"3"9#?#C!F!G KNNKFA:3*                        !#$$ $"     !!     $%&%!   '2:@DEDB>7.$            " %&()+,,*($   # #!  % * -.0. - + ( $  #(-1342-&"  $'(**+** (((%"   "$#!  #,269::76431/.+)$          %0;ELPRR P MHC?:5 .'! #%"'%'''*(,).,0-3.70<0>1?0<-7)0!(    !$')-"1%2&2(/(+('$#!!      !*.#1)1+0-.++($&!                  "0=GMOMIB:.$   "*3;BGIJJHC= 83-("     '4AHORSQOJD? <;5.%      (-267 7 3 - ( !    "$ # !   #'+-10/+$    "#""  !+5>FLNMH@7-             ##!       ""#"      !!!  "$ %%%!  $%$"!    $')(((*++++'# !*17<<<<;:951)       ) 1 : AEFFC@:5/(               ! " " !    "+3:<;963-%  % )*%  &)* *%*)&-/-* &"  #'' & % # % $ #  !! !(*-. .+'!#*059 96.$ !!!"#$#"  !"""!   #'*++)(&$          !#%')( ($'%$& %"        "$&)*!)#'##!    ! ,4;AFJ K L HDB?:4.&   $)+-.0/+&     %*, .-(! $'()*(&" &-39==>>:3-&      "$'*++)#       $),- ./ 0%1(5*9,<-=->*?(>#;5. $  ! # /9@GMQ"R#P"L"E ;0$  )1452-'   "$ &%(#6AHJ IFA=50*&#!   ,8AGKKHB:1' (/6<>> ;71*! #&)+.//-)&! )3:=?@@=940)" #%$"   %')))' &"  #'+ + * & "     $, 1 4652 -*'#  #, 1 452/ *# ! (.2%2*1.,/(0#1221 /-+($  #(+ .//-!*"'%"%&$! "(.25542.'   #&''('&$##%(+.0/-*%'("-01 321/,'#    $(, . 246654 10-)#    #'*--,*&!     #%'%$ '.4:@C"F#G"FFCB =83,%  '-37::72,#    "%&'(%"!$&*.24443/,'! (.2343/+%  !'.379961*"    !'+/ 11/.-*%                !"!     !#!   !  #&((()(('$          '/8@GMQQPLIA9,    "#"     "#"!         $&''#$&!')*(%    !!!       # ' + .144431.+'!   #&'((%#     &,27:::851*"    &*,-+'!  $,26:<= = >><72,%                           #$%$!! ####"     "'-0367740*#                       #%% $ "             !! "%(+ ++(#    )27<=><71*"        !## "    #& ((&$"        #&('%! %)+*)' #   $(+.//-)#     #&()**'#   %,36::61*%      !    &*,-.-,)(&#     '-49<== 93,"      $.7>BCA=6-$     #(.1342/*$   !""!  $(+-,)&"   !!!           #')' % "  $ ,5:>@@>:5-%     &.58::74/)#     "#%&&$   #*/2453/+$  "##"  "%' '&#' .6< @CDCA=72-(#   #&'*-//,( % !' )(&#      ").1245641,' "     $')+-01 1///,'" %&' ''#     #(*-/0.-,+(#    "#"    $' + . 047740+'!      !$&&&$#             ! % ' ' ( '$!    $&'() )'&$!  !+4: ;9873.("     $)-0 453/,+)&#                           $ *,..,"(&")+- -*%   !"""!(!.!48;95- $    !%).3430,) $     &-4 8 :;84/(   " $%#     #).244/*% "'*++)' % !     $&&&%"  !" "#"  !    &+./ 00/,)% !       "%%% % % & & & % #       " %#%%$(#*",.0/ ,&!   "#%&$#!          !$&(*,--,*'#  &,38::62. * ' $"  !#$""   )18>AEGGGGGEB?;4,$   $(+..",")!('%!                   !%()('%!     !#%&&&&% #!               $ */2689840*!    $),/ 0 / -)$             "#$$&%$"              %*1 6 ; >@A@>9 3 , %    "$%#! %-6<?AAA>:4.("       "%'((( (%!    !""            !(.158 : 9 9 9640,#      ")/468974.' %*/14430*$      ! $ % % # "                      %).02320-*&"      #$$#          !$'(*)(&$          " &)*+*(&$ !                                              #%&&$!            %(*+*'"        #%'('%"            %(*+*)&"    !&,/0110-+( %!     # $$#!   ' . 48;< 9 7 2 , %        #&)++"*$($%#!#!         !  " %&%#                   # ' * *)'$    # $#   $+057651, &    "##!    ""!                !"##!    $(+ - -,)&#    ! '+02442/)#                   !$'*,.-+'"         $()+* *(&$"!%')('$!! &(*#))(.$02321/+&   "%' )')-'1#332/ *$ #$$"  !!!!!" "! !#%') )'%!                '.59<= =;72+$    ! $&'%""+29>@BD$D+D2B7?<:?4A,A$>:3 *  !#$"   ! "!                         "%' )-/0"-&*('*$*#(!'%#   !&*.1211/*$     "!!#%&%$!           !$%&&%"   !'* -/0/,(%!     $)+,*(%"           #,59=AEFDC?90 ) "  !%%%& ( *-/123431.*&!      "%&&&$!    !%'*, / 23320-)# !"##"                                 !""""                "%'''&%%"            !"!   "&*.0221/-*'%     $)/46531 . -+)% !     #%'))+* ) & "                  "&)*) ( ('%"  !%)+-,*'$       "#!        "$%%!##!%%%$# "                          &-268852+#                                 & ,04 6 6 52.*&!                        !$(*+)%                       "$$$#"  !$&'(((& % "                     $(+,,*&!      !$$$"            !$')*+,,+ ) %!                 !$&&%#    !#""     $')***'%"                !% ' )(%                                                           !$&%#!        !!                                                           !',0233 0,'"                                   %(+,-,+($        '.357630 , & !                     $(,-.,*'$         ! $ ''%$"!        !!                            ""##!                                 !"$ & ' & &$                                !""                         !#$#$"   !$%#!    %)-.-,)&$     "$%&%"    "'*,,)&#!          "#%%%'(&"  !""!                  !       #&(*+,,* ' #    !"#"                                                                        !$&%$#!           !""!                                   !""                                                      $'))'$"              #&( ' % #                    "!                        #%%& $"                                    #')+*)'"                                           #'+,- ,#+#'##!                                  !!!!        !#%&$ "   "&)$+(,++,*,'*#( #                    "&* ,"-".!. ,)%       "%()))%!                                                        #$#!                                                                        !                                                   "$%% % #!                                      !# $ &&&$"                                                                                         !              ##$#"                                                "%&$# !      #$$$"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    !%&&&#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    workrave-1.10.50/frontend/common/share/sounds/subtle/exercise-ended.wav0000644000175100001710000241405014221624107025055 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata    |otP1%{T%{- C%5g?{.OI  , N 3&Bb l^7$.h k:RZ>lu u)'YJ-v!{c%f63b#r 5$_ =U]X$R%'W{v[NUOS`pm-(Plu]oNo ~0 \i0(17V[Kfyn EQ_8w@R\5+1"Paq6`3XxL%3B^H 7A,,0DDkT~]y+U{ $ X  }eu#lEa-yv R 66 < 5  y4(*p7/.%VJk6Z=fp g+0o;-xB,GhJ%8L^t.'{ZX1 W`YM@ _lj$;r  | X "S z< Y%v J\t -3 # D\k an Mh e^_(xxB1R'lm{uJ~d SF5[lv^]lZU)"%,. \BHC(" $ tUVL TP1S  RYO * )B n  jwn?p?WpHA+}Y} $ `L}#D RLr [ ;Z"u<3U 'oeYn+$H D^3 +_U c 0q$ z  3T  ISHz\@ R! tA L8Ta>Qo2&v?ppQ?nE7'i3{Cj|]; # ~^T> ~  9yPvLyiIc  G(  UD 58O /"ss.);c$r /{I[C3o)wkWo\3Nqejdvdk]& `0!:{ti  O  W 6g V%p1 & (vz/ Rp }4 A a%-%c-i]*NNH>4|9{d[ UigE6t -s%i}-9 fOvr#ZiaC28W] i ` VmL0 R <' gn0`;c{ I   4G?lwBJ-s 8_?{X H->Z/"D!RXG&e\2*lA7Zg])UOA\|   " t4d!r= !& 8}d  R8/ c6$=bGu/{`bKAWv74iT*YuT:Kb|N C=FBV(z-t )alj>ui@}e~c Y  5 |s E|B_q!F+q?> l' na(s  "/ [l 4eXFB#raM3,&0IJbT b+n]{K3~ q_ 1(@3n%qkv O#J} tEe*6 !4 '  lg A7?mf_^ o  dn"7 4[v  T)*nw W>Upj{Mx:2H)3Mjk+H={QrP J=wD=W_g]^U6_)VO75@Nn B [ w.@6J2[v s li2k P{cEySo`GGLJ7]zcx!(nJf1wMM?:XK#>ARfr,yU a]#{Wx&Zs 0 _ X AR WY+Zw -} . p C(PD  LCMqvEv=8Es}dA$>| 7xrJIIW@vj]GiM:J qyT\TMuO3oZ6D6 b l ZH  E@wrub f D d%C  3O$LM nn3)'X5i Op (S-vI"Jn<$ nm`+#[gI^WV   ! 4 G {#vAtqX %O < )?xm yvPv;ak$w2qkB.xo3^ -llrQ)IK\T# FNO c2dhn|2i|(} ~oX+ oOa B G 9 9|'G?!bX - B =u R Al,) bj!Y=qjQUN f{(%ez_lch a}F:>A(npn~K\w^)3L`L)~1aig'B9(} mBC +K %2y%~vg D  qk Dn w ` oY(T*_`0H*k~Dr,P EnQ{: cvG[TE>;#m\"Z(ud3xU :] B ,lAo]D/1JB6 } 0P33 d9t^p\;n1\\1m1>jql'zUW1m}fxi>R *u&tHnw-${d"1?  V "c0#-/*TG !  )_}< {@8!?;9]9v}\xwdr} kTHqX5}q;(Uyp6hDtT;$7mb.0P"<\/ 0M) 9 %L,5Y/xDu l W[ xN7jO C  aV#A8smWHYBojzP#k{d {7#mrB6 pC< RKeuQ0F> e) o tK$D)`Z 6> W~O;w )> l!D6|~p@5':IUJ_oXI3LqF)d*cg\Jx5gV"[WOY; I\<=)BZVQ'C R 9iG ] +D Xo}H9opj xU/b|yA~^pV-F|fnzSv$j7/4Q(qo%EUq@wf5yd_v6O~1 u +8O),!uZF<s U ry=v.  S:w!mVwK~=8V{D(nO%+ fLyCLjdC,soZ maO#3As tcyn-[/v 6x  |<#B 5TP+H`-xwA4VyWx){ke q)_nZ_9H!&B|>%lAL=I 6: `c)%Y\ +N@sXd|  y!Nz$<`ohb+-^@-qE,*_=z,~iiD|g0>vV:GR{#N%"Hc{/~Pef rmH2 qLxAInA6P%+B- | /sJ\`D Hkv^i D^`$%jEw2Z?u5>7!7 cZpTzAk*NnV. c1aj u$zrEuLx~0v^UgkK O b *0WS Z&MOan_ ##l=PLWE]z]\KMGA>ERoMqjwKuJaDxu>!m6LTL{g;C@/@G:Pr 0VsF@ P = mQ ! :;}%XanIGv@*C/"o2N-s|kX L'wki EW6sydF Kpr*`%c,G{[P9 a7I5~z1{doFGJ<=Pdb K 70ks,~6 P 7,~qVT`{vg-$Y}U} g_8LM_guiWs"!>gJ=cH`HD@LPu}.|ZlK^,R 33 _ A3Wc4l4 Q1 @ ) , -7N[=U1\>yJ_+i JB@7<.)eG~<e<rK4"I|{Yx{GH:j dUy2% 1>Eb S#O \ ;78cw3 s}yTa$:sw')WU;:{5+id,|1j v#[c*C+F W ,W$h 2 hUXMFo ~\ c ` ,5 e. *[ H? ulez!Wx%{bU.`Bi4$,7Q\9^e^&0N)(%"kl'%G|4 qI1Ob@rWQw'g~,w+&,%  m J U ,J T  0<edu8@oxik~o1Q[L]g4H=_~XM MfTGQ'UL    _F,X)  +@uH9P]^kt-%FCZYFVr0l")u 3[Qe?i4#@]]"!Zc@aWiM'L>@K/QQqBXPsh    *   e -]N8'5f).VG]j;r"]*J^$\k]3[5Ta} Jw!ly@;x:'hRE)~#(C0bw]6*Qcr |f   }U ~ ]  ' ; tkZ ]}w3J4!bg3>Nc)e4zCr0@m)i+'tYIGg~:=y 9h?,JkmJg!,~z}^)>d}'B :f  < R   h R M1 f&5azCro!zoR_e.M}Ke7rJS9tp@Sfk$[`@0?Z JIqLc* ~K-8hbb`8.(-8=,]D@ $ "  z 2 5 h  Y*z\^ 5(1fH8 .Xwg@?Tpz `ILqcYs4 x'H(#O `))>,5#sf8vp{biC )  . E v e +4    ~ekyk%w_>VQP("gDkrG2=?gsb#9B+Y+ Osj`XfP"qChj(Y:*;?:khFfTL_i"F,6ymFgl { V =O `  h   4 &  woNcO/xFAde-f^ |,/ MGA+2~Um-r z^~("dYJT kyuD=g"hJZ>CK anw] !  P p  8 P $ ORIJ8RR^ =@"`]%O ]^Qw7[$s=i\ NR?/BM'k{+.&Qy,'\ S }HV'3~gCIt+ J *u L   ? X zvxt.#V;?B*@}sLNu6-i)XT*1w2nR[{t,b-_ |^a'ZpaSW |{+'&2%? T=U{ QtQ@C ` o ; 0  y  . dIgU7i+)O'B\qmr8tm -;L4R%sL9\*25PX b%_B tv-Wo#>/n}%4%~G'SK/PC i a b  V  #.  ^|61mHmY?TQ0C YcG}n/wq3W68k9y{ 3?bm'+Lk&0{@o,8%n q>D[;pw,\U;== 6 fS 4  M +Y E  C:C4\dha2BV.u{l b,shP^4~d=="JKsyv"Wvf?yPObuwCI3<x%xr@ d5yV1pT$y 9 ' 8 " ;   m T8szx?K3;16p( r [*oQF#.+$B*Kg ;K'M8)hg=)yfbg nX`yIHF_, @ l Z ; X*  4< %  UN{XID]-E?!I,w-/ [FDU`9i ,fSlo,@1ng0S VFobnV?Yv {1%f}q F^3O5 ? \ &K  H 'h]t" ,',NH +7\AVe}F|- \xbc>cEs|4uw:4$o1m%ay=Y{|n}+D o[.eh?a*Rc k zK Vj   5 eT<8`VyFOl>mWI %gEcHA Ev8s-4[ 8crR(|;ia,XjJk[wv2TFvhu7<4  _ ] l! h ! [ EBm9SgiaJ_U#&&>3bZGApLh723~Z6n=auq:\oW_}p]AMo/E+ 9E K v w]  Y & h >y8.<E?2/v8Fr2jkM3z%_{Eb |:-j% HXL!c*cq [,1F9%p?w0A=o &  n  si ?FB\ i>rGu5 LKi_)i IhSLw~u2.uI@h$tYb0 WW*FT u[tTi#1 9Kp:qPD -@hz($#TEvDD63q6f,jd 6  z m  EAskT]1MR1&Wp>^[~.e( V D X5&qAVd?>E)1|hME#9PM]4{uF"~C ' yY [ _Pl}A[t@RcC`G4&vdbXtDL[u&0k2s!` rmQHZ'R7Z@=a</c|rj 7K  3')e9y :m  !4NU! E#`F zlbXPJrnr)Tos,>pc*I4G%Z5t|Ubv* +FZeuW g=kpNCSG23 ,  w ! U) 4 +/s,^/Rn T|J9 {>!0Y4$6.<8drMjAr}WR62)cQ,RE|v]U+'0|4@RF<[(%= ( s Qq 9-QmYm2n$'6g=G^2j~jYno"]85K@5 8fp zM C-O6 J!(Nzgn[L%h&Ue&ixP^`X)2_ e 3/vK6|>B.? 4%#"fe}[j b]\TN6q*1OnkMm\}cr  <_>(J;uEN'"O-#r|]?on  i LiX43jtS&~6@G< G4*=nInZ8 ~*V|A9HkF#]|pa'sP^* j\L$DZ{=j;gL6pIUPG^v?b|q Z`]`K_tlc6KK  -ctdyN(A(MT*~p[]l$zH5a;XA K\0(I>99ZmC]?1]r}1#$~>oFe~0!pRp~u(-H7|L OCj)z 0RKgzEh%v/I=utS}(?P!{ D?}#@Q:oU?\#ew~l7HQ-b`"WMKT ?t(2+ VbN6 9mfz0&rnrYwxV,7="jH:.5TS"E r,! s`(St MPc# #ZvYJ,H7>^_~46xv{f( -&\ap$K~X<`&A'BFOFYj "c_R;6:yyCs`kJ6_(LusU'nWiFN@1TW9KUL+Dw^QRT-Sw|rEf7dHk]rT1~k0 /R3 9i$Z"0 ;6{{VSf23U04-gA4v:VV0~"hjEU# ZfqyJ!)XQn>'Yj N\{rJ.(],x!7O]vIK46Rjc(%\Uea<&pV_TJq^BhG@R6ldXR+)#0-CchgM7=,-z"xCsO.PnFc`4b>|+]2%X|aF3Dwg[SB(P1wm!w7/ ^DC7-n{?C[ G%_sFP-zt($\d5T~F 4Y Z 4 *iEJDh< DkQ::cYO.Ptu-xqWRR9 .LDq-y:sV @+*?\Bn@% }p!kv"VK3q(6)A3jhD*{#Z%V@2aDH*vNcO_*7(5N,f2$W.EbX5 :R}0a$-&3U$2L*H5YL]PB]x -l` ny=W=`Tv#Kw8h6 ^M01taEVnDcY\_T504P|qU}Acz7<ByoK!8IgUO Q)n0e.&,B01+PfysjW5Ig*'_qcHNARM:W6(k\&(4M^;LAV\H 3c*sDjrTLpP?y!XNwJ{'CjpX6}^?bAk~|<i*G}",%*AD0Ft`@mkJId I L?7 [4+<oQ'9/i9R4#%~)gM^Z# \m#B[#*i),z{!]Tbiy|l+ Lp]4C"-&[6w53Z6uaV3Pwtf|awAp<UpOYNH5`s`"j(L<Z)cjK!1r..%iSk?ZVbNM&;GYzVK6Gos-=]2w+UC$AaF-Ss43:QK,>C`MAojXv7K ?8N,Jd<Pm E_h|`pw|=j,K-3|C0qE1 6E<V_itW@G2g(jZFS@Eu_= >gl1[ %7# k~/ |X+^ QzuSz/|=3WQ?&&8K'hP$Li%RW]Ey6dd*  R S%p| bqO3*tjJDac @ R{6Pmw j&p{=2rV ZXT>2LM329=Q?dSu)'a[u"8$#T{o$nD.@U1E.Q=P [Uu#._>|-7,vz8qr$@$F0.nmiTS/erA%i?;ubxp'qcRPsG/jY.nvXY%_FF.dz>|GI6OJ|%VJ]D*$vw[W%? `SW[VU,^~(AJ.4mW[Lsj*V-/r)b"GJ]LfLg+]2K^ \S'(09uQlW>V}O_YzkS1{3?C-Y[U)Q*ekbL Z(I/ 6|Ik%7b{cr"e}xcqrpk` o<$wnIl1cEpH)Yh@3YI~B n d1]qLdM2xx Gb 5%[E'uOFIQ;[P,%+Jy88OPUK<xq|jLW,mu{pcJ B Am]~ h VK)`Gz@9 Ua O:m$n K1| XPLC`E9Q&F1[ k=jq*8s(4.ZE\6q"#z#N+^OfVvdW5G_KaU;**N -4"E?$NdLF|3>%C,j>M X}o;Y  UW,<]>5k738/N[Va@>0]dd.|b8 IFx?P!C{,~$ l4okG=.6# aQo3!H3q(_&=_)LwT:xpmo5)#6~L@ w{n<L %sKu!Zn/bFYN _' 3!RzI='~<x^YfiSmj4u%@>3||aXbT=y=! 6 *J7{ Sw* [B'v}S>9K"x\UdM$tNZkTuev- sKh&f daV{ #oy)g,yM6w[eNc++SD{%* FL*w |">@Xh\&\y:FY:1;oNcN= 'bbHl:v6zm OT^VC{>;5x >[{)\Er?] rAn^)r[khsshn?T-.5l3ye[#G56.$S,uT~377AJTU/%.] hoT6 /dlFi[V~o &r?;+1]B!bf6u TntYLsCu-/F^$* 3=-<a&7E&n8<( QUS{L*Jc yG4nMXvCOVRMR!xzu.FSB9&]g9R tniHI&O/~B} X:;JvI_]I{ |7=O5BmIEEDpNLmE s<"naN ~v-VG('O9m,M%`WT})TZco&C->g=h6XAR(b4!*ELm JAnHW@pg555x6>D@PM9 .N ='Ek&1{,c]aPd_ F643es~COC#@ q'R)F :auleNaend<,xp!r ml{VRCq%J$%L7=TSGD/6)Pg7fD$Y%R=I.a _Af-=%j x:R]qm-IxD\/5 ~FP|\DYtxl~:X`Mt\X6% i>a$oZ/,No" @Ps1/Ld}E_E+C2~Rzc{mhphG!m.!Av/+e[`)1f}w6Femct&nU'x[0'5hIk}cQw~~gd.n Me; t?w `-s*{;{Vr~] )/[= x o=X'QOJtZ?Y o_H[k<-4 c^dS^2!_V[k7r{qo4=|S5A'S  36jsh(3h?8Yh:|Un)~P+j 2QfE3Hc,%n)AcW_p`bx3jz 1=c*0*nSXYW#h=Gf EF;&Ao wOL=K>_ZmS^;! *3_HJIqouK#+W17 l/G2\'^rgBMpEP^s7W94s@Y %)9\jhPMABl[tfI6I{D!},$$.u<]S~5BnT:pZNC?0: lvYq9%PkG%eopyZ>*S6_.dV/(LRY` Be;p'0D?sT- ~+|uXt>wh4jC&M7I N%5O&@i%wq-^vF>l74~T*`sE16A Ya_HCcMiY>&uWsr0.^4*A F]rQ `9*u= CM3",]vD<O @ Kr`(Ga #EVS'2b]+8m&{ J]tTrLu@4P-:WoXN'we.u%64$\Zzpp`L=k/>BZ"&8x Xcj_J6L$WwbA p";GFXFG   Y3yl;GPskV)5*bQj(qh8Cc,Y}A2 %B=gxy0]$tU %m^YZ20OrQ $JOMINw6Mj;f8=c C}MQ[V enJ{HZkNeFj''sn2r|d[zKN#1Is~"6YRZd5{rxdD#,C$J&^MV"| SLUl-A[<9}yr,-B#tPJoi3Gd>5D#Da kyne( BkiXF-4AAOFr{<;_K-0!H>X=<CR-=N9}{*@&9Nlh`">/YS7Z(/&w k;Y+-nN_-Z*("u',g<e1 29 SrH qGd)C"i3&:.eheI|G$b+Q Nkxz a)S1+DB LGnl;7Q' !#x*L+D(,RR:s `E!z8`z]Ea]ASeB Si\mQ0YD*__A_]Q~Qyz~p95Gz]]   tnR lIKgY \`$3ANo[X%lS&e3rqZJ?80 Jv6"!!xuCeVq&z_dB 4Nw9S#OGitHhWhsXoLq\"$M9i-ikK)o?.7ec4}}-]Y"@t7=5#Wx_>, 5S ~n 'e@ux<R^`M E9Pp#Q\Su1AHFm1gMQ@E^5$Hl/7+P=8.>$a&z34  kql0] L=@\_m2~8!OVc`/UrXXQb"o I;zC: Fn yp}Mc6T3g8kZ4 %Tq2^nnxs_r+clFT:]h6*)C;!dvL!2?*b~P~SrSJ%qJ#B7|N40!k,;Cv gPaIS LjB CVrDPB|#b*izj1OMu8b\HpY(D~'p"=1W 'eVDk7DIeT .Mx|G*du8L3rjL]nkEfp&N@vxP.wIZ%f*h/i qR`H;]kNBU^){PJ/9nE)>zsQ; BW[I2p$zo^x\rH8=7R  f!%HNKr4(2"x2QYs (.czC+x% NK{Ry(5ST#VD]nUu&^9g~pT)ps/ZELf:j-m,7-  NDy7H@wbN24@Iik2<O GZgi61lCio^Vx*RPi`.N?VJ )3} (DkdlwY5u-/.he&& ;*^|}LS7y4:I,DO }5-e%#*o ]+r?V Bw?0,)%d =xLxP2.twjPqa5t&d  L@VMZnF! N>20iB\GkhFV"_1Okc&oJH"7wpg^=bpJ#oHyon 72ZW=`Ak/ opckC2#f#}hjyELyYT1gkZ~^D 2tI<m XvM/HhAc swu295`g:+Q~&. c~!`!I#muKwE{ 6P:<WQQ" 6-pv]<Z vSxr}A?LP 5&AP4zAbDS$-xY/i@s N? mY:x1G,AK{9.Bt gr-Cwo$\oX+)6hLkiC:|G2Yp>qCNsETdY!_l)"5pz@%TI1\Xu=}e<?tGw{JL=3:;,16~ ^  yBV,(&]dvXe#=Al*R  @<Ap0-e&2N0/KQS'PUlcH+1[2!`VRkf&-:S;XOmg:<Q-%_|7E8 # slP> Z\C$cT7n .ej'~Y yD]k]]W H<&7c/\#jcvZZC 9v{iKc608cc19v6P"?}m-}JM-f p $ 0vx. S$gC$3/= vw.N'%bTR%IIT9' 2/'0h@M lr>m@R! fb_'a(M8d| ?! bHL5_ %_g32WHOATKrft !uJKYt*^y >HO#U2Y(>+ <5[o!sdjvF9R DM{teoe2q $c ? B  TG?p:BJZm5N" Hlm| @ BLM =!OjEsqJxJ3vsO)}Wd%c=YSXoK1U#6# hJ$_ 'T k7<K_Nm{ 0sqF=QZrm8{cB`y&/QX /;jo_^~8x3;~5%>D*25:L%%;-5w.?qRxea eYh+VM  kU nA sItz _73(Wnb$x!Du1@cxVUWr"=M@BO'_xyW'1+b^D?]X:iw~vvD^=P/[;1IdvRIv3 \ f0L<$Rsr:*lWeyq@o%'ziK}X1xC-o;@deZm:NOiCZ,Z_sk bn Up P9HeRyN0F14=5 1cXQTk:yP0j*O18wx [{ #,~ZskBCKd{`<UsJ\_y4 ;W`Lv`? l&r^WJA}|u^9 %J5?$,f/P_rXLGLCQzniy=wL\7&V&-@ q0yI-r:i|9Nig3VXSYl!XGVNd;e?L N fP"k 2_ZoqQ)8<# SEk7?rJ~D`pns*w q9( DFqT16BD*{4cFXmD.Rimb6Mb{2| P jUj3?2 e4Ej-^1I;y6w#>nli+JQUKc&?;x>PbU#]B#+0h~:rEm.`K#tKRtpW;H: \+K;BDkWU"QMEG aRbFkiK._rnJrGXn1x*gpXm#9G]K+2# M#S{Qn7SVs'"ZM%.f# >  Q~6opgNc>w0_9.7U Es_-\Lq,*c\_C5{`w0#o1w\+g,iw(}F nKr Rvdd3<vu??'5Z%%VK{^[IR#Mwgnmqj>t_!yK7EvXSL9zfu(0U#C+[?aTPXRoBA&rko#N%sG,xbS7')vPI=%1BZtFgbtd^ 9 U92LnN4" $QyZ?X'$7E((5w  E_+}eCL 3Ez5m$eG7xYYUcf?r 7L07cH4ZleLkJ~Q5pq["BeFsz0Za9c%4k:jJ" /~xUAL;DgQx!>bdJ+^,FAj!/y0.3=9+Z@-\BOeh<&i(ko9d3GhpUAFu>HO>nnq F=>[SBm),;ID" L`GTh.$7Z>YN1Q.$ 5o6gY P_G.YUk}t)74r2$x9%8_{V0EFyZs*EMcRT2++[Q A#VE&sTMqs>ntpsM9gG+#V6?"r9>@^.|jTSZ 2|6Oh="R\Fffr3&BE? }4 NtKp+;}Q@WxhF@]!U*y +CZu<6N^yNpyaXowK"!g >!KheRbmQDW+Bx Z G6vBE"lzwP Zw uQ*gZhwnzUsE\bM}Q< jX$| U;mPaIx\R%$He*?tU3-{vv|e Tq*L(} PZQWG;ng\*@K|[e X;6Oq' j_Cj')P@"oywnP,RdeXUz~pMdh`{`X_Q6NIwic6C-TIbsB.UE=e`V_'!/KG(A/!y=X ~8dq?Q*G$\N_G1> Qa2  _%=k1 ^?%'bG}PVHh0 `eah%/&.t/4@6oiz`S6E+Q6gCd4y%8s%yEd;Ru%;d%?P{<) HHu=p6C2mpq^di(XsGTP|&=U\'i~oMsA27|/1;f$}JQK2;?d.,.dH_=+)y-]I^z;yIT,8A, zo:} }n<Y?v>3 MRq |"Wt5oOsE(3$`q KT3~#YV'6G3${Y~z%)_ukPRZOWCQ [Wggx| hoa}'1b_09eoo,/R\0OEF93R:Jy(EEiuB!daw>xpc[N&'o"':vuQjqJ)'*AUsC80i Dy<N]sDk8z^0V`*bWOr\r*^**T\OnTy ;f i3p3Rkrr] YHF/~WRi}|x&R>@Y)UZ_vPsl[|GBSdp^yp?*4E&l'y ]l}|V1n7Sa:HeH[X 65PZ3r_S8/hkE}WXQ:aa{9X?a_pCk0Cv\t!%b: iCi7v=Qo^j$\SJItf~kry;<Jz(Xjk|nh/U '4 j$-&&C$4q(\yh`E E(#K EJ\daW]U^8z,cw{p`#TJlh8-Oe]kCZpND%wID>+u  o Te ZY\?v5lP).t=FZ&yV}cikaV./MG$Ba>svMPaW02[QU.m0uh $ \+aq 2XH(TQo /7uPVzY bwc Em/_ygRJXVL IL lO 5NZ%RkS"\TN;Z+f0Zce Wr/!n]/6RyM%UJn%/t=KbM".:w~z2{B?m]gdFtXVw{K\L{es.z d+mo&L.7`xwk S=ZL!n-T;tmM 8gM~`S[%d" YAX5w8"CI"*8iM8 pX1Y  a0j$"HE3Z",2p+Dj-@:Cugdjb4EHF9Q F6B) fi9J% zwvFsjO2*</co.K,/$_Wow/$i9)VqVc!!Y}GdJha`n:HI\v%({KG@Q}iy!i4< +}5ie,Xm hv{DQtAj,,iowOK$'Vv+vAWjzhz&{0AH O1S{;>a0C@m\?;&00)}}(RUVXu=}ZV xs?G0v^oB@\*yA`=mCv(rf_n6mf3m#S5LD*6}XBn}}&~*m Dd hsZk\=-YopF']Sg=* _a3xe,O%j_ng}H|eyGY5;YF(m[5>CL:g~}pxZ/W=cOBr5{nlO@Hebx&XrU3LJdhrn*m y|Xj& B&* h>@tW o (a!W=]c r-',-HF0Y~ztlEf|7I>U&Skq\.IG@mvCIb;cm\ &*"49Or]bG>E|uhBWSJ44h[n1~(Vao dK-)be4UV/B t!'j\a hcIex0&aOEaU7rd"HG)Fr:ilc9~!a6lD17z.5H#u s L3RDwh8|a ?vE_'LhS<&0`8:TP#z.I$a:fuPe]lAqPX0<:T07IAsI.7SmTVuYWJHz:^V? -iIe SmgGiRs%z)@a@oD1q s!=W)NB>d,q[)'sk[|Pr7E*T3D`K:,rBk=9^) NeOzmHe 4OKmjf40aADLbXLMR@yXv'j C*zF cat:w%i%=B'HJ VU mu*DO>Dsj&/$'O Qi :#@ ik"wm<T*kKDX3oQ8Qs q=$*qkOF4xh^3]"i:B?eL]jQCN.n??2LVM@gnG]W5oDI}F WD3Hr/^_?{Z">7: \T1(md ryihf%lLdaYf n;:+bwxlx{n R[6iA@2V0yi0'M~3aQVh9?{w0IoO_F} (ye=2`&aha<|N4X1%40E$M~vH[AUq /Lzo_`S%@TjeL@]QKuvD &^ wd76^=R11xt1l T=~f=&[N% EOHoz6FnT488,j }iJuDk=M":u:~5wX4HjH4F_ 1q_.j<Yf> h7 7 oHh [ uI2y<Hz>jlDX.F3'~C?~SX]H-~nmj =2S>a,?!T:6[ ?1-m% D3H2XFGnpKfZsKZrH,`u~Y`sn[W:X O'/R~o$Rz  hOEJc5qZ;2cHOD'p"-ne   F|w?Dh?)Cs9C9-IdIwz? d>f5~*M0x%s[!C ,tlaD%W:GlWz_/s]Sj1 `{/Ei+Y btfQ0& MstYkGzu$Jr>,?4u [ |;E =pJm$Z"QJLQt48?]ps}fi",NQ+0R.u($Kq tcS(1&I^? qfte2l9%/ItgH.i(x+{wsW   P09" Z$"J|_)_ TG] S# '9a)jK=3$Rh?yB'K_`Z<F?u,T(2e D L7nxuP$H4 JN]#"#vW{" js&%d4~$x c#t#}?b6 5l2!^),-OxD7i6lUvi![sOGy4u <J9(yCg][{2|=^mIO ]ED'Cdxfe?05<f| ^*LeM[@0B)J=+Tj4XPx9sUzOlK#ra3V8DtT`UM~NOb3X@3*7KeR{d_R.Jxx %{`f0@"p=Q1@Ok[;*~?84 7xYf9|)2WXt6ch4:'D JG8)U8KO9o03cn\Q_`/Ha=oc\#|fVl(=79)\/gsR&L`?PLaq<)Ub-{eFG91#&a-r^M(HA1[8-$zUe ilHqe5A;r/GHmYBYDTH@arjQShs,Or 6^2mI~XT [1q8YiZj}%*qC OBx 2n G'cPq4Wue=k ! ?hGUc?9BC Fk,<!$)?x"My$[b7L E~Y:NvnZ9}(A:2M9_ZledE5[ 'RsAh >kuH[&KdoEyGJSD< i :xcp.QYs3CbW>hXS[o(U/  Mi vnRdS*b$:C&@XM1uWkvc-EWC\zD{"kzj}$B N d/9 [8A $f"E>xA Dr#E2UcM+R.D%,hKp59 i) Bp48SY3 xSrEd+J^aF0:[&5aZB5 ^'R!r4)eP;J1  0n7>tR>nP[v1zCt!%hB4H>6qhRF {[V-O|F> <!k' >}iNSiQF:^a}?d Sw^7XIhGEM}pWVt~exzNgBPbu6q#_h io ttOD4D#%7V71(!!&1g q2@3U9y7re@mwWh4tePJ)8B>?"W^U^0x E3g|[=>L^T)2x *7%(v],+r(K?}ATd.9&}{l,wYJ9^:,I5] =q|zim5L &3`? RvtwP9g~TkQ95PBQ,# Qb%ethsv7YcT FP,Bi.Ue+B2ZW,mKRjhY\h.J}j{tLw* ~v?TlTn -0p+j\AbK+Jpm"h+?QKRuy| ;61Wfk5UQ<`(+F2dmjP2RLe}Dcq"K?&^J}'vDU.'u2@ab=R= %_G'qh/\{|l+D~\l28P3K_Uywa8:g*La{j6.'hC`Ej-7.GwF. a(mU7_~#FzU%3Hxb .s5Ei:h\lce6L8`.`8 "PYpyQxd1J@7s{q.pI .g>J,[Hp6c^ _j%wzJ]FB8e5FgRaM&&XLfqL92FRNs6M,Cf5?NXy3S[= \e-|!mS:XZ%;fZ8 fWn~kk\R,ihW' Cqop;~Wy@i{&EL..>^*XQQ06=D A8 7ARJyrT$`G} A`2H+ <H,]1Zu\/Vznq)9K{p jQx&wuZf|7u?-Ho[sH"!Fr"W"\Rf[fv:6Q,:d!^?YX~8,et&[} ZH ~m_ y1OTuqqV$de|yX-dtE]%%K-f5?$b $KCZd\aE;acm%b5} 1lnR$k  _ky7IvazZP\^(@Pc-p  !^tK /.8UQAkie^;6{B%5qd:QPA 0KY!Z fHHbviVF\$N[.1&HG~(|+j\g\A^R)q!eA}byc\(-SD|G|$qP6gVmkLXp5s @GkbjKR}*q`j-L:[H}3lWzn^@*u*^LH5[+`2TZ~V+oY]x1z;9uVhR"4z9Ye.(TgajzNlPLOcH`t!}N)SW/5L &W^Z_NE?@c[rcbLUb6_XN;BYx1r%!^LizOF?[ @^x(*"J_43A8`bp `- U90 )Sx[Blt+cFWKZ6:Ki{_h4;:AeG|("0ydrK9a/ )O@3sgqX^'V"d^1gFlZ%i 6qKOKl5]Tx}~WWRw5f/s}B!O' #WSf&cgz{Q)wp; Fk&-6e\ [_< {f;I7 2t| po\MT 'k 2EMn (V89{Zo%1##9]#_ CI@~w`>0$] %!;>S,F~?y/ lF#p|n{#PgZ3zs$j]HMe(!C:_*B KZ'ahF\']c#RXRt_:V >Y90~| o>swyP xTf-EJ-&z4WPn?PN$+)~|t}fjn $?=|0JIgG8-!V:5>kR1u (s2rhN?Y>t' ]fQQOcXAMqT *fSP\ @&~t|Wn^su ;+#O<}pG_Mw>' [4.,BK;AN]acxQ^gaCCx 92 1=u#\P!K "|k9s4rsWZm+mu&U .V{r!kvMwOQNoCv 7bP*apeVXUdWyutDt_2N`gkG`K^: Tl ?/z JEs38]s8o:9y0W2#4nkLx (X ]*aa;::?u .q$BfuI dzqPe&dmV\.g`14sAy~=;m&g (Ys"r=hoABdO4U6,%o06Y"<,<*1m 5&?<-SxjEJ, Atd"68}KxAHq0Ww8&_l>e_3^?g  #{b![kWA"} 8D`o1 M8gc]JDIwV-'?7]8v"Grq5XbViqR` gT3'JMh\; raPDf;KU*r9Gre7 9cW{0NJGfSNjD <]4Toy-hlo9a`a&,>Dih(QGrA BA Z$K(thQ4gu H!/R_0`1::mu;: DV*ZF|ejlg"G-'9'$P7z[u$=2)*K& =TU.$[bkDzOIH`^@`pWh-y{uoKu}9.Deb;-yF7y&h/EK:]dEi,Ixx85i>dOOR/$"cz<k8?IBe+:G4M"18/`XbJjzEE,>C"dK7W`PM%3uu5EU 1|tN r A=?Nmxr6pX|2(=\unOWm W%\ ?pU7[gG/F[3-=5] Skz^khfg~y5rlawI&S SKk-@72 G2; hd^PZ>TDs|CQ\;rPYc"2|G%>s(74 O$'~j#UdzO\Uz`KjIc%$p <R 46TfY_-DTMf4RD0HBv:y=cf"`dfS" K}[%[p \=U=bl= J`7H))6d=6<" N #,WorM]BiS-+r &aO{Pg4R1~Ty CC{ #ewQ-II!){Pi|2Tez$y)aI8OVc6zBkuCC Xgy;L33 D${Ikq~g<&n=.eus75j(o;1T\`/KLuK_43* O/-)|$F@SZ nKRk;L Y|&?IJuX \Hn20cT0s b3\;uzmh[{pwmb0Fo r~/$L^E8f0M>|jW-E@ KU:<ScAy/;HrUy`#4JPKrGB`DWb4~Sgpz!A+pP@+Lt}ze n5gxtwa}QTAmImz|86A@101yl1}XE,e/ur9^|a52ct\f^fs@@VR}W&>63[3vxrku0.N0+otkOIGfjSR=4FA|E$](A2E\  T#(K 0k+`}>eC9@@0je8,RgfFRZI  *19Au=4]1B-ie}fTj< q(}[\ ,<=4iUy["y"N3vHGFh1$;bN(  Un b2/k3]BU@@8@[>/ e*-=21Ot6]AfclBoMf{`1LjF,_:E?  Hr iH ACXY>\UQ3 T# In?;7|R,d`Nvf mzHv0*=zSENHP=( ^3 wju=L EBkup_2TuWjW/_dX8Z1E>uhg|g~(EDsj8k Uu jJhUUd3 q,v}l SQE9$L j<-3UjF([~Sg.Mb2r3(y.]f5:WU,0:p 70Z/vx_QFf/!41L$wW] vrZJ?UkPA6E#u9P\}pH'-/ XJoKkx2pgzZ6U)`wlG@5~,& mac@5 sgPl-iPGUK^r3 Bicab`nz0psn`S$V=tMu>Z8 x`z9}r x-+rk=|_c`j`"K2q"h4e: 0UK>z***;:+: _\E_T-m?s4d|xNK5V!mF~oz:[[]PLnq 3hogkEx87?^)`c;rXcRZi[C W/B<(PR2C u@BFTr8?WtdP;P  9H`}/Urs_O7LMUgySO7o-$}iJb!ks?#H5 [-@yKsmL\DG  N&-/f?%B29de.DRSG1[0PgU2r(eTA1L }g }\h5AScPp-8U_0_LWd ENK0Rq AkqIzn=) y@-# 0"? ./8XMi4h\Ut8az/6$-mVl,Ka9;<S.wm{t4*GMF@ur<[ m\pO:U)KKi /5-;]^JX x"4(;`5,Kv!Z+4J<~Ahx]EqX6NW2i CZ~LMN7^`g5M 2 .f*XskQx68?]D;$DVs&Qb_sk>ku /dyW\(1-2MH2_==c*Kl;rFm/|4ZEisgaG;J_f}<U+5*99 1;L46 '/_JZw hGzM&CRs#Ai Jgny!T,A>O$ub-be'Sx+iS|;`TO7+d!f)IaCO%NMCVD,rV5b8eGvtynsyztoAwa' WZ(p/{Ia,/KBu $Axr02J|-odMIZJjbL2/'.3f0h$>3YOj.kL{yhguOu|,RB{.AFgiP-.%v#/=07NOEuO"' [@THt;'Z6b0X>_5-H[uG Dsz".*dd0x paZkU+M9r6pup=}YhTxB{CVho}K2M]Lm8 GJ5#0a2v R.YbGNmH P~U&o}y-W6>Jf| (2uhGd-J*}aIfj Z/mhBg+qCiQ +7^kI V?\(/knS F)*>_W;_zZaiq wHH(}z*Q"PF{/2\}{Db"U][n{eUer2gWk(!-8<CLI\otg] ip>%Y|+nPF{S8fCE 6GxNEl,c.#S_!FP r:n&?D<3;Acf r_h|@<o9:)-^Yu|Z JXV5SwsvI*)xr7t(::]OuPh}k'|u6D4^hiL|` =)`2yOlkA1'8YOAXsx ' Pno]yX<zm^k] TAcEy8aA/<Z~9 UyPVkK ,]$^\X!SsFx`> "GG$f|8E`rl ~<\dT:7cV](,N8 sqKO!180hNPHT=(Ad zL wn,BU 9iy>qf2b+/e'8a""1[RY\+DIIBY5 SrK%:gu/% 7,v2JMw;>cC)hYhG$F XZu21<HG$uh5@o"+4v8CYYY3 x9_: o47@) P9xp>>H^\ F1L~53+:wZOb&}gogFC$2a0J3df"+?#kjFM n3y  CwZ"U 1RP MUY?(/CwC0*GA`eQiz+ !q i4Is%m%(Dd[l[{"t l v0YMX,^e6!XN.Vr w@Ve2I4/ H`saYeOhI{1C([wGJEa81 @` Q\ [O&++J>j&M&~+d:J2y **LZI}w$ 9QEoi?yE^x8|[h^;(V:%"5k7,,`pXz[\\U@,9 i$ap-,/kFZbmr*R [z +jP.}e1Q!rXYa?'!O19^)bqkwLw`|hszI&a 1B,V[!1,S{OE# oxyYj_X+V!'Xpv a A]BxvmRc  F;mZ0* #( g_Y\rstC>ao~M9pJ :En D g 8nq=UZZ"2H5t' {X:~,5l >xOj(f'6kaU@@d8)70GQS|~X%6"Xc,A-3TByw_L0HFgo9*G F$3#$+*',/#;se+IWA%NH[ |Sd^G?z[(Q<;,ZA|g6;U!9:Ev{;6'5~^Zzlg<d{fx[h1}{;vu*Ve,>WBZ5`]ssqcWW~?8~ks ,m%6J![;Hp8u/mx&^a71A?'.=~%WP-XEVId^f,/JR Pds[(] `&~x-[ qRyRS;w(d6";84AfGo s~?*|@ I&,)fAr$!{q'85S w?C2D?NA'~D<ML"Z}CA"19lTX[jX a E(S~uBoZ7M@[du{p3%?bLtoz3 x#zj`%sQ/$[kv_h][<m\E+3FkEA#8h{^WWlAjK"!*({'NGp/uDZ#6hA|Qiv^mpjkO JV,;whwOWW.>SLN-^w='pW!QQhr|}7/WO#ti*1ccG$y;47)wGqOHoCs.}NM?@~YrS/)X+gi(t h_]k"td%rFTym flqLNOp~h @R I":^I!Rglsr-8ZfIS#*$[U<* %8A MHgP3.E_^F% fjjbieZE":=O""?YxXy t E0hB!+ &p|H(/jRq4'0fnNNQgikPIpt3LVhMD%|y>48ReBBbQM@5;>AJitbf3{;h%2.x1I"$uWQ!]`FbVVTtpxVA r8d#`T#JU@O: B4{|Pv +/e!S8:7KXKoWSJ1GhXOAiG'Vwx%=*dVL a31Orc$ERVb^NaBs=z&& .@h{Gz./RC_sV(Z e]4~IhX4BWty$( RAj "g`JElN."pJtLKK{{V5tK:M">!C|+h:gkD$%8(>efHs&25?v0?1DJojtj)Z7uDbUgBbgx(^^`}Il(eyye91@sGCDg+2Z?";%c|J4J}gCL3?NXX83Vub<6N< T_l#^081.WKW- @+(uXCdo31-9ssi3_IK)K/)l8Y{#1X|M9|EV''#[+k+]+/!kPH|)b42CN#  QT4N+J dH<7<Jhba4xa&eP&suy96%GlXUhZ/5sK&lf{1Nd_"L@=(=~]3Yww7f yJ (}&I^r2nBTh5XaG-HB~ }/<=bAn,BawI^\c fz!1`aV _U2$Uv)\5TM~R/ kR<9=ITPBq&$NJt}&`mf^uf8^ @$5`@HBA`-*V(\W  b?Eg=9FN^A#HWj PJ vIq/| }w8-,Cbld5lp8s|X'{W`x)HPV~~v_%9==00Q=d>ySd$b ora? LOif#Qw$ >u^$p*3xS927Wx\.R)*?f!KFI 2n3j j8R?i?m0#Z6xz\-B7hHb")Q IkJuC:Xow%v2dSH ?g95l-~bYH}>L *3Ff @(v;)G2x3{cu,=m+d[_N;&! Nz val0/.?q,QRm?m(Ou>Xiq5FCj~wC.`+2x:  'w3eVs>RQl]AD, %)LWr<]dP\6}%+U7kwzs.f)KzDd7.30`Kqkzy* Orz9=w7p]L1;|-xuc[R16FkfzU<<'&nbcEDLzk]6,`-,1o~-S'CKh53E'B [9v/Bo)?LCIzJ^a i:e. .e |#j&PN!([+qIwN=HefmZfsyv!Z+4Q*a e7=oEJP93e`=Rpe\NV@Ie:mv#;cD>* q BS/fq/m`j sC3TXEq}IG%PF.1A"ee:Y(t#]Y9x5{Hx(k4fHV:7tc w:nl*]&6%\(aN992NG vMO| sKw ?pQYBxw:/V9 XdGU.[p/{OPaG.)z %`hTwx#q8VmW}:X#X x vD}R~;R&5]l[r(p>4VT ~3KmaF7fX| {[E>/6j8qK nl^ND'=NE|Io <I5A&wI2*Dem)ow X f5w s}Fz$51/&<|Pq<  #:yKwh_cXkY}UUIZW3*~B;Sjb ?w.6 x$&,;7{Xu<2:;2LD0mObl-I+E\k/0OTEw$7o{G9]KPal{c$T)XW\pK[JXq }R9$p[l&1G%[XzfUNNO0DN;|f Ul[-1W >_A3THD7 olyy?*U%g-PeinJgRdJHF2aAqM]=vJ{%Uy$6VuN;,] )k s #~6/oaC L oQ hlN!%T[$SPsvnWZ(QoC zD<">MX`njV\xh_W79Vh8V "}R k[T4gO*{QR;y-]nU=d5yppjyIGx@Vn{xw%` ?7`NgO>U) YE)bZ!%IKgs HoD*,xC# ,&VJw i-'f>Qr|kF<k0*[9?[TO9 'YiBcVUS.P"DW<D +4'<m'yrye2&[N2~b:SJ}-"h' <&utq`OU?= [.[o ;~P7bi~\78"73399P|xl$lmm;!Lzo3g"#JT/zIZ#Mef%4!`\F2 5Aw0yd+\%?G'lp/iTR4#8;Xepd8uh3$LgL!Q8W.3nB$mu<?I-Yw(#j|mGv+*@=r}/" . D dF"[X?+}j ? ,yT/G 3VsV> kT\L!]c &]3mp4mhthY *jW#oxo kR)aoSSo|nEMx`)"iHf')ZA&K!3im6QWBgEzDGpU]?t^.YJ{46-D2mH^uC9- 1DAa/}`$S2bsF.z&@2' i,?v|=Kv|#XA 1X7+]zsl&i#]{#kP*mc6p#6G_O=>S<* 'P 5wPnWvc2V^&OH-&F^ffg2EP[ 1<JC}\\t#I#>r%Q/]+a3H]%YF*b[8?@Fa6%Z=_L6W M ZP$ljM:: V}DMtVD3#"wfUAFE9^(Q%M k}RG^?#oTvvo+kq|wh&h6xA-'Wv-JPV$+)K'+/eJ5-</7LdQB:;3k 92]a 0NTN[zJwYmz$6Nk>/c|ps~h@l/y$T?5  A(~).-5#wfC~#/ A[z5cg4 g~f2%: 9OZ8{ykg~"2h][uhR4Gf9!LZ$3^Hb3iu'=*&~L3o!\KV:$4 %Is+'>{ 7[Wf aGeus`Y$ >?an^ic"7gi$T $!.1HE'9.s-y\ {m3KHN(=&8& M|-e"0^NehWgbE)H dT+<<l&#ZoM56"[:kuEQ-HEN;v"S{#FTx`H0HRq !@i 7Yqyz'HyGCZ`RI9Y-//) o'h#Y 7=;"n>Vv%SzC?FIP%dxXH>E`} %}<lF-8`6/d>ni^).H.3Qi}3.>i!86V?foX?"(J hudC6JNj'.!Kq1X !44i[RONLlEgvN7''):e_3(DYI(<h;R_y.w~S#*h)/*;b&EeHbOT  ) *'Lzg1Ies/p(>^}dUKQ]v0|aZ?&5;$<=3~nc/C+"zIuwrklf n>a[Ee jt~ #Ox5F0Ce2)'f#vS (-g@&?!/T-h,e(_exLeJm+  y1Ox2v-/F/qaVPG3f-G e7RI9R!o Pt% <jf-"A{r 63k+G}/dcPQC1 @fhmftOE. dvK\: pB UYca#An`K`^ZNK;< OfkJrlvJ0-.1 L"=<O#}#6v-J2Xn zkubj-sg|BL@jkY_XueZD X %PbkO 9)d!b[B")Ugv_En%aDLkI V=(emXe^~dI*lj8 _2@@>m0)^ DGQ2SCLD#feu] 5_%4n8Xoy\,`;'7bnZ!/h/W5f} .$ZqOLi[3e~zj8YSgJbTjHA#UZDG>+g; 2//-pnulmU> /. VnN_>X"T!98I}bNNqc_{QB5$IkKb~ZSV5) :qi<-.}Io_]0"'7[:K~z|}]QGlH A!.7\t5 o)H`Wg]='{`R5#B;G*aQ|mOD 'MP4 fy1'EN94;eO8QC&|tY87J#t9a,K! fFfk:`\6y'? @)>w&>qu<3;R}N8ha+5[qcs3vO{i:3gxZK:+O%"$7%F0-? j\{ I(%CTL p_$>!u})d?.6MH]77Q2cDDNos3>#$5">amo8o%}pp_z]RA,:q7W*GFVaJ4RG}swb<=^  4i!YjHsH>IH bfh}QgSd(7Lkz/.\d(_46r-6)2F=KK^~ SE4~)$&Yy"IWNr_8jox1:>46_~"sS#wk?I {?,[l{a|f4ybq~UK\&1z wP&%o 3rggEs*tm .O~H xM9Rs nmeZ=(o `( H!~\!Hoc8PpED7x5!)-+<+_Kuntm("XmZN 05/X / a $$fz`f5OtVWshLW+Rx6J ql. ".Eyc9MV2X=N,'o~M$e_lanuhdznn&k8eqP.$J),,Mqf$j{5?YIQ\|aK Jj?3!%b|w`7a5.IM D *hr&#Q]t^hnu(u1:k^}eXWN!,O#lRg`\_#awlh: (XT[L^g&WI?. ps^:-31ExU$&;E;, #rt%^xot&vfR^PeI\Vb~|YtIvjj_U4yiSZWMf=kGQ9D'pO112GXG17|lc9').#x ae%{ lWA"WZq+gBvYrwOE}jpq3cq\{?p]QDBt!luc%RI #I|nR <:q% Ck~G D`aFh+(Apa+_!G ESx0tJZafknt{{`ud#Pi(6s.gs }|P-yuH&  2RMc,b~"Gp`Y{?5Vf\NE4*E2Xg'E':1G"%*?Ijgr#bQy~gsb{vf.&^PzE("~ Yxfa=at>9J7e0b3}7BRydmT4*Bldlb/kE|4=:[pB1=JQGOe*A1+IHw/MtG)q`YP?  co9kQ<cxgK3 R)7:G3c5{Lcz{a/~ bP>ZmE}k=#e#T;:m+T0O>/90mU$Va]oyMF}XKUY78  FW*$Bz/FZ #>bTUKWFl`e|*e SK?7`g W9'-`TF-%BUqAJ@;B%^/AeeVk)e|pmpiRx/| T/T9KH 4Ceg6 NsD."Q{@ZT<Fmyq]Rn:WP]aY=$%>szM .>Q n!*)Y5E;3e x8YsWREB%H5 {jG/`#.qNR]e|hA>|\/(S}5=+'8EJ@C5tTJN F % %kpQAB/O%j" % V($*Z ;l~bY/KJFKQ@L0fKF@C>@3|lekzgK "ztK"5 7J!U(M8Q5K Y" #n|Z9#&8(W5 =<sSVh~.mzwhGK&IAB4ra\Lj684@9qom|\OX42~xL"N:\ngWH&'^  Kl?$4:0m,-L]5dM~]= 7J3{0u)WOASDC|N`E<<.xUGeP*{NnB&4+t-dB#!&>)W&|&MjA$oN$qk6lfjro7Zb;Eb1pZ{~GsB. a&6'zdO$Y/,Fm[2^Du_djta3&%r,|lY;/M6_@_Nwf|S :_L"y[Tv]yigh>ZnK;AiAtTBiZ*c5 bD;d=!>3f='"?ar{lpgu`J-z$X!X zB`O@H8mD{b)zV*a.rE%9)ZmOLXYGiwP;kR5pWJjK1 pF4;R!(8rFLL+L;?v^ITQwgb.ZSbo{#4/,MXvr7~3un~ufQUA// HP`S'E-_!gBx_ oXp6G+l&_VXM@A[N+W,HU-sy9 s@s\k&\nKuQ@gTUkg.v!SucL`l]^[jLuoS=B?c{)^'b9nQ3a1$-D&vYA?O,_+g qkEc}\wLyQ{z{biO1&dE+%J)e>YnE@M@MmDJl9\FIJrd K;4WfR:0vOh! 9HqaD9KZV>3 ;)I,Z8I?.T[(.0,8k( o0UwlCN:%yQ-"->3c/AUJX8J6,UP)r_dKGpUl(Jr[I _3; Wr-rvXEBWWKJ`6q54EP(E%k#CH4O}sE~w-xqU=(i: U1^r1g`^|a4f*/hHzlA db4~; x-gh%TNADg}oub?=Q| ">H^?#>65+  [j<[);,JXK9|n|C 'V,HV/gdp3j:f3*Hf6U{SS$~>@ZUxjk_RP<N=j,4M^{$o>fXWiiU( XU7Z({\ Vnh9YU\S+wATkrvjb%jFOLVn.pOH;aHhOl2z[=uN l@Lzx$~h2{9 ?u`5wK#.RcpD|l> ibIQJ/),.)nyOYOPn5nvG@QQ22-~7{vm,q{?EXUUQ_kpI:F$!RN ^(8)ibsY4JPd{nFV; *'^y}!4Pmtz@#-8"}~_vCR6=6Plprj ]@7[%W@akw1~ 8VS1/NhK\ eC${~K]>.  $M-bo_]nC%o?5DQR.r(4>5kaS"F(325Ta}2hw RAcZ -9NxdN" o R 9g^L3;&'$$|%t*n;m](.:RnZv)z Ty>Ii" 3(:l6[3Z.L% $7wUaaK( j&U,r| ,Wxa ^D>XdT1u&X7?1-c?- (.3n-Z+T;P]T}c/F{WSRDBI=Cbu2^,>Rf_A w+8/N{l7i p9bx,cH?dtww~}X=0|$tn_4vrNJ<+MRL7c6>N$j"~0PXRV Z( %Ez^e< 11:CM!]VO@  .iLi L -4Qjzxn_OI"hjek}&^@86'Gti=Zj h\HkU4iw"zKqjpy]: Cwq?&;<F^rjL_4I:. J>lB 5X[uweT74!"FRRboz.@8m=-1(xg1A ypeYpbcW"'JK_sowh0X[NnQG`)c SA5-U*$i+mludL6Gwo\T RH#.?p`*jI1 -DJ/XNptJ,dTixhCkyf7   ` W(pN9Kr>bre\]@`iAuav]R8&C!SK_isP*tNv>h"s(i4y,\/ k  P4 |&jx_< }eH&xt_XTRgH|= 4W i9nV|z%Ss/d"]y {s jl{zc>WB}rsy *.1mlZ:|Z2`~Gv-g)Z4=?.Vy 6Yf k)tb+"Rg1J>Pa=c&amhnKD\  ._syw_C}gGs,t!nU1~zsh)R* )Xa    &<Sbkzxumnjl?mscp>U:|pcKE2:b1(rP%n T%H7G8;$3)$N*z0IjTi2]*79:86gC]ZE%s6]J|wk[k    .1 ss4ZlzgdmAmcM?4" vIZB 7)  V8[@r5iGn.<DQOi}iT?.` *eA }wU lPNVZp ~&w;MZYf]HW-J5.#Yh@$ X!M6q?K_y 1B81Q:I6$ z V, {)|Xknib\]HqN`"'+13$) $>X 'n2-~z].=is^r32b7el\mR`KA( }F-t7MZX$f|(Kd!ap=&AG]]e_=*4s7Q]  =^<_zVzxKiU/?K9'`/@uyjS&':}mH_*P@bbWjM<!0gOL~1;kNWd6 /J7O\6:TfPi_& Oo1<*7.DK?, *T|d=}kS7o-s/}`H~z5zO%vLWw(_.lU i<FJL/IG@ZY .?~P[Ng-aix|LvS5 NMk_e_vD5)PAwyK h}H{M'T,J?)\\{M%?|w 3{r0'K+:dkLz 'zQ nY>My_n3X:7D^wVyn$k<zHkf`v`4h'tKKbp=N?kxs@L=;y IIV|c}u;P7f/a3suA'gC(F*ovThGwET4 a# pD #%cRSd4VN_| 4,W2v[kvmEW<xX.\0al( Q? 8L%|bNHNOd<YO*j[ n!Ql5 4'<nVth`Gf|A}Wxpgxs 9ALv?LQQq/SyuY'q![89^3>Lus[P&NaNdj0;{</!" S*09pUr^#O=:ovk1W-E3%ks*;`?:?393'GR;dt Qk\OH9xSg=<'}"Ov,+Xoo;~F12}"5x*5S k&O<)~bD5- \Bv$a4R6Tf*mb]"A8) nO.6 -^e[FUMxQ%Xu!nq[9 nL+\+,4>QU`?+I_I r+?|;"B#Q2`E5a:xFK@hx+}g<  x[0G ZMIRa^=Ktg)gSSmP]Tc+D=(<8@LYSQ;:|tdMtF\"}B_oQDNs_HC&!fC ._AcG(O5k#ZjL27|E6F%8-(D^hHKplk\Lg} 4T?-(af?,DHW=WR)<dbUOEyr^Ls'2v? 9[+9(tR>00&F<r.@:3z\H4>`<+BXd=q\WTX}_70kq"m ,8vF-b6<w^=ahQCL5obW!]KX%g*i%KA&68x|+<+_ P_Ug}gbh~Y5b1u#'Hg  [Av^XW`AMoX)_ycK%xAG:P@'VgvsE7if4H)<C R(U2M.`YI$-z '-$?fyDw-,vlC(2m Z8=E9-H`Og;w)na-38+`8Ad{$g@Ql; P#mK+pa*F`QUQNGUk~qJ1''Ju L2qEMXA{tmXU*|:=+bb/Xy 9mX|)mxdH5ul]Y0 (*Uv!ACBU*5CM ?q:q7a q,:N]R21`I??bd~>d !iBS"lK|?v&qsnqqeipopsc?zfErf|:}o+J 5t8)+6641OeP_& 'LF,;5}$}BF?q6,EfbQC$dGN,mIjupdfuy#$+XFLbB0Jh)&6no A]YazYe&-](G`.B$JMmtVb0 >kV =#%Fg[k~lQ0 7W*zf{UbFK&1zcle{j'von 2b{*/!4dUt@^|%m~WkM*p_e_!Ei#uA*<PmX|z^G8U,O'jM.M|ifuDft$Z?J6 qf  X*VrOWaebY@\gUM('447@lUPieSg&;S {]=)t [ SE@Rx;AK*Od.7<S~1Tk%f,-:CFE8 l;"T1v&xG;BvE=wo1f' XaWVW0T%N ;%/[^Jk#m%BiDoXa?g +/UMlGB5JVp\| U:|Y5$.`Etp<"V-lP DTkR8t4ZU+"#Y)0OoH5}l[pK4Z EC5Ba&+6Q gIQEiRr(f$oYizHN6uz@1?Cf|/eX p:Ctl D`WL-.f6%K6_Slv$!}]\ S_Ad5]:]!0(3>?']+Eu`JX" ;\1N Tc5(2/3:Y^\d/PEP*H5-#.&V.tJdms+inc[m}F@2-'%:$ >t#!KqMW9gPWn"j) *gH%K9KZ+7^S!Y 2 \ .KC>02Nhoeh-r` R}3hn\o%`QB+5Qk# f%F(qR:5WwL 7 $|4YS*$UEuM+zI-gNv|>{ gjuOo(mmV[J?+?a.a ,S,~c2;8uj=\:*D5# ,Hnm;W|&) _]-/x?h{d>HzymJ`*x \)<c4c=55?w#Jq)EN]uX _z*{;<])f?GC</ OxJ<c.^Z3%v1OQA' E}j@z(u2J+^pHz-V5*XAl*P\}0<nz.B9^/bH:R @+Z] Rr/6 |qU&Y9xkXF?iH72 w6nVu6tMh>Os&iP9]{[$;G b `@ Gtf.2m. ~akQ$FoO)6e%|7^\:nS]!nP3N;2m7IT1_iR,GH?A*#  3\c+P\-^cK4&a[3 !Ru~b@B3sM-_0$5k2B|u HxK Dw~naKH<^-O1 &Epu\B 8]p2_1gyH, &Jfrtc:!Fb{v:[QB3 iEz$bK0 !Gr~}U2 W{c8l|[2!Qm`XQBBP(> 8lcL7-qUHSnKbR=% $3&6J_&|E[E"+ qoJI#> >0+Ius.CLt_ #X|[0Yu.aLFQ606758QR0%ATP(51wdeOAA@* <Pa~ 0A@1[)}rCQGMQTctp!`6@A!FNfF%F}b\@0V i&C>::?=:a@a0|Y9%n.KRf^_}aL*5Z  JmkS]63wIx"wrjtJfl=pd4 MktUUQ,rW:448.%",3oug;9= %',=WriBp| -Uy  6fvitOI9!Q"y uh_ j|Ceo6~lVv17Ysvd_LO) gA22C*:! %[F~ noL?5Sw%Z6LT=k)|"0\ (" -[}gxOO%)~Oacyy 8NznC)3a~yi?Kx%W2%!&O7ohN>(<z'$Rwtae#ePZyKOm3 "&:ESeTSEH$(yJy3]I[SeLi;e/hkwg66_z]5<Y=wgM*h!;<(9##)3Lx?|sI++t?kx8fp_jDEMI@ C]vza{TkGQ:% ^ %>Vnq]Tr_\y@%nt2Bf^A1 <i Vg4 *:^B>B/=#/OC ecG0:!@Ug}fWVjYe8zx}R cc hock_E_5c6h8I100M8IawjdalWIOP`zE 8olJ)!("+J5o85w~Q)3,z'U8HMR-\wy.4xxI24hmU:,28@[DkJTt8;(LzXj2D_z~_cJVIQS>QGL]5k{|vgs;[PaxO7rYP4&*/D__jgQ -i5^S5SA,#x5oPr=xF)zdT=.MwTWKTA\PZf> DUDXL5X$6p*> XkypWSaZ7]Z^n`f]\r^O_ [Xp_/nAroWFBJb([g4A~*nJ=O>%!#k &dV416_0:'-2@BPUFn(.<DHFNK:;9`)QhwcJGLeN;U`rN pqzrgg=fcb\p'"\wgs Etx&Oo==YS=31#= @mI)t2N-1+,/%>V~ '+I&-95d-HBWe{uP526v65;O_jZx{Kp;[>F7;JSKOVv(Utp{ D'cs8 /ec4vhfbLn&Wn({_?'$# (Ad=zC"}K"Oyxa`ji`bhu\"`;s#S%*H{O9O`Ctf{&l qbR/5[roRz;'F!"'xC'jt#~^P<+&#Oy P3;i@g}ylnswo:nu|}QYq7O"&#7RTYQ(]%KmLnc_TEBiwpjZh e^}_qr.O/ .9Kd|Q(r<`1Vgpr;{gal5qX`8?##H_if0_rKzL}oS3?z75- (Im|}ztMukc^?gxCtL, &PoM}J?h/[~oJaG@JOH,yT<BkVRn8w,V]}gT0EkAFJ%@E[lnwI<|D]1$V1X&m(%d0*8WyOyfQa(Z?rmnnbp[O:9c)tYCK{EILE 3@ZfuyqX,TsoEyg0@k:c0s@:GMXtUp{Mas=Z,a Ep7c+?7*""&+#B"Q?[*gOz6cK%+-yVPe =fCM  (!%))|@zAsKh>#sB+Tb 7l'Z@n 0a'MW5RD6@&8&H^[0p'ZE9Z*!'"z!T580'3'v+4*?}PdpkX? Kj1}U'gB9YN f#dFh.^K&00N%W XM+f!d5i1   #*<X]jhXJ>FxMWc[upHP|bh!H.^|E2'oL:p1r'K&wOu.{=+;E%RQ G!k*w?^9,)!,9AJR:\b]QCNH\s ~ayADh\W_SLH8{c`my~sBCbz+H@Zax h+>6#Rq9jU,@=&N k{2u|wv#wNk)n an]Lb9033.9B5lOHWph=_`$ 5X=FTo]hyU &$U[-y\+IV={% 0g:RxAgwqsogtM 6%X  y8&1&H 5]_'"dmF$)?Sh%0DS\|jnqC&yF Jsf+Z_J?91)#1N<[iOt{k]2N5p w5$P$ B|}g;=tO 7.2L-`| 02[Y{uW vrs1K`g}f]TGDb9|>FIDPj5d~='[.q4+u]MRC2)? N) Dv}_A(_eQE0.G &0OMq wJx}fbxx/b/|}suoOHMDO\LiNmTxVLJ] :c6IW6SHTNJO7B911;$ ]XsG)2WnbcR0(`p` L:2Z +/aUKv~ fQ~[0u^trzm g+_@]O^WbedsVzHGg*d:L\d(o1c6K*$!alU:D\rURS 7/ VaF5=5{-*2EZ^|2nsud.ld%6?|IyZmjefQ"7N`qww%^./5+f8qx\g}kgfM,$IqU"CQB8)&05nK_jm8r{rlqxZijzy@+;G[~}s~>.l<Q^pt{e B(*Bw_nz|y`3>FhhA_nh`I >BK{[o}$`z\7ztxG7FM^ozmx!@4gP[geeGX YI ~rdTDB^)xzIfucZJ#:X:>GV)gO~rwu_8^t })?Pdy%4LIqp{~oeB :+yA ?pTTs,AezfWEP<9;??A`O|TTHGY`r;i{2u~$2Nq >j&CdwWu%wtB 0Xx\8'IrWaL@5F4jFSP@2e58K`o|v~4odk (Jj&F"E]nM 4{ \31E]qX8;ke[9)"Jf"~)p(S 5 -CWkh0rqkk|>h!Fl9tQ0gvN_s; ?kd)<aamE"NkylQ+*FM^lpsutnr~  9 Ys&=G>%Ac.^I#dxFBf20Kv 1k^:atH5JVM? " }-JN iw|}zkdn$!2C2h1<Ol{uW5'Ipk+?XbRc gwy+JJmIlz' Csm@  `)(IWVZpc`uQThJ#k*,8Ts|]6 .Hp|]&,1M3>Swo8Z.V%Oe"Ltk= sW+)I\^qdeoilwR(>HEGWt&[4)C Uu|`Ge.tT1{y@~3Tu 4Wu07Kio{Ci<%APjUPV>c?xOo ?s8LOEEWo*|I]Y3ho}|maSBb! ;4\xi9!7X~  )Mz@$*@uWIxuiR+r3TJ=W3\)_,h8sWz8q,=D:7Of8s\ixVA#w\J>5[$1Gc9zE#$0Gb##AYvY().o/MD.R dmj_L7&b8GM<_5f=nQq1[BB7+ # )8;]IJ?+ ~zjeO=0'l&+3NLqqT=2,3EZkEke: i -(9A>?9& $y4eDNXAh7p4yCd $O'&',8+M$b$+1+s`TQ>*g)6>Lcd}8nUACYt Bok2^!q2VBNFCR9f*v:`?#*2Z:~>4-(wbZD3+fI@a|`+y]MQbz O}c2uP(a;QCGY=y46?JYt S-899_ALM?)pJ3#nH7TpW&)"k\\mMn>a04:dg:maP%}sdht~|"8]lK5(' /<E!U'u/4;*=m987(4`( !upnk_nTAQ[i{%SkvO'ZM'~s\RJFLQG-7ci0 qSD8gULGR\f`n {)BxeeK0  &!+35HBgCDQ\UQC8.1o$ >:t-Y NK@6*x!M'Bj<nlE nY6 zrmqviP=)g!3CdJ1tkO2+u&}.5LU e(qAvXkocQ; "/=-J;UTVYhyMseT.Ky<&;ZP=teW?'q F'Mx0iyP1 =Rk#}nhm{fE=r 06_ Xt5cRA#scn1EYf7oQfi^O: + BR'X@^qp5yp:qhS2If]N%zcF' xP!&HkGutOb84` tunq| p4Ra2"y<viKX!I3.GT4\QVnND:%+@H P%eSop&]}NF3GgaN#Y3zH&R@f2m14L `tun&YX? x;UL<, $BR#VZQL8"=Wfs'\\s`^UE-HSEzEwW79o,ht;z2<@GWx~{p)OU/bxTb>,2,|;[ot qMmdL+ 5Nct"R=wMnm[=%Wv^L=)/] =yo#^--Ljwtpqqk:UaD:0XqK0I yy'IjEwpU- 2?Ne.|o(eqY<}P%r_J8-(*2@:d92fFu= :UcieUK H(ADEeD7~|EdE)w'  w5uUt"{WcD$-=Sh_kmqhv=rvhXI&c|4qaOIJT^fg=d]]I'1~m" [ $$:HWYSK-@M0f0v63sz?` C+F &=Z| Gc< !9RaMYXgAy:mfKB4Qw%sjfit .L{sh@\u+W  %9'Q`kozxY`C.. M<] cKBvs4 FR@7=FLj!Pu~XIA2b,+ARuU>{1}P0 ":S_c ddl{rZ?_%3 L .Qw|]9?r&eB{"+5 B6NbKA3urqokp>z 0Vjrh; ay9aF-0H^gghhnz}jPv4Qj";4Rxd@)#Np D D+z+4?M$WO`raV{>p'pybGB]~vA1eRoWA14EX`_]UNKPK=#p;e6.[}b= )Ol(_ Iv-@Sbn}7A@u>bFR]>t |}X 0yZD~vt}~lU?5(oD*NpL+fA! 7Pp.`Dd|/<C HLPP/QUG})$+*m9 +wP=l v\<~cA6WyhH-~eN4&9Pk}*Bd;Udsy)8JZdn y5{dbC'S r0JR+}c9 l?8Y|W2]=%  >[r4X 0Lbn nv.>Qm@iiQC/:GB>&r>xP/5^yLsIRv5jH-}cH07JZkt;vfv0Rp/Rt1Szl_U?9#GH@(uJ h2FO(kgF#cUH0 ~St.^SJ6  0Lo1Nl< e!>[q)wQpjhj-bDSQCP0<f1|)WG;b"|j?~~%wOVvC3!}}[dAR7C/0&"1If #`_^xYOo;I&g7 5`TIk5~X$~umnnlgejrtk[-HQ5y(&!qlQ[;H54.&%&&!#5Qn'BUURYh~K! 3B;r98>PJhjuynvWQ4/ !w!N%*),6M~cXr9|=yoibiqwy|vj8^PTfIDGA/{`oOSCI2@>E KH>:@Rfz -Gj#k+B7x::A+PXbzr~|yfWE8k"J%$!(2<JV_,viw&j^RKAv6v<IWaki1cS^nPCFMI< {bwR_CZ1VV\daULM[gnx}th[V-]Sus V.9J)]Rpq{a>o$P0"(3C]P<^fkgayh;vg1~cC-"qhp(8&=O<j>}9=GOROA&t`N{^r.6:6 )tS3d"jE+m?rgi;d*BU`adumGo [JEG?) wi[Io7k#u G! YB- eR */$ W%e{+P*~[?!x_D/& 3%XFcs.Vkns|om^RM;<95* s`TvDt*{ OR[ MY& ,*U#xqAU=mM1w!Y9'?\Ftw0[wxxYp4bI7*p[QE5SK }F2Oi%6<3" Qu``7O=_H?v:W0;%%#'9*NWi1Ytxkcc8SA-|lZR~K|:!#]#]LQQ$6L$S'C*mD vW<q#P&wiheAg"h hfj.v[(PwzdLQ.=*rrjR/ +\Bq@3Cis-HaiW9!uO$rR='rAkO>7:Ip/XwbbL?3vmhV8"L}B`{M#TMl9\txfO>, jM/ ^E6w#Q !s\D87Gk,Z|gRn;K&" {oyhx\{8}Ft/\;n42Vtv8Vlvwm`M+k D}[= x\4 oWIDJ_{"Lop[Gy2W<"xhwam]`]BgJ|1[Ax;BWq(EZeha`[zHc-CtT8"}`A! "~(]$I?:@Ts)Rxyrok\A%kN2qR@oA_EXLF^(}$f 0Oq%^&8[Mc|:RaihddtcXP61 jL/~ a @ (!4GUekd[VLFM/OTi 9|gmd^^_WC)Y,jOzEcAM=7A"Ty@>c={=+v6EUgKto~izRu9o[6|U1tcD'  >Xdmtqp`XES%MI\oTAEo??GLG3t@yqXA,I-{5np&RVUVlU}MV3]cQTgn=J"{<*zpbH.4#KxiZJ@M1mK~+!Hb}P,yR]eE2%v x3{InYp~g*dYlH{://`W}sz~\NBlS,|W0xgLU+G{5&so^ujRL@4Su 1 lC{Z0+rP]Y"NR%fX(XHO}^4a_`z9mWd>aaiK!8zjsaI[S?*-rte{v -NmxW<dB$  MW|Eh )3LLU>mw:+L`g[[y<ka\uU} yfM-h"#jAzjZF3 `n^mo 1W| zU6uU]:z".QQ .<L;= _}5\W*:GB<|6PS`7dK)RP?*_K~A{qf^L4  ] K)Gc v}{fB }njwV8&#%>g/$"?%<!/"C'g3uIqpQ(>'.S&+B"8E@,\GQv~zjO8v,)(.&6- ,@Vhi`Q># vrhe%U1?>,]"*l,%2(*0!J X/VJ<l-1C ohHt`ZE9P97>S3G4 $-259AQTJ>.\d~pr)i6VMFk90)!>  1B;"7_ (;`~T(bFQ3"1;7[28%s+CS*' %4+2-#"l~BF~^vhmcVG 3a**+<3<`/(#IoULw[nqVI7DF@7'eRt[99#K3   =K\fyvoaR;e",0&)2Ty9K`iuyulZ!:Sp!W-GH@??&;@/[!fm!} x?  -1H_q}n]IK/ #/0'A_|+=FUgeXxRO: ! gzxsPg6TDBM35//3J6N& {c&h/W4.' )AZ{o`Hg+ ' 8P i,"2:mHJ[Er2- 71wsyjRa)S-BH2>(*"/ X%S  %$i!3 %N]|wcQ;Y  75P:p z)Y<?O)j &:7{qe_Z3YS3FE>@5+4G6j=G@A7.%'&M$'o-12V$d pjT,HDYcpS4~vY59V}*|_?A1('*';#K1Y^fmzG0V*{kYEf4#+8F9Xy]O4 c3BQ!n~ ?)*B*J'NMW[lI+{mE 5R{ RLw/_DE/$&.@U<gqqo|@0e6q^KY7" 2<HT^^ad\F! iA?Pc~{l1##>)QCV\V]e>y$ ~|u\s+{0X*g a1jR+;-&)/@W4mnspy:3Z"p\>Ecz1EYm|njeN3 |3LH#j vfb,/!&<=WVfQd4p} bwBk>mq*WE o_ 6~3c>J9)+2@I'Ue`qO*gRq0 \Io7Od+qrqo^G(-vLKN+bos~$A'9D+^7l7l%wtQe=]#_br :p6er]'/p Q9(% $+/>>IaBv#|dIY/wku3K aKomkkfX=,@lQEk(@ iZ2,? D1D2Qag]ThH7?AMf&8\6' AodnSGD?@0B]MyUd](hsvtiPZ10dR\q{.,K2d=sqppw{s^?#LiaKr1N|/^=FH3GHIJFB_8**9Z~ ?I IK:}(#@p}T ~fVN@?Z>XHTNYR3W^]UI8\/i`+I44NDfty|ya;;OukYC'Um/\;@;58"0)#))*G# 3Wy+\hm#]P;-Gke 9 gVM<>3_-h+|05L>JMD6y+L.wv( 2)8HcjnI4z]c~N-)L_na"/& S1## %5Z%Y{GcWVT B0%! rfO9:W*v$%(c(/21"j>$pn 0V |*RxsmF(Qb@(A$",,)n^W'3+1Ab<l4k~^LP= r[JE0ey4nx#}&Dh|uypmhI& dlF$@ x8r<? f[$-Ca~'m 2ll0#A!H*(}| b%FZ.MfQ?:)w,f <\d9CfO8#dn<En!OeBJQ#46M)d=}>=k $Wh$%"$${ 28>\\;|p/H  @ &3wD`_byr`C@ylp\{H5!Se26e %iTRW1=DZ,uZZTs-Fjz%v %UI2~|nc(J --/e6HW[^tlV=&#y7semW@-ig:/U_]w^E8F;`N^bWzYZ]t/N^tf  oj.t8CC Xn{+` !5C9HnQgz[;(1v1p8rOaE)Y}QQ&S;.^Oi=k8 iyRk4ziZl|o,H !.:JZi!u`xE@~Rt-rhFQ. 0i?%S}2mG$[Qy>nm2 3\p-|k_oi?}  0< J[ jv:NcvuC}z rma?Q.ep G!2LmqmbEttt!uQ"Jwm1 u4Uc0^KK\K6-Ibw FgT6 |rmfHWt1RnJ!&AN]a\>0' ?wup&Kxt! oY CU$][\OM/Nj 2OA" :po]6,gfE $= SSONM=--[xp>dj cI6<ZgU-~O%$AWm !.6/ 1y~\0%^zkP5#UW?,4CE=##AcIuq K##[5  7=(wwyqI! <[z#=G;=S|~jDHqdOB0 @UQHC8$:\zzwy}+Zue\i~{^>" (6LNm9J 1!4"p\2 'Fk )?BPl|s]@'>OdlS@& (2671-EZvg ^.mMm}ldhy~xR?GZbYK8&bdh I 09AKZq;^q|xgQ;'MQOm\D%12+ Me{\?MXQmM?F\~  ~YLLOqF@2rdcyzh[H+ "4CP]rqpkef~~<ep`N'#;<tIBi( "&Rr !sPWkR{Z\fw  p[PyK?> $pZGAXy{h W='!<Q_iutiau\kqmttnq@wm~wl^P-")}-K=Ynw-CV6Vm=# 5_wV}CFj HzGetAgIUnJFY}dN7>H6Viu{l{N{8u9fF[aV~Z^^dl;oyhbZN/ X',Lr6F;StXQ66[swueoIwHfrGFth]MMHKcOdx6OP4bmrsnmdEX2O1KLDr?;>CKR@VvZXL.tM#$Bg=`?rsiV?0 3HiUbWc]kiv{nuH!{}hlV\SUZbm &8iG,<V@EC-fE+-So3bGhgL3 '22.,5xAvUi|,1mPt0D{mep~gj"wE`krGt$j_YRcDS6\)fhl  ( [%~))cF.!UCp:9'(.0*-=Qaoz"cD)I  {x%hH__Uj=onh\QHi:_,c"pu&T r}aF;6' <c&C^!.7<6/9O`eiqv|rP-kK=<:#0oLC^hnv|weVlK`?W,\s1Nbe_hy`N?MPMILR^o|{wrp:wB8#wS-\HGLO? $8dG.VekhaWI?m6[*QKc ,Snxx|XEGMUY4]\ZmXlauw(=JNPLNKGK`pq!g&`&c(h.o3o/q,jT4uaRH32=pF@Tjupg|]rQ`AQ3H*Pak em%Aoi]\cegsL.<AB}GLKEAAO_ig aA[KS<M'DAA@ -lR;&28AaP-alh^qZ^RSAK.@%:=K \q%v5hHYkLLR[c5wUn +4;~<mAaDcD{BEHQbmnj c)U;C3/!$ "%  u U6'026^@*KSRLyJ\FF95%.5BMXdu}%p>gP`][rZ]fj.qM_jpx f,`3_3\5Q9@>5?1<8>IGmILWipmkbL'.:503@DIOWP>1)"  7u@;C DEB@NBEA84_1I$B9.#)7DRe{tbR5KdOSYap}Hpw-qFkLtGxArD\GBH0G'J(N,O2J:G@HANFPVQsS^egaS<;e~uX ;;S^`>`c[QbL5QUQIz@Q95*-#!&Af}nbZ@^tinr5HQ^t*Gx[_jFg3]-S,O*N'N+P'PL@4",7+F$T[d o'& 2TvjE*D `hf\ficXbP>RTK<3a3E*<2" 4Uqf^XZAd|owz 7A=<<G5YIbXRf8mhYQQOLGF@7*)=@?BL a?`z   g,9@ Teitd1[TMtKBLHB8,"pJ2#A|zpfbaJhumu9HKA/%8#L+[3a,bca]WTNG?80)  4@ABPiW  -r=LOYaf}b:]]_`^UY'NC:/"~^D& @supp2tVy{# ,8=@CJNKFC?6& !+Is^ $+6BZO"\fbYcT-X_`YRkN>=$ |bA  #;}iride*jCrRi&027=@ADE A:.  $J5Qr*05;ENsYG]a^YUuTQU9U)NE=1t8 wV6")D`}sjho{(Jbu$/7>=81+#2c6Rl%18?IPuYZ`-eb]XVTPhHJ8#*t:ubYNG@DPk~2BL\s $-8@A=5) /^<Vgt%2<@C}HnMeT`^WhIk+h a\\XM:q%; d5 vjfekx0HT]eq{ !$)6AGJD5Ca~Ah+7CM{TrZobfoQ{?4${yqdP9L# sJ# !"&3AUiu+58>EIH@40Mh 5FU Y-Z=[KbXicfldtjtreR;{o]D)M~]? !0Id4~HSRMKG>/  <]~ #0>CE'I2S;`FnP{^pu|dpQ\1<pA]6 !"=.TAmXee_WK7!*6I d!z5CIOWdnssx ~/Rn~}gsOO4"m;oK!~rjhp 9&Z9xLVYUP@' qf`fy#08BO^$l?xV~ejmp{p~rsx~-VwqQ2_>$|H~uszh7 {cVU[cs!%.C?lR]^TH9!xk]PTh +@Y9lWptg^ZZ]hw{ y7{`|simoeG&b=q{`JURTbyuS./@QWfORBK8T5l4-)($3 c.9@;-tbSB57Jd{ 6K.X[eorhTIJYk|!{@u`fUPOF,wU/pXDc8C37If[05OfwhTzInJhYds]PF9- <e zeS>$ .Qz,=LX]ggf`YX`r wj*X@E`3z-* nK's\E4e)F'"2Nnc>G d}e[VRP_tseU@, ; Y|cM73V1f 5FFGXgr}o3Z>EE3Z(v cAz.dQ>0(x*\18Dg[,:M i{qttm~tkW@&,C^wV='8g Bu/?K]zz d-QQDi;u7/%joAS<+$$.tv>];oH)iO6 7}[O%2[_0unip~4]lI' g@~yt3kYkv~:vgyDwVqQ-oO5U2@iT* ;kg+  #SrT- b<xurj[ N0TWbkrvr+kSjvs~%XBg`=gC& a:<l[B# 6aF<]}_5R'}pjimg c3b_gflv+{Upxlt2Qz>jhAnF&`< 9hgP0 1_~I!Eg^0g7 oaZVVS W1Y\WVYc k,gN_gj&H}+VhAb/w? ~hDPz1-UzqK4#NywE b7 n`_gk`W;PaHHO]g9hXeipv'QNpGc0^*"uST&DjgS=%FsYf2w``hf\N'6W}*CP0MHMZ^cpir,IwHqWY%Z- 5Wj/ Bft]UO; $ 0 :I`f'e0z`^^TKB1)Z |0:$@7SAmGP_t$DjJsuMPsI%8xl;0QpmaUG;2,(#")19<Ja~[ \(~rkcYQVh]6 LjEIyz@ :Wt|tj^SLHFDDMWXTXew{Q_+naY1FR!z!6+>C?XCrKU]cm)zS} %7IoZFgyG^72]|C>[s|rrrj^QEADA>CJKF?;?HgM=^tV%t`U;EY&~&-9.V4wBNTYg{Gz&m:BLcxFtJ#?lU!3Qiz}zrjeglg^VVWK:-()u/CE jqG y6fUKq* $3$551Q2~?LVav8U}m=$ GnO zW0 $Ju`3 3JWi{~~ynbZSE1 y!L:Zx^9 !oBS]8y"%9 ^%4B Z)sC\zqJNvpG( e@>fnC.ATboygTEC>,d8B b|xZC)#:QabBt0" !7b ":Pc&rB|azyW. Inz]G2!$y5SF&\xU 8Tj~iPB8$ pP.)Lh{eWFCL`ruN-!3S 9IY2iBpVtq}nS57btdQ?8;JWSe#y{?#@^vqWB3!nR,8 Qgzwe[]gsgyFw"rsw#:Qm(<M]g4iNre|sv|{pZC(IoyspvsHb: #=^z{kTD:+ uU2+?N^yyrsvx~`}@y u x{7Ph #6AF0FJL\Vf]k[sXI7,Pk~tCW* !Ba{~mUB/!jL2!!;K_|zlaamaOb6a#gkq})8J[z+6<A;LTWib{efZH-2Yr{JvA<XtygYRJ@2% {_H;)52+Eio_VuQVR1U^fpy!+7Km )09E6PU]qcg^L5%A_ |~vkoElskA0Nhp~_RNGA<>9*x fX0Q7J7??/Wu~i\WwZS\3c n}!+3D^|)3;AL,RMZj^d`VB4//:+W"x~pfcc4jw`04TzqcQMPI@ANRA("q(h3`;W8J3:;&So|~f~UJKfKHP5Y*iz#'2K m"/:@F>HeOPQLG>86/7A4X,tqiqeKjpl4-KpcVwCBDAALZ[J;7u9m4l2i9a?V-o/L5/=EYl% P|->LT3^cfpqpouyz1wFqOcZQhCz3seVT&OQ_mC yd5\T\eXpWxZ_cfigZF;8=y9m7f1d.]'H**7Ogtzz|wy]zBr-^'B%-*0DUew5d!/<G8[flyz|y} *@Mx]mlbR:pkW:KJV]Ml{<|Qs_lki|qtpj`XJ912) v&b6HJ0\rnSw:b-G$/"(2?Uw!Bi +%EOXpfp{#;Qf{mT6q}TNC>DEhP.^t*~;rHlZpky~xgTE6)'t5ZC@U"hnjggqgPV3C$/ 1Pr'Eg 26TLs_n{ ">Ugza=elJ<<-&"w+>: Rk$5qKp_|o|pS?5.# "3=fM?cnk`XtTPI1;;>. 20UJ{i /7LR_oq !0=\X0xf`HA2 zQ15Kn)ATjoR@<?3 )@Cx8*  -30+3ARj3` 2W-}CU`k}*7AF)IB5RawCklIB6#(zbT8JV8v&1SmvV<0)'0: 84 ! &&w.D9<5*d / ~-v4x;JU`u)\5]-APcv+ESbe&_<CQ g~p8fNH2 w^ BH)p9_}sZC4)5GXbkc!U)71.,2~5+[$y"`/W?UVrkv~+sBSQ*ee0z{^?H;-vR/5]#.]s[H>+5G*cr ~"4yKg[D]TLEyAE=51*Xb H@!A6QDiEHZkw0xg~TB e;y^3OY^0kx}g1oyY9G;-wfhnfB?%w$cfO@ 8H-d!|*AQta^h;dXLAk762,#I c@# &5.J8iBQUWWS\]_%ldDhBr 7T^f9t g0yku_4WI/lXZcxe=&!^#kt`PJJuLPLMRbn|vS+weRCF622-XpL 0'!')4+D2^7|ENXZEWRR'dr)Zy6Y+K\bd>o {[%yilZ.SL<'fQPS]k|U3L js9bc`^`amuvq{q_u7r fVFf6-% BoK, 0%838Q0p115=GGPW?`sEn:c$r=TF4KRW[K\YRKe?.3&hP KLUc{|T-F m<h~~tvZm5`O?1_'(OhH 8,,%6+Q#q!R,l V~'\!8b@;HQTIR:;@@j49. -/.)c$O@DRr`>=z`4bwgeBUE4!p 4^4 rH."#+%F!a$# 5/Knh0dEz-m=CD C6#b)#17X8(9:85p3Q$? DSn~c/Hl1F%\}xaRE$-SzN" %M!,'?&\01/0&7tNt\ +)eMzX' y<g,5464*sP 64>[|u^QF1"$v$'$L{yrSM4&\qI H!  3M-v6:;JZcH9XUsg: ?n: $!uU@<@\{AgT N[V[V?Et/{yUS++Xj@U&0%#$!/7@OWueowJ;%7PJ`q~uIQ}F lXRQ`w;xD|,fgE"e5a2c!o?j F,#""55MNeu|;$r.B;yDM\hopvzwNUyFsaVMSb X"m jQGdBoBe&v@xZ?3/.O>hXCg Cx#'-1<{GOUbwQi< ye*Y6R@[GjPTS@)W$lhC7u`5i:Sh4v_H8=W:I^M g Cxe5*7MbCyZ/3qKf``tg~smYRB*(qe82q_9_/FU&v+aAO^KKXe}B X6sg6(7HR mi> ,IcroVV=[] .U|Q*`-Lj<)Hc~zJ IKpgj~wN!x=7TtrH Hg}MpE:}T 1aT)xOvB }qB .MnI}<|3tjgWHCDUie<b'"NwnF2Z{%O|}P.q_*.[wa8tO"uGxI7Qs*)#8i!gdN BA:m80' %n3JO$ma&C{}\<%Io"?btH#_`+=Xmcv?w!iS3 i< W/?e.:B=2)8S{ZqT<.$D dpo cL+6UqU:ttW? *:` &8NlwV*Ot< 2GQ^P1E 2f6}VA3l-: <7%,3@ Odd=Eq, /?E:' 7W}j25p~bVMVxW`^RRg~|Z4:lu8;ce`6< ! p*>gnI "1:6.K`I=knO.#W/Xf? Lu K;7_EXUDCM]cWhjE <cq8Y&T2Bmv< $3784,9MGFfeJ'6p g;RlT(3)F8J?@H-P[]W.F\8p&\Qnb7#T|oS><Iau$pblZ2:sHv|Y:8MPSov>_=! #?t]Jp!\j"y<G`@H<7B1S%\0[oM{<[ ;QxW) <kXL^0}"1F^!b~b1-i9d^#7/0+G_h)u~|Z>0**/~Eud^@( 9P\f\S^Cb9o>~h~~obSF2Kj|~]$iH,+Kx ~*Ir$fT/`"!*W{}Z-(vI=^ bj|pWGCBPc~s`O3%:Pbntt]E@Zl\w<`8CQ%`\]}vDc9-MQG[}:r$de;0FPT= 'W|s M  V8?GTeyraPDCJ[nueQ@3Ofv~fYf|]BiM@djdwa)c+ +2*9Yz&cvYS?NhPjR?*0` zR @KGDOduw{dy__adrmc: 6E"ZvjogAz6_C:NOTvX}O "D\hKvxjYDKQhxQucP;9*f\,f8,98BS|]iYYUPZObYdgaxb]S8= Yu~pI5:lDFCHa}xy7iss;7FR9`q^TDBCXqs[jaTBC7k.! i6Z!#4ACn;e7b>aHiMxQUWP5Aa0<C@(|f_]\3Vc~MrcvT!%8*?j:-(A;e"fqcAce[QH:% uIm8 kYPQ&Y+m0956-8 h%:JYI-tvin:ekz5ef~N! *hK0`{ hud@ZmPIG5%Y& a / qbUR] yL x+CTV@  |{c{,xck|uFw=~J7fq+ssxi]P>WoNQC1$ j6N !dUKRd "5\-HeplK"(,+$$( PMg3yvL"KV~(que[?^ia[M?.rEj>j\[j $8'\1>Zps b#F9$GHEC< %~D?b1pnQU>^gmbpcPB?OcX}OFD4kE*0! V#4 macx 0'V/{6<[xq4YQ<g!rrl _F$n5z:e3pl#T!SIbj reys_ T8^VagTwKH=~)kV > )'}S3 &P/|=@Hk.I]isQ>+!l,K&#Wk/\)z^Zo(U!hB[`)cdop_ T0\E^NXVX\U]CP1='6B9,-+_2  5^/=L[yCayzcVH5()i=E4Gu=U)}~kVObjcc~El2 w;GA<HqdmWC&Q<ZE\FR@P7J+= 0%8KPE6z,Q /Fs6LXg9z\y~kTADNqVG>Y$Jc1~ xylWILQS`yDz7{#-3CB}WXKHTXU"O MF <1+5ENC*f: =,pIV\hG}of`ijga:F/vHzC\.z vtdM4.3@Oc;uB%0R7GUWSRQVWP KFA;LbkV5Y*+2#zy98rNZ_/d_vv|ovaJ^S3\ -Th9zni`E)-8<MJ{_'\0PUKGR\] WROHFYlnZtBH6+~tu ;~9LQKT|dz~}v{X}*f@,2d7.. Vj9xkg[E0)*(.DEge2d.8;GV]\][SRYadepbQS-2 {jdj~M#>L2Su]ejozb2l]\_V$H;3z"Ks;nbc]L<3*)6NLg-w;m'3>PbpqljlictlbM2_'yhXR]w!^->2OtXY\kv}l4yd\T[PC5h8qs An/=FMRZhnd}YkPZQD^+X9}kXLRj=v+Qd7hw`Zho4~mB]RG?[+(whZO?oK`x9tBq(@@=HW[aRDF(B<*sg`^ezo{y._)IlCyS`qP1uBgl7RE?>@#F5P@_AtFXsF}Kr -48w:U851)# wg\UySwZ`ityu>*h:F[Qc)p,g:n 0|l^S;IFHS$e=uKP\ft*XBh 34,l0DFL;{bJ6)%~+h9rK}_|tz,R.|MT[vH{h0o-mEg)pw^eA\YZas#7N_ku5]2Ql 49v,X)58FG4~ bSF914IeWJkNdv| 3Xz!;^ KqW%}5vQ`//nI}$| 1Jd9Ur'H)b&ruv,v8q:b4L61=?877/kTD5,,:IWjiRNdxDm!@i7Uk qH@y_}DK#"lP0 08QLoZo)//G)Wa#c0`CWMJH8;$8 >7.,(nWE638DOz\`qH;ATm'Jk'R} "5I\o| vcG"y?rbN]-7V5  .B3XIlcy~5B(B2996<;7C0H#IIGD>/ mVG>=DRbgsPF?:=N@hf 7_"4EW`hmk_J/ Lvg^pHK$0 _>+#' 7BO!]6oPh2B F@?FRZZUQLD;1%vbWQPT^nmYJA=@&OHdk~Ox0>FE DA#9!, V$eM:j&N:* kG/(*6.G(Zl{):8:@EFJI<,t bVT\al{gZPIFD8HWVqp+Uy$'' uL{Y:p R@-"!g,K6=A;N3-2~=gFZNSWLgKyJKJO[o )3;@@>=<7+ rego|yuo f*cJhjy<ftV8wS$jXJBBGKqRb[TlOUdgdciz'7?<963-&$~{{{~$B`v"7[~uiZE,{wq^=ueWQSYc~rpfbjqursw$17970& *=Rh&>[ryj]O<$ ua@vnhilqy{rorz|wtz )571,&*?Vo 5M_p~}pdZSL@.s cXG/vsx||pknqppqv| '*#  1E]v+Iaq|}voeZNFA;3|&^E1}{zv|zwqw%)& (9Tp+Hi}~|wmbWKFGJ{?h+O/xtuz|}~   +@Zqz|->Uqrmonlf[M<7:Aw?h1]N3}wus{t~y '=Scpw w"z:~QcvueZRUXR@-$$(s&`!UOC0skhhiZn\uf{r{   '4ALYdl o'pGtcvxunfWH=72.)# |o aP=0&{pnu  !!  &7L^hkot&x=tVturiT?0,+)'(*&! ud WH9, xtpkyoppx   +2797750+# *=MYag k!o7kFcZVuJ<2)""%#!ycJ 5*'%yuwx}yuw  ,:IXbgf_UJ@1 ,;GLSTSK(F:>M6h.)##)*)+,{)o!_M=, xlb_dosukznpqt}  1CQ^n|}rfXI4" %++,/686:/M']i{ (/1.(r#gYK:*~qkhltz}o~e`^`bly +DXdnwrZB,  $)-./12 01-O%ey #)-2320*z un_M=. |yvy~skhfbci}" : L]pp`N>+!$&+/1*2W x$5@GJF?/ vlcUI@7%~ zx|}i_a`^am}:[y|jXG:1-($ ""%*,&! 3V{,8?A=3(yndZTI<+x tvsld`akw#Ejt[H;73/-.,*,153/% *CVq #8INMH?0 vg\ZYPB/} uuwocYVVbr $A]s[F5-())*)')-331)4Qr'4:<8/!ymhdc\RyFpBh7h%j ox}kaZVZcq 6 Javxm^O@4+(*/228=A>91+ +Hh $%%"vigotwqheZ[PNU;]!d jtq`Z]dnw~ ' ;K\otg\PF:65657=AFA92*  @l $# {ppvz}{wpkqheh]b]Q\:d nwjYRV_gv*9@LZkxzng_WMIHIJECCE?61-,(" #="^  upqtv}~wvougohdnTtAt&qsxpccjt}'3@GNXaiovzztroqkhegd[PED@6,% 7Pi}zyz}wm]B~yvt{ytssw ",7>FKP}Wybyl~quty{ z nbWNC>6.'#;!Tguqgadjqw}jQ/ ~yw{ #(}/z6x9xA}ISYgt  wl`UI?6-$!&2*C'S$g|wmfhkllq|v\>~ z uxx!z,6GVl !! p`QC841//1&15+F'W!goo onmdZTW\bfoxdC!uosx  2HZo " {n\J=52474./;+F T^ adff[ROUZaku{aD%|wtt{ 5Nj vj_O>0.4;=);;:D2J)SY aed_]\[_enytZA'}zzwrnqx%<Xuyh\NG?847==-<90C#KOW`c^[_glo}v}sZC+.Kk{ma^\]^]]Y.T2A50?HSXXUVX_hr|z|rbP9 ?`~uk`ZVVXW[YS*B.22!;LX^[YY_c{lu~r{v[E5&3Vvui^XVVYURI*A54<(CM [bc]]co{~{{yuoaM3 } +MnxrjaXOICCAF DD='34#?KV\[\blyrgca^XPC04Qkuof]WVWST SVQ$G+8:)JVakx{eSHFD?5+  {yz2Mf~zmd`^WT RTQN G@2-> JS^n|sfTC5.'"  0AQ\fo|{uvxy xzwqe XL)A<1L[j vyi\O@0# zx{"1:BHOV[a^_^cfnv~||  ~sgXJ1?@8O2\+i%u%%%!xi\OC1 xnjijhgku}%,2;@CGE?8:?FLRZcipw ! {qdU'K4HBHQH\FgFrG|F?6)reXI:(ueYSPQQW^jw!'&%%&*-) "-6>HXj}  {%v0s<sJuZzl||zreP8seS<|(^I;852.1:I\p+45.%  (5Nk "$%!+:IYgtoU:yiW|BW.7& ,E]s%.25670&!4Le "$$&&"(3CSajr}}dF%{m\xIT35  -AZv $)-//.0/* ">^!v%&&#"! ,;JWcq|lM)|qcjSLA0,+AYr !1@IPPLE?8.  6(N*h(~*+,+*(%#$)- 2;HUaoyrQ(}skcXiLT<>*,  -D`{/FZekgaXOC4# )64;T;o=>@>:632 /',$+-2:AIS_f`h9fbZQF:p0[$NC 8-! 1F_y*BZkvxtiZF2 -8?-BLBgB?;5100,*%0!0$)+39@JRUaU5V XYSF8,o#bWJ;." (=Rm *Ict~r^D,$2;B0EHHbHGA<743,0;.C.H1D395$6>GPQZP1PRVUQI{>j4`*U!J9,!   & 4H` @]rrV8 )3<+AAB[@w>83341-++9.?384*13:=?w@ND*HIHGIE~9o.c%[SJB;5/+,06=HWh{3L`mngWB(  ,1 49(A8EKF_DuD@81.+&,!0"0(',-/488n7H=$DHFEEE{>l7b1\.Z)V&M'A)<+:';#?EKRZ `m3HU``VE4#4=> =-><BKG]IqKLH=1++#,",-36534:z>WB3HOSTTVYV}MzF}C{Br@e?]CYEV?V1[$bee go -8x?t=u6v(xywtu|~ '5AJML,J9GKC_<u752)    x%X-76@HJJMPQOMPTVVYu_i^cTgFn;t/y {neabd gjlns *9CKSZ-]=]HVTN`Gs?93.$ iO#62>FJLLLOTZ^`a_[[_]RB2# z mbXRPPV[bkx)7CL PR!U2YF[X\hYuQF<4)rV=-(:GRYZX[bilqsqmihdZLA9/!q]MC??BEKS]jz -8CKR X*`:gMkajte[PC4#yeO6 )<JPQPT[`eike_^_^~XLD=4*o\ND;56=GPZi{ (6CMX _d#h.m<rHuXrkfUC1{iUD 3&0C QY^cefiotqib`^[TMF;0#dO@70.18AISbx  &.6 AIO"V/\>`L`^[pQG:'}sbT H ;50K*\#jquvtsvxvme`_^[WPD4$eK8.+,29AITg~ (2: AGOU*W<TULk>2$|rjb1YGL`Cv;2*xtpjc_VE3 eL;1.28CNYgy(29=BI"Q.SAPWDp6&{vpk id']:QPGg={84,%~xqidb_UC-w\F7.,1:BLYk $. 7=+B<CKBY=l5( }ulda$]6YJS_KqB~:2(!~xspkd[SMF;)r\G9.))0~w2$ |l_UMH/CF@\<r84/*# zrh_XTL=){dPC;78y74, u\A% ui`|ZwXsUpVuW\dm{ "0=#F*P,R,O,E09<-K!V\_dmx{wurlb\ Z\]#\/[<[MZbYvXXWQH>4* nR1|pg}`{[uVoTjVnYx\ahv$5CL'R+Q,K,C/::1H"T[_cinu|~yvsrqmga][ZZ[$]5\HZYZh\y\VOD:/"nV8{wriaXNG|EwCqAnBqCwG|KUex# 3B*N2S9R=QBMFDN6X%dmruw||xphb^XUVZ/\B_TcefufaYPG<.u`G-uh\U}RzQyOzLzKyJ{MWgx$ 4A'I1M7M<MAGF?J0P X[[[^doy~wnf_[WT'T;YLa]hompmjcYM@5%x`F,yrnjif_ULF}CzD|CBABEO[l&2"<-D8F?CA>B8F-K"LIDCDIS_jrsrsy~~|xtlhghf%e5hBnRsatqtusld]UJ;)|eP=)zlc^ZVPJDB@>=<>==?IXgw ),2:4C2H-L'NLG @=?@CJWckmqz{*z4{AzKx[yjxzurpmi_O?+{jXF0~rjc[UQNLNRSSVZ[[^gr{  '3(;7;B8G5G2E+B#=8569>BIR[blx!{*s1o8lAhMf[elh{jllg`Q>'sdQ=(reZPIIJIJNRWZ\^abcfjov %$7(A(C&A&?"=<9 65668<CKUcny~ ukb"Z,W;XJ^WeglyqqldXH2|viXD2r^NC=;=AJS[aeilnmlkhjoy'':-E1K1M2M/J(E?;: 73115>K^oun'k5mBrQx]}huyrgXD,~wk^O<~'eL:-('+4BOZfoutrolgdehq} ,"9.C6K<O8L/E#>71 ,(%$&.=Pe{wke`` c.j<rHvVtdpsnj]K6vm_N9f&I6*%%-9EO[kuzwsnf^\^ckt!/;"D(L*O)N"H= 0&*;Pg~ric_ bi,q5sDpUmhkuf[L:"~tiZsIS94'!   +9FQ]dgea\VPNPU\hy 0B N)W,[+Y%O@0$%7Kd}ulgecdjqu,x<|QcwxkYC#|qeZkNLE99-1*/.152A-K(U#Z`efd_YRLLOVz^uiwu $8IV+b0h0d*XE1 %2?Oe}yngedintz'>Wk|{kO*vkjbO]=X2R,P,P1P8L@FF=L0OQ SSROKIIJ|LuSs_vm}~#9KX*b1e5_2S*@ .)18CTfv~tmijmrx~-G[myzfH#{tmoXjJg>g1f*d(^(T*J/@226 : =?BFMSTqSeV^_\k\{am'>Q \aa!ZPC;424:@B J S^hs} ;Sfso|V> {uwbyR|Dz9r.i&b#Y"M"=#-%'),4?HNqUb[]b[j]xeq(4<#@&=(9,3.2*3&9(@*E*I&J%N%R"Yclv|wpqy4PwfirZzF0ziWFz8p0b-T+E'6%&&),3?JSwWf[[_WhVs[dn}  &!,-.63:79<6B2J.O*R(S&P%Q!UZ] _dmxuhcgoz";uQfbWrG~7#jQ:w)j XF5$ )3=G|LkT^^WjXu_fo~  %4#>,F4H@HJAR8X0Z,Y*S)O&L!LNRZdmv~wlgilt r+dFZ\PnC}8* x[B|1k$YI7% '2?LUradm^}^cgp| )6?/H;KGIPDY=\8\4Z1V1P/K*F EIPXainr|qiec`doq%bAU[MqHD9+{`K9t*b!SD4 -9I[}mm|bZX]hx$2@#F6K@KIKQIUFTBR=R6R-L&GDE HLT\bhroaWSQXg{o _<VTTiPzJA8+zbN=u.d#VG5 " !1ASfvxk][bn|&8GM&N4M>MBJCIDFF@J4I(GG GEDIQZakzufWJA@K[mxm.fM`fYxRJA1}fN8x'ocSD1 &;Pevzm`^bp/=HO'V3X<Y?W?S?IA<@/=%<<9 559CN[lqcVIA>DPc{ x,nIhbayXLA0gM6%}uf R <# 1AShzvkhn|#4AIPX\^"V)J-;.3-+.%.// /09ERd{uhaYLA:?J`y v>k[_qVI;'jT?/$p[B"'1 ARdt}tqt~(6?FNQPI@ 8 2"-#('#'') /4=OgwlcYNEADPc|{4nN`cTsF~8*qYD4&wc L*36DTeq{~{z{vsqrty +4;=>:6 20//,# '1<H[s~uk`XSRVct}o2aJQ[Eh8u,oYG8*#q$^0G=0JYepv}|wsommpuz#-49==<:;;;6/'!#1?N\rzj\XVSS\jy}*q<bLT^Ho@z=<6!cTMwRe]Qe@b+ksu$)-/ ./28;8/'%;><Fcsf`^]^cmxsd\]O%F8JLQ\PjPuC})bCCOuUeNRL>U(gtjyc[l|'4=AAAADEEC>5' #.L}qg_YXZ`hs~| }"v9bKEX4c4n6y<>2}m\xHu2oi yml{opwqv*~4899<=AEFA8+ ,XvkcZUV]grt&g;lNr_wk~u{b;ueT='tnslhuu~ }(4789=CHKKI?2 ;r{}{pha]\^co5IXeqY}+ {kVB/gddXKLIWghhz"*-/036~:?@;2&log|tld^ZZ^ix~ 4HYggsKNT7whXD1wmnbODBCNMJYf~",256x6:?A;4*,PJD]yphb|]Z_{jrv~tp,AQx`wk}xnU="xoaQA3(~nYI@>=?8;>Oj} !){0l6{88:;;2& (.,@^pr~|smoxwyv*?R`kss|^G)|tniaVG:.# lUF@:7.13=Pbr}|j)a3o9=><;93&*ENYp}jW}]{rxtpnkslzruzbav%:L\hq|xd|V~MzOwMqDk1e_UK>2*" k[QH>/,(-2@LZbPE'M5n@FGFIuHtA7- "0=]wmVQ~h}p~s}|z}rci%1?P^lzswww{wzpt^mCi2d'_ UJ>4,# r g^P=/#"!',7; 0%,"D*[2i:j>^@RCRFiA8.! !?`aNF\egt{hi{*9~KzY}^`ei{ggbR]BX9O4D+8!/ * zpdR >/& &/2+%9"O(],Y/E/65>:_;4( (D@4ARZ\mto\S^p~ !1FSUSRRQsPfH[@O6J(?q[!MC4!,&,(3(6#6# !$"7%U*`-T,6(+'2.X461%&<09YjilvqdTRgoq}.ANVYUPJuElBh>e8Z,?!-0 -  j[ L#:),/'5!5 5320-#*6(F+E,6-!(%0'Z-}12.##)"7Ygilp^M6F]_\^jd`]o %/8AC?x:v2{/|,|)l#QJTQ9 {hP&:0'9@C EEC@&>1<67+2/,'/$V"r"q#h l .S_Y\}g~^F6FYWIHOMFJe "&*,,)$"~ vbG-  tZ(@1&= FOTWXXTPN KHC=&7M3g1d.Y+b% 8`hfk{nPES_U@EMF//Pq  pV4  h N*04BMW\cfe^ZWRKE>99V3U,E'P#p  ,Wg^drlPBJSG11<53O_d ost  {Y4~ aD'+ :HU[djlklke\S+MJHPAK7Y-}&3[e^cuoVGIK:" 0./;: BWd"Z#VlM0~dF!*7FVbnv{{qgD_JW=NCDq9, 'G\Y\ebN><:'5G$@+8.O+r)%# mR5h ;* 9HXepw |?sAg5\JXhs8@BuGh[[zM<%   %=AFNTK>+$ ))55C@UDmEB>94-$gJ.iB#4CO[er|(CVTsRfhXH7",3<GK?-#' )',86CVJwHB;3.% pQ"nC(8FPZhv 0GHH{^mZH6&%060$!!2>>[EqD>7/& oF zR#/4@KUboz)AKT}epbQA/ ')#  !0<3BVBr?<6/& vZA+|)^7=E Q[dq{2>GUvjl_RC3#!  ',&-=+\)&!  ~aG1"%0a;>J1W.^%envz|{ {@uWn`fd_pWL?/#( !%#C#_ t  }lL&-=bL=Z#aehlquxxv8mPcbYrTOI@3"    J e l y  seD# %0;EvONW1^(d*hh hfgd*a<\NY^TrKD>80$  4Rk {[8 #/9CoHKN9M2b*|$ )Plyn_H+&5AMY`b^eZSWQTWOYJTGOCL=S2l(  -Jh|pR9**3 <EPY\\qYbTcLgEn?i<Z:G4D*X v  5Qi||kVD3$,8BKRTSS|PsJwC~<~5v,i'b ap    A]rq]G7!.%!+7FRZ]\[TI>72)|vop {  *Rv~jZ O?*%/<IV]`_\VK>6/'pir  +Fa|uX@3+)6COY_aa^VLC:3+#    &>WspX>)#0 ?LW^dffcZPHC;0'  +<I^~q\ E/! .=N[bfkoole\QF=1(      0DT_q kXF 4+%9HWa dca^]WQH</#     )5CSd{ yaR%I-B71@IS]cd`\YTNF?6,    |zywwy-<GUgy #(-x1a6O<AE3O X ^aa`_]]]WNC;4+#  ! $# }nb[[_ejt .@O]m~ '1;uC]GKJ;M)PSVWURNIGED?8/(   "$$""" qcWTWbjqz#7IWgs )6ER\vc^bH`5\%ZY WUPJC=964-%  "$%*08>A@=90|#vk`ZVW]k~wronm#n-q:vIZl}%3ANvYgbYdL`@Y-RNKGFC>940,'   ",258=CHMTVRJ?z3u"smfgkopu}sjb_`d)h7mBtKS\fr}#0?~N|[uggpUrDq7n-i!c]VQN JC=70( "%'! (08?EJOU[\YS|Iq=j-ffhd_^bhssdXQMNQ!Z1cAlNuV[ev ~x.s?pNn\ig`mSpCo5p-p)m#e]V N E < 4.% "*.(# "#! !*3<EMSXXTN|Gq>k1f$_Z]ipux}udVLHHJQ Y.cAnVzfllov~!t3gB\OXXYaYhSkHl;l1i)g'c)^*W'M"C8,"#' *,++-6?B>83- &"!#+3:@EMUZ_a`|]tWmOgHd>g3l&niafvq^NC>>CJ,T6^<jDwQap|ztok.f;[FKO9Z)c#h%j(l(n#pokd[Q%D076(54 6:::<AHJJGB= :61#(-5;?EMSWZ[v[cYXWRUPQOKMCL7L)NQXdwzdRC;:=BI$S1^=kHyS]fow|zpf^&T0H:9D*NW^ chm qtrlaU#H19@*JL LPTTNGFFLPRRM D8 .,%7@G OX^cdb~`j\VZHZ=Y5W4O_:a6_3X5KA7P]j|lUB4*%$% +4#B6TIk]hlhb^_`^"S.A:-DKQX_hqz~v i$Y;JD>F2I$OWcousmhecdfea\Y'T8MF@T-]ejoswywtlnWlEj8i1g/c0U6@>&M ^kvrU;( -%@3X@rN]jpjaVP K.C=7G*OV \clu|~wl _O+@;4E&KNQUX^dgfdaabb]XS-P=NLEV3_ h qw|s{]vLtBp@jCZGEK-OT_py]C, !3J$b0|>MX_^V LB.7<.I#T[ bkv|si [M"@01?!H MOOOSZbfd``ehhb%Y8RHKTCa7k'sz~zl~]zMt?l8^:JB2HLR[eo}dG0 $4,G:^DyMT^empk"_4ND<S)\f ox~rg\PB3% 0 ?OY]^^bhovz{~$~7zIsZiiYtH3te[RzHhCTC@F'K OW`lveK3 .@#U7lIU\]\ZWR%L4BC3P[ dp{zobUI<-",04=K[`a___ckx!2CxTndbqT|B*m_TJtFcFJH0IJOXdoxlN4"  #2B Vn1COUXYWO"C47E,Q!^jv|xnbTD2! !+136=FNPRW]eoy,>Pyaooc}P8oa[qYZ[?_!abcgp}gJ1#8 Of*~;M\cb\TK,?93F(R]gnuyzunh_TF3!  '+-17=FOW]fp{&8JYixkYH6|}ok`TV:S YbjllmjsK~2$8Nd0{>IPUVUSO$G1:;*FPW] eknmid^UI;*  *158<AL_t(9JWes}oX?&yn}]sHm1f_]`flqlyO5  %8K^'t7DNTWUNE#>1:=4H*QX`ehkkg`VLB6(  *8J[gq|%4DTetwgWE/r^I4{uplknmtT}>+  *<N^s(5?GJJE>#601>-K(V_d hhgec^WM?1# ):N`ny 2DUe}sqe[O@/{lZG4~}{xsnvl_nKu8'#3C T#f1{8;?ADEFF B.;80D%MVZ[VRNNKF=1"  !+7F[q$5GWf~ry{tk\I6$zrhZK<)zuojjjnTt@|3)&(/7AN`r*6>DIMMLH"D/?97A/G%LOONKEA<7.$ )<MYdox*8ER`m|zsi\N=*{oaRH:*~xtqoqwmZLA=>FP] fp!})1:BLSWVPF<&2-'39;==>==80)  #8Mbq)4>IR[fovy{j}WzDv1rpmg_VL?1"slkknuzse[UV\emv'4;<98:?CD@ 7* #$%%'(&");HYi{#+6CNUZ~_werjnmenXmFi0b]XTNG>4' ti_Z]ft}wsqu| (5CKSVTLEA>=:5*    +E![)m/z6@JQX_cefygegUfId>`4[&SJC>:3) ymc[YY\cs*8DOW]^^[TI<.%   <'Y-p14:@HPX]\YU{UgUOS9Q(LF<3-)& ve\W[^ahx3GValu{ztkbVI9(   #(-...-, -(0H4f6669>CIOPOI{FiDVD@C)>8/(" xjb[TQPXev 'A[n}uh\RD3##(/4;@BB??BD:C[Cx@?>@EJOQOMIuE_AJ=78$0' }jZPT[dn|5PexxfS@2& #,7AHLMLJJI5GMBe<}778:>BEDA=y;a9I631 + $ wkaZZXVT^m $;P^ku}zm\I9.#)5@JQRRQOL6IPEa@n<x7678;?@@>x=g<U<B;/5-&  {eVQMJKS\gq.ET^jrz~~xocWG9,  /<GNSUTQ/NFLZHiDx?=;:;>?@@>>o=[<J;>8.4/( tcTG;79DQ_r'6HSZ]djjfgnqmbVL=++8FOX\]&[5[=ZIWXSgNpKtLsMqNmNkNnMsLvJrJkIaIQH=G*D< 2#{gWOIE>;BVp %7CIMQUYajqolkicZN@- !,7@HN&O:OHMQNTNXK[J`JeJhKkJnKoLnOmOkPcQ[QSOGJ6D"9 - yeZMHJQW`p#,9DKPW`insvtnhdbYI6$ '5@H4KDMKPTRVSXVXXYY^YeXjZl]malffh_iXgQaH\;T'NC6&~j\UUV[es &*-:O`gjkotwtobQ@4)   )"4/=9B=FCJGMLOPTTZV`Xb\c^e]j_m`o^pVpGj3a#TI=2%mceca]^hy "1;AHVdkoprodUKB5% (-%5-<5C<JEQKURWZ[`]e^j`oas`v\wXvMrBl2b UI<0!zqljfhkw(1;DLT\dfc[TMG<.&2 <FQ$[-_8_C[LZV[`]i^r_y_~]YTM}Az5w+o dTE5'wke^\^jx #/9?GLONOPPH:)$4D NUW[&_0b?^LZYYdXkZnYrUvU{T}OC}9u-nd[QH<1"z l\XZcjs")2;EJMLKC;3+ !/AP^hnn$m*o0q;qFlTe^]fZkYmWnRpJqBq7n+ic[UNF;2(zfVN PWep~ !%''&)19>BA:,  #7GS] gnw~$,6?{HvQpXl^gcadWdMdCc;`-ZUOG?6/("ud[YV Y`my'')/440-//.-+#  &;LYair|$-7?EJQWz^oabbWaLa<`+^\XTKB940m-])T&M OS]cj x &+17954332.*#  ):IZky '.5<BFIJzMnNfQ\ROS=R#QPMJE?:{6g2U1F/A-C(L$P!V^q &16656861,'!  # 8 H Vc u %,39;?DHJyJjLZMJL6J LNNKFA<q8^6P8F:B:>5@0F)W#j~ $,26<BDB93/( (?Sg{"#&)-2:@DEFILNuMbMPN;K&J HFDA?w;d:S7G8;97:1673C/X(j| !(/48?DB<971%  "%&(-&G%`%x'(*,.147:=?@BCEFwG^FMF9F"DA?>>?f>S>B=8<,:%9"6(31-E&]w $.7;9786/)${xy"'()*8)T*m*+++,.01136:<=>BCDwEdHIJ.IGEDCDuDZEDE6E+D&E%A.?88I0\(s #,47:864665-$yonox#+169;<;V=p=<:9888769;;<<>?=<<n?S?4>:50-/p3V7<:)=<<84+0A+W$n  (07;:74456/$ufa`h r +4:=@0BPEoDB>;964555679<>=<;:k=P?5>93/05q;MC.HIECA@%=6:F4])x $)/69:>BD?8,$wf\V_ n%1;@AA*DNFnFC=82.**)+,++,-+&'(o*R,7+*'&(0p7N>3C$IJKI#F0D>BN<h4*! #'+-26:BGH{Au;u0v)y{ ~mZSR^m*3;AG1MRPmSPLGA<76531/0221/--r.W.</221./i1M85>$FJLI!F,C?AV?q:5.$#+0578:BJMyKvBr9q*qsv}n]RQQWa v(3>IS;YX]p`a`XSLGA;600//.-**(w)]*?-//112k4S7<;+BDED"C0AH?`=y:60&&07977;zCuDnBj<g7g*fi msw{vh_`^ah%2>I(TG]^cpjlld\RKD<840+'$&&&#r#S"2#%).//m/V1@3.69=?'@7=M:d9}850*!'3::89t>mAi@c>a:\5\(]belu}xld`\al*;JV"a<mSui|~{rfZOHA<4.'#!"#&%n$M$/'*/259x9`;J;=>4@0D1F:IFITIgHHGD=2#!)./2}5r6i7d6_6^0\)_bhnu{wsnnow~*<KY!d7nLv_zsyrfZOD<4/(!"x%]'>*".26:?C}CjCYBNDGFGJJLRO]PjPyPQPMD6$'4<>w;m6d2^/X2U2U,W] gnw~}},@Q `%j=qQw`zkvvph^PB81+" mV;! #%*/0}/r/l2h5f7g:l?tEIIJID:, $.57s6g0[-T-N.M)L PVajt~/DT b k6sIxVx_vlr|j_PC92)  fN4%+17;=;<u=pCnHqNsUxZ~]_^][VND4! $*,~.n.a/Y-U*P"NQV`ly /@NX%a9hIlVo^pkl}eZM?2)  ybL5$+179;;<AIQWZXTOJGD>1!  #k$\"O"G CCCHMWdt!,8BNX)^5a>bFbU`gZwSI=."tcN 8  !'.6;AEILRV\^`]ZSMG?5+pbVO IGHLQ\gu #/ <FO%T,Y5\@]L]W_a]oWzK?3& ueYD ,#*2;CKPVY]]\]^[VPG>5+" ufY QLKLPT[do{(4 @GOTX"Y*]1_;_H[]VlOyIA5-$ v cR=+ $-7AIOUYZYZXVQLF@8.# x kd_^]adilt  '1;? C F KLLK K/KAIRDbAp?}91' } q ^H3!"/;DJNQTTWVRIA:5.% wqjgeedeju  $$'+#26<>AA> <<$;2<?=R=f;w5-%}s g X G 2 #,6AKT [`b a^[UNF=2(xqliikot} )3 873&3,,1!346999653!3.4@5R6b5n2w,|&wm`VI9% !&*06@ KV`hmonicXNC9, {spruz}-; DE?#8(1+)-+**,--./.",0*>,M0^3k2q/v*s#maWI;,! %.:FQ Z&d+l-t(vuoeWJ=0# }zyxxy +4: :5-# /!?(N-Y.^.b,a)`%Y#R#H%>%1%&$$'.!;$G&S)].g3p4t/v&usmbSC3$ "-5;> >80'  # 0';-D0M2R2R1R0Q/O.G,<-2-,-'.(2-83A7J:V:b:m:u5w/w(trkaSE4" '.3:> A>:0$  "'+4/<0B0H.P,S)R'I%@%;&9(=*A.E5F@DNA\=h<p9w4z,|"xrj`P?- {wvy~ &,169<= <61( ")/*273>2F.M)S#T R!Q"S&V)Y/Z7ZAWLPZJhFq?x9y2x+to eYI7%yvw| )/0.14:=?@<4*" '.2+5<4J1U,]'d#insvx"x'u0o;iFeQ]]SeJkEm>n3k#eYK<.xokhinv #*0220//0242-% (19>>,;=7O2Z+c$kqvyz#{+w5r>hH_SV]NcGh?h6g*c[ NA3% vkeabfmw#*156753/-+)(&!%08?@?-:A6V1j,x&! %*3=zHoRd[ZcSfHg=d0`$ZQF:-! wle`]^es &.477:=<92*$"  "-6<AC?7(1?,W(m#}#*5@~KrTeYW]I\=X2S%NH @8.# |smjikr }&28;?BA?><5,$"+16850#(6!I\o~"+8B}MsTgUWTGP6J%FA :4*!{vstx "+14311/+$  #-4688 5./(@Rbp{%+5?JSvZh]][OV?O-HB <50)" $%&#"!  +2430-*(" *0100 ,' -:I Ubm v|'2;~DtMiT]XQW>T.PKD?=;4.*')-39;;850*  #%'& "! ,5;BKXdns'u2r:jBbHXMLO?M0K!IE?950+((*,/479:871(  $,17=DNWb nut+o4h>_FRJEL:L.N!QOIB=:99;?DHKNPQMH@7,     !&-5@LTZ `d#d-]4S9H??C4G%JLLFA=>@BFJMPSVWUMF>4(  ( -.*$ '2<DLU[\"Z'W0Q9F@7E%HJHCABFJLOTX[`ehe^WPG:* "+-+( %!   (3@MX_ dea#X,L4=9*=@BAADFHJNTWZ^ b db_ZSI:*&*+)"'#!! %2@KWbkm h^$Q-B308!;>BGJMRV]bg kloqrqlcUD2 %*-,'   )6ERY_`_WK&@,32(8=BJRX^bgilqv{||ztj[K;'$( *(#   ,9ENTWXYWPE8&/0)8&A%I%P#X]aeiou{ ~{vndTB, !"" !% ,10(  "*6@HNSYZWSPNJF"C'@%<"8#4,0<*Q"bc [^o}{tnk`M;(    -57?7 !  %.8FRXZYYZ\^ ^ZS H ?96+1=(BC Kbxxp_F-$2?>4 45% *7DNTX\ahmqqlcWJ=&3.**"0F _r}|n^I+) - * 1 73-*   ,9DOZfpw|~vl`SD7.#$6F QaymQ~8'  *003/,$ #.;K\ku|~ rcQE<!2+&0< Ufemz{xiybxVyE{7+ !" &-.0% $/>QaozyncXMB8.2$BCH^sxpnpwzp\?   &% ",9IYfr~yqi_QC 5)% 6IWf|~vporwsV?3)  #%%#! '5BN[hv|xrgZM@4'(:J`vtpoptzulfT9#     %(*,*##3DUdq}|sj^RE6) 4Ocoz~wrorw}v[C,   "'*&(<N_o|}sjaUF7( &=LYm|wsrqqs|t]I9, " (-.+&!  "  4I^qvle[N?. #0C]x{ywutz|k]N B8$(,00-(" } (=Ri}yozdTD4"%E`v}yvvx|pdZN)>5+>?;5/)#{~  5Mcx}rwhjo\K6!9Qey|wvw|~td'R2>;%B CA<1&y|~|} %& *CZo~xphsZK8$#<Ne{~}~ *s7^BCH'KJF@90%  # 8Rmrurd{Q{={')E_px$0l8Q=3@B @=4( ~zxwy $295,& 7"Q$h ~yyiwU}B|0vy 'DZhw -|6b;G=1>";60( }vsnlr #2<81-,%,<-S.j-~ q\{G|3vnmvz}'DSd})3x;_@MCBB0>6+ wmr|%7?=74/(-:-M2_5q(p^~Ix2rg bcdfn!3Fc *4:m=X?K=<9)3 (vklqv.>CA ;6,5<<LC\Bm4}! xjXB,qjhikt1Lf|*4y8e8W7J6<2&'zqmnw!2>@ <7*;8DFKSHb>r/!whS:$vnicabn2Je(06z8m9d:X5B*#xnow~&8A @?'E7MEOQM\KhCt0} ufT?)ric^VQTdu@_q$+38;v:k3X(;{nnpou #/7&=3C>FJGUJ`OlLv>}.%  yocR>*snje^_en})BVl !%+//-v(eR8~uoknx '+66=A>L@WJaQiOqEw;}30)}xobTC0 yslfccdl~!5Mi} !"%+/1/)wlW5{ngfo~ "#-,71A;JHSSZS`MiBn9r4r3o/h'`W L>/ yqia]aht 4I^o !%')+..*#ueL,pijq  )*64@:I@MHTU\\b\hSjFk;e5_1V+N"D9-qecju !8G Td|!&))(*,,' r\@# |yzz{ #!03:@?DGHOMUU[W^U_N\FY=Q7K/E#?5( }skfcchv/ BRe|%*.,+(%#! wm\@!|z}|$5*A9KCRJVS[Y]^aZbTbK]BW=M;F6?)5* zyxst| 3G%^*u.12321,&qgXB& }z} #0<3F>NEXG^McQdXdWbT`JW=O2E*;$/"zrkmv1'I.^4l7|89;<;5-# zm`P;! %4AL1TB]MfNnNsNtPrMkKcFX?N3D$9* zvw#+02N9a@kDxFFGE@70%z sl`UH6$3B Q_5iFqQyR~RNL}GtEkB\9M*<- )1:2@MIcPpVZZXRJ@7)tj`UKB5#yuuy/=M]l#v3?A?:89w8l2['K7"  #+7@K(T:]Qdchsizhd^WL?}-xmc[SH;5,|xyz} )9GT`mx-;@?62}4q7e3T(C- *19?FN+XA`Rb`_g[oYtRyJw<u.rmf]UMF=5~,t omnsz '5CO\fo w~)276|4t/g-Y*F%1" ".:DLPTX!]5bGeYgcej_nSsGo8k+ijieZQJGA9w/q"lmpy +5@JU^gqy~$~+z,s,k&_"Q>* ,5>DKQ VW%W4ZA\O]YYdTiIm>k-e\ [^`]ULD;2w*s"ppt~#2<GQ[ahq x|"y+w,o)f WH8'  *6AHNTW[_)b6aD^MWVPZF[<Z,ZX YZZWRMGA:~.y"vw|'4?KT^fnuvw soeZM? /   )5?HOSVY[](Y4S=IH@O5R'QQ TWXWWWTME<2&"2=HS\cglone ] SJ=1$    *2<EOY^aa` Y$R*J3E=<D/HKORPLJMPOF;1&%3ANW]`efhc]UL = 0"  *7CMW\bde!^#Y&Q-J4@:3@#EGJKIFDEGE?7/#%3BQ^glmkkhe[Q@/ %3@KU] cggi"f"b#X(N-?439!>BCBBCAACB>6+! -;FQ]gkkjhaYND6&%0:DNW]a a`\W N"C#4#&#(.7=@AA@?>>>8, %1?KW_cddb\VLC5&",6ALTZ^ _^[XNE8)!&,37:=@A>:64/' *6BNX^a`[UQJC7*  (/9AKT[`` _ YUMH;/")06;ACDB=82-& (4>HORRPKIC;1&  (29BLU[[ [ WTKE: / #(/7>CB=5.'!  #/:DLQVVUOH>5,$ +7AKS[cc`YUOG9+"&*/6<ADD>4)+6=EGLMME=2)  '2<ENV]^\UOG>0% &,39BIHA6+" - 8 @ DFFGD?5-(# "2=ENV^ab_[TK@7,"$,5?HMNLHE?7,  # -8<@BEC?82*!   )7AJOY_b_]XQF:+ #*07@IPSQLD;2' % 0 8@DGDA;6-#  &)*)%  )5COY^cdc`]RE4%*2:DJQUWUOF:-",6?DHGF?7,$ $(( %"   .<HV_ehkg`SG;0$&8 FOU[^__^ZPA3& #/:AEDA<3*"!(-3552* ! +9EP\bfc^SH</&'3 @MV\`^XQLE;,  #2=DEB;2+&# "!$+057851 )#1@M[dihd\UME =6#//)9#DNV_fjh_SD8-# &.58642.+&##$&&1&7$9":;;: 4* *8FPX_eihb[SLC=#723>+J"QY _dhkg_RC3$ (1564211 0/$//06.;)@#F JLIF?4' )7BMW`ba^ZXURO$G4?C3P*[fl nlkhcYK;) #'(),/2 45)471A,J'O#TX\\ UK@4&%1<HRY]``abde bY,M:AG8R.^$hnpnf[OA4( !(.4:> AA :)440A-M*X%^^YTLD7(*4=FOU\dkoonjf\#R0F?:L/W"^ehhaWL@2$ !(.2 43!1++3'?#LW\^ ``\RH<- (08?GOYaeijhaZSH.<</G"S\ceeb\QC6(  (.24 31.(*6%DOV\aefc^UH9*   *3:BLV^dhjhe`\RH$90,<HRZ][UMFB:/! #(+,-%,-(5#=EOYdiid]UOIA5$ "*4=FOW]cgigd^WND"7/):C JQTUROKE;/# " %%"%,5?IOUY[ZWQLE=2$ #,5=GOW^cfihf^UJ=.#.7=ACFHHC=6,   '. 6=EOTVVVURMF=0# "'.4:CMU]cffbZQF ;-#. 9AGJMNNJD=4* #+18>EINSUUSPH>4* !%*2:BJQUZ[YRI>3' &-4<CIMMIB:3)(1;EIJMOQUXWSKC9/!"$&)*+,.4<DJQTURMHD<0#"+ 158<ACEC@9/$ '0:FMPSUVUSQMHB>5)!$&&')-//147;;;:73+ &!$- 4:>@@>;940*#   %2AKRW\_bb`[UNH@6+  $)-147789<@CDC@<630.*%&.5: >@@><85/' '5BKV_hjifb^YTOD7& #'+-02479850-*(& &%("4=A DEFDA=92'  &3@NZbgjkic^XNC6)  &+06=CFHHGDB@=;71-(&"2>GKLOPND9/')6CNXblsttpi^QC6)  '.59=@ACCBA?<974 2,$$1=FOUWUOF>3('2<EOZdnsuqi`WM@1!#,27:=?@@?=;952/,(#'2:D K NMID?6+(3<BJQY`efbXND=1" $*/4:?CEEC@=;874/ *&"$,!5>CFFFC? 81'  $.9CLQWZ^^\YTLA4( $+05<AEHHEB<8531 .*%&!."6#<"?!AB@= 83-% (06=DMTWYXVTPKF@8* "-8?FMQSSRLF?:52/+)) )%*),,+/*2&3 1, )&" $/7:<?AGKOQOJFA<70(&18?DHJHD>;61-)& &'*,"-)+-(/%0!/.+'" !*1467<AEHLMKD>83-& (1:BFGFC?;8410002 355 4&2+-/'0/- *'$!"'+.15:AGJJHEA;71*! &,48<<=<;987655677 751'*-"--, ,.-+&!#&+19?DFEDBA@?:3+"  !&+18;>?BDCCBA@@??; 81+!"&*+ ,.//-*"  %+0367776441-$ !%*0469<AFGHHGEBA?;3+"% )+/10-' $+0577679:74-$  #).27:<?DFGGFEB>93,# %,4983-& !&),/3552.)   !$'+/146;>>=>?@BB@:2) !" (-1341,&"  $(,031-(#  "&),/368:<>==>?<;9761*#   "&)*(%  &/6;=?@@??@?=;8531.)%       '.6<BGJKLKHFEEEC@:3,&      )3;AGKLLJJJKJIGDA<6.%      -8@FKNRTVURNMMMMLIB9-"!#"       ,9CKQTUWYYWSOKGFFEA:2( #(*& "     3BNUY]`bdc`\XUSQOKE=5+"  &, . +'"    '9FQUYZ\\\\YVTSPNLJE?5*!'++*&"     #2?IOSTSRRSTRNKGDCB?9.!  #).0/+%     *5;AGJKMNPOOLJGGFD@;3,"  '/5784/)#      &08?@DGIIIHIIIIIHD?=94-%  '-/3530+$   #%$    )16:::;=?AABBB@<9840+%  # ,256653-%     &*.03689:;=?@>=:741-'   "+2 67762.*$  !      #'+-/355 5 5 6 6 77652.*%  %+158: 960,&"    !'*-/1121/-,*(%"   $*059>AA@ >:61,&       $&()*(&$!  # (-4;AGJKMMKIF@90)"    !#%%$"  #*2;CI L MLLKIE?80'   !!!  "+ 4>FOTWZYWTQMIB9.#    #$#!  ", 7 CMTY[]]\YVRNG@6)"%%!  #$$#      !.;F OW\adggc^YUPH=2$"$%$"      %1 <EMTZ^` _!^"\"X TN F!="3%&&& %%$#  !##!    %1 ? IRZ`dhiifb]WQH?4( !####"    *7B KS[`cddb]W P I#B$:&1'&&&% # !$$"  * 5?IRY!^&^(]([&W%R%M%G'@(;*4).((% !      * 5AIQ X$['](\(Y)T*O)I'D&A(>);(4$- $     # 0;GN"R&S*T,V.V-T,P,J+F*B)>(:'8$4!-#       '2;$@)D-H2J4L2L1K1J2I1G0D0A.=,:(4#- #     !) 0'6+;,=+=+<+<,<-=,=+=):(7&2#- '     &#.*206193;3;4;2:/:,;,9-7-4,2(0%,$   " $$    ""'%+'/(4)7*:+;*=)=&=%;#9!6 4.(!  "$$ "   !""   %*-035754/*#    !     !##!  "(.2666320.)$            "',...,)'"     !   ! '))(&#    ""     "# !  $% %$%#    #%%!  #(*($  " "##  "%(+,,+)$  $()'%      $'+0233442-(!  !#"     "%).234441,'"  !#%&$     "*.037;>@A@;6/*"  "#!     #,16;@CHJLJE>80(   %)('%$ !# # $# !   !)29>AEJNMJE?7/&  $&%#    " % &&&$ "    $-26;?CFGFC=6/'! #%(('$" !$'))(' %      ( 0 6 <@CEFFD>82-($  #).120 .+&    *4:?CDDDB?<72-($  %,13 20,)$     &08@DFGIHD@>950+($   &+/ ///,'!    (3:@DFHGEB=84/*&#  #& +022/*"    '18>A@?><961*$   !     &,010-(   "(*+($ &2:>@BB@<94.'!  #)+,,*&"  &)+)&$  (.35541+$ %-2555442-' -9;9?EC<730-' "%%%%# "/,&,"   &+/1211/,%   ( >JKIIL NIC>-  "&$" $%%-<DA<93& "(+./.-*% .8@GMVZZ ZP?52&    ->FDDJE4*( $+./.-*'%%"  "*"4%;(B&L%S#W VNEB ?4*    $27<EKF??>6+&  "&''&&'&&&' '''("*,+6+>*E)D'@$CEB=: 2*! "$-<A78BFB=><0  !# %&')+'+,-.0+1-03,8(8$6664 ." #,)#+6;<@FE8-+'  "% ( ++, .146(7-8.5106*:$:5-%'.6BHE?>@<5/' "'-158: < ?BDFE#C,=358-6&40, ("  +:A@DMTTTRH4 #)/59:: < ? A BC@";)3-*.!--+ ("     &+ 1=LSUYZSD4,*" !*2:@DILMMNP OJD;"0&%()&   . ?KS\]WJBAB:* $.7>FMTY[\[YVSN F</ ""   '4 CMROIGLQLD9, +5>FMSZaeeca\W OF:.!   !$'(($* 7BFEBFPWVQJ?1% %1=FNV^dgieb[SJ?5)  &+/12/+)$-./8HPQPMC80,)'  (5@KT\ciklgaYOG>2 $  !).256 3.'!. ?HJKLF=9875/()7DNW]cfgfa\SJ>3' !'*, ,) %/ 8:?DB:8=A><90$ )4>ITZ]``_[UKA5) $)-//-' %(.5723:AA@>7-# $%  *4?IQV[_a_WND:."    "(-., ( "(')2;@EF@71188/'"   +6@HNU[\[WRJ?5)    !&''%" %3=ADD@<;AGD:.'   (09AIPVXXUPH@6,!  "(% "%&%# "+4;??>?FNRMB:4-#",2:BINRRNH?6-" '-)    #%%")279:=DNSOF@>8,%# "*2;CJMOOKD;1&%),/,# $$    "%'&  #,38=AJSWTNJG@9570  %-5=CIKKH?6-$ "(-11*&)++&!  ! %,2;DLPTSNE??A<5,#$+159;<;6/& "+350,*-..-*!  "+39ALY]UJEGIFB?9-%+/23431,' ",341-+-12.,+#   )4<AKV\XPNNMGBAD@3% #&)+*(% %1773.*(*.21+    -<LW]]XSRTTQLIG@5+# !#$#"  '3:>@B?5/05740)  &5EQYbf`VOPPPMJF;0+&  !"!  )49<@?91034-)(&   0<CIRZYSMJIFB@@<5-$   &2=EGB:5222/-+%   +:FOW\[UONROHBCB<4-'   )6?CCA?81/243-$     $3?IQUPIGJJFBBA;41/&   !/6:>CC9.+-/.+&      .;ENOKEBAA?=:5/+'!   '19CIIC<9972.)"    "0;EOTSMJLLF><=8/&    !/<FIHEC?;850*   -:EMNLKNOI@9992*$   "/<HMNLE<5430)      .>IPQNKJKIE@:3+$  (5?GKMJE@;73,$     # 1=FMONJFDB=71-("  '4?HOSRKEA=:4*    ' 4 ?EHIGFEEB<3,&" !.6<CKPNGA<6-("   ) 3 =EIIFB??>8/%    )3;@EFEB>:3+$  )3=DGHGECA>80(#  '2;CIKJHEA:1(! # 1 <F M O MLJF@;5/&  + 6 ? G I HHGF?5)  )7@IOQPK G@7/+(#   +7?GJ I D?:5+"  )8ELNJGD @:2+%   $0<DIKHD =5.(   )6@IKJGB =6/'!    #'-7AGGE> 6.'!   '"0"9 ACB?=9 5.'   "*.--2796 1-&  $,38:8 3.(#   ! &"*"+ ,,-,, (#  "%' '$&&$( (()+ )%   $"*$.%/$-"($       !!!     !( ,$,'+*),),)+))(%%  "% '(((&#     "%'*",&.*/-00/0-.*,))'&"!   "'* ,,*'%"   "&*+,.0%1+2025272818-6)3$.(#  ',.0/.+ &#  "&*/377$5*4-4163749360.+%&   !',./-+(#  !$'(*,.036;%>*>/=3;6:8887543/.(*$   &*-/0 0 / ,&   !(,.-./27:=@C&E-F2F6C7@9<98735-1'+%  "&)-// - *& !  "(-/036:=@ B'E-H2I7H9D=@=:=5;/7(2!-'   !&*,-,*'$   !(.59>C JPT#T+U2T8U<T>S>P>H;?733'.(!    &* ,+ + )'$ "(1:CJO SVX&Z/Z5[<Z?X@U>N<F8=32/%)$  #),./.+(%!  %-06:AHP V\^']0]6]=\?Y@W@R=K8A37.,(!#  %*.121.*&"  #*29@HN QVZ*^3`:a?`B]DYCS@M=D8;32-)(!  #'*,,,+(#  (2:AE IO!T*Z3_9c?dB_DXCQBM>H:A55.)'  %),/00/+%    (07>FPY]$a,c2f8i:i=h<d;[9O4E.<'4!+"   %)+++'#  (3>F MT\'d/i5k9j;h<d<^:V5L0C+:&2 )"  "&&(('$  &1> GPW'^-c3f7f:d:^8W5O1I-C&< 6/)!     "'+-,)'#  '1 <F%Q.W4[9\;[;Y<U:Q6M1H+B$;50, '$ $'))'#   + 5< D*I2O8S;X=X<X;V7Q2J,C%>;71 ,(&#! $()*(&!% 1; C)I0K7L<M?N=N;N6L2I+F$A;7 5420-+)'#$)./0-+% $. 8)@0F6H;I=H<G9C4?/=(;!:8631.../,*%""&)**'%!  *3;%B*G0K4N6N5K3H1E-@&92/. .0//-,)('$   "%(&%""/8%@*G.J1K3J1I/G,C'?":4.( #!"$'+./,)%!  $(*+)&! '$1(9,>-A.C-E+C(?%9"41,(% $!!#'*/252+ #&'*(&" "' ++-4.<-?,A*B)C%A!=82.+ )(*,..01210.' "&)*,+)%"  #) -//(/0,8)<&?!@@@>: 6423467862.,)&   %)+++*% %( +*+"(*$27<@CD ECDBB?><:972-&  %+/121.*&   &+./-+($! )18= BCDEGIKIFA<83.)!  %+..,+(%"  !$())($ "(.39AGMPQPOMJD?91(  %),..-+("   $'(&$ $ *2:BINPRRQOLIB9.$ "&)**)&$    "&((('$!  ) 06;AGKOQPMJGC<4+   $')*'$!   "!  #+4:AFHHGFED@;60)!  !$(+,,+'"      '/7=CEGFEB?=:61,(" "&),-.,*'#    #(.36;<<;952/,+'!   $&)+,,+)&"      %+/3468::8652/,(%   #'*---)'%!     "&)++)*++-,+) $  !"$&''&$!    "#"$'('''('%# !  !"$%%#     !"###"!        !!###"                                                                           #&((!'"%#"#"!         "$&!&#%&#'(((' %$!  !#%%%# !$%&&#   %), -$-&+&)''*#,-./ .,*%   #&''% #  !#%(('#   %+04!6$5'4*3,1-..)1#45652,$  $(*+ , +)%  % )-.,(%!   &*$-(/+0/03/4-7)8%<?@ >;72,$  "$(*,. - ,(#! $%$"   !%)- 2$4)7/735506+8%:=>=:5/("   #&)-011 0 ,(" # &&&$$"   %)-2 4%5*3/05+8&: :<< ;951+$ !#'+.010,(""!""  #'))")('-#269;: 853/,'! "%(,//.-) $    #$$#!"& ,2799 740-+'#  %*.12210-) $    #& ''&%$#+17:;: 8620-*&  #).23430.+( "   #%% %$#"%+/23 21..-*% $).01110.)%      !"  &,15 6432/+($ &+/011/.,(#       !# #"! %( +-+'# !(.2577741-(#      "$&% %# !#% &$"  #(,14542/,(%       !$'(''$"        "$&%$#"                                     #$$#   !"!!       !&)*)&     #$##"!    & +..,(#      &06 9;:84-%   #"" ! $ #!  "*16 8761*!  $&((&%# !    '-146 6 2 ,$  !%(*)(&# "    "$$$#* /233/*"   %* -/10".'+'($%     "!' ,..,)$  $)-/ 2$1%.&+$)"$    #$$)%,#, )&   #(+0!3&6'6(5'1#-(#   !$&(+).(-'*%&"!   #).!2&5'6)6)4%0+' "  !' +$.&/'/%-!*%     ")."3%8'9(:&8"62- '  "(+!.!.-,'"     !'".%4'9'<&>&?">;72 ,$  "',///,(!  #(-27<?@>:6/*# "',-.242*#   !#)/24551, *'# %&'*/0/,)%   "(, . 2 4432/ *!  !&+,.1!10.(    "$"($/%2%4$8#;=;3 .+($  !"$%)&+&.$/!,(&"   %#(%-'2'8&:!965 430-$  !$"'())')$*++- '    "!)%0&4$4 59: :::3(   ##!#$ (+.- *#    "(*!-4:=A DD>5,&!   !%)*+ &      )/39=>;7662+!   "       #(/ 5 898:=A=7/(    !      #)+++08<:71,'#        !#'))($   (/321/-*+)&"     #%(*+++*$  '*-..00221.)"  ! ' , /344430,& #&))+,/121.("    % * . 2 45630+&  #(+/..*&#!       #(,27: ; :9 41+%  "'+-,*'(( '$   "'+/47:;<: 6 0)#  &(( ' * -/,*&$"    $',/234530*% "%& * 043320.*%   $*/245"7#53-(!   " )27787 730-+%    &+0246"6"51,%    *48:9:8743/'   !%(+.!.!.,)%    #.6;=@BDA@>;5-$    $%&(&!$     "+026;>=>@@9 2,'       $)-257<AB> 951)"        !&+3;?BD EDB<5/+%        !#$$!   )/ 6 =CEDB@<:51)!    "&***'$   *6>BCDB@><83)  !$#"    $).121/*$ #.5;@CDA>=;6,"  !""     !&+.01/,(##*07====>:3+$  "%&'%#     !&*-..,*&  "(/3679982,$  #(**(%"     &+-.+)&#  ',/0132.&   "* 04642/*#    !(/3654/+&!  "+/12564-'  %-6<?@ @>:4-%   &-38<=<83.(# $'*-/,)# '/6<?BC A<5.%    "*05:;:73-'"  "%&&&$ #,5<AEGIGE ?6,# %,16:<;:50*#   &/7?EIMMMJD<3 +   %,28;<=;83-&    *3:AFILKID>6-#  '-37::984/)"    !+4=EJNPR!Q$O%I%C%:#/ % #+27:<> > ; 6 0 ) !!,4 <CIOSVW U%Q)K+D+;*1(%$   !).2578 640*# $.6=D JOQSSQ$M(H-@061+0-)%  #+16:=@? =:5-$&/9BJOU XZYYV%R.K5B768(753/)# #+05:>@BA @:2(*5=CJOU XZ[YU&N/F7<:/=!<;73,& #*049;<= ;81(!$$"  !+5=DKPTXZ[Z U'N.D59:,< =;71*" ")/368::72*!#% %# %/9@FMRV XZZ$W*Q1J6A<6A)DC A<6/'  !',/1232/)"!# %&$  !,5=EKOR VXX%T,M4E9;=0?#BB @<71*!  ")047::: 84-%!###! ",5?GMRVX ZZW S(L0C67:,:!98 861,&  ")-0221/,& "$ $##"! %/9BIMRTVUUR&M-D4<:1=&>>=:83.'  %*/1331. )%$'))(%! (1;DKOQSSRP M'F->349)>A@ =:50+&!  "(.23430+& $ '''%"  &/9BIMOOO MJG&A-9204%79: 973.("  '-14443/+%#&('%#   (1;CIMOO MLI#E+@19629(;:9 741-'   %+044441. *$# &'''&$!  !*3<CIMOPPNL$H*C/<347+9!;: 73/+&  (.4789763/*#"%&%"  '08?DHKNMLJ#G)A-;044+7"9: 85/(#  "(,157753/ +%#%'('#   (/6;@BEEFDA'>.9234*5!54 31-*$   '-123320- *#!# $%'('%!  &-48=?ACCB?#:(2.+1$445 31.+&" %+/3578862 ,%" &('''&$! !)06<?ABB@=#8'2+,/%345 530-($ &,169::860* # !"   #+17;=> =;73#-&()"+,. ..,)$  #(.2442.*%     (.48; <;96!3&.))-$/112 20.,)%  %)-01/.+'"    $)/379 8742 .$*&%'((( (('%!  $),-.,+)%    #(-02 3331/!,$'(#*+** ))&$!  %')))'%#     #')+- ///.* &#"$&(' &%$"   !$')***)($     #'),. .-*( %""$')++ +)&%#!  !#$$"     #%% %$$#! #%%$# $#!       !"$$%%% $ "          "##$"                                 !!!       # $ % %%$"     "&)-..-,)& # !"!!!    !!   %*-13452/+' #  #%&&&$"    %+/24688851. (#" &)+-/0/-*&     &,04799:9741-("  #'*,-,)$    '-48<>AAA?=94/)# !&(,../.+($  !$$%#"  (/6;@BCCA?;61*$  #&)+,++)&$   !""   )09>CFGFDA=83.'!  !%)+-.-+)'$      "+28=@ABA?<93.)$  #'+.0111-*'$"    !(.36:<>?=:840,' " "'+.02220.-+'%"    %+.1368:;:8530,( ! !&+024432110/,($     #&'(*,---,+($ # '-14567766530.*&"  "$&')**)(%# # ),/145566532/-*'" "#&()*)(&# $),/357764320.,)$  "%')))'&"  %+05789998620-*'"    "%(++,*'" %+16:<=<;8741-)#     #&)+++*'# '.49=?@A?=:72-'"      !$')+,*)&! &/7>BFGIHGD@:4/)#      !%)+--.-+'"&.6>CFIJHGC?:4.'      !  "&*-//-+'#&08?CGJLKIFA<60*$   !#%$#!  #&)++,+*'# +5>DIMPRRPKFA:50)$   #$$$" "###"   #.6>CGIIIFDA<60+%     "&'(%#  """   "-6=BFGHHFC?;62-'"    !%&(&#    $.5;@BCBA?<951-)$    "##"     $,168;:9852.*&$!         %+.01221/-*(%$!         "&*,/0000/.,*'% "          !%')+-./0 / . ,+)(& "        #&)+,-. .-+*( & #    !$'))+, ,+*'&$!      ! !%&*+-- , +*(%# "        "%''((' ' & % "!         #&&&&&&$$#""       "##"####"!!!!           !!!!!!!"#$$#!                !        "$$$#!               "#$""!             !$%'(((('&$"     "#%&&((&$"         "#$%&&&&$"        !"$%%%$$"       !""   !$%%%&%$#"     !!  "$&&%#"!   !#&')('%" #%&&$$"    !"   $(+,,+($ !##"!  ""!  !'+.01/,("  !"###"!   ""   !%+/1321-("  !"##""   !$$#!  #).25653/*$      "#!   &+.11/-)&!     !'+/021/,)'#      !'+-.///.-*&"                 #&)+,-...,)%                   #')+.02320- ' "         #&*-02220. )$        "%)+.// . +(#      "&*,./0 0/-)#       "%(*,, + ( %        #')++) & #     ! ##"!     #&&$ # !                        ""                                                                                                                                                                           ! "                    !####!         !##$$#""          "###!!!!                                           #$$$##"!   !""!      !%)+-..+&    $(*)%      $).259:7-#   '-0/,'%"   $*/5:=92-'!   (-..,)(&%#  "+1699640.)# "#%%"  !'**(()+*($    !'-230.--,*'# !#"! !&*,,,-+&     $+.-,,---,+($ !$%&%#   %(*,+'$"   """$'*)'''% !"#$$$"    &***)'%#     $%%'(' $ "  "##$"!  "#$"!          !$%%%$"    !!!      !   !####!              !"!              !             "##"                                               " " "!            !"!    "%&)+,,)&#     "&)+..,*(%"    #%'(+-.-*'$!      !$%&&'''&$!        $&*+,---+*'$        !%())((**(%"  !"!    $')))('&%$"     "##"!   "##""      "###"   !!     ! $ $ $$"!       ! $ % & & & %$#!   !"###""       !!"!!   !"""!       !""" " " " !   !!"     "!!!!         !!!    !!           "!          !$%&$!          !""!  !" # # $#"!   !    !##" !      !"" ""       !   !!!       !   !          !""!!       !!"!                                                                     "!!       !"##"       !                                                                                                                                                                                                                                                                                                                                                                                                                                                                        !!"!           !"##"               !"""                   #$$#"                "%&''&$!                    #$%%$#!              "%())))'%!               #%&((&%#                   #$&&'&$!             "$$%%$"                                  !!                          !""!!         !"##"!          #$$%$!            "$&&$#!                         "!                                        ! "#"                     !!                                                                                                                                            !"" !             !!               !#%%$#!            ##""        !!!                                                                                                                                                             ! " "#!           "# # $"           "#% % %$#!             #$% &&%$"            "%' ( **)'$             #% & & &%#            "# % %&&$#            #&') ((&$"         "%' ( ((&$           "&(+ ++*'$           %(*+ ,,)&#       !%(* ++)(%"          #&' ('&$"        "%& ' ''&$!            " "##"!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               workrave-1.10.50/frontend/common/share/sounds/subtle/exercises-ended.wav0000644000175100001710000241405014221624107025240 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata        |<8^DlhO">w%6Jh"hDXzX=9dW *!r ,[  hMe [J  ^  ~ . ~ N X,mum.0" w`I Bj07s<]6<`f}N 1#Qn:6V 7D9J>Zd6ND]{a@$9 ;Ef^ %<7[@bRTW}D&V83Hl n EZrB   c } IM Ki   p0>84}6~t`x.Vq6$aKWW"%Ir0D% q5]u S(x!_x~`hu"#CpT%8;GBOHWGfb Z >R8 Z8!"KiH.V3"z .   &   i.\ = +h?+k ov3bp7^du}Z|6$ cm7|c7oj(3S! w&OAU;y0Fq|`-o3DiKzp~>%_|-mKbj$VTb>8G*C j  Sg 4tlq T xP 8J F {Y   u g _ n  2 0  [GZ&L086Q$XBIo =g #pyL0BdY<vEn-l{8| + s w^xZmB'5S=*SQCF-7iwSQD E0 UI ' 8k*} $nH 2# vF   -Z  : 'i i :: *  $3+)syzQS]P]gmun$fnkn]o RK o 3L J$Wyiy*Z?C @ FjHBQc1.HD'.V/m  pAV8sp,S {lf  R bC B  B  p@G Mp Qq = jPh;e-raI0z|96~w {g I14{Z=A ! !^>Gn]\RJq*e[9CGW5p' AjV T &$&;!*D171 a1g*4Pc>8lDby%R[c6l 1K b% J) "b|z-,lF"G<j8U*jav'n q #' )   k m =  ( rK d 0B#g ?-A8 e. Mow~C*Bx^$M3?d1 M =QKQ9D7:g NHbO/a  S\%42L7f/L%> 4F ", [cKa,11$ S  l   ) Y b ( M: p -I&k{5t!4W rVfT3Ilh\ Z*WVj=ia2#Xu7D  |Wb  Z  B%/'8[Ao+ |y,c*dok!Q*9  W X?  z~jm|6)gn PBa E n|dq N r g V o  _ L  F R74wn 5 A-?#k{}@ 8eO O[1gp'Y7 :GY/YWAv \TFY+vef!A ) +|j+$ `NZ[#LS2 $} G5'P  l ( k sZ4 % tY-)L  # *D M  ^  8 dCr T  p=Wnu9vrO ZpS7W#KdA"? (dSc+ PD%<> v<_OE-saQXHU# ?OrvYiqC`dJuO6t?dX.;>K\ ST   # /a XDPD &LN    P    Cu8 2E s~SFMu6Z7w B%MOteI; @ ~ &o,:*8zY+7g7i| jpQB"z gJTW52,m4AK~Q,TF J < st `  NUK g 2 Y- IF   oV Pf 0  Q 1z gXrE,.P["[. L%TW.T~sLn! [  Uf:3~r ;5j "CJ<\h=$z6AJl2Nt<V"`tuJB$;*8O  R  W jY  9+|)b  H\  @j s ;    0:   1e kQE+V E5^65"7M8r / 2n)DUELek k]c.{R_jRXTOBv&!' |  'n HL   d \  S IS9~JU?gC  p  J rk  A F D 0 $ D d & ]_ * t t+tdI;J -8XqgYmLOW+T'6.X 2 *onAk]1^^5- / `A_ ze  s ;_g6( f # ( pF !ztZh Y x tS UP &2 %)2jb>3BJ jf^MSc}8W ] p N ^ {(b]p*+(4s'mk9%5zX$`XSpqx"i%To an VP" ^Gm']R^ N5/x1 $J  H b2g  ? ? f#W M} Am H i f H 5 ? #eoob7MW#t ORX$nC?6d@m! UeVzr<fwxqNHm9k]n0b1d*]BZEU_Uh WKCX'=utJ& ? ^   J  + <8 N2   axvoF 4 0N, 0` n   7^ nZT'q)*?Qj@ ^VLjAIF^XAG/A TIJ{PUIB^ %\g)ht^edN;p^k?#|yM\;9V#^mI7~)]?"T' A ] n7 - a   G1N\gJ!c `  d -7. y:_^wHB mL K  / XW>1QFj:!8m\@:;#(: cRyt=#V0Z~]IJ9s*k)*88\=gu@Eq4y@?)xYY-Lp& gL S  5YL?57 " $9K^  y 2F )@n:s . P Y e  \`YG*&"m_w)%?i=O{Z  & ,,P0X_ #Olrel*$2Vu%`Cf2[Hn1Ab4<Xn1=?PU6>88 X c l#c   Id [  _ *Vo /c    au Z  v6B=D?p?kb?*vuFBy(,E2+R  BzqR=k-ggk 17"*/"=]K|#eGlX8FJ=]9_=zgq|~>u,<? A @ru^|' yo g %V{6,[L  } - e W  9U / i }   ! :qBtz owpCMu? ; 446pGMZ#e, n*G "%\)(N B,^}bE(% ,6u-Wr1 E f u!j DV  L) k]nHL   ^ eB i F= \  U  X gc `#F) $9Wz6oHSC;hn% LC!>->csM;&JgGLy{ng|t cav:?wC|ARIOyf9z-\$<CHMj A~zP61 n 6I9 K 2  b#u/ ^   }  5 U M  :Q LOtMJ\`'L5Z9 H&')*k>!Z&`+d QL/_hh!rY3"6XTyYh=8g+)Z c-\fz}z9Y{L>S %\, "i};L+ #&R  l D GDo D E d  U !L x By Rx=]io^o^3)t9:\k0o. 'u '7Wd1cG&802t(QP<IpDZ ki^v*x}ZWV\zkokACeN!TkG8[)3=q^0 x i p? F}iD 9 O3 c  {  x.B]8+bLtAh 9b{x{CMJt)z{HhM fV+<75l^#Ptv\Aspl,+^dVUsU[t{)@I`z0z=`sSL._S#~ 3zo6 HP]e!4VYv G l(I  <  3hr#   `. ' 4 uZ1NG 6:'w 5/3rwQF`= z 4dn,4=RG"l v7G2i46ElRAD*U-?&zgoL4#6gyM#n{jRK$pX[B]F(h 7z    4: 5F 7 x =  2 | J ) "+@rdiEMDTx=u` _}"'+I< ) t<4Fb\KQ9Q:i\uD @ -Yqij1|f;2727^j K/B*}I.)^D[T[Vgx h 5[ ] !  L4 19 > G K ' w f H s3^5y]V-[ i(' ]h@i$6o|jwsF2$UTJLZx|;(\nOx&a 2"I(7VTQZ{SF?(%G/O L7{W.WW)!$Ik=% sq;ks6yMAF  C) T f)  1O 0w  pEj10:hweZZ(Rw.w!W8OU/f&+'koT*Y x|v\d$BM ~]n} 619=ej>Vh {]B>*^Fs0#w9  l b i [ ( C  \  t'H KpKwxuqH+5 (sYi2d;IJh!COM#6oy $g6OMBm>$GRi/4(3T+dmU36\+sXpvO{0>fZH N D( fr   &x  , ) ^ p  ' @qV4'(sOWcVL5sr].4}z~paN7D:#wePUOa$^\4K WqH:#em)=3n(QdipgSR)96 (a"j7~B,l@ w'2B:P+FZ^7,9fLBn* -_l/-O |ysDWBYZUC`+xoq##rgCDGQ    / 2 m   " P q[ YTD`"@7ukg QKqK)y+eJG}upQ)m"&>A{&=):Lzb?|WhUF}J!u0?&i=X2sx-$I ~`BieqgJe&@bnc[]_s 7 V= 4 B C ] n 7 + / Y g}}7gg! gPo9p=V << <yq N<CvTxnm^O@S%zv9x`xw/`:a;1E(9 O9l4q L3;7+ ^ io_Z]>TdqRCDZ}lMLDO :oPp0G=5'm]XL'K+laXq!  ,:  Pa ? B  (  +  * Sq/jx.Wj6)z1Ie:qF *9I'~j   M0Zb>=MH+dq$ T,U.kCc/^Y 6kza7|39Wc& u8nB7&b 0 Y  {l b m  G U   # I=<'[g1=.NR8f1KhZdo0$NKYb#1&+] Tn[Ja+6M|f=W[\R$Pbo~M ,&V#;eGabHAsE#Zg_Gv!|l4 $   _ T s x * U [hkd ifRU{'jpv(qNyU2w\6USR B)C B    9a   4 *  Uog:)=0yIGWN ]3k B6tZF=^];\Iw]Ft Fe^ <' jkk M (U 5M edV/gSeA%]bPG*7|AGRF$P#H}d  B 4 b m H  2 $ P  F Qo ".R,c/Etc~ +>c3TLy`6..|{u.v%%Q&4|Mn:_GlzfD?V'L6 55BW]rs8YbsDJh(V8Ecj(3Ri bO"A@=~7 * 1  5 e  g /8 A C a f"dWd8<'{84{48ol Z XH6xkAfRU4[, S\I S)788SxGD#8a;PlXAU*Ob0p="W;{J.9JiSkcwp^inH}T`*XH16y(e ]  @   E    QQ   VEeF tNsVJ7  J}-q]: i]0|)w@p"FegR.rH1EgzC (,(KZ byuOCC_ afaUi}cz(C oXDScf3&_8(H ,R*=w4YCJ E0{;{4 m  -7*% Gg [i<j@ e!3T9t8o[aND@ d[8*^Dz' 0{ &$ @G j1q/g:izhJL|[W ~ q2"5  'YrKLa*GX x J},=:}   Q " e    \ d IGXrN " u j?SZlx<- ZN  wo1 4c&kIAK E  \' 7~KL/j/&nev@6!NG8GEw7uTi9s g* iT(  > [  }@= a k   3 0  o- J?P]RY*i#~y>[l;u@w5@EEw=hmO 8a#;W HA^:dG!z$FMpk !W Y|<?BpU6Z (~g3?CuA](a]AD_K|}xd ^Q ` -?YJvAL ( %maqD@/E|^jQ!( i2?  .<'Fw>odCoM:|l Af  9 T W&6qi,Y )o*a> cp7~2j , 5"~p`A$hN hQ B&>!  s"  Cm 7E L4Ii  qx.i  MB $8I {s05 &fS50"T T _TLt?B+ 6KP & +6vX  Dv0BAHM~T\,+6R6=X"d( y" hQ,H C*]V>H awk|  x Y TUr 7 ." K Z  o gY $H   + Qq"{ "%(_E*gP#XTq|Jp)cC 4 K}'&Zqyy&` CKu!W\B `1Mgc6d)vv-W_9u B (c8v!  oRK=A @ Ld /5|u4\wS TGz_ <gjbzSp9rG"_ $ ? JvvxEx> Oj W nUYSCI7P)(3]#! nT\~|T 7yvtYCb:`  Zo L3 qz  *yJCDh?C Qg   y Z * X}ur:JTn r \ W 2 (J7 n bDkh1Y0a~ Lb4-<Pb;Z85f p;3zV H'8ocU SW; za   J L~ +5sD = `!  /   e GZ)`=S s   7 I ! k   _q@f ~ee;YbSE~-oh ABz*>( GK* R  :M Z=z9pV}( &Cp[;nTWc&?e cFGs2m h- v n \T|} G *G =.i,_<gK|-b  naI!b B +?8b&~  +Z)D?2x4L8g2ik#  = \ XLEL=d O />3 US|{ ,_ 8  vfJQ)QN!()IIW3o(E#7ZEr41hYs 5dr [  l  mMqL r ;v9^ y 7 1: G2G%[$lHYGQWd\> *[ XNaN!QOu],s!=l,[,iKOz$b1qW9fxi+K:#vurcP- k'oeo< OlLTc \   5X <?  #K gZ X&ON z N_ @ O " ja    krHh1B$I78010:CC (,g nZ t o-WaXVVkM=l6  7I +`f#9 jaf  m`  uc eY!ei A;;=oP0:K& 04^ dQY,~  7YmbTu%#/~0I"t&DJD@{#4;B % 5= P56cg]z5^8)keo!HL&F\x\= + rgI5k V.7koc 8 ! y r s X / ~_9 OBR;%\?H/pS @dRY2?5 wB  A C&t@p0l)c\k)viTPMMD&O .(YaB  ` lLl*  3<   ]~qd0\$>/"  aa _ L qR*lWRZj18?N  J AWP+t6:jJ|g&* s.T E \mc+d$  M 2 ' RY V=wOK BSw obC8$]tU5Tmm8 _  2g `P(  x RMk tKBdyX9-s<dDNilPv:IN Zb :2Mi/)~ #q[ m8oT! v~MZW?TkI<A)f~C#\PT\},EJ:rbg} iHg H :(  sLnKgMXce Y   i : }NWbDyo_ALE2s!AQd"iYsie.  = tZ{A qU  GC> jj )pc]/~s-|SLbPhh-d tg[vP1R)kn1COH TB N4H k M G  ]! 3 y $Xs3|fjWnY(GOG,5UN w xF]!AGRb;6\Nk[c B{N7jU9Tsi1v+)/?kI YG,jem:rQB\<^~06\! [: I  q f mUnb- 6   z  $<aIi  { 3 3@L X:!AJv[WA|:2WxV>bv,pg0`$9}Z-y66  XA4 _y&rQWrU4oXS4mi8In@B*i<&H:$y@b:I.41} n~^|tkq@rMl6*_ca]=YS+a/  O l xf6Cki 9s!(5M2%5 KT *;>4"IIH BAr T 0 =ky h#  )  P I rs-'{j9 =ISGS]Y{lCQM}pt8K]h&ZQa8v[v^  Y e  6  m.5N@o?@[@m> Gx>_Kf*lw|a++ nsX{(5.{d4 5qS<K7kvTodPY.^V{7$& JrCqL]~9j\ HhIR\ `'c( |*;6    %u 2 {6m 2Mg&RP ] ' +g1wZp"0"  <,  $iStoGqiSy n:.gO"UDM,u|F"!rZS#*?mKd!2M*h)U &ac+qARh_MyC4" _^QU9YROv[}'b%b$pugJ  tz !b a"!8ut, mS~Fs}hjSG!]45uh-k )Y ;| ]!eEz 6 V q ]  O k m WR yI Z8x:,${vK \k+[ckh Eij8~loy~RyhgS ) +^$` -Otq.;f&O-XruW-^-X18aU.GMb8)*JA@Pf:&1Dcr*(tp63^S=:_m]*>06THt!/-h{o$~6b}Wi' cRiC:  qr  c/-    f7 d 8DSi)4q8N$.1R3P ; 7j_\[\DA"'MNZbB}|zQ  tq?_M!!6tdS -1i;<"W9,!  jcKg.U{wC61{0I^bWp5`{I?L 3 RTkGP0MN@KMP?p8?nniX'+pcb5 I]r[ZRL |InH"%0fQ =X }_ &  C ]% e / #7F6{@ok,H<WeA $$!<PGANS(|GKg5Q',  Ww%EpEOaT:o[{?b My  I|Km'bC orsy{ c'_#GC2JBKU Xq+]C|]Z ]!eH xM KeUC6,F (p 3 er _@j@ C \  8  +a:oD +Oc&pj_ b6~zdZ0Pq/aTxLB,Jm]7D.)PW$qU S@ KK, `7Ir`O*6}aCk%@Df'JM=16;c]}"o T Q v9QZ3P}'nz4jcG= 3{:dt We 7$F>X/j:b#1Hnyaq4U5kIBo 'O}rj z 1 ; I 3Ec'@ J <m62YhUK: Cc98=;!w4 p ' C h C?O'$6~Xy$<tBUu`x]8 GH$1[)Vzx,*\x K + v ^Z9Ashkh0QMKOQaYuw)w8BO^I!y-d"{Y\i@s[ {ymcoB5&y5 YyPv ` g I|Kw s n )< hCH|v3 S K< |N5PFe PXmj$x]/3U4<}2hxJ P'Dj ^9 :vU_D!umv-j=k$x8/npu+;qgy~Nf  ; FUH8X%\T^\2`m4 gGHC ?l+F(9|`Cmg:UE")#"r`nJJ&zMcrt% n | j _y4 h } ![ne?'7PJuq9~u 0 ${ + r / & 8|LN&r0`  UE|`>QDYR)(-!nhm M+81_05 U ~  i K^ B ;<gf^n{(IOVT~|(%p $# GSMem.yZpe/rE4:j7jG  l P"H ? a  FOL   5Q7WMP 7 /!  on 78Q^ E.l,:Yld` o8g| ;|H|BZG6Y7<{ p6a,ax14IF;?2JWI},jZ u  %9/m!; S&qlXh- ?tyPZRCs05'L#7tK1yd 8_x,vDqvoeAt_E MMw!2Czrx0Pd > jk #  Mp ="AcF]6M@$X8}q-S^ Q M  LX~66X~{ZTTW[sF  <l;# \' x%6@qcLg9 AS ` Ne'U ?   d^h#H\}4V+N|3k,h>QK(aD8K;Yj54oTep))p<dI]:s.f#>:\|gM1! u +g  &  q  ` ]~T~  Q !1 $ M; /J  ss t s/ bEN>qK}m =r2x>RE{]tly2C`cX7/p`m/9qU_G6K}@x1Sc.nPon S ?+1v pH~g{#'K<-N5FLZ;3KbmHTx 6uG~ 9nE[<4\k=v-/&&Fcuk?aT#GgUfe8=U o  ,  9 + i  GK C,2z~[`^+}t&$JkaM6Mk Og[xKo*\}sbpq`,oKUAD}NF'$rp r,l 7j %Ga] 6 9 Z O <"s!  @IOPg#RE(#!&dF(FF'f%! M,|*:\XJH=< }oDf.1:>U@k&h ^ <U?q:(kn6rcX  ,  ^' G1  Q  G cC* 5OnzxOD$wKcfW78\VQ622LjS}h :Y0$EI~l~Jx;m?}7}8fr2{sR1^ V"(fy/i 6a d FPrOR'd|>bsllLA~dl4'e<~JNbS8b_hsn _$T6x\2&O"-'1\%E1 4 y7^xJHG9l  g B ( m;|~_f{2b$ \E;6Erf#AmJ_5Kom,*H86`|?  9wG2yh1oDng{UwC!T__9D N g 9 {Ay$Wp'><\e'tP72&1yOPAAZa `?W  j2KW*lD$)(7wZ?|S|=4 e & )X )  o 4}D _:# yR"7+Ug2K gBL+V~L?[S=J $j(\AZ%wrc\XGSE4u[XTD>%EKO\Ay]B  ,I ; v Hzv a  h"[y6O:.h:PzcccWzz}@SX.cBQp:k,|b^/b5qzHp!?/M4Z85UU'd < 2L [ l m 4] /: &;a;jm002.]; 2 1-u,1Nwk<a@Mk8| &vz#roSEckL9t]({L{ V pfm+Nt^ 9-2` S4FAT; KO Y 3 -WH%!eP} S8"#iK0 F_" D}p hg+4Jo3AU3>ab$f:/aW)*L@Wu ~ :jY@85Pmvm!" #1  5   @ a->\2[vV>L$KVyy>I_G! zNf=OU'^E.B;P*UTz)6(9;By  WLH]w5oYB&K%[,]d T  v tU   p v g X9 9nvFH:L-QI  hj|C,Bb:?&)Oj#j3 :u!,!7+N}+;%p}_ % ,l]J4E2PYLs<j  `B 0{`8`<FcrzpjY*ta3bA(7X r% L Gz&ar T  <   JjDi| f ' 4|peNZ2(D~&kD6=` \ f  iDNz559 RRx\+F *H43c'2n1gF`9\SyY-[iI~wg 7 &,    le &  \|B~Av%~MnR' u o  . (*V%rShF g&huccyfRusTEy %wQ4U r[3$8%)kyAcoX|R|l,Tp 7#5h(ptn#`+^=F79XW=\x+3`Nxv u)F_~z4zS 6 8  { 6  ntk2zd(T k  E 2kp^eP-}hsB94l  E > }o })@Z{!kkc\<WP4yI+G*/3A]d>]$i!oQ&Xp@.212'!]M J0 Y2Xk   A \ W    ~ Y 4 + D6MJB`    0'&@3/wxt5o},B|ufB+sPQF? V8+N6)}UjxlMx ' E YL  E8Gxqu;iuHI  ' J l8%m   >?y2r.;DL\hNwaGsw\0;o}&z2VFe2xn5&: .Xx =tX xy D & +a   L.98DW3E&3(mVWua@[JV@@.&2@]F!_,/WIU#a-;r5XPc, &  s L@"@;zCN? 0 3 X?Jr(wD'u[!p~v R'Rg "vS*|N,)kF[j-V>@r(@v C>5_cxl)Z664=H$M@n k !  Uf NL 8Bd z @  8   xk N: HEP g+3BS6m?>q:n@#Ab{R(?X<_>+9o,UQ*gHa]S,6TU;BL>%;*l#! &pC83Y[bU+[X xv'{O*3 !l[)n~-u B w , 2{dEkGbI7(pt`P?eh9|Y-S=Q,5j^Z& "+Ue!yd$:r $  9 ( $ j D pc-`$,.Q F[>bVSWex\# cBZ^l$;7G5ge u9+Q w A] cF:#FPny JC) W>:L2Tlr3v0yq@[ /kqd x %}4l8Ts@gmVTUmm*X~+$&i )^#r9$"QGE8I){ ?=f_ K$ " E~ d ln,  % s   @k / oiCW!fc@3jBkcZ$yQi{,)VR`I(4 mo?7;Wy uJIEi[&:|kRgNaK5g]wD=;eFFigxXe|cddm-sT(u5  0 QM{ MfA ,k,%yKeC*| $ w 9HNKD]4rfq#xaj6;^] 2 Z      sZ2kF o[EzF.@B~e5,q/ulR2< : w|"oz2Gyq$!*HOq:yNet\ JPX_I"9QlUom]_v\cBkvBr1j !B`X3@Q&q7b8L@L9a  v |z`bc]WzOS=x@`VY(c" hbMF U'5=MK- hB-{m R  r s 1 >   ,eGj/d- wfkz:} yY(xMcN}IXNsYGpf2^7@Y&--[5O&1~njJ >6EtO#$+ ijR?ScF *  nNgA3B)|WH bx&#ct)IaULf[3Ut A] bBm %   B '  dZ !]n@'p "lDf$K4AAd7Uhe   *G bz i , zT  \ y.qOQKW\ a 5G4BtQr 'W4>9bMC!W5f=%m*M+BsT[{q-$e=mkfXGkrU}c;d   hJ{/* wpCZHxTT#,2Gj,- Q>}'\x>BqRR]~h~<41}"H1+}.I>KU[?:h4KMcWM/ R >c y `p* } - { % V & a@H(70 +ckv?RZO^c:u/:iJ{NP5gI 0I~rU5a@dg[U]jg8&`v3T$dy9?` X TH[VMD|ssr1~9wwv v1~l6Pf/lh=a(o %7Cm  W c" y S,K4LkuR5bv8 9J?Ib3u"  ! r  U p~ 0 :m` T{];=/ &q/{b+bTx ~jM#bJP_&Jl"o&.mwN38$t f[G:^3#(A~^Ep(I=!B Y O bN4@rC QdiL .J9|?o|H <SuR'rm^q}Hn eT*|r>6^jjUnT)V"wY`*,o i 2f#4  AD u f  r u 8 Y & x ^ mc[i>#C{1qS~+v<k/-uxh \X0Q''$,Ug^;%GTB3X? ,>;K3F 2&A Zw0+ R   rby:s+P,v}]#u(-(9\T!Snj,{ IvrrtJ (rdae+ 6T B 879IE8mZklNxB-VG8Ef;<:bZ{BINtt F_ ':m7"#v:  h |N  w\N?2EUFAI6SEP1|A[f .% -0)Z `\!hO?{_=vXI7CL|9 _Wb." nn\0bpx%\hOpY+z=2-|H '`13_;3+5w0 /lOceq^}Tw?l/Ned>WHrwV )!g}#%Y^zl}3@8 ^i{3qZ n3bJ6_]jh5|U@Dm63d\6pfaNK RVx0jc.,rD.9A #r|5WehmmU}'}e a  fzzncZEf}acXQ (n" Ihd} |[pin(CP|&v]c)u# @h'w}aXkM*fbQdz'WLZWr p ! Ba^2 j8Hs6(m,!$u }+4r8`J \d@B`} G Y)_vyMoOQ Y"OXb%t 9 ]gQj  h++d\{+xuFM/ |f}_ Bz7${Co-4w|fylV rn`cP(Lnl.3CQ I. P9!d.f1{J82IXKr+r 4j5f@"j#@7|J9@TDyc xgY 0Z2&X /iQ _ynGS%joPua:gS*S/13^0p!H"cPB,Pt}uF RXf[7C  8W2/'_DeP~){|K *:ZX4 ?c[AjP#<a4k8xs@_$.+|60gZTbF z8|MeO<Z 5 0 8( .ga.9 QWd9)9Pf mHl]W%4tDN\~'%gL:Q+T]8[=*N3dvNpCpbE\/U${ DGaWW-U1*0K\.kuAGK/8} u~ 004{ sUFQ(vt DIad?[#&f2h>`IW3i/ `cj4k3:,*9VFy~2Jb^C8C0 xY\!(`wvy1( )n Qh,4 :q3:.G$xinJ4>rt;*HDDu" />+YF6E@Sn{$ <79Qs|96vt[N1(o<32%L %JGT@& YI?&-&~]]IanC%QC86BTfdxzm[ar$AxS }5<A?uPC*T{{< _Hm0V.U{EVTgb1J *=W 31"s[SC2gF7}]$-a%e=u6s2IPm6y5LP,meXfh7H;H@>RsU\'E)9D*N=I)[,.gs.'<QNS X%=[t 9g'&iF |aXq'%DZ:\  sqdViY3-u HdrAK[$2h7Jc6FcP9eARf+\)z@b7'J[ I8xFgV|dc:^,em]$R 8%U  00@EUjf,Y@u^s@&y.jb'WK=W?;?FyzOQd{7#KjZ}}d2G`4C3h@A=3xcvSy>+C2q/_*kHGX,>#d^}{- E}8UO`CMHAO=78&JACQjm)>,*a|1tb47Ga],2A&#w&C^NKTAYqr6L=t_<;`=C/l8,F>MC1eT" -%DQBJ7w}z3 M"dYo3I_:Kqi>B=tn].$iPenyy%u5O42%JLyK*f OG p~yfi/tL\|xV,ob] 8~j ;+3*QM\Vk%=@N~ |jAds#hrS T#xMKb,is,Qj' /6|k=`#j|X~Tg7^ 1}|;ZZO*irrUlc$jUj PVQgm9'HeS(H6%sS1ksO{%:; wz @"3ki8M-hr"P\~gTAE;]` +y=fz&wK<my\V\A<yV!e|CvPzH?m0ZLY;8/dm5 ]O"1Kq 7Z!e3WguQ(=H7$@D8f]p4A0~{]8} d* OvL^"y  [!l kH<3'_0'4 oxVR7^gb'jjT/&3^&sM =3H'"IF}!7^w3 I9w 1ye*10&~l ;cw=p:m58(_p:r@7)+j%TMFd[KY2'11J3w{'l]ng7cN\Bg {<0%>h[^}k8Av/\O<JO|1qDd$~x,y]P #a>"jn~{"aX_B:68_:NXd'|nT`YI+X3X]j:[ 7\~X 3:az8^Jq  UZTB21m'4A=Y6`_ }98OHfJL=q"m& MJuOdo/:ph,S_:4& `w42D-F.dA#'#nU*N\tOv^ P[),rl6Go/>'!EPg2=>=$%.9Gm]P7z% l 3>03r5sV %ao$,BZw@eW y@P n0"C<wz[ff2@49f~bl` SE25?7dx)= ?yWCx>c~ 6?btt[JJW[ ;b<#&HVWzu5 g*<e}Ao?F*pSB]%JAM edqA#+t _eM+Pb)u7  .yX}V89e?*y]D0v}g.&+yq eg}bt)\0QO0^v<}Y3>$8*P*CSsJ)q@R'uF t<*'4? Qz}H=c` j7) =xo a.q3+?G|8`kfzW\,{w4=0-x6r+I*gP`^]tR5@{ RKwR'[e 7!-J(:rOPt_2Q{=tlFsp28|fRD*58*Ca\@]uz7,^, kI lU r`.m]4! FK 0V_'`b| Tbyt6rN>-H"A{&1Xq6\57V(O~^N;~muI lCpa=k>RO'.N95 )J!-R18 Ji# nfOy7}2P/n&"!"_VSDEClk^R KQKn`/Wk2th3 /LS#@`60[gjc;u%"Jz/JX6>Ex}&a%P/4TGD/5Qsa|5Y DF cG 2 /C.j0:,C~{(iGc{QytNg?FO$8{,\%* cDVrJzQcs>:.:5?nm@`8uVyN`*g*."szx!d"x)D w)F BM_ihO~\GRNorVeF}!iLPq6>LzZFL0?? q\>~zPMT"*09rs{_*E!>/ s b3DNR_ OfSD-!_LRTHz1DkeUz4Bh8/$[Wxz5@@c`"O%;?i_Pj@=a7O#]8?TfE^@.b>*"n7=Xv.vGbv8WBtN>m+':xFMs_$x?R%X 3 zueK4r]2t2uu^oO4!3Y\.nJv,86mp)Z,uBsIKnKuO%&54C1f?45@5~2@7G`zvRX ( e;7<it:%\;Uj[fB>P[H&+sbJ%^ Wvv.j|7[/p( .rn\j8zXXfQTAQ_/fxX cx Or pb,HNXB0om'8R=7xw>3q* aLv&>\$Y=qX#:K.B0k$507Me]p8@[ hLI?:ku+~C& m&ysu9^\%fX@kD4%h2r'j-qYm~ q l3<Y)d ; Uso,t~?C6g4Q}Gv/^i ` ;S`>eiA8Avv7$8V ]OJX<oqlTCq(w&. jm/-"@PG^1D,W*FJs<q49%_8oKK?px(eHgI|ET4)/vT_yR3Ti 2FLq{JF8.d8UO;4U;24Rj$J+x2/O#2d E,+W KN'$Fl>":KFbM5+xf>JjbM&X|_ *Jb014 6IHWAM;G}>O2r4;v_HV!!qS? BDzFX9O~g\k3u#M4;d@~j~O>)':1_QD?7>h3[e?Vg@-L%p KT|8%tpz(b3 [-r'^:^Ak>a5gO1^m-L(J$P6GiK"-^l}O q N2kF7H=Hw?cr6CdI 21.V8 +' XPQCBI#KjBidiBb3S3S8k?:R2{Ab  @wwNU".xak+y0hK}?)}PlWU318Ox(CzD-1wmIlDD_F+HA 6*X2F"@IK ?@+Rv%*i?L~5>/?U+'KE<|g#^{j p&hYW>eu6=;B^ClL0nT(4K%#lw{'0#~DTtE E=z>90]TjV{ cylns((A#j'i\'"&g%O/_QnEZikxG8|L@JG${]s YiQ-u]X5S<Pl-Q-62MLD.g9{f>RmXVd2^ 4@&(wp]!  rr+e?MoTJO1 bk\l 6$8" uT#m_P%;ce#I   JNf3oPvq1n;\%3 YZ_n3=}b DCqm#>lTKptztF=7S]=tUb'hW-E2Cj`L A]L8#SUoW,/81/C~T\CX)x)]D.5=;.;_ickd R(p|wGW6Ounz}Qn}jkKD\Mu;Z/CAHV&p+M8u$0M{f>1E0)GhDF,/zlpQl*q]V!x q's 5Yr/yjb!4e2.:x[iq6L){]ntp@-q{R-?w)s8 m(!$dZ!('=`3{%]I7}ZPj6AH O:/'3>WmMv,<ecvi'ZqaGC,O#cGbV/Vi~F iE+PBRchs*2Q9+xo'f]]@}N.aYLo !Nkw"=?=,DC?\%u\WNCDLn rj[Zv]]s_N{mawWpU[.ZUJjr<X,] ?ls|5xtSzY</F/ax =d%S`'! Ll }:K_[7'M`^tdHbKI2q!t @$?oSG4=vRo  jis^W%IaE=F x X,pm>  ck_S~*Bn?M|b0`1$%z*rR_}G}!to{zbP%z2^OX1:FbtXGZ? pf%1a%vLy\*q(FQW?R}zBh8#?ZkfD CDXh-c|ik `,c{gBWkA(0jLH>]VK1{[E#l }?)ik@r0b8Xm>h}`cV wqajQ~/u}X9f7M[aOWMyQ,z=6ZZWnZh#*aHJ ,n 4ReLJ|?QCx?9oaIib3lQ5l9P$&cYQO[ G: ?y`kp_c*_y&.3vf]NqE5' *#SN K gTXft]BzCdk-t-2R+FS% [ 9gcw(Xa!%;!F/FARcfhNS,"]Ei. wzzZu) FO k9CUZf_ -<U^HFlO]},. 0BQ C> )0hDiHu08yY <$0Z`RfxnnWUGo/Z{* y`F*N=j>$u9`@oN`8XSn1@G1UOx/$r{6XXL 1Svy(Ojg].Uud?[=\1oME{mjhJj)dqi81VDE` X kP 9hdR1W5Qu"A%lw]9e9%|F:hzz-5P !&C/~I'w5  Gu9PQpZy7p &n"20$0tsd/Pe8lh_4 ZK< xq$T[FLnQ~L V3tV^6Vfpp\ mJK/W2xDn2A@U]aDTx2+nDl*k]R0vt"%t(q:qsct,": 7J\o+r}z/w:'R l~u:G0KzM0F cTy$1N 4*aPto8gqv#Czo,ua>*yy\SsbuhNm%m(LfGrvCK/"G0QjE&q\-s1BF ^1%r AYv+_8yT4K4z@X=KyJ92V?]`wPP4TFl9=TyOQCx_6&rmqg;NR:?:/wE}c'uHm6N_p/U{aWuWv2#KY!@(=Pw|9^}0%]!9(>Gb_&VuK~_to5Eu WjCv:9p4I TA)cb"9UyU\ '&_j:v X1t6c-o2Zvhz^W~)TK ?;~8XA1?S 82:FF3SN!&m,y)+rE6 j M>0U5 xbHm>,c&Y>]e.]~ nj qg D{NnWT(/|"1~NU5 N[A9m8 |dOWd3#,|={IhU^(%\d_D]+pO .yU;}Q!b Z,td f` 0Td #T`_K\T~<ao(h^*w>Y:Yl in_(hy8|UR5]8NtvY-QX_H 3'+%hf?A3<Ad|1atZ MK0~{_!W@l*CZ. V*</#"Q6Ss ux`9H1LZTp]:Q0V<tZlYO *oF4%Y( -f +zxvKDGJjE <akjQ5{NoM83sP1"IW8|LSwf_^K[08m]#+>Q8O .912\iQ(}p&$ SP1/u6F|Ev W!:;-MPM%]y] S*4C` w+3zK PcFU#~\P[x@/{JBF  Hc<0y0+^W9w/y1pxCS9ftng/=e fnQSKO.b^a+ %)51" ]!bSfI&8&5 r.H*g$*h{~Gx8!eRdN.85gkcv4Uf4}?lH?JM}XeOPmUAn}2WX?>& k"Z MiX<uv*H)$ yf:ee3 BCB~sY^3llE 4$7_z^(Z %?yO_k8{pS*ig8=vt~ tw@3Y6eAdwK2US7TxPM|9VZ DP0>pVLEyHwYYa5,#lR!poIL<&,)n@@7& xkD" @tWy\~B)vW%,5-y\hF(%so=Ud+Wx0X.]Ew`?KROI}Pu2xuQxWxQ?M;YWwIl/]niN g*w:xNLh)>8(J<6l,*USL$`<$YJs\& x.du@.PL!h8c n Hq8uW)bzpgQ'A(lQtajQ2/2w4w><x"SURs*fW+df[k> @NPKk<LQ _L5eEE0Vx9#L{(=+j w^6V-vAm=O +E KUn S|wh5TdZKYK.DxXm2|s*:>.rW!VKFKj-m(Sn]%WZ 0nO240;jN-5B 8 4*Bb< dh !;Ytzm:E.QVF8R#NJ ^czQc  Ll\WFvnN~f yGhrE(Q#Kp o/wg1>L^FNyYZ9(+-|)YA= ukW(l _Ja"Nw>4;kk~.w g5T+DsSVwW|sIA34L(j}&Pf~3 X*{(g;  O;,bbzN14L204b{CDT24JFb@N;m/]kmOYDGp(V5F:w8zWM&5]1g2SH`R :ul} B ,oa W ?T(l)}Ne p{v,)nuOmM Bc~rDz*R"FhpLUun"_/pkjx21p12?bfFd@ 4>^n}&-=K:- *.< 7eS1ZJgs 7{F8LQ25O%1"9}fr++OK{zOe`9i/]<5:p'TT>sQ)m-}\_y!86ekR)zX(h*_D$[Uw~E&jF 8L54p~ IvtP5c>a:&{<+>+|40M?r FqH>lb qQ{p2?.I!?A6G[jpb<FG}&0Dl0jnW&3s4^,q\2vu@kqxQh}|**S'&8 p\ I&W6#upBK.aGi. ws@uRkYsuZaK'yTmAG\(T&{EXl:* Yd ">cC-S0g'H )3u?hkRaA;1dj@ 7|"wb4M8 'a&y ^)n,>G6Hy+/.z]i^si}{bFu&I.J`$GKDica@`Z{UbQ|M)M/PsZLA^z[ P'i#! $VjR=Z 4N^q#">(X\L\0*F'* r'VZCs\OOu}@MLS~ q*#&<]B_Dd\Z3!J3/C A8LJ8|dSE#WIm# oUq{SZ),2|F>Qn^<Q/32 WA1k`yg \8^^mV4Ia"K#!sKm{nqC.?? H-wh8};S+6DwI^{ewHXQBx!]GI3i9pX@keQh  v 4a]zP`QF [clR!0ZWneraMvf=-B@h(^=rK } $Dd;$0qkMqmV.1yO(?&g\E@PKC F{ItG^"VR+4IWR8n$H j/\a[6(T,?^a>ekP!bOqJ*IVuG)WZT MFt913qJV _`Hx=iG9$la|vBn [+~F0#,A}HI6Dl&R\+-9g~) 3na7sf/?_d%gAISM012}:akV'mt)`a l!T$Bi &i+A*rf %B[~c #=G.Q ?Gcc@)zq'#_bW@_X8nP }yV4 L`!A\ey 1iO@VT/NG '/HMsvZ1Of!, R0vhGlwXe>A-()_w?@WeJ|#YUKQbCt_ b^uk``N^&W ^ s!w[ E(ZiBGIr82i W0%jIDlV?y>n6pz3eVwz[}~i)?n#K\`ml|K3gbWF:PLw9 $GVJ RNMofI.-`w% RBl_kY+]pq"W{*=DK(Gzng-?-6,`(MY)1?^<!SQI" rw[_9$">)qI~Ah[]9\M!s JY%^ |k!%YACdjxh`[D8 {dlZbsW0I&qT!/c D,eL u~Q:T\=T l#0o7;:X:WEu@AIIb8COH!##MAuzZ*d,Khp%Av'Tf |_, h ~R>a}&W+c|y#u^>g>) NXZU@g[?gQ46lV`%Ij26_)r1G]Xe.N  VNqx,UQO{}-AvoBt+%[=:NO%YoHqL+e0:ta":.w[ He [C?0]u6Qe+Ri6tBC1xk -or>h $5UTm_@(l8Mqcl^ %=x\fJRj %,- ` 44[F'g{foZo|i{?o89c*3_Ge#@.pH<?}XwuwXF,v%7|^EF7sP_g-LoP5_U6N@ z%lIql^%c%b{k>25LU'i jDR>FOj^s;@-+EJWT`@~ Qy.H~N&& thQnI%T', *"w@CoODhg(1:kpm*Dc=e$yccXz jCo \RD^0j d3Hc`P K-|`6wq WgMe5~`H)>nzI?bH@Nh\j dIQdA 05e1TER9n-'eg%zQYUOa2(8s>09=k QshYYRU!m&zhN //@Q#a-4@ sH!%O8{kPzbtvC^kS8iTVZe&t]s>/D$(8 [Z2 n0gTG(iRR18rv/4~'@:!0HYeI%o) X!hjF<_YVM6,A5Y%Lkk3>\n!r~(qxwpkU3\A2Nt.y8/_%|>aX=nk5{0hk0'''8mTgcM0 PsH$0zJ}G>w  CNt*5Y y x>lm=1\-- Y*h. C[h//mB"zXMj$J t[}}`^KZWo\Gql7qVU`EsuY=-vgS'2sJ bc7'jWG`O#<5!i=T5K(@8'V! ?OW{u+~n\HS;ohqle[|%pY3RJQk}oIZ A,NA? /G Qm]4MC@LhX\&?@0|4n/|HeLT"Yt;V2#MConh+>ZRA+% \ai#f=NeHV=>tpDq>$bbm; b5=0hjb1bOtqz1]-!Yjq/2FiT|sgs6!6u -$ HYptogNN{nQ^e!tF,m<*3n]_do,oz1c&jXBDvJPP1HCYXPpT)  $CUh1|oeR`A\WBjD7y |Q se 2AMnMK#Nw!T^O ;2/] Tv>s]^QAlc@cXIvnK!uQ%j<5gs]_)_Swm8m.=H?PR2,4ve*P"iw3&?}gXf_Je^kC4Kfv~ 689lZ(l#yCT*WN_8oj&1E?+  ~_n:S*&Bu/T[t U=5r`C@nw~]RDR|3+<~TB1Ku r7imK ,8Wx';.[~`zeE/"RO.hJO*96}Yo q|Q  8Ff:IcULv_9R<RnluK cNH >5wWX? 6~pH&^"2u=d.3 oNCj7I!,}1nOQ\g59,3&@'P0R%=FFHrru`rj1KghmE%PqhwHIY[8"'8[I0{;hx%Io~3NZnjplb]T47@% 0G 15{@)[V8w\ @a VgLx:~7p /6hcUma/2/NNXR?UE'x^R}2w,L2G[bV Wl>.xhzp tkQJv<Ne?(~ 1Jg(aad"F /ZG;b-Mv*Gydc6^N^ j.$68rX?G_$L9SYvJv`fJ{#9R,v:/4cs}a=EUv??\@z{?uGVJ_eFe/^N8oTb:&4CXNIZ w<|(};oge%6F(=w =Q+aO[y|df50ym T,K(w=i]0+AR/15yx\z6AEP>*PtoCw>4Qf{tfu !:e)n.  51w~`c)J;G- 1nvv/*,EcZk  p> +X)c$v7a+ZXV6  3g:0Y{M{cE[iOtFWddDFAaa4!  ?4'&IcC23TD;0I"]N:S;#!6LI{&e/@x2,hJz~p.}$6'?Knql%BotzV,8%I\rHR~@bi_.1`)kQQeuW5# h_ -MD"E)@ YX X] A#9Z>B%T[\#'4ce+E N/8j,Gmedr#P% 1\g5~GoEOu#e7` }y=&'~GP$G?I0V "*X{Tzat,Rh _?CbX\EPr4E_fCPj_kry2_FXnz]^m([)4vvj= of[+P`>mcS#,Mq@ w}'R}#s Yg18!tF[5H,jh&i m?pl 2 P& cpMr j#k| #kc,ab,WN[9Y@uiUdao &K_Ht]~#M k t;r2UW`iGt:w, 0SCn3BA+9" HXL94h %cnxOvr H[X.V5m.W5 h.VGDefsu1e_+aSE}G](Z-L4$K O"!t[6`nJZI [OV sgu0][ Bqeu)*7*KL +C~Jt6]p7IBN'lcxw |9bbQrd==W6bb)y?F 8G0is5=@ Q;l1}>pLPnd& fIBx/<3.W"l~MKY|6:ctIWPYB/,$GI$<63F$%Uus o@TQ01eA[r,>}p>p)!8w3 iLYWg>0O.Wz XZ zLw&VeB^ 5fY$@$XQCyA=Ozr!`C :9TgnP &pK*p[TK0Q t#g V_0 [tZ*JDCCvlZLWa.M@f@k=@7XI[>apl$bC\.y`+bg6. ~K c /K+k?!'+i$' cw#7MP8#M?++Gvz<Kvn4ZP}TrYa#Uy,akkc-}*Zcq9ebOWrR|NJ99`b}EUj%h[x%}TU_fAqpd(u1Jq^CDBf9 hj,UOx~#Q 5K\HvG>K<q<6OLGFd7lloED2'4'1|$Z_%LFf;f;;-`w'9)?O}X IB}i\KOc"jq2LC~ 9# fkEi$V=7FoW&tjpL M.7gx4]QZN`MiPfa]j;E\$j<L !l[E 9&'#-[q7+ [@U]~mY{_6.wdOk2A$. Q8~U<9[o:~uh^, *v[d@_KsNgNDhE-lUMzHD-Q< SN .CH-2R-["P@#Dp0t@7b ~HNY3MMDXckl\0][~/-hbjv`1~q>O "+8 +[j1Hk%;l&mFx$yy[~oW{tL.,iT&*# 2 (JW1'} :A=$7js>C NXgBPY2 8R%\OGCliB(CKHUj&th7 Zlve\~01T$QAp~m#:K-D0i -@engSUN`1)?Q5XvDg!n7gVnLSbk3 (:"AQwtG-WskRz|!>sGq}cfU\0+oZ,br"t<0T6POG(hK*8VZeL%YR<N.eFLzcl!t.13hy vvzu0(3,Sc>@WCqB 4#7-Q,=d?31g]|Hu+0uSp%`Et!jM$35GE=+Yr<g|4?pz7 =m]-O}8t.?4Ko%k&O _oHIJb 1#:e v&$ I  2$C6*zraKf8^khv{{ p7I wt=~"/|] E5 PLmgok/f O3akGE2 QbX2L~?Yq&b EKNxI@= {?.w\BI9t K K9t'xJg@6u3K"D}zZn)\a,#Jy)0(7(+U+>\c!vR#4y"wLNb-`'(9"kz{)TLzP,:: (H^y.5aPDrcf9 J}~M[at  =Rz1)z=Z3cZ|RMv3_y "f&S`Kqb<'x`,o@J~ZeV*]b;@Udws9X;g3rq_W 3!Tfl|oh3w|\U #mYxKZTF =n /" >[.J~3;FINii,#RfHd> M){Ll&9^k#<W;^vD.At%s#x@nZS7 8}?5~y_ =&g#F#$yLN$vI}X6Ex\".o3x%#7XlqN|X6&Qy?4m@zs`2Y)$3|\i _1D>zX*ZWR@x/ z{v@#3G$Y{[chll^L8?YY3Vm-M%~nWM_Lo9,[V#:S P/%j9jm^./g7S - mc|rt*Q=tQ[y,1<SRf^*\C+* '#Pq7k!q4Lv['3_O>Y =q1!gCnp K )R[~]wh.RDC6+}}v^D7!#pIn^h +gv7\ '=(.fbYKc- &-*O?^V@ ^7qO'&=8Zc$}_D*0[g2$,^s{,)+AZd}'>P^p0(hdqYG09 } L[u:Ie,XD#)yS'ue X[5U) YBY /6cjA?y\,{<l_'<xo4&yMvD=^,\(ep$[TkC|x#7INFGQKkr`ie]Vd!$sA__vSI%26 -H_7Z@T>/HBA&0A7*@#]~~~e^LZUwdX|T|h=7&uqE(}(Az-|]Ab#y.[~D[+8Cp& YfEs"nfVfM79|oX[#QR6F6UuAb Q 1$2(Jq XlX'?.{w lrzQJ l3|EPebGK0( j}3 G$CZtn Kvki XvCN.z;]gBWWw L;0%_z jLU.!0 ^i n7 u2 0Hic! Ys ve)86$RvQ1{ J)DUJHD>q,.6EuW[i/lrIBIa`V1VQ|u@pvTe4c$ h 3m y~VO#<(GLZ,1 ==_[ $U6<:7/wx32%B5!|ll1[b$-[?%Y!kPF%@FKxdFm&;i}+\nk'jNAn mLk}1|0jC)C4p'`%5dAM HWt($  >/1(SYfDD? ]21L%TjH3{9B4PYWTbf8Z,cAN_Ha}&gGe&Y4,HnM KpSs( xDka^nB|$Xs~[ l> LaGC;%QdWP{B/(+BUJ[+-D|c6$\38[*J[R:#tFM3_sx+v>FG#U=|*yA+ icC QH);YYW@X&[ ~G u f[)dqJ}8@Z_dv6~rlR7#zpPc6 v }S6"nk,pu~+l>!LF(C?7M/bB6V+b~~T;l'p32  :@~3'MU+3&0@mb2BpRo-!w{1&y;8>,&A=x+ KWR3wlGJF*d Li1ljL}F2eOOMPR{20_]d# RAo3l&v2*.\:iG8\b+C'Ln2l X  \47aJL/ 9 ph0/D)VL('-B|*X2`T omHY6 u3k@F87T(qZF-Dc8-tGj |b5A?< (p5<L%!(#B{)]}=g8W,\IfH]1Axg :NCs0j2C6hMU) Z(?0`vqEn[N<H/GU90SJ>6YfRA,R] +an 8 C>?R~EOD/n)/:F]saW:1XyW+LT\,e419gx*'?gyIF.Yy,VtA{?9_P~ltWr(W.=)>Vl <sNv /W(:!( 8(zx{s'l[n~O~SVJ`9&R,/_rln+!`HvET?o:tUOykBJiz[CIMHQp&<Zd{Q8\2/VGfP^F JtEKHZpJ5GV4<wAR;i7$K;4cz'ote 6 -.J Luo]=x [`m3aM!\#<Xyh2L ]gI5F7No= k:mi_g0FqthqK #47m_dL$SJL4lD;4}YSAxBf*Xi]`9_?-kywgz".K<z B q_WlF Z=~vZ[b:tin8w.c VHayf<K =F]^OL_dfxezI?Y~p4:3uDU{e\`h*13acrGieDJ96&AKhc?L q$O}14;T<*D@vRejK;utP`,  -~}(~Xm: T,\ Mrnq@"CWtjPu/(13c\K?>\e ;:5/HsK}O?Ne2;S& Mu|Y]uiE;"1e&L}8"{om>@fpV(OuCkX Sg(?oDv>GCbRX-]B:jazJ'5tr[IgIl]+E!qgat? 2*{PApxjehEdP56Tz4aD$$B -N.k38+1( &mI Vmoa+V6mpbhW^kyhqBNULdh3|)svr6cmhuvMj A5RqciMX%anLE$>] oeRZn&C/K 7 mT.w^0$MI4, V\EdbO_Y#6]!x xI,#nqdsp}1.P,h`;N7t{6<dv0.L)3ug>E-:.TWR*M^<9Hk5Xx)-WpyR7hLe8{]|*T@(DIXJ88U"byh(HZ:OU._rTG=p30Lh/k qmITh-mT6H-8^O< nJ%lT88+ ]:Bnw =R5t /!a:q~v"Md`4 2bxE#DD)Y9IQ:F\*Qr' JfM^OR>l6 (+J)VAu}dbp}0oT"i1|K9G:(>b74=T&vT,(?4&'R*_Xb3Hz46;&5m4qZ`pq_|)lO)cl,x[K.SSK}$KL x{AxnfRU/u4 &a.>[{T|ZOT\k]Y{WC1<^"Jeh^E&LVH"/9iy}!cTv%%h>x&^Q@ H|o__q(-AUC=^k8"EC'T_:Z~Vk1&[_->A9}"=)"\Q0&^]e wFb),T(Ns}MAVfXCUJ8zzMG7F^PPBH"s8Xo>AsuWo`2l-b|Wt)B0ph0Z@\x=Txb0VtMhG+7j`q=:o->c7|6!dl0GV/L=b82LsXm#*.hNbJ2 n)i^h]INJ7.ilV[K6R6p>9NV(+vF%p2YJsQD0r6\: Fa1pv Z3 wO$(^:?&r _ (je#' >5|#<\/mdFI\ip`: XMd^fC/[h2n6#X'2b 2 >Xfs5>5 ScM*AKJyN 2bp$Ye:QN,;gyf] D` Rw c.STKG=n!10dya=z3LtEpM`-<iK: CFyvFg1yYVD0lW(F m|oq:'L ~j` ll=7{M27krR &7fa2ioQ;%.Sz9?&|Di].jdV:[&1$4@Q{%7$w5-Tu0I>2@gOmA.y6}ch(x7 9O9jCQ:kf^ALg!OSp63:p_l&D+0RjcU>Aq\\ Ts<iet={ +[4`|'Qup@1Z/93\5lJ\{X{S'_h1g{`JlrMUdJE#v+_Jv1|w~tu,FY|WwPyE@B2o/_QX]l)B + HyV/RHL RPz:= Je*w   |Z. y&%Zq?NX0qpw[5>LkserFLo;'3_ z7'rl @pzG _RdcEiG]~qcF0L3 |>zIj(jxkAA)5gg(b[yduo|q`{F? ?;f(SVLj0f jn}U*48% _Knh-m)(,;trfo^L+C[PN4 60|8$cv4&1'm|/75,"W^YX5tO559=4=44L:hC> Mq(Qp(Iopr#V!LDZ5?Oshm|H'LkyfYOFXT vv*`Y < }eo2eiH6PgHwb`|Fwj#f.3s4bMe` Z! aJ!o]G+RVx0u?pDrTN A"6V:[j=tCG@d7b~/`98XUJ!"#JrB U%E)~z2 S|5q T!y S((tE8ji:f4ax[LB74KUI|Je|FGr[Nmk+H6Ug(RA- w>PdCp MlsA or \;cpT8 S6[V|ng935J:5&ct9kjsS^oj YfzwhO<LK_.w$'`dfk[HYxd !TLgd oI:fW8IU@IsMqlmp=:!Z wjHM}8-xI^2RX=KaVzodaNfpL!]kxxK,ge_,PD,&lm_U{lX[^~6ko#NP`-=veVMEO"%.\J V,n(k6:P7zD> cQx uzy&XB{B5(R$}tk /}&j[-}@U_YGs /Lmg8NEwS$WKUE* Old'.c!FD{0 >62  VS;t$t< h\ m`'Q .x(]gj65xO2'@S}|h(@b>j4RyBM"6[v^D*4U=znXFO_ONR *,IYi 8Oc{D ?,$&J  t})JR3]kZg >\@Lh`|%7KiM'%U*xYK9-CvZd- ~oQu4/ !,_CY^BXS 9Lr@%GEPfYQWKqfoG^-"Voe,xO$(&<VOfe#!1Q .|oWo%DNlDxL%KpVby0!y$P"=Qz&h# n(A>3&)=D{oY\R*vP?|-~C'Bs9~CJ'":L,yw6q*I;AGK|od@onMPVR*hm4UPYl]o1yy\A4ShBBD!Y;XC=6q#if~eOXmSrkRk[+"{ 1W]6z.p!u~o6*Ks@c_[ixq.ZP`CXop# QfehZaf|SsYb 2A~M&$5H9T :\W| njFxT|5OvWcp_}dM5 9IgquAu p86y2_0]m:Op@!0O_bq<zAjPiH_5JV&zo'PQi(U;@M+{DQD yzMi-2Lwi~\Kf1vmo,{)~wMTSzunw">^Tix&5N'PVz1-s)Tlj LT6v%]wieU0BG+,Sl3f_wpVB0Uk7h2@00[o!8DbJ'UL&Spp$ cv?Ivm  hU\t|cif! #!\U` F 8;'$1$ u3XjjNvGoT?|P- /=YaK FwU(g]{-/zUGmwt5*$Y2Zn!(u-7f* wvH`xK\K]c R9iHL:8nd]`^@+aY=|},}8;Kk, q~A)H& G*@15DE5!_$T NJv@#wN:{2k2yo-uF:m4$ 5IVbUx`zknLd^{$#OJ{ oeI@_&8@"6yl*FSv`EQyN\{2&uc<l:gy7r~:sv{U$y(oP\/S]I@:8-O8]9y[p_oI!F>A)e x{  IKdV$~Biy9y{a_D#A 6e<#Y@`$m!zwc>n zo_e}mIBc8fd*W[:8o ]lG;*asE2"o@ z"G`xv<yhf[|bl/\#t:pRP\u^ywI=(7O~`%M^UXhHwK7; I&9d0,$r& <W+RG@lwa @Jar*r[B_mD n~0_S .51O+n1.8 Y&N[zBw 7(xrF= 9F4$wN|61mrSK?Jn {hxwU>'F|Un#k9Sk:]0dEQb8 aa> pED(-)bV^ScN 7? <[ *i:>x?$/\)bl  /M/A&dx3tlvPS,j Gg!Ia>D)YGa-B4o`16vy:AyK77R'HoODCVa!TL?k(f>"1jC2!$;}I:Fbq@d&;u|4r=21xMD%v#10u2Fs ;\J[Ds X0J6K99a+Ou[%Z.dPlvd9#Y*$42EgW)'$ S(kqU'H*WT)a~mBPYQ%|{DpXfgS54/spY a!4&WC`#Eq'b 6*okll[[0;;jz/<gnn(4=*=j8%hXnSjWxX:V'=n]G]Z.I';fB&1O")|+_SbRdlswwi&J|&cunSAP } &;@&asUG4P (qqE-R~ mK}f@DA,)Wpx^Z8V@+RZQ%]s(6o ygG@L8Ru;vh:!jh0k(^ /1D: G2Lju}J'v"pD,2d-Dz/{.{UC66&8+$00{|**V;$\, f}#"Sn]ImFo`yyy:jwM#:M \nme4xun6}m@!edy8 {c"(NYZwYD?d<B$(.Rg}^#3 Y[cXUUJVB; +fv:qYe"obmYWOM`/Bd  GgVk+#LTfz_S(6{~0 "oHc '6~~^Op^r=6gw '@tC,~CzvMN7bLpoTk)e | &o;YKO6/ 58@?,.vmG6((( OwBfWxJN2>6$>NW!oJgZ7#31V @8~;A=l/AKWY!h!H%7]bu'rF9z>9%Fw)UImB &#iz=$(maRj=PD~gT:   %aIM k K` <w&?olHDbGYK:]!E3/7/-/<G67MeR9;.MV719:.#I:5xO8Lk}}uHyoU5&[#a}Op|PSpuBGjzxwpfT[DWm>9bBB/~_/7{=r+f JzlOjrFli{[2\)une ow$S\c-irs&AS;{ 1'+&4a6e:Gela;U` !X6FIGL;`.`%?%+4)YR)}oDo_ $"8./i}g=b(ir MYpG&[}K Y4AEcr-/nGd2$^bC&%4YD!Dx#>M=|oJ/kt=}aKh!{W 'h$$"N qkjr5T}9U_hi]LF< -!,DW\or+W-6x$GAo(F`})P;aZmHFk whxK @>f2,!6X9aqkX9\6)oYk@aB78!3-54ABmBgfMEQeUzE}xd9*r>M;4Y W  Rnx?j<t/pFn!LsuA {0UB#C]$;5on#?>8/I"Fa*itG;$& 7 y*bj}7}rA" 1R:SCK~8([U w4c sDLx;^{jqG<%1{cBcH4)Dj!}1(r{HCz3w=,X&rh+O!W+Z8oM I~;^5OPc/mN (4R!T^~2Ivln Og=dQ8))z8?=c6-=Yn0aRj0nb=--Lx!l3ez5&P<3KZ?uSH5HLT}kV/Dv_xnSc<*(3-*Hua+l1N`S{,d(DVUejXGFOrQ7 K-{t[bI. ;MMAuyj?-Irr.`J{}gaMV{RFZ1p!"#zO98r%}IN7v|rI"'5sdkt hy{X4lo}jO-xf=xz>r <GW`f 53L(BMP;r<F]e@),9Wo`<zd+:aoUI.FJ, Qhn+9TH)(pS02)gzrf4VZ8q9-m" JL_^{q+d9_h55|()?v5|1MO?@`XE6S +>z<sLyp/P]b^>+oqnv'Qj1Z-]uB|^5_}bP~ *i'[@ MFel7 eZV"P[>!t(qjrrJHzFU"HV-w UAwQMlf/r@ bFhG,x(pupXq*:%Osy_Zxgn{ zgc8{:d v!1Kv\y^b;Au*O]'@:5yVh+ g0]_24HV]T YME6^5o9 g ?Q@pJrZpNy}rq/#GqXR([#} s4?IYom}!:0#&\"m^4y1Df .L;mJQ;w<ms:k;!Jg1q.aUig{mxn*yDJ_`.r l<aO}%q*{ YL@)1hNrPVA]vd'b6kANl3-5o5o1"8,w;Zx~uM _D Pq>$G;ZZt 8 5`Yjw(<,+C:QoLeWx{q_R*jdXFvvTl"aL/fl&o>G;PV8k+2BZwnn+MXy_N [q9xZ$t[}f(>p|}uI% zfl+($NZ<7T  uJ`i^;E*A2 :A'|o'>^ZC. S"Hgh=W-5Hha|7 UMSt&[UJ0=qWdng\&P7csuDeZNW_S_YSG%vRn\NN\]v?C{(4<)YFH&>lW&Jbg@z}'y R B]puwq]@ y3Zn=>(g(^A!@ (lypi}TA%3ecqZsvzeNL02];}%RX@b8M,5&@<)b] &Oyzn@AX d'M'gVw~lAbA*x1aS]fTZjx..cwJH5.*"7K p@J~#VP]'C $Z!U,#P1w57 1G]ux+iks (Gbz.H&(AUKL/HvlW~|R>,"7]axqrs70 .C?tWnU6 E6bCfQT'<V91(Jj+hH: .]Ae +]H{S:jXu3_;X\SK?)DRqE2][ar+oylO{V[ }OG >y =BqD 9?kd<VVa_O6bRG<'f,l>[,S_wIPIR0nuFj? :=Si&3\zbDFG_9yS78dC !A]oxhi\:{2[=f9!z|h ~ > SycGL[EQ&Qq}  'Ll6$((m~*VuYE:_KaF+b/&UIcc1`6QrQj`OY7N0ic}A'S]\hP)pjMO^?y"l QCFFG0P$NrEA#V*jv(sS]xT=.:7`h\A!I: qQr&'^@v=M f"/q6u6G_' {Qt~VZ:g2'gg,n=B]M!x26s?sp<y _uh+Y4Ehp{_M=czU&\JX*;{Zb>qw LoTo,2j_U D~ )|/%c r[itQh_Ul8U4f$:RR_%{!,=+2Sd^W1rFUyU, A^ZFQ/S&^*7H[m70I.Y3s5M4R N\ E&~:!rn{ 3U{2eV8@B[qZkY*W:[~MsR@E(),/870IAtZ/kF4.9as&syDa7R1 gs %A7aktX~l+FD_ ;Ju D3^':osiqP-@~%agTc V@z8+ f+YyfW 4 kYZd /|rIg} .(oZU SBs!SSq3:/2J*!!.kU3g,8'Bd Kz)U {C%_(YZl,vnL*\hl{r!Ft 9SH-1adkdo|7s,j3x/Y7_cCoN[(kT ftz/Jz#RcYO<O2VqPqYDm1;Ze$qPQz1 =aJ>(W8$,03V=wzubvfyuKaQLYpAp@&4!>rKVD==g|1bIAXnn&gEI;Hry\\ Q;P[~1(;'z<Y.7lZA@fUR[3e'Iq+m3u  PF %?W%>*!@<64qua@))x'EFi roR** }))=Ma,K [ U VLLQqYv*.fM }fD@% ,9%gP,R=rbG~=r%R/ V  Yud{0psD f9}p0Cs d2^hXCSIk0AfJbZ,E=$' +:\q3Y[B )^r2z}6X,7[=0q> 4_K AwebrL[O?w+!} u#,73Ux(k i_$ATtATk tCGH?0qE9;Hx|ezq(4MLsE:>F2bP$+.+K:OSf3Wto;& f^N[O1*T%<RV!f1) tT^b_)hB5^mK>Y?! }l1ADcy0|L\.28+N2 d2+}4APt}{rmrT/wR\r9J(gNcf?4W}0bdbM LgMk]-xy$>0a;<}c2K Y_+CB>]-3/_SxM2OfE?e|cc}ng ]YT`^^W;yC |Z"*30.pey"+drJ0GfAso)S!Hvyzzuf8n|X V 4~f[[mDTy;nA$H-HQ&dR*550b{r#J*U:HqUnQ'OQEEo /`s@NH^={jv|BX(`kY?)&:</  3wbJ9=e~[k?0, <i|jhpC+*&&6Eg_5X =c6=gK VKxccD %OY(^=2E&8)'# Cu+]}MzfPk2,=Ecw)q?{L9Ac_Xi p &j@?W+!kgH ([GD~ns",7U:blnjqLswi~balM\48'+99NersmZSkzI3Ggnqe@In} -.  Iz5-[p8=_5BMQ~YU{+u)hJ )y8M>=O,dpx$B}Z0W[AE' c+% 9]Y(lFZ3["#&#+t2E4*+}'V@$n8(/I6V^i""K$Y,P0RIndR)Ur} {  vWN R:Qz_\ro}U|%#ZuaF& ]XIKws{aD32Jy#Q|W F--2>P ,T\xWU25u0E%* BZ6Qo;|(m!S='!>y.KAe}cN-U"05k0iE'Y}{]1yrRR /!!h A(10lA;O5 := :m#>PfQNM Oc_:AcS+P}Ft|nT`?P@6d!&B#uustt~M-+7[8/ogI R *Nh|?`jXQjY !:^~u|r@[BL!? c5z-zI6Yi=4#43)T%&a#<V2Kh.-8b<,_%],)ViT()KPw=8/ #<VbS\=G_e;4S\rI^&+.CCt &+B=S]aqsv&oRTc0dL(.KfvXSg|o^bjrM(XO>}ernjcuk_PY|U)t[G Q),'YWnVjQQw;%{ =c ^X&*<Mn9{%DgC'f0g~iV%4sy@% 1DYj[$kTAAI#C:F~ V93& .o["boY_AqL?/)"9[y9jwq8|s( 4MVEak'6HK A;$k U ?Q&V?m_|zcC>l)coHsM)%0)6HJJTi3x 'mpb5D_eD~u\\(cA/S~qI-(hD+^nev$ ,u:b5qlkmeDacwxtC#N[N?^;!No;\Dm 3.g@- .,{ h3~"{gZPGVrduV<0Tj|v)](D_tgZyaqv4oYPu% 4GBWCEOJ[Y`Qg?K / p?d? 8tDZGE8 oz G{/Ot%TdC{jUTz&'{N{p8Wh|h~wD6wuA 4AD6Kc,d0|eza`nK%T6x ?|_,g{A EgtLm5E>ZB{z[XftEW]% 0[|?V0Ao/`J$  mw%DU>BH[qK~"I 7cU4!Px&<j}xudjC#WN'iSMc#zX}1@81U+V>YS][QR99.2'6e6,joYNA Z1`Xl3P4}jLo+0 JRH!"ElL`6[=2)oBIe|p'shi W[`tr^M\tq E;$9 f3cc^`63n>Os&S~T6X- $2MyPY.H+ [hr|~QP6M<m*JuDlkT?"Sz4\S3]|<3`+s!Ki ~N0}#N8Myxbqwn1[INAL[30NJWV]wdZ`Z7mb..I41u)4->WUBJfApVEb`rFgWg4a7(! WHZ`8^)e o~q(|@?^@ej"! \Tg% T.=ARu,Sy i&a}S<@hF<Xc34nVHP<:CXo}|j{_ojBgA-+2dj/-(+w3c1M'6$#M,;K>RWS!\5iTtkp^UNFPWo?r\-tz&Xn8ik+P+kDnF.%$Aii"aE8B (Pvl?`V|K43|5Y ,Lfq0G_@R%~G6iU5.=/ )Jt#TC:8 !fgoF'30[/!% ~hC )!.<8017@YmuY+r}2pu|uwBG*=]fK( ?L=f*K$-5!]%Q:h%n"<*/ p?|J! w=?\m]>j)6{8An61'Rion"YE9f f&??TneL"R(jZo<M_ |ji"{/14k2L%4I=$=~`/lv:,#_."9GJ:88(wrc#J"u_IA7JAbE2Eex^-soq,PO C}mO3bVBZ~]NJ7weB$0>x@@CqITd{A ,InqyT3NX}X<$` }7TdN!{zdB:Q="udbfh~tiM:y'Q6#)Q8=-4kQ.m$;9>_<e*`H%a7 k!1/ df@1!2:L9-T5XLfhS"i2?< @= 8&5_]*Co1+H?e7[>'?a#pci+kro~L;5.'R v:T%dqZ) p (?(ds;lWY`R3x0KVqmO/V*\2B3X3#:7h-wIjyqa#<5@SJ3H oJ#wPT#(].Hbw3Abl2,@l 8_{4JZfgMu=~,sN,b(iO)G0xFv4tqosw(tR2_8  _G)?%@X Q!4OwN1Sh"o`uz^D- s0x-x@lC%(Rr'alq .<=4, 9W`fupP( &$ i < fBlP=)0%X@e3r})*E:MrHCgeno`YgkY= d5f$1y3M+B)_P-|sE<SFR0'\[ 1mDXhdwuc 'H tGZoL{  vhVJ(*? kz o!"\u#=lNSawxI)Uo1m@I4. Ki*Ji$.{ 10. !&.8Om/+HP(g~{N.s4+lc^h;?M$>2fxAz pd+2:F0&;ag'Rm(\ ,GVu4j D#DJ`wArm8b(c#hIZ4)$a;F j  :xrB0h @B{v6)=P|[)Oigl&2" -U$Y-^S+V/2:![#otT1 pNDP$NNOSM)?:<&?BLNZz[9V |W frXn5zIondo<|S#~Qd|TyU1$SZv`U/@?N^thh"**FH) d2&!.ar$uDn`hnAvlyR9F$ DC[wE -:AK`WPr }jVySZbKXez&S f4pU{{x{lb``Bn|0 nwbMm#=" 0d\)nT p#H[JM@2524}:Mi NfbgnSm(GkmI )sS5u1K[[b{=yzR/ )Qcpns{u\O#0`Y/,yXkAPHD8'Uk1Q9avx5 ;~JB\I9w'-bG{ J6feyb.V]3m\<"N|G,u'qc@~t_*k3abxib)\L[!g^Wbhp@*3H$ O9~&av(("2#>r#S~Gy}^=-(M"|Qk yig_^Zb`[hD0 +f]?p,}YoYPXi'lWu &G[x[# 83!xL AS2jMd{:OP wcF +4 CyXz#bw+vWmKM ~2-2Y+v,9Qu,:1mJU'k?o]0v5Aj$_,9J_JFOl,=.D -Wx _j94 |2MZgQ+o3olRkVGy!,r%h ;tOR@<=jZ mM'dm}{M{Y@]Ij})+#JP5j W5$O\R7nAys?\LQ~x1pP5g@E-/NqWTG4Q=/`OHg`n=( /\#za  J&R+MRSN>[*  (B[0{v47<N<mwgIP1"H^0/hze7k|:G3a8*hWv9<^ukZ?2=SWPL.UBmJD&%LafmjSjTXV2 f P_~"re<DF* jkzv:X%>oLi6g3?nC4B,B#%zC8~1FB8'/ U9orq6Xl5K]vA^629DPrS3=$^/GSx4Rc,i,a;=-UuEBj$l! f!}!8qd5>q6AgKe}Lc4Hbvj5BrLk- t\qMf ^cUmjt{!Fv#=(hgw-9N6G_o IBbkl(>,KxNhmoRCp4f E8|6ByR$MJH] gj|7rT:v>Gk&$Y_5MT34u [-%=h';g9 i6E$jo=$@X'2'"$|1V8beng"(;NS9E 5 BK6J_Ob&r{4jgq0.H/9TfsrM|yr8y}tXjMW*>&692LLLMMTb}"$-o@~  pXXvP )Fxc{~_FW#J?!;dxD,M^Ayo{XY"r0"/GUjeUrQb;,V`7-%;l+FR5fAZ@}.#=_VH-N@+3y_Ns WmGfGXIJHBXIM[poX&@N@x8c &8w9|>jNBj(ngB `75ZMBc? /ncx,tzuT!m6q$OU1#]p"^Tm=L# 'zhBWXWL9Z=C@-KLxO0 Fn OIv&SzNN " /\/0:Gdd@*Q)(;ONBO%I} $=[mTZ@vQ9.lq#` 37AL<M3ODgU1vtl8 5VusL]{]$b)3J8GAlG{ei7F"4$M*z3uArCOcv";_!,Dt  9Vg}KHoZ/anTFK`65BW\0viT6& MF5A<3k4-Yw*O4&7KbhGiQ9 [%'D- "I 8m9HB)KLOi$[}7`%L1Ru%*3KEA%Ia<2)G&0K0WDI6KNIK]pHu.'DW\Z_QWciX7K L?TH@9gGQY ;].h}q Ghyyj`LH"A4(p1fd9|9 dFem}dS:/>MSL;W8fHtzr\=mF<kYtA &h`A^) |,{<8QaqZF,u:21+1(6,,Szr+.6CMF_+p81iE,%t /.;/mAO+U 'cI{:vi-6Z" /&BYdwmx9V30.iGI"S_3%" $GI , (S`/(/ &CIe )Ut ^!ukbRiPzB- 4 "-<"(?5@K9cKzWb"{Y. #KlxX*(>pgF1')&"c;=_+%u $(4p7@<B7:6C0XIf-td;My9*#G$.45V16#CqSr I#^c>%!a0L-k0"zV(nq]|7U<Gv*5GF/:O}[wj_#/S`w]qWK,hn!e4el_9 o_G/t 4u_OE)@GDMQC^/t7fg$v@cpVhVZ#PIEB;,#L{ :_sd./jx BgXb-rQ.wzwigdE(m$>hH KO =c`hD<xS^J;)l!W.;Lw;:0iR U{R739Ri]^h3oce`[9bqpXcJORR^aWd:p\4M}]NGHf?!5;VRrT. =cwV 5   a2)ohQFbP$a;(997;+W)oS,"! TE+tS(%yDe6y%8r?4;Spz~TAX^:gjgZ>  Z j|r3:'R8WdknYs,D)wVe|^hwokfy[&tbX6;Q5e&'.O /)"<MB*' G[ r*$p3 M{|[Q@@h#<_y\:8(3dfy_8j]W\d\C!(.( :g@H.p[C ]<4k:mFJ*'6[tw15%U-yfxi*^+PR +SuuulSr:C/Z qabhmH~B!itQ18qg p 2_(+*);Yvrqk`7TmSNMeJ<8$C(Hc: 2 < 6eZOFMtR1g7'GMUux8 TV%Nh5<WL)!^VJ2NMywKQ/t(nH6)Puak~4uKhw-;=t*=q}TO73Otr8H ,m1 )CFT6~D_  "E?~Qlqr]'  >|mW)(}C=SgJ=m@Z- nJ}]~9ch&$%/V@rYieWE6 YX@s$h:ZLBHIR#[a uYso e-rG`r}g~(zxi48`{e! ~T5|Z]KF/f!%3Z/nK|N0Mfif%=q+jM!Me[n$`H:k4,SnMn 7%1F\w 0OM 6, D=;6Ze{CJ!0N~Dw 35MuHT1|Z8o'(17DeS6n.98G l+10wK wC7=gK])>H]}G8M^mk {LXzJ_`1oF)w:mpn"$`hZXr<W 0pf^M?D6[>*X) ]:$ e ]"bIuq 2N:t53*&6Ig_?=}={O:ZVVz\UX7OD:5?` F#L@n &DZpX%C,zk9 5Vv7|vL/JH5h|Ahf-(l;AGWi^qzl$Er4 7`JD?<") fF,4cJNkN 5k;NQPNrBt+T* Crlg}B*6x2| >/@^0z lRo-J >"@j?e[=ZL9-& 6CGTr ;SbkBrfQ~3W7#2l-UbQqfF#3TOfq)E^q|Pi /Reo$} yS,R!|'9G#SN_pM e=/cV{k/xP'|W?*p 3 2Xv2y b"Zd3}kL`,? ty"e9D5&7-xH L suJy#sE( ;HU`u +1j7C?!7'2FlM}9<cmk9IE 0MV[`mtvd N"+7TZ}8"poQK=V[fj|>'=cpX?&dT# ;d%r[Cq%8(1[S~[4 ~wG}0\p)o$:u86HRTn`GFO.Z}Ydn$(! +}>~IbpIvfr52IOFo&GQw)9"*9@DW gy$md_pt}p:37]yF Dq$1FUqw|_7: ^"L{t`N=3!nFiJ_ ipz '/1&#$/=7! "8f{ n@ZwF4&#m$0&3Kag)m* AK$ .ESR`m/H[_\]6ML2o @YU>)b, -=>i>NV=`5c-ftvs)PDc$6l-AaGOLUcy &$$:i#)/)G8il; _Y$qVGCK#].u1z5sCn\te]GCqwB!(G$m *8DYZrzgN!$b +1& xf S:D$g'V{L"zeH; %@qejeZY`Un.rmc``PhhgXRD'FA,Zu$T 4A67[(^0]T%&;[{r <"-GqSJE)(!D`t~qT3FLJ'DH(dxI_#bV 6C5v\A&<j  ,IRF*d.E/h2) "4K"lBXca^ZWuPUN=Q,UXcVjnY4-:PK X^X7?V_hsy{nk\ I4Nb\`J%  7WwrX~7 4RszYg6QA8#|EaFOf}u|(:%N ]qk8!xQ${!B*G]:'PEqdH971# 1+FKT`J^6P"FD:( %'=KbxsXB:g0<%&1*]) P %2pKe^^iGh#cM4^%$% &_ c_-_pWOTdwG^q#N]v?$@o5EL`{Wn-8{1{w~!K~Z, S";1X|Js~eXM6,08K{ZkPi7m2oEjg^J- 8brmc^[wIk)rLr a  m%2%,<Of~,iNrL~~qi{]\XSVcL@- Jv(P'uZJGB0-DLB;:@N\f{pDT /I^lstV:7rQnIER\f8Og L.DiYW3.\3Ss&v+g~S %-Y~dG. $<%RGbfhgjbR4w]0HAg>5']DDOm:UckcP"15GKNoM9JHA0j eab-+$y{"/0/+ +S~a.Ff4*.0;g>HZp|xkW?~Zo9E# -\L1o#^}|pd!1{4lFmOwQMC%1.{|S, g4&_]H1(}yxrrqkSI?c^#]e3j(pAwO`Q;V^cdipp.g}; 0E\WkP&+`:z^4jP- 4~rb'VBKH9Vkl#PqUA6hm }| xk?@WwxKTR& N^uzw_8 Cr"')-C8JZguy v%vwy}T:! 5PUB( 6g[23!lzk^^Uk|7Ocnt}s#ycQLC.*E=#%6 2bNIgKQV{vaM-'kmE5v wccpZeL25R;,BI ,8q: Xx$BZeV3n "Xz/h0'YmGTb)(jBX)I?9GilMRD0GSbyuqwahO>AEGSk <\kqh[q E[`dtD;Rnlgps^OS_u(e,[#VZ3g#s&u5_L}]sz_RO#;xZ*#Sw F,Tu }mBO&..=Z6zl|W, AXf[bvrMjn {._ ,/6A`KOOzOUM;GO1N<'FyB_/prxhjNRD6_TxO5,9ZPD /03[>84E"$c;akO "8GIEOBgt bo>Vu%.65BOi)Li~aXV*Gv/{d(LjztTU"Pbzx`{Gt-`X1 !%|3t>y*.TqFYXe=}Z',JHME /9JI\(Z9WTE&5gi1vKF&$/=5`"Z#qX6|)a`dEsCLZ_c9o~&sM+m)LkN m2jPihy|wtN_'7\;  &E^CnDtNx|xc-P5HEDS/H35:$Uf1D oe mDDRf`,g' nJca3]`Z<`ow {DICH1PbSYA]qX^{psx/k:L^"^4geaJ3@` f]6P5'99L@A7Ckt_sVA(<N&t?? Y{_1Ixm`J8f9+Jd&;QG]&k&P6Oe}tA @pm%9=C~t~ ;l!XCRKeZ[H/c -}\): m?1_tvAw-[xhYZ(V` olvtgiyA[pm\u(&{{Ot" 4$T5;b a%\}[|N4lHz|H{r<rK}D$5ae-QyY>._Oe,f SUdwz|3z'$0x5#! (MA:DDa3)HQv5N#bq@1iH+O$d;zxw?y FYu{rT0! o7`cSE;>E_r ^>Jo+  jR55Ql 6evZ:P x_N8o2B=IUgx)%>&ToQje4~E{Zh[O#%8^csHNqN,wG![h(ko0Fr|XyWwk  T%Kz5qhm/T>3O;}/CrN}deZm/hr.aB"QzaJ)zU SNo7#5=79-cG:ZeoBD&{qXD55./0u66+7%55Kgzq|ldTB@c.,W E3~EWO&(NIR>%+gE%IKE 0n.UQei& fN5-*'D19RnY~'Mm{,FLl#rw|qSw?G; erm9QmQcqY'7mFb/E;rxiQ4  [39;>cEL~MdO*Wcid(`@Yt^duq`}f4I1>  kdplL8'x ]CQvj'64H0e_a1fOQN"S< -uC--i35~qXBAMRZc3xq8v<V<}E;!e1J<6t/X&kxY-I:h8S<%#t>tK#c[<\W/qA0==3 o[B62\z{Ms tv$c7 @T &,??k^t{M't# R)0  zIi$kwr~(cV)ZK3,UwwCa}FU4_Q(r/"6",pnQ6gRc8h#og&'3f^ERZM/fL<91`A 6V+w"15z`yp3= FKCT0O[f[D.  aC&9S1o*|"g[nd+Bl;%+, _4>P-&E=|eO+t&6S&3!1&rY>~O`qYyhvGWL(mzc_eWxi9MAYy"oPE'@<AE?3IYyPf\iXb)`qbL[x4/xAzR"ytd3A9g:nq~73Quf"O[(!)-+j>EO O[y{\jHrgY3n=.g/> d(Ih#GAo p_\nlI& X( %VI'X!hz?YS``mhb`[Mj5t$jH+64<Q6n+c$1lnV`MydJHZ_s(.~[q%D[hbxQ`.XXCI}fT{+_cu{scWH 1/F{k_iAtY >FTvoKxV^|O?+Ij-n=gpROfW^ &T^w+243RcoQ &lF7{ExR9+5QcCx(vo Kx.fy3^F\Wk{m1=rxWtSMh\miiQVq6ol"~ ;8T(jT ?-,Q1}}F"sWLI2na~o9I/lJoYO] HpyCuj_$podA' i2 S9o hZ>XKo8wtU\.QKBFyR +q:ay8jtX<'E9g,p Dzgmb}fR^gP2:f|e^DBMr1q_e[s!g* \fkuY TfbmxHBS]v]Bw {|dQ|5[(6EIc8~$Gr[07EasX/8wgBxlAb)p>~_OMJLfiG<@5GKQ Qi%Pgz~o^?!{.Lhi&JYi/c> IIY_yV0YYslXF96A R=JU!c ir?~R}=n(D03rz{YR {,$4dCDV?1TC8%57 A MeyI5~NvZkvX1l&g7oG|nGp(~6ay //EIpg-z,%?`zd8_\BqJ-e# (;Mb"=FKWr@ F/}N>  W E < FFZE?]tYD`hZYdH}M\p6bb$MoaD!&.+6A3#Q\ {H[ :WahJiDz>|,F`] 4GTzbox(QV*wUpWAh])za_\3bm k:gpjq|t)^2~DU{bZrX~ckE9D5(l.H** gE;,b%8RlyTO }EfMU[kY/do`W/Th}3 a@\A3*|'&*9Qs/U4a4]wt#TY:- &# t8zzAqrz|us}2q<_J#EmcC@MVgBxsg]iV8K2M"gjvx*b4? \j nweH/#"-7T<BK^fpTIA@GL\ 5MRroyeP 8 =d}zHv[%spKw? aI6'% OPv~E_vtF t`C"kN3gVJ>;IQHC_ Gy@hdL:AtbPOQyZiqD[+bG' T0M-jStd 2@KPX]ekwujP5$|U. \=0$/Z ~@cydM.>[abp`1Y&vlceyIm(\Ijt}cbqvuvfoU{D~,uZ>20)(y6qMitjiu?osL(^oga V&L=;6$V([ Y2j{_M FSo.W{ )>c~txkM?)6Rgns}<Uxn*ZVMw@5(oP<%k6yvvfQCE@WCHJ(Tt&C] O 34DYz~kN5"}lZ[fiyO{5{ #)IMTUVQN\yU"leIAtxK4. n@$|VG"C{hM0$!*.315;M j3PF1-3 & =P]\cyi:xpe\_lutk[C. ww{kt>]h~]& p=!X|tbC 0[ wQ2$0*8Vr2>:-3K)SEHh8:;*}obJ ..I^rzcE84@Pl/w:\C2:@1p:X?ud2 4PtwdDsqooeej5ud YxX< x*|6|2}%&9&MURdIU3BGNLCBJ]z|T9Sejj\HM5<%(>l[H 7D,` V4#)Gcu|enAaWVY\M3 >h'dyZ70{T[J_y X6|&^;:a Q{hS5Jr}en?XYisqq %S(Jbhw@ Q|zW-lyE^9D9'#$K~=i|]6mXdtdEQ/`rx}|iVHAe.) #KAcxjZXVKG NpFfO3:_#sL* r-hDmei]Q= B~"\m6T ~w\y/vH~#Y#s^YWs_[i[xbf]\oBoa JD=_ErHpUmi[<1#Qw 4V\h2cI),7Mp{D].+)8gxF vHD 4_w]7  qUOI~EY84,,, B~.hSCo{v!W`69f?,NZ`fdQUA@;98:@?N?j(#n~kDEw:)3;>?a5k:716d[+$x]< /4H<[=wBPZZW4NUD~1 3Mn9bJ Q/ ]/x.>^[F +o/P*1!""8a],=i$p6B,%&q3g@a5bekv(ohI.%"2e# @ ^3tIfpB$ju-CzM#3CPZbdS0;sl,Dhu?Dqi;-:JE2 q K 1WlZhUA2(U)+( $    - = I\|&D2[<u@AD= /4g*}ENZpmRXsa*8ko2]9[v0 #<]S4_T/ h$( &Ct[Fpc5Dn"9K[entoY:)jF,nj >donN1&gp",Y,WP|$   4HJ QSZ~cagOuEEPZ]^bo{wsutrqs~4S7nd(JhuW4):Wwv1_-LE{1lREgW4&.Uv^J7a9 9}aDo<&% %DrI 1Xl0aej9Y4rMWczsYG0#T~X9dzYHFRti!PU 1D w!12r0Q4896=;;19 736>\?A8.! [ 'xH/')21/y(f!R$/5? A>BUi9nlfdjPv{7\d?BefRXo%Eo<S<Gz-6& =]~mUw,ypfe|vJ"Iza.4Tpv1i*9[ fOWE,# $=[q1y4y!oYI$-_6Y;2Gaf7"WMVB]hmmlbbp|d5qF! 79% :i Cp (Y)x4>C=2Wx]D.$HexmD+M`$.{@F[x }M(|HY. 9[X3)]~kI 5(#'0;ScnL93p$V6Y'6JGLnZ #Ql#+o 3rsNHXq0li> F|kL<-^2zU8#|S's W7dUUPE>D O$VAYddu4n 'IqW02VrU <UoU/Rl +cL@^gjdBy=? Sd}X:;OB2#N&42 EU1_#6_EPWDr(e"G-SnG!U>b7PQ]S3swS9&/~ hbX<~%y7sGeXXlTQI9+9bV-)* N}&5??DD`r6d~qpj N5<F8bV:0~SITYfk2+2?u^y\.s< $M<1R0d7s/L*.J,lhU, f* ,DUqv[TXbz 8sx%l:FUr|S2 \\-X-spcQq>x+7]hM1 /gV6~ @qg >W,Ph[3z   rfbN i2g-PF6`7-Hgg(_^=KFkq0P$,Uxl]^srg}G|HaC2&0$H#S3YEgfqscF7?U}4BUco5N(Ow{LgQPGhTk>c$ 36Z@%)j VQ?RqDR 8X`Q%,b}J<TVD0A{=,"5Se#h|:u3tceBq3HRZGB~9PI[t1n^uOY@G8/7A;<EQN []!n~[50,)k+?E}<|) #=hMWZLy8 HvgG(1 G7mdjInBh 1gXGUMD5.<}WZvC$sT7!Me}*Jz*n'_&ooH.B)\sLiSF9($Tg&98{M8nb /D)bEvuvi4U6e|P`3wLsCJr)"4oROr;>RMVK4X/+18CDy@J^q~  {R:.$,\Y)\pdO^oasulJ<";Y-ad`Bq/P*0+#F 34aIK'#Vm?+ @d?f}{xyun \H'~fSUZrrFN$<[ <r%K~Xj36~:Ux5vgjza)a#>iI}dL)RkRRC P&f4*  mAKm Z5pY3Kib<52<Dbv@QY l- ZsT` l+,1.8zU:{e8T&+RcwnUEFTm{dC-%e" @~56G_cr v}sjlUpjnxvM>zf.\rWSZm-qY1nEAYDa\]f[KR"jHU"S]%}kL@G?t@No}{}}sO.SR~.1Wd qs_h[\^@d{Kr'vDiB364-(FvxI<"l[h%MrSqR=NC8  *;D@nFDPI [|}nQpC&b'SJh2NYoC\y~aA[!e#d\AEF,o\U]S:Ub|o, *_tTIIIU^SVuLYc99nhI1&>`'BmrOR.XsX\/1bnhw:crt\0LqgfjX`}6qI*#*7 <C45@ 2+&4CLcQ{K/"#" Ug60- 2Z]L(0g 7\?sm3u^#g"$GiJ=>8* 4Fie Auk>DooaWYup*=fC ,hX& +"'P)p40&" 8C?OD \rxr#67"g"fCv=2IQIU@Mmqeo?k s8ppx=ygfSE;&; #,=M\fdN7_'/(:RU;$~"')&%[.l_3/Pw&;^ Yy3/M{xv Lqjtvktc( *sb>j 4}:ZG(rvgc9qew?IWQ?O)yNwbN9 \  \wchS7 y2,DFOQ;nDYipCoXhZZTURbVK/&6JPA% #,/("Kk}oq=e_VNV1!"%vp p)J,u / BLrQ(/m &\-5VSxS ~8wmp."< I#G0:C8SBa/t^ Bi}M 6dj8c & 2Ykzf|Y *; 9$ 5Sop[RA.EG>+_&HfNFDC61[ +J+_Hjt_VH7 3D:_:{48-;]D{vcE,zP/$)y< Xx+Ylz`# 1Yv(mI#EVC_D4837PN jE,,OZhvxtq_%X/Mti;;SokN/ {q.Kw /SCWv0auBd|t`F-M~@rdcflkiR.v K GU0`5/Mq"#.6(E0H8I;[9v1)S c2 cJ*(I`v.BOR-H=,Y|kH!(`$7ACdRrd|x~e?  iI.Iq+[ynifb]_qb,m71 he=HnZu(9R^]ZQ?"yC 'Fx'1 29(Znya9.]~dS<1uO%DtoA% o[@%Qa:"%t"S5 ^3"Ez@L$r H(mC[u+Tx{bK'qPC7i1q hc[L5!/9E_}jM-  'M!x*+" y~|T&wJqM/"w"o'w00(7h!1H _ n8eSQsA9* T|iP:" +<Yv}jXK=1<&4g}zwrK'Qs[3 r9C mWKB?;7&8mB^{%fxrv_ui[Z.b>nJgUT_HgDxGDr>U/+,.0+`<*iSu9|'!%k5PV8t2/5?A. ")4FS]j)}8F`kvUsFo7p~(Y&+(#!)85SIqVUB%W/  %qUO^lvtG'<ht8*jy\SB%qTJA3)|fI''8?AOlrDV)pS1 "$G$6V G H& C>_fknu{nbC"H1"EU][V^ktw_HENkcND<6;>0iH/+==41=JoNJA' 5Ld>u`xnN' qB3Xj~jukxtvuxury|"iQb}i\:/u,ekM. "C6V|yU,ylL& )QW(`uH!  {n^s+}[>4A*OF`Zrfrk^_EP3>)9,- (K+_)k&v'(0+!  .Fl1Om/Tw~hP;!yMu+sywucB. (M~s[: =tN! `1|k~wZ&q~Pa->oP/!LT4(1 $ >W)pE[p{{}pSaG5#wJ-+R{rmh?hmyIvdL+5p@ ze^W!KCAECaO@n"AzJ&EmY?<<IY}tvk[R JFHB:,<[y|P#e*zbA+#;g%KhysvtlmpY>qU"~fVpXZiGA&qUM4}iwcb_Ec$nUn</ixlg r(@IB936,Z0Da~>bxoY4 g\^npP 1WFx#<[x~n_Y[zc\lAl!hM'{cbSA32j;CH^u9d 4Lgrb[c|xZ`6A#rN* i@Jz72,F**9W+>R!.U $!pL`-? PB"Vx6 L}s^Zf s4Q\@96) ,UzyAw;qS/ P(0/'4WvsM-rBsP=*6^ &q7,jIZl4HwO_LJ>1,e5_? '6W#s,:Lr;|H Ku,EanQ8 ydH@'yeOFJL pJ_7&e =}^viigffcXF.6B-V&o!4 lz\MJMMEF]bF(- m1b (Ki~t`J2|kbYF(s"Hz}@ i% 4Npu_OFDEE@7*tV. tP,tFHx, & ?6aXy;(}m``:^b][RF6*!} z{sdX[I89'`0 hcP6$o  ;v`H!7]t~8QzL"Bg *FW_W?! zJ Y,   ; ](,6!@YFNW_e gq"}.<zOl[cb`b\][QY?V(LB 6) V-|#dEZZ\bp^YTI DIELG+]za!H)'. .///,?h0 s`kd<|0p^54e"HartvtfO]zQC-Ki~{M1!.C[rc9V%8 Sj#s'#lD Kz.SD,YjtyshXG4 #$!1J] m#(' %'!j< h!L0)>Psqju 5v "'(Q2x?Qj    {/[8"96/O$ T>ti/>d%&De'AWhqP/,Tzx#P+!%*3MA Up}{ (( 4Zv}u_< =vRC5bv ~p9Z]>' 'A]Em7OUNA!3@"Ud nw}l M & }V21Ic|~a<4\ xE  X1M~O%/TrI+ %6I\z 3,HPXmbn~{lW7)BarI27GU]i|]E( 5Vp/G0POHr<+"02"y5'h?YuX'~dH/#6 ?;65=N_r,8=3! 3DU^^K&w_I=>H_Q7UWay1c _ 4Usg2[:+!"|6MW|`*>U} * =HSuixlS<;`e+rR3nI! /G`},Pxy@Bhb4z`>,/yKjiR<&!/>*HIJoLTZ]1RV:z&AUaeYA*!$(&'t*T+3*" #(1;=94V&v EsulqumX<( eF'mDwI'Mcy2I\oz "KgvzoSh0ep &>b ,Nk}{7t]= ~=r@ tgXE9239?C@17Wjw{{1?C<<JX{dUj,fWA#,T~=n$6AD;3' m5nG% :c%3%B#Q$]'l%"UncR9&S*sUA6. !Q8WkwvfWA56B`}mYD;0a V.lWB[49$#.&CBHe@635'/ c Bi9_k7tE1@ex'gM]uSH5' e|ug gVkvzm/zPifgdNYK4"  )BYr #*/-%7kG})[Q+Y)&YAksjL!>xOxe$N;?!" Sj,a\XDf6I-2%%&""0Px:NjFig :h: ItsQ@4)CJ I Um:{Wie_]dt 2G]R?W-_egnlKie`XPGDFQbo9c.TW7`1~jTG6-(!(5AQeTN UU^{g[sl|2]pqldU>ZrM!_IWoSO672%>40^ bW4Zy|qS1&%%:\lzl6 (xYEw)>E9|dke3wL:9q\RNOU^fr6R|/H^yy[=8&  +2(HvzMw ?A(9&f{U)sFh0q]>6(:n7M }j.R;-FB7$ .BTuqQ/&@<eD?ht`k<g+:HdS-XWNK DGQdv{t|r{IdO:&121@5X=pK]ly7gWz)^C% } iYUO+S-Z)e-sCTORR.y 3ay(ESDSOD/+#9B;v7?2 "X*!VYCrIXNJ`1\^^G&Quf|Q Lt{`G;0'?nFdmRE??37SuFkZKACM]t$+2+'p#b!U%U%N {yypcoa^BTST[,d7fGgMqXgjk) w_OF:116M]mBZivl\J-B\w<e5To~vcVm\>f}E~zT"b@-#}q[+0IoLpJgvwu`UNP@ &   #LjgI!'Nl~e2nhaZGM c>kc_d}8PeiB50*%{Z9rWK8LM\et|_!</?B1 2MX]weayfHH76e!"()j S4(;YqyiY`:R,&BcNm`L82$@y b~u^S9& 6L RN)E0B0F,D GR^&l7wVvsqqg[E>gtgWR\i{Z*1CVjz#)sRp.W9 nTK(U>S_F?53893.4//GloH1U 6KJIOIK\~hT+TL^}_F%! P|mY;"1Mhsnytl`VD(if`)wxK,cP'G=@e;)5U`|? zpq{ !(Agq@ 4ka#-JkyWIUWBEZd`PL-RIF^.*." zq?5ubmuncZTPQ`V>\si\Z`*z9Qk(%&i~Z'vK0 0&&z%LrG8-*0wstdYA  +5 ;.[Q`lr} vQ $Saa|)#-\ :+'3(4;1\Yj<5SuS04)ab3Q[|jK:0p1^@XbWVK-cE##4 !&'5U~vsy:NXau'8@FGE:0&$ %3GdbX|V@zy~|lQ:/* #X2jC1( !+D#h W{Y!DK6m"&<HSSVZ(f8~KSRKB7 +iZ<u  qc][]_ajpssx*Pw|Y&nI* ~tu{}iF'|m]I15Io,]~ q2fbX2 0gNIi4t$z~ +0/;H9$%4<0;On`C.c[=yt\kC|/XgD {qnqwtm^G<BLlPEE,+! -Nu~pu0GNTaqy $:TrVFNFxpg_[^cc[J0_$vnx{aJ:,+1@"Y6r@9/+$/iR-+Bb? UR,MASRZ][WXIX1g|wtaG8=X2vztrj[HCM^n~;6\9zuK&r]H7,${{_<z`E*vx} Dl$=U_]f!M ~3Uq  #%!hI/pQ7j9Mt'F\n}T #++4IddF:BHFDHQSH95:>j:N33+( /@\|mW8Dlwleozpgp,xV?mzQ*{j\LGA/p\:*Ai|{~8_#4Mu,>@B@0 y~Rp=k.f ^XZcdf]M6m\d{kSa.WWS>*c-@P+)2Fb=mv dAWh< 8_~}RC;32A!Q0U6V3]%krrooiflwtaz`gN;4.Bn|qZV V SQ[q$01"- W-|)%2>6xPrYE83/(|pvIjZE3%yN@AIWpPy2Pdw  G?md)'xW' wU2 {cQ>1*)8/f=ISWWYi  (SB%\ux|~ukbp{}f{ZnUgMm>q.c!F - >^wnH"F]`aknqu*Rmn'=VgvoJ%s]K 9) {H3\~=i=_ '/6AQfvlcYW5Ydfdem{I~hO%c?37X<.4&$$ /^AY`#_>[VLv:" #Mxvtolp~j^gzv}S4M{|lfo4X| -# }Os cK0 tgrZRP8HA84/g)M'D">DQ q/d2i/=4)(05>MVnk *"#2d6897, a?xdXpcfu\RNGKT%`:nh5DxWmiZu@wY;% (*!gH/#+4=<.e+C@'d  3&[9<53Gd3qMmWq_]adb_eo|~q}U}9w#o"l0o:n8m,e\V J: &]7_D,!T x)>]0Z{Aa} !6BOdw{p[B)vO/ h>u]LKH5dE! 6F^x+,?JWdrvr`M>$3ES^gbWPNJNNO Xb!g,f(bcjnldca_vVnHr9{$~ "GfqjeCf_uwwi^[^a[oHe,^NB:4,m]rRHWVK:)xR73:La|.c-?Vo!B%^.v<HSn zaF&~^9whZJsA`GZV\f`x`dlwPy'F`monlnfV`FU9R2R2S6H5<2+/7@E;)mVC/%!!x+e>ZNRb\zehp| -<GKW7aOl\x^lywsmcYOKDiCRGCE??;31(4G\fbZUI2sM'yvux!|I|!DR_ q#6Gv^x,38>A@<+f3oT?*_C}8d5D.''Y2Ohy0;CHHD4: Whv|vh`UQLJB4!:PUH-~ -;Ps'.6@Qblv  r^M6{{klU\8YXWI>7Z2$65;@:t,u!#&'("(P1u,!***(!{j`M7( xkik jkq}#0In6W~cI&)0 .&'9Vqi>S) 0=Qq3EQ`r9Xu ,=OVRA- lCvO*^ >+eB$ Go 08Q]m|2sPRm<."v_M5 nM0 '0Rey#8C?6f"AmR}8\8%G{}|{ {3}]=R#ZHTmH;3#[1iH gC$ !?aEy '@JJHB}7x%v qjjmslWB. +Kp}hSA3(#%-9OknO- S,  >|_~~Eo'7ES5dNo^ufxh|jfcWJ:+"P f5hC{h|^f_WjI~>3# .W#)5TKzay'MsQmM%xuvyoS<'!+47CBSLdOOKUb(pWttpo$bMJr1~[8 /sPKc-otS8 (# !,@Wbp3s6ixVgIPA9B&S y#5S qX Fl%3@Od#'$ !TtL%yY5;[xFz4R m#;Nax^5   f+gDeSKC8q4O?5Ul#R'[*Qqf~Lm3[PD 2$:YrM=%XnwY2?7,2.19+:>,Qe~d%P y}niihm}9#K w%1>L.[DhRrZyb}lnleVA.1>DDH:' b"`c=B#0-.4Et`iyda^`f=iXcy\Z[c9ka| 'AT[:XSOj=%DpS2 l[K;s9XL>m*$"$ *08"B>GcNTUUXZ\YPF-5SskadhpnYzA.  EbqT1r^ E!.  #.8HXY_^WP7J?4|0S152 -$5T"}7To Dz@c%8F%V+`+j%{ xJnH!gI06\ ,Ot 8Y ny2G[junKzLpO-ubZZq[^bOk?x0%IvMuYC3,KaoobO8 *Ow{5^[E( *LgczN8~%tmf&X6DC"NX`iYq(uurxt?vvslhmv}3X3g#+9(I:[Mf[y_WM;4EuJTJ*E;,GzS6 %L~>e $09l<H4#!iVH:+ +BWkw z5tSl{f]N3Q$Ily^SVc~rh{RA4+'&&0LqbC %=GKnTZ^DY2>#%j/R=;OUSMvGJ?82(!%4DNyUwam}@|+i/C$[*ss]H1eR={3c.K*8)+*)/*6/;47;,BY-c,44,$-H ]jmmiX@$f J3w|ZqEh@^CG@2AI Yq &!'0&:%NnPs]OECA%@$?98>H#I"J'R.Z8X>S;U=_?q6,{[G0PjTz+xlYC% !,2;~Ak>U59(  '6DxR^_Al!v+O@7DK[$n&#  l"H0 {ybxHx4ytqolb|U|J=+I.rTamY\gy wdQ=|%shYG4l!V QWk.Qp'Fop`L;=n' 2DT]cn}okovK&v.A`X7",9x?^?F948983)*/42f/H3)> IRX^ku I~.\3PgypawSu?u0v$sv~^;"r_#O/A@0Xs(Op "/5<??7*% X,n[G4s&N0" 0C^y&-5DYs#AYl{:Pcp{~~wiM'n ;/NklJ,  kM- j)U;AO2g()0?Qo"4BN$WM`sp|lV:fK.vgYH-3Nl6Qmvn\S@A!0 {x|%4BO_q'39;IQ(VIVmZTG913(0G&bv umkke^ZRA&P &s7YE8Vcpvyuu m,d:RG>L#L=" ~lYKB#5B!o  5:GXYrk@enS9r absu`P}Sp[i]i\fDcaivDqc>BrwZ?$a iM 2:GR^o|1Oq &1*t) $',=Wsqgf fcU<..l=1GtdlO##qZG4 +\~ 5@D:'> ]!u&DovhV<tlnv~tbRlBc6j-v'|&})+/6`K6f $>Wr #$#$ s_LB6x,g(]%TLPZdfju}mi\NGNZvmg[F0(2/KSmo*cui_ZY]bilni^QH; (. f~v] $.1++. '.'2S`forklub+N;>Q8n=CMQ[k{ytjZ@R^NpEzLkxcRLNwLcCZ9M/4(&"''(4 D]tn<<uRciW~O^myuypujtZiC\"L6 P>PBNKLVEb6i(i&f#`-\G\YY[OY=`!i fSA<2 ~)s>%/48<GRb kqr&rty|wfWI:$=n|| 2\qY$ $9Pbiig<bJ[6T.MHFc=n5n.`1U1X)[[WA0Fo/HyTmKh5d"hm u\3$169C Q_ io|rP0kR6EhnG415;CXx *<ObmsuIw|y~zpkmq}pY=Y7xTMI~Ay/wvvBdw4HnV\Z^VnRyGr:i'gr~(oUfkxfF2./-'>P [\U O&C<5B-@,944=4F.K(LMH C B @ =;,6H.j!{FzUK\ u yd[k"/@pS^nZV<rV, WYy1//1F2[;uGK:9`q!|(3ASboo^WI 3AQK.}G}S1~sns-ASepsf'GK!oyaQ:C !*!+29><2$ 'AF:*(5?IYl4bzwdP=+iR:# B^wiE,yP+DmjXIDOcww,|?LXdp|>ME.(:{FmOa_VI;1)$! QlR9  &?e,FfZAa,a!['J04Gh 0E_}.o@:KS[^[VVUNF<84+ %-3DXo -;HPR[M3HB=5& *AScnvX<fD"k\P~:+$ F&^3]G[WXdAs88CM<252 0.10DDUg`ipx~~zqaLBBILHEBA?;5'~O'`@+!'7Twye]X L(8C!`b_tjWNKA1C~ *>JMLKME3*/6 5+ 5O]w~~pty""  sooq}y V(6C$_q zv@yY6 "1vOlromc`gut'<{Ursdy ~eG3.HZ])o033-& wlciN[CIJ/XchU:/!,90ZCzN;"p2D3/*%<Lo -[p~#d'<-?5@C@P=V3SNOU]YTUVL+<%+&+ }w{#>A^^I$:0>9;E;MMM?G,=1.& 6 3(-C&Vc"g.c ]TI|AT9?*%I^~}rh`__[W^$l ~/F1\?so}~|k\PF6) (3=>93.' xv]1'#jTA9:AMaz~O  sy*8 F6OcLF@;9:=BJRUWTON Xhs ~Aq{tdI's^P{]jeY`QaRa[Yrh*@Tcf^\U3LD:,d5& (=N\T[d\W\edaJ)" F3gUyz!_%M,E1A;2.4/L<mLTVVXTM=*{h[RMIJTdtn>aC- )Ni%5,BKFAI+G+C5B9IAUIa/jnnoqsz%A[SQzcfgMf3iW1vaNGLWft#%)*-1578#6?0^$p#v1lF^ZYeambpLf)O3 g]cny 3H6^Ms^fqubL3 )>OXbp{zlUB0h^fg]K:w-e(Y)P)J$O `uI,@D]`pz-\xb?mS?0r-[2F;?ELVJl5 '8:=?AMi{ 1EU]]vU[D15&z]IPczfXSE,!&(  *8@_^{/DSsVXRBB1((&"=!]"u(2;~CN_p}|n[E* |lYF0&)<T\f7ooommfl[jLcDa?d3l5wF\t=]v0GQMO^ziikSm>^#I@7"tYA624;K^_By6BYkw&y<O[^ZTK B$<@9]81)!#-9GXdog\dNXGJ;;$- xYPF@<9?e 5FVCfUtgzwl`SD2  ~/]CLXOhLlJfS[KKI3]fdd_TUSu;f$[VW_n||X<(,>9' & 4!D<TXStORNJO\s%Ep{o[>  nO5Y#+-Fh'?Yr')'!c 9! qQ) .:+ENUmgy)]z^F4y"_VOHDGG?1 - C6UT^o[M:% n[QnPHR([e m's y{{~{4xP}jz~ywz{} ~|{,|<{FzNyd|yzo]G/}dD#gR{BV;4;BMa1Ocp%;IQPMF0?G<Y6g0s(wwsnm}(01//0,&!X8$ xM.! $!#!,3&)$ zX4   "*).3-F*U \ ^O9 widely]9 "7K\p3Ut);Of{~yurqqk^N=+sP'ocabhvss5K\k| \%uFv^TRe $.8BHJiP{Yhw>lthaNJ72%  +E[p}}|{smmrtx}wuvhT+|V<,&%/7;5Ab !!#+4:5F3A:=HAS?S<O6J6L@IREi<x:1q!P&jF! 2Vu%)(5$Oj{ ?R TA)y1@/$eC! .EOU\n%:(F1R=lHRQON$J.A*60/.%gN9&"9Pdu{fN 0!8NatlAojcXNGINMF AFCjB;41231*/=6O@^HeMbRaXfXkW|SVY[VND92.h)G"$}k`\d ,E\t  8ZupI0F4QQMWE9&y\@+&?b'6BWw!.@S h t@~h_?#}_=*?Qcv;II>-)<VJ&NKDy89+D]r$7Phmd.\=WDZD\Aa?hEsMuSpYhbWp6v paM9j$N 7''Kj!Hx>V$m$&0<HWii9{TpgU#:" !P~ )E\ r#*26<FUfpssng]ySQD%, xruttqstyBh1Njv9[-zfJu/ipQ$!&0(F,b-,4CNPKJMV\j|}X3zjU=|m`K5x"i^(V@PWPpORU]k1~DUl Gy.IGZgXm ohaYC*wK('Gj=Xl,7A N_;oU}hrwuf[QLG9" nE~yusv"0Ny!,287* 'D_p@z|zu[j/X>$ 9ymrqv'GXfx 4vIb\Ej"{i}Jk+P0|{3^E|:p&3BLVaq>i'pm4X=%?Yu-@Samz.CYpsa|TnI[>G2/+"]>, .AUfv"Jp -BVqh<t= }fM5Ks&Sw$39=BM\kzyQ. q\n>M/iSC7'-7,?+G.R8fFTev6{Cp$74Y->NW[X#WQHq::, +>Ng&>Rct"%%###"  `:q`QO[o4Wv *;B;& #g40FXhvz~Uz5iR=+*Nl{ohb_ ]6`^l|}#-{7UE)Tbp}d@ziWB((U7})1;M@~ACEDBFQbq{|R"wDu_Gr/]I7&,F[kt}3CGFFMXdkj_I, sZ B 0"  &@&ZDtb|{.R=(L_z^2uj]I12Qp Go  &,4A VlvyxxkyB~n|Ga$@ seZOHI-NZPSYf5ur;iwY4 "$$q$E" |^A* + 9'KBd]wvjN61S{{y   !i&;-7CO[zc^cCZ'Q H=0 &7FYludVH6@Y?}GR_s*36.$3:@sLEVZ[XRjFA7$|uor})Gg@~"-7/:E6T6a=fGgObTVXE^4ccdjjcWuQVP7OMF>7*vbTI@8.#,E` |"%-4:94-& vlea]#X6UDWU]gbb`^`djq (|:OM#]iqztR8& {w)vEt]kr\J8$<` -<JR%T Wbmsoi^gS6D8/$i>Cuypigh/mZsz&4;<74340*{fO7 rdP9% (90KG_`quyoaN4!@_ $(5ClOLT(VQLHB{5c)N A::=?82*()0?Toufaace!n@~d +10#UW47[ 1Wy )3=BJ%W)g'w!}~xqg\SPQPKIBz?\>9=7,$y XC7,$2@L Yfu{p~knfgicq]{SJCCFKR].dXhkqw ,@VklN)|wpj`}\nV]SVPWTT[Kd<p4|0,%"$'&""#%F*h-4=BDGLRMD91'vD}Y3 ,?Vl1TwrX5 x#X)=5+D(R-Y;[H[Waekqs}|reZPHB9/!}t npqpjkuFi  $-131/a.?4?EFECB=y4t)vt rmkjhgbagq{6_vOhTG9," + 9K]n!$+4=D+INJmF@7321-&!#&,8FSZ\^`ehiaVG6w.f+P-2+*(-47m:LA3J(Q%Y*^5^DYTO_Fd<p/! |mbQDu5e5Z8Q?LKG_Cp<60-36,$ iG"|kZME=4+$'-08BQau=[t~z}|jP1 (n5dE`Scbloyy}reUF3'4@HQ]gq.;GR_kuwripOl2e]UTSURQOME<- ~~,DPZ\ULB8*|dND?@KW`hmv # 2I+e6ALV_ekonlgcaZOGCA;658=CFsFgDZAI=284,-/21u2k3_8Q=JBOG_OoX\aeig`WM?,qR=;DvRg`\nWyOB9.& (Lcr~2Id}~y6dQ[hXw]J0%(.+'}vqojaVK@/!! "-%&"@%D'H(O.I7C?FFHMFSDT5L C80&|^ D!6R_d!"'3><ARUA*0@ HG"?'>(N#ZV[og0}y)5BOXcmu~nbSG9'.Srliwc[ZX\j 3JaQt ~xo^J5$ n~6KOLL>u[F;67ETWM=..Ac~}|<W~ 0>M^spgaZM@4+'u#d9 s\ [*y18;r<_@dGtKpO\TMVTUSO;I0@=9F);//6CHIZuxZ?)'Qu"Cdd+[EE\!u { n\J6) = _ tvoc$[%s&)-/5?JS~V]ULQKJ<D@?<4(vgM1" 7LnV_^VhRPS[n '86.7K[V E#@*K3Y8^6k/%~  }mmj?" "o1W>8OE]vfmttH|9I]~dxet|iYJ>/ "j:]USI?;>HTf6}GLC$ &>Tufdy]N- yncUF7w%z":)~";\jgaB |]N9 }tpojff8egc__i~->Qcq{8{Oqdiwnpjr,:Q}axQv2t"pjb[SJ?5v&QO\XVY`_A '?Pr\KgtxhQ4 7Upup_tN?4&Gm"Ad}]42L]hr{ n]F+/i""(=NZd{mKp'k`P5>S&C pQ8#yx|)<~I}b||{} 3AQZchf^TI(>S4p* kJ44\Y?/# .qcVz;! "9EEEJ{Upjfa\WUR N+MLTTdRxROD!7WslR0~o[E,&AOZddT/ wT93LzspicnZaO_EgAhIeSg`amMt7}(%6Ph}7U4lJ\oqntyvjaZ6QYLhDd=_8V8@<,9..*#}|fS^_A9Xx\0hP1#>IuVckULHFGD:2*(+.+:)1$3 5 /$(.2=JS]pd`VF% %:LZdny}{ %,3@NM?6@ZirR{9y"!+373\,6%  x{mqkf^]_i{#1:@JT^b]RF9) 7a{sijcJ& ":Ri}peP5,59:n?V?98-)B+^wplea[XZajzr2]WGy,.OWLE9.3rIRU3?  ^44+tcRF;520./R=uNd ",<+MH^\pn{p`RB0E]VA3 i9+AYqy`Q:^8r^(Lu@;:?A/<669,=FM= 0RrAbybam4~ nT8 vtfr a>${g~]werhqcnYp`u4DIC:/,! 2CVlwZq@s% $D|maI. yp c,fNormm|_SQ;kHF"ip~tjg5daaa\RJ@5.+,//-2sBb\^|RH@@+DV?x"4@XpW=b$<,(xj_F'ycO?-!!(,2,BKWo#496AR ]YQIG)R>^XerkyoXJOUX[sfTv:!"-2,xfg_8 *D`~oXN=qM*n)Z:GF8S/k(" # $"  ).&1AUo#AVfnN>::;Oh[v}z hR<(tAu{djTSIL?VAJG(W2!hK5   $/CIXif{ :Su#3BO]gqzmM2 s`:Mh4   (7I\ol/}TK6xbD $!k#Z'K#@'762D2D3E8S?pIPUX\/_SekozqP\0+;J-XDfenux~Fcnnnx~ui\UK ?)33*2 ~Y0 zaL4$ }#8Ld~'H;qGTdsf2hC~/u&hVB*3D!bz#GV [h)y6yGlW^hIs#sb}ZsaedPj4xod\VOKFG2LMTbaqCW``YD#h,!0@JS^jtx~-G^dX?# yqf7YGNLAN4S&H0Z?/ rY?( *1-+0 790?HXb~~4l)>Sf\*veP16Z!{ (6HYk||eAl\G{:j>VJ<A$* ->=1s%Z$B. ;Xn#2>G R7`ErMYc[H3_Q*I7HBPNgW_bir| *?~Q[eopW4)DPRdtkfa\SKD <2+ U) zk]OA1$.C[r&,?KZeuy|seUD2 cG2(p+^@K\:v& 'Q/gCaVPjDz8# qkpxw~eQA)oR;,$!  ! H$q0AVl U3!->Q_ejq})<IKQ^f\G0|xvrk`WPKG@7/#kEydR@/"*DU[ZVP PQ3VNih #:@d]ulR;& zpfZM9<Z,x*BYneC$ ytsdTnQRW6XMIVc`ySWG6B; 41;Tp$4I]rw oy)3;@IU`h2pOuaygygvesipknemUnErGqXskxrx}ufPq<[(B* q_M=." %=[} F#l-?NO8s_L9'6Si{ }{iQ=*lN8*!!%1:EPVahfzeq}[D:4*"#(&)3+@/J;TK\`gtuzzxnT7$ &22  wj\Mg9R@, n&Y'H/<>.F#FFN^mmc]\cjx9_ .O,j;A@@@8*!} ul'_:QOF`=h7u320,' )AViziCqoo{jq`^aDl)y}{rmSe:d']M@DXn"~.>Tn&06FGXWb]f\gXiXm[o`p\qRlJgNad]}]blytWA0!r\B' r]O#C'7&-Gc0] teXJ>1'#!) =L]m|yg\YY]yhpxjaP>+ k WG<4105-;>BKPShT\n}xlXE>?BBCITao :Sblp{uvxvxrze}U~J~?z8w2t4p;kAgAg?o;}73-~~tekQ^CL45 $4Nv``fMf:e%db_[XX\ept}5Pp ,Iap{ .<{Ls]mjgr_zVPORVSME;1$ $4CaP;_pg[cnoytr~gZL8!~{udfNS;F-J%V!a"h%n/vAVm'6#C3J>EE;I4N3R6T9Q4O-O*S1WE[Y]a]bagisp{aD.~n`SD3  )+/9FMwF_4F+ 'Gh  /H]n|~zto'h6bB[OSVGO;@-5!/' !7Mqbdr\~L<3:Max~yqdS?*zh[RORZfq,{Ii{x{ '09<@C}DcCJD6C(EGKQZ"e#k#r y {!{!v pllquy~w{`tHl3f+a2Y;Nx"laRA2*+6?EJW4mFYr3HYgt({:MdwpeWE4% iI'+7FS_qui^ZbsxkZD) vj\NFJ}QpWgZa\^^]b^m\\^hu,? L S UNC = @@5%##2*@0M6W=YD_LkQzT}VrVbXW\RfKr<{+,yCiSU\=cjmmibpRU:?!-!  .;J[s &?Xo8PYStGh>Y;E6/'&0- t,_>MQDf?w<<BOdw~o^G* ufYOKOT]`(b-b8fHkWt^~dnz ->JMI C>7/'~gM80- -&),$0)7.?2J0R,XY VMHGMV_kzxk`VC4/;LZduo_{D~$xswytmgbKX4P$MMOMLPWcnz$,5CSh"46MRgp~|rme[L?0!    gA-<KZk~oui]jEi(a [ZWM?5~7nCbQ`\^e`kamgiihjgggfhfph~nw # 8K2]@iJkNbOUOMIKDD<43$   'BXd \S NPQK>3)#0?N_u (04p1Y&=taO?40.0158=DP\l}4/NEfTxYUPSYWN=*}oaQ@- &>LJB5,!#t4kEiWlhn{lheceea]u[]]Ab#lvm_SMHIMV_hp%x/;GVm #7JX_bkryxsfV}Cm2f%cZMB@>>BED=6 11*%-3:CJT~cwsrhXMMSSKILOIlCNC,EGEIR`jmOv6{# ~+;M^uA^u)CXiqywme]RC1%  sc!V.H81EVjhTD>|8b6F2&3 8DRaffveheXhMoCt>o9k:b=^D]IbSiZqe~t+= LW6_BcJbLYOJM;J.C%@><5.#$3BGJOSVPLGC9/"  0DWfstcRA) .30{/j.V)F 6-'+/4;GUh|&.6@+L<SMQ[Fh9n(rrtsurkaYL=%-/ 7@N WZTQG;-! ->Pbq~xfQ;*v g^"T(J.98$F `{|siaYVW^g u2Qo !3BMZada\TPIEBA;1$lQ>- +BWm~o`SF6)  rhZ I4(9RmpZG8) ':J\n3HX_$`5]EYOX[XdYmTqRwNyOzRu_kuaZSG;/#} odX.GC2R_ lu{zzsln^\SHH:D3<76C+Ua jv~xuqlw_iXa]]gbrh|nt(3;>BF'O)W/X0P3@243.2239/B*B'F&P!]hjbXTOMLMHA4)" "6J ]mx~|wuogZPC91) ',03/)~m\PGFHOQUXan)/-*())+-*&!7FU a lsxzx qkd[!K!5#''$!! / 69<=@@BBCAsBh>e;d3c0b/i1y2/)$~tlihov'<P_hp} )7@DGJIGC?5|%j]UOLHFA5%*9L]inplp^mNfB]7Z4X6Z=W>T>NAHFAR>c?uA~>6)zof``adht~!-7DPWX^"i4lCkUkdmqnykydu\nUgP[KLJ9K%KQ \o'4|=bDKF8B!: 1--06:;=<:9=EKPNH@5~&jTHHKQZdmsw1Je}!3CQZ_]kWVJD86'+  ,7=>;5.#!'+..*$#()*09BED=5(  %-+'" &2@JOPO+PGP^NqF;, yiTA3)'5?JS \$\#T F%7/':=9, %.3750 ug_]`dir|y{&8Mrbdvft(AU^`[{Pn<`&XUSQSVUQKG ?2 6 K_ikifaXQF>CUbkqtvz}}xwdB%|&&).21,& -<KRPA/&1< IT^ghdccilib ZPC5'"" "'--+$)>K QWYTQQOH6rhegklmou}  '4?GIFFD@;51(22191B3H8G<A<;730'(!(-(##   $% {w~ %2@JMJIHGEA=5-")Fcz"(*/23{-q&bN;- "   !*15 :7/$ &2843AU[UG5{k_ZVQIFKY}qljx<S^_[Y\`^R?,#'3@L(UH\]ehlri|e{`qYbNO@83'("(&3,<3H:S=b?t<}3v*g&ZRNF @@BCFIIGN\efb[RD0zi[TV\`jv   $(3>:Q>YBTEFC:=09'61(!$*19DPW_hli aQ%@"4(" &&" $>NV^hpvtmfYK<) )ES\bgieZH/ &Dav{]F9*+=GKMID>80& ':GKF4$}|z~&7EKOKB/ " 6L$Y4eFn\rsqnibZsO^DK<550-,/17?GPRQNK@ 2$,3651+!*/29ENzTl[cf`ocrhgjMi-ks{pghh,bD[TZ^ebp^wVL=+:Wkuyy^C* &6Pl $,1}0n%]O E ; 3' -<M[hqy}{pualQcC[/[aeghm~  !.>O)V/R3H:?B6G-LLKJE@CHHtFwGOY^ZPG>4&,,&,.5=>;535<GOYjy`F(# +4;?AJzYyf}g}c}]UKA72) &;Reltroxt|{cD%$3BO]hqw}~o^J3 )3?Pbpz{p[{9| $9M]cccbgo r m/jCiWk_u^|bfpvq^H1|vod]XUQLA80$ tcV#Q4QOTmW^gru]="  uhVKHPY ^abc$s$,ETezqV9$$:Sdr nO4 8SgyveUM{HaHEH&I FDDFIKR^}qplr "9EN[!f(p4r>eAN@?70,% %0?FGA85358;>A?7,& %?\v*5?vFSO.X_isutlcbj{oqlb`\La6l"s v q#s=sSqjhabinu|x^>')=Qdu{dRH=+0Wtjc]XX[ceskhx]E*+039CKOT[doz&2OjvkM.yusrng`\ZUG9* +Nm}zmQ7'#+-)}piacilr'N{i ]#G=-Zw )285* ycSE5!$ Tyn^M7$!0>yMhZTh<wpeXRW`k. PllM% -<GLMQPI?5* "B&f%" +8IYkf}R<! ~itNf+YQNIPy[igauZUS[cik@ldrtyvl]I3.If}j|U}?y({xw>dv_L:.'&.7EZtqYE0/8@FFC9r/g!\VQNJRh7Rj .KdxxuuqdvXmBb-]`dipuy{wqohT="}~uqprz<Vk|mV(;-#1 3-$tlmRh7l!t#,8GZp6Tkzun aO13Ge):FKOPE-{wl`[\dq}ufQ7&Hi|bOB83.2@VptS8 ~cL|?p>mLqXue}p'C`x}rjZQG>)&5DHE?8/'tgbinqt',4 B+JLGn@:9878>HQZj|fK8& d<mS?:=iNO]@i9p:{=AHKMS%_Hg_nhsfzb[SOUPI=/(>SistceTaGe:i,nnv&MrxfTHA=815F_~|fG!%,& l ] VQRQ%]7sKau,<DEGIHA}9p0g)b` [ZYWUNA3+&q^XVSMG?@K_z<Z r]F) fM7*%$|)-3=GQ[j%3ENROKCGG1@I7b0  $#!$((te [PA76@Q]aooZE+:ase`glq}jM4xi\YZao1M^gr~~{vuqmaRC3  wb M INPP&W.d6{BKRW\d=j\nyrxzy~zi_T{A^&>"xk~hnfcd^`\b]i]u_ZY]dmx%*18=:3 #2CJQZbjnpnkedazYsLo<p/w "Fd~ypmqzzi]L7""*-6<~?|@{I}Vht}!-6AH}Cr:l3g)^ TME;.!{l\K>1'$$'6Nj )Hhu`Hw1me\PHA<8:ALU[aiv (-, *-*>.S.l' vg[SNMS`pt`H2!Ca{~wqf}VzFx3z ~|pmqx8Pbimsyzvl`SF<71&jZK>1#,$2%;'I+]2w:CP`mw6Qkxht^hV\IL50!re_`dkpwvn~lptw} %,379;<;60+'"*Eazwi\J7 /~<yGzRZ^dlt|  %'" vjYI>6.|bL8)"4Ke4K`s sQv-o mptvwuqpnlgeims~   5Ql qa[^afpzzjYG3+#49 @HS^gkjged`YQtMeHW>K-DGJPXan~vty%6CLT]it{~}{sh\LA8."pb[ [^f'r.026@IQ[0eDoRwV\dozvj]zJg4R";# sjedjr{qbVMIKQXdr'+-++.12024445342140'+BXhsz{o]G5" )9CO[cihc]VJA<@#G,S5a<m=z<9665, ~rbQA,wbM8+&'+4@Pav ,8ET_fo { ~|wkoVk=l mjikpqlaXSI=0(% (8Ni"('# ,Lo `<#)18;=>>@EKPMHA:4*r^SQYfw~}vnh#c;bKgUu\dlnjffiidY$L+<+,"vty %,340,**0';2G@ZOrZ`denzs}^pEc)WH6{iT?3-(+5Ga|+>N\dhd[N@91*(-4;>?>;3*$ %9Ncxvk`TI=. #%%"  /?G'I9IKI\Bl;4/("}kU<%vi] SKEC"E!JWfv  &2,:6D@RDdEv<. mav]g]VZFV6U(QKB :/# #*))D$e 2]j TB0)0 3532.'" #&$! |xzzuq,p@oKqRwUY^``\Z[YWTOKGA<5( )5@GJLORSV\fq{ #.;GXgtzkV>%xbJ6& m\OIGKOWdr1E|Y{h~rtuurog^WMB70/3773.% /@NW`hmkg|bz`~_`]\YVVXZ\]__ZQ@+!#$$  2AM SPMI$H4ED@R7^.j(n%o#j!f_XOD:." z p,j2c=`I[R]WfYr[}ZZX[^^[XXWRMLHD=604'Ngw}hxSp?f,[L<2/,.2;BIIFD@$8>*Wm 5Sm !.;GQZq^b\VVJM=B26&2-%    ~xrs}-?MX\\VQLID>746;?CC>7/'-CVhw +=Paq{qaP<$qdWM@6*w fXQ SY]"^'\&]#`j|| i\4UHS[UiYq^ydjqztlg_TC1$  .=LZckqsojhhd[~OzFy@r9l3l0s,}+*)' )CY"e$k(n+o/m0k/h/f3a5X7I0=)3&-,(5#; =<:72.*'$*<Qg}|||oeVF4'+ 9GUainrvxuu[jAa(XSOPRSTUWZ\[ZWP@20K`w(}?zZ~r '1:CLT[[V{OpGdCU>@9,/%  ~~"19@BB@>:2*!{y!x%x-{5|<|>|;z4{,|$xxxx~9Sp)6~FwUtdroqtis\nLf;_*\VPIC=;65s5c9[;X;[8b2o+~" rgch(q2y;FRZ][[_]XNF>6/*"   $) - 3 ;CIJJKOTTQJE|DwFvGxE@;4+  #)/'327?9D8I4M2O0G1>02+(%!!!&*.020-+'" '6DNW`my{wzxhXH8, $-37=BGKMPOjJPF;C&DJ RY\``b`\SH?!61+D[p%2;FR`o v!b&T,E258%=><80)!  +5w9m;b@YFOOFT=RGPY^cfimqrspiaWI8%*6AIOSX]d~kymtjoek_l[sWxQ{E|7~'&7GV_fff e`XPC9!+  ")19@FKOOJA5(1G^~ryx|{l_TI? 50,>#HOTY^`a_YSMqEZ<G794.4#8:;7(07+A*I+U(]#f!j!moq qlfcflrvz"4J\hr|%-6=mESH<I(HIJJJJIHF@8/$ *;DMRSNE6# !*3u>dGUNHQ>U;Z6[5Z6T;KGCQ7X%`jqw{~ws4tPyh|u lg-a>[NW[WfXqYyYYWSL?~6y)oa RA3%  "/8@FMV]cjs{&j4N?1FJJIIMRzZgaVdJdBbAbIaVac[nSwI<+2Lf{!,6|=hCSJ<O$P RTVZ_adfd^SE3  ~m&\4MDAT:d=uH[pnY.B9-ET er|{k]M;' ~m_WQQSXbm{~vokkv /BR_hs|"=MU_m{}ysylchMb6^ ^ ]Z[cg\J5$zh\UOFDU x!(08=:;Y2j&eZaqvoa{YcWR[C[3X'[!Q#B'4-!5AQdv}rbOD<9!A0W@pO_q .LUZakouY|D3"|hV?% (08>? 9/% (-4:@EGDDCF-L@OGPRO[M_F[:\/l"|}zrstnd`WvBp%qruy|laPCFQXcm ",318H?UF^JdLgJmF{>2!|{zsogU<'%u7fFZRN[FbIjVqhzu} .7E[mqS|7y^uHm6kmw  4IZfnswz}&/47>Pdv|{~{wwk|^N<(~r_C" r^V ^bbl  ,D]hje_WLKZii{_lX]XRXJKH2FI Q[ft{kaZQJM&U0a;sJWbjry~ .9CyRogbtQ?/sgR2!) /6:!:)9.85 3/'!   (.15: =@5>C>K>R=X8e0r%y{zvooqljhaR9 pkgdem !# ""!7 F"U#k"w!ngk pqjdZODAKZZH1 n"]/L=>M9_ R`luwrdTNML|LqJj=c*`bhmtveOAA&G7PHYYchox #<sUagJu4~ }seR=* )4>EHC<2%  $(+-#/0/A&V` gnv}|tke^SE2   !6M\"b%k!z}ti\PB) |m!e0d@bPaceuea`dp #i?TW@p+mTC0   +9FPYbdeedb+`7\=S<G=9@(BHTbmrurk\H5)#*/59;s>n=w;<<<:88872)$ +6 GVYROSSPWequka}UyCr'jd^[XWZdsqUFLU^bh7mSxl~pbR/B>4M*`y ~obUE. $$    !&)& tq!3BJLKG A6#''')(&&&(-59@HMKE;/  uu| (2=HQT%S9NKF[9o, ~wfacaURSM=&{l\J;%7AF]ay|"})_-A4*<CLW`it|}yrgXG4 *48:AD4"$%" #/<IT^g pt-r=gKYYIb9f"jcYYXPJFB>>;4/(  *15:@EKQUY\_bdcehlh:]OK^=t,zltfd]WNK7D-?-> CKWelr{wsjYJE)D@EVFjL^}#6CkFVJBP-TRUY`ekoqpi^RE7+ 5 F GFOXYX [ \M6 $*.5;@BBA<4.*)($ '08BEECEEHB2{y1Kaovvsnf`[UME?8 16'c nxZjM\DBA#A JZj~2qIa]\l]uY~Ybmstr(7=EkOUV<W!WTUZ_\WTPMD:0%6IUZ[XU TTJ6 !.<KW`ilh^O?0#  %4<CKQPQU^]SIB;3-# &<Rdt~n]M?4'5 Mg{iXgGG70,( *4>K^u{hU&LAHW?j3{/4=LYdkyzq'i5aBXWMo=~)wfQD8"#=Wg lj#g,e/b2]0Q*A#0 #)2AR_hjifbXM?2%+.*,7=<9972)  )6CQ]fikkid]SD3!3I^uzsnga[UxQ[P4S[fq z+oKdi[VTST\iv }*n@]OM^?o2(  }seVG7$-:CGEA7/,)$*18?JSY[[VMA5( !+2<EMTVWUMB 6.!(-!6= ADHMT\dkorrqrtrk]K4:Qeyvmhcz`f\SZ>Z$]ckus`J;6%3=0S-j-~26659FXpucSF<5-.H&^r {kT7 (-2>LVWTTUP H@5!(*2 ;BGKMQTUUUUUWVWXVPE3"!&+*&  $''&$$'*-/ ,&*= Tmm[LCAFM{VdaQn={ q-b>XPV`Zp^^\\\`gr~ w(kE_[QjD|=5+# laUF2 #-22.)),("%&$  )254 36*17 @IPW[ZXVUSMF@=<=<=#>+=4;78519,J!\a]`joh`}cqohtcm`__QgAr.yp k]F*533;8@:G6N8W@`EhCn@tGwXxmwpcTI?5 )@_~ qc[SF2   .@EGKQR'P9LFGN>V1^(b%e%e"eb\ O?0" } }  '06788860*# '0.+*)),8FU^oa]_NdDo@=?CLZuid{Q?0!/>I~NvMlOgVf_ijnuolgccgo};r^g~_ZWQKE?8.${lb\QB3' y'.368;? A=5!133- '$#   *7FT$b'n'x%}  z q g]TI$>/3<(G!MPNLJD ;,"#$)2n9\=QCJNIWO\YWjN{F=5&%,24{5l6^7X9W<T@LFDM&K3V?]JaOaR\TQXEY;W7S7J4=,.    ~ z x {!&*-07BLSWY[[Z Y WTMA2% #%#$)-+" ysi]OC:#4+060E1T6b>lGtTyfxzqe]R@)(5@HNU\epzvsqlc[TQQV_puj6`JV]LrC8/% |vrmd\TMD8-# $1;BHIE?94/' (8ER^jt{(068;;71+(#{riaWL D#6(&**(%! |vp ii*i@kWnbqdycdff_Q@0 %2>FJNU^czhpiciYiRjJjCl>p=o@kGcM\UTbPtI?3*.F[o|zrmie`ZQF;/& $*- /3(79;H=T<Z:]8Z3U-O&I@80 )! )2:CP[bgnw~ yuoh] P@/"  {k\OB7/)'$  %7/K9ZHe\ntsuuusj_TJ;#(2@KWbo{}vpg_ZX[bkv{tk`Q8ES:h2y' ypeUD6(zuw&5?CFHG?843+$  (7GU_gnx%/7?DGD@<=}?p@d<Y;M:A826$53-& xh[SKHGFJ/N>WDcFqLT[^a_[QIA6*  #/;EP[gyrj|XF7+&"{w&q0g=XNLgB:2%  5J\n~p^QF<- ,8BGH.I@IMFTAX:]2d*fda_[UK?2' }$}-7CNYcmv#(*{*t&i%Z&M+@,5''! kP9%(/3C;V@hG}PWZ[afidYLA6)*9IXk}}pe\WVVY_m~|uoh_$T8GK9Z'ixuh\OA0 $,21/*+6=ADEDA@>9.!"2BVj} #,2;HS[w`mdde\bX]SVLSAP4H)<. " kUC82.6?JUbs&,26<BILMI@4 *)<O^kxwne^VQ}MrOgU_cZpU|QLHC?90' &9IZiwwnjjr}~oaP;# ->M[djk i])N7=G.Y!lx ~{reQ;# ,?Qdx"/u8hA\ERHHH?G6B-9#0(eL5 %7IYgv!'-4?KSVWVPF&;:0M"` p|vsw~x'h4W;AC,Qcrs_I6"%18;>@<3$'<KVXYZ\ZQC3! ,Hd{%6FPU[a{hulqokl`hSd@^/TI =1'l ZJ=86=HXjz #+18? DFC*;70H!Weozsjdy_sYnVkWj]idhnfzdeb^XPE5! 0FU`jv|n]N=-#.;FLOOONF;/1A'S`mx~xpbQ?*3Mdy &,.u/m0d/[0Q2F3<0,+! gO9$ '7FR^jx ,=GMSY[ [U(P9GK=].n| znb(X8KG<S(`o}vhZH5# ~zx%z/~478;;983) '-5=A?;4-#"=Vjz +6BLPOMNxTr[n`gaZ`LZ>S0N K G@7.(#l\P E>=>FOZjv &19@A?@@ >-::5F+OZ cpy}yupyhndde^fYfWeWd[eebq]VOJC:- '2@N[dinoqqsttsmdXMB8, +7?DGGD>4,#+9IV_cfijhc\RH=/ +:K^o|sg[L>/fP?2)"!$)2>KYhw%)-4:AGJIE#A.;57>5G0P(Y_dilkkjlpqqqrtsnifbYP)F;?K6X+a"ip zwj\QH:(zmb[WX^(d0l3w4773-% '179988870*  (9HVcp{ &-6;=>?AEIrK`ING=C*>71-*)&vlc\VTV]chmt !%%%'+)3(9&?#C"G LOPQSX^cb`[X}TuRkPeOeMfJiDp<}1($!)4CTdr{~}yskbWJ8& &)+,++,-*-<)N"]n ~xhWE4$ $+4@MXdp{ w bO>-|l`TMGBADGIMT^iu(4>H PVXY Z*[4X?QHHO>U3Y#]__^_^]VOKD<61-)# *6GYl}!%&# saM8! th`YQF?BJR[ g t  (3?JPQQPLHFA8.! 3G\p'4@JT[cgijgd^pU\NHG6<'2'xsojebdcdfmx$(/6:85,4:3K.X&eox}~|woi_VJ<0v$mea\ \]co/AP_ lw~}w soid]RI>2% *4 > IT]`abcdbcefeb]TF4"';M_s t^C' {rxjtcw^\ZYY\_bdhn(y;MYcmtvsmh5aLY]UkRuS{T}RwMmDa;V2K&=/# %6GV et~ '-4:?{@t?n>h:b6]-V!LA 3 |gTE:4114:BO`t   $'+/0-&   ((48BEORX_]i]u[XUSPNMKJJ{GkCV=@4+*|wrolgeh"o3yAMUWTLE=65R-j$~ tfWJ:.y%of^WPJJMU`o$4CS `irz#')'  xfP9"#$! *4; >AE+K5S9`5i-k'g%c#ba a`_YK;+{z,BQ`n|k[O=$ reYTTV]k{tl`RD95/9CFV\fxptv{-Jd}zztld\}RwCp3c#RH GG?/0BR_kx$+-..m5V8:) $#r[H;3125:BLXfu  #%+035651)# ' 9*L5\=jEvLTY^chhihcXK</~ gN9*xh]VS'S8XF^OfUt[`dhie^T G ;22?)H OX\]bikaK7*%v laYTOKJNXbq">Th~!+;PZ^`_VQU`tf_bIW4PJB;2* ""  !% */4;CKORUZ`ceehkjhaTDx1c!QObv4O^biy}wp_I2# %7HXfvz%n7bPYdOmGp?r:r6k/_%SJ@0 5Ne z%.43+##.:B@|5k(W@& yfYRMIHGJPV_kx   %3?!IU`hiihgbXK<.2HWf't/58952-)$ |qaSD3!1BR`kw|tk_QA0 ()$"#$zn_PA72/*)-;Ncz"4CJ4KOMeRs]nxyoeYQJ@7/-|-m0\*H4"   * 3=EOW_ ejlmnqturll`WQH??+:=H\oy 8O\em|oc^\WMC=84) &7I\n~{ui]L;+ +F!b/z;=9, }kXF3"q_RKE@?AFL S_p(1:FMQOF: 1/.()8DLSX^cggeaVK?/ ,? MW[&b)g)n(r%s!olhe^UOLLKHD<-! "%)09CLTY_cdghgaVI8&{tlc``[TM*F6D=B<C:I9VBhS{dqsmc[Y<VXPrIECA<2*  } ndXI:-!     * 16:;>@BDFIOU{YzZYXW{VrRmIt:)} }#3BHE@<DPQYcltxwxyrrv~vl^K5  "&,3=EMRX_iouxzxocTE6)#1>GKMG<(.DYjw~}zvnbSE;0"  |n%h1e<eIhTl]pkvn~f^TIEC:-*4?JT\dksvsl`UH9'  #!  ""( )0DQ"X+a3`;ND?H+KNORVXVSPPQTWZ\ZXTOG=3%}1@FDEK}TzawnrsmsjtjtotwuogaZNH? . 3CQ_kw~~|xqjc\UK%>"3&  "# #%)-''% |#,29?FQ]fmqolg^P@, }xv wyyyxy} !,BOS]iljl eg r)u1s9w@nEaJ[QPV@X6Z0\#b"jqsuuqld[RG;-}vxz+>O[eg^VK<1+"  #.8AHPWYXWVURPKF@6* "4GVbggjoke`YWVOC7)1BTclswx vod*V2H/9,(+&"  $.7DP/W:Z9[2^,a)f,h3j2m+n$pp omjifb\TI;+3IZelpsxt}mygwevdw_zSC;2'    "0<GPXahnsvxxsokf\PD%;20<&GMLK KF?5% +<HS^irvxxul^QC5%wo ib[WW X Y^elt|  /=IS\c-e:hEkPr]zjsxs~\J=5)zrfXMA7,!}~)1210.-/1585.   '08@HORSQOMLID=3%  ,?XirqopxzsiYKC?5! "2ALXd nuvtom&i*b&ZRK?/  )/$45<JIYW[c`pf|khcWC3)"ufT@/! '5=~@yCwOz\dgd`]\[WPD;70$#0;HS\cijknong_VK>+2:)J(U(Y(Y'Q&H$D B8*&5CNXbkptusmdZNC;1) !$&%$!xj_VNHC@?@DLWdr '5CUh +>Oaq~yaF-rbRD8/(" .@JRSPNKKKF>3#  $-5>ELQUUROKGC<2&+B Ubmy~odZJ8(   ,;IU_flprsttpkd$\(U+M-E.;//*  &C&\2q?N\l}yjYB#{n_PC5'~y s%pAn\outzyfK- &6DR`inpqrqnic^WOHA&;57D3N/V-Y(V!QG6#(1;DLQVZ^`aa`_^"^,]2Z;VCNHDE3>1 yg[RKHEEIOX`hqz$6I\o"5I^pp_K7|siaYPG=62-&||/@KU_glqrncZNA. $09CLU[]ZTOKD=5.')!8DS `imopneYNF=2( {z}  *8BKS[ cmw~whYD,yvuw{3FZjtx'x3xB{Q}b}q||wmbWI7 xodWJ@4)! ,;LZdlrwz{yuoh_Q=) /?KWafmquywri]SKE@ =8-/8&?AA ?<88986.$ ",7A JSY^`cfkopn icYI7&r_PF@>BGKRZenv%5GWgtz| )7DQy]njawQA. wlc}]uVlNdD]:\2`'gpz*?Q\cfijkllid^WOF<1# +;JXakoonkiaWJ= 2&.9 DMV\`b`\VUSOC0  #4DQ\gs| ~uhXE2znfehov~ (<Nbt !.>KYgv|iU=& ~qdzSsDp6t({  *9GVbmomjgfhgb_\VJ6" "7J^o|~wiWF 5(&1< CED?:654+  $$3+E5U:d<m:t3x-|$~~| zvqlc\QB0 rcXPLKPXamz 0EXhy"4FjXSj={( yi^r\e`WfIn<t-y} $0=IV^bcegfeddc`[SI@7/$ &6EP]hswwrlcWL> -' 4>FIG@830)'.%333A-N&\jw {ungaXM@.{y| ,?P_o(4@Nn\XkBy+q^H4! $)/8BGE@:777876663*   '1?LX`dggfe_XPD9 /!#((%! %,5<CGH#J1H>BL:[2h,u)}'% ~wk^P?.~sia\[^agp| !-<M`r #x/e;TGCS0]fr~|qbTE5$  #*07=AABFKOPNMNQPME9- " !&-5;CHLMONLJGC<3 )  ")/20 )#.?LYcnx xl_SH9) /@Sdu")/6=zBiGUKCP2W_ gov{~{wsoi]QB1!   %%#  "$$" #*18<?EJPUUUURME 9-  $)+. 279#8/8<7F7P8\7j1u,}& ~xo f[OD5*}tnnprtx~.=KV]__ ^\YTOH$=*.2 ;CINU\ejorqme[QD7*  !)18<<968; >>;(6-2///)/$012 2246;=AEGGB:2& %),$/20?2J2S0W*[!^^Z T MF>4*!!+5;BHMSY _d"g*e,`-].Z0W2S5L:BC9J2P-U&]e motxzzwqh\M?0# #'('%$&(& %#"+3!8%?$F KMJG B ;2)  &-(53>?GHNNVR^TcSfNiIkAk6k+i!f` WNC9/$ |yx{#&()((& %''(*)("')&1#9!AFLQ W^chkid^TLC9/&  $(+.4:>??<<;9#6*30.6*>'I(Q*U+W*W%WTN F=3& #*"1/88>?FAL@Q9R1Q(OLGB =962*   %-13467678; ;%;(8)4(+*!/6=CHNTX[cmv {|||yuoiaWND<3+$ &,1 45!6+82;<@EEMKRLTJSGPCI<@35+)$ "+ 2:$A,J0S2[2c2h3k3l4l2l-j%gc` [QF9.% ,;IWa josw"x%w)t*o*j*d'[&R'J)A.81//&,'!   % /6;#>,@6C@GIJPMVP[R`QcNcK`H\DX<P0E$9+  & ,2:@CDC?<8 4 0*" ',.,--/.////.,)'$#!  ,;JYgt #}%v'n%dVF 5${xyz} *!5(@1H:MANGMHNFQBT:Y3].`'^[W RNF<3( %)-27;@FHJKLLLJJLMKID @>:853.)$! !1@NYdmtz }&0~;yCrFhG\CP@B>2:!3+%" ) 4@L!X(c,m1r5v9w;v=t>n>e?[?K>;<)93,#   "!     ")04753356994.($! #6HZjxscSB.  |wwz} (3= CHL!O)P2K<AC6G*H GC?;72238=>;5-'"  "$' +"/ 1321//25 999530,++,.,)% &8K [is { ~wm aS$F,8-+."/4: ;74430*# '1<GOU[ ^bf"i,l7n@lGjHcBZ=M=>@/B @6)"&(*($ &)),00/022540.//143,"##(5-H+\-m/|,!)42-%#w!gWH;0' }"',/13"3%5'5/380>)@!DIMLHB>87:@B=4) !!  '.5:CKRTTRNG@8/)"   !* 4>D"I'K%K K"J*G*E)?,67,>$>94 8:4**& !2AP]-f4k/n0r:vJvSqRjVb^ZaO[BQ3J'F9,        ",02;DC:8<:556 87$80=;FCMKONSPZQ]NXJTHOIJKILJLGKEI>H2E&A>9 3,#  } '7CNTUU3QFKJBF:H.R![_cgh^L=5-"  (.22 3(427;6<7:5<4A4H2J3L3N6K6>5-2%10/-'!      !$&'%!"&)($   .(;1B;AD:L8T>ZF[L^P]IY<T2N,G.A::J2R)K!D@ BDB<5-  ! "%%   /F R&T*U+X.b0l1q1t2s3k3[1J-;)0'*%&%#&)+.26971+ %!   &-1 33-07.8(0")))) .32+&$)6BFB:655-$ "+2 79:-95752./+,.+0*5*:,;/:2?5E8>::9;5A0D'A8- !  ")16 97&3%/ )!""     #-#4">$F'K(M%J'G4AF:T.Z%[\ZQF?;89: 5(   (03541-'   '06>FGDBG*K6N>TFUKQMFO<N6K<EJ=V2^'`]X TPJB 9 +!$"    %+021," !,/)')$ #/:ELPQMF=3*#!1=GMRQ P I>2(      !),#%*/!4"7862+$    ;Vgm pw{)|4<BErEbC\=Z7W0M&A@D>49CHA3*# "+38<=<6.&   -7>J`t{wu"w%x'n-[1R3V2T0D-5*,#!   ;T`b`bc\WWTG 2#   %+29 >B-B8C>CHBU?\;]3[*Y VW[Y U UUSLA4)!    (,5CJJ L SYXMA7+   .AIN Xakv!',,*'#ydSHC9* qihi kjhlw!&*...*'&"9GIECA=6*   % (*$+*)1&<#H T^cffgiqy xmbSA+    !. 7<= @$J%Y"htyup nkcZUM=$  #'+04554-6O4g0y*%  mXB-  % / 6 ?IXhmcTLQZ^[XYRE8/(  +;KVWSQXalqs!x$|${$y#|" zoh aYK6 tnkf_[_ k|!$(*+/)F&V#^bdff`R?( $),.031O0i0y-'  u eS@ +    #&(('#"-42,&$& -5<#A*D.B.>,?*F(P$QKGF E?7/+! !(/7!=5>D>R=c<x8/% zkZH6 %),.,#(5"HZitzpc^VH;2'{|%.5:=?>;3+! '4>HS^glopqtuqf\'\2c<eE_JXKXJWHMC@<96<1@,=%4*    "&(&$! %*-,( "-5<%>5>I<[7d0k(y  {o_N<)$,4;zAtFpGoFoBs<w1x&qpx!"!"*5<930*($2:>B#A%>!930 +($!!    #''&#  "+*%$''#$)*)(%  + 5AN_s|o\J=3& %/9@CC{?t;r5s/s(rsv $07977:<==@EJPX`kqvxwv"p.g9XBFH:M4O/P&MIB ;2-'%$ "      ! ! $,8E QYao x i \ P E 7( %,28:::q9_5Q-H$DAADHOWcw!+6>@>>ADA!8-.6$<?ACDCC?=93-)%#"!   ""$#   #.9GUafihgggd\SI B;-  !&+/12442-z&nfchnruz"*.3:?BELWbimpsrmhb\(T/I3<8-:"<=>= ;98631/,'"   $1=JUbs}pg ^UI9(!% ))+,--*%ucY QONPU]fn{  %-6>BA>:6 1) & )+,,--/00/ .+*$()&*"*-+ '%$!   # &('""%'' %" '7FXfotuusroj_P C:0$# '-2676542.&}vrsty} "(-/0//3;DKPTTPK F A<6.# #&%#!'042,+ )'"    (4@N _ s  sg\PC4' !#&'&$    % -"3#8#;!?BBB B@8/*(&      )5@JRVXY\_a_YPHA< 2 (  #*/11/+%~} #+5;=;=AEFD?7,   """ "!!'-5?GHDBABA?=; 83+%    !0?M]luy~~~|woh`YQF<3(  !&())('"  $&('%#! !"$"*#-"0 23540, '%$"$#!"% &%     !-9>?>@EKNLGB;4,$ #*157774/(   !'*+-047783+# #(++, /0211&0,/-.,/.0226/9*8!9986320/*$     '5?GMT[` c f ijjjjlkie`YRG:,  %*.221-'     (.5:=??ACEGIJKIG D A : 2&  "#" &.3531,( ( (%  !   $'*-1453/,( &#$'**(#  (.3564/*$  !)2;CGGD?94.#!*3: AFHJ O"R%W(W*U*R*L'F$? 6.$!&*-0332.*$    $.7=CHKLNRVZ[ ]afjjjhc[O@0        ##$%%%   $-5<DKQVXYXWVTPJB8, '.15 775221!-$*'*(*&,#.023 5651+$  !$& * /355441-( "# %#   '/6=DMTWWTME;2) !*3<CHN S W X[]`a _ ZTK@ 1'!,1331*# #',38<=;70'  !(06"9(919:8B6L2W+a!fl nmf]QG<1&         '.232,'"!)19BHNRX]dimopolf_UI:)(09CKOQQONH B@=(:2785<2?1A0@2=66:-="<;4,% $,5=ELQTQ MF<2&   #,5=CHJNMKIFCA?;87875.' ! &-5>GNW]cfhhe\RG<-  "&'%!  !)5?HOQOKD=60'  $*07<@@@ <&:*7/6208(?DGHFCA=:50.-.,,*)&"  #  %,/221-(   #/>LW_einrx|~|ti^RF9' "+6@IRX[ZYZ\][VND:0'! )1:>AA=#:%4'"((%"  #(,-.-+*$ (/2455431/*"(5 BMUXYYXUQLHC?;753.*&" &06:AJTY]^^[XTOG@91# !'.48;=@B?92' *9IV`jopnnnlbUH=0#   !).36 :=?@@???@DGLMJF@:2) !!   !4GV_eintw{~wpg\M>1! #,4@MYb~g|i}ihe`XNC6+!(08"B(J+T,X,Y+T+L)B&6 )     '/6=DGD;0&  #,1564586%3+.2)6#984/.---./02358984/)   ")1:HSYZZ[_a_XND:0  )39<?A@|=y7{/% 5HWbkt{{ul\I7(  "(-11 ,& !)08>CGIMOPNIA80'  # )-1697 0 & '2=FNW`gpuy~zo`RD7''1:BKRVVSOJE>6/(# $1<FOV]bc_WL @%6(,.45667762,'   !(.27=BCA>72+$     # * 2:@DEDB>6.#%(*, 06<?AAA?:5-%$/9AJPROIC@:2 )!'.4:>?<5-% /?O[emrqqqolhb[ RB2"%$%% #$"     (/7@GIG@:50,(%  #)4=ADHIFA90' +9FOUWXZ_`]WOG?71 +$%.57755632-%  *29$C*J*M(M&K&G(D)A)9'/*&.00.,(#      +4>EI MQQ PNE;0#  !&*.0221//---,)$   !0?IT_dhjf_]YRJ>+   !+3:<=:86420/-*$$&$ *9 DLTUTVWTQI;.!  #,158;9;=?@A=;:63 1+# "!! !     *7?BDDE D?7- &&,..+'"   % -10-+*)*)(&"!%%" ( 4>DMRUUTRI>- !(048888873+'&%%   '3>JT[]]V NHA&9,2/*1$3"5653.*& #   #%&(,..-.2588:96/*! &/7AKT[]YPG>3# "%)*(''),0135763-& $*049=BDDA=:950+($   %''%  %/5630 *#!,49<==:50)"  #+158: ;<? A A B A? < 9 4-$! $&+19>CIOPKD;3( (6>BEGGEB?;72,)$  #,39?AAAA?:3*$   !!!"!  #(,+*('%3#=!EKPSVVTNE:.! $+1;CGIIG>6.)%   #(-15:<:6.(%" (6DP\chlonjc]VMF?7.% '/7<?CDA@>;5-"     #%(+,$,.)8&A"E!G!G"F!B!:0'  %/9AKSXYWURNH?3 ' !#&(*.01/,%(5@IQUUSRNF<3,& )18;>?>;70'    %/9DMRRSQOJ D ;0#   ##"    "(,26;;7/!(3 BOX^aa^YVRNHA90+(%"!  $$#""    $'("*'+,*/(0"/,)%     $.4;=?@A@<5.% '/576531.*&" #$"   "%(&#"!"!  "$%(+06;A CDDDEEDA>;751,(!    & /6>EI!K$K(H*E-@.=07103)4 56 78:;:97531.*%  !(-13420.+(&!  !(.256531.)!    #"&&()(+*.*0*0(0$10/- )$ +:GQUWUSRMHA;3,$ &.4;?CCA><93,%  &+16:> AEHI!H"G#F!EDDC?7,#  &/5776640+&"   ! ,7?E$I*L/M2L7J:F??C8F1E-D*@%> ==;:8510-*%   ',0122210.+&    &*-,-!,%+)(-$."/"+"'"#"     %*---* ($%(!**)'$  '069<>AB A @?>;74 / * %  %)++,,/0110-)$ $) +.14 5"4$5%9$<#<":"7 540,(#  $)*+,///.,)&!  #.5#9&=(@*B,C.E1G4H8H<F<B<<=6>/=);"61, % !!$$$#   %*!.!1"1$1)0-/...,-*.(-$*!&$     #& ( ) &"  &-4:=@A!C$F$H"GB=6/)"  !'*,-/120-)#   ! &)-03!3"2"1#0#1!/+&"    $(*++-,*&   &,2 8)</@7A=CBCECGAI>J9H1D+@';#4 /(#      !#&'*+,+)'$!         #*. 124$4+21/7+:'="=;:9 7753/*&           # '+-//.-",#+%''$)"*!) ' % $!!     $.6<>@ @%@+@2>8;>7B3F0F/G,F(E#CA>:61+$       $* 0 48 : = < = ;:62,%        #' *-/'0009.A.E,J*M'N#MLID ?81)"   !!!    %1!9%B'F)K,N+P-O.M/H/D/=-7+.('&"      ' ,1'75;B>MCUE[G\I]IZFWCP=I8@28-0))%#   !#"&%)#*!)'#  *:FRY^a`_[ W N D 9 0&  "#"  "(.36$84;@<J<O;Q9P6M2H,C'9#/&    " " !   *8!G$S&^(f+j-l/k0h1c2[2S2I0@.5++%"       %-#003;4D5J8N<N?N?M=K;F7B5<26./*'%     (4?GOUYZZXTOIB:1'  "%'('%"!           #$&,*4.:1?2C3E2E0G,D'A$;"5.'     & 2&<)D+J)N'P$Q PNKHC>:2+$       %/7!>%F(L*P+Q+P*N)L(I&G%D"@ 94.)"   "'*++)( & !    "&-39<<70'    !!!" " !         "%&(,+0-5-8-:*;'=#> >><7 0'"    "'+$0,4084:7=9>:@8?5<2702../(1%2!0+#      "$(-1"1#.#,"*)%"   !  !&(***(%$""#$%(++*(%"  #&* , + '$"        (069999 631/ *&%( ,04 1+&#   #+38 <?&B1D4C4D6B:@><@8A4B1@.:*1%+"'#      $&% " "-.( #!!""!   #).38 < @ BDDD B ? : 3 -%   "( *"*!*,2:< 8300/.,($     &,02479<>BCB> : 50)"         #)/37);1<6<99<5>1?.?,=+:(3&.#)!' ))'!       %(+-/.,'!    "*/257763 0*$ "$$'"/5665 0+)'(((%          !$'),.246:>@?<7/(     !   ",49&<+<-<2:77<3:/6*2%/ *      &,/ /-)%"+0 1//.+#     &+0232.&  !!(!- 0#/(.*+*'.!11)  #')*)$    "$')++.//.+)$!&,.*#     #&(*")(*/.64:6=5>2@3A7D7D4E0F.E-C)>"94. (#  $(($ #&'&'%# !(. 0 1 5<A>; 872*$!     "'$-)/,/../.2,5*9';"96543.'#   #*/38<?>=:73/ (  '.0220/+($ #+.015686 4 0 ,(&"     *5<B'E/E6D:A;?=<A6C1C+C#CB;0%  &/8>DJMJD;1&#'***($"-9CM Xdkjfcb`[TMHC:1*#   #(- 2454 0(,1';#CGJNP SPLB6,!   !/<GOSY\_\UI:- #&)**(& # .<IT_gjjhc\SJ B :4-&   %*, -,*"(('.&4$8#@!M X_cdb^UI> 3%   /:BFHHFA7,  #4DSbpy~ }%z't)p(l'h$`!TH@;4 ,$  " &.9BGHKNQNG=3(     ! , 5 < BGLMLF?7,#  0>H"O(V/_4f9h<e>`?Z@SAK@D<<751,)"     "*3=ELNNJHFD?6!+$ %% #!  (-/./0/) !#2BN X_d"f*i1j6k;i?dC]DUCNAF>?9820)'!   #')-3;>@AA <6-'" #$ $$"  $, 3 57640-*%  '08 ?(E0I8I?HEGJFOERBT<U7U2T/R+N&I!B81 (  %-37;>ADEE B;2'#$ %$$#!  " '$,'.*/(.#-+($  *3=DL RVW!V&U*R0N4L7I:G;E:B:>997635.2'-!'!   "*148;>> ;4.&   !'+ .010.*&  "(-#0,141;0A-E*J'N&Q(S(S&Q"N JFA;5.&    ")18;=>??=<960) !       !   !&)*))*"*'+,+/-0.0-.,-+,+*,'+$++("   !#$$"  "&(('&%%%#        ! * 1 8;>?@@?=:50,'#       !"!!  """!        $(!,&.)/+/,/+0*0(0%.!+'!      !"  !!# &('#      (!0%6':(>)@)B)B'A%> :50 ,(%!    !#'(( '%"  #$%#!"!  %) -14'3/35372605-3(1#.+%!      #&)-/. +&"!        ") /34#3*2106,9)9'9&8#62.+)' $$%%&%%$#!    $,27:840+'"  !$&)***($        $.69;;<;#8*5/02,3(2$.*'%" !!####"   %.6=BDED?81) #     "&)**)$ #*.1352,%  #)./1 0-)$$) /37786420- , *)*****(&#      )18>CFEA90' %),-,+($!'/4 6 9 : 84.(! "#"!&08>ABBA?:4/&)*"058876 420/,(%"    '2;BHMPNJE?8/)! !$%&$#! #(-/2220,(!   $*.1442/+'#%+158<@C EGGFC@<:74/(     !*07<ADED@92*" %)*) '!("($&&#( )('$! #)-/01/. -*%"'-48<A CDB@=951-&   #+29=?A?<82+$ !$%')#*(++*-(-',&*&&#"   ").231-* '"#+3 :@GKMNMJFA:3,&      %*-0231/*!    "' *$-&0(2(2)3)2'0%."*'$     "#"   ( /4:?BCB@:4,%           "#%&''$!   )29>EM V \ ]ZVSRQLF>82,&!       "$%%#"         "$$$ ' /69:866453.($  " ( -3773/.00-%   #)/4799964/)#  ""! !"!      &2;C HLNONOOMKHC=5.*$  ! % (*++(%" #).36:::9$8&8&9#9887 4"2!.+("    #%%#!!       &+-./24/'"!       !%+/48<>? @AA@?<:71+#   %+!.%-)')"*")%((&(#$      !%'*+-,*)(%!   +48989:9741/.-,*(%"    "&'(*)'# $ -39="?#?"?==;82 . ) %!             !###%(&#!"%()++)' "   "%%&'(*+.27;=<<;::83-&        #).0342,%!"#$$ "  !$$$%&'()+-0122.'          #, 3 6873.(" #).6;?EFD@;743/*" #'*+-.-*(%#!   #$&'&.%4#7!9;>BEHGA; 4.)      "$+02440+'$!                "$%$!" ',022/'  #'*,06;<=<9750+$  "&)*)(%" "##!      !" +4>FII G C@<4,%             #$"$&$(#*#.!3 552,%                 " % '()()($!  #(,026788640*#   %(+/14 5 3 22443/, * -0110121/+($ "          #*1579862+#            &.5<>><863.(!   ',27=@B?:5.%  !! "&+047:= ACEDB?; 4,$ $& &&"        ")-1220- (# "&),.//-'                !"" " " %),012343/)"  $(+.010.,(#  &+.2566642111368852/ -+'$!#$%$ #    !'*,)$" "%'' ' &"!' - 14552-("            # (+.0120-(" %),/11/,(%       #'''%#! ! #')(%#     ""#!   "%(*,*'"   "%(( (#($'$'$%%#( ),,-.+'# !              %*-0379;:61+&  "'),.///,*& #       "%'*,---,)'&%& &%#  #),./.,*'%    "%'(**,./12330,'!        %-2554321/+&! "#$#"!  #!%!&!$"#"""                  %+0441-)#   !(05:>@?<96!3"0$,$($%%!%%!               (.3552.("   !!"""$%&())(( ' '$    "##"! " $''%#   "%(*)'%#         "&)-1578763.(    !"!"   $ &&()))'%!     #$$##"!     %*158:;:84 0 + #  !#$$%#!  $) , / 01111/-)$!  !"""          !',0468 : : 8 4 0 *$  #%''('#!" #$$#"!      "#"       !$'*+-- ...,)&$  "')++* (&!!"##! "#"!  !""" #'+,-..,($      #')*,-.-+($!     #(*-..-+ ' "   !%(*,,-+(#        !#%$$"  #&),-,*'$ "$$##   !$&'&$  #)06:>ABA@=:60*$        !(,/122/-*&       !#$%%$!          *28;<==;84/)#       "$)-01.*&%$# %,13531.)$      #&'&! (/6<@BDCA<6 0) "        &*-/000-+'"          ""   ',05898752-(!       "$(&! ! " &'))('%"      "&+.0352+&# #(.2465520-)$ !',,*(''&$#     #'*-//.,*& #  ##%&&$"#%#       %#  $(-/12320-($              "&'+.13320, (#!!###   "%(**&#$)+*(( ( ($!" $%&()++*(&"       $(,/035777630,& ( 19=?@>80(     %,//.*#  "&(*,--+*('%"           &,0478 8 8 530,*(#     $((&&'&   %),--,*'%       !&+04677642 .+&""',/12.*'#    #(+,.20+&$"     "#%&'&'%#     #!     ! $ ( + ./13456751- ($"*- ,(&%#    "(*,/0.-.-)"       !%'(*,.0 1 2 1 / - *&"   !$)/5<><9745 64/'!        !%*/59=?A@?#<#:"7 3 .'     $+29= @>=<83.*$ !"""!  "'+/12 1.*'       &*/4 8 :<<;7"4$/$(!"!!!     #') - /..//1/)" "# %'&%"      "(.4 9#=&A(D+F,G.E.B/?/;16324.3)1#.*$   #&()'$ ! !  !&+/ 3 5 6 4 2 .)$   ! &+/1!2&2*2-11/4-5*1'+#'$&%% '(%     ""#%&&!         "(, 0 2579$9(:)8+7-503113.3*4'2"/...,*%   !%$"    "$%'''&&#    "&)** *)' &'%-#0!37:===952 /,("       "$&)+,--.-+%     !!  %)-02334 3221%0//8.>,B*E(H&I%I#G!D@;2* #  !&*.//...,'!   ! "#$$##!    !!" ###$(#/"7!> DGHGED @;4,%    "%'()+.000.,(#      ! $'(*,!.%0)/+//,4+8(:&:$6!3/,(!  "'*,-.00001220-+*+)&#!   #& ' **,,-...-+'$!   # &''())+-..+($ !         !#%%#"""#"    "$%&%$!   " &!*"-"0#3$4&4&3&2%/$-#+!(&#!  "%&'()***+,.-*'%#"!       !#%'(*+*(&%!    !$&(!)%*')(+)-(.(-&,$* )('&& % #         $''#(&*)-..103/5-5*6&6"42.+&"     !"#%&(*+,,,,++,+)'$! !$&()**)&#   % )$,'0)2)4(3'3&2'1(0'.%*"&!                   %+05!9#<#?#@"A"@"?!<940*$    "%'(*,///,* ( ''&%#          !(.49<?AAA?=;74/*& !                '-39=@CDDCB@?<71,&     "%)** )&$!       %+27;?ADEFEDA>:50*#   "$%%$ "         !( - 3 8 < ? C D E F FEB?:4.&        "$')+*)( ( &$"        ! ' - 2 8 <?BCEEDB>94-&  !%'( + +++)&$!#!"##"!       " * 1 7 < ? C GJMN NKFB>81(!   "%''' ( &%#            #'+.158;>AA ? = 862.&   !$&'' & $! !!          %*/59<@ ABCCC"A$>$:#6 /(!     ! "&*,,,+*++* &"     "',--,*($ ")07:=? ACDA=:63 + $     !%( +++,./-* %! "$%$" # +169!<$?&C'F&F$E"B ?;71,'     "%&'(('' %$!   $(,-,*(%#  &,137;> ? = ;9852.*&!                     $*.26:<>@@?>;83-%      ! ###"       &.6<BGIIHGDB=91)!                       $ * . 3 6 8 : <= < ; 840)"        !!"## !     "(/47;=?@A?=:741+%                !%(+/144 4 1 - '"        !"#%&% #"                       "(-02433210.-,* &"  !!          %)+013 33221/-+*)&"    ""!             !#$#!#(,158885 3 1/-+)&$%)$-#147;>> <93,%          #(,/134 5 6 788875!3%0(.**+'(!'#                    #'+ /3689:";$9&8'5)2*/+,,(,$--+)% "        !) 0 8>CFHFDA>;7 3 / *'"            !#"! '-2!5#8#9$7"5!20,($!                 !(. 2 6 8 9 9 8 6 4 311/., , )(%!           !!"$$$$$%%&&%"                 $'*.0345 7 9 < < < 9 8 4 0 +&               "%(+.24430.*&                     $*.148:<>??@>>; 8 3-'!                "&)-02110., ( #                  '+/37:<=?>=:8 3 . )#               $'*-024320,($                 #(,0123320.+)'%             !&*.00//.+)&"        """!         $*-0344420,)%                        " %&'&&$!            "&(+,+*'%!                    !"" #"!"''&' '$!                ! ! !  !!"                  !#$$% $$"!                      !!" " !                    !#"""                                                #% ''((&%"                                   $'*-/13 3 320.+'"                          #( , 0 3 6 8 9:9752.*&"                      "%()( & %"                "(+/24 5 6 6 665420.+'#                   "%&'(( ) ( ' % #   !               #'+-/2445 5 6 5 30,("       !     "%'''%#      ""$$$$$#!        !$&''& % "      !"$$#$#"!        !#$& %$"      !##$$$#                                      !!                                            !"!                                                !!!                                                                                   !""                                                                                                                                                                                                                         !!                                           $ & )+,,+)'%!                                    "" #$$$$#"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               !!!                           ! # % %$!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         workrave-1.10.50/frontend/common/share/sounds/subtle/exercise-step.wav0000644000175100001710000241405014221624107024751 0ustar00gdm00000000000000RIFF  WAVEfmt Ddata HRD mC?o R I!Vyl62*FP @ la =W :K9 hahJc]'` e&E} '  $G7"bZ/(?K- \{ MpSI\R,5uq4S$mxaO|9ki"07Gn Uf~Vu6UvalY(8(th.dR~y73.}z6*iAMGEuS0d|e(@vJe@SxY)7KUr}(7GX7_K!V[CI!Rm  V j2r,a;]h k~~i5 g~-gv}{8BVN:A5u{XviQZp(@`;&(RyhFlxxH B%dq=8Rf sh uvw1 : p'U@})S3}?8"[t^K5GUv9c1yY*mfZJr1`YK?i@ [mJT_'ws_hax &%+9B$a  r57& % aw171 9&rY ukxteK %D`a 9lJ\Q0"YNj gW37r2 yWuIWL,gvI:f Z wQtIdDy`  PSe" v}pX5 x I 'KCb8xTC-nO gQg[bMrqS1|q@pIo, E 37VrVpsQ\O 9H \ tVD:A F_ AD6N)q{TleH(l?Q{=M_ [j=\[DYxGTPhRb} &\&S&^;m6HeFd12f2$S Iz Nl&  L ALjR< (_xi  :U> uqc9I9 T=364A~y2hSG* Sdij:ltmO?YjNU BbYO > 3x6>;J  A^XT y{y j>y5ZG\Ng "iN\n'_.Ci#H"sH\T&y@dxV,gI5<,t }+@y<Pj?hx[8 = X,[ ?N fL@wR4 J9 v;[.xW4s$&ds"!S$@~[.Qw,z_ BT,MC(A.Z)9H=tR;Ma5v H 'QgM v dpGrko7' %Z cSU QotL8X=*IcK'm.)E3A+^SKMeF;55" yf zlcN fB$S G~&~&H? ? 1E(L  pw i{A8mHff 5PrE1|}7pR >X &IF-TFxfqjgSrl isrlZe [y  |Uv:  afa2kOFSa ^9`oiXDp/-:R AN ?;hz7?]C #v#+kvX`&0?Mb<Juu 1y` #{s7 O[Oh  1vwD  9 d|C \1H`**DS{ EPx}Fy*0~!f(P,A :4-OD2V9OUoJJs4Tbj1j A,r o n ` %3v<  \  1ve,=?wfN=X UwKtcH-ZsJ]f, ,p:7-6LuMZIhSAkz33Yb;R`*EV#`f U3StV<Gf+~% 'xH hy g f g 4/  36 ? 3yyDtK5]A$ LRSc ag _,6 _0B&mID];JJX@l0t  x/y<@|vnOS _~ UE{j!UE- ,  @ 2.c Pv+|iF R$f*lu !?MO2YXHOW [ 2&D .b h/=p8)ur+V v/$\i7f j@z\t,p0 M@h  ^ pW=  gJ o@CW<4a9Q mSp*LsWF,_(7$)<2VB n&sf]/<;[)0]`vfH: jQ 8^'TOE}= Z6 . r\w'eZe&p .  l T   2  .IwIb^;i/ pFvN3NqQdL0BVe37Lq!1E-`*} {j%J'U^\M`:LK>p1Vyk "7>XX % /   ]6   7E[Hk F4%-/%6h:;!)KndcL 9SuG[Iw un({vc-'1+9\} Enn_#Rp?{'R;\{%o,Vo 4S 6v l ^` Z{~t~  3 Q3 O"9lU*) !8x&r5U,dk}evR3t9be8H)FR- _[#Az5P>j?j!8Vqx"zMV8~ 3 v ^1 W JJ mj HhR}f_Q=x~e}u@MSYD( [VG;t96 L Cx \h#.(8 !a>Mh/*fyP (0hdW7Unoy^ 7D 0 | D w? Z :/ s l  vG)";c6SY9IFc SL"h.-r10+|]* Q Uic% H$+(EnD^%$T\*#'MiUb) # = ^ =  $ y' * ~#/x+5pqy&t!x=-+A>? |KYD& +v9wbv4 cG}fr! Vi>i (..(FxZ,~4VYm& Q3 } H  w  ~ ?N@.P)xC/k-[)OM8 >4on\[ 2{Q+16h6nrK\uN!WI8{h e=dX.^( \EKW:R/`]* p  P    hQ 9&s /h6u3}xp_jjHU6"{z)11A.WZo?qHAuJFO1j2 ge=J@oxS"K!-degE, I;x*b z _ H u E  1 48'@~aF;KZ+hW,&oZl}]4l712dg?GJ%4Q CR?S =jr;JSy:T"0#1E3S w/UXI@XvJ)yO< c v d  s ~ h K '}Tc+ea*= d v^Ez)Y]]$2W F  TO`FJo* \v%6VvI:\b Mv3VZO 3H \}Tk' r `  96  L s565C#FAui+K1 US)ks%L8c}2UE?IL~!fs 7Pi"-&7y/   [ k < V  " I- @E nc\9*3AQz.I KJBw m~TeZc09J<@_*7mN2H$u<Hf5^$T%J#B w V . { W 8   K P~k  O=; ?++BfU.'Cr:K=Lhoq&xVz_b'%mWTEj];lnVt0fr> S  P 9 i l   F q\v&fb iIT#Ck>| B|tR-wLR*UtNPM6(B.S3<aN) j^M4hbxon{c3c4-euY/)AfW" !  .  6h  ' )>*H{ hHVz Lx7 m375ns\RdyL :Q^]R 4NF#")cfN kz?  @6H%pczL O " >f  F ,   Z @^fpKS32#TMKI]e-"]*_!!PUt2zut1kWA^GSIQKN'_~ 1m6 1|I]U6A5'>;lM p F g f   _O i 3> P8Z7fg&;88l LUVC\ <9~/8 J/ <9X#4 62sdN4P6OP[NPV^ *E5OY4 \ !  q  |   H 1Ad9k !  13Sq~>`RG]Vmq$B-LNa1&,azHdl:A3'~a2QC"7 3'EK"8& } pm  G  ` t +) G 61P=iVGU:Omud^;Z,D>o=vIH>apI=TQwJP:TG*6)s/;TV.0jj0 0 D {   ~  t tj=Fbx?h J{P?b&T MX,K =JG5KG j:O0waS3H.ds S>SnT4?c 9#EsucbVmx5 | '$ O h _  |V djJ?G=m  'q8#q`p |w)xp_ts_h(S/1kS'xIe%o@%q%[;FG l X <   ED  | ^' 2x9@YC|kbP %\td(-FXW.AXuKPu\qj<u[J_ib t7Q :o5WIMvi&vjlXVJ M)db< U3 %  0 ^ !e2 wd O %k 4<Z1<a$NvYUA/x @ }A|mmHkc<?x:}s| d MMPzki%g/RD$gF0q{   u V  wuMk{3MuIF?urr1j}g^IG4.$z<~eek SHf?GN_5#0k4sY[BVORiWjHu /= ckkAB&b(=eMV!bjQXS2cO r f    )  +<&-p_BHd s1oOFbD=WC3$1K$0zl&8Fu["zd9;Z5R0a?B?0&i%H g'8?*L[7 q  :M 8  M z/*Awre@oE>QT_|fg^OgfOb.oP`WK$~}6+ !tvIi8p!s3zlQ*#-k{ezZ{37v.{-068Fx}tf kq]Ox-R4ej?7/R39Lfbqe Bu:X|>.Cr u=/O5}Ul~JFa5V)Zm k  pP}L}*E,V6P h98='8|yu6ndFWBu[ 5U 1 mQi5E_:NHi~J9P~ZQxGWB@D +}@_}8=mH sZ {wll27M :XN0Os ,66T!W~Lx5L| "}rm0F6GPk m@U50 J26k1vS{='\ZKFm(v6K~*nn.J~ $G8d[mL0hF kB}"D".OE-"X n", WpbQsmH0+5|t'qn4O5&8+BE mof|ssjx'4@W kM=%.(-Il IOo[ls pD Liue&-ME_sd FsE(M;OSG;#{b:Nusb]%pn mVRlue he O<,@g>a#v /~y(>L/[)nQYZ :pdKsY\hE}nexOy;p{C/qc7FU0`| Qn-B JE%ylt0 Y5IeCWh5lNxW5-sUs~cR04=S5Ax>B2vUJb S6tnK`lO`A`&bDb4c:SdmFjn'p(IP:*M*_ncWM5=a_=%Ti9yjPgXf|T1B4L\^83a kN%n&u>*(Zo/ FeN[p7^(JrK mU:i!aG(%4rj7:^sl?ww)! Bt:ob:_`vR^<1 Z5 c`@<\n{jy1`xcJo`A5V gz)eDuD4n!e`A(# %foB|oBDD5rbi. qgE1E[IA51KLNM}BsbrUp 4_B )L% Ja>)]q=t,tC<+}.tQ=asOvZ">[[ d`976cf3>HfU;L)zd;iRs18}ZBf g3~9/s[$xxz~5{=BHow/"&_F Y'+H!T041'FQxBSf5dY,#4.Q4]6w>c^6]GJ[G2sX:vn`NC&6pp=zd^$yYDJF W P)1^,Ns"2Y~- }PD/QT'`8ahAN$V/*m2fsMo"wN!7{0_?&f}vrj:6WQhJ;w{+"d}=S1D1Bk='PxgiP 4gNe[tP5Ow,y B,xd!^4A"s ) N6+y + Xzp# =hE q k[? ",R`fqYNJV9K ~8a,C? &A?- 90d udHsOMb%0n\& PIX%s^Hf1,MFG oh7 Ld&[/eXX#pXyk')Nma # {| $ |4HC -EDIJlBA  f `S/;q_^ Vc/ BY+HedaHua&# Gy0:; Lel w2(: ! veQ]I.|]8>= r~ ' uPo I ^f,;B&nEtpqhu~] XHcCrXsS_)=n$:u*pt92S|LM k h8 v k Ibm%LO~f|l!1 `[t 2 )] kPr* ebv-C+[a.5:n `&@EsKOwuKt"~@H&e CH6[0e+"/YuL HV  *y%t9Ye/1[Px i% {% T 6 ; o>SA4z:xT5)OiU)]QtT9?*+\WCc1qVS. O(^<$"j 4. C9 37#, TaNfKDwXsH-=A.= %1Yqb6`Xjau3xl   X&s q,iX  0 X`M #jLi?84;e s *L a  9bWG% {"D%#*c8_x!BZiHJ 1d  ;vKU~ggg.2QN\[i?3TGP& #n d 9>  nC qo Rr*%VL6$G^jG { g M \D  fFl+]lm[a[hi| A\ # - *t..2\nrU1C.xvJ lK=!?:{E9LU G} ^ '& @}a%JK#(0SShM9)"QW z 7 ( N%5Gn 2'e0ytK%8>Q'-*[#x[j}  6m)  re=rk'k', [= P 6 |' }vN-GGvP VyDs,1 f  tfqh  /m{Y 2CeN_>knTN] $zX-, Z Y6 dV uoHB!  ! t Ea`qg60y`^I}MJ ;Y 9 7( J8 p {3 G%x C"3Nz4  KfkGmoqq7"(t# ZU IS I] g> 'QYU* '  i}/ Mp>)@&l G?'X}+ 8  ~?(Wk@3p % rh D%,3hg_YH_a:  X \#D_$ >K "r !_ %d4d}[ya+sK9Z \  Hr =Sy>!$K#n]j5so c=@}DGa9+ |dVXG?,d@q ;# k},* xg 'KmU!  "2+ i2ZC1K<7v~< y]lGV@  E $gd {m>rd= s9T#R@cwbgS#Q 7FycQ5ow*Ze3eq0:_& r=n@ \3 b L( L : N*#xvc=%]A` c W] edd0<7 &hsqrz&uX -i^YME_rOYR Gy7 ,f y  R KVeji<@=t\v\:Z5 htZPIre-u\6z/,pvI]'? 46vofF{KO+^SLj5#:6 bx!;)b|9 A0a 5g p~6 n|ZbMe>1w9 Fk] =g^jZ?m Rq#^sn/^iFx. $^[k!.{Nvi`B?F ko|_ gJs  M^{ LONT[#0rCHYZ!': tOp/yYF{Ciy R{r#{SkG'(P M^W6,u" `&od|IJ g,rWRS  S 7 J B>4C)X-rZ3 I=Rt;)+.90godgr:|=Km$)AS 8){H!'9W"/NNLJfPr G$] <&  9 T w<| mv d eqTz P_d;+]YuDzz`[im\ u*7Rvrm/%%nJUGC.qb $DV om(* // ; TMkE cqRL k= kzWU4P_^G'7 +vF,QR` 8 `Z1=08HX aYanCFMTV4,7#j>JmMy]HDyBqC,&J\q3kl 7 /eQYu(""]wk^j%WQYveUNm4 +z@+ Dk U@q6YsGC\^{AuEyOVKVmcBj O:`~,dXY > ;  1[U- [n TZ# l Z 6  Y + (+wq*3sihi5a+8LA!"Y=~[)Xg] )r8>VCTp>SmnD?:I NOUXx-P<?w,h%F 3d\|;J T`{Zw Q c*?Y^Z1gm$6& p LM`El7jy-5?(DOz$=LP { V\.2<uhi:}j0%r*8eH%M(y / Q e/< .S  ,lX5e9]~AmdSmb 23 ]: pBcP= ACm)&tZR^U W(<^C0*GuUiky|'&x'{?o JO Y \ A U`  }Y ";A |y\({YzC>q < NgA d0NfhT\ W-3Ux kn mwU0`bL43fdHVaLwt K $mh X  &_I> 6 |'$wjh|X|G i.<P '[zdw|Jb__K(3"+O8xN *"gHC.LI-1rW&,j+7;sL SN4" 6 iO^ &. z:4.07~Zhp- f# UpIMioO5 0K2YtV1p;P 4 S tc@ 8 n><T  yNHa^BM16;B /T8_ 5 Z=~kF,dX/AKtx<w ^JMV#4a'bEhUoOcy>e^&b 2  YL ["2d H Wi @X  3ub2 8#+><K <2.!Ft~6Mfy RI%a} `Hu3\-(~v'[),C_36Wfiy:jsOJ!r9$ k E VJN>   zOVK{ 5V"6 *nx A5MU-] }Dg%ZFroSFr8s~'5`C=4Nd[W"4vJt)l] v4 E cxG[E k Q =r> >G9UEvT mBc{y5}i|:I=f7V@uxLxgMHR zC(|M eZZ~e|I l_^_N,LiNwL< 2 w a$/ M4  AS"GqU@@_B(6O GI_X,k[@UX<:5:42Uq#qWn(8 (}s% lcR9ZLyS8f M<eU 4 u 0 Z[$%% G  ?+ NH d"SnG ~_B]\Pg60?V_{~-ON3)JmP \Q_DeU+^f_cJFu6 N8 .>$ +:  cy5.;47xU:+<9= aj'gP/ 76}En ~Nk_B{x:?lfL2J'r@u2"[%coHVdTl$)o./  9 tQG$Z E8 _2 ng&\uNQ'Z4w|pMA4m).! %xr!+g yY;@!*"~ J$ji+zfu;qJb8n:"Yc6t 2 KGbxcY*r 6 H + oO \zI-ov-F1"(hK#[J'EFO2?(2SA_L`-.ATI5;Kye~^bQP'R/q Mt^ (i< Wb : y m # *b/\%?n>4Srm<IF]uK_bjYhAx3BR3fq?kk u,O:(FWmb=Kl2l "H . :3vulMX8 T  ia4~2v)Qc!KK(82:^0%JBeI#6u~D:B0od4+_#"-+5 T"n^_ tbY>  " DfU/L @ 7l d-0\P|Et Q&BT%ec<eZR8`?~X!$c.%?4InP_U4sDRG+y^T/{]1q o   QB>[7 = D + yW9d/Y<' NDk _osp)gY <8"Rv$VBfm5^kXi_mIz8`N-E&Jr1? <D,;u8 o 9 W l7hRRx#.(7>x||a  eL]0D_f/E, ]4bBKG/gS.U@_<S?jH_4tE  :h / ,gBbAj eL fT 2hAlWafL/km^o+EGnpO@IL(aKK*HuOcx bIP?WQ)CU2X|L]C,k*&+tf(!S ,f1 &i  6C\ Y D  -MwLY 8@G%Th; 0m#;U?G(hS AiDS$/oS_` :QA0}#T<5tRIFa-xaIT!x z X*   iFKJ_L.(u UD@N9Oymyr_ 80CrGU-jz}+t_@#$UG ~[l9bgn,gBW?nrDDNU _+ rV&vnX <    hhI\aSg #p?O8FP9}BeddfH.AhYSWb]ApN9"\<&>tSDq fb-&.x J/),')N V hQ'u : / 2 ,d*;,HI3;E=0g 3]q00Chuy; gdxuv`")nK!Wse+aq|iIgNT=^%  1 fu9.l";r K xl kZ&R1  JRoq83 ~kK+u 2 8H4XZ?# kWShWL~Pe8~6&?%o-o-^*>/ rJaq; Ny 3#nw J } 8 e\ R:H5TB}gW/jP<U<Tt'KmzvSw(w~,qv ]{#7.^WC.\Xb|0 /T aV&\. - o =lEs`WuzN^5[P^j aJQVy(;-Z<Lp$ftx )'$6ECl1la VW~!n ]GY `zs * 2UJZH.Dn 2! O # C. ) % 4}CQc$itZfe.'n^GB#tw&F?Z8UmsCVsJK!f^4 gkZxa11"j*^A$3Ca[T] ULqbeU d- OC y w KH 5 Q 7XlHZ2@"`IgM"|Bq, vVh:@,OZ!KpWnVV` aJ Y U Ir.K &V]t  EoOK8*DfGno7U.pf5Dym'`E8.Dm/ /J`z:;+o"  W e :  .@Zr> >2 6u / %2 jq\$~Jiu?M0miU{x#>2`M|@(O O1OEWk}_$\n3\ 1c]SB e j Oxq A a"$uL o ~M/>,4I?c{R+c]^dEVn ba-Dv!\D4!}{r-g8qYrW1Bh&swL[@#G:" 3 , J #  LJ j . W[0<PJc_Y4{}X6#V4D!E6T50i9ASud.%PCNa9n)pp=l,N,0,\/-J$v.nO%XJ , `i n l ! $ dw@{<OU9kzETDdgZCK],c4Sg N#sMCL9=0VI&q&h/!i4iCKu%cfJMENO$|D= j O ^ / 6  M (e-o1UaQ qt9nQGvdI9_ ^]s K6#b/z[?v%[ ry>|aU(NdLbv&vhfl / Z  5# Dt  ?)]hA2ioXlW(_ 3^=PZ*67[T Cb$QH%2Z, '\B*2" ^Aq_ }KSof { v]bN QsTD i hG Wa h Q  j ?r6v(m_Gs"n~z;dtsjW#^mA;;MExH  'qf=-DI&Ni@ =  [ bC-IKf~r>CR Z\ 5  $s ,M $  d2 tSS/NJ0etWguCw)Q@T&a;O'e\ ^KVJ5 ,c4+Bz 2 &,Khv x  f .ci1pv]/+/5J~G c { 8^ g " q q ](vc\ l.%~FJijp} %_31p`C }6[{2t P-|\y}#cwoi@ & E |I(vAAM{ybPkg.q :   ,E  -4 o|~g&kMWX_8=\#n0,u\yt;\D$0E#@b<6*L]a;O n}j ] Q a| . M$-r^D`<' Qf 4   p N lUOws>%wmj\+iO<=|kn+||G<XY1eev 1ZVsTABR<3 ?pk N  y | 2GrL~?0M}D.pM &6  'q $[&Kn?t2dN~Ksc;mYc5Gu@1FC|)F` Z<zuN&tM O9#:p y $  |jyp#1e:tnH8Ok @H  3Ia  %-+Ql`H!rUH 3dVhD7] 6?Y} dX%N:-?X $Z X v U + KP2T_&Y9$S^S?C;Is~" awzn@d<?+q:;9|E W3wo8K1cdo$8PK9X^Q!  2}:X ?6VJ~N P IK * thq&v .16yQnG>4J9H0'CP'ka5sAHkR?O!k:BQ?_Ci 9q8{h{]!mn\sU{+E4wZ.^VLJ ] o G _ D]@lEX\Nc&sffm0EODhK\MLEG`u^$A$ dyk<HwhBG#ZieKmj)> LA@E2SSU3 +Q`~>Y{-j+hj \ #  F `| W`>8P m+.*gC!d/*IZW8wVrW^(av/!..NzZ:EIc*^ &3 zDC9tlV&2l6.VqPu(cHteP' B Q @ " 0m=Ns\lx<Y#6rFP V^L"LM'(\I Y,(lq!<B&:(FY)U>Qa0":l}1_`V> m S; " Q:g.X%'{;i ^u <H6%a tU >:~'d~-iUN@4.\C"`>/_^A`}zH6H^ ,^n&?F[J  V*Qn}:F#Dq41u vk"ZULui=lDg6$Lb:]3}=\ U lz]l|4b 'O=o\7 nc ' { CIZk _w>B p+\YR<d]n]YuJ1\Uqx278bW1-IOyE=m*Chlg"n({l2,9cS9*C7`)8zr \ R<  ' d3 t{}MkHw>"J2A \ah%H_Z$rq1Ms7):h=.S{trGn: 6S3K+l~>#"[R  0|(D  F8);~h @yXwz0v14/`7-m9Mu/m|;Y-=S5HF'B1f7.>;Hv{~+ea -a6e$i V { V  j+0#J,<b|Q$> 8j:KhqXVeVC<dKY(WNsxd"xR@H^U}'['BmC`z?v'99H *fh9I> M V N2 xA^\>m$Ji#L>#Maz,b/X@,y]}fP//\l*ZSR*@d+<[4WQmvcY#tRcTJFdmXXB@.8e"c - ) g XhVB Y,3wf/tgIxpdG5^p !DC*-xJI3:8{zD"&h(=OU;K,SA2/%4/b.rQ l  d M MM=G{ %h\PJbWo4  kTg={<(yeu(U+Jg`x}D;Hn`XGP6>H$pJL|!,%skp'Np K h  ! 0.xnu8|&9Mbm3P~gXK%e|73) 92Ps9IV>l+*_8zD8Ez_<da-nqAWn J 1 ] /8FI z7X ZwX | G?(*EBU? @"R1SXmR7= %t% [l%|<sEN t& kY@iXoV # v ( n4QZ/4w\[&baSL8CA=GtyOF15/tz,cBqWVi(v-A^HkFv{h=l"d ` [0@ZtO?wu' z r s\Znn6z8mbcZOa>,L) Fwn\C)&T.PYJN)>QC*}L&|jMV4-a"JBP6-Xf9-%k ]Lv93Wq9#{ 4 gX&j<|o#<x88]@G1PI&kTCKI3J&GZW.!:q47V'eI"|mOth\WQv'*Y8"Ev6P5Z)C  1 @H.U,[Ix/5y%#"o-0I`T^ f6WgM_uc UdPyk^4_oN2q{%O(9Fu n-|.gK}6 5 J`W{W1@Lg 47NmqjSy@i- qwvSw Lk*)SNzO^_*;M!l  L-R?6L&[p`nQ4+s9 zzij@A0K Qr]7rH!Au_((?28xj'{a.3YG]RY6[2IK&odgEcf ^-7p3d\NYp <b(U<7%7]HD1t"/2,Qx{%3AwWVefO?MlcQ&f!L?ae^ kHc+]"Eb |M8r9By1W1]s}8k(C,("@u$U}DJ~RuLcbIr*n@.`\qKY*Rt]/<ghX#LF |'u pg>6y|yrm"tE+O9=ev&ZPjkMb'3wf^Zt6ghuQ3 cr&O mKE]k(-D~!;pWl9h,dF*,ll oU<L =@S Nc|gZEMk-=la[";G^z+UD+n0r.Pwb {%Wi^!HS&x'YE2S[t@T/\ t:y>~_^2c9HgeVKBU@Jrj=M?= xw[Gg6S`(]wuNib#BsrG$dChfP8v.}NT"k<:diZ tPcE'v<Icg.(pBr5)FDy[U{Q?4&Tr.Or$N!}6. 7?Wq"wV.?<]l47lit:QCk#'0'e1pgzT JFXh&AVA)*F gT X?9V:q[4<S^n)S@,zkz~BA,gJ<ejq!QrP`Y![4->ii>AZr3(H]4 %'+#aQNZtzH.*+c`5B$XJ4=Ynh,Xe *\CcD 2|"hF,^ZB},e=eS~OB_NV<L$[ETr%*2R*CO`QDH!0PvRP Mw|J :Vv a4=T4lV_ v;Is}2k~rI#um~LK?p ;_ |s_sdr:awmla%tK_ JUspj$y3NRaK_-V_=[)vh>/J}g!Ml)NjFM-?:4~/]N8YFlHT c>g $Qj;yhMN5] Ulq'h43UqN^0l`GdIGH\s'k8!Qv=k*nG Y'DR'9<c?Zvc9+!N{g>UuIMK~KoJJ<~T?p[0UK;^ &"ordAerG]KU-dyIqzO@MASE $x^z:bRCFJ'p!rId/ K,6 ]  !I{:][/ !p 7h46d Wh.Xp \ -o?ZT Km/kmQT8lO^5N2wgK]OiD[x`|O%QR5a`&3[Q }r,xKQX(F5.7SJ!v4#X?d|b# 1Vx!f-"W\#$M3Dx&Iru6j{'ycRnejv"--ExI79u*<Sizw$kDDOpM c1\F5S$@<xYc8]'eU#$kY^|a]_iY{[gk'6)0@*:E6p\}@V3H/P/83(4RH_V=J  ~[,M'Ie+Y`a%oM9ec<,W(%~@]Z_9X%O};q+(CJ5gA@[ame%//")#6!j(q/b3dg7@h]8F?\njbv-Ih]FrYx3Rad|KQePLb5W?0:Q3WW-uTyY1(pzQM(UL?\79gSJ^tlt#J >tv H=K3nr|:=I,z5h7y~N}G% :j[Fe9Pn>B::#0Cg 0Q1~uy#Q@l; h5<KE~ \#)88[\pRf|RwT%s1)w5C|FObg5Eh'^9n84[7vQ"EdH;xz76mHj2SsC\zZYZ .*w"<} b;vk&9RHA|bcy03#"\ ou*ra|k]if9KYi^Vw-3=i~HFA-_Pbr_*mgOP}*U[earc%S>RdLc5wH" 5}w2Rp1{~4!~c a2jMqC.,rR 0U@6/"EI;MVk6`bOt81*U/R(17vv[%*F@37z+FAOS(yXXUIUZ-UKvf  "`*k*t}2!Y1""2)9^' cfph1-b;{\ R <147Bc'Ku6~TIO]v-N{~\3D&F> ,fA `$nA,B,D$(&yO?,>L%'fK3F0 1YQ}36YP>gpmIuA7gG7[''TjdK0[hHS )iiql-)W haCT< | byc}::"$A< lJkrh ddovsh'Gx@ai8f_cON$C2D6;)U`8 4-h\%x:c =~V`T6W 7+@aH|_dzw~ Fv@W &w={;<[4oOh\y@9{XNx.kJ{',toxw2N=%D=OX9 UD'$^VX8'@R)v0,cq|jRbw5d08N6:85Gc{M14(j|' 0Bw'} RQNPQ =1Rg9[@1EHB{rNLy-IE GOz8(@ j4KxxSs Snv $ODpCfH}5~I7e:AiA G(mQtH|Xf#Y] jh4IO_jN-VV7ZKG$ -deR-vah:IA61WJz8uFG^(z}(T|SCw/jzL>0o ld{MP[%lnZ4RPg2IHOQ x'q z_ LN`yjr9~`y%&UG+`hQ( !fApD1l^Xtq{Sj VSwUf{lW\4)- x\Uz5YT";^z(E6nQpU*&[Z(Pj K-f2zuN?"w,O>Za. IE6X'Rx;NFmL1#@a ZYmM`Q 2WFC 7$@/Q dq92F(`' ==N.H96],]#S#<eK:dZ :nwQ$S9rK_GJ0JX*F^RY8bck)YoRsWPP K# L9`jO>%M"j ;}^J? d A*R+e76h! O`F" u(2u6422 j/%mckv |`+O6P&S1Pb{>C#$ Lfv1gucw!KGv7mPwmw+S5=ZAFYHt>  {CWVUSvM'4 0z:Pq&,Y-^I  yG R%qE?5l?wClCG WC-&` f[uD=(qgy(2dJ<O)sg-y6sP&3Px.1dS_-d\8=Vv(7>Rpn slH86j5=))-$5-)g2GTld|Qy*f9c,\Z<noa=e N6Su}pk gtWQV1 0fBcE]#&T]UBMaNSZH S(c)t) E{aF`8KK$6A ~~qJ d=.SFrl,n`OP"E,p2H HqoAoB2!LT-a("3H}{{IS*OB fpK dk?*1_-T/,NL#{R2Gen%mG{br}<*p}F:]aX3/4sGTXcl[?3};"}uc+ ![`?,e(@"SO^5Z{.&+Y 6)zUlGwp;)@% '|6V^8ohOZRX;y|Hd ./q-c`JA#Odj4EoC/'Gn w;!lpK9 BQ3~FnyD :Sras)2ewZ )&hP2Ha_h=3k;nmiA=G\oNEl^L?~Z>MTj"LQ+Q#T=+VA 0}h ^WK&_?\-MV:g-UUto3W:lU1PjnE.u Bi*G_{u]I_;n\xd4%!~Se5sdX.=)R)3b c 2A}x?^ww|5*Yj&T?C('2 nThV|o gQy#W\\=B7r`C$]]% se2s>cHA + ]|B`t`={ _NE$UI#b U+HtAfVWfq7)2|'/RotQ\`5W<l"1(Z,XJ64,[Q3]}m8|<5'w  b-}fNn7O+:#z]r q]p)u8.t9}n;*oDy"9W_I1a'X.:(q_` |1`RqH%v{O5I;F~2nS9i&Se,(z;ntziZLy2$},N P/yj?\5m'eyM  (ElM0"Ntd)R@42(\q+_Ri5JB@z,mvRtXy,?=n+y|$ : x!z@(?s]?Ff8PZ*}H(X}6& =A% wFdDV-Xo03 _/lZt^_6& +g=y >wQa -$xlIa{^}G&RYmj$FVwhk)BdL \By=jay5\aM K"Bi8|%r~%?;JPfKAu8C%2L=hN{+rM Kq= ~2:H/dkQ~s1dsgJh?{G2tK2Mr7Fl a ,G "A$YA_zvEHts{]2D&r[* *Hz&,WJ)r0$x],z 1a]O `Qo$hHFsCH5I/7ci{W)POazXY![+<`eZP h `9G1(`f$Z&sN\06F6jRw;N'W_ l8HW03>|2lH ? iZD1kME!h7^Bn,j?-K^R3,X?_Af?EguI~/lM fif2 X'1. ZI:QC |0>G3o"4{JrA~@ \MmO=DK13QI e!\oR}i1&` XM[)_J8ZWk%tV?4>VHb8Y2$>q}SH! 2mMe =J>nM<I&OR=%  |mH+jO(m2)C=gjUNP[v ,}'aogJ 8{ 8M.;TKaOBVcxorg_pj^B?Qh}5 <0LzU?xdIr  fqr-?%`d#dAS{{l{1f|EA c#l HuHAd7s,;DMZeI8`IKJ"0 V@B4^4;K[^Ea8T&:q2Id/. :eeg_)_|Q)3-.j ,=rk3@T# <L,Ff3=g#9 'u$_K4qi g 1 -w$R7$QSh:\2]VX*!1^HP}G6nOSU8C6-rx-.+^L3Z _$xSb+=Jcp%T08-W~wl 6H`R;+t3%akC&6+(vcby B]:'vq 0AjKLA(R?lb`/0c\\S `4Br& WQ}{=\=PB3CR)R?*82k|]zaw=0(-zY[u$ OyLR* ,b&(jH`'K[3z1Pv`m:H wi/xm;(``Qy >>ey)oB8LR}AD)Mwr 3ju4 q,!;MD0l|KB0W^(\%(gyvdHYj{B"'kM=&:DMo3Z;$WnFB*`5YwW~ou 'eh]jZh;mRZ<yWsg0ifTz oOM 1A1.k + H4XIO^+:>3-yC9f 'm$) boB1x|FlY/sdXb*2f3K22+~p+iR 2L==LSrSv|%lO T|S#:kA.5E:hEc"`V+K`?5t\>92Gwe)Cl1kEDiXq MO~,vX94 ;+r@Pf|CtG!  9&[.P*%gfTVmk3mbRnMJ2  R7k6Jc,MJ!SY3#(k!Z& CTg|z\%?H~nNRETc;+=+6I B] !'V_ci1W &sOu^F9b'uM/E9hUs(X >c0vqL]cU.AktG8,VsUAd ]"k<N< &?jR6@%o+eH"A >C t4Mb TG,i2lh[DG``P.~#~ 9u$l%Uh|ws/ x?s|{u4ljs=WpL9hv_w%r? Dhit~   o<K9`xs:i59JiMQ*f5A{J^85? $J;:r 3Vz};!@`S C =2Q+P<|OU<q@UEW1d25qeO PN3c(}^Ph3xq,)K4C35sSwK se9 {:8: =c4~M<zu>T1Y6M,QoI1#6]D $K`.Mk9"07ooSZF#@vi6}_5c/(,!mUi o22JNw[MU}.mH  m$,)) 8u}%]~z(2YL {'`)3h O+V/;Uu "jnM$WVI}'~/;Px{&t}GB|c4P$/EbMi'|'zP($!CP>Z Yj S-Zp|^JllJ+ W:im[cR-)EO|1nDxt|*FRZ c|u/%.D<T 5T4BXn|z78:{pF,Pw!G}UURVe`KPZv[5ZJBa7>X~CP|ya+WDt1?]1FU]GJeIk]3jqA7Qt9+Ix?/[( eVz$dJ d7?|DU|:C9G- D'De3~U85:W+>doxvy#!U|sRw99Ua^O^O|)/)i$?#c^cYTh>Y 4{rTB"Vs/`h5&Ea-UhYC45mkuw!|@=2,O)aGhuS&2'FC DIdqChnQ % &\MJW2$y; `14<,coaPj/5'Mxf] %kl4,k ZJgR@Ed3Lss) Ij*7" nP}q jI"typH[u.VbtEy `CyU.#>j&u>9<A0(d&|?"iLDJbPN}6iT7 JE?hO)H @Z+< 4D5oA9 +=8ab0T4;e2k5ve5(je;R[`/VM+U4[3%?| 5IAZ~l8lC^0? [DF(G" { W6USy=Ui=7zn<' F-& u{P  1Y?cnx1BZ$s?Z/UA:ru'gdW)}Pr<k9K4 >jbCDiv]7ZZS25;K'?vPK h>z2?m2rOz*/\ zCnKc0L sw_%0|J~M?x8",l-t@m -R_VNB_rZ!!wiU$5vF33Ll 9 '?$:Yi 8] F0zx_0JLnv_qn7eYp!@QyToxo"Q+aMk=/NTBC9+@0/).K WWI@d2>\B:5_L8@H!DoJ! @]OAm zEM?a-qu&}&`=h[r6sMqp_I#X2PIu#qZ/2b%Y(rjlP^,hZ) Q;M1n:`8 4 D}7Iqz]4%j%@OC;f@G~!Zqk'Y{tM/JqvN\r.y&N 'K|V;uJ* u(OXlI;ZT4\6A'vERF=1 K&;V)&!Ht^1sde>)D SW1)KNa;4' 4&"q4_k#DdTn\{# IZkA+=]`co 67<=*m)@K) kx`w-$DbO81dNN#p'pHvzn[I(P4L!yTzL& r9f%R/S^<k8#bsRC|< `KFSMf27xxsaAlPmUQPDhvzX}w'('PDM\oq0E4enrd>? a#6D!i]Whg,BH@ ^ TbWqQ?T<pbT% FS<s[wu2;<w|F-z37'{ZRktSEk[K!e?ef)V[ ^KV| %%OPdVR Jn)=o2aaU^};. `fje4k;h.4h>yf{-DiDec=md64} ,j?<&+dUP>4#l 5dVKC&v=pBe<~\7$BL nffK5C nZ]g'l._b252eX;nkt m>?j<Tz!R5^O7|8- qYR[wbP-F`@4|;;4q} sd7;k!hK[o*#M^hpDx&c 5|,-*^)M S=.<4 )0~R![)+ Z0_l  ,5hziP/=|  u8;5}L|On(|,|LjL 9u Ys,6e?dJb1,* ]oC(U7)8?'S/`H&^F)o0:,$&w\|N&Uq'e2hKC=e4U.gi!pBSad?Fw8/ix>v8 H; b_I<HWKBM?auM&u' I*Fvw!uH#L]=B|5rHi R5g*pcL#|$'y/lZtn#_?0 ~G1nZu:uu5!{HMUSh-_Q;dyHl D?LafC?M lGfX^`8;Xs}6,L4Omyz#mv{ %D_2gmWK7tnWYRWXQHCs ]/"v} V(sQp3\~[">Pw? -KnT(1YW@(Hln"k{v _.CG8 C0iS2 mxR~d O1<)pPmd 1+4pktsbZ0z2!!>heO1V,$$[@wp-eN1;i7$WdOIN^g58 S F4L^"0t*zopZ4",%88f:A^VJ':W&_304~|hx2CM^ZtRT_'ADB@'C_S%1zTA`NiT(L!?> $LYf~ N51-chhvlDf{Oa63.&=_~qjX'/n1o\.1;*htXs-2x6b)[^]3=3: qf}+ _PX\9dI[M(Xw5q%An[S~`kZd47## `|":x~`=&HphN zeR08EGuWL_ce>TAD &E>UG8G}%{nS=,964!54dc) ]XV+"wS^sY,Fhu=2SK:zW*q8_s)k9!Op/zAJ }r]cXV e<, %9r_fjBn-: dDJlO~H/ =awplB  *9xu%>V(l2!%Jb=,;[ \ UA2{W5oAc":90=qJ7_T[JH"'Qdb~H 3-H%l@9Q4)N ^  nHbDQ~#J )t,QqB3x&^"-Aoq(BjxE)9\#O(/QEXQ-<C )0, WSZgB}~v ?Tw8$_U=vxzO|.\ @>wj(wlCfFl$a2{N H,_I7 \pH3C_QOSmtL}+#Bh3tk Yi vPrDb-Ms4X|Ns6aZDPL1-dyXjL3}}4Qd:smR}7 <o@goxcw6}=[.<s!3bR2K0b<z~  8[#TlQFG80V Ef"H=;B8qsj\- #.^`%qZ4:)Lw(CLgZ6 gQc#rK-%.HL3,O KFsA6g4i3]nYA'`g45*`{ ZxsI0gQTH1<BQ-}=&+=b,2f| yA@3c$^aD \>2rWpc}b%FpGb{?'H!yMl)ew~& gpA63h^!d(O9-#369M5msQ?mFL*tB~Jr +3"VXT_SO  =OF"^:n= rk 2|2QKb~ PPw,86}L*FW;(9lR<3VEM{n1%h9: Vb;7"T[r! B+Q_Ugg_,FM v.7As1wLlbphj(2Aak3l/axwdGL7>Fl ?+oblH\IHK;t8FZ'<mi3\%O=r8H0\FtT7E # oi o3uyP>|F3fl@zwowuOT},0IS8 9@cb/6ozvx*PgJzqIcX8B<&G&Cf^W9[6i)#s7)K_tNzI4o!KZSUObmx8FFS@n%C]@]mc'<(2C5Nim[{K/c)MJvQ^(90z:):;6 Q,5c(f dxN?1h'hLC{-m"nWWmb"$V]N@nN NFLd00Mi;8Qtk]A?@dDe)>p p89MS6 &gQ{f0E_Q:jCI]PUpc1n8Vz[V^/Sm/U_ d)l%^W+siq.*Kt<KUoG;jEb3U93:0mT0tl;o^1D7:KVO{k *tNh.J5eM6b(P=d Zul})lIKS!E< l<8U^J,}d1(dMd- H/>GNFsi<>={N@DZ5\yKRcPKCG&~ %K^c_z?;6b'JJlXn*P9W}^N4vS(J}!Opo/+oaA\[!Zn ef~{h VFUMDW_YS YYK)6vrkD)iA}a3R< Jf4Me8 p;#lIoW+V-A?[F5[2SxpA7 3kKpBmT2]g9>Sgco+, O^oAtmw\ L PBCkGIo8ac(1{L~,ZU'=w,@H9F@GAD{rkP1q>rUZ&^x$u4F)[8x+|{"ols9x);oj$lQ"#wwLECS+P^-qL/8u~6=4hTrtgEC[_pl.!N}y3bHoa=05 %/PV]*1S 'LC4T'u1 7%/E4 H3n^jW2 xCuGn)8TZGsx0 Jveu{#:[yS,&u[ $\\C;{ 1 :gyk g YEN x{/pOtAN= @i})Fm%B}"%,P^lS^[r?\t. Xq%U_'m |v(]\vEis i*HSp7K*D-{+#sw9gEgI(sR 5=Ser8tCLi{v0DvlpZiWfg+WB=B.L MST[.<KUvkQ@%Sq>ZL?d5lV%R"B#x2efICpN]Z/9:OE{&;mop |4fn;;ke@OqZ}1dD~L(Z5j{1p!RD.-Mp_'$M7}(GKLEcNRUxIpC<^,)b~;{s BQ[>?Yh.R-WZcJyg$xkkH$[jsf`x<h#\y QLqd5D;K +foXx#plv!h4w>A;|oy}`eN}> AYd,U9vHr+y{_q8gIl|EG XJ:DSy|r g f$QJ%7+D13);7]+V#]% (Tl1TQ 0;ucM * A.tQR=1XPP9xP25 [bg_;+@X+|v7dhi{$&+G @C)<Nz`!2PWJLVx{g.pcw$\b,4!*1#M5 qb&MkJ>\2#K%WVhoEEe~MpyP@F S]c1BmM&!:#|.89n]X)\z<b2"Z74>) q3:? |Wcn=bA=B7 S:JzCmD7%N{  $tzz|FR]  PsS_|,am #%3AI[J:LAo> I*pB K}|KH~U0[C@cD A$1-R 0nDi ,5CAk'oQarSWNv:PqK6nY.\_fLT2T=PzY8?#{3I!@{)`~8s2lo2q5]Xn[YMJW~CBfS=2DoQP u.lxZ| I}3l0ja ,gY#Q T[Xb^gR]Mb~g$[QX|q@S,\b9h r6U|-$;lC pR|L^?P&\T9)-]y{_b05)Jc}.K~S. Ut|=h9hq`{#}lg^xfU*fug"N# A SG-X{X[DYN?*oTbJ`m/c6tmE 2=.{&#KveU Hrl*aC?h`Q (bbhz &p-2K#dEUZk})3DC `[3d$Y"zK (awg"( EHw!Ddd HBCh? y[v]ouTplEarRRz, RrW6mHjVgcX_6i-+\{!u/8a g)$AMo9! `IP%M+mc3 iS_&M?I\z@4. ug5-V<f<%LA8#D F91O:S; 6SoQ Plzf[n(vx~##$H^m5%aEz6P"(r<{zJ^r~TTQpeXZ\/hN,6Iw hK@Pr0CuYo PVF%x"]AG;O0N0bA^,a),B-~+BcG,u[e]`-uL K|5C5JxR0e5Z92j2`[yeO[s}OW9hx/5%8P_jMN56]t|'l+>)*>_ @%<4mWRI]`{l8AMw,~\ 3\rD %50XnD!<@b{tTiE! qFo_PVB:R>y]V|ae) K+nS" AWJ~[.+A@]Ub_1^+OpYQ0y|5u ]d/[^JmDZ ~EgCc| f V/Wx`o^E"r{W98y|W9uFq]S'W{I4:"F]_$Jx 6<i{+,F90 .Nv>fG\lY1 ;x<Aqr*/[8NA-hh9S5Pp4nq?t;oIPU_"B t0N<s8!P)J+'0p}FM)+VRCizTpxCztdFp-""+I|+JSKmkkc=TG@C(m%_FqwgH7]~a`*QY)q) ,1`YJ;IO}^7?P*$6`z7J<5Wk M) mR."UC$({m(<v{a +w ;Q_x60~`V ERfg{l0opl7r*nGP*$+Dx!Do.& !sJ#w0h2[nzU>&^0Bh)^>O<FE]xSAMV=sjBKu#v GY"v5( heT2 [1N~mC`%3Az "D%:4-Mh>(;43Mp &uRp5]$8O!^`QDbh7'hwIs4g{/eFHJ\T<2L?)q^$m'C X1 #@ #Hw"u%:n&!d':  kMZUgo'vB4,xh: :J0R|%rzzO9o{E^JW'^) (KmdD:7JuhkLP<>Gy>+\ d8/yl^s \#/ Y x+qAe3 HbXU vJrVrRpT?\Lg^da0YTC\&''k -Sr'f%&K;h.Da5,=0FY;'{gB+KE5-dOs1/}m)(j5&"cJJ, g]dQ;SJ k{1QA >Gvw^{jxu_+)b.`!OLv-[_~Me@4Vyzk|#EphSz>cbj^-E/ =P&Q!Vxy "1}]BjZ~5W=5ad Mj*&\}|[X3f {}"E3R ]Uw#nv :.\4]F6} BJ(9  *<62F8'naQ{^4ln-ge|qe.NbW3sCv"+i'Ol3rr8v|O HNISI4+<j( t!g_%5B >TC`{r57G6\ji{ l1JCJO:-K7HeI,\\[#%eOk"e*: )rI[WFh[|h/b<'r=H0 vC*?PIvo;E>Y-T2X% sjd2+mBq-rk&l^HhX@-{E9x;_$\pgfq}fctqbVTI'JQ;'fJzXG!1M@6l+PEv}jwK"MHest~J VHwr4`r{5- /Z0w^O=ZV2:fstR${3Ed_Tpk$4Ww^"0x@D;^5&/kA:sSO9k3^V= )4gY D?bs^p ; wX`E5.+w? 3hZ&7gYk|krm $F*VO\&I(_W!%^ _|;Rw&S^2cT(@c #l\l|c~yJ(?S<Q0R^-cZ1i_XW*V2cs BDHzqgh2>J:Y"+'F X  ~@mA!/=-#ht%I{^37]vNGA>OjL--kge-;kS:yKX\{EgO"<)gVjO\6k(0Io~:vm*Wv&(lV| >X{({>y1ZX;"&3W s3uL<fS]Qhu@XM^R 3U)~I~ka473w%n<oq^E=0bj#a_JqL  'Y{:&oG'4 N:"@pk2!u0nG=2|_4N>>>fvs ,<<^i+havn4aoZ(,]~FPK*R:RZf2.-\}=~(?y!m<k=s3 6M:,}?}8&!6ae^71yJcYz ;~Rd@f8u^#H@g|JaT"R)$Zd"D pQr|n{H } V*_Gh~8,4Ov>L5:Ixh(>6fT(\JM(Eu 8cp Ce.D_m9j~T4b9ydl~L,_TN&9T_k P@c7-m]0:+cDl`>Zzu [q]ob?a]STO=)}&=oWs?14cBNwmtREPE|c CVAiYBP>Q\viqG?Oh24]`+(t893A9f`YxdX}eCx,< D%ae3xzy*U,5loVVMPqoF~~{+iXsEpY>!!R&1y o)E^*wD8MrLzlI Wkz@Q6|oSV0#(:xXzl>2iOnd'@1xng;M"]?e,.AQ@o#e=0dh,WLXL1=,SPzU;:X[DrNB|n!?3\zL5jC-&Ah{ `;dYgGVKm?SRj?KZ`"B`- /R1G .FJE6\8Nei6r#jrJ~$[cwlwM-:a]ZbI:2`8c5zzoH/F2d02,XsLy$41Ifg #"<$q[#ysVyL(T!$_AQHk=r_wkN*t'e+XL;D-@MNE|3qKWcJ\[z!EWhG4iut G"\q NDK/AZhR$.> g$+L4! >< (S3pc%n{TmTVtb`Nu?pIvv:n0Fpa%I6oVfu&}i S~Xmu aVD,]Q=6!%/),6& ^S6uGIsK#[8izPD/W$.[xIJwv".c!1`&jMQ7~C)Qv8z_rWisHqz`RcvkQZ2;;Zlx-ooynjW4jolfgUM<E]gt5d$]4q.bNT| n7[~r2I^Mu0^@|E+ot6{+2] Fi~C}<9-H9s  Oiw'o>!0<n~js4\I6>0%U$C!(h~w:cQ =IM^0b | 'xOlbx.n&rlgb0bA>zXv3yH:yeLRV nh;  wvjf?H)*%X1S;@P_20RzKg&eRj ~nsuO v@W^n|"||oyrT+jhSxr:7Vi3i{%(Z0# $'~xj\/dc$YxCLu{8 Y9r0ZUuT9@{L4l x|{oWL*WL}>1z}I$,=Hhxz<n iV=.G8?DxJc Vj"J>n-Wp :X9(X(+d@dcpt;eRX,   `IL{ar uX-Jf<jedmp{JgTT_X3G7@* AP Df?b[!-i +wa n $%A4Us<e~,gdzeg#9id~Nok|uAHv/5.E +$@zrysJVWC/ !! faKop BIu>cQg5.Hg|gol6EFQ"n~pRS{NG{U0_m:/Uew-?"SG{[ nqcucI:1uI53V"&?Ed c:!rw;l_]yHy*fj"lUv8Ttnp]="z/YM]aBw`kq[1& u=8Ym|}kF&N$3wA5^]b=$\[G,leSOKkAg$d" ,YvCo`UUMDoR, Y4h!2U?k9%/u8n^t`M11#Hp[l`R>!BT:I:C"=MO}QfuIA!P|+`Iv^[+k>\g%QYnL!!.wM6 +IR @'+ =Y^ZPw:&1Jk_Iq4`W b}$z -CqO.>( Lp;g+Bs\ )DhR$;wq}kYTCB4 C>)H|Fk&UeTKXYG'H 2O#,(#$b/-JgX'-#j[)w|.D\L1mfV[LwYH`@;tw (Xt`MT8>yIyelN[+5Jk}CEH76+0-5JcdPt,WG?DGE0|i|`4C;%7Wr)fE0/:oYtySnaN490h]kVmS.\ g?p7 P#-  -S{Q^`0]*g[@Q]fqyCO~%f#2c;z*<3VO"U&~JGM(2s^HC`'Gpqke|v~=z0 zRFI9![-r*q:&O]_x)I*tDI>hL$A fqVwy=mpo]C!/X"=|nOl9C5Nmj+!`p1t]t7],[ Huqyd%@^WsI9hV]JzLMF!RQz)= =7#/8XD/y+ S9\3{")!.&Rz,A-6Q;K `#X@ob*8,eLMj^^V8Aln(TtZFK;2%JZ89*Ti ,\\i#-XqR9M(,H(RRDx6<]{zbP:*O~pBsg\eF=j8iBN82&\2 Nzc:D D)AAnJW*k"6aHB* ).]17"79;CXh oN_6p2@q^;Rz!.Lb@Pd<2_[;(z }lf @!x }W21 ?>/) %l}k|RI>K N028Hyrb`TSz[=YW_sL2{HEXxt >vP)O<Zau N66,c*U5[*f^eeL>.%{%LES063,20%uxX*\/ JyO=6EgyDs|2Jb-Jd;n(Bjql('nE(1USZZ/k/g@=Ntyq3szS 9UVVm]\P^:mMp8.3' L ]V`zFouy|Uz \q7}u/>QCl< b9zOhO%\Wc$Z{HBcL5iM6|&H}mlnxP<%lHYE Y<)ZmEU}$ nz^Ki4YlI-b}~: ?"#otY/V|v7;uF;Ro(o*q%r2EnzeKCJ:u\mS%B{L ,-yQqOoR^U|*t`:s*i(En|?T,4rC ez Je@9{\'-!pVd- g~{`OTF'wm_>V8,j Ibq}2lVmX1ZTO<,[N}y:N; wtERXh#p7b_jM2BaaADuz\`2    #\n`e-nWi;(&m=<=[UbYZ6g&@-92!B^f:f9^1jgdqG8b*Hc|AsW#H@V.[~Vg9 a/,E0=(tKXJ0plA50*hF'D9[M|$L mLKB)ed{z Zu@lX;JsVSV()_~`}A#q1EAFjzq\`uH~u+b_=oww' Rn]W9>{@IT3!u<N Jt=I e !Np<hfK=]-3O(M '^CM|i< k"zDSo9^wQgjEZe*B`<2kDjgE|r>H crP&O (F7=[f4$285a_U$-=i\7!4Ix#U9;i$a0;I6PfK/s^:7HD1o  -  u1-F;$vQA qgXc& )[`$^OX">7t"D)+ (+r!,*Sf7kzH6iaSFDV4 /Z}Y|j23SaE;-&h= (?*xe`neTjYtT.[4a^SuMISCT]fbEH"kn8wxsvuW"SXq*5[}Tn9&k-' /u?IyFyM&(Xv#rsr\>S!Rmz^=7E`KGLcR]JZ=By5 jbp{I~[C pLAt~ZLlT8,_E!aV**2{'fGJ9,TgNDUR|!=522YJ{I;/`WNL54,,@GwYbyZ:XXFpdi)<\,gxCv]%'6S ') -($C 7L3Z"yS|+t<A3V =0_7H"cK{I'] Z\Y=J++]-;REqImA*[J Y|xeKm'v=csvg<5Tj`;1l;;R) *9^Jzji{&MH F5Ry&&{KwM.B1FbXG^MGr&~Swf_q}c*\S+i@D8UvUk |([ C3plNhD:K[5$n7*l4IBSXw{AUPwGoQ=BCn0ZB7uFFu7n>  I/FPx$SH[ozg]b0qj%tk&Z{= ukA N ]QGMi{1,N3')G*PO^qZf*j dQ+9*+&B"I r~fV=j`%IlB_5o#pPu9HSH_w+t3`BBpu<ni ywDap"`6:CYD&&&LKqV0I,DFQkq}I_Fx^@C/:A.=eXl9c:c|_(bF:*1^73I=B)N~ME_gHZ]A+F_v[Vo2)-/H;q/NPefpXyr,-k#Z/xuf(S-?M<wmym^[ynRoQ |1'(]WM"XtAqbR6D10>K&\@|6, -  nYD}V\EA +zmi0&O>='(lNmX}zY3f'CHqpSDY -Ae tXLB!0(AJ Olr~QkRTABzaGAPA[=-%_d``Z$/@2AC aB=%?{4]QnkLY{kYAT )S\x6Uc Bnq,Fbsh0 3OW_r%2{xX\.m9} :~dH#LbTcx& ZoP(L0;Blq2vn;xLecIozX;/6X#>ik4my59 :v,`7 x/gDM;($ON'Kx"Rz1dD~+ .Yer}BvJqvTTd6_NX| FfJ9~}|i~k~qR Mk  ^s: uld'AMKP=?vM@U SKOc^O20yQ}lIex ?`k V%PW%.1< vU:_x89&%Y2:KtdR :s}adv`=B4ha' tYsMa<lml{8W ')E t-_g`e; up/{2FU]a\s%dICm>uVlQ,OK m\f#!S/ FT!avFg?2&-bH4Vao`LvmUMr>e( YJv(g5oWWSFNg* S -RZ6) R:LfY{'P ^e{{sotk O=WOAj@$| 1:WI"OU@ #s_cRSBzBu}5~rB"kDca)}!&8CXYoeE&8)<G"+sN}a T cueA jo@fF*98@rQ n ${:4|tOq ybsb2+`E=3VZ:Dh4Lr<ij*XACUQ^Jp[%wqU5wX*~.R #Z {|T0"H@hwA-$-/4E?_9T9,: wie:fFQppA+1^R6V&/Kj|CrDhF1Rc LijT1/y0.%9t.}t1 AQ>o0 3=8;IJIJG4D.y!*N7_B9$3\  wTh!/)9V!REoe%KnM#a V]47&QP %0+8 sbdPXo/bR!>0Wm,d)4;2@p5W_Jg^MPq&a^4K+?Qcq<w'cBi4z_,2 171DYtY9^P{3k>g(v(PIV57:(4ZeZP;Aw[<p:?9^Lnh]J&^u{ $h+ZmG|p Z4JHUIT\foyukKz,9!7CcrJrH +e =9Xi/V!p(E}Cf]`\T>Ki>Q=3zq^hjN>, "79Wv"g|la6* y6e V/cS2R&z5=6Q^]8WF+'=LzSeHUt7^cGSh*wjgyPnGb5[Q^ '1, ]+)Z}D6Ol&Ds C/01TO:n_]Xws YWpE9W CR.FjEVPVAivjW/ R1dv=f07cl]H i:3x9W8P& 3>uc"?ePK)cFa)$yt_JWPBEm$@abprDBTKB'\,)E,{JA:!<C94>"7J+0,i ^|$/b]uVX #CM\k ((Oj!Lzhwe.s)I  ]*mKn9!xmq5j> ?6+ S*&2/=NVVTj@f/0 y.l*z/Oi.l`&jpcP:KxLyR[9v}z7U=^+b36vLTgs /KM"i m #UY{a8W!HqOykbNJ+xkP4C(KV9eUsMb=yw7^@*Qb{&WP1]vN5S  o,4=H+w 6|@! N?u6x.o$T$ '<gO:PuQwvqi)<o&|<,] gv bO=?)]KC9 K$r:vCrx!K8>8!- $z#jp%wfKZ;Ve (lSwY(x]*dO|fz` 3k OC00G.i$s$X=WtbNl4_I"x$ M qpNhe-RX/]`: ?s*K[ku#Gj Bbp]%py`q+LNUn<E#)ms,%-=*h)h)Dxks MJ'u 4OTFYa @J# XzIE3$L)+c/4gAjh~ hah4I@2'ZRWT.BkmQ4*f2|JRh`g0> \rDK,A%[K?Eu Ax7GUwi]vj3,#Ha.qWh6 #w*8nHQ+Qf7 D9uuooc! g"o~wRfNUMQouCY'u9i-u$$iK}`C `?/JKq#zx"bp5_E[#%z$ ?NC*?k<+0 l TsFY\8]>B`='QT$%M<Y~-VE}os]wcTA.'COnNp&>At#Gg!"1OyuNY@NBO>>1( HfG9ZI ii;KsC=SE)Ecu`b>. HfuH05'Lbq{=&}O|cXNl?j? 0dU!i5AYq[1 a W=*t;;IuAG(iJX4#;fd>>|szZN#*koG?)+lOX#<J2(T5\2vWYc51k/:esXMA!{>X!HV: ZOY^0Nb"Ea([8Jt< K Dql.p.'8FkFGI\DH{fCuD-xg+ Mswb9JSGXCI)P>Y6x=!|X|uQq.KZ O&n=0Hs1z><6{[I_ #T(F1SN-N]\?9[J1{Ur+O>eGUxZhcJQ#+n3yI={s[9_y2b7b<,9eo ]0g}M7Q%`]wouy+)GWZdM=1:CFILOmHc IX$DYYW'gzau;RN p[*xi z)vw^ ^W,3l=Nwaa>y1 bH?iIkH >q%~sQR44:Oimem-S@c:bH :~EG6UkUFO({(dm%8SoA58_~" &- c6v?97}!?9ps%TDkP;>@D@;Jj^8[X_eJ6^)Zlx3SRlXDX >YQ9suaH& R4WC zBaG0KP\ M w7JC"7/)`!Xa J4r1 (3]_o[MUOg_q`4iluaI((5L?p[@AOK)< IEDxcQ\M-Q$CsUX%Vy_ZWHC 6gS=)a;w;k 7$(:df&Ir"'A[^eRJ9tD@)BKObExH2o7I/ ,-kBihD Rq-N"mC5+Z#%8NPD+F {JJ#}@ y7 j ?3$g.W:%yLa!Ebc~  =oB]Z! MMs0xP?Y|W@'e,PlV>,'$Bm{Oa:g u~ T ;3;xAOeh{t5Cr> #nR9T5M9u zFb(pW\~N# MdxX 1e+l<eak(:D,Y/"y]6WNOTGgAI (4 H1 [PGEZ EVc)|M=Q/g=6< ) ^(8W%Vi>IzgovFBHbJiKGGuZ<[>txrQ+ ! F7|:v& F'|M,?D0bPB RkxMN6O ;4hwZi?YPAS!+fiH-CK.e "q2}5tu`#~*s&RNXM_GNT2"|`Ol l%qxQl=$4WMBQ%< zOi&O6TA/GI%& 5WP0 b,%}3n`PExfjm|]PMG*,h k5L#P~.)2q}lNcg/ &}es^4M '|y\{T|,= 09/o4Za~i,\{HM*:?8.5$W !*<`)*=~TdyP7$/AG'#WEVq|,K:pry< t/rdT+cHb,/H -byO|Xzk"oYen10dA,BLWdYw5<%4u?jKdaCs4yIz}oRGexvUvL4/ch%%[q{]WQK@a:LiZXg"5QKey:xD!)%v$1Bd{fdHCZF[]r[K\;bEV23Jl& %14(:sFW]@7Y*Zav_gm(I ^>u'&(FF@u_9LmCJe"6\lHW0G@V^|sw|$UjWE<$"VF[%9Jj7547qw 6,t@eihH3[SR1o+\~+>j)<^A4*oQ~A6?  <}#JCw9\d)DZ CsWpKV(T Z (B^,6;r1Tc/]YF '9?b4yf)?B|xuN^g+c]X:KA^r># u0R$]`Uz8bL` ;T|AZVbPXlsAoW;v"AlFq5GdzQD,;y b=f{V~fNqySWtx=( e ( D iPA/kmW|:Fjhl9:l;Bq*otUJJE 7y2g~-7>Li{Nf_kyz_sozsS/eMlf3[%wIZ\*l P@HwgcOx|ZenE; +=:@aiA!UGRg>!E+ T+vhP>#Ybek1_* ~wdf^FMYC] '_@-(@8 'WF4T= t]Zw5wG;= y/U;hS",.3dF E X$;6 TG~`Vn`RMrZ64!4vqz8 )r[pb X9VYIDZSj_-{hJ6wn.zb0GtiIYV'KUi$W4XSt!/`~34~|8e!4!xc/Y{7_3w&}_g[8rn$/)^|>s;~3H~aHivK,3brjJj=+(=f 9 $;}_ krik0M\ UUd J$nI?tUexd=QjfXKzz}Kf/Ku ?a*:kZ;7U&7Tnis26U!U94I1$5_?dijOQ{<~7iG2:+II\Bg<|4Rpov ajfF2[]$.\kmH;LoNgE'B~4b?3d" * - Q\CATF8T946d 2y(kkW7$B<j2~$(p$1P\qBka|5SK@9`'l`1~]~kazfoZphcN" RN{w' (.O"fROaWeB"N0.*HOzt#4\Y@P']?7]8jX) OBEQs\Y<M~O/%oo 3:t?82'Q% 7X}uH/#]E/.pH6,R@~2 "cS%1Adv=LH >n,s?lY_KK8C8d  r_6lz@m! ukfEaaCa[ 84/;}>Li+=p6@qz/HhZ)41*YK JkZ` m ccTgC9o=l6SKl`!1*'^N.\9Z)j(&9{h+f>{xFK6w$<=#<5q$y;1VUi,Iv4qt2@e ]  y:\/4{maJWLe''6pS T*KP|:% ({!MT5li5x9%  -WF%S]<Fm! I-Osqn*>W3P%6,.e+6]?lI~V(C&V_i]4eAv Tqteckqy 7zgqTGpmD%lhu4$"X{) V/P ):p$l!N/WhVWA>?V3{F,"(=BSrhi5A{h/\7),%.aR"t3{yOpkliKhkl{X,0.gcMU'jzE S=o}&ks3~&6,DsOR ;U!A>?,*.4:T/o()#bWJAB7T fU W4]<tcn6cvgn@W+~$PC~u;]a.{J//@De)b>vR j,|2u<[H-n 1o.]I@3f1.mn>[43M'DO9Tm8%#5(`r-yfEM( )TC:Alu2xJ~*/GJ=mz,oW9ogosWh8G-1T f }V'\8*6XnV^bs~n`Q/L8{wV'W ?Li"ixz'W =%l?(]njcJf_;X}FpWmH}T/;!c^''_>A' `D0!;x~ws^@PkQ}QGPWj%Z&U 'kt!(- mQA;NqyV4~P|R&R"+xCk:r*GS!Tv[/$>ovP))2E!!, yK:\Bu4bY#\>]`hue8]x .0D`OPD5*wb{[4,z3IO8s# /{+Hn2 #X}C1fi4 8r&H^:b*U1\=kBKb3p5Fp"*?]NDL'esj"~O3(CdP{;! _@kGm8 vxD Dw:i ~4IryafoVNU\{a j+S"W\9 K]q% [$NEN[`w5Y(x>oCH&!aVuERu W,$0) 7IjP3-@M7&D2WT 4J>21~&0/ w0`b/jKKF)4N^Kq  @nhdmK3g &jE !=jaq(*Ot{Awf:f!Oo"-#2& AghKBF5J$1-.um;._rwS}oxZA,#^lhDN)=.dZ|~d2.T-^Og|Ao3'aA~g%@<f}4R[n*EWER#F'`t4f;XaP=Q5Hmd<1J4r Diw{|%^ \NZa<4(H{?T}6ANZ.Lkr6 #J`?j0g-a[^s,~vz}P1/C#sc  /Wy4axbTZOt0wl]TT[sJO)y6].@t1 M`~W&~p_C &Deo#?[ T CeWzp[yb`Pr).+:-a@\y4x b dayP?Pbmn+GxO90 8 lvqb=[YH&*Xz Uh$F7I*?vBz_&=W $Q2[+9nPH.B7$R\s*qGW|KY+Tps[jB:0T)nbC(U;KkXom'}h[j1Qp:9f0>^_nU<R)# Wh"WtUIy El[w*K%=/ x56KCSF#Nr\$bo "9b~]WjX.tO?pg4ad^SR|?. r`= u&DAYe8m(7'S%vx%p8J, Uj[rmdH'/sd2 >YjfK;=M\p;i4L.=+Yux>c{S`]D! YPh`F=d,~X@fCFcno}1?cQ/S{nlK/\/ ~z )yy+Y@Ldc9gU%1J$Hcxrp"_Ur>.oALUp`D3b,/FABJPAQO`Mu]Z!a5v5h{64vpaX\SLTljY5DVD{`?l#a*P{p? c V2.TrlXH,aL=/&/C=H:*JAgce6<V"6jSRD-lB,48:4, %D_gGyl \M,0&C_Nk8j.k7 6L\a_\q=}v\5D[!P  _E {"yLyA[) G[[XiOrGH%:&Q xLr52A&O'"=FPTpM`;@CT|xN"m!rXQq'[a[a)c?*:KH]u-&eYY, a:p ;<s+W: ",BZQh(Y-O" &6~6>&-$NbfIz!6&!fZyqyB8xi=* (Xo;{"dJ }P$hVpHL(Q^`5EB*?7>Xu\)wNy *!&8! &tAuSx;r =~ Q-e\y:xvK<5^_pzvt54U-r"~(6SKT4359r/9r<J6,u*@) 5G*b%g^;.Dq`|eAk< PDb\ [{fe_yR^]^~ud5= WV2y$:]m8rFL`1X--a$pH$43`GzdjK%}Wh*(F781V=|1Z+M/LC]Zw~K1bk7sF<}rS$Qv .COKV8 F\(a44l7nM(CMJljn[:wyaA3f6u2&[cQRp"aW E+|~5"Y4CfY<bLyZv*K>Lv(qQFBBMW_X.Zvk&Xe g'8?== 6(kT)} d4Py[:@6'*7Dso)p\_4A\6FctJ{g@Nj7W0["Z* $N/=iexR 5/ ZF #jb)k9 %_H T%;Wg*G"7Or#U}3ZmalUjA z-A8}dAB1!)8ijh+>d!ja-'7=(1e 2.}["# FKBQ<{)o7LAubw"4}+g5sx*|8LYZ;y:<5?iDv"DTfEw:1dc&pVRIe;h;:9VEf=zyNU"s>'gD\^ |.k6rIw aV=`b)Z'('kJs+(:4l*O \OsZsX&Bwyf\ea;_M'+{xIE2aId %rC~Dfm59+C9XJUsL"w@E|v*z[5=B-R#x(#0;BVy6z{nh|Y^(Td\PQI>;&' bN&=SgO b4E4se&\PL\sd!M"Rdvs^DvgPn)u(w~RDp;% 5*O{gi8ldYclfWV>n{-"DI:[(P!?!ooYM4J )j}8EJ%fb8 g4JeMGV=Zs"a"AK/\%`gsdu]=l@<5jSG{2- 6QDH5(  ,CG$` nmKw2x-wx?PjNNh~)zAqi$3,b5}Hd &,,"4VpAn[K>7!HDE]JA!ub/Nk_?s|a='*6BSZUN:2M^wRxAr6_^Y"zDnq|G\$XQUtUKLQ:.t34"/5>{O'Q>vbjV5JtYG,;87@~F-,V}~,Bc6l(z'=z|5mZ^# ]$Yt%b\% k$  ?HEl{T1V)5' Gwk={%Ms]=+!3Z#/c1mAiI"q!v?<a,R+" .*/0SrvxKxIL~tSFAAB5 %Am %27:VLy[i cL[L!Q6(".;'3KrPJD/A8`v.xONt.V-b>ldxrkld= &h 7!i9fB!+5(z`i~<.pF`2l-.;DC8EkD:09b;.iqMR4Oy-Z<mfW>T^% 3g!jKW,Cc9>WVZ bymafp ?P}/]9 OuZA!@[C$(gk>JzEpSd6WE"qU+ -.&#i;-[%L&'Ai)BA'aa +9?GK^wqNiEyW1  s{~d~>-KA(*jmGwFa<`A`#SO;wJw_?(<O$y1+Ht'^ =j 68x*)vu83 .DpFp.f;%cufw< 5K92-aq/q^fcXo6msdG$z1@`X.]*`#/1 Ww1Q6Iu 56x4 4vbL% -Qeps<I0dlvERE'p   5Uye?c]vHXJC^jsiS3!10w346 qD ;PKJgA!Qalr 5t*0tc^0 $Kr0ozYEb.4 ey?bBL-&$# 0$ * . +.m*1--o8/K`_I,(!l"oN* 4Jc :Oal! BHGr=@!={e!Gk &CHi47ZccF71L K gHWr =t2'Y3&IhsdEEPC# 1s^1>[y+(Ll*@e4m_* Sv3>k&&#UoD$ :x!q *y6g?x?4K,.-x!K( A\yi>sxwqO)]pwY2E,\H9F*w`e* L[@6-`{92LoO '.V]*&$1{FaQbF2:>QeM>M ]U+|e=!ps9s}~od Y">j7{^MY }EqA<']vq.2c=XO2$;wW6 )N'nd)3=@EU`T<J[z?,yM Opq1vcS T"yc[0`&z]m|h6Jg,%Oa?t(+[ gA&,VV~ L1FROVabl4rH ]V vtBzhpTH#Z"P9,oIkYFvvW.%e-'$_0W( YP9>f *V587<tQ8uzllYyA)B  >M fF,XGluA?[.t."koLE- y%X}_>(n 7SG8xS6 ~u2!A[z :!MWQYcyD 8]F>0%-]) >~sYp8;lC/5:Q[ fDt I@ _ /&Q})6Uh*Oh?vNx3H%I_sW)L6BR@SjsyNK$x+xREMqT@X\V<'A? k'}`@Ob =8c3:.b <Sr@!WT {YrA+84Mkr.C~%)+)i3gKG]+t,HK|~V/i`^Tb>- i?s+N(Vf%~E+NsO5i%AlZ4o1rVu[txrkog[J&IW$+w$&#;,B9@OBjEWCtkWVFtmoTq&9SyQ$W)$`~ x) 1Z#lA r #<tKRZ%mo}"lX? \nI3J %, 1,"I2rB#wg lL}iXTxCX'%Eg/tXG<C9OqT \U*# G5X{uHxeH+ Hxf<Ky:#+G=!/8IeN'fftxxTQ3 H fDj5*4lN/= EINn:`={R'LkrlbJHB6H,M,j 0OnG$CTE,&-S>A#lYVJ)|F KkO1 kM)+IknD >6MOY+y-^  .^ |C 2Zl]JsDpAh-p&HY\k$92Oy  |O1wT-8bTSE*vL, Zp0=w BU#b}O~Fpte^[xcrd2,Laa^M;3.6Uqg;z B q MdCf$VS3a:+6FOW^NB[I6x \*M}V:Q7ZI#K_aZWZ]cvs< ,X  ~yW6Sery4*-1K0s'#),yAqS0zgdKz\Tcrys_S\Fv](JXY<S@oH1rdY.POJ|E:.9m$CI&qQ$,NEb jr* 3@BMc@41' qdZ=F0|: qzj;z], )j EJz$T'vZtb2#-W:IDMITQMc6~/CaqsiL`udjom{Xe*;W)2S"l)y3>P`Srid\V9rLY@+H o,XOWoa1Z4TzN Cr&79.9RA O!ZDeor|x| JgkW=n*P$N.).8VLwTZh v,~72,( nk_MR=(.(7;/(/4=5sJqROm_E64AESl#[-g/8-'CYW6Z%_3dWtz@N>tIoR==KN^jox}y,)syaHv0?)' +/*:[odPS]On+T0YA~?QT6:OeU)\~\pANl>}I~e}AU$T5Q;K*$SB+xfTUWLdaZ\qI`Mf>H50#&!7<16esel3K!vI6vBXnHRe`~RvK xfM'1H&i9N]t$9C Q[W>3sS;8CT5^cb _lPw]zXTW;H.;+)6$?IOesJlHfLA4y*f1LQAP^"czg~2h1gk V$N<QK[]lz Cw|iS&?{laZerwRvy~~JfVtMXB>884X5{,|zg?He<+*r/a<[Y]iz LGr;hbD56 B0RDk[!Yh3T| ;OL_F~kzUeFb:c5b9o@<:. %2jWyC5z6{g(qk#UQJep_TC (/DGXoC$u#  r}jlhhWA@ISdPwp}zzxvEpY[Q?C6356LBkKUUNF;; _mUkP?)_=!fY4ll4\m5$W+l(~;*di2p1:4)!0 }-JodZPTctQx~|>lYP3MHBG8TVZp_hx5oPNs,bncM%g:2a Gq$ A Zu/PjT ]2A?A4D2x)x-e[QB 4>[9xbsL"sa_Yd he][Zh]`ik$^>@J(F>0f]CL%r:fXpR #>Vg{hb8zd kP6;)U&rcS4B1#<#i7BP^txton[HJW_}}8riljg[*G&( li== ~9)sXZhy6b/N_i}Gr+m/ )" jM@**'bZVLMg $BV^nU{l, &MskZB^b6 {c\wfUuUm*VK"Q&HiY} vKi+@  ymp,ASazy_6R $))$jMMq. weG|/1rY\=bw +Lw=p9HbuPd\bpx~Mv5gN4-9:=TumN&kdan@# xaC+17./j)< { .f6\C q&4H\c]d4QRe=>*/;A3#  ,?>2.9PlwvUnRSdutxZp?w'{dH, sA  /,'!.:T{=s 6(]Tk~`MBDO^| T|a1xkhpqvtgR-&9@B@ABTjt{[~=yg]ckq}yW*mWCl8&1=HLRRTNSh3h#F5nX{Z2")>YmvrfXEquklmmnh>XU4TG<($)2s8eAXEOEHC@=/<FXZ`dd.o|xk\ZGY#cgaRUgb9 $0/N+c%rnjt4c*[x{|&Fmf3 Ab|u^MD=+Mzk ^/]MXXIC , 0EMzMv@x47pBFV`iwo-t{xxspdUAHGI=BYpK2&+55=8B0D,E'F37F` owAp3w +yWQz( .yPjl\SLA>V456@CNc\oHlJXB9"/77,%&-m86AR\O^]WPz@i1J/ Iwshc`2g9k/i_S)Q3J0<0!B Ys7^yEv-a|H)6:;6~BkWUA67$CkFOM\`bfn~w`cAB,!   |sh%@7Q^ia][\Iu/dJ$9n+FMH?98y?mB]IEW+k3Rq6QzRwR.$/;6m9RA?s76;0FrNbikemr{iuNX=2%}3\I%]evS|oVaCJ): 0Z*EKA,&,T%iZGqn~Vu9cS HKOMF:M67BN"`Rezd]bmzvptkff[WN<- $1CAWdg`Q%5]. 0Rn8aNF[*bfu$0 CKOey"Ib}l[cHW@N1F&FK VYN#@Y9CR\e:oT|gnnji^RjE]4L"8  n!.1v,:gH"Hk)Cr`\xK>@HTU^lB}TmMe9k2n8vClLVX;]3RH>s-+6 Lc0uDfy}tj^J3{"i'T-3^16*g:  ~bF-%2Ii $( 1ANzdazK8"*?@]`v{j i v#/@GJmTTTO>^({!.H_iw4AECA@@8v1f-T)6 VqF) z aH<<M d~"-@RQC+&ZY, C*:g(OlD,8 T]6WSE63<Pf wFr:"tsKe%K zmXY[Sp~--RTkc1#,)Z.n:\Ac4J0Lct~;K_PF3" =Y5ydf;% H*MgWnljgGbGV!JM#_-o(})Wb&7iTH))  |>/!ILd mdSIDDN9T UO\hme^bolQ- :kQ9iw,sFM](x.PQQ`8^[_njkbf<cXa[ Z3e<t)2\rQB=.DtU 06?slxXJ.8J3OF<0'R*5z>5AEEHB:;FDJE; Im*=diG!}vdiSEF[?kk_UGT+ mI'B%ST.`Ru 6J6LnQ{]fpx~|oW_Y_'o@Ro{dHe-gS9{ngCo-HT0U].kUtWz.x_W^hlgZN@*=iG(W.:3"B:e]%37 >\Uguyl#ad^ajcs |_;$ AGu~6i [a{v"=WhxW=_Y6 ,}tudR=:Olp=G$ @*J%zF &<XxOSN t[(=.!4es\EOHKlXFgA[yqBliA'#E`{dP9RWC`Kg 0xGWCr OC rh#*l]~ nCgD`HK6-I -T idXRqT]m 4[; XlxlNI-+5__x5F="@ {vtzo`N*iUXJ {'?V '9MczPk=7#]R@4/uv_._kn`XOIpEHTh^LT X9FaGYq(8W<D?_7y' Tv=B o^^kP;'vP 3'b8Z2s-b+*R3V8$k{G oUjJVdLaM1>EOHRT`|{xiX)baqx?XipkdL-N qaTxA{uOn$W (~X)J  U'B)^_;o#(}^U L{nvssQn]RN0`x"zp tm !Jpsj8ZrvlV<$7reuPB/V;HWVOn}C,02k|.`> 69UFPTofK<5$6'xKmq$L#"5~A$rAe\S< ;SeGtTo2 2gW<#YdX}D#cE,E=e}mT,H\nc)aZ^cs1 5&=MUSK3)1MK$ Vxs>&;9ChGCrh ;XL.gN|m- Aat|HwIcKq|??}cH%}`@!_2x@LWO 20ZbybFNx .AmS;H@& ,LU'XL|<,Fgnm?^-rzr*>lZ5KfkNy- 0B C.z/GSG &>`e+j VLQ%WBz H(^S~tIf2hCdj`ZC3p*<SzyU!G!'71};K_dJXy,{o+0[&LA,$ Ev%MdcmSja`~\q_sgkj`] ]Ybkg|gl)R+TU ZCRLAkRk_3pK H#(   ,  ) vc(22v3oHHuq6IG"%/Us4b{W]snlvlkj_PCo>A.PqgsHmWD"f}bx bkF4N8mdvi!P|VG'0uKP 1"!)Q)jV3"-GQ^b\T` F4DqGcs~a|Psjiddgd YMKKS[cfo7q~g[; )E\q}ybA^;p^vh, @tI%K(0r\-(39a@l/P8;HLNVvaI /W.N[\UUDOgGKRZY"MO9x7DVYeoyh_S.  XV}llZDZ6b7v-"5~@$,EnP0x3, Z \ & 0; @#H9=L,LJ4a2{o4A 9o:Wcwa^WdOtO\m/tZlW]cUXYMX[icPL!1KeeDEhhQ^Q=R#ex,- \eUsb[X/VZ%&~*0(&+ 3<?@1^dK=-g9"Rc{N>( c 5S^YsZL_^hw>ak~p/d{jdOR. W4 5}hbG^anzD.CuXS?Nqq1)3BVS9T;KBCD DR6^%C<[Vk3)!02X,9r$4;KEJUdwDw;tkW&?bG>sdW<Ya$iMeNq`[N`2DiL%1=MiwLt ^SJ)?X)XJNS#Z% k?)\!@l]At_%_}tsbzjN 8V[#{|8{TzKr~Ulu}BM}T+<DRjS.tbN <P%n$a1mK3y#^Emj Jh7dc\pKrH$#pxT#$(z#|(w0'e{0 MK*;L_yLIG,z U9?iqV-v FZ8&|+Nt4^+77V)nV( F=NzG <(~ t(wIwIEqu0"p[5&"@UsbhjA wHLeT4$)d9  xRB.%"t$q#-Fb+qY% M"q.gA+q^H olf*nEt16Xzc @ N4PoL%6Gj@/(xD p\JF<;:=:6;FUex|;l2@/H7s,ZpV i?\ tt'wCG:":TfwGP2<-be W H5&#L/[%|upm\TR[\VSV\`m"O{,<? LDjUB&.aw+OT q z #7-  4eR3TqV8Nk?f.f3 tfdhkp/^$"ODW^`X@4QZh07[~4>&&1#$w5T[#awD0jv< v? k7|j\QKNb} >x '05KRMz7 jV"d24`,DHEDRWK8 ,lQX:GR 0ejF0  a'P r]SXl~<i,)g#vW:!jX4s6Tbdc^F76($aL*\I4}f[>  h1)1^-  ueQOWhv2b"."J dOi)LjY)(XwlgfaE2(W0o~Q&=myE#|PRhfRo-K*%EH6wZI ; 44CTqy2n ; cbF CvpBNa`dvx[<u+zU =um,ip'<ucD/cpV~$G 2>8,*' u f \OGG[ur^,OeI`'-%N!Ut'GyW'+M[`frrp}mu]w@O!Ks#*{sLC } "L_`b.TC>lK<MBALN>%h ^&_`ZQI FDJ_}oVIEYvw'/*f.{[A~Y1 =jvjwaf_^f_ddPf1jsK'AyXPb4E}!Ujh^g0sT)]@w<_IHBC/FH$?*:>GKRfkVB.?(l1My(6U9%b=MtgD.oujmxumzorwjzfz^};cD>t]5gF$ [%?GLVcXq'f4s^W[^~[{NtDg5WS X^^dw}lR2( Ry)R(v!H2er2:\Mmu~{tqgncxdbvaN`m`;AsUxRS{0 %a(:DJG]sL"H_B=JoTgS\BG4*,149C GP^s{cW19gD :laJ*Ez1OYZZc|zJkt%NHT{SZAA+/#  .Ki}qZ=!  ;F`A}X ]f%'1i4+3+s S<-2+7 CHMtTckQ:9o<2^Z*9$q;CM_u{P#tj3cZLCs.^ QC0!)EbzoYF*,MJk-dThY7>b&qO<8<=;eCJY>-*_2}=[lSMD3;.lGg}xMkUXD0{_A& .K]qc;7^2T}-Y*kp1j'~[<'!s S$?)*=^r2-e-_ub MAMoWz  h/mvE3) uR1 %>Oaxruv~?k $A|Q:pW{6qhX@R!_q f ;*Lsj ?C{+\@~v *<JCx9O(R|R.  1vKkra]ar0[i,o&OlU_!qOwISV5b gS 6";buL8m1hM 2Xl_>m4JL p@g!_?ggw=p\$j Nj/vddXh\QDbH8LI.  *XlH/AVM 2=JUUH1tAY 4L \,~w} }3fEDz 3Qx 5MX\WL\BDJCk:(7@CrCC,v3`]E!eO )@ZA=DSUD$ ufZW<$&]*% ] }zQ$%tW! S  g/(338|D=>1u ?b?"^ H 3VLZ\@bmpf[W"S-F5&5)~tgp*xu]s27u.yjdyfzm~ _ K$[#C8sHOL?7+w= $) ^ &m7 aG;1 ='D4`z>G}z~3t?WH1Q K6]&rYx?>u2cG<+ 0NWxBc+u!z@lUQ^%[H-[+~d8\Fyoqhq@e$]h.Nu3_C"P&p3AA;>sRVk0mDk,w[Hl;.' 7i a/b1/-#u1XuqDu)gQ5[0zX2e &VlS@5x>HT#f}2L[n$k!Q{ ,35;Ncm1iFYzQ1l:%OD Ca;fQ%:/(u3wWXnCn._Bf; ~Zl.7vk@N HFKyUZqC5:"IT]~B  Q$Iy j+7CFDMhYCa]XQ]@~S".Y$ [PmyMxs.j\Jq)9cN=Q.L)9& {W.tVi"/xXf2U Xi{p0lYpvf%=:p& @bvlH**"|(U82D8+ G a7 ;f ;U^M'wHFtXL;Q)_)Pv{S/>bgs%j  Y 5BOah]?`<]3 zX)<[ 6/V_uGw]+=k jL/\3_@& [2 tH28HpQ6|6Ry]{X=mK+W/ (FWf42MiL)?`(4_ T:3,f>tVDELeG<1 \-1:KgQX }_5HDFFN2U[bebjbD]&]v_;(Kf}B# ,S+kTs~qljL5&oa?W2] @>SbghbF^*]\YZ_zcPl%/aB|x\N*>5'7- nM4<k.p9_GD^`7PPZ[hht^ej5Z~\5b*ZIN\lu~vke>iS40~tIw}x^5* ^{wi\QViiC5).d+ 2ysN &5IU f&tgvpo<fqK !t?D\hTOZI. 2=yJnW^cUX8=F=LU?#{])LAF=0 6e{iLc9v3(#s#d0tHlvL49*6c$Sw7   :P\.SmKILAV+uX/1) )<1E[hi}lqgz^qXGM6Xji`&n \J92%;\6D=1g v R*Y8_HMv11?=1}8do;'.* %13B3o?AA8#OeN,A.,?B8')Fcoy}kUU8<(on?^,F!1$5dz}[E*4O2N./81G9c1| ';,RulQUN;#%Ah5iq^E4*<Nadgi}xbRe:T D0ymOB6!#, O|o`ZQ1@;;&Dg*-!2 4A"%$Ga~mK0$3Ok4emjYn%M7% ~uSS7'(;`ywg{fY_fem y;k#3: *^zU9)+A`{Iro~Bwb4o>X(" <_re{fc|PIP_o -T~3OUJP#=D#kY/ "9UcuKowa|IW-0yf>0,)MlXnB_8c2z=@EZ|3CYl5IS[Hg.P,'|AWf{'Rt18x;50*'iV=h3qAN++Mcm]HY0g/Hav4DTc9HOP=]"|G ~b0RFGcQuk E,U:UG}IOPK0qhTf()v[> '*OtdFXUa=a $A?gYgu(vbX<-5'n:sgZR>%&<Wo;g+,77IGsZf]N1 &:GKE2("om2/XL-/EeMV3h\pqjr`pJo:z*"$4=&;+7/827,yuB.SP &2E9- 7N1HTBt_h^L_ ,FEjtw T|Qck>.+.598EKs~%BZCh`_qN=;1+&*&Qo-EWxXdM?7Lash1A:HiE7* ')-D1fD~F9)Aq +CZb =ju9hW=T.<3 +#'! -/Z[ *7B=X?o>ECE@H"WEi`goctl{{hjBFTZj.ZHHr;B* <%L4_-l{1b~{'N;zbqGcwu>[ 6-$sYKA88*&&M^u $1*V-{C[i^_n8P`owvluWt1h>[GscCnWE(>N\~zQ6Senu0GQOHAz1hPn}=E|eFn@) 3!@K(^UxL &9Tp5ZnsjOX;O&C`50'cL{P9g38;BJBu B7K RXuU/ *'(60cDVp U3Od-rT}rzlRFr7Y/4 Y7 UQJlL{& 4;0N] {>g n6a5 ;/b>w[|)f*FEqdtlbmm^rW]ST3?yW7K t4k)>\/^   Bs1Z.AtKT!#1?`>~a+p%IoDWW[onz`ha`bdKQ']4 )Fl Gi'U"N"9NSUH8 # gFa\ }8Iw_ar&DgGo5{,Kj|4K]r~l~f{Zv8e @wxRt/tl]]d|R.T.i1o%H kz|cG1 P  Za. w:u7wns$8Vg>:aoy 0Vr{{`}<#}kX5nVFBfKEV4Q'QdI|:o-jo(f e'D0-l!s^TsCY-#6hTuG >d~0TqqW.vM4sUMH=xE)   tE!F|;+Xzq?YH  6FKFDiQVI_3  ]_c%T-c)5k-Q:v8| 3E[q~iByRH%$dD0Ko)!lIn&w$Z~7z+ @[b XWiSxqUS5"6yK_1xK8i (M9s2g9Xm|tL~Wx+KR+$AdNB{ b4m+|D&e1{<~6ys{?}lwV?'Z &u:\.mCw{}{;b!GDv T/Rm|\"~Qp!R8V$ -U+l)oN[^$P;wJSK: ks^P$@%W9^+S#f,yvrltCh =5w}# Q8gz<\~5Y 4!zB L|3rE1>^.#ZFWb[Fp.[=fDl;c5p3xj hx0Q{'#]^XCgQU(u N. T%(YHG{B8{'p)M)i>=6, xsU7?&XEmBd9p2"t5{@Mm9pX$JH{jxMGp N) l4KsAv?}P;|*n2 b@ZifQ*Wi@ ,oQvS^=80./4)*3GV_iFN28Mdd{X5|tA_ CjoP' 8] 4`J-u<~IJo<I27i|= <p[}}Gc"OOLJ@AQfno'Q'yQ#;TQ}nsJ~qg8Q5vltyG(@[;j;z&g.d= 8]~7LD@P)e5p@b6 zla\gnw -R}@g 2LaVyoK"]v$_C)t SLZkT| Ea9uV RKOBcz##@^>/ 1rn+NT3 } /W~$Gb|m3kQ=RydQ5"aE0Ae 3Z,IhDUA~M{$[<rdszM' )V~3NvD 8kTFGwl4fL9kdC[ 7hI)7]2Sj=^mGz!R(}lK/ ?q.De*In(WE%OYzqT2so>* SkI!fNEFFlDH8'/# =m 'Gc|GpzY5rN*zZ:(J7Kd6[%VD6/lOWG5#~S?s=yU+oszvzbqB_$G' !$%.Cc "?_Nz~  nS3i@aB)1_ &:[GqB mS0lyiH7 pQ_04 |vqeL2qU;*! /BV{':M0]begeceWG3%pM)e?%5Rk"8FZw>i!9N3f~L}|MS)ujAZC( {qZE/&m] J; .&4"Mc}9p$#qAs Y.Ul|RsmcT7yBsoDZN:.$' eG5(y%c!Q!D$6)(7Nk 9boH,  +`K@q,&! &@Zmz0^K.C>Dn7%~eEbBxiYWWK*oUA710s0m;`LD]'j {;`m<5CO[mvN;.$3CO^t(FkKJhuyugI)uX8pU5udYQNzXtagfLeo6P}ldRKX]h}|bD* ;^|oT@2$.!O`hu,AUnJ 3Sa[M;'  y Q)/ c4ubZYZbzmNz|qY4ES0m('4DYrwhX9#W t&iFXbEt5466* 3Po x\n_XSS%O9RF[Kx@2*AKwWQZ*VB( xX4{ oeYPOWY`&fw}Z2(Lg7_uaT=&V~3{Iy^oj_oQtG<," 5X{o`G.(g + 2$.G#g">XnnrRs<j*V4 ~^p?YE7,%#*T8Qid:9O_ntlEcyYO?)4f"6QcmsyqW}:% &7Yt^G+S'(8 l>bvt[NAt5Y.4( nOf5VLIF<6];Tv{F8Lf'~agXH-7m! -@TdigmnQ}9w&#)(1xN[x8Et,/,*#a<rzm^TzQ[T?N';]@s$^L@=AuF>M]~Y3Pi|2jlYD,6v#&CV\WXdq|s^H3**,0<~NcfH(.[U2apcz\SV7Q%J>' kZG1rb\]^jh2{s./Kg}2bxdG0.x DX^b_YZajo|ojvZ~K?4# u9TS;lu-ZaIBZ(qAmzvpmjZ^8M;0$iUNxB`'PKMUed)f-*Ts?|wtiU2Gm@9# :UaaZWPHFNTW]vhny^A%v'_9@Oe}R*Gr(H|D+OvtVp6aQ=-xeN~4kZMFoN9mt; A[k7oshWH0=l:5'"CXbfd\SLFI}Smafl`wWE2!pI3(V ~_F5/`=neAfwcK)jS=&ylVz1peah^}m; 0I_u 3cyxw[lT?3*:R grpogZPMMQn_[oL?4*$mK#8\d@-#Vz#2Jp(o6a~q\7~eE"e>c QMVbg-yZ<& =R.]Jdldcb`P[M8"2HYjyzi^y^^fFn5w$xqbN/ 8^dI5;-f6J_o7}&BP`ntgT?t)f U8qWD,xaKBtJA`u|aSP6QQWckha\^bM^K7"?Xgr}i{QwBu7m+_F%&Gp~iM 4>#o(;Ws Bu*w9wBw@q.dT @+uI{dTMOsXCk"?Wl}|t@mYcrU?( %@Yflo|}eP>+eG '$LvqW'@N?{X~0Jmyqg^WPC/Vs[QVtfWy6 Fl /Suw`F- )H_nvq^ROA^7 "Gqyk[ J]DSvJUIA39C3Semqz_& #8q1U_ E50uE2Vnf/ %>rVIr;?CMVK8,.5t>H9"$uR^I<@Q+nr4#l.x6gEYSIV7SNQ]mG&NYe2>=l"J3u^M 5zUfyG7.&)&_.-=J]~bbfL=#! *'h9 15Trlhm|-j 0L_ e ]M<0 & wZ'N43L l|My|V;, )G7kero]Q@.PK ,>MZlnD=A4!  rC 5G]||~+X&;R[ZP?1)&! vk!X/H=?Q'cszysj\CpUA: AGBL]UOdAx_|`6!)**//>LLGSh}|rGOQB'x9d=H=)Ar5=Kc &2@JG9|0y,("pO:%=.@079;C6IKH=/o[K*K@XThksup|IA\keD &&!'7I[fklutkaWlu=)z5Y0D46@C;R3Ycns %'pk_ dt~}m_O*N2U8Y>\EYDA;#+ vl a!V;QXUna|py\EGNE'xu0Uqtt|W|L^M?A,5: N_m~!Cf| bH?@CNaq'q)d*a)T0\9[=d5i+W$2ysxti5`J^^eqm~xkF/3$ qW S&fM{lhu|Q8cC D [%|,0/'y{p_^Z7}iZVZ`h!w&4DQby{W' 2_\QPst|{Y~3d(M):3&Ks $(NqtnnbaaVFB>AUr!'(&re[NJG&qeYTWb*p24EawrS -kRGv/+;d|vqphacdJ{.d3RNAc0{$%)*O!{dYehefVA9AFPft xq ^SQJ6)ynbS"E(=*?.O9fLuJ~ZlrmbYB(} {.xQhiG'KneVENRNDPcZtGaYS}F2&;q{bfuslkbPILOSbhmcWQPH95.}0rMg[ZVQKJENSXebo^ubizwlUE/1JeoQ.!Hd\F=GRH@Kowny{]C85& OntmzxgUI`qr_fn_IFMPSUhslTILLYZSFzTteliY^BG>:??JMINFJHC_Ev6) }| :J|_aqC(>]X>6EVYVn~]I7'YuehngTP]mk_\bTGDNOJQj}ybZdnqnsxu{Tj:`'Y_fp_*L:>R2n% pi4wFpS^\;p"1RZ<7M%f9oHrB5"nI&84-Bf}iPVXP44CKJ;:~At/trf3ZC\AlTprTZttO7"tU,=H4d%{.^Ag?k9S8%BTfrw6/!"BB\_chw_M: x X64 H<1IfkM8CYXD;AMH7m.\.T#MD=@'Q:aYuokWOg _D)v] S%C@+Vx4DfMdJj=`91@OUYh ,# < e=kn:![35GF7;UhU= =an W >FddHl(M1<82)'(1H0]BuIPJLRi#qU5qp Z5<Mq ,31.'s"Y=%;^)GpG]iO(d!:#-4;8D=76HYRORbetOF2"36%$!3$Pq"/8> B%_-$a9nE,!MwqbU5 %HsIz;eo<.(e'L;/NTMIOWVXf{uuqKk'bR@'<\$(&+=m$tH1 _"?7-M&mztY/)KsCr C{c 1 :<7nCSNDV1I ?>NSJHhnw\4xN96/(Nj  H}]<& T*<<:P&d  b4 %P&K~-d`0&208iDWFK<9;$CLG?Eivnzi}Fj%F 31#9RlCfdD'  j^%O86La | lG( 7f;`8]}\2 %2>GaIPEGM9U+VL Qeb{Ho2h] I#!>Yr +K}qVB* } gQ'2;Xwr ^H'(;g>f.c~\ 83FMQlVVVLQ?G/F!JZhmsmV>w"b N7"  2Ul1YqUA+qI/*OutqjD Dv#JoV tY:'4?OjheLQ.F+;9.EIM\y}vzv_C%oP?;) 1Pm~Ms\G5)#" #[,9>(SmtV9') S9[t-blS 71CPM?w1n(aSC1(?cqjjpv~Z|@l#Z `hL"8M` jq(|Kk|l[LD:3+('.v8UO?h}jaP57Y5Uo+[zj V>4U^\\\L}5oY =%'ASYchdg@W$JPejI! ,E [fl9lMn[q~qol`OA83/03?OU_$m}qPDNN6Co%=Te;qd}yocP?/*Yqy~sGjM3 ! =PYVvRVN7LP^d\ PH%=3(?L"W8aMbVcmeaSFC?7+##'%(9eU0ixmRLSO@,1Ux4N c&sRwtqojV?$+:Qo`2 uZ= $+015zF^RHN4C2L1`0i)b+S6CC5K'NS$`:dS`o[^_UG8/(%$))+n2;DS^eq|ys~{ePB??BA>)6W+  2 M!kGp{a+JF;`)z|_8t_=v3U=>7/>,\-o,m#f"i)h3Z;BD0M9WTZrXU[^TE8*u%W80CHJS\b`^nfcrN}@?@AFG891g/) "?4XZmu~~sf X%EL2hx ~sX=kF$ {c!P5HJCW>U7X2a3`?P7d0k.c6RCETF[SZfVUTSQOKF8,%'.476l0# "f@#$)8MccnIv>=:1)**$*'K-u-'#+ ;)OBfYhpsuxxm$\>JR8a$` XRD#u_SI=& .7}8p:^LRbMpSxZw^z]ace`[VTRNLD6% a0(E}aTs@93/,'! )<.U8v2+0=HT&j:EQ^mwxq*dGOV5\YRG:)w^KC@?7'(1>R|bzlvpo}dZVTX[]^b_\ZTF-a? *N^p:%"!)?Sew%1?JUj+=Ql #}>mWXf7mh^L:1+s \QPTVTM@/  6PhryaL:56=CN[ioieaU9{aF' %JZpA6+'?INZh!s-|5=Rt4Pk$?|Wg`G`)a `ZWNA6v.j"a`cf`RF?5%BvU[i@{)",5?O`kllokW5bA* !GaoE2 %9CGF#F5JDVSm_q8Skx6{KlXU\4cjjb[TK}:k"a \Z\baWLE?/z^:G[1s$3DTahlnhV=&t`I* "ClbB( $)1:A=9,5?;JPWmm:U fk e+X5BC)F HNWQ=%{ uont{}zrfN0<{^\zC4'$#*,/9IZef_TA+~dF!1NppH+7AA<607A<H?[Jw[s)9 HNJ?+44!FRSH;4-!zokpx|udO5%HhlH1/AO\dbQ=+raJ&#Acq>,:>:;*9::N;jJ}Yiv !7 DJ OI(<6+HORKB90%p b^`bcffY=:[|fI0,<PaeVBu0p$nn\ :}CYi0 .6>B*>I8e4{<GR[fw <JIEB=4.@GB;1,%zmb[WUXZWH16`}x^C+  ,DWf~iff\`XZ]O^BX9A0(#  u2UK0i0<A4@[;~7889?K^v 4CQW&R8F=6C$D E9) mUGBA?@?=2& 7\a@% 4GX}ehm\nPjShTfR^@N+7$ pU)BF7f% ):BDDpC@=758>GV l)'#%!'8EJ&H0B<2BC:-hM?=<89BLLC5 &6XrqM1 );O]`eMqG|M}>v.i V< !}l\3OZ=,+@5SX]wYTROGBDL,W9e4}..0&1 DPUPC'%*eSKKJEDHPTWVH.1MppL* *7HWscfqRC3,v"[>#|p2]MEq+.E9PUPiR{LD>;8 :$A0H4]/%"  /BHG< "r[PF:2)%#* %&B^vuX8   0@RgeNy:2( z^=  |"b;NS@e0x ,3EHVcbui_SIED ?0;3>-R"j  0ALH: !~odYK;*!'4<>9<V9x+g"N: +$$+4CVekI~+!ucO;*!$.m9UB9M _v ,0BL`Z`^SC<>B(D-I1R.\"m$++*   {eO;$  (!B"a{iZNC5.1;oIR\Cq9,n]NC>83h0I43='P%k%'/?R'kBV^XOIKS#]'i.t.z# '-.,"!&"gM3%Ei {qdUCa8H95E'Yjxwj[MrD`B EIM(Y8i;x(zz dC-!  0 Y}weSaBF8/5$9H]py}tfcPTFLAK7T&`u#p:v4|,!zx !'()#lS>,<guz_ZNFA5:(>JX fr~uc{PnBe?bBjHvM]x,"D-W,h-r'u!xx shabo tV7<Ytxve[RI<=,6/61=)GR \ix|j[|NjEcIf[kon~ru~#5/K)^&lv|zt f]X]o$%  qM) %@VloWB5q2`/Y/X.V/X#]iy{fYPRmWab^k]rXwQWp&AS a p }| s i _`&m8~>3)   ~U..Pcnr  tnlmdXU\zfgb]TaDk>r-y ykegiPt>u3o'n$v2Km&?Wj w"%*y;vOsZsY{SJE8.#!Y+ 1@BDCMWaekmptwu~io`lOq?w-" yseeEY+TY]i,xGh5M^lsv9vPuYnYd\\`[bcXoQI@- rH#  # 6Ukzpevali\vM<*silNr7t'p"r&{8To !7IY;`^gwmldYROWcx}gSH:)y`A  *Eey u{tbXG1uavYaQLRB8?:7E:XEpRbq !E3e<{BC?=?HRdtmL%znldZUUIV<]1\0_5g<tAEGMMF< 6"3A0Z&v uP*{qff[PS=K2I&J%R Y`i(t7J_u'CX v%(*1EYlz_8uiaxYZS@W*^&`&Z,V,^2i=qSsiszuocTL IA>0ZxyY2rdTHHgOHW.TN P_r *8DXw<\r$7Nat^u2l`VNImMGV,_g q~'?Vh~xhU6<]%wcf9N :-%'q0T:/@FQcv+:FWm<Sr(7New|re^Q9@60--e0E8%GZk| "<Rks[?>a} pyXGA /$|(X7/C N^t+:J` +Jg{+AOV`ouuf{SYA43 '"$*c67GWh}-EglCJb(y ~fxOO8+&  )|4WE6Xm|!2Nm1Gbw(39<EPXRtEW54%'`<3Nav-Ii }/bJCb vv]fEE4'*" 'i7GM2_&q -Cc ,?MUcs"'&-7@m@S<661$'[=:U j | 2FV"v'|B]Z:kyw\mB_&YUMABo[W|E71.4>Obx%7Odu */s;SC1?x\@(O%4DVkqE#&8Pjxgc^Eb$\E/(/9~;oWc]V[h #,6Ofx *y3j?P0&#} hT@0=+(,5GTdr yqV.3Gc { tY9pcVA=]{qnjjkv&%# ~&m;qLk[fot1y$^B,33$q^RVKzJIHCE"P!fw'u^K?8\ssT2}nbdx zq^4JJGZXkuw}[;"! 3- {'dWXqVlVpZ[[VY [+d2pv S,"Nl |aN<)uwjY%X9bDP^q}zd@#*)'%"2_zunpeq}uxxsifgpv|W /0$TufWI=2"~s`U R*eAkSkbwjs|tjE! -]u[bzzssrwVKJ#8G+n+' ~h[VSD*qrvxvwyodgmr#u6yFqPf^yde\N89]`PSnuh^W]fpd\bS? :4;b* tniaR='o{iyivlqjflaqY~UPPT]UG K-p8==4, =SI@Rpy|oeoym^TE7*[ xtodWE3)(+"ytplc`YSLMO[WB3Ep&')"HXLZyvw~}eD"Be-=1 {v laU NE<4&}zuh]XYUVW`_M41If|#(>]zfU^iii}xhI7";=MSK\8a-m  v'i5`/]ZRG=- n^M8-();JP<-8Sitq;]xuX@8JST`niXHC U!j0d<OCFO;Z+emsz'28<?6~|wrmbN8v _ K;4.$)8EB72D\y}>_vzZ92DPYivkU@>\{}| qQ6+6B P]ejq |%.3/||{uldZKu<V)6  (+)">cxr&G`us]A)$8@@KUVH?@_{iK 5)'(<*V1k-x)!$+9BGB+}m_wU\LC=+, 3X|~{uzqw0E\zseJ/-:;58FMIBTvz]SPS%S;VNN_Ao35HYeYG2.#mWDp:O39**   0V{}xusu!>Lf ~dZT> !(871Bkh\dc][W2LM@h:Mcsh\LA5zdS]EE5,+)& !4Wo}^TPPU`v!5Ry  wkhV6$## +65Gjsv{tofZI/AMMjkti_UB#t[Ku?S3,*)*(+354+)J x{{cOEDJSe~ %Kij] i eTZU9$.6> Y{~z{kP9@9`Q|k|nnqgK, }iWIn:K-$*/127?A @;32]'z{ssw}l_Z_j~ "Gcko  y~vZ>31(*#3c  }u|lZK E'R>oSi~|z}wcL;|m^Ny=G-&%$#%***%&?PXWRSdrmr{)Pchs}tfQ>/! %Aar w{pxwodXX1lJ`r}nT1 |hUDW71,' %!#&-021-2%?C =:Ef:PO[yyiR=-! 0BPas zi`d{/DSan}jJ5yaMz=U47112236;<<==08A-=2 <` &<N]p|fJ/ !4Vkgjvqo+;IXepvx|}{po<\I6)v$=$ #'*.4998841, &1 L_p|~ )IYbuuV=),BHL ]u$$    +4>KV[]_a]|PI=-yB#*046:?>< :7*0=#\t|wr'?KVj~{X>, #5Rg({5;;8- )18CLMJHKNoFB4 %T  '1:>BHORQKC26`%|}wv@Vaeox_A$$?)Y5x@A@>7*   "*-)'*-u*T  W (7|AmGpNZinmf^ SECf0 DVYX_n~W-'"3?@OIeSUTRN@,  07 % pO s8 ':Mu]obvemy.|Bq\a}I2"+AO]hiablvwiL)  1&><E\MUZVL<,4!1),7?EJ<"rK k.'w:WMJ]LlTxj}'Qp|\G0&+64).EOG:)):EO.W\^cd_V"FE2ROS`f[IC4z[: z 9!,7FYdkV{QJV/[waI3&3=1 y6s@t7y6~6( (:JX-^R^yXTRF-7X(jj lsrbPJ<`A"m$85DNXb~npycRSt5]kR=*  } vkd _ gqy" !*5DS\1^Y_z^WK:-+X! s_SB,bE2 _-.DWemyxlp. qWPWWWUZ^gp< `{ <gzU(tW8   k [K : &%0; B4CF>M7T6a71#u\G9:Q6c4i5m8}=8* }kTD ;=BLNRV ]\_jAe-Kh|^>"  t!Z%A*%/ 2) oe`]YYXSNQ^u"')$ uYP%O'O'H,D4>9<>;@>DEBN8X&_dcdw!A]|2GWlzzhW> %5DyQgVSU9RPH:&zmhjjiecfq nU?3$7*;2=>9H9M:L?IAGA@D-P]it $?_} (DZnrrje]N8" (3>JYflkUi<a#VH:-" xuzyrljp{oecf`P>*+4@N$]'e*j,f2]7R9G89B)Xr2Ok:HQNLD=4.   !8JV`k|ukx[rGg8\&O?/" u\F?AA+:?*Q` ly '~,r1d4V;FI4c 5X+7?=7+0DYn}qfaWyEm.^N: # maXK8& ' <Qbnztf%R69N$l<\~}zz#~*)$$.F^r}jTHD~Al:]1K*6#$ m_TH9')>Xu 1q?[J?^$,Hf~wrs y 3Sl{zwtmbUJBm9X0B+,'$   w\@-.Lis'X6=P$lJxxrmhl s$Dg{roswvkWE80k(R";&!)+% }dP=/>_   %x&`#D+)BeAexrlhglsyAcxvz}uaH1w`H3 #'%%*4<>8(uR3 1Pl'+*'"#&w(_+K18<"Qo:_}sje de jnry<]z}jQ8w(iYC+ "(-28<=<5# qP1   < Xq&8DID8)"%z.g9UFET0aw<`whabdedhov~ w*vH~f}lZMA1$}mV <" "+1:FPRPH7^<  9!R#f$q&'*-01+'&u,d8SIA\/p ?f|l`YUTY`hv~!7Qm|wof\N?/!ugXA )(8ELF3t]I9+ #;IQW ^#i#pq q(x5z>t@iD]MT\Im;& Dh|pe[UT[gq{{y$}@Uet}}th\XZ^^S@.#t"d'O*4)+ /23;KWT}Bu)qqqt|y`I5'.:BH"O$R'W,^2h>qNwYu[o\d_[jR|B-3TurdYV[bmyr)p@oSs]vczmyww~vvsqohZI<|5e1K-2(!% %)((-6;3yt rvuZC0 &+. 48(<2B8J9R;VCYQ]]`d]iUsH64MfnZIBEJQ`x wn+l:oItUyc~owz|rg`[QC5+r#\G2|ka ^duqYE3*'(!)*-29:GDRLZPbReXg_ifmlulfZG1.BS{gh}WNMVf|y+s;oLk]goeit}xjZPIA:62q+X;  }jYP T`rnaP>0 )%$$0'@/J:PDSMVRZW`_fhjrhcXF2$t7aKM^;s28G]tunid _3ZETVShTyWY_dgb^ZVND:m1U(<! wh_^eqvj`Q@65+;: *|_ G803;7?BBWEnHLQY[XO@.q fc5cEgPlZvg~onf_XH4"9 Phy ,AVl~vwoji`^TLF67$&rb%T6IBKKUPbOoMKILPSPD1   uq.o>rLwS~SMLKH<*)@Vk| 2G^rz~hyZsNpDh8Y)D/seX T,V5\>_@bEhBu<521.(  !"+0}0o,d._1_7c8k7x4/$ $8GWds}*7BSgw~{nx\sHo7i-`%YWTPG:.! sl b[X"[%b*j*p$z   $1<{DrBj<a3_0h.x-)%  ?Vbiqx~199}BvVokmlg\K=1'}\?- "X'30'616I1d.U)M#Ni Nzyv{uPw2|@E;#=}U_gVsdytxxvtmiff.eSd]aZZQSEM?KIH\Bh9c.Y%Yj wtvy[A% /v;CB0G+F'A#5*'<[jj| si#eHhhn\z1(2*3Skx}zj~oxlb\WNGD!G?LfNKHEBq@m@w?5%r`miM- /@OX]__>W4C3.6@@V{ " /0! {vv&@% &Db~xju|wqvdUE7'%?Qh#o$lvxqm]TX` V$99L^p}~tudZPN7Vct%;?5:9220Lgz}wpaO@3& !"#9RXh(153.r)i$y|cMJ?)(:KYhv}q_K2z| 4@<6?@y#u'y~%@Xly~{wqhYK<1&!!#$4*N3W;W@hA>90&xt~|scP3.?N[gszzr`H/~oikou|"1?EEOE  wg6Nfw|naR?- / CE=!P)h1l6k63-#} w q ] A)"0?O\fluwp_K1 # hXPPRU[g-t2~&7DGLH! s3`DRQdamrrmcT?. .-  7A)11#;6@T>c;p862+e'=("/ 9FR^kquvwvm[C(  &4u:_6Q&GDENXcmw%31++8@E;." "7HvQi^_ehkjcXMA/ '  '0/?4=889<;S;`8_8V8V8T6C=*EMW_gnqnkg\J6"'w;]BIH>M>IA6M(Z3f9o0y)(4JNA/,! ,9IRWTRlLjH=/%) !-%246G:G>:@&B$G.N5W,Y&Y+\%dlpy}p`VL;# %/-}4i6ZJLMINL[Ud_]kDvK}PE0*%5;& "/9ADHGE>7y*oz=WQ!4%'*437?8D<EBE>D6L!T^fqw#z+{#|~r`L:!,x/j3e9fGeVicqv|qO@CC3!  #&{$!)1"9/K5L;4CJ!P%Q!PO RX bkpux xts ttph[P>& &xGs_wp~}s[VXN:!    3*F:T>\:dAjEm5je`^^agqwwwvvtpmh`O>+<_z{d_dW=$rz0D$W#f3o>wB>LYuHl(gg$hlqy}}{z{ytk`O:1Ggxo\D& oZ]q9 MA^PmJtDxSy^zXxIqKgW\KY(Y ]bksz|~pevxm]G'}-<?Le^J5 q jmttrbUTNKW}/Ka-s[eQLZg~^yJrGjDh/jpsyuXS~he~J*ylf g)sJm  iH5! uc SB?EGHE{JoVlcmmx 3Sn&VwzaXaz[uDn+e-^-^djsxd]D%z#^5:KHE\{vqp{Ll'mH& _E2 #/z5n;jUnu|+3='Y%r*++?^uc@9|Cs?l"ik!p*tzoC8-{ [044K,hMD x!jb _ g(vV;X&dA`[^rccM$}wuw| bAj,I %8vK{>n.'-xwz+_/NX,WEH[=j5t1{}}te[L*1 7b)ii=V<}5t2q1r6wK}n)Sg f$[:OHCS2_m} rdmP78 :b]yb/xjpbY\NYGYL[``wgr3[pt)n>eSTf7w mXFg17Hs(^zdP+r~kgi[gMgDhXlqx7Lds(l=WT5hxs^Nm=D. !`Bg|k^@ uu')2F^#d4NC1Rat{rq`dJW2G6 %.g1JjjV>)} &0',Kjj"Q.6:(FUfvwzrid[NM7?(1!Kv,Edy^: |wx}).*"*BWWE).6FUcpz}fUpDb5S-C/3)( %U~ ;h|uzykeV7"0=BHJJJHHC)84!@O]jviQ@r:b;Q@?>16(0 1AZz ,Iiwkpwqc`osXD71-|$xy{%?HLXccRA<< /(4BQ_l{z_I@~?m?\;6." /APZbed]L|3r!nj k(p(~!&.15CQYTIFLRQD1$(7HVe{uaS? )>tWgo_SPU]_\[]accaYSqXdhYvURMF>4'- AFFMUUL<~,xrkgg n x -DJCET^WJBABEKVgs}yld^V=#6rN^hMO[d`WW`fe`abbbvfjt`WMC80#"+:KVSH<y7q5j/e%c ad"j!v!0:=?ET`bYUNHEJVbgdeipojb]^a]P8"|=dX[sahfbdjojinzzvs{zk]OF;. 4JOKG|En@_7X3U8U<T5X'`o &/7=BOV\]`\WV^ff`Z`feZTTZ[[ZVC!0wJacU~SPNNV[`_hu~iZM@2$.AP[X~MoBa>YATDT:P+O!Saq#*8DPWZV\ipmbZ\dc\\^\[_mysV5.nF]`\|XXUTU^iw}o[K;+ /<BEtJdNWLMEB=>4=-E"KS`w %<IS Yco~ ~reXTTZYPFHOYZRC6) xd/cL`iRE@IU[bvt]E- #.=wNjUZVLPDFA7@%FMZh{" 4L^%i(p&{% ud\XPIBBGHDCFGDC>8+ :XlqVMLNP^rcF+!}.s;fKXUOQIBF3C#GQ ao 5IU$b)v)*'x tuhUE@@AA?AC?737>=( 7Ntgi}_PLTk}y`C!,}BvSiU^JVCS;Q.X cov !-=%O1b>sEzG{<u/wvn]OHDBBDHHA:=GQPB,%;Qtgf}YVZkxbB%&7~DyJnLcEV:S+X%c&j#pv$!90J@XG`Ha?_3_"^\YQE@BDD@<:=DILG:% /F\mtWFGRbktsV<# %5~AvMsOjLb@X8T6S>Z<c-ny (4+>7B@CI<S1\"_]WSTTSQRSNMNTUPB4# 4Kbmy\V_bgm{nR4 %0o8c9Y<W;T<T;O<N8P0X$aly/< DDC7;I1Q!SQPKEER^XHCIRQB7-(/Ei[ZrYZ^amuzlR8 -1p.j(a*\-T6P<N>R5U'[ct 2 AIO%N3KCCU:e)h_ TKMTYWV[\XOJIIA8+ 3Hz[mqlmu{mU:!)0|0q-i'^(X0Q>OCJ:K!MU`r$5CI KJ(L6F::;(@EC>::ALVYXTQPIFFF5.CWlz|eK0  -;A>v<o=iFhLbL\:U$T W`kx".8=EHH>4!'&)-.-.9L\eiklpppfU?) !9Pe}aC, -9BKUz_tbn_iR_GX7S ST^ht+5;>:852'$#6IWalzzvk\@  #<Slw[?%  (0>Petzuql`eH_2\ YY [dmz/;BDEEE?8*(;Wn{zhR<!#;UmnQ9&8FWpwemOh6b!^ \^dkq$3=EGJHG>4%*F`{sV7*@XsmR83QuvljTb8\YUTU^kz *04/,()" *Pt`C-"8Piq]F.)W~|~mhcQ]1Y VQOUan %,+!wtw8`fD& =Ys yfT?('U~tyKt$ojefiv (*'v i]V^w$Qxy]<;XtystxcSE7(Ko~~^u>lc^]cm}o\KBBK]{ 7YznE" 0Ljzuxh]RD7,#$EeyW5zqlltkVH=)5J.h& tU5xlimys`RNT^o8Xwp[H9(+C[stnmlid]S1IMAj8+mU;odadoy|yvssz'CZo{fN5 3K`tuppqnhb^:UQHa:j,os vywpaI.}qihhoz !:MW_ky{rgV>#*@Thw  }u(k3a<TDCK/QQLC:3&zohgoy . ;GPW_hjaN:) )7HYel p&u'z$| { { {}~}s%h/[4J56664-!xroqu|' 1 :EQWTI?4% "5GXgr%y)}*-020-$  s$b)M-3*"zpkklnt "#""*1430-$ 0<&I3V@gGtI{J}O|QpM_C^8s40(|ulQ/ ukjkjjjjo|  %#!!   ! 6'H=TN^]hgsnw`vPtTrjlza~RC/iL7yoeYU]n~ '*-01- &,164+ )9FTf:{Nb`UVm}nZA& nBwdXX`i{ +9GQSK;(")4960#$2@Tj/>@CVhsu}v_{>$zU6eUSTVan wz.{DU\^XM5 $1671 .;Kb{!'@[kqtyj~N6 ~gvAnmqwtphiqvr!k4iDwPZ^[SD0 '18.$# '7Nj)FU[afluz]E,~pf_YVbW@Y#^iyzmhe]R4KHOUa[q^xbb_VK:&###+.%#=Xm(7FRaxkN5n]RE91.2l:NI&Yi{lVE*A;KHZT_^fcoe|fg_Q>-*?Seu!6RpoU6lU>-$#&+5|@UQ2heQJ0M@NMOTQVW[]cjhygaXK>2$|x ;Qblxz?^qu|[:vW:&,};`OJc5wyh ca"Y.Q6PBOPTWaXtXVRQSQE/  }"7ESarxs|"BUdylQ6ZA2*"'4tDeUUlA/  w$h0[@SNWU_[hexkmppk_N;( %1=GT`p!3Fz_izU;jVG:2..5AzLtUi`ZjQwI7*u?gKaQ_We_qgnrqj\N>, "3DTcoz&}Aj]Ts>' {pf`WPKK}O|RsUjYbaYjGy- ,i<YLV\Ykivx|{rbRHA7+ (6EYn|)Y?AQ.e| xqmihgdba~cnmZ}F5* 1ByPw]}hqqfUD5) $/9DTj|u[A"%1 DVadkx{x~~tg]USU|`ljYyMH?-';LW]\VMD<0&  &8HXg{lZG/ 09BUhpry||y|tkb\Y\extlicS=%/IY^\WMB4#   5Oi~u[?" )B^lrzuh`^^bl~}vhVC0 #7FLNI<0% ~ #&',.( 3I[l}{aM9$ 0IUar~unmtoWE3%-," |"&(&#   "8M\elu~nYD1-A[nwbM?'  zy|~!)--.-.33+204.9#78@K Waks{|{yshXI5! *>VjzkVC,|uw|}xw #- :BB-B6I4M0K(KT []XSUZ]^\XK=/"1K_rxbJ2z|"0@KT)[.e9i@jAp7u+ro mh_SG>?>7+ *BRaovT6"(: O]"d-m:wK~OOC3} tj`YQF7) )<J\osV@* 8Pbmx+:KTWM>,xeXL=. $5CUhx}iR9$8JZ hr*x;|MTVOK>}+m[ H4% !.<H[ogM6  "1BQ]h r ~3K]iiaN<q2_-I/  ,.2 :Nd xV5yrt~{z(:GN\kz.EYhkgYG9u.[ >% #)/=K` v!}iN4~upoquw"2>HR ^o}-EV`_^UE2x'bG.  "$ .)>+L(_)o/0+!zaG2"xqicb~ezgmv"4FWhw#1I]hhg^O<~1g)Q<"  &02!:+F6[:n953-)#r^E)scYNKJOU^emw 1G)`0{9CS`ovxm\E}3e$J2$2%8,?6FBWLgQyPMGB9)ziYC( xgR?<<@BKWft 4&L1e=KS^j{zgQ<x(X="  !$*37BBKKSVZc`vefaZN<n&XJ9 ~dP?7107DR]gt#'>4X>rJUW[ev|tdQ;$mT2#*+4?CNUXe]velxylxXa@J(8 'y\E+!(0?eRbmqsqqmg\N=)pN* (;#N4`EtZlwz{xvrl`kRO?3*`E0%!%/9HYm"2;Ca[p}}|||vj\P?*~_C#(!80K=bN|`nuw{|xiZL|?^.=jN;2+#!(/:GUey!/?/QVdsyl[J9&r Q3(:K'_8tHYhry|}|rbN|=]):bG4)*:JYex+>R<fbwz`G.wW: 2D.U@gP{_nznUt?R*'qXA. "1?IUh); M1cRyqoT9 pP4"3 E6\GsZm~q\E-\2 xaN;('2>M]s1J^&rJkpT7{\?')?CWWpgyw\A,`>cN<* *4AOb~2Lbw;]sY@*wZ?$ &-AG[`qupR4lH%ybM<-!!*7Jb~#C^v9_uZ@(qT<)*$F>bS{dukR7mI'iTA2'$*5Ga~ :Sk(FdtW@~.iP5 #9 S&l;~O`t{fOc9?"r`K5&$&%'1>Pg)@ V'kE}cy_Bl)WC- +B ^&y;N`o||iQf7J , zgRA0%"&*++1;Mc6M$aAr^v~kU?u&a N<* #=Wr*@Sboy~ujZHi2M4yeQ>.%"%)1AYw,DY8jPyfxraM|:p%c SD6) 9V p6M^gikopmeZHp0W?( uaN=0& '2E_{%:N)_@kXujzsw~yzzpxaxNs;i(]TD1# ,@V*l8FTbjooooj^N{?i3T%?*ucR@2' #3H_u)7DS`.jAnPoZoamcgeZbO`D]6X$PG@8* - CU+e7vBLQPORXWPIBy8h(VF5 weSE:/(&)-4E^z ,:EIKJ*I=IKLPLMFL=K0L!HB:5/*$ 3E'W3i<zCFCCCB=:;:4t'eS;)ypeVD4,,,0;J`z!/;ABBB&>76F/O,Q,N+L%HB :/***'#  (#>.Q:bCsFFGJID>952.{)i"Q; ${n`TH=4006>K` }"+27> A?';44=-C'?"8/) #   .D#Z-o5=CEA:89:4*}kU="ymbUIB@DIS_v %% "(1672*      .A"U)j1}7;<@BA=84, t^I2}rh]SOLNQZfy )24/% #,: I [n"%*/3320+$za E(wlc]]`hq #    """"'2AN]l~$))*/6:;6/n#Q5  ~wsu~   %*-,+,29DTj $*06<>;3k/S+8$  |y{    $ -00/1 7 = AL]r (0697d4F.)) "  ~y{ snr~!)+ + , 1 6AN_m}(6CLNsKPE,A<82(   '-/'  thdfn| $(* )+. 8EVi} .9CL}STU(RMF;1& -20% q[ LHKUam}! ( 3<IZo &8GQY`ff;mnjbUE6'  '375+ "e$OECGN\r '28?DJTe} +;JV`wgTl/q todTA/#  )/0( ",2|2g*UFBJXl *4>EKUas 4FR]}g^oBp&ld\RI>60("!  & (..-t)a"TML MWf|  &5DR_n3FYgp}u_uBr&lf]SIA;61,&! }~  (/1/*}"woh c b h r  !-:IYiy .AUfpuvt\qFi5a'VPLICA?=5*   +7AIJ@4,-11*&'*$ *6CR_o}":P_kiXJuQc^N_>V.G3*-3ANI3%)(qlt &8><7.('*'  .61$ +<{N{amx#BXflliZGn?ZCIF8>(2& "2A9% ~'3;:6)  #2FYlv +6FU_b\Z}Rr;a#M=%/* *%$*#(('+*" ,AScq*AV\UPRY\{ZtNlLaFS5A/ -5 4(  )&$'+$%))#2DXk~ ,6=GLE<8=?uDh@\<N=>;/*#$/ 1&  $8J ]s#'+,-...496/.p3]=KG;L,M QL: ,-.&     "8!P,g4}3+&&&" &25,l*T/=<(FKJHB,    3M%j,340,/57669BsI^KHK-NQOMH@7&  ' /2/*#   ' >Uk&*/6>=;?@>@zEgMRX:]$X NLFA9." #+%/1041,,%$&'#!$)&{tpos{1CUes.7BQ[\TZcecwbb]E_%] RC7. $/39IUT JGIC93/%zqnnopqu~&3=GS^!g*n1s:yH|U}b}p{|x|tsqolobkQ_;P$@ 6,  "#)$4%7$8!ALUY_ ggZKB2 |yvssu} 2BR^fjpt1wBwNwYwdynzwz~yurm|enXfJ^9P&?+ %1<?;8304,B&I OYdlkh hcO7'u{mogncobqgut|*=M[ekpqp&j9fMe_eqg|feca[RIsA^5O)D1 %4= BEC:0*"%=PY `cimj^VL3|zipWlOnWrc|lx-EYhry|{x*u5sCoUjk_WPOOMF=5r+[ ?(-<C FH&I/H2C2;3570E(_y ~{}zlT@2o]wRsGt>:@4@,E Ul {utjR4 }werMnCpBw=:D\x(>PY`ejk#m2mBjMeQ]UTaMqIC@?>91%n\I1 !/: CKN%O.L?KTH_Bc9`0_)^&a%n##!taUA"zlp^pNs6v%y'38TIOWL^I_GdGsHJKIE>3k!Q @2 ~)8 AD"E0B9?<8C2V+f%j!fddf%i,r-|+%lP <,~rknWnSvK:6DV`l!7L\cfh if^)Q:GHDOAW=_>cCdLhQpUxRKA0rV8# }snpv "3C KP(Q7NBEI9M-U%dsvp"j&i.h5f=cCdAg6^'B}qnn[tN}IECQdq|1L^jqsm a V$M%F3>K5X.Y/V2]7f@eK\V[Z`WgMe<])N6 tjgis0=DE*A@8M/T'\ fmtx{!x%s,m5d@XFNFK<L,C&~x}we|TV^`bl z'?SdoneYMB:'632F/Q+P+L/S5\<\CRILJSDX8T'F;/"sjhq 1> C>33E)O#V!`!n!v wuvv"q(e0U6H8B1@':+ wmnrplq ;R`jmmdY PJ(B9;E5K2N0P/R0S0T1Q/I,C'@<6/'{v{& -101A-L(W%e$r$}%%~&}%{&z&t%d%L%;"56+|utuu v.CS]dfffa [X/SBJK@I9J5O4P2F,;"662*  !6,C5K9T:e9u76542{1w-q(dN: *#y{}+:JWagjkk id4`AXCND>I3L&D6,)% ,8A(G0R9_>n@z>}9|.w%peV D3' +;JYfqx| />{FqJbLTIB=./# * 38'>4KA^JqP~POH|>t1e%UF 8&+:L\mz ~#}1z:o>^:G//" 2AGKP X,d6s=><71y'eP@8+#*4@Q^is}+4;zBqCd<N16& );LSW`k(p1q5r4x54~0p&^I4!  "%+.05=FPZfq z!)z0p1f)W? $ &4EW`b hqt%n)l)r+y*t%eSF1 +49<ADGEGNX^ `fnvxtmh _RA 0'(((.5>IVakru o eacf` TE7"+5;?FNUXXURPS Z`"e#effc^YRD1#.,&(6GRU[gswuqlgaYSLD5 "0;FLRW^`baa__bc%h"fd c _Y OD5" ),*+6DOT^joib_^XL?6."-9AKU^cgg g f hkn'p/l4h.e&^UN H@4& #0<CFJQX^eowynfd_P@97.  +7CNW_d iijlpt%s*r+o+h%aVLA4(",6DQYZ^eouvuwsi^TI@7. &-8CS`mtz|}~%),)'w!k\ K<-  '4ANW[[`iswustqg[TJ@1"#*29GU dq{!(-/353)vfR<(.;CGK N X b m qtsrmdZSJ>-xpkmu '07AMZfq |"'-.) s_K 4,25< DMXak"r"ustqj_UI<-s hbcir !)2:DN [jv$)/572'{eK2  %,18 @HNY e(p-t.t(rq lf]QD6(ob]_hu &-5@N^n|)059;:4)~iN3 %-5=FM Vb o)w-w+u%rnf\PF:.se[VW_kv (7F Xiz#+2562*u_ G0  !(07= GT`*i5m9k3k&hdYPE;."xfZUX_hox  2H^r$+1:><0#mT<%   +5>FP["f-r7y=z=v6r)mibZMC80~%ndacit2G"[,n29@FFA7/z%hO;* %(+)% +5@JU$_.g7l;k8h.e a]WPHD<3'tm jms} ):M#`+q0|3/,}'w!m\I 5% $(*(%  (3 =HR#Y)Y*X)Y%\Z SKEB<7,"wkdbhs  (9M^"k$s&w#yunbUE 3! "2:=<81(" #0?K!S(T+T+V*X([#ZXUQI@92) ztpp{(9H!U$\$b!g i c WH;,   $/9?>7,  ,: CILMMPRVXUMD;4+ (5?HR Y!Y!SLF< .! $0;ACB=3( ,6=BFKQSUU TND8.'  #!),+6-@0G3I1F-@$8/%  "0<EIJG@6-#  )19@IQY]^ ZUKB:1# #!('/*6+8'5 ," $2?HNQROH=2*!  &/:GU]`^ WQJE=0! %&# *8CKOPPJ?6/)    (5BKRU WRLG@7-"  #(+& &4>JSY\\XSNF>70)"#$))1*9%<=?@;0'      +8ELQVXWTOHA8.$   %*037; AB?;864-'$$! (7BIOUXWSOLG@6-%"&*/ 358;92,*-.-,--("  %.5@LW^`cec[RMG?4*$"! #(-0.--/.-+-.-'  '3BKRX`gmnje^TJ@:62.'  !).38:<=CIKG@<72)"    />IQVZ^ab`\UMF@=;:850)! %,2=EKPQNKG@4)     $4BKSVXXXWUQKFA<8541-& '6BKV^^YQH=1%     *8DPY^a_`_^[VROLJFA<5-!&7GVcjkkg^O>0%  "!  $$+7BMSX]_a``_\XVUUQI@3% ,?QbnuuvtpdUA/       +4973**135:AHNTWUSQRSURK<+"8OcqywiYI7&      '0:AC<2#")/24:DOY_dhihec^VL=, #8K]ky~o]N?/     )0310) !&')-28@KV^befe_VNF<2% +?Qbq}~ug[M=,         "+38<:1# &1=ISZ^][SMHD=6,!"1ASevvhZI:*     %*.264. *4>IOSTTSNIC?93)#0?P_kqqiaWJ8& # %!   "%'${z!/;FPVXYYXVOIA;1) "'6FT`lstnfXI</#  %.23241 +   ~vtwz"0<EMRUVWXWTLD;2(  )5BP\fkkdXK@4(  &19?CHE= 51-$   |ust{ ,:EKMNMLKKIIC;." $1=HOUTRLD:.! )%0.492C/L&NLGA8 . " {tos}$3@HORRPMKKMNKE</!  $5DMPPNKF=2# '.)335A6L2V.]'^ [SH:- }tpov 3AIORVX[YWWSMHC<2%  #2=GNQOJB4$  $ -9#A5CF>Q<V=[=^3a(]TH7 &  2CKB79@?5*!  "+6<?<4*  !#*2-A1P>YMbRiMnGnAi;b1X%K; * *BJBCOWSG?;0#*.-' *8*F;SF]KdQiXo]q^mVdKW>K)A4' $,0@S^^WWSA.&  "$!%/8A)H4Q>\FeMmVq]p\kXcK\6S&KA 5(  "0G[dhlrkXKA1    (/3#6/<9BHJZSdYh_f`X_LXDQ7J$C<2$ /BITepg[WP>-" &.00,(%&)- 147 </ACGQOZW^]]b_f\gOg>b.YOE8+"*<QXTV\XJ=7.  *0246640-,**,"025><CCBHDOLWQ`PeGh;g-d!^RA.(544=DC?@?4!  *158=@@=7.) &$&&(,'3,;5B:J9S5[0b+f&g cYL;*!)*,/.& )3<ENTVTOIA;5228$>(G)O+V.\.`+a%^XQF:+   !*37/&'*+),+!".9AHMQS OF<6225;AFLPUXWQG<1& ")*-563)"!$  +4:@GLO N L GC@A ELTY\\[Z WNF<$0""   $-.-))2=8* $,49= @D HL!N"QSU W[aefb[S KA6*#'#   !" /./) &-18?FLRU Z]aceedaZSH?3& #,0%   .331) %.5>HPXajrwyyz|}ztk`RD2#!, 3-! &,*&&"(+,,)  !+6BJSYcmv{ ypg^N >-$+ )$"% (+-14,! './+(& *6BMV^fms yyqg^"P(A)-# "$"&.8;67<@>:51% #,2:CKU]ciot |{!s+g0[-H"6#"!1<?AGQTPH@4(  !)/49;@FMU]dkruvv*q1j0^%RB3!   .36A R]\T QL?-"&-17;?ADJS\bioux)x/r,k'`TE8(   !)6EQW X YVM<1*&!    )08=@DHMRW\bhnrr'o(i#bVJ=#0$! %(" %2>IQTSKB;5-("   &/6<@FLOQSY^eil n,m*l$g#_+V/L,B'6#)"*,)# #9DJPTSKE@<4(  "',1{6<AACEHKNOQRQ"N*J/G0@.:-0'' ##%'$ -:HV^\ZYXSJ>2(&((&!  (17<BEILMQRUWW U+O0M5L=KBG?A78-1*(*+'$ # "6FOTUZ`b]RGA<4.-+! )29>CHLNMMOQRPKG'E:AE>E;?9;7839+7%3 2/%  !3CP[ciigggbZNHE:+$)/49:<<?BEE D?!9.5:0B-G.F0B0>1=.;,9+3-'+( "  ,<LYcikkjhfe_WF0#*059;=?@@BB >7'15,B(K&Q&P(L*G,E,A.;--+ '!)6>K\kpnjie`ZO=(&-3:@DFGHFC?<!916>1C1C0A2D3D8<<0?'=82) ,3=P_efjnme\SH7(%.7>EILKJHDA<9+4:1D.G-G-E.C1?59767/6!63,# $4FUZZ^ehc[XQA, !,6=AA?;830-,(*4(=#A ? 9"2%.),-&// ,'! !/=KUYWTROKE;- %3>FJMMIFC?;#6/28,?&@ :32-!$$& '%"   +;HKJHD?951)+5;?DFDA<74$13,>%A<523.% "##$$!  !/7;<>?>:63/*$   (,/36751-+ )%$!*+*))%" !%'))'$!  '),/257984-'%&'"  %-49<>?=9420-(" $,12015;@=6.*&" +1223321/.*%      #+/27>AA@=:61+% !(*'&%%')'&! ##"$%"  !   #,479<BEEA>:3,(&!!###$%&& & # $')*,)$!""  "$%'&$  )28;;::<>=8/'#   "$&&&&% # #),,,--+))$ $()-02/)$! #-8AFGFDDFFB<2*   !#"(07 :743440(#'+/257;=;5.)$ !,9CFJNPNKF?82(  "$$"!#-#3"530-*& % *.026:;;94-(!   ,7@DFIJG@7-#   !#!!!#+379:;3'#%),/2578850+% '1:CJOSTSNF=5* "!%$'%)&-$1#5 861+"$$$$&()*+,/120+%  )28;>BEED@:1%    "*.0. -"-"0!0!-#'%%&&'++-/26750+$ $,5;>ABB@=94+" #( .231#-$,#(#"%(, 15:>ABDEDA:2(  )4;=;:<?A>81)  "#! ")2689'6-0/*1&4!7:=AFLOOMLIB9.%   )178989850)$ !&+.1 247%7-42,7"<@GLRUWY\YRKD>5,"   (/20+'$#   !(05 531'/0,6&=DKTZ`ba^[UPIC;3*! #&+/353.'  "%&())),./0369985 0'*.%7@HPU[[[WRLFA93,'  %&%%'(%"  )046988789<<;:<?A>:#3,*5?H QX^``\YRLE>6/(#      !)/5:>?;64248=ACAA?<4*-4%?H RX^ac`\SI@8/&    &2?KOOMLHFCCDHJKLKHB 8/%$3ANX`cedc\QG?4'  $)(&"&3=CIQY_a`^[VQLLKKHD?94*!2DS`hmljgc]RG=1&  $()'# -<FLPV[`ca^YSNIC>50)$'7IZku{zrh[N@4( #*/0/)"  (8FSY_bfgjif_WKD=7/(!/> L\kx}{rgZL>1'   &,.,'  ,:HVblqsoic_XN@5-& / AQ_jsz~{undWI</$  ")./.,' &4BO\ht{|xofZPG@5,$%6I[ k x wlaUI;.# )05884,#'5DR]cgjmjd[PE<3+#*;K]m{ }ui^RF;/%  &,2 550(  (6BOY____a`ZPF<2)!$8K[ht| ynaTF;2+% &+.-*$#.7>ENXbgihd]VQMG=3+#)=MZf nwyxsmcXL?5-'" %)+)&! $-4:BJRUY]bda[VQLHDB@<5,&&!6FS^elomib[SK@81,'"     #.7<AFKPTWYVQNLIFB?:630/0-(")9 GSZ_bb`[VRMGA:3,%   .: HRX[\\[ZYYUOF?83.,++'%! ,<GOSXZ[\[XVQKD<4 ,$ ! """$3#J`nt }zrlcXJ9( #%  &4AJPU[`deffaYL@ 6,) '~wmilpv~ "*/57804<.H%YkuzseWJB8( %2>KT]fnrro j`Q A4) urnjkow *5=C"E0BC:T1c&ox}~wz~ugYNC81, %2?N [gqw!zy tl`*S+B%2"|mefhhny (1;&C8HEINDU:`+n{{vojikg\N@60)$ '08 C O] is'z/~2}6w=o:f*ZJ 9#'ulpwphmz "-7? GJ6JPEb>j4l'jm w}xpe[UNEABB<2%$.;F S`kr#t1t<qDmCgA\BO;@!.  zhgqwsqz&2= DG5HJDY>h6y.#zurnf[OC7.& &)&  ! "*2;EQ [(d3i?mFmEiFdI]NUMII:?)3$ ve[[n|pl{'08>D H"L4L>HEAS7c+ijpwtgXKDA8,#  &.0,( ', /,287B7K3S2[8`=d?h@lEoLmVeX[OOFB@4:&2&  xl`YU[q #,38<AEH*G<BG9K+ILTXUTTOB3& '/46 657,=8EENOTXU_PdNiQlSlOlKiIcHXHKB<3-" |wz{vohc`ew $/7> DIIH"E*A-:51>$B?8100-(&$  )4 @G"J/M;TG[Rc[ibnfnhhg]eU`PXFO9C.5$& wtvxzzxss|(17>!C0I?HCD;>382.3!/*&! (4@N*`7lDoNuU{\bgjhbw[`RQFC7/)vlkqy &/6&<5DBHIHQEZ<Z3M)=1(   '/5:B O-Y8eAuIS\dknolg]xRbEA8&' tollnrsusu} $,->5E:G>K@PAU>T6P+KA- );H T_"e.i7pAxJ~R[bgjjgavYeMTA?4$' wme\W[epz  "*,/@2K4O3L2J-H'B8* !!*3@ Rbm"x+2;ELRTTSPJwDg=W4G*7$qb^]^cq "*('".13 /3*>$=7.+% *<HNQ#[*j3w;~CJPXw]n_f]`X^R_JbC`9U0C'0 xmb\\cmz  '(+.+4"51 + $%1 -! )6H[#e+k3m;tC}JQW~YyYpUcQWJOBJ9H/G&EB8$ {upmnu  ).2#4*5+3%.%  :L#[,k5y>}HuPqWr[v[vZqUkNeFY=H59+3 32 +% %%,(2'3!2 -%((!%   6L&T2W<`HhQiW^WVTUOWJVAQ6L,F$9(  "&'& #,4:HETNQTLZM[P\NVEO?F><?0<%3)        &%&!/#8/>8E4H-K,H6C:;22&+#$(*#  !)#!%"$,3:CHLLIC<5-$   !,-$  #+5@@3#  !*17=DGGC=72-(!  !)+-4@GB0  !*/4<EFF?6* %+.26876530+'# /?GJKKOW[TE7.# *7603=FE@ ;2"!)158888:962.*%  *9GQUVX[__ZRF5!  *:@@>@DE A:1$#*/135677773.($!  #,16BTbijjmlha]WG. )6=< : 996/(!#*-///..,,+*% (09CKU_hlptxvm`WQE0 "# " # & / 8 @C@8-# "&*+)%"  +8@ACOYbhotvtj_UNI@-     !"'-0001/'!!"""" ~ %3?GHKVchgktyugYPIB:1#" $ # #'*)'' ) , +&  .;FOSTYdornmqpfXNIB5*$   %)(%&.2 .$  "##"""!#4ALS Zac``bcde`VJA>7-"  #/7:6/*-,&   }!&)**)((&%"-@KN S[cd]WXZYWUTNC7.'#   ( / . + ' #  !&+-/0/-+'#5E KJMTYWOOUWOIJJF9,&"    0 8 85 1 )      #*/36:>?=;73.'3BKN RUVURPQPMFCCB;2($# ,5983- &    #)/3433310-*% -6 <CIKMPPMGA=:973,&! '-/*$     "',.0/.-+(&#! %/ 6::<ACC=730)$!!  &,26;> = 72.)"   $*159:;:71.*'$" %1 : ?CGHHEB@=90$   #+485.' %!   '-369;;950,(#  &).6=ACC@:4/*&$#!#%"  %+.,($    %,27:<==;840+%   &-49<?BA=71.,,,-/0//-+(# #(/461+&"  '/5:=AA@?=93*"   (05:<>>91,*'# !##  &.9A@70,'   $,5=DJNOPNLF?6,#   % + / 2 5 9=;5-'%""##"#()&   $.8<:4-*%  %-6=DIOTWVQH<1& !$'+,,*(%!  !   $,122-'!  !*3<EKQWYXUMB6(  "#%%%')($!    !'-/*#  "+5@JTZ^_^YRG:,     !&(*,2652000. (! #(.0/*&$#  %,3:CMU[^]XM?1#  ""%+0210/,(!   #'(&"  #(.5:@DHNT[_^WJ</!  !$')-,*& ! !!   "&+05;CJPSUVVQH?4*   #&&&%%''"  !%)-28?DHKNONKE@9/'  !!!%+,'    %+.35;>CFKORRQOLF>6,"  "(+--+,)%!  $*.038@GMQRPOLHB;2'   % (( & &&%" $'+/4:?EILMLJF@:3+! %.5 65 2 /,+*&   "(.39<@DIMQRQMGB<6-%   % +0/-+) (#   &08=BGJLNPSTSPLGB>92*" $((()(&   "#&%# ".6>BFHLPQQNMJHGFB>82*!     (---..,$ *39=@BCDDDC@?@==<95.'       #)06961+#   + 27:=@CEFGHIKLLJGB=6-$        !,39=@@<5/-+,-,(""*2 7 ;?BFILMOQPNKGB=6.%      &08==<<=>>>=<71+% #)/5<BIKOPQPOMID?71)"    ,7<;<?BEFIKHB:41-' &-4;BHLOQPOLHC>93,%     *28>BEGJMNLGDA@;73-% &.7>EJNRTVTRMHB=71*#    !$&%" $,16:>BDEEC@>=<<;81*%  &.7?GMQRSOLGD@;60)  "&'# %-5777:;;::;<>>><<;952-&(4?GOUXWTQPLGA=82+# %(('#!  '-2551-+-/258989;?CD@8/% $/9AGKNOOLHC?940+% &*,,-+'" (,0-*('&(,.015;FNSTRMG=5+""- 7=CHKNPMJD?:72,$ "*-,++($ !#1<EMQSSOKD9. $!.:EKLJLPOG@;60)"   (01/+)&"   &5BKSY`fgc\VNC 4%)9 @@BJPROMLG=62*!   ",035653/+" !-9ESalqrqng_SF7&)0 ;FNQRUVRMKG@81)!   #(-26741)%"  %5EVdmswyytk\J9 *'5 ?DINPNMOLF>8/&   %.488412/*"+?NZbjqsqmf[N@2%!+5BKLKNPOLGD=3+&   (3:??@B>70*#*6@LYdkppnhaXPF9+$5?CIQTSQQNG<50'     )06>BCA<91)   &-7CNZaeffec]ULB 5'#-:FLPTXUMGC>6.&    !+6?CDDC@<5/% "(/7?EKOPQQOLF?6- $"0:EMSTRRQNJE>3#  "*07::740*$   &*-037;==94,'! $4AHJKPSVVURI>3*# !'-0210-)%#  $(.59;:84.(" $-59@GMRVYVQG @:6 +      "',.011-%  !&')*)% )29AHJG C=96-#   !',/3561)"   !,7@FGFF!J#L$F$?"6 )  '-23100,'    !. 7<A"F$M'Q*O+L+E(;$/!$$ *048:94*       # +5?"K(S.V2V3R.K*A&9%0%)$ &') *)*+*! # + 3 : >< 7 0' &5DO"U%X&Y'U&O$I#C!>83+! &) +)"  %3?DFD?953 . &     !0<%F*O/W3Y3X2V2V2S0L/E/=/42*1.*& !  )169:;=> < 5( !/<"G%N)Q+T+X)Z)Y*W+Q)H':&.$&"!   "(-27:>=5 *!  #$/.;4C9I:P:Y8^6a6^4X2O0F.?,9'3#*   $'($*.+9)C%IG@; 95-# "#),056B9L:S9W6X3W/T+N%H!D@8,  %*.02#/2+;%@ADFD@;6/"$-5,899E9P7X5_0c+d&c!a`ZPA3(   "&)-233 .,'7@F KORQI?3& !&+ .00@1L/Y*c%krvvnbTI<+   $,1563. (#+7D Q]ceb\O?0"!$ & '3(E&V$f#t$#"! !y"k#Z%J(<(,'&"  "*./12.)$'9 JZdlqlcWJ:) "%$."A Ugwwj#\%K(:))&#  &-022/*&! . DWhsxwqgZK<+    5J\m} ~th X&G*:+++)%! "*.14650*" 1CTbknke\QF8+  & : OcwzpcT D"1&''$ #(),03221-&%:N_jnnkdZPF;-  ( =Sgz~ uj_R%A*./1 00.+*('&''(*,..0/-'  ,@P^hppj`YRI:+ "7IZjw}~~zum cWI 9%*).0321244346877640*$'6FTafea]ZRG:-'8I]n{{qfV"E'0+- -.1457:>>=;961*"  *9HS\adc_YSK>,#6IYepy zti#Y*H-71&37<@FNUYXVUQLE@9/" !/;FPX[\[YTK?/    ,>MZclv{}{x qeVH$9*(19@FNTZ[[YUPH?6," +6AKTY[\]ZTJ=.   !1?O]iry}}yrj^O(;1&<EPZafiihgbYMA5) !-:FMSVY[ZUNB4#  (*++)$ '9HU`ju}zrgY&H38>&IT]fkkjgbZOB2! $/;ENU[ab`ZSL@/ %.5:;;82)%7FT_gpw|{xqj^#O1@?1M#[isz}~|tj^N<),8ENUY]__YTMC4!,9CKNNLD:-#7GU`iptwvtm dY$M4@E2T$dp yynaQ=' &3?JSWXWTPKD:, ,9DNVXUOG;,,<IT\adhjg_U#J1??5N*\it}~uiZI6# ".9BIQVXVSNF<1#,8CMVYYTLA5%"0=JRY[]][ WP'G4=C4R*_"lt{}zul_O=(",6>DKOQOMHB:/ #$ 2=GNRRPMG=- %0:BJNPQPM G2?@7N0\*i#t{| {xtj]L;'$-6>CIKMJE@:3)* 7BLPQPMI@6' )6AGKLNN NL'I6BD9P1\+f%ovyv ph\N>.  $.6=CGIHEA<6/ %"/ =GLPQQMG;0!*5<ABBB@>.<<9J5T0_'i qxzv nbRD4#)2:BGLLID@;60 '"/ >JRWWTLD7* ",38;== =<,8:5F4R1^-f'm"suthZI8' "+4;@DCB?;72 -%!.< GPUWUPG;+ "(-1444&26/E-S*_*i(o$uyxre UD5% $+2:AEFFD@;62-((6 DMUZ[SH:/##&' *-&070H/X.e,m*u'x%x!pfYH8 (  "*169:;:9763 0,-%:EMS VSJ?2% # &)-+?,N-\+g)o'u%v$t laSF7 (  #)/468888742.&)6#BKRVWUNE9-    3EUbimqqoh^Q D 7 ) !%*/3776320/+ ' $0<DI KJF?6,   .>MYchkid]T J ?3'#&,0223476531,& )7EO SSRNG?4," !2CQ]dhihf_WMB5* "%(+./12221.,($ + 9DLQRQNH@6.&-<KV^bc`\VPHA 8 ."  #&+/357677753.*%"$ /:ADFD@;5/'  #0<ELQTTRNHA;3 -& !"$&(*04766530-+)% (17<=><94.(  +5>CHKKJHE@ :1)"%) *)('&'),/010000/,'! "(,...,*%  '/7;?@?>=; 83, &$&() ))))*++,-002445542-'!'+---+($   '.59<<<;962- )" !#$%%&''()+,./24552,% $%$%%%%" !&*-.-+)'# !( -..-..012234589;:852.'   #&'&$  "$$$$##&),.//00.+%   ""!  !"$(,146542.(      !   #',03677640*#       %,15679:71*!     !&*/2541+$  !""!      '-28::860*" !$%#     !!   %)**)'%  $),-,*%    #')((&$  $(,--+'$  ',24430+&  !%)+*)&#  #'(*,/11/+$ !(/25630-(!#!#%&   $*/121.)$  )7AEECB@;50(   (,.//-+%  )-*$!   "(-169<<94,! "(*.4;><83.(    $)-14442-&$(# "',1578995.%  $'*++-//,'   !%')+-.,*&   "%" $*-14789862-'  %)++)&&#    #(,///-,*&!   %!$*,&  "(/59;;963.)$ "%)./.+'" &.3589862+$   &+.1/'##   '/6<@CFFC?80&  #%$#"$! $,17:951+$"',/12-# !*28>ACB?91)  $(&!  %* 0231 - %  "%''%"  (/6<?@@=94-&      $ %&(($!#! %+15788763.(!        $*-///.+*)'$     !#$'(($!""  $(+./12/,(&#       #&(*+++,*#  %,03332/-+($           )02320.+(%   #)-/0/,'#      ")09@DEB>950-(!  ").121/,'! !!!!!    #',17;@B@;4/*& $)---*'# $$! "     &,/136:=>@A?80'  "(+.//-)#  ##   $).110267764/&  "$&%$!        !!    (/345530-*)'%   #')+)'          %*-.,' ",34210,$  ##!      "& ))% $*165/,($    !"#"!$#!#$%"   $+020.,+($   "%((('&%#"     $&&""#!   !"%$%&#)!, ,!+$)#&#!$#   %$""$#   "#&"'&')',%,$-$,"++)&!     !$$&(%,$.#0!222/. + (#     "'+$-),,)0&4%7$7!6420 ,' !        &!(&(*&,"./0220/-* &   "%'),.02344332 1 . ("    #%*!,"/"2!68< ? ABB?<83,$       $& (%,'1'7$; @EH KLLLHB90$    !(%.*4-:,A+H*M(S%Y#]][TMD:/#   #&(*($    $&--51?1H0P.W)]$_!`_\YUMB5#(&%!  #'((&# '(.31=1G/P,V)[$_bb^YSMC9!.&%&$   "%()+*'"   &#2'<*D+J*Q&V"[^][ V!P"G#?$6(-,#.-+("  '+.0///,("  #)&5'?(G'N#RUWXY#V&S&M'F'<'3**-"/-+ &"  $+/232/,(#   ")%3&=&D%J"O!R"T%S(Q*M+I+B+;+3,+.#10- )$   #'*++(# '08!@"H$N%R'S)R-P2L5G6@5;455-7&9952 .'  !&(,--*&!   $*2"7%;&>'?*>/=5;:9;3<-;'9 :<; :61*! !"$&&&#   "!&&,*1,4/74796?5B3D0E,D&C"DFE A<6.%  "#$%&'$   &#,&1)6,;/?/B1F/I.L+M'K"IFFC>6/' "%%&%$#"   $ *#0&4'7*;,?/B1G2J0K+I%FDDB >6/(   "&'(%%#"   !)0 4"7#;$@%E&I&J$J!IHGF B;4-%  &((&%%#!   "+37;>CGKLMNLI EB>81)     & . 3 6:>BEFEEB>:72,%  "$%%%$#!      & ,17;@CEEC@=<;82.(!   "#$%$#    #& ) / 5 9 : : : 7 520/.+&          & + 0 4466866 5 42/+&!         % * , .0123453 0.,)$         ! " # #$&&&$ #"              !"$&((& #!                          !" "#!     #% %$"  "!        !$$ $#" !#"            !%'(( ())*)(&#"             #%$$$%%#     $(**)%!      "%)++)'$!   $'*+*( %"    ! $(*,--.,)%   $)+*)(&"       ! %),///-+' "    #(-1221/ - + )'$ !         "' -24579852-&   ").1310. * ( & $ #"   "(- 1479:960(     ',035420 -,*)))($   %+ /49;<:60*#  #*.3689987644331-)# !&,1 7 =?@>;60)"  #)/123578886542.*%  &+27= ACCDA=93+#!  &+035667788631,(" %,16: =>>>>=;60)   (.3579;::8640,'"   !$'+03 6789:<;951*!   '-27:;;;;:62.+&#  "$ %&)-135"5&4)1%, ($ #(.2469;;; <:5/&  "%()+--. /02468:863/+'!  '-04;>@CDA < 5/*(%  !"$ $&&')*!)")#*"+"*($   $,27=BDC?=<:860'  "#$&(('&' (#)$*"* ('#   #*28;;=?? > > : 3 *   #&)** )'&$$!#""$"$#$#"##! %,/39>ADFC: / &#   %'(('%#!"&*(%"""   (19@D@:544 0'  !$&&$#  #$!  #,3543587 3.'    " %),. .-*% !$&+2674 0+'"#$#      #',15 9<=;71)  $'((' #!#&&$     %, 169 < >=;5.& "! ! "!( ,./.,' !    $*05:?BCB A <71*!  %+.2342/ +%     %+17<ADEE D@;5,$  ")/257775 1 * "     #+4=C G J M P Q O MF?6,"    ! ) . 4 8 ; < ; 9 5 . '  " + 2 : AGMPSSPJC<4*%-39>A@<6/)"     " *2 : CLQUWWTOG?5+ !)17;==93+#     ",3<DLRUVSNG>4*    "+28=??=82)   $/8BINSTUSNG?5*!   '-35663.' !$(-0/+'#  $/8@HMOPOLH@8/'    ")/35774/)! $'('#  %/8?EJLMLHC<6- #  %+.00.,($ !%%#"#%%!   *2:@DFEDA>92* !    #(*,*'#  !#'(&#  %.5<ACDDA>:3+#   "&**)'$! $(*+*(##$''('%! !(15:<=>>;72,&    !###!  "*031/013221-(" "',/2221.*%     $(+/37<?B@<70+'# !$')**(%" !"#$&%   "'-49?BA<84/+%!  !"!  !#&*,+'!    $*07=ACCA>83/+&     "%()'"   &-369<;8211.(!      "%%''&"    ")/5:;84454/,(#     !%))&"     &.34333310/+%     #''&%$% !     #'**,,-.,)& # !     ##" ! "    %)*,.1220-* ' $!    %&''&$!     !$(+-/..-* ( &%"   #&()++(#     !#&)*)'% $#$#"    "$%&&$"!    "%'(''('%" ! !       "$ % % $ # !  #%'(((&&% $ $ "          #""!!     $&&'%$% %&''$!     "&' '&'&%     #$%$%&'&&%$       $'*,-+*)&!     "$'(&!      #(+, * & #           "%&& $ !             "# #"               " # $$##"""#"!       !# %&''&&'&%$#""     "        !  ! # "!                                               ! !""!                                                                     !!"#"!          !!!""!          #%&&&%#!             %),..-*& #        $*.111/,&     !!    #(*-,)$   "!     #(+///, ( "   !"!     !%$(*))*%)!'%"     !$''( &$%#"  !"%$$#!     $(#)'*()))('(%$$!%"    ""   !#%((+*+**(%'!$"  "&))* ( %!   $%% %#(&)&(%&#!            !% % # !             "$$%#"                                   !"!"          !!!!!       #% " ! ""##$%#!       #%$     !        "%%#  """ ####$$$#"     !"#%()(# "#!! "#""#"        "$%$ ! #&') ***)(&&&#      !!" !!      "'('% " # $$$%$"        !   $ % ''%$!          ! !     "#! !#"   ! " !       #+130+()%   !"     ").0259?CA;3,%         $+27:<=?@?:4+"         %(-29>BB@=;72,' !        !&+039;==<:751,& !           "'-1320111.+)&#          (/148;950-,("       !    !*/2330+%   ! !!"#"       $&'&$! "%'('#&'$'"' )+(#     "#!  $')***,--)$            !!'#*$*$)#*#*"+ ++)$       "%+!."/".". 0000.- )&!      !"$!%%&*&-'/&0$1"232111 -($         ##!$%%*%.%1#6"9!:::;;9 62+%         !#% (%))*,)/)4(9'>'@%@">?>:5/)#     "$#&('.'3(7(<(@&B$C!DDCA< 5/(      $'').+3-8.<.@-C,F*I'K$LIGB< 5/'      %"*(.0072;3>4C3G1I/J,J)I%I"IF@;5 .%   # ('-//62;3@4C3E4F2F/F+G)G&E"B=94. &   !&%+./42;3A5D6G7H5H4G2G1G.E+B%?!;51+$    & +'/.367=9D:H<I;I;I:I8G4F0E+D#@;5.(!    #)'..357<;A=E=F=H>H<G:E7D2C.B(?";5/ *#   % +)1167:<<?=A>C>D>E=E;F8F3E-C&?:50 *"    '-%3,92=7?;B>B@CBBC@E>G;J7J1H,D$A;60(    & -%3+81<6?:A=C?C@AB@D>E:D4D/C)A#>93 ,$   %-5%;*A/E2H3K4K6K8H<D>@@;@6?0=(9 52, %   &.6 <#@%E(H*H,H,G/C3@7;857/4'1.+&!   #,4; @#E$G%H'H*G-D1@2;232+0$/-* %      !)17<ADD E#C'A(=*7+0+*+"*)& "      &-4:?BEFF!D%A'=(8(2(*(#((%      ' -37:==="<$:%6$2#-$($##       % +048:: :"8"5%2%-')'$$"      ! '-268:9!7!4#1#.$)$%"         ! )069;<< ; 9!6!3 /*&!     &,1468765310-+'#    "(,/122210/.-* ( % !     "&)+, --..-,*)'% # " !       "&(+,--,+* ( '%#"#"!         #'+./110.,* (%#"""!!           "'*...-,* )'%$#"             $'*,---* ( (''&&%$"         "#$%%$ $###"$$%$%#"      !#%%%#!        !  !""$%&%$$$$$!           !#%&(&$             "%')+./14652-*(%       !%(+./,)'&%"           #'*+,,-.-*(#                #$&)-...-*'#                   #%()**)('$"            #$&''('&#!        !$'()(&$## "             $%%&&''& $ !           #&)* + +(&%#                 !%()))(%"                " $&$"               !""!                 !"""!!                  !#$&&'&%#             !#&%$"! ! !       !!"!! !$%%$!         !""   "!!      !! !! "!            #$$ $ % & &%$$%%$##     !$$%%')****'% "    #$&(* , --*)&#!  !"##! !$'+.1 2222/.+($  !$%%%%$#" "!!%( )+-.,,*+)%    #&),---+)& # ! $(+---.01/-*$      %*,/121/,)& ! "%&(*+-//.,*%    #(.268763/* %  ""%&&(****)&#  !$%%#    #+28<>>=:61 *" "#""!!"#%%%$#   "%'&$!  %-5:>@A@=71)!  !"#$%%#"  #(*+(% %-4:>AAA=6.%  !  "(-011.*#  $,39=@@>93*!  $).131-(" (.37:961+#    $(+,+($  $+035541*#    "'+,--+'! "&()*(%!      "$$"      ! !      !# % &&%#      #% ' * ++*)($    "&' ) ))(&$       !%),./..-*( % !   !#%'(('& #        "&)+.0212 1 /,)%      $'*, - ---*'$     #*/3688 8 6 41.*&!     &+/35 5 5 4 2 / -*&"     !% ) . 1 4 5 5 5 3 1 / ,)%"     # & )-/23321.+'"   !&+/2 3 433 1/,'"  &-1589::9863.)$   %+046787520-)$    ! ' , 0 5 77 87630+%!     "'+/2354430-)%       !%*,012221/,(#      !#%%%%#!             !"$$#!            !#%%%$"         !#$%$"!          !"###!           ""#"!          $*-++**&"         !$),-,(&$        !"##$&'"       #%$#       #$"             !##"      ""!                                                                                                                                                                                                                                           "                                                                 "#$$$$##"      #%&()*))('%#!    !$&(())*)(&$!    !#$&&'&&$#"!    ! # $ $ $$# " !!!                            !"""!  #%&'''&#!  "$&(**)(&"   !%()*,, + * ( % "        !%')) ) ( '%$"        #'(*++ * ('$#"        #%&''' &%#"         !""!        !"!!     !                      !         !$$##!       "$%&&&$ "               # # # !                                                                                                  !!                       "#""           !"!                                                                                                                                                                                                                                              !!          !"!                     !         !"# "                "$$$# !                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ####!                                                                                                              ""#$$ $ #                      !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    workrave-1.10.50/frontend/common/share/sounds/bells/0000755000000000000000000000000014221624437022346 5ustar00rootroot00000000000000workrave-1.10.50/frontend/common/share/sounds/bells/micro-break-ended.wav0000644000175100001710000153661014221624107025252 0ustar00gdm00000000000000RIFFWAVEfmt D bextZREAPER2020-09-0820-19-56junkJdata//88oo  jjii11//ll%%66ee11aa((llzzddllee++  cc  77[[rrwwkkNN  22@@iihh))cc;;..gg tt&&II\\'' L L } } e e ~ ~       QQ  }}44tt::ff}}RRQQffQQll;;HH##CCjj 00^^77##   DD..WWOO55  !!!!""z#z#$$u$u$$$$$$$$$/$/$##"""" kkff""ll8 8 Y Y q q wwkkFFAAHH ll// HH((pp$$22!!rr,,()UU ==ffiiKKGG**uubbWWppffBBII^^]]::MMffMMC C [[M M &&,,K3K399??FFMMUU\\hehe7n7n?w?wŸŸ##55AA  dd@@  $$y'y'-)-))))){({(%%  __]]ddRRDD11UUJJNN44tt``?F?F($($JJ3L3LՎՎll``ԣԣLLppbb c ce e ײײ//uu||'' ddEEnnxxRR7K7K mm __00 E EZZZZ@@Q{Q{~~=v=vGG{T{TRR&'&'33rr...6 .6 1 1 7G 7G , , y y LLp p cMcMDDû û 44xx  BBQQӘӘNO)) & &,,k#k#)),+,+ d* d*t *t *_b*_b*U)U)>(>(y(y(R(R(M%M%##yyo o ''?? m m__))TToUoU##‚‚99'\'\  &C&C5C5ChEhE::KK00+ + HH&&۝؝zz$_$_ZZOjOjvvD-D-ُ׏׆T؆T؂DڂDܵݵ!e!e:s:sKKsXsXrr^^??++LL?k?kMMppTT"U "U ݕݕ ( (XX uu~a~agg { {77YX: : ēē55.V.V\~\~CCYYuu%~%~UU__ST11]]KCKC O}P}V V Za Za n- n- Z Z s s ??BGBGrrZMZMPVPVee$$[[۪۪u:u:   J(J(],],-I--I-FJ,FJ,++\(+\(+ B) B)"'"' ' 'kl'kl'##ooNNQQLLz\z\kkjiVVFF   l l b b {{__WIWIWW۔۔TT&&YY  tt**qqXXWWaatt7+7+̳̳&@&@ߕeeT,T,#g#g++6,6,qkqk==99݉ብ88۶۶PoPo;;MM_M_Mt[t[~~aa0W0W)o)oDhDh&&HHiFiF##DD__ӛӛaaww@@ @@TTNNX X ++ݰݰZ[HH..66FdEdCCR R LLxxGG F F \ \   2 2 ++2k2kPP{ { R R //&.&.Q Q 88""f.f.**ii  V V ?r?r  GG##..y)y)99ABABxxֆ-Ԇ-ӧԧ{{ׯݯL L &߉&ߧݧ>C>C&&ڒVڒVjj؟ӟXX̐h̐h8I8Iρԁ33}} ))ݿ޿[[QQ88qq|+|+qqZZΈΈLLھھQQ^^WGWGuuƜƜJJooppHH˓˓MM((ffoMnM]] VV==KKN N cd[[~~&H&HiiWW^!^!ͤͤ..}`}`RRWWG.H.&&``##Z#Z#! "! "!!!!T"T"##~~&~&Ⱥ(Ⱥ( ( ( % %$$+&+&:(:(0+/+11K9L9p>p>S>S>J,>J,>%?%?U?U?Mh>Mh>>>/>/>;;*5*5--5\'5\'lY"lY">)z)zPP??퐙됙SS]]HHN N ﰨ밨UUkkUVttObObJJ**޺ۺdd++WHVHii33؀@ր@DD)),,,,00ړQߓQߪCCjjkk  rr>>+*qq66xxv;v;&&ڙڙ??ss tt[[4H4H!!ddtt| | !4 !4 \ \   IIۏۏ 8 8 2 2 33popooLoL  d d q9 q9 LLƦƦSSYIYIww[[(!(!C)C)H.H. 0 0//~ /~ /O.O.?Y,?Y,))H(H(4'4'$$$$jj11.!.!2 2 L L 66؞؞Sv Sv    ))gg88[ [ mwmwt.t.!!ЍЍ{{ D D11ssPP   RRococ߁CCuuon}}iiנh֟hvv֋؋KKYYۦtۦt--ݽ߽nn;F;F77jjﺺ**TT11LL@@쥇h9h9WWf3f3CCWWX|X|ddqq ٧٧ߚ6|6|00==klXX8 8 kC kC | | = = QQ 1 1hhÁÁdd++k k GGjFjF88ee+.+.rr2!2!ננYY==g!g!2t%2t%\+\+M0M0̨0̨0..k-k-̇,̇,**A)A)**o+o+.0).0)##ѽѽ==PPCC7 7 uu --D6D6T7T7nn wwuu``= = >> %%::eWeW M MGG((WWq9q9~~۰۰hh!c!c338~8~+7+7ЂЂFF..OOff&H&HsEsE@@V V @ @   PP+C+CqTqTttBB44  uu, , KKb/b/''mYmY(({{{{``//EE]|]| ZZ::oouup p __*d*d  CC~x ~x \ \   pE pE NNoobrbrt t ; ; ݽݽs s ii11yy;;00p3p311GG PPtt{{hhqq@`@`KJ;;--ooLL220=0= ==__zzXXHHtt_P_P@@߶ q q jjۥܥjj``ߤ|ܤ|ܩکڟ؟bbההfQfQڗܗ??xxCCܧ6ߧ6**00GGm,m,SS``aaZZ X Xbb-z-z++llֆֆ5:5:L/L/U.U.__00ooĆĆ~~ssBBK K * * HHPP+8+8+G+G~~aaghP P RR||~!~!WpWp%y%y@@$$  {{MMii  NN`w`wjjp#%p#%\'\'9&9& a$ a$a/#b/#C!C!<)<)K^K^ dd5 5 $ $ uu'' zCzCDDUU BBevev11坸pyqy[[ܻܻQQ%%ayayLTLT¦ٞ؞++}}I I rr߹߹߄))NJNJHH>>wwOOttMMKKccjjP+P+''\\}}V!V!00YVYV<<wwGGyyrryyiiFF-6-6FjEj++,,LLAA}}  NNsbsb]]F F   SmSme~e~pPpPffY Y YYRR.!.!&&,,/0/0X.X.\-\-8-8-G,G,:,:,s-s-g/g/{.{.M*M*R$R$ ''F;E;5. 5. TT  44  ЌЌ``ƻǻ%h&h@@}}䏕䏕QQ'?'?F^F^]]ff''NNL~L~  Ц+Φ+aaOXOXνWҽW__ڥ٥ٮخ؍؍ؙיl7l7ڰ۰۬,٬,yyKKhiEEGG(|(|xx66**ZZx!x!bbAhAhnnf f ooQQaX`X''wwttggo^o^xx~!~!aaNMFFS S - - I I q q >U >U MM; ; b]b]OOVV$$! ! 5 5 &&WWMMWW  VV..PPrrWWKKr$r$--V0V0t0t0Q1Q122q2q2%1%100c0c0--%V&%V&((0 0   01WWP-P-HHG G +3+3  wwcc||<6<6"e"eee --44>I=I33}}ĶĶWWhkhkMMp p ^}^}5d5d,q,q""88AAݖݖ FgFg  %%WWIIww_\_\TTӈӈUT44BBGG11PP22DQDQxx//66 bEbE!!ggNN  >>A A Hl Hl ēē88  `|`|- -   6 6 llr/r/F F %%  -}-}##++ 0 0\r0\r0 . .--,,H)H)iq&iq&b%b%4$4$''--x x   D D 99||c c %%;;99ˉˉQQ$$(([[E1E1@@::))fmfm~=~=nn]]%%""C~C%%FFVV ~~}}|`|`22猅댅볰쳰00 d.d.OMOM88'a'ae)e)PPCC  ##  W W {{KK%%   f f +9+9] ] ##; ; IIii::LLKhKhQQҗҗ== * *{{MUMU aa!!$$ c c  Z Z PP&& O~ O~ ppnnQQֹֹ^{^{;; 44GGmmTcTc22!_!_eeNN?d>d,7,7..\\xRxR++mmAAHHNN66}}TTll߀ߘޘ&&ZY:f:fw&w&WW  aaֱֱ\\pYpYoo婡⩡^i^innccu?u?V%V%,,88 e e k k `)`)zz..] ] kk44''WW 4 4[[==ddhh[[nno o W]W]!!66aaԊԊ//gpgp{f{fh*h*NN " "(q$(q$$>#$>#Q Q DDAAZZ'"'"11?s?s'Q&QXXzvzvٕٕ&&6*6*U)U)s's'\'\'%%"" 5S5S@g@gYYII  3399_>_>65 @ @dd0909##pGpGIINN翔``ll᧻ߧ//ޠHHP/P/VfVfWW[[ƱƱ@@tt++܂ۂXTXTۮޮސٛٛ[[RRn n mmt/t/MMLLCqCq;;llbb::hhmYmY7e7e1(1(ffFFDDHHjjN^N^zdzdddddccHHv v UX UX # $ s s ""y+y+ZZxxǜǜi i /z /z 66II&&++##;;xx*S)S  <<$Q$Q<<`lalFF"} "} &&t-t-)/)/ތ-ތ-,,`+_+((,R&-R&&&/&/&7$7$   !}}~~l%l%mm&&NNKK : : //iiۡۡծծnn윤霤00EEuu44lkGGww22==迁㿁ZZڥڥ%%բ#Ӣ#.{.{Ԕؔ""XXhhSXSX/S.StAtA..oo&&߼}}pppp_e_e7e7euuaa99ooTTuv~~ggrr%%uuk]k]&&66tu||y%y% jjɞɞhhללXX||ccII9U 9U HHRR$$f| f| ddZZnSnS+}+}  %%VV""  WJ WJ P'P'))e)e)Ȱ)Ȱ)++++++^-^-~.~.(N,(N, & &m!m!--44HHq_q_ #h#h3 3 8282.,.,[[^^)1)1LLY2Y2 ҼҼ#p#p**11jjwGwGIUIU33..jji]i]W W O O 1%1%  ""SS%%..eeVVoo;;**p%p%''==v7v7YY##nn[[77..ZZ||))a a }}11^^$}$}  ZZGGzz<&=&..**QQtmtm((SS3H3H99::Q Q 11  >> 6 6 no;;""#)#)/+/+Ic+Ic+/ ,/ ,-Z,-Z,**a(a(f'f'[&[&Z!Z!jjGG  ` ` @@``YyYy MMx?x?77--BB*)((lRlR)W)WDD11WW||ZZ))RRR$R$UU>> ϣϣꕃ蔃JJ``JJ==^h^hUU麯뺯R,R,#z#zDD**""ooc5c5T T {g {g kk# # Kr Kr yyެެUU  hh^*^*GGTT$ $ H H  ..ءء&&q q &&eeNN! ! G G )\ )\ z z ܖ ܖ Q Q Jn Jn : : i i MM99ff||͗͗OO&&G G M M d d ` ` @M @M llnn  j$j$!!,,̐̐tt0a 0a DD!!00%% DNDNnn_y_yŬŬ1e1eS%T%hh00&.&.KKRRLLzz;;ee @ @  9955oQoQ&&nnzz # #}}44`$`$\[赲嵲)*)*ww }}6H5HuuJWJWOO_@_@%q %q rr22==6 6   ooXXVLVLHH;y;y>Y=Y''~**cc H H""33%=%=ss$\$\   99rrMMӃӃhh}}}}8 8 bb!!!!< < ׎׎cc@@8$8$?'?'%%3$3$%$%$X#X#!! W W ˾˾66Q Q KKCjCjKK||%%BB2R2Rll ` `DD!!JJ,,﹃뗌,,vv||㌖ʬʬSS??((aa{{rr~~llSkSkݷNݶNp p33@"@"ݴ$޴$ޘ5`5`!{!{WW"B"B  pp T T UX UX pDpDжжYYssګګ66\\[[b b XSXS44şş__8?8?&s&s'y'yee ) ) +^ +^ GG55pp%%CCM^M^OO11EEiiFFJJ%&%&--VC/VC/_U._U.----++-(-(D&D&X(&X(&""gg44JJ P P--@ @ ^"^"[[12 ^ ^ pe pe 6 6 ffhhëëjcjc@@2D2D;];]EEcchh44髪㫪޿EbEbڝٜ[[ggޓFߒFQQڼؼժ֪׸׸++ن܆ܳ߳11ޅ-ބ-ށ߁?>⌊挊~QQii4499qqII>>N N NN((g g @@3@3@{{ CCIIQQ)Q)Q<<\\cc;;zz$$xx")"). .   9> 9> eeKTKTFFFF1`1`OyOye2e2w w * * OtOt77SSFF==jjt/t/U@U@7a8a::____ϿϿ|M%|M%͎%Ύ%##H#H#ct"ct" ;;P P ´´'M'M  \\0y0yttCHCH88r r 77ߍލpprr wwFFmmjbjb  l#l#MM((5{5{**~~kkSSh%h%ԹԹ&&gg"@"@//}}jj~~@@wwm m gg_!_!qq<<3@3@΃΃cTcTIIqqFF7744<<ww֬֬썤++"e"e<<WW"!aaJJvvqq}(}(HHll??MMu[u[^~^~55  ^^oo55S5S5 " "'$'$y&y&;e';e'='='#)#)))5B%5B%jjZZ  [[ @@EE##ĨĨ;;uuaa&[&[4]4]dd,,FFBBssggAA埕柕HHOO66X b^$3/:`4`PPRRohjbTKw w$$  JJ*}3v$v؛99i^Y^DD55MM^Qκºee\\4k+kIA-~%~uxoxH`C`>:zzQQi i x x 1i 5i ފ,,18syZ_ejB7F7  77W?V?:6~ynn;;E` =`   ܆ ӆ , " ""<[1[008.@!@!=#3#m"d"^ ~^ OO  t!t!W#U#{(z(.... P,P,z))v''"$3$z(!(!jpp8ZAIgI9)x Vx   C4VV UU llOOA융XOO|<5yQ㔰LV WHHJ33k"U]kk acc_bbr掸 6GY**AA 6؄fܩ0܄0۷۵ ݁ ݭ ޠޣTMTTiޟkjrTV?V&$F$}b dc^\^ՍU J о SCsr'O'6ҺCB/.$ѢVv@,xW^ZDZrfQQ.L/LWWNNg g & H > > f f \  k k ڿ F= = O y iy ebNNR3 ]{ϣODPoӑ!FF3"L"&%j%cc"i`ij'' * *>)>)$K)_K)))| _J p  W1^ w^ ]'qF1c33ćy""Ѣ(rgÇV,JWUpVVoaaP''F࿣!Yiߕ♷冋o22R  z?z߆&*&w}wPܩSSݻ_؉&i}g|ܢCB>I1(&|B\([pvn  i64RPiVAJH^\q2A^jИenj%ClA+NdaU0-:-fcW2,0@^ѿ3=~] h  Œ'OO Hvurq__qojΕ 7~70QQae--v~ݴ3HH  :{F !=! $$%Y%#ۣ#T"\"!T! _DKBoJOHXU8_ k }= J 0 ? * :  _ /;?omU" 4 ; M 6H׭C6 I/7xJQ O E I]Ym9O cLstʅlItX,H<\,n#AOW5N;FEHJJH_YU(FMw*siuhmM O#f3b  o  e aml@^SRIOzlNx_yu* G)[|*;OzQVx~c*.aZ}dvI^kX鐫$-FIZ@**J - ֔o֥Y AV ;F6J%^EzYЬ_("2hL]dl6 gxde(8ۃl9h\q?r C] 4f"Q=(4]&$n*sq i!HF9!"m @:q f 9[O{\F,4>\ M 7pV[pNL b!2_L'bMx  07o | Gy]{A:!Zbugy L  z 8ڴ 2 __J?NJ|.;㝔q{P#WYI1qtK/w" ne+r@ ߴZ߱V#9 꿸x!g<ӑߵR~(~mC|>r PYrnH "  I fZfOF$Iuo9,:  "(' 7 R I 9 a0I6BIp-.lUչNYm ܉ [o{,_V ?I~n U);'U#Ic#-'8'eV*b*ڻ0R0sa5x5X3{<3.J.E-o-*Z*Wf%F%u"z" C Q*PI{!)|##"&'" #.7%[oVkzDgq 0 HHy!  ͞[[#nWARJtg@gHf߮ߓ.جnԘڊR`D"%:WY{;9y?r;=#ྭ؏2ͱْȏɜȔDT?%c_"}@5r/{Űȥ+!@lص.݊Z"JIdB Z[ $ j 1X`:y!'!&O&x"=!*bk'A3x:n!G!& I&)u)(@(G' ')ԯ)m0[0::GwGRQR;TTfV|VX.XWNWcV.V١U:nUOOCC9ߺ9 557]0I0G**1*&b&!º!j8YZ;UH uP Ex ˋ D ^ <X63V? uj"q](&ژgwԓs٧܄*ٮ٥,Ӡрm4D4ҵԘg7؜ Z5t%֒2ѳoˤWŝ%qLq9h™¸rœ);lDȪ؈.Jנ mQ\ۋ #HڡxR7_Ow綅 >bݟg1hV d'Um?DYy*@6FH,[9OV#mk_T@ !Ku^1~"-\Up+  n nlw2 )K W qD s Ivw7UH! 2#%"Q ' zX* $?$--=3A3//g)V*(65(' ()NX*ѡ/40=W4o5H12(*+W'b2('(+)9*,-0&2.*0Me'('] 3_c8RRMr^C ϟX\ JL/amJO@1* f,5 p\u  yG~T*r/_q%3aPM_]*,8۽EC?ugܘޑ#_Jլ!D5 td 0A&j0cd0>xjy0緑qE^c-qݭ^IKJ5ہ6*ܬOe{<:ܖ&/١CYҹ`ҬN˾8א?ރ>a܏:(7;z篧 2=E2l;ar  $ v`/ H S@f4 /}[K t * æU 4 1s^&mriUe  ++eB6| n {m ájPk&w=2[ Я7%r'BJm"I@]tPf & Y*' qjh]#r49ɴ"^1~2Du/PꩁML0b|C1޻\[-po w|T)bѹCmE(XƷbNHGkw:Sld <aju&!){ 0^l^\Q#TmHMk@$7{{;l۴o zħHCx43j+Tm(BBd/?Bl(nLtf(* &A { qp o0/-w : T x 2 z ۣsQI"#5T7]@)Af A;FB-e>V~?>K??_?G4=>< &*OW4c3M96[ >7n4 r 6 {gs# U n7z Ug2,}d|g0KCv (VuKk:mj# ;mZa4  ";xȼPL=mIj c c^ V&1  b  }_ W n :@P{$EǸL9}eLX\A=&50_M-tWп  F6oy@ ]| wP :j 67:r;^9XA>*п0_5,܇Tm wV< b5|/g&j:Aaqԃ/#xW^:x)jyV=܇H4ݔFdn8rوi?ۼ%ܹ!ۖm,޽@'Ʈu #a ]iA-\9^niõhh l TPgca#iMj;HH d# ( $dEPѫ=%4>Z[|`IZ2|:b Z=c R+VGdf !"#$ʉ%" #!Ch-,R;7 !vR#i"$zMfE~ \l'F"["rh' ,D]YF"  3$^N d+c<( c  ,lQk&k=Mt m9vM9NE޳pPvf 4.AcDs}a+T^7Bנ#غ3+W0GKW [};4''yy?}(qu(ڹCu{ъ Γ;%ξLI}.سg[dw ਙߌ|ߊޫ.Ϸߔb,WzOdܿq%|sקcs ]-W gB U )`lbOǔFL6Di"5TtcRR/PPK7}L?{E^4FZ;;.2/ѫ$-%%3~4y{ !%h= Y_/p;Nib*_ HAԺ8Z՘e2]-Z崑iBoOu/ڡܻ9)pGDuV)Uɳʉgůt%qFJNǡgӉ} Ƃ| Kþ-54Jo9EnICS~8S\:ӏz[6׏*y #yO)^}: OYFQY9@2Au]#b)몪[&63 a&¬րFa{H\ NlOk@[Nh~8 " v2 WH DF ПVU!UL^5"_ E5B@s!$` c]pcY-*zy*&۽"3c/L8441^3j041<5[O2O52UF6V4͉3j1:/-_,(Y+*Zh),k)ER(ƒ,+00//+**YT*K**+mm(W(%&,""wgFx0 CP < d 8 f 1Uw@ 3JE: 7d}d GU];5q*ᾑ䁛I@^Kt>:TXT%!5ԫMqQhPnaWxC&I&u5C4-җw9I3*h⎅^4lKY3& T₌j=s}B @q"[ԌE(h¿r?-b@RU`W>RCUdPJg(1 A ,P ؖ  [ _\Q ?/ 'NZ  3c1Dh |z] ʄʭk1*0euZ%y(!CU+&.+*9,-'h$#Ax)@.5{x8'=r #X a^eA-RoAZ+-xjBx: - HY  2 DsRfn -l j 7ڷE[1coWuz8VD4!ፑ*< bHr\iGeVE5u'(&$tꠄ阰箿겞T*:g40_ f/dJ8N&`O1N-萡 t^aXw@[Hzj+[Y Y %:4rz5r|.,i! .}0݇2M)R8TE; :an$Җ4T5Ť B }&P'.gt/8;9@KAQ7BB3/??c;~<6X70225//Q+w, q%&QoU7Lڞi,_/"UTzAh[ ݄ LS"鏤,k᳭ޟݰߚ1xN#SRySlU )mMaڎ4.%;]E@3|躰td < R)]B x]'w7!k V ~u / hvp>d<Es SFy)Bu}<-w G,go_3҈ Ĺ"p9G wY ܪpW [j5c)e9Cne9CM`c 6 B . :G} H%qKIAV:5ɻvr htB_aSܹ̽GlBl?]:št 6o *k œ t {KU5 s >  7 @UWK}))*3)ai;2"Dum D11 \x-B 4ݟي46ډ=?A۪Dqܳ )Vc2ET'dx;'\  M 4Rf)8œc=j*/f  NX 2 4.r=`I'e s^ )l>sy#TIE%6hG#o ;  =^*Em08*@L@b^bs˱%|7 9j75 G=  ֘1SboXw K ĔJ F܃ p }gxXv($ !=?yГo2o Y\JsP+<)scL /M',J<@GIuP`RzO+Q+H,aJܴB E\?tmB/GEˇ_mr*ZڦxQ[C~h + GF0O## DwFnJ!0'  ICc  d} )BQ {"'oRb}D H 89̴3 T ~gvΎD!@E@`@ \W%$N.)H872z7sB35163(v6X341-[52Ƒ63b3e0.%,/-H53X;':>d=m?>:i:32",g%,t%+&E' QFJ y&T]Qs`M] _7 pź *Fߏ^vPh`}RcZӃ=zEN&yՀ2\p_ڝomR!UndC<㦨~Dt2iS3 adwZ3v\y,Rw1 b72w=s@Mr0j\ADYb5h3v1<}d;w 3b^i <ց ka -JCx I '~vgX{T 7=D!)I$/f*3&,$2'O*%Z>-V'-U( -R'Q-k'N*t$w5!:2 0 O [a C t#Du3)FS s* Qi)?|zf!pysg \EKIr{ p} !+& ' |Y 4 hR  ̬ pQ; ȅ a}U s@5l:̵E_2 ;s/tDWNu⸎[5ڑqݰ5C-^rUַ'[#/]A~,@V0U3먿\>_"b_A~gR#* DD_ ?O/ /W:49m __]Dde64"k1*P1D [4#Vz  b{I+nڔv[wM::hO"D48N;fgt.}j \ &>BMl v">"&G%y/j.76`73N614u36W4R86yz705+53/t1,/RO(bq&-ʔWip|$fN. " G7 >Ff)k{oH xLY'e]#("|q ne1mWnL'|PYX9㫞_qu0.xk,!@)o鬡=R-啠抦%+eRjAކޒ$s8%"hIva(ͨcxE| { ٸ @= F L,1/~ :$e793u%; 8 3u= rXDff3CosGUy i4  3 R ʹU9l+&1lR 7Xx;EC+7B8z1oe>C #_],Yx [<NoRW)xXyb( #"#"X"#!1"a k"b w$I"'(Z%-5&$|}~]1 j@\.1J_)t)ysb~ȝzI\9dQrxn3+d  ^6ڃza<\!۱o8ྟݱuŧBL'N: Z뱚:!+Ih5UQy d/ y5?a[Qm[%SObPyy.? 2kڅU 'Fq։Zy((`]DqoXkLm')hk q R! +`w^0 w  Lj f<'M-H!͂ ^ HcRz J ,Ĝ3P 3n5 Y*ZE#6GQUp0w $%s̳Ua>.X I01< [`żH RHT#u_2 +=4iapq:$G8Jcі+4LSzaߢ,qYجf@vy |i:Rgq ` uG73n㦛͆*g&*ݏ"sˆk8-W2ZኝۼM݅,[pڟԊ~KoӾMݳQ֓䕼]Vv0(K;UJ/ Q o  2W ?$ȊQ-J W jQ_udad r-f qiOK{5_D$c9ǓvW /C ױ WxXYzhK9!F'G(\0y 2I12VV-.+p-O+M-~*,42.0JJ3<625Ah,/w(,{*-:.41G/59\@;EDdIouA;F5P4p:r0zK6%+>1/"$)Gr-i ^W7 W bIbw]+@&Q_J&Or խ"4 LuۡR؛MX{a5?Wt9 ٣;6KYoiԚ}طHcvRv&C'Eҍz-_\Եa ʖ)]ыþ!O5ʍ{_YT̽ θ̱;Y\ kb"J/݃*UQ,-6].X`]]me#r00XPLw|5P3vsWU^f\ﻦ~R5+" >C@3s $8?c7 m!vM8ˡ < X1 nqFc k`QhAZx0m!~Fb!ܢ[#?x" )'10/D2!;10/110|6 6<,t|›Kd@?)=Fm@3#w=}f60wq1垓V{C]ysH|T49.rYUxN}9AN晻/6i|tVJ林+Dy R/Y- :CJw6.v I F ;*l{i|hNZ/3uN  uC  9 U_3JHM'M#,V(%,(*;&k(7$L%|!G#Ae"M<r SB~mceFqz3CV:U7o s G n h Fӟ}"i`d u:Ģ;<9D98n   v~ Ԑyl.zgQ}㕾4e5T$eك`a驏3^CU"w$nޮ18P]֗ -DmHݳN70^VWy-CfD*'`: jbncJU(Fv*Q? 9 g-_~('Yvm4(r|M2 FM;eW^6!1Uʸuh' r SC    0 LDNW\ ΊYo%:`on=XRw7K߭l),= r4**))5s39™7_k8605D3310>/-"- ,+)( YF." O l ROQV#4SZu H /zv/ btEc+5VcmDkJzi.dk;h/Cզ-fQAfpgHM<2csy"ojv*$^ItbQJB$1]馒M-abq[yd&QQ?C |,_&T7#4c4q@Xn߉ԝ5juMF:T8i5fO <8qBfDt !)Eܯ M>DCD ȝ I  ?" pW *RA<H8X |uT:4JF#y X bh_<&1]RvAikw%3sNo\B{Ea8!ܲ q$LG$D*'?&L)(1H,*q+R)1$F"L G2(.8-K_ؿ /H/v5 [ ^ M hDa7(}/ Jd<tyƢ~4-kaph7x:nV5uxǍ莁:8Y?E@*;HФBS9;k,dp(hhXJqv^|Jr iA1K*Ym7E\aۻFu \4 m ]Wue zV D y@Ue< D8z4N2F ZH$nx~ -*-$L`uFx_Ľ:+U k`.m)Πn kaac5P7")Z.f/56O߀ogb u0(  a:#Ua:DR J 8#w / j<6#s?Dͭ<ބ<S4'CjW7ffFE}V/6 [ n"C?Af7PF7!^:T\$& 6cl@q児.52;LH@ ޣ~}ߨ@%ڨ 9J۹տF)>X,X$adpXc20U YXY  &   P  /k ksJ )XX1F PA|'_[̷ ݑ ncp Y rԂAHPlHq$9b3$ k!6&M'sD,-ޙ+-$5&A e }2!"s$'|))+#' A!<dK/S zN"^#&&Ƨ)v&W*^s'+)7.(-126*8J=F9>Æ4~m:106MJ-!4p'.q'"Cs NfV]*  7K Z xgx 2VqEo)nRtRڋa%`IuD* Ji$:{I|ͨ<֌Xݿj8Hv%ӃUc=iҞA"u׳(֣hΦ±MT˗ƫʁѲVrˌB|%=f">ٴA/\ڋ}ܣΫ&ЫDқ+*0 ZwX:ס彊"e=.`O߀(l& p3xhNN▧&:붨yvOd; Cq Rt7h&V"m Hp` o4zt!g!T^}+9# [hy G @! z SrmS ~,%{t7ّJ1JQ%g"$#<.GMNN@=f<@>;> ;=Ab+[O{(#M 0  WF|$!z# Z#F '^$Y*]'D*V')E&%x";Vg/Kup`uHSۚ'vax 76  c hjD}ܢyAƒ 2 mO*oRyG (j  Dg6#ψ)S`~/K]j./{ RiZZ~ۚד9֘3ֺ$-BAy[UЇ|O%G%PB{>Քxxʣ *Z5}:9#o|8W;r;찓g\}`Ӌ3ڒI?}}J#ao. W-gHr꣉01aN,Y_ K V&UeJoap 4 h" Kq , y* 5 1qrD Sel#0[=evs$ #`M.x-i86Ȓ5v5#4/T//,+<*I*h~('D('o)q(&8&!I*!7%%/zj˛6@+OYk ^5 >dXÝXZɑ l H鱝WR75u|/&p@%L@N-1  yKXO<4 :#@s;57l fd WH7M?YSvu/C_<6 SS{m27,E{D*1sFk 14CgԐuM+c X1u.氒xUkʠ%t^[gIh%+x(:+x^\$wsK :C 2x!EnU% uq})˅QCR_sV#*0K /?zDu:TZ*IYff4!K3oړжrU"q/!ݎ %M$$##Ck"[%_$'Ѵ%H'%&t$g" d T0u1Iwז!@ # )Hǧ:B  _ ?OcL_bR"rG^8.W73U}? #YXwfxUo/mLzVzW\kV. TGOq*]=+uZh5B $Q$TZYnf(y)(3'xy ? *J9 ? F-   l *tIYVB^h{^\}:i,u[ȭ> {vJd#6bwY12W̎~]<Ufig@5 NwjHX7KoH ={|&t*e U , ht( u xE d rMt|LZ)R&w@@#~d=GRMhmy.', I/v?3| >{%^tH/r-x y+O>\xUF#1Sۑ ݏ?Qz~l⒉Yy۟Xؿlug- >NGFvHLN^X%~'u0?5[ E 1} # VT {  = 9. 'Dy} h,>8uT_6  fxb U x xL>  1 Q5, g#U'ps*%c(?%Uu'7J' ")O()'(ϳ&y'X#f~$/G>1yb^ CK|\m<1 N k!'!!!"3%L%%]&2H"["R 3"{#%&)*;/\0/ 1+|-(9)_1'e)s'x)U'*'-X)5 3-#wHԓ< D> Q%v.kM EŢ W_ir= 1⤇WPBSp8JUՎہ%cH_9\ؿFӍ.Ԃ{V0jוؾJE@;h*C5K!߷ޤ1ܙۓT[רi`2֣~JsMNȓ)ʹ=m䤉 FVc9‘-$EN>s(vҘQFXrNލASDa[9-,E_'9[)[/ 1ay-ܦ<)   ^F6Oz1T.|J:}=}  `8Sh5h  zCG)(Tu4?#)"z%M~$(LX'TM)' '0l%S% $V!3{)'J648;39_2Y0J%#AыT ~.Ŋn  Vm> '1%*)( 2 kkH$3`͜%w,Vߘ6l$x~J%NpYM _$MEh |j, ~dyx ">`rJv =i"4WO)VKw!XV7E]pT O#'TxB8mJ:Yl5";Qq hiJVN"1.Jz4 r@OT7pWʔ˝}΂ӯ^QDֆ Lɜ%zdq"LmVAկ߆ڃ;i0YKK פU|} 8̊0,O(.W:H^ߚ%eP Adw30vO -a E/ 7_ t TR+*s/i" QH 8IA(p)5r6Q66/!6hk6V ?D7?.:L RLW W'UUNbOOLM_Eo`E @r?K;:0?0'20ٛ=<KIIf"7mT4Mvg80ݠ4^aq_ %GJȕ`Sj(gmz)Ҙdo <Tf.sE{oB+x, v9Kj:8b<|;3.O-#e#s#K"! s&k%"!r,"_Uzx'(&TL.-(<()h)-,l.>.K+m+`9ATL e+M~2+D-[ gV!6ߎRdc"R`Yj;Zjgr?%+C2x(4kG b=Oؔ 1j9iD<ܘM̪8vf}._'ZgT9ES[ pe+'WGb侦4#*荞e&\KmY"%!V)"j2νL &Ec$![u;N@ k)B u[p kI *gVHV)du/ܻ|C &T% R( *W~ƾD)LI(IDL([ツw,((⩠Q҄a۫p&N$>ݑh1##yP[~<#oyQ)QT$?CY3 q[ <Ɨ=  #a$|jHjzi&IdܢW:{^nT QfW} = Vs;}~; Փ ſs $ZvgQ7,#~ $}/0z8) :c1533)*')׭!#iu2c ~]F}[!z(++0!3$/m Cz ,m T Yb|P S E/3` {2-YqT,E $?3, )ucl>)e\"dG%ݺ`}liڝcޗ}z^Y((끒[G 51Y1יէFz'ҋE:ݓ5p<r篑C װnUt&t*Uh|*0O"a[Xx9n{-%{-":n* Eal,|rVFn *{.dCp!x+E.7:4d7t+K.^,.Qf+R-m'(ټ$%%^I j)1(,0v.h.غ,YX oGY A  =' GNdtjTeh`Xd+*J9-/~׭$Zi܌vپIdQ"%!RqAk^pM̽Ad9:@֘ I xR{M娣 "*P) z-ػ`ڲN;#$TKY9&FZ.})1d4*Ts]  ;X_ "D T Q^T9T CN i~=IJp\!H%'B*=,k(q*h/1B<=ZG"@Ij IJ?>Ay?A@Bfd<=:/4<9z3a4r0*167$@AnDO{E78(Q)$-%-$ &j'v(^j!"@@[J޼b T'I)j"##%'0)9,%=&=ʛ c3ǘL3J+JX> v B}VLR%ހj ݔp$v׮T>i9 4-ܵf/uխS>,Ңe9!@FùJͼ,P0iI2\ͤ!T;3Z&Ͽ*~ʧ(rdszܓ ́uq85 mfwr ҮcoQ߁XԈW`ԗ'H*6pÎ *eހWaΗj9C A] D6_%\<`v -9Li"r=F*7% $) c< 6i% fl V.3G} I0Y]"jaXy7E. \ =xW)w FT >ݭ>KA61ʈl Z}Q4DR h?'e>=yukB u]|#3!c#.]!PgE/f$i{3N^8< 0Qm z 5v)JVl[ 4|dyT, c]B^s0g kIm P &|>G&mSI`Q#$ nx^J.; Ccm  Nч@_#B/|b N s, -50&%- 2Y宑zDC Zf2ٽҫrnRTR4I&d9!! bQY(-MT͔IΫԩl,cڗN!|Fؐw>snٙ}9&Am qRѢw(zN@^EO|&-޳$K=Q eD bw5 ( U,QTE ' ͶZ/n,-?-X!I&,"] -*޶+4081ظ2Y2;:F,F3jQsPRQwKIMe LSR4PlR"P fL|I8"?-;\:3>72F@C<_G@:CsHvC8}8-3X})u#$g`{F$ <7?Sp S Hy2 0>Or{Wl\*j Q-۳ť-r|ެݕA]fz&*'\"Jc]tZwfŻ %^ʕʗE8|e݇HҸЛ`ј.CѨˍXaVԎFfThӂ ޚ"zYb$,,>R^,Pk]"=PDcF=hu*'% O l':H> ^n{hk=đ^E$L /<2b)#"$-`/S4A6̛-/.L/+,5Q56Y6z7Ľ1qM2%&2!!& f&/.9ը72@0$V"[ \ t&# !VV i5V!?/*-: 81k4/ /-S5n3$6o24 1."5 :jr\:`#[ H 8zfCsZ{|Z]#@. џ9rYYnefuG[︀kꢖ$[L8պy)2g.(o<<쩞\ z^@U[dOM=/Tnh(C(t6䱔hCMC%HE$鱶(Lyt/ަB/1r}R`mKbN:`L`VK!g!GeCi $ y:$+#|'.m" o&+U9F~$<rL5v$JQX&O9Yf9.)a HҊSAZؽ|h%iV[6+[FuA.E'cSOr"!V.ҫ,2 p4  sQYȢ  W { <̘wC 7{ «UAmʊE?GcJ NL/IT o ! x!G  ZCjsl:Ru+P  (*X1*4H/_25)r-E.1'05B4,// #s* lϘA&!n#<& (_=4U ` s? { ZW @J b]jDg ?BY.~ lL?ߞF}c~/ӱ4x֒ 3,5iaةQ6&9 谽\&?|]ޮ1;x$ȶǶt5>tCR /-Iގ܉Ov(+j#F#΢ADh:D*(g/WQR+C-/b*<c/NcBePT_?&G  gz~#R*#+~67;<66}9V9́>W>N*=t<54&Z@%!.$",),;3$0c%!F2 8<|^*&xUy=T \fML۟8ewDm_)-,^V᭜ nٿ&aڶ߉ݏ:I9 זg2JAqڊϪ!UT/uй @^ndp{~?Qנ0ֳ+vvzz߃Ӫ><B!LO?913W l zY4 SR H  w0N4 /^.d h  0!O\*Zuۃ,#Xr"c/.N<>;xDLCuG@?[>T=C>lB1CB=X5&ճjػ,YwDZƢݔN֒bEFp-[Z܅$ܯEץߍ,\+WT!oS04+^@蒀΢kûc\ڼQiUa+:0;/h_v!s O! *"2#n"3 ('&%.ZFQ*x$$~"5% #«V Nc c t ۳ Y ]=yL fvlG#HEB, + ~|wa?.f r} ~y#T,H j4N: l." DgkL   A_ }x uѐv=/K[ ] K DG Mt a :ZW pJ >] K|^ a {t [Y< B \|@!U^t5obz3Vx ʜ ٠ kvBM()=1z/5A5׌ ;X7MQ!{$\ ],\ Wr( NT?Y L DB?аoCt!RՅ6q{*|/c8]? ll~YLF|މbs0)CPNrЕʳMVO75ZкdͲɘ+Ol`ixEoAYՎ]S~-%6/{ϰlϻ}F&OUzw Z^ WѦotYo#l{]=*| Z !A y^z6/m, qF@ kU;4d\b"S %(o*ή*.,/7ժ8qIS]JUVL-[[RS&R QcPgUikToU,T=7MبK<:L6!4.[74b79p6=w:\e40"9v:cv-8ck 9x`Etbe% ~zf |FqD q-rW] PV֌Wה+  ܕ<ɰvUua8Rf |<}'c8@І ϑԭׅAϱazQbȯRm2:xwۿ4 &=L KW _㠛j0g'܈܌@x3d ;߃JQ?Yv#,V]M {k  & o:0 -K Q ? L L%m9Xq B W$$0/xW8|i7"Z3;=2m0/v.4Jg3v7rJ63Q2D)o(48" j$/#(='K1k/2z0Ck'-%!k/%r"+)-/+C&H!$%# ?+t)1uU06)5R 0x<2Wݿڨm~Bؚ >; ۸ Qzy$V blCj./o zU !37yLRo*/G`tdIDd@<aHFMi7ڋ<޷ ]2ud+;Z'k/:PD!eAXT`MA-tZ~ؖa #|VǗ =Wsr  ҉@ 7]   n#"U*پ qf AY-g0ھ:*aMlQ m5!<X")%0x3/7d9"8ǟ:t20ڐ2d/1Q2Ts5d2k5L]+-ri QQ$%4SK )7 $s@\oB<Z  O 8 Qs';+ X 1Lt 0 l |M*] \Ar\d Gޓur4ҲXѳ4G[ѪӤP"΂Zh#K)0Xਛ\u' D0n?ٛ4Я Cf>9̖Ҟ}NG-bQ]i1D ۋ4݀Yԭ l8٪E}V2z9|p: BmM5MZ`8Fѳ'D,’I Pinp-y{ZB c-Fv1#u%33-5#;P<|BFB<<9lb8= <@><+:K+n)6f U 8E#XQ )6b&~'O#]uAT I@ [ APYr"[PK{'Y-J rB +]\ >/O|JeLnؠ)wX~J~/h ΍̔q)`9E㼌ѪwmOZY޶5%5H숱o2M*y]p@ IT T8s:BDb A X_!EXTs !1 w i  l; 6mazX K/ mi ?߫^t ^D  ,@F/&C4*7!;i>*8_:2568~;k}=:<.X1^!$7!k#M%3(x-/12(4+ ,7$%4$f%$D/%!*a"[b@\V"..#$IEYœ@:KY'{ E NB,Nf@Uގb+׎ި"}2 XߴE(dn;޽P_v3nfr2]ܣ^W";Jڔ0jTMӔɢv'*+_պ3ӄ/tίO;e̔w/ԖШKN۞M;[D,Bc Yߏܾ`hwMCޜ{1%,zi{@8G܈o =`~\f`D!4$&#l&$cU "_!T)'sr+Il*ώ!G KUBx "q#"n-jQ o6]wTP6 i (F( BD irTj\ۀ \B  i k f]!T-u+-S E -"xv t oK'qkquW$n=AsPAo U| Z4Q i } SX t)-l UVdw d=tI jek8Nr@[KN:Ckn< >;ĦQYA~hso֖pK5]8 .$D&T8~bm{t%N\rZ/H T@C )[O=>0{X//yaq]eܰM7Axš&y85ꈱzVQsMR?e<,pSҌ1BzM$Aޱn! 64&ރ46+r!)Cܪ$/ްa[k>X`r73A 2i"ud0vxI <: ,eg͐  &"sMl]  Ml"0ew fπ(@)8/}v0 k/[/9]r9_JaI*SzQKXNVRO/N-$KOL PM-K<^Hl;P8.+"m-w*0/,q6||3i6U3'8$vbxAт_ '{6쿃d$"Nf!tS 3`g_ҭ,~0Eڜlq&Gfywk:ɦɌ[ͪ%.цԁ\Cyʿr*r5ìÉDͪ1+ټwd\}=T@r֪  $nq ߹[ߕɥSC%:NbvP;6 #Ex{|[6 @yE 0# u HvRr /#Y,.2Q;h\g  RCB n  M2z&x>wP$ͦ`ldG|RS;+/jf3@ui;-O$wCίjo3D"NX=*Խt6K}ci:U2!;eX{s\` ) },hIgc4 \S $ -LF!u6#1 # hEFG" F~#V!jtIM t . VxxGOT n vf0%S3-* +:.79:;c2X3N-Y//]O11 53/1P$%d%W%Z%&W,ќ,('m  4a %}w m{ D w XY | B5®IiH%fnM FW`?Fktud&Ѕp܂DDE[r߲vܮܲ^Ta7˳Rّڵ;_4PkRDV.W9ٵϤ,UH}B ;pC BV?D6롆K-bL`ʖ2%o{ jsLnO]%/K,,:p9?f?I:83޲1l#52735%85-+!>P@!ğ%o"*Ʊ&\'\($aW|C  HU eBA^AJuZ TZa}*A#@:>41@{u#TlP5Rqiǭ˲#˧de) s>+6G|P?}b>\>S酯 2293z~b+z/b~"2) k=fT`x+BVa. [4l: bV_B"&,L!!Z!.C JqT ,tڄ, ?  . &T \,0358194"Y*-pL,.0346#l13J'e)=%15'L)v+/b/023E+U+1$.$! h1, |yB_E:r_o0i2@t  t Я c%*jTkpGk`tN tu_n%< 3"* I-5%%mqU6Bц;`*4iW&"oC7\!` LH76x#Н3R8z؛:ԭ{9ҝYԐِٛY+О3qZvL@?搙弌0 !X܅S^y 燩QMLp>H6m*R_V *gBrUu/]V_oW]#2#$R#>M i! [&%J'& w W#Z9#3* ~oG{ :/hXwv`0eRH-YBtSBz L g2]}  V&*6!_;hJ(X !  A- /Γ~rPYNL}}"p09QsZqcws 9 y U_~hǣ(j g6 a  m 4 U) i  Jx7sU"(H;Fm_sWa[x5Koi&^N4`oڐ '@(buB횂 RHg 8s rviQg$ cwF=3]7Fg~Y꩓#٠CzԇeҦЫ~ZzybѮ+L3XGg+A7Nk*!G']i}1Nvdpڰܲ6K`} f+06?+ ~al4"Tb h  "*H  -7 Wr=# JOP !}|$T!T4 R E"^g$+'C)3&g'0*+L9i9əHG&KLJsVFxDDF?: =bAR>V!D`@\G+C7Avt=m1-* &,+ &a-v(+~&Ի նE6SR r ݝ@81e\AO#~0֓" ԛΕ右0d &~܋3ާ@k!ӿmbHWˆpϼͻxӻ\҆A0wOҗ0͕V ˼Hђ{7P ku@ŨăWUNx >ԙwhSE[*jK돗~@buOo|= rf=mfЌ=LUS ;%Dh4~\qEee^+ 1q$V".m" iS"Y&GJ.(j1!-/'*:* -13y9x; ;@

`Lh-h5njhw⺺.2ZGû㪗h]zF72kSGԓ^ڕ۟38xn$''$A5%ڶ!iCYzMJ֛ j M計9[˩SB48u۾"hUy1 xw A  AJUX~? [aUz9 p Ǫ9OJ"@5'9z.Ic"cTJ}bSK^,|+Նf]UilR F+M]5[7I7st )]MuāS}`[aS'd2Hř#s( _ "`  abދ:_ *, P'# F(c%a1.DWR/ IJE|v- `F[ZP_M_F}"d&Z258[;1P3+-/I348_V9X:i;!223#R$\!Z!$,$_"!̩Sg4$nM  fO?l T' 1 6\i@Ke/Q[TVcz/c29ydvpvRHQf߉EG?OԵ{i͉ IMص1%/ٍBGNܸYۜgFju(%] 5ŚNc'ФVӮk`&Xu.ERu֡ez74XמvfnV^TGDDC暕5MH"{LPi+Ap)A!u9R yg U-1 6E b h(bFW OYa 00: 9G75&2_/ )6cV3qd:!7=En98z4ñ*&(#6ka$W g'"9(L#ZAe.K<|ń, 6K WVOqYW.6=?B Qc,H 5cp$*p=O/?ۯ3 ۔}܇۸h ם/=dzea S:Gt`XU[V([f_8K]hW5E^jMMfb[Ɗ hYRlLdm8Iw.F+. 'ߓ2MN Ok d;1Q 4/ >4 v]y,- |Sٹ`( 3j v%/j T{A g,׳/R6-=0='6**<,[01PA45 5%6=*+pr!e"K"0#?&'{)*b# )$L'no DYwnl+sJ-X { JL$OO[TC c  PB U %VBYw-+m($$jL1go G.n瓿P< 栍t`%39Y:.6{D Y7_"" 6!"!&<%h)V(T!"Y!.rVf_  HD) g86c&fRoN  C՚ 7`$V 2۳kQ *0 Ncy\ = Ȧ:V-L&dd2('zbg8OS;LX*j^;Ef;Xrvk;{orI#qkF~ xX i+, S؏B  H }`9  ^JPJ,Ő Х . &:<}b:>[kHBd3N6=pkh"3 3$6|(y:# I h{!"#G@ s Pr t P_ słT-Ba+U 8,?++Yv)@8gyGOix74-@*x&r#݊%z"%#"$ Qɼ0#3)^: q S V9#Wu7z9 B Wd g V"f#J&g495_mEb IZكܘ4ڮՃ>=ͳ%!-ma vyr88 “3L1q}'ȯلϞq̗nWJϺȻ)T܍vܴp䴟>FN K猳:U7J^|г쁌R!Y,R,z VK`7*QE'Sw V=" 'lh:Y) 4j~oy 7So!^ S !@2G55W8.0'./e4c58@l9::=2-3,c---.m/c01p+~,i %&H&'bA(>)z *+(w)5!/"O""#)*GD23(236&G(T B""7$%%'&(<#%!#ܠdvM/1^%YK<( A d n L8J^e cV 8L/ZhHwtswg:YR'<}wmW_Iq){#=M)/XP܆u٣0i%$DںO䢼V`CQm6vFםMܾXRcٕP}kY8>48IAቨO}w;ߜ(jXCݘKMQ uE "] Y1* Tد9AM BM|=P\k3~kA7T\NPS<,o9A&#>0E b v( '=3}d^KJ[|%^|vP6餐[I"m^3;.V!#mq0b )*=:hM^-h F Cn R{ KfS#%b9CL~ β r!'%! Zwg7E!! Mq:$IB'K|D9u_$֦y^fMwHy"$%47z=6?m890&0%1+13Ɓ2 4A3/.b.$>;#h2;НKV֞GO ^ Q  % 3P,%ȊnvI  '7e>ߟXh^ͳiv἖| gƝΆ#v2\/޻b+θ7Pxʭ;˻I.֡UY1֤u,Mo>|нL]pzA҅ ٶ=Wb)ݽ.[ao ߧ`$d'v58< Ao"OҞlg"ظa( ?5xvbُ  ?  H)Y?*!y+88V9?8c20`2/Q*629h59$5~/+|q(k$j%!%n"?']#L1 ajR rP zBJ7P'g 7h `&J= qͶ@x@LU5 14V?eke߸pPljaɁԽْCFԤSܼs!C'J&43nw)&BpMH_K )ixS>=!#'1:DSDg`Xͻ&' se  F8>fD'&+pߊteB&R#j>+ g?/7GOf-2dA !U;&n+v+@0'|%)"i&C'?I*+3-J-f90,&H)M &K~j0i)!j4-S)O7 I_M  !X5s o3   0 r i|I6t VH/]a[ :8F͊tNwrT8A?_Vr?qW[=Z0/2Q2-yOf'eFݶӈڒ9(ޱ,p/וx5v,TලyۛM3R0!vx[e,"d=qbv%cX&#?3f$z\GL0EN/Dk`-Jvzi",qocc!~"+nh$Ur#!<"/'&#"vj'h47qDOLCt _= Zr  POOfNsop`EDzdPr^g`|pz_7!Rmx B3'rΑ=q/:G` *ྶ*5 -CT /IN ~2{;20ObbHLSLHlLzu3P-,!p7jp "W"?+`<TUC 2 $^p z E H uu y!U0Fj A`DeNL"Q`o u 9 }#LN [h)&+()m r U> ##2%;$ޟ z~0w E ֨ X- @ |X&w;ixW#]nJ}j eb^+MݩN Ԛ7D E앍|S-DLۓ䒆*h3(_ ZݾM8QHeÂ\8_9#TZ7[ͥ:^tExr9lcN퀟@L ~6|tpAWOy I + Mb _H itЬO]\? Y z[=*v|Ph F jU|RSYX\d''6a6*:-9^2Ͱ0 0Ӹ-3!0'512vl/(%\!, !,zur!25a<Aw7; &!O* 2g^.(5WE 쉗ҫOpn|e~F xbf#n̎c6̷Иͤʈ*Ô5́}؎#!*X˧VK@˚^9B˙6Y$B>[bjT@9Xd0}qCKQ ^g5ԟ~@[ViR  _( O&m Q ~|Np)o/28?/37,J0:s03K3"6Ay4"s7c.m1`(+'R+(O,,#0+00G$( $}F('+).,&)!7 ʊ%h'3-\g/M2<4)=+F $!/NF { !1"{%&#;%J i/!T A |> r ooE]2 h  0B^"s1pjeJ,@ ;!A9exX eiCU5L7庬8Gjڄ։ h<_,lOT١$מVң) Wk|a北-=ݎ߆ܘWC(!!ݟ/D٨ۖބ53fݑׁ֥r 佧լǨ 8ytlnRg  1< * ?R_ ]s H&\o 1 L9|\ޛ" : % U e)G&g[VLO[\Pb'\3$;i͗$i;EZ1#[Ia塀q =KJRU2א8ל~mNڡ|_εr<: ͣU:nnP槆5߯Y$Y^ٝ;غnRJdΣ Ӟ ѓzUܡz0p' q|Zz,1㖢)"9p=FmɌm=NL-Buv ZɅ.tO(*JC0<&CDeX *- &&x '̼ z-7%l-.7pc8$32,_/op.Y2y_0`5@3p6/4ݛ0 -~,Q)R5.V+{/ ,0O-*Δ'  },]*" "QF12J$?w G<wP2Vt ,[1ykFT;ӓ5 'SÖUJA߆9"OAWc;C߾TH^?EmKu'T$Ajbܨ5yOT5}K qA݉Qq0 %v@Cjbร^W-hxY~FԞD ]j䐻?) xy; =,dm8N}蟳d&vdZk 4 On` +kSچ  ȔVH. Sf%s"%V"cB!Y"]#D=!#r!K"Q Q}E*`.D+ 3-  y "DW0#>!{q;ce!/Y*rl繵k2KN }bp4Ch[@fCHٖU%.x'_#w UӞDe"7? a @7 > H? c o T l A{ [ 7 N@5!͙i/ Ö S h Q] r 'zC\ <Q\$ A9)rz$6&2't(b?= I pi˫Sn7yl\ R O m+xNTszHT;<;9B*)%f޼j;RV٩G{7 nG 8 `[1#!}p23B{s4b9}};Lb{ҮCt@N, * ,.~uV?Ư N  e+ _ C ^8"?'.#!3/Q2*-4,M/c025L7_14w5-2S/E(-.-G/g.&0+.o#D&y z$s%))j"-z(M,<#0~#&{*/"3&/2I0'*#_'#&$U' 0#q+y<zy֥`; j<p9K Pq?[F"h&POiEqA,":s>aDﶽUO4 [}F݄r.8Xԁd(RYOe>`8;3֕( <{egFi^'uɿ۴FbP5O*0]RB&49qߎti6tE٠".:Dx y8/r'-\ fۈ,h2k~ ]M 5g J <\  2 >~ j f{<6D8!-#,A9WU"ZKTS)sVcqTw(v\C 5aL7B=_!L 5f u t֊} < j H Ar@UXT $gm , jmw~u9L*'& {,-+ T&ʐ% [ !p!#q#%rXk3#qy#p''99)%o(@#O"" MK!# $z#!!O rF"U@!s,f*ƶ2/F0,})d(F$uF)M8%Z+<&*:% {xHR\Cd  ֊Rcwb#50 n8>w6]mba-,툓D?ìQ⌇]t)ےH 0&~`A ҉FӋ(0Twک!̙cޭѝӵ>P]` t_ݎkWwހ73ӈlh^,ԓ oˬՇ&8' Ղ39 D[kY*#~CZuI( K~*~,Ηauװlb@{*Y Q5zI%ov" Y ؓԡӤ . -k )a w8#C#10!3L1I1n.K5+52`;+6 >19+:4|3Ҋ-3-3-2,4.(y$={ #X tӕ!ϕUq:eFx (V[ )j_WTD_ =+ RLAx#!zL9}nw) X翏gL2SnUԕFC[d@!)ֽM .ei9 W !U. 9 K8'+ & z[#EII I:"a/, a4NJ2Qn@ߜ@&<:k P 4/6`kpg;}dKޒ$U/IR+\+QF5SH5*< ,ul>ReH] !u> `rzCx 0L  $ '] 7 2 aj *xkY ˩c j0  *ɾ O GE 0 RʔW"% 0"\wX;;'wUIvȡHSE=۬:?(ȩYfqq">iCPjeVlwܑ& 38W2!Dbi*_W:Ϫ:P[;F3\x6}2m[U7mUŜ 3aBcӖȻ .<0uUy*la aL\n ʵpr,Mf;Cᥫߝiwd塖I%'yߨ3.+!r1TؐzޫI[x܍ ڧ٫Qؘ^(JJ5L+X`mVn2ܙ Fb5Y@5pp\p%58FQzz  I;H[\ p3 m 3 :9&Z+,0h)-ޕ*).D2-200zC3D70U2(6*n(+|*,Z/0.1h+2.Y" &b~!ߟ$;#~((=0.'%_H+\^%!"(k$&[,* 1J*%0#>)3=$mX~"8Cri!΂G`To>&l9g8:y  V{(oxiqQw||X:l3|-wav}+Vn @[j },zO ȇWVչBe.MM'ڌ.H|sہoۏaÐ`Ჟbm 7o᱿X lPQމfט=ՍݜGg4ހ^ߨދۯ$o #uD.9z"L43{U1 ӭ y ) D_e.( Y= A'mY ׈ w+ k hIk1O>7fӒr`EWb\hay0U܁LP8 VM2>Cۀmݏ97X,,䨚|Ꮶע}>{ԐgրФ'Bۿeڂ ?ҿ ωEDcP1O?Rv⏪@K58zܺS|O V'޻Sצ Ck< XUSJq[J4-[F]!(+t_!6dDBL5nap?_)o nU h$/!ϟ%|&B2'24e4c4637̸5ȝ:~7=\f9Z;<3745y/]3`|-4!.3-y.W(Q#7ne!/k%!b##Q0h'M*lܷ);* X4)'%%f ZZ344[NACHΝ~baWn)![5u,R>+j8[нK+>VDc#G9tb쾡G,j#>hj5=Q&RMx6lv '@?EV#>t E7ROKG"H'GU ݲi p] j%1!v: "CgNs T& ncZY  ,Yl Pww|ڛl]bEc:5( ]t5  2 x$>KMI$/+9%#v? 4MPEZ])HV("ɜ(wXb' c* JX $pGrt/ZSo5.~(BPV%.M5݋jsqPPGd s -TmOz (d턀=PZ-[9Al+^9+reV51rE  H N:9s. t!f%;!'N#/*%)u$ i#Ҫ1Vzm[|  k, Cz w @ * o@5wzv53#?ly )Ytaboa>J& 22HጊmOT$7~pv$0R?0 4^d-&+" !O~k("XYQN sʵ`s.I@PE+^Cu ޏg5:ǔ8>XwUKb^Sjgn=LW*?hnxv]ත6<^+s{IםDlDzl./J$晁7䃅۽٠kދL3S!ߏ۩D^!J&pNviod阂6bB O+ +] ^, &JbG pg  `-nYn GW h@-"ݙ6d!%>'_+D&!)s),`8.0)0*2J 1m2y*V+H&t'j*,.0N-02*-"&".&`#(&,3%f+"I#tz*"xd &J $*#)J !G? K3wQI jp t T ; މ (@=T" G+4i<-~2c}r`A| h"A=U"<&VH IZgE[9YQ<ؓ8P "׮6(ߟ݁w;ۣ.5@z.PUGS}!]ROuN qKGr p ߈ $a*.:%oIgخ3([} O U. =I J pb5+ :| ui Ru4 ( :D @ZXJ`%MK6#ViE$eb1N< 5Ԇ;id(p 7fthՖcKU: !$Z'F)%?(^n#%)%57564 //,wb,I'/%+ 4!.$3-8(:#L;5qJcM:&?ԟ"Q k qVq:F M b  #Us/t+fq}RҞE+&쭸 5Xͯzz)GUL뭤8UmP:3tsq_T[ɘQi[}?y$9_:ڑe/ܟ@٦஢跠R @G핫5W(\ 3)m7umç6 */8D>DʚWd .\r^pbpXSxC],cc)xngT}O"mbP]z#hT{S|%#U_?  J"#J![t3{s2~(V P~Hm Յ q > &0 $ (gzt"TYCd<R0sR{y'&4&ld_x? i-o.I,S del`.:Lg~9x"뒴膋YRXK,!'*G9olx ~M!V`=u] mCA?@%,5tٞR0:->,D'@HN4V^ WfT#[:ӆPWu +&1Gɡ0Ts)~ad hQ0oηzGzEnKiQ.0ʻI!r|0NkBi/|r|K⃾হ)XTH\嫫*㖵M!~4vr1()puzzCGL<`nUqdU>kDh2 {re[r"r?^%/bkl 즔ZO-$!:tMt!xR3;Tn =dmPz{ Q + d >}a /G%M$"Jx'$'~/#B@"n& _"!%v\; M 3 rV.  5HZ>]Zt(hv%6Mnjf.Oʒ%k_?妁<^ޕi"1xףۤܖD1EdykW.^*T{lEJ:jd9XBݗ<|Fk Czlksyt-od7ٮ m݅ c R[nwl iC#8@ vxd5  ]~J. 7T  42z2*!!H'M %!6x&'r,,0 /to3m-0֤)u,*r--z010N3?+I. #Ƭ ##"u %O$b&&>~\r=ƌeL] ?ΈiLvw̧R0>3{un" >3r2(m2j.D,&=PqJ獴!<~4K&嚬dH$X%迃. &cR(FHEIk|FO`g{p*JƑ*#&j}d? @- c= x D gA>N = #c5kq[n2XR\ bI 6eu*GMV(o' %zz\gуm;<2}2Y zUTIcn@1aeVw~ڠ 8 2 [oz@O 3 1>0LD z  pi_  Ur U rحIH0 y &>!j'OUF#$S#Fu,$#=:~ n yAzH 8 M q!#!?>n{ g kj', OekZ^* l' p  ~ s $-cwme\H& / <8hꙒ/ _,Wz UVM#"*CajK?֩}zׇ7Q236zhVK/`w븕8 W)hbﰾ-n٭ZD'aP9[ڽMtn^QD:倕"-gOT~,BEn (A/3bﺄ 9>t}֙ xHv M #=I$ZWm0g#/!D%Q'C+F&݊))Β+ ]0 2\566600+*2=,*.h,,0j-oB*' ;̪}6aE`^8-FVkVvI[-^ y $.:dW T jz|@K6#R`CLA`(Ch%;H<"7]O:tfW\EǙdyS 9UݙqfG 9xz skz:$'y-? u0-em8O=!Fz|)!P"*)bqS+X!b€ u t  p !8_ A ` z3VZs f.7 j 6 f) 5cg6Y> $bs&Iu8w:l`g^[e)} \  m/On  '[ L ! x[@9 +G!.TK ;FZCb.KEu1hk+VЩYYkCvgehV'l/J?1S*FA+k|k:+<]/ 1PUmNJ Ϣc&e/op}5 |9 / hme 0\ ""T1*J: , .<6f",WSabZ]IG 7(@&g drui^]:aj^ q|T绵PMEaBK <{J WpX+NJl@Gmij;0\jwFay1xeojN1  "[TS*LV 5 HJSt tEE GxK _xwE j/ c&C= в wPSi. P s 9 / &/'>%|V[~#ņ#'&%c$#2w8zf>~ _Jgh;H1.#;d Lr؍,¸c0) c"ލoUKG)y!B̟%P}c `($H'k1KdlVK.㝷sF`glHd3ygnL-4q-YU lmOJ;lKqloh=z^M,l033A  )~J^ A6!U1l%|!1t&kod hZsXe3<{PoO G;o? w|N3Ok  @]m( ͦ' 2X 2VYY.%!C&ar!y%&*_e,W/Q/.2!g,P.F%''% & (H)+,)<*EH>  Ecc5Ph[5KaW$( ԚuE ~4 q r Ym 3 ~wvx[Hp';1Z\Dg腶Xcf"y~,x3: pd,zr{AU_C9&)D(ژ p$(*3&(hy&@u'U,|,v21w542H1[A/+)D,@(3-)d/A+xu-d(t$O!7F!q?o!:B '*? ,7[ x 1u  }oׄXW<{|]'l@PY y Z}#m+Y` /z:; 8 @ 2; .?SDWJLk@hTQ<@-}@#u`D&fNwZ6A c~^:>d Piadl7=ζo?;PO qi+;ݲ@PZ3aFجU[%q:Ș  |  ( b !Vy }v^F :4 V k+Вr LwNadYG<jD;>tHt;U6Ed($@|vU}rXt^=jxN@x]ޒ31a jn*pPn ?Z.J|q\n.MV :Mڒ[9KVZHgGS+F"fvj2V>x^k"=#Bce3 a R{=) /xR ͛z;Lض  HczG n dE$E7 XF F I bt 8^u+x1^є/_ A!a"V! & %#{(Γ&!5c66@[{$kSnG M n F,1 88 ޱ\4hnx&^ty+  PO8CNg7{Jm Es~|,DsР4=6"vL2w=)Gdߏ징bv[< ឋ{qm]^={vg~_Sg;`RWaeOO@eS܏X4Uڃx%MW$p4)M  @gzMhLcYV "`,R&S Ɗ#5%f׭+: b  qZ } ^`i R u3 f id v[^ۊh5D6]W.wsuT~Lx+*m㤞tmSGe欎e'UEMF$nQ ts۠;_@%pqԛsa+Rz&tR^[az^-t`G^Pfvae wSxI Ok $2HMuw -I ml E]z)se^  n { G   D A(}7""KHf !L"&M(+,***" " `P 6k}"=1!#L"GRaY1v,  l3fE , )o -2ACds( <) asyd IDs.Y%MuC,()7)l@ ki>R P  rD(p%Gn8GL6aj Pu+C*%-+p) -\Q1LWcZ>FKV&s"#CP#QT h]D(\.Ⱈ\9g;vw-Y3` +PtP?k$쁍FAR3GNQ!Kp?ApݲXܢ(–wzG%pE5 ^GʥyJlyIPQrN˔8S}J a/&\CB+1[H -nAg `. :9 S:~ S/ވ&Y.W"F#-t'#0'w"R%&ĝ(+,%-1(1//(ض'B'&*ƃ(4.+b0I,V*T&-$!!}J#D(_͜d;nR+XxS2'my  m 7 &Y#osaTE 2#(s5Yt;n4 +wG!;rl`粃Z]R}JE>YTء d vS U~) B [ l  ;6NS f M7E n{sYY}[ b m  B y NU{(n(s]Ksehlb$49  D6 $s H W c , e F?7qYKy[BEݚQ{TRUUlZ1   >W>~U$(9O4rߪIg/3"jsECgtv`k!I΢Y2Ba {?r* BS   @ ު) p9?9`a#%8JE?SctjY>k|:*?HI\M)'Vи=O]V֌rb Zo3Zo jH7Jm2z w ~CdA vfPh ` USa ay G Gz  Tq 4 ZR(@Q89f!]!%z /k\mP T#e# mv1L6g * ~0g)q F <^P_.D浪=+:znv:zSfuMoz~{WiI:[r sX3"h0@念,CyM节뒌,Bz%ZRﹼJu>wR{3D`o* $P7f(/pgͯlWN= =>_Hꇏ#q`rq Mmȉg~0_꬧rqx!kSz[ty/E 5 ;b W/KN@n+NލSn=BVkp\Hяh%  1.; =? W> %Z`8ܓ] n,8 # KuLj m CUb `eao7 IP O35@#ҞE"q!@%]$ Ij` k)`l~Qc\"8b 1.Y ` 0 EGݑ }f<"D's +ku  E M t90_N'F ,fV+DI(.xsUl߄9zmZExr[?4(Ss=ErRNN,uSw}z69@T=8)E,,|#+D `mf; ?^ n]P #( AQ Y \ R0 4 ޳ N1tYqBTt'5ŕ_iQ ^Ke&-5v*R?*@Cj `sB=3P,<%oySR$%TzhLa uE]E rl" Kɘ S [s e{w  S 2.:@E+F }  ? %ߦYJ NN)Nۆ[Wɫ8 E f $) ;T wqxc|/ e *H  i# 4 .  Vdb7Ts}j T&6 [\ b dQ12w  T o} MҚD4 &Y-F0FZo Sw]{gAvo~2:sKv?+%;F6,(Ѿ@#l[@4Ù/yT$%YY粣hרd,sJ*쮩ߋ8To{y ǩG8&d' G[0-"5g& @|4!y_{hf$v怔)荲MO4${SaNhV(5Pm:03Jo\N xL- "fE:u  [ O3 ) Q&ьxY^!$kP"$@O!r!"''9/:.\3z1x.d.,*+'$,I((.e)".y)3Q)x#2:$sEG"h /u>+*X f-YG.! % (6 } ` i9 #Ƶ8!Nuh!s&JH}J2mV큍fED@Fm %xE4 &[jjXwc{뱺>qR䇾,D(õE8Vi)NrHk0}yiy5'.s $ $>aL@(B|vEZ:o!}RK:Cpy@^D ɷ 2 O Q xU ̽y]'`C rӒ$kg܉ = )r w _ DD 8X  bTVA ɵ >~ZZ< t! < %3 h "P[ix{nEhػ ~a*K`@9vO O )n`[  N E>| ' |[ ` |[>U c0a:0aNtxv,@U Ғ~ma:  I (Ñ:6]:=wM;?NZ'/{MyPX; @(0S>`5ZO59H#;=m5O " i : E R Z S9 ;Mz\dax$9Em |xfrRpu`#|D ɖMM}[Xc?2wF^ 7EIޗi=G"w_hzߍwm2O4NQ:i8cAG~۲,zH w˯ LjTݻ;;rRcO>SO WCyt%sG\, m  / Jn8   'eEZ d [ 4kǶ . ~ Rs+M.V sB0x44jxS $UtX!|=G^ik F"N# "0#xVQ{o6TtK ӣ q ! 3 !'s UI3U Wrt d uP$WOhi#I&^Hu;#bR- L"M̻Ft` Zcw/.m3I,}BtlR ZnT-}t'&貵~Q2NlÂi~jn"L;"w-L: =SuGCH]wFϲsoPfrF0z+j"2upmT9z& B~mD9u~-Ay*=#v&b ^# ʡs 'Z"g:$drxo/, $>ʋ hS {fw 2_ S 6b~D ; eq<y0C2"=;<< _뙳$*Z =bm3]x?'yJ!ej&H],KkCK-o'WDu96s'Ss 4Kˆ\8dѿݬ*7 6UVXq]${ b~qqw sa-\k A. m +$V ! CN ] qWH d E|v\/+)"GauY[sscDXG׎vc\Ng  j l  v q4U4 FXY T&R5Q#f2j$/( RId\jm)L-/~8*u+_ollc(|5o "6YBO T] s ZH T/jV m( vx=)  lqJ$ ^ YM,UF R WR = 5XSR"I<|b `& R u C:z{bxVRm[7Ԡ ]MHT1 7{6I{&,Ch`㭬E)K<~ժ YZ!9Vuwzx5DxDmq4P$SI陧硣늘萶9@LxFdB h.TrY7twBTxK~6%oU3S%Hlb(qT13p.B}. =$dl`|k , N'\ ) Q| 3 YJ S;C"R$t'S)4,d %'?$o%b'tQ(+l+F/--*-*A'#u*&& +&bl+&&! a) vP(- ~Q , 1LP, 9 4lwI[ei?UD9d˙} s !B:8L,~FCb =,a Ȟ0lK{Ov/~U[rdvK||軧(xc閪瓽x-N u|M z Jemax]ŮoFl dz,m.|DBO(.<oڟ  >7SI>. nmNA:)| ؅ 2 " u \ a7 UB\<_zPx !׬CsP5T]b8- !7sq[mg-HS0&dnY@Lm[ p~[3*RGD(gգE0 [ `Oy.cC9 F['Kyr)u% ;?<2u=RckJ؇*=|وȊH)%v Yk@uV}FlIroy\XN@JvO4Uk'nlABh3M "au;V _;E",у@oþ?Y j hid GB \!D^v g  9:$E   wu y̮et5 #Ҽ&L#%P#]t\8Wl70! !0&$o";z_QC6s_Q5Ez;b  E>  ɟ\j{sooFŷ ms.4vU 8"58X *DIFOw,w# K\aqBR*v:Y@=(-Lj wqA4Dm|j) -ZLi<&8d6|3 'T?fwCc'SuJeM 6︧} H|`Svd{QaHd-3W|}XS @UlMz7;Jkax6VN K [.qyM=W-ݶ :r ;3  f N$ عڎ & w}v]q Q}Į?R.=RrR}&'NslFZ#"[!P6$+pg|!gvZ7&mwWUHi >H(a #\HufP8i8)tC8 7N=e\ wN:B TbQ A\ ~ GC# gu H&_e Ny E̅`YG(P]c -# Y5_} o y9 M:1c#G҈)-4+[?i) r \uA 9 pa ~ E jh,  )wIq1W- d C q{<@L8BH9&G,M3:P͸LgNK\l4 59hCWHju ?@|aX=1S.yQ.2^W(ܷ(]7'0{IL{WNA*x14,=fMARサU'U /A4E$l'XN ;j !] xn*Z_ , = 7  G  / \ -Y & g 5~ wRI 7  K?M D:l<h!TOkQ k 0uFY=RXLO>p8B#k{C5H#i q}oL J >km'\?2J̽ C#H6IQR7Cy+?;G>jDECb!g W!i,iG 1  TVJ  %P=V3&.hl {r yc F #2 kl  O6 O ד3a  b rO x  v j?  WZ * #v#*d)$zYfr]sL3D# u3@L!zǗ2^\cAv8b66'LRf(s@{e=[$ =.' *p->ltd2)*BW ADJ F: b F 2 j O ! N2Z  a p |? ra4 5A} 1E2 C +|K jn&f / j4"ڞm^S^ - {kW 1 B/z(Ufy DN>rU R ŴTijښ  c \TF el   4 nua 2 kqH2t&vr9RxHh<2KATyqE*%FKiSJ<khLEF$CW#@pF%-d_V}[= voɷ0bTQ>0 ex}/WTLY-4O* . 2$Juz 90‡MF.#X mV>7"htzud5~ca'MQ[1 hV80읳zk#uX*eI@F]뽁缟 Ћt2O԰,0 n54M h>돋遈을w`e'V3@46@}u&͐@_8*Fﱹ%v-Y+^˃hxN% <ؠO itlll x$BP|1: {PmlkKF|j05 c]@JLCRf 6=x.e`< / ?j;CHE#Fg>gc@}N.ߚWQHZv\ӭ |T . Ba ` 3S "c T [ɓ~fe"k_?>ccEhI  `@'UkɑؿƏ:% U!~t}`b!]-6\[;#CA vke&/'.OdV@Wn =u<_ / } - 5  Y XV5@'(T[@ rP W8JA  mS;#u z*3<9d wW ] ,9  mO֐ U!|,w5 x!M+ cMT # \H0p 7Xm NO[2 PYL _<ȝ\3B%c0_4Vu+k^]ôg>`*SMfvvسm ?w :=C m qG;^i]bk0pdLC}Okk0O # ݕ+_ ol qʍ Pv0`5  # j4i +P ~ n[ M&Nh QΧ'kI/d,6&ޗT|Eu;y堤xNJ]i4V=w'<<1#{hʍ[,hzN>,ԧH9u_/ep!v!D轆vuwy< f)m.;,8\mO9 jFq-Pu +-E c e^ M /i$ jJ   mH; NNJ7# \C%?# [j& ;F  AR-=Y ( s aTu|&@\< 'I6$A  ٝ h w IL Ȋ'Y|'ôVvpoAp8|Ao"703ꄥj|jZN O텿TR$ Hnܞ+sqN=zUCzR<_\pL{sARL/?j(%(t=MGe\7 u$"b*i,^Lz]˟߁MF@?I_J'<`0bG ` O b ˜@  0HHi;F  q ?u׫v|nz  ~,  E@(j Rk/ph  dMvx  p=Q } q0Z5 Kܽ5nFf8!7iN̪D * r' ? ۗ%\V/$'lq'>pmH ? F AT><%S'j[t)]U>cJvP4g @m(`r635*c6{e_w>1c3@!Ӱf?aTxN_4u=2BflX2KPB>YgWsQ_yy!_s=i2xM lp膄x0)ҾPPrxrd&Ui$\IcsP<' BuGaU@H-g #9h#ji_Xʎ%$Y( )7dBBT B .\ xCT` %lD|  (W~i;0Czc* ) nO4mE O:OXy=V-Lf;!e7Y%%#s  n15 ڙ! [#3 cR+nUd u35vc&P5y. je so5 o iq0z&Z_m2 B$"5SŽꏚ千窏T1Y3RDI6d*LLĀ|9e(7tXxbFK uQۂ憦) gU冸U]?24c6_Xm풽z(h%hFd*R.%L&\&S$=cBXد҅B`c)s1$:ux NlgoȲ'xGlKC[r6a|x"k  y t Je 2 | ^p J 2 i 43G!Bh"4XH a,ya|hW 5S^ŴF[U Yu/tGf2w"2SN2NJd ND~%tx$A^յ8ȕwkMrP3&{!o.)se(DKaZ&QAM& iJ l [ C Ft 8 \$XC  v } =& 9 N{$ b53 #VXJ`0Pm}Vh `R b :NF (9fZ xҀ)sPv8Iq0iq~|PbBML{}0l ܳ /& K^Fc5b7`,O6(9eKBl}#DkH-= [^!^8O{vOZ=6~gtvWl$@tYyw x'.||D* V?4L5 N ukc& L#'#d A 'Z A  \y q9 Tc@ {o F6*Q 0WM"d4FAZ op] u,FUY H5p {T:>F&Z]M~kL4`'D/wywb0!MQHfj(Q=!|f5ykNGbG]? ]Yxw"aAk#p!dL $d k=G'q(W Ao ;O J>9 9/1Lae- Yt 2!פA^L}z0zSs9;_Cm Np`0'k4UBH` ( C~ Us@% k& -  b g LPThbTvZ{mrJBB,TyMn~S* 4  : K . iXQ ՋQ U fnkLYm[SO H  P=s 4 o> " ݰ E/" I) a\ 'ۻ ,rP jIaEO2 8H4; I т + ~tة \ 'R y|RضP9< M |  ٗ6\TYseh<ߓ/ZrBRґI6gIxQ -F'WZ[ln/st0 ;CC i {~}ky2bn-Y&K>4w(iYXB}Gd,:#[_]@G0nAhϐ^a|K; ww>z%2D  f~vzPD3 _#N7 5|g8RҰ(36c(WG]gpV8kYg:麸_32_8ݒzpfe]rB~8|S };B0ESHcI6B[Gw:`Q.j]ni}g0 ÁM5Wq1zZ: #< x  XD& 2ugC rcf F. >9k bB J< ^e;' o="!'*Z &I"Ӥ!q'ru{A'1Nh0r^  a = t7 L3J Ҽ P:Yk@7!L}Sdhusz 6+*.i3kU h垮3eXɼ9V\VM!gGIWk{z껠"m@% EtC.fCwuY_ZVdUd sZL_8+x_dEj g ħ8PxwIrL>,R~ YF|i.Wa{KåqgAgukì("܏mq3B{~J^Л{E#Q7,H} $C4z +,  *K`t hͭ Ew s ɹnWJ\H'(mm38)`itdaM!%<+HFuF9`82ޚqddhcV!xdpXCO_wG# O8 j$- |x l " 'j*}A~ ]  3},sCxK NIw}6tDpBrCHUdo,^혣r~P g{>h/Uuw\P c>LGwo`Za|ѣkW }Qbgh0I\IjHB Z B pG$Ze2<b #T  ^ aߧCm\t()*h F b Z+ >1vM9kR$11XB d` V!B  e '0 Ɨe۞6 , Q` q  ;uSp!U;/I{H0SLuOevYm_TRZ h}vdU " ee7qj7:5.WAM@h!SFXDEy.|?hUXK퇖o1n[_AH,$|q Duƙql(4 lq '!Z ڻ gs*RPo ْ Gi2 dn/P&| &XJ.C6< V <7( H}xJ0Q* U+ u$ $> !fNfp^>Fm-OP&[S{|y}' S 3׾ m eo[R%a\s+Zr=6oR  fT0j@tw*(敡,u84!F" ;rw=k-H(GhSN6Nku&mv= 'b{2&7+ԁ䲌b+笐_8Q.;#{=h֠l9& eX$K-|)ツ~3^!# Pj2>T݆l,m_ KҌJ Ǽ HyFGf05~!QXd Mv z'\TmzAtA@/8O}LR/LcN &=d s Ok P $ zep#+em#2\wO(EYP+!9WIpgRI2I Ow| [G{apTR6s:'ɊCzlS-Aa YpXrZ_6,گ#Ԝ!%|)0Ě A9ou/hVձ iUR؄T6-;ac,"^EG* "m%c { qk^ F %$ B FP XDF[ & e Ȃ Z{TP[gU(uLؿrtQKbKN\ȫ`|Q E }Ndlv{&\fr@vFXU*C*o|(fZ ziDx 1 QN } t>*tlcF8fRozls9kWOed Z]zrS-;.(5s z.kCW_u FSNm!Q9={SN3 ZLs.n3%bZaw q 2 = (  "2 ե l x]!@K ܥ*`., b i V 7 0q  = L :$[qaXdh>ZfVdmvaV01ѤiM{}tOPCv'wfT7H&瑩hP^(lJX٥]+NMyK~t/csH_iFY2q*̳fp0f&ay$@#L   ]0 A}AD#6|  e K L`   R 1 [ -g f9/vS[G  B hij ym *"HQ [@ R֯ *  ft$tF;Nd uLkL#3 K(hVtHw1T+jNyGuZ 7 j2^`3V"C^@ ujܷ/sVKgL=,N89AnhI8Bt2=gI"RM.PH/ %, dMGmP'R [ .B$$ ,,$kV ?!7 _ 3qB+ ^\a b y4E^XrG 8e ;|Vkj:Xt5zq_%k]e ;O 6R F<T r GqC+ ڙ). \ ܦizTU{ @\3p5H藝/*AHP&4[1 jcd]d0ƎE?؄v\T[T}~l}9IEE^])Z5x8,7mG@.Y5] d5NB93M )%pCA/)Sk ge  e K \nȱ & &;FM (}l $0^ Jhkg H."Gc[{` i *b[rB ,M! *  @o /`!f c#XGMq l? b Z H3 ( 84iWyAk!Frt1Z@ 7m f } w _ x W <%5%*Vfcҵ]'UB=8&>B{.h1BϲIQI$ O%+|a=>_+wufb.y)^I3w`tcMf9[)y\ 1R ^"*\rI6Fb2m]Ͻq rAqH#@ K8DX'qYe[Gm<%)!mZG)Q|>}䞮@1P|W둹nC*ć1?~y / GZz7̮y4&XC c578NL~u\xUHdnDs#* /Cx ü9 DTi E , . " zU0'qF h_#)XDs~З2s ) Krk ܂'/cI*EfW _I3J3gH 0 7  qnWk]QiGh !v.?I5d%Q Z41fHQ|験oRl呜砉8\C;&yb cwKnƦ뜏si"m:jzPfR8Y.T Et4aBOIu>:qxQ]8|k iv:YI* &ͨ7b=5#y%~(j5<U8=d y - q Bf-$)z2@ 'bf%kSNwyhkb<@5Oz"Pdg@ m l:H@|afO n( Z} ; JyaS3iԆ_}G3w%|/Dha Bnvt'{-$io=#+Ok8`Iq$1'y'9|p<i#-w B0c#APyS buy ݆@ t:$fafzf¿ wx" Gs,F<VgK 'w| \ Q>y  '# f{jK?Om ~` r ]oby5} !_SB   E x .jM  n M_PZ7MuC`\dx{’-.E,!n_TV C  -|efz;oYʛt++i(3jN3lB mhE%H, SXLqt*PC;l3UD_q[4J-~>:z)baJSiIj\88mq+* 6 bo v  9 v4  wLN IW - + ` *  O kqB#yy k04h!$>,|߭q/YoX1x $}]FdF e)y q:&ȯJW[e&ӰL*Qώ:Mr,=QDfcifiQ|li0Hp(ݾ8U5E#kn2"ߖ=\0rީzG9!Q :; K ]iD  4 - R4  T3| b } 9 K %z 2O Oqmno S:V7h?ya: Q A Ȁ!" Kk/  J 6p tP |  9LkB $ $'bW1"W?hI/n%!>Zl'g[;¿<)#rurJ<B]@bN$7,NQΜ< L6 F B I ~( k< +x  mx1%[6m27 \`ū)x}H'U:o*u)|&PXRm2L +nL DZ"5zXG L|f;ηL&J?Ol]22t#{oSm{=!Ivm~J4?.{N ~KBQnvw?miL. P)~J[9ESClLT/ .+5Y`rq9%`U9h2} 7 Y3Z JV TgwޏGe GH Hu 5 b])^jc ^ r( RM0 F ]d o@d! WI ' km o As~>cUx"C*1J!,Uh[! H@l`2RO t}y( xf K(j)~$mD5/xtV1F| fQ#. x'\ #lp dX-fdwU ȵ\D p{cw%rf}:.{W?`$auI`I`pY90y\ع$@Ug9PiCw %V:ΩAQC;hv1a1!pJl%o%TIG׊FS=p[(n:[S2]>{@U;ÒF_,+p*8$P٬}"[IH\_"*a{|lF/3j &#QJn \  ed: +y 2 q I^58h'64Q'x^3UU4feW OBhMH)ߠYe,zr^:0BO @Lz&GIb|v+`$cz $}Ձ{.X yȢW oG`=iIRRZ$}EOr?G,,#AM [#$ hQS/ʢih ;0!=6܇_@ubxvc>WN;FxA^&O s@ qWYSb/05fSCoH9šd .smp/@ _QE9Yz5#(98a˦$]%3a?iSlX o!W?tks 2iYqy$FezR5 Rdr(B/b%J}+ ʓ,b%l5>: s5_ < v=ekXN %& 61 Z> m V "0 tY=ua`| ?  o Zxv D4 jcRĶg Ps vd=1z}'ќPm!b' "npތkOD퇍#fd+Fij7*U@!ZrFu %p^cx"Sj n1PC'=u]ZU TaDu=?P1nZzDS ' ܒv2 b s ֓ax f8E5j' .y . i ?xk~0>ntbCL:eT v?? iqa  ?T |% e|+"9R { 1H x ) l $ g 1 Κ z 5' =E R1 3+h^\Qk.O+^QXh6:epݝPk }\E67m/-vإ Vu qkr M p/ U 5 S {f F + ; tDor.F HP ] I ) L` (G@E T ? VS A }P ÕAD^S4C϶$Sx]HfTitte2셡ut A)hTcb¡n("ܼ|WG? %bIlYq/0QhhS([ FTj랒m/ u#]D=z,.]' X]w#q} .*\- )V b` 8!9T'xV5{  \S :O wl-n vjW8+T_e.MjLnK&(Hϐ23f{ bo"QO`KKCaV4lrSn (Rk5 .YS]5Vdw]8cSs|8l['I녈9vKWRhn_ ]_@gYZw12 J) \|"(Ռ qsaȣţPJ1 ]H!dL?2$_M Q eb7~\,#:Ŀ D Z[ 1Q K6\B&/XCo.L'2thJ.)+aDW}>;&PM a 1oL| > 1/ J 74R xz@yNj|75 0g@>Y3U3I@cJX~O, \_?`wDZ ľ9upZo}h8ɦ]B~3%Rd/ kO~I_6BŽu-X#PH dOlC}BqJfvApNUPZ7 'Pkrt\q|ە a o Z FG=] (H @ sXQ,mv`|*B Wt#хoeA_^ўnS$LhvJٮwl"aBu-]I)*<(@&l $vTj ~2.+ o = b  o8FR'r TNc v$ -\o3Y2TBk g$+W@7f)S?r^t8m =9Ω { vMR1~,SYVC%^΁JH( E 62*0    iF $ yd V nd =  07' B 8 2 F O!֊H1o9gK7*(k u =w{??8e*5~x^db P5 32 - a L A ~B}lV`ݍn;Mn#Ea 0% S)Xj -՟B'jcj}i!,`]X9  />p  p; wk _0}L)7eU/w{ IA a*H 6   Qg GFS XK sg XBʫ ^\Q-'J2%l#{*y*+#Ty25hqZ O{d'o 5קV.s)2Q -h0^ `5Zo!k,[(yCs6({t S-uI9<[[}z 'sgTgr_ZW[g2̌eòV >}%3%ѱiUZ0cFk'w#c&s/b :0mԟjg+piqm;a"?ZNqD/QjT̙'݀o2dNOE̲ʈ;B:s{Mn9s+=N˴MhJpZgL 1dO r_bH]=ɌA$7MB`vsh${ԏ 7% keKq 1ZK0e'{ 5 ,ɶ VFFv }aCT5D`j\xI C3 T e< $hfO |:9 3Lg 8$.v1 YB j+ > s[  !o m n إ R}E {1{>{9Md~S$s%% NIVrt|~xi"a6w=PRxfUiCB70]퇊9w偽zFf bN68 'fjgI,Y@h"TU7~bdTa #30bOagCX9*F9V|$ZrҔ;BP7*kj8 W/%̰_7 Q5[5Ld(ov :3 ƱKR2> _ ? V7mV+.U0T$G BN}v16N'{urO|'*Ec}l`8:waHP~{It ^upp$)UUͯa; S|{Z|'@o r\=mS3A\>+EB.{C:)u=mjH>TX8.N\(p|7k.S<@6I7 k 2z ?>#'v#pԂvE~s C|sG;U}7 X( 6J'2 d9FR$ANhŹZPDIh_jli\H*rF %:dW[v|t9eHD%P<;X`2ګ!.>в4s> ]]?T7 J& & , EJ F \ W a DύD\W!HjO˦k[Ke~7nIi8OOg=}4;i U8<+9B@G<Dn!@ ^  a_%$dq1Pُ!;!J )5 r! ^ t< 3 o Do %ҥ / - Sk_4 9&%A/k!QT`Gou93PR.e E6@; ߀ 0]쩟+ mUf-+c |]U$h%F/+5 x>SD7s!-Qa<)XM!WVQp{,+;..ZRKEYH5X.(aS@.F={3'V xEY]#:Et+K&G>3 :k P B mw s t  ?5   -L z=  *q`:5.F(o3f4Ƞ l"|X9%РEMn54R+j+ u+  hs  @ p9DuD 0 =0ca[Y@;+r%"|S5]Zȴ*~e-PV\slh:;tmgɬGQ qoPePX1w_@$]WcN\(tZT8\̅-!LwH2i-`( TY]Uh~:K|F)WaH?'C4U6z| lsaJCžwj )UYsG, a * ']sLU+ iC@L 3WZG/ d UZ u ^kƲ11t MSF|B:!p `r݄P!.\ N*X/p'_l[=>v/)snA 6(/_497i5=\DbH+Sװ N]fpzoL<Jy(WwTg3*c6.oiV20 5ZbpH`x5[`H6i6>ֿEQP @"^qX :! %? xz r Ƥ%;lu {  r D +M o ` R ?= nM W}g E 4jJPL ߭KR>`K+: =rs{oHL+IH+o.0z,BQ_-: 0FoսB EpaE{fIf6#xr@W-ܫt.E4H31߇3t.~$tJy,| x / 6l_μ/KPK6i"vJY<7I_Bg[ݛqoUV<?}Wp/b Wǜ =t;<yT3=gkFdprz]b΃3d|>!YRzhC[4)uضO@.`*3v'^\|%7\PXҾH@zľeK(a-dN$ӸAT pa:^y'Vg*,1g nM }*, v?[P <>O F G G G 4  g mX & %~u(kOA s~ G   }- 1 sC $ W EP OB_ zk*#te%*  9 4{ ߠ3|  -b Gj5dGzcgiïLlWjTVŝ7 <׮6E wpUIYM@h> _e.P_ax4l_@ GPbzyb` ?SY|2a`zM-j\$< X']l/~栗>5rXFe\zнdV }$x5:'3gs4S5A}uXx%ty9q(wuw:K) Ѥ_Gw@l|OyL7J@ZD,8+ FZ'Jn$J+]=&Ig ;9am,i Ut- ' E`e2X\9ͧ||Ms|;n-|o(þ hF ~@ ^WH;W6O+.rbW= {5w 2Ȯ ﯉i0#g|H*xb4!7ssw01T}6IVJd7c}`hB7'i4_ݾKFkshH l}.EXJ5 yq=74\"Q ;Vx^LY 7^*rkb"0nc 6޳XuUpG,InA68J%B,l_#5+t VR)DеmO4_Lx } ?n   rހ Ԑ\! { 8 %) K>< Ϻm18!s-\d|RXh1AT  NyJEu5  * F {޴Uc!a Q Խ] ǡQ]3oG^yF(41ׅ'f# {E  5 } o@ L Ae &V0'(xӺ AK CE ^262|0"YK&gOznf\KM tGc0b5 k?v# R~Sw[.Lƽ88QNQ_kX;77]K母X vx!|'FJ'/z KJ,ﮉH ozq$YN} "v7(-Ɂ f8Q;~' ""+b-l 0@{Ar-yxMPY't'9e7eIrIy6pO$P,9Rk&9YFt-&p =;hubFa&6:*B4f=L{Ig9ҸE>-[Aw|C//Bi9yپʳͺ0F]L~ B$xh2 POƴx&%- e Ћ F* @ z , !  . K?  z6  Av=)˃rE]%yor f%mK9!ҔU.كo}0|zҼ؇sQ3<=Y _F2ؙSU!#Oy؄[UQ) +A,@?W3 Hbf+#5[$1uo;=GfoBi;wQhLGď#q'+M 2 9\RNf5'8 |I ,y L:r ] t NJ 2 p? ] r L ʻ gi I2 C Y u i &n~KLUG  @ P S Kδ \o~ D . R% wh 4.S Tv* ]r Zu**ѽ&a^5E*+h$'b[dcvd7C :5$F;* 浪쪚m}@2v\3k2Otq>IT1{BxdKGE=b857'5,N'O,۩H\%I*1GHUTw=5wMc42%* :zZ1,%8`[p):BA.)ty\l,kpD rt = voI.,ZlCCE%ehPCW.+d;q0izPh/eb2aZ >ĕF0]"VO 7 P a >3l $ Mm}Ē 568mzFif".MAik3E%_+d8Z-Y9tIYӆR2LR]e` }=XXl|6V; MpJJ4-`C5]A%i_{ǂz32LPjKh*Xo@XBn7VvK_Cr*GV^8}vϷQE&BJC]&ּ:.8%,|SSPV8fdm/LB5,K>yr# LWWR]W: 1t# maUlC@7R0b;r# W+6 &ns4Ε`l1a f ԑw??l6s  oֳ[  ;y: e/V `uE hZ<Y _iϔobMT Ag % p  I jE  IG,"g9765oPX  D9^2'E~ >ZA a+ Չ fDU<tR9t=S =h"@ @@@5[XɅSK.%`9%7dHg++]"IKar6.$얃}OR;#s㡌Cq(̈f6# o0E`LN*F ZxZ 0(9 -F??mtDCZX%hR_M20X0~xjY i9jh(uY&s] hIH ;#/.3@( !B Oq "^ˤ<"ߛ 2 ȉSRTm>yltgV./1nuV }=gFws1C]R*q X 4- X _,k  t.  Lυ p2j +N"h7qNt6k ^3$oGS '# w'eGǴR3W ?r{Y({_k.p=u"wZw*N%jD}4.;'-'a1wxb# |CiW-T{tDe\$KBINe*n5g 8GX@+IҖsC5{ߩ3 o%uc2lJUhfs@x< 8 ]T SR+M:=lh N ,  d ^#zƿ_ Fe 4 8 x pZ r!`oQۈ WZDRyAf&6,*YI0dIA0+j+.C:n dpH3Y M=7Wmoxhr=! MR=Bs.TmN y2+ؑ_+96?>$[Q yl5V$ =   d = T > $ 1 "i 8 $g ?k j}  _lTFC[>$>Reh{ )w)ee!aFSJXI O$Og|~[j@^$cw* 9cXm\Np K|_K@="-m>&V+PHs#KY [; }|/G}|'0e=ZWXfs (V= ۝};ujcl{ZaM# b?~*^ dEtKxPN+K`[ ƶ)0n/O|&`jX(k|*w #zN Yo  Q A F b  =w bQ { ! BU% 61  „bzk` [ | > : 0 44 n ӹH  %[gm*+ XY ke7e.OoQ<tU%nt,Ik@)-ï֣$%r -O79VY GdGGf'~ɨX 3~?Mo^MaƇ|U$?ŇBEz}F6m4Ux웒igb̶ޥz0  S4{σ|uRa }q'_?nR9SyyDFTDxl"7u&zWnl [ }(@7c K cbH` qaUojO~NA(U-+8i5g k 1=Hf(_S  Th %cGhQ*ewZvdA{ox[1i{ xG=@]XhiW| G$f.']5ɦ3qVxH>VOm­u 85kGO?Teg~CoGT6eYgB>qFpXԔK R]%=+Aw&>vYx#Ep#PV>վX;m f&X- ?)kvN9 nQMXe/TIy NSE*bG)x٦iDS2* 9j:svsG?Y=o̠dW; YB'=*J|_]_vgKb? +l  W^ Q D `H * - - 7x mN1  Rd "  lp9d ) 2c " a vA5AbD  q^ / _ u$% 3]3~;[ehU! 2e*mpk w%m a 5HjZ !PRf0=|<L?Z; r--7TPQKCfHE7h/KPAa}Mͮ,RQ-5)( [`L4鸅$oB40쿚굻ss&=)?F{b$cp;P6ChUq+,3C4 G$6*|7:K_r$[2ޓ4 gi@˜^RV*4+O`6 x' 1 }dk % CU Iu+ ]?d $ ۲O}Uȿ2`car6CAۨX?8FxmhW3 Gx; `<Ka$m c5  S4Bl۴k4}- K Wؓ *![Ey|Ue7 0Vttp(IQ>d(VΪ+cOL4?%sV>C5g;z]x#qݫ6h9?=@7r^n<\17r@2%,9Wv eR|fte<2 n[`Y7#'=2VEgL*":LڳD}>%=H ^[^6R. 0eqR2[j @ ~.ZT _s @ m( p L ttT3ԯ,qbZw],!eWpxd>w=<;ACV ,d;Ltn ? ϕA"# f2d7Kf*sA B̋~X|] 72HDby_?0~'VͭH5`5}kbYVՋbVX'6iS! P && ~ \  A ]  $M Q ;B9-G]݇I{&F Yrl?4t ."ʼn9i!J5&jrip,Xh{.pQ .;lnp|ގ?=*ee.<8`?!sf!H(qN<[Flg-{0K}qF{Rd_cHNRą|Ħ_a0i΀s]0bRU};.b3;P3.P.Ѹ;7IczdC _ =Fa 7MThX)qY|bdޖA)\ jM%%r \uaHd. ru ]B 3ҧ  0NB q@V X Td  t *wkiu1M͇d\9Qp_CEӑ'6(vu<' m^sHDt`eMѶ?[<\U prX)hX0FC'c.\/a0YbC W6Dw'gޮ{U"%^8^?a*OXN&c{)fMp3?:Y}j>[JFsʩ~0E@A\c6:munA/w|b< 8$G] _M;RN7 Uf^pٝ[WkZ_ H2+* 2@E %JZj;} &8cA}O z F71u =Y ]*y + sGb x W Fd4y ibמN7l&;jt7 _`SΟim^)olKwYL%/ q  N4 2>u tE j} +fSg [ Ӿ U 9ˉb;xmwLAO]cT@7iG3D, d:#W>B[6ƥ-` |\ $o^$ Q?ưU~ sF>|(sKgzeURqh$KCUe3 :b41nA6+6Yu`Lu=FXmբ%.[OYWB=*dݱ~b&et%BGC>R2tr /qKy{+hCA 5wq-,\|v;a4!zpt}Zq"C  , ?_] KN L Q Β z ״ʮ$ݖZndZR8f x7X o"9l??d[ Tt Q[ iO G,hį2E/8lXpW8 qxZYͦJԊv|Q/AԞwTa/O, ~?_c`%:#-xb`w7lˆ f#BUk߼n:?62{ CD sTn $ {C| S ۫OD t>{G"1Ma\{Tۺ7h S{;Nz`H;<QyFP ^Hcv =>ޮy5#!dSxEyلse'_ nxN'HUjy4c_V'9͙Zz|5l z'"|f$ 82kN!s\ǽߗXDGeT_m*!0Ӽ5 %4apl`ܾ`/h? zU  1͡$n T$^\4iZAZ* @L5 ̸O8f~5&,A2U79W#m}j 'ͅVcKNk~E:UR3n zg{/8[$eط%"+b L$҃o${ b)jRaWGߨ :7pc@?8fye}u!3{wco,5?: :IH#T.輸tuB"ȶ:~d%QiEAs_Q[s$$";w_ k3`3Ԧr|7Qn2t: W/'Es`&XWn ~jghlSFW^BWc=9/ߵ A v2  *  / ]G L 7a ~~ 69 ] G% / 9 |` 6eAUH ndf /4In_nq = ZG ~{A  - ]P1D&3PTXuH5yTH2"%pUNh BoH:2}ɗNE Aki۾Nn]jj7O$'_C &{"@#`qP/>*+x$p}q=Doܙ,f,TdEh7t A}Jy^zT(znB>= oԠeA-^|t5MsL-ygSKbe+}-XuO+ clc ~IKiV3,gLJq=^3O#[VQCQA5fU6-cľ*"@ht u JE C ^ L !ps Vo `i U @ Ń ? E " E n % R DPUb)+S{HJLTI ->b ɛ-@N[lYt+k(-*iÖ^>_Mqk?2$Lu yDՉ+<95' ?ɿDj #I/r}50e;zC-ja%8 {v|24EkET62,vKW bm 5 h& qC| 7  V  &# W 3fӫe.?F~1/1PNvwM+wZض9BfG )~*? - 9 e $  k  o% {* t  ڞ{ , .h[GwVxuo >9n(|V_֡/ P{vvi9 B<=ԕ'j8d H S-JQVZJPL3/M?2T:US3?jFPB<,*< GNq$_KpvQg'E-4m?9,H'GA 4"6J<3n;D[W- MN} o2c@9F 0%-GDĆ}r/U?(INJkD=UZpzo # ]G  L , Xs?  O nP Ro & KyZ3X+W<[G!a\DE~MKX3|v3ZڗJaid lwxr1}Dm[+~ʬk;= 2 eaBP.J*xW5 PnPaS=SdcP$'"Od eSln\oV-hLjK#r KI]/en%@[!FE0zBY= Աbv}ҩIS,F=+7P 5|.# >%tKqMj[Sd==זn 3EM2w=ƷCOv%;|SF,p9"0zF+=~ q \<O[yQs) bO1. dm.IFn{ [bn%I;ap~8 <&)-8b3 Q`e-Ac` WFww2fa>VM!tP+:ƩXh<6kz,pz U/qd5+X A MK-eDZwzE ULwE,?թ9O{`Hb]Jܡ~mD%S5#6J&9 IbiߕQ ?gqSZzސp +?t|j, s:B$IkfH;t__B Jt J,N9\?[L;^oC{U7Z  P v &   = 4 r "{ hP d :- o = tg*8Q/y8&=Ig7zhV:0VKZ]/3~x#%QZM^Vp;ZĞ? &{'=VBχw R y2H6 k/=?<}P fG-m-D]_ :gm'JQȶ (KSNv~0{g=O,CW&0tj 9(ϴ)yt8?t3SD5K^2|"K\.\P Ckh R {7 wk Ø P E\ m/ 'B >f :_ h~ `. `B ğ! `M' `s M9 Vl%  $@] ~  "j7 ,B s {&ڧsoLj0҇2M}-WXPN {\S[_K[4EZjR/`,VM(ji,cOIDžOEc`RkzdQ^~U |ZGz2 rs0NM!Y(|a*t(nӮ9{\iM!Y2o:^qI]'{s lICq?Bk;ceVHX KW*_1z8w&"/RIj@vl5!^SRnA g\=1y>G_-d!!  r 1ΝWY"E J s+ J &  Y# r w _ x f ? u8 Z9 ϛ p ! ^Zj$FW+ -$y vd;}{HRם"g@3F# ?A'Ğ*7#0Ty"w he"24!hq &+Pτ}}aqY?>ouo?ɚK`:>kwMEB;RaM@h)VfktvNOi rskzdZ[9dR8<tI۪>CLb`3|mJk+?MeÄ I4 J[ ?;( /n k@ '_ \ &N fv ōso'\CBTV{jOp8C/V0=r^|jr>f"!q>IdDzEa^jտ(m&f/.cz57'>>&; p(9dDϢ+Cմ5Tw9PL M1Ų dC'q fvFMv`}@;E ekG &.!zsU,P`0t\51+p.    ~(c ^ = Q K  O`e T=;5%LvJTWFST_*1Uq% j-RM9N>X=5 /x?a7P&eU)eX]"g@/:Lr\I:X}uOcgop+ gtj]R30:q*m / @02$WU5;( 5~9fz#pt;YnPe;kLlPBٻr5={7'}@UW=0T5w6z@jGå)[9Xs~=:b/S#> m? YuRobhia2W@2˘|nJ!c/J\_Mw3MV3d2^6~6 `d]eg!>S/Far1\\#b ECu,IwOxs@El  n K 3~q.MV{p8e8dѤ>ս*0 Wxw=ݺ>P] @Hi b%ǏdTWDw;]d8pqV or`HB-Uh7%G؇WBeK$se9z:n0ˬAikD\ZU%aB G4u cHZ7LrSɨ]l>ChxC>(_7jLdFR^obN<?1Ք&Ӣ&)rwUK3>M<Q  dM Χ .l ˥ Qf ! 'j  h ,& c{C Gh D ? ɷ K-g[ɭOrUa=׼X f"s_?|ވ:} }0#Q. HYgi#Gq!@6TH^^,T#sӢ `N  V.btpC,)@T8&`(s)LrkFvE`t]ϻtUG~J-JǨ 55nF.5e*=-i} Qcsá4޳2)ةN"l(2bf =. ?jf HE#urVj[<5LCL{4  z 0c ܾ 46c>-a D Brv[; (d9pPt 0 $ j Z ] @ w ?Y> 1P }*  0 ™]%"h ?˰Σ ihN Z#"hV `X:h:U4p??|j/N%Qg PBixyknId\d.aWߧ_i'KKM3V+rm#\z p;־y:$ [b7ߑi;1{a%KyFN `nw#Np#exUKPGkW VO~oZR)&rL{W@My-; "MW.vz0u 43.HBJ:}^Dc*o,T 5b4OˠV,H_HcT@i$1X,R 3n I^ {L< F z ? q ѬSw 9hk,#Aٲ 8~%CGOfq6]b 1 gHE 8 xWu8ĢW s9Q R+t߈5HQi.h`w!`"##VGuJY*s$u&Sm@_;n=hL@Y:N=؆8)1P 9XutJLV4SxBh #ݖWE+TM1I~dla&sA'/dg;KV7hW\é7'3}<?&4zK?e& 3-vao[{Kɼ @]Ω&5 ^BJ6|6Msc@xBw'!'htR`)-wS&yKU[794` a% 3fw1-1V*h_/ۤ8244FCsf&}Ѳ2W ;jI+$lZ 8J[ 6UM Y| I # <E#`$b ҖЃs{18lPݖX&19]t?_'wo M g Nu  i  H *~ Q` y]T ?nVej T WA`I yt35\dc;FӇ~V QX/Cq+p79:w$lrJhatdD .xӕ j@) H':(*Jy }{ ?@Q ,BcZdBBHJjnpy/_L:ZN :cvV,5Wbfj%2s[z {p:ۅIB' sd^&5~v 7F_J7"MsiSP؊FȻ`ŖVW8YHK! % W f ia 5z : hE a d / {   ] M bH x*O.ucuUSj7 Ͱ/,;^0+oA=: |\ic?Տ(/lmIH S4bM j҈xzkdoC2 i*7NwW fvKbu4Uk[l<*SmP Jʼ0hnjGU?ҦxEz `wЌ&(, c{ %7,u̘&3'*,z +Qt:~LviSôn-I8< Y [Q(VoE,p/_)Q:(42L>im= &mYϣT%`97 ^D0ioov p`eVe/Kr'XX`OV<q6V{MM,1vdY ^!\v. v@$W  + ! ei(Õ 12 H֋<W"J'y SQf[lU%xʿtA`a'Vs`vw֠Sə{`k$uxZ`C9HAZ7+b=.I r[΢Rd< a`,\tkpo,!rPSDFί'{O tw$]?z ܴ;;W3Z23?8/A%Prmf l?E_M[g ], D4ft   & k- \=  qW H A !I Wb ը    ; K p-;MRD}d.ۥ+\34A<qt/sy@-M[_kֿ ftJ{Ui*k>Q tyu%fh-' T?@7 ?gx rs%aPe@xڔ ,j)\- L"kTuap o[K$.XޝwB (xz-;S\z՚&GD 69s +h[@Q^e.(GpB4 Z 4); 4RGbg Nj ?U >'k=('U{Nk4lpBj5BL,W2ctWyx:aE`{G ~@)ra#)~YGB>X$ff\*K?sGTwI4N7#Ks|<J4x.s7%8'pw\9DK=#VIEi8Uբ+|>[:fq>+˛a;Vi a:-@"x"6Ȉ֯K2dx$ҩjky~%00%Slb1!F0Mi3MmJ(f2BQ^W@"Yњ>=&BE(  "t=*n_ׅ]lFEu`<#@W1Pj{uȎ<7nM_)hT H\S'qjP޲ &>f+$ey;3 lux73RnL=ojv֑ u]!>>UHDK~71f&-:%!m=sYjM6,:,<pz9G-c_,Zh5x'_M- _N% 5> t{ x Q 45 B +g  }Q p"h gv /g<O,/$ ' = b  ( Ǖ i J3ן r?eo %1Z&w|G{u`z%X 'ATL:h7Y+VN5c_4nb?&Ѹm,_)~-iid/FW5\( lCFsS .sY9P*IN0 6 ?71OIc*TTpB# ]%DOV ((!u?wcmX9~vVS%W]jf;ce! 3H Go[agx5ixgD|-'Vi۬_U1VT0;;tAZPvQV{vw-Ǒmzz_\;`$ @=v],Frg/Pk }6bNCv_|QD+*R;fx(Uu7j(=)#/#|}ufVtV$DEiXdvG6SKG{5WҸO-`5Fgxmc1aj>K|܂D PZ K ; o j  L Z 'r4@ F;gzz^YC+Ai2&o q[eɝbaCy&q83gaSoD<  K 1[oL9.cH n6υ*[vn\R:1+w#n)oC"?L@ҙn] AgCF}7rl~)35 f$~q|^iS2iu'R@OD->%dN#>k25yɳ4]Dz , m ^ B  d 9%(  > fX CL+i "V6~Xd0=RLtrH4W r ) J ~}Gjyo*`-_2w#leB0wtv*&+xyD(ի5?X<<Q"URcO8LV2>2X6ہCq!W(3ASY;'%]Y{fKJ73 PX.$MU)vmDh29y؀8`ndYyC=/)Az+X)w\)>!ǡ14SRi,5U'!71+.KhCA"HAb,U"} mLZ ;_9JB=mO@ga43Rv1t+ "-/XHhT %_=,3 #]hQL&A1lBQ֓^00b]>A[^-psocOKZ:h@QfF$4im&z@XS}joAL+lPT_M - > C ۊ 8E ) X e   X j H B! vh ;xj{/9><-A4=UL t > cxPb[F#nM&}A s:jhZ1%;]aVpJ@#:!$ _tųi,K&l7df8.H>6V]G@.azpY k"0 ^H]ȬUNAmB*9c -zhIDln˧2o\4nM-UÕas(1j\|%*r e>7% ұ|BʬA$iÙh0/qzhRV3;ҝ;#K "BC#=#X*u?2{ {5 d/)|*#<F5G%#\Q)9?1γ 5&T"X^[K-4^3Qp$jK2ddq[#A0U`oIn! $cUxU])-_׀_x Rg hM2F؝qٗRӄ\`U|%1W Uk (RMVze?i*|4bOTmp%e+Z I  n > L z WbkFP%Wa o ^ = SI b< B % I]  \  l &K$rMm1[k{j[Z!cd=) Xq!F p9nU&~mEO+HEqXtzWHNS8r CO9;8F};K]&ߙMz1.xBU q:-34Z.%{q{tI[y"ԏ[T&0h$aj2=w آ#LURl"ٙM)I:wa0Ŗ <"TT1n*q+N3gcY_rrp|qт5X`2ijt̀o*F_ 5VB'S}߁(X}C -so b    4i, ? '+ 3 @ / 15 AwrmwK)2%NmY0Oq8Ac +=3?3(*rcP"Ru;ߔ'^yq55S{pCk?%IK ?.ݤ)M%`/WI͢Pʪ[G\ȿan3:QY Ig.Of()9({/lXZVW3PsT{_ONijL89jS#y̭ # = ] >8 }-]= A7 J X?  " 5 ~ 2 p8   b jJ glSK* hfI `S juOuC] dR k O UYkհNdgZDTgsQ3k)]k^aAp#oӌoPWDLś|4 {-ؑeoOnV=BO7_Z<e\dqBa{Eμg o/f{-]}9# *P|% `*.d7|S\h _,cle_:C!s0_ZbO&#`CZhyIdn ?Pkjȑy a(6sNdAْzg.4MEq= ,<NRy**hJ[`E+6 ҕ^vO ,EYy^~^|45]@uy2|KGE S@qE+Ȩ޻ "d_~RZ #I;)oUq6#)hzhKzzYỶG*^Cc=2#FD4Q\l3W-["C+#+KACO( c m  B N : qi D 8 j= ٩ E M% E_l E ^4 2 >=_n>*:5Lo?~ Rc*c0@|-m^ؘErOQƙI]Ϯ{X' Xٿ_Hړӑ71f/|P"Bqw1= crsiBfF~+Db1IȆκo|k(A6Ze* ʧvBUg Y'1?up) o8KeY +7rpk5JP$^A@TGAe>a[7#_N\k HY'il .6) 1 ~=vdA (`uKs `5: _ ^(-R:%{޼ktZu$2_mC")[X r p`lo`v28x\$q dAu 1^7}]01_5tfZ(x*WhRrUsyVb9ь!>A-p0X+J.1?xb,:u*K6G{l41}] oN?7HRs|wnoZSU8W+37BeRyE-d\'C-Y}Xxl8'   ќ Y(bl =Y 5XL(:{}(W }ʿp¾DR1r|UE .p aM> #hAr >g^>~F*0n]^U<1EX0LiEdB;$$p$5;!BB+%j*TiIieVq<ً%IE-Km wMTj[_/PN%uZD"û# F [iML*hz.d ^>x3`>SvV[ ?s`Rael{ze )\E ~ ۸ * u  dIG  3 h kn tE#D=#@ ^^fvun=W*.:߁Z"VE2J܊ԡ1V^6[/0Qrh2*_r{|$^}3ueh$;DUcxV-( -Kc[189ϴ;JiY7   T h - ~ @ QH j x õ ]>  J 6 D d % K ; l Im I{%  [m a tW L<55}|z̠Y <St]+q njL Rօ==c:C(  diP6^{h3F,}ؕG-ZLHeoe4.>Fvq8Q;vS5DB&wf2;JjAnw>@Q7r,sX!S='la**$ۤxFR'3e6eD-W]Q~$$N[`;SoaoyNzp6AJFݑ$T w'J#wJ7FZĻ}yeAp}/TZol/?sb9 7- aS&) ~:/km#X{>z=}w&zmDQ*=$ @ TR  } \ d 4 zm H , o n N z )}  w Օ  :M la/z*tkl?,s P@ !:3ig}p:A96l(qSs9x ,Wt,\^RnT80;zwWRn LZNJ{9.S 4paYw7p(M\>9tDbtÅ$<1y8{ xGDM;.0ӷK `Aep.fcmbA|p~0DBEa m\ wo~pte8% ҬkY]>.d xVQ53 Yza{s+ -(RCrG8!`&fzTR#I4=+f" @-0Z.Y'S~Mf CjbJp/qtK_c@x64 %2S:OHyee.6g7ԝ.ٱEH̒a2%6^#e Rc4j=ESL*@Y5e n + ! i O ̲ - P n l ?  o C wP 2 P I z 9.  W5J;N/F€^sc#>%'B>2b=+BztP zet`rB[Dp3fa*98#wmMB\{V 5z;Dtx6gal y>tao7rL#J4P +^q4͠j2^qE)X5|A#w:0J}4KݣE .o<\' >ooA'NغVXj:qrBM|3vX06(d"KiK_I# L@@E2:X%zn\9ItC!{pk?{rZ b]FJ lĔwͻ10$ ;% ~ O ' ! ֦ c;LO'\"`oIJ)05Za Ӓ(@JXb4r_ԶwxUG_0:'Dm3j,ja$~$yXIz$v\K^9l>%pogV^Mod{y`Kw Ӷr`cZ! ="IY,`C;wc͓Od$a4>  kFlF_+gU\Lo@@z"{Ew6N eVHfɔ } >> 3 x u  s>m#۲WjmEhÕ9Gi3I}2 04c ^#ok63%wnr/y&~! Řz [QvVzY%|?&Z_^#jNvtt#k[`ye'P75#jp,We%iPxObɹ! $1PmR5>0)ECiO#/2"KeO#"Y?Wo3P~^Ensw<4Ibc=J` }+\ƽN T;vۋPv/u'o$)_x.C4" 2ϒ';Q0Kz y†>:7{gOb4 NG Y v H  · ;s a { G ! Y~ ? ] zG  t G X X_Ř;̺_u6to$K>W&Jj4x,e#zҴ5}Z]o˵*8̴f)w m/78{BouW}̯`'Jr GiW+ z;T_€GR}N`.|H6ZvT/*>_:$B)2C4ca}5r.YвDR^Z_W3@L1N‰f,<M|J y<BR?yEcH# p*ߪx3>L9aTث\(Io(#G[pSFIi"w.;W)m]H  0 |I?Hd8Ҍ;EW7P2%'F.TH'A#..a C9j@S8NfRuKm@~. -Ge6[#]s OP:"Y%5}(nl=4KC{'(B F_YW=~vZf0pd+Jgס y:v 2&U {  j ` G z / ( oE.Ja Y yUt O9 :%[| ׵2*eN0TjW~@uoc"rF a-0nj$)ɕ~Wx(NfrP,pЮ/NOER~0/6psQ( +u~)a Cn8(hw-l szL%&ޅ\ol+Ft 04]M'@h:R}~aHo+)3 t./'cn]ˆQ"sl|G`%*xw|v{u$kpuF(r7wYZe2 h&c5g<}EC!O]A= 3uA 3nIbjP H0KLqhu"lb1;H.Q=!+y_093{m} rT3ZGsXY3ٸ 'cDẠ +|,TKUVM^ex"XKhTΐϙށS=V*m#T\M+EOz;4Vy2#B0 J[$AAES4Z3vAn!m1 i=IR6~^cZJ$|?q!LivNլݸYZZp;'xvBW,E-۾9Zl vuk@wIX7KqJϪogwm+˞/rj/T Ljy?ePMD;$De?E*O%9v!e=&:&tn"~Rs\Sg>+_w=dWrl4qczH^ Dg WA q+3"Z.PnOGT`&=8!T_ x5+6]\VMKbǴ+E-3a!Gs6#@BnܸT72-1>*]']GdW|j;E R" Gr9&",8b{gK'6Kp,0 VGo=O3#ʠI9?uQ?0KٔEY*-\x"9ɖ9I:\}e9SV{ 4Ϲ8) [ M b/ { v f Uq 1 n! m A 6 Tf  W (  { ?r :A5 k^ ͮ 7 } I 1> D @     P2(U#y)|/B?*>X )Ns}PI%@['t+4xӠVr6EU-#op[CU4q?Y c G74 B\T@SD|ew8қ1fj(Xbd )o$ZԷ%+~w&36kHpC5'? 3'+]G+5s Jxz~O-' Uz.}Ac!kS'bj|BybO`4iM[6xTAZqar.U F a x `V zQ Hm Ƴ .n &  Q DSW! FX~ gKQˍ`ΖHX >\&<PC6[=MAl&X==UQS$%?̫BIA1ub]OO^GT $a#}=`"deg,0xI\Ubkj\ jc2"M5P" F #WEsTu8 *ir<1 RC7iX8@BM%#5"*gLk [40K=M;";- R/ _:4l..WrVT'vy)HkpW#??3}$iA_+ .[=,9 2Bh$r<8yM]ռvP'ݷ0HV!&f`ZqkΚ!8cCn Ig؈o8`tk=o# #~h-&9xت/́P&D7cʞƎMzgŞQ3a}R&NGf\ƅ" MslkR"*%g8*]mufB$NhߥЋ ʃr7cjQr`N)#-;M f-UX9fKN7V1/ SU! &nѭO(^e ^@,W{* @ #k:#;.yv"cEI1'j(^t5Nyhv}>too :{NeWU!c SXRkpNd\:]'M_7K7pOw^Y%{ӭh>S51CI-Ofd!1!~Ee.@R~_&bb.B7FZ'oDvxs`G.E!Qyd .twv.8TG f+JHvJnF\" C4P;?t$fcEL6Q{k:M0 ^yncn0mGV_'|1{]0K^_D'h.Ne.QS;1EE]R|ڒ:ey0nsW ֡Q`_YkU[E|A!i:<^l>\E 2mhK#|2ǚD@ FrP31dI4G%4tVQ Thh52kdST+zg#)"F;-wWtn!A߃G <1|v33Vg]J}z`nWmS[I3QјgL4P2pk3l2)Np kW$'ODs +3,H7)ZP A/RLd($A܀&<iJc(W^A,x|0g9" 1g\V33~& ߁ GZwJ9vǻ 8h < uJANM3>gk+ F*ayIUsG fXi(CEK79dc&);<5<|xWA&=.p{* Q n ( e F - C`Kz1í"Vd '  =CKo(<:QOp^<*rpMu9lmC+J_r?5rl} EKNlJ\ecEy!1W[-u\Mg!d  fX4:lXL5o(w91O,V7p+q?jS1Y8"C(458Qu;pMwG5y;JnYhxd &N| (&[yPC</< ! b0r.<y(ή}Jd 8ĺ M[`Q]E3tt{4T2YWqV3 az*XhxM-_YTx8r*>eOo8mK3?>k;az9y$|s.WQuRs m)z { N}dST  ,ߓ.(nY(N70Un J[B|kKI(d C _lr ׾2 L5 ^B =)&'e/IVta @PQ>s!2G+#kyL5,05/@?%:0&4[OX9ǚ8r"tGL~e9\fnj< $(}^^f]<]QX!$ 89+RC|,m}g05L:Z~=4{K^  -oYS y[v13qh,6R;p 5#PBYAwldL,ZWB!@ zJ=|EXx_8nHP.fg*=_7Z)Mى+f}Ox!BPz~@p?wrbDz{.,QwFBXjceu%W&_+FEyKqU-×gKN%1o`OfBHc)_,̽ܒֹMgX_,zFu^YEpjR4ϔw0Dė0V`^2 ~wqb|Zљ|)/cU?Y "wV o}UBFʾjDz= ?b+2 +}g`&_l/"4*WeB1kA*h'y &*X hb7!z>YR6Q7g-N A#?Q)U׳5xCYVZDoYf`4qgX;F<K@U^~ҰS/Y]qOq4_*vO81~pX?5z>@N;2 KDW5>y}=`[B ŕd }"m`:z&e=7D;ԋ)K,JP_/?kL#5KRSE)Ja4NKQaDHg*k}-bL8{/=!#W)Z6" .32M :ܦF*_3UA~P1 (~i6.|߃8&)F-,)]aeZ14f KD%e(bIyV50{S\.6 7 ( E l \g S 2 $ T _z3 ? yn ¢ = Jh ,9 b g  9 syQ $z%ue|l]us,\ qXs>\ŻKea` ND1bN2DBfkQ<' h " Ft[7iG_q @Y%Qe>;J9S ]nsX1$شMsQ>X4x x];*cdRsu7+vCtVs z1f1y;y CYGZ9f`6~~ Uq+^zĚGTaz +]1r9}: R7SbnϑR0KFh5L`@buzxh}>6tmv6]" YV[T:x PʗZՁ!5bmPz"RY S 8(PK]#A[Opmde5plCC"a Nd:BH 2&emCeryGGj\w78%X#ksZs. wli ? @ [n l%r\jmfrg8(zeZ|bS<կ(/& &*n46b[+sGyvj&S A:yMٍR Blnp^LXiJ)mX<=/\WW0jY3YVf~~F-ߒ'.9.0#"lgmD[cz·Y $ˮ ,I,FZBa-FUZMH9oQFl/4Rrb>f cmrI]-Lvb5Io"sCY , X\sq ;:[&hX4ev?U/̈\}tw.IH;36K2($-'Ȑvbj!6"CUB^ P*  o7?ec}HzQc`^&f= 4JN*VGVJaԏ5U>n/U)Cj7kZ qU+QҠZp;OVh$O":8|GW]9,6@_+:՚'B#L r*&% 41 >_  u7V&fer D3%#|+>bfIjmSfN>1Q\,ͣrzًe1i,9 ||g#V:RW b;,w4ĠVmN37ezGC -j(Z",oWMOy1-.K)!4l Ff(Ef3cYyv6db{gRZ̮S=%d@xeKO?8=g@&S|WdОu%J)i9l.?HoH*Bg87`X Rch!DhH`\od!~so7a+x$$vY mZ0_BϊH<BEDoX1|GaDWM`zw.46c5"E&tM_T3DaHKxc_%w?H'eXUKqܴ>\fVHvLVZ!51\v\7lr;xA_kmB{w\wkskU ڍG16|7@RD2CCA ]RX v݂HB G 4VbS>1 bddu$h{r tF6Y{Fm!XZ $/Vu%y)C]QLղfH_<_nun)3 W3*A?خa0]CIͲAj!'04o6v!g2O[6 _{ -])4&mop&cVuQUdgsDUh]wU qLуS"јu|%y!3"lT5г!yŠiXoT%Rnb22I-9%\Iu_*vx\4y+YP]0v5.8ޣdԍ~]h*>]Kc.RX(}9GV n&S}Y+gPU_ńfS8ukԣ)o{%BqcPntBXV:bB78_o,5rarwb"4p,0 c *a Y O * @ w  =NX `Ң 1P  IӘ I q EG) =   \gOaF*d v~Q/(lGI`^eVwcaM9b|Qɛ4sw^r%%C>>_.i#@ IO(^Vhc}dAZ 'gFRm^f1gf x6#t{yvy?OHAibG'=M^wSWyKd~͐9:ӻRY.Li/ZUE(0yAh[; 1`l+LU/0d]mYpW^[cmr4/`L$(z]`=0;vKX̍O95{`]tqR?^?=? 0?PφEWPnr ,C*''Wzz #gLLH=Mb^OQ]f׹4ToL7|;Uryq4mgeos8( i0} )7L9b D;?Xo]):YxlHSTO,rERIw^N\S8x|P74FaKH~NdDi[ UEiS-%* gc 2zg;}-UI]327B6(DD "g[# ^)j Y'_jBwVO  W%K AMq2Kd: +qh>fRmj_RGs!RA Npb]K63+~m6Si.Y vnW3g.Q,-gZs]MZ?8wL P, ^fsl8Fy69L[R&hR_u`QKEE ug a#f_|\2/~M`M;6W6hm XG|cǍCkZ0 =f6H<;Zw$x@b}!ϥ/o T q>jJeN?B?fyTڝۦMG_5`@'#tQ)NLi(L>>|ll.rz؞p#F:HuD gVU4fLOHNQ,iAڕ[Ŕ _y2U6U{}`yipI~]N҅)rhtSOT0.I3bߦ:BǩCOM%Bd?}#4k Xk=y.i¼F$>~q'] !_Ul!YZX$Ș5/ml}v:vNADy ?*RQh;Zo5-},~^άUiJ1-i88,Ǡ b<sk? |ulIT9@M0osh.~*m1eL~N5R}'WC1{48(jZ`uA} @A"M+84/_23fy-.jn18mEV~D?"^#'^vt#LЈ u.>D&$#ja<==HKW%c6:R4%ȵ'a5@XLTmsK+10 E8/<3SZ?ĥyCn*@F/(M/O0:UfdK{~,#6>-}֗6( 4!Bέ@OXY6YTَZ 6A[}CIpl".!`?:<3&WBV: QDBftt~dG(l|=βw mEmj.j^L”΁O."HNbeeFP\]g<>UV A,̔7xA%j2J_rL$ ~Ɂ*Kk VU@SgjO!1DEvR>M Omr{tG}};- S1ΤKPG'aځ~mdGl>8nC{^ kZR}T]>"aW&^b_)W{)[u~~ 72 z   D ?.X`dt eZ 1" q] cCv] { б| . -8 d! Le% 4oT ƚ+v,Yn@|F*1j9SXUmf'yDN V vO^oEGeѬt40JQۂìAHIJn"Xcjw^7Er58X1N2>I.YKLe6l 2ym'|#sLğa4>7YG^&*@-;3=i^ eI^$aI1%-/k^"))jF-2/e$2A.**n gHk@or[!E/^{rCʃ5kkm1"FU[!zƐ%Q*^;@S*sL6XSr[0k U9~vggAP)t`@- m 9v|+NIJ[TP߉1:!'29X,~= VzeY`],M9>[dYd:j{Ɖ. j!OB(m`8 dE[=W`ߞ^wXК;^T/9e^d 0+O z^lZ?8N:Kendkf D]RxBr2$Ib>A=p`t)3YyO oFǵA_d\G4CSj!}@j{4ő+K`{u6AAm5|3^H} (U :  &"  ׁ " ,YN> q wL 35 @f, Uxv!uwơTn%#=Q.ei7s@Tx{= @Cvzb2KIp˂ PY;g݈öv +ZtQazkAohOf6=ǒCvցsþ CC3EBCSsb{raRG96աЪU-*ɩiSGdWf_p-46]ȁҡA4Id`'q8aōl()7#1<͢#d+"_# G 4G &"7  8 | ` <jW 8 ~# 4!u 4y8,k ]5LE*pl^+K,@v~+`}E?O:B|'ՅѶ Q0D \9N\~~lOf~pNIw\;W'0JH::CoZzB1>o2@ C)'SY}:I(2d<(*ص\ j_\" >x;9oo]4Yɵ#5"7ЌoP` ldB9ryAc{1@J7IG\:} ZRAgojˇ(g)D< g]aLIS{N84wX_@a|C5 mxZDj(,ȳfӋ%A!͂*_rEWUxLYz#36l A]&N!d{)ik:9$ _DcV`rQ ݼbquS9);5xH Z> daKt9x4\w7 bTNjV2ӍܻrYZXN9nl`m@?O\3)P%^Tx@+rqm@y'wrw-e2r%CkyǴrO_Lytr8-xp&;3!g{iQlv_B+ePqq5#J۳{VsskQZo7 ##{Qi`*3Ktb02ѯ(C Sjs?v=F^YJWYMƹj5 mC uچD `yQ{4WzW%1Q">fDhA?$^"8ݶ8!%l_O%P !ɄC'Oј &O3qYh!Oф}˧"@]pzQ|nRNDyAq+. .iq-0|[~֞@c/ĴR=>/M2Lgc9y! ;\  gs ' @>9 n /+71u " oFO ZL)8Q0'vH X -sg l[ ݃ ߬f_|gU6g 8,zc9p_DkU%zSOgFÏ> =b~4Uڷ-"rj2_ugS4QK6\51`c 6<"i)zjNrK!1lgPy_Bg PJ/lI^cEjU3 Km8ʱ*K*-Q$IYx)ìpjfDVqreP Rf!eggPl?!cH, >{ TjN6?e ^E=^#~zs72WjWE=>2B]mZ W^H7]vA2&da7l*p:aa}ggl?}_44fq jCQeND9LuhMZ\$]2<i`p9^<'XX !78m|‰Y~R=˙\C1`#ٱ/lz>b >G,B)G3;!!j w"bactggx͖!VOT$v=kћNoP.RhWi+;Wa+>Z9|/,.+>|$fn) t} -R Kxȷ@{8qZTֈR`y5"(1HgZU;s ا  uRS *n4] x| =54W ))^ hF8c w6  C GKo4}L3 43;1\dLg!7d&E R"=H!kawk4f *MJ?zdϺ)71s@ ,l+NǰI*S7M9S$^'2k8A'&:M$Ei bc+C{TI\w!U5ڦp*ER\hWtp\P==T)MY;;O~Rݾb9r}Pfu;uoD3P , 7x #3 M&ZA<3 E ]`$9Ěg{bq@<4](1Y}Rs<{V@&lA'Ao%Tmy]̑X`dF5*bcg9)rnFc?8QV.C$FQD25_{3K}[g*u԰,W[o}pMtUTt{=L)gƍ7~,W8ѕd;Ps>2;L^xo#زP M a-\ʻ..Fa~;¾)%Z>J*r u'vf3";-PJjON;kh_X?Y7veebiDB@cP46g)=_#o-nNUV-)lsrt}@a^ @b u!pq^B&]<t[k]:aG7 ` ͧ$Fjmo,ZCYc"5}$RMQt-'lKw :9ܑ+^*uu0Хyʴr ] g__WO8\],(a{̜; lGXNk&*YVJC Xg+MSf}5DIPRnq<Gl#-PE~iW~ZՐa:|^j~yqyDX&%o&e~sa1Sp v*I6 '2h&,:fJH5F<[(^|rlQy!ڄ)UFM40z=j%e;<`D5 NqZLmxY,X7ϐ jnXc@P, #k7ыf4~qNEx9BsU\W7rPvLbdZ\SY;\3 z]k»(fmRDon&˝8 ͏j af\@L@|dKSP'"!>m>l<A4ij}K^F)y5UX^q$c[8GYRVuySyQp@B 7E-$=[ej(z|}V !0E I; Ύ nj x ^} k l -d I _ hA qN    . EJirql 32Eej3Iv0Z79Uq(iCUTd}jSz/i4kgu?pq70h5&qF3@$A(G8bP(b*?Pp`W1e<PDf[JYƒ4*mYsXv 2Yם ~6ngxEbXaXHe#/ldhHiy 3s2.Z< ٧g;G+Obb->'c x {e9xHH>6{W'@ԺSlŭtooG}!qIqa WysuQNl\VĨ|#)ͭ} ;#CX "0(NQgvn~ξ|;9_LA4 3B=AnDLHXԥw|,(0R7}0a/8^ Y[E p}-: (oX'TO.^p$h@|Y ~J zKkl)5:L =Ol.vv\_M 2SK:/ t;$1lò (+%XJ fg'ry0}X56}0|L@) HEم .'I'qY.2znjh$;%W'[,LCm19J4$F-}tLxͩy*'ymy-@.@`./(f'1yF_U*~_( GEi{YSS5b23)Esǻ_2FYw1aE Ɂ ̅ {t!2  8 U NH;yR^58RG$J)Kb ?=JYcc,X6XZN%(lQpyD.ңi:"nzZe2mt/CllhEFJݘ_O(BJ"29]7q4'/n]K1U7[fB.4+yXaEo( 2 1Q A.iԨ>?\<u%%2ET|~Cn!/ظMǀ&‘I k3gɺ8WK(-<<Lbfe@R@ "  $dBIO4]H=bjpQ =q~)+!#u j} X?#Jg R}3vI ^ <g @P$Y'i`p (]#VcC(5 Ja"NR>PfVvmy_7?=O'I)y?{*2I2gCqCKxC Z1' tFW3|8tao1tntE\EiQs;Lih8y'8rlFGB52 #[F[Ppk2:'$.Ҽ/){~n+*\0< %E| .w^7s \{ ; Oe$76?pmq+$=;0-CID$fx0vq[zmfZ~ E{ >^cQ!D:r I&RbLD$aǒ[_Y8j2r`UG@'ff{c0RfQߐd"51k)"+XG:NyK۞l/wRB~o8)2C) >(Z?V*e҆^mlA=Kk{Rc8[~K+dPQbeN f! wf#;Eݬ}}Lq.sc6~`5;ofJJS'{:\\${[g!\?dP3'VF|O_1$@Br558Q}XO\},VL|4,| *X][;5}$ 2Qj-?5sI> bC6=; m~y)]lTXLr =.vPQʼM6=X eE W?&j2!K$:U]ٸe3ںOӃY՛T@moukDH~0wysю*46Z;ǯtKQX.'-R%j6w4+fj nH&qR24%%8%'qTpz0!{>$,30bIJ/g824yW^1\) }n`)p i.S*}\7Ɲ 01,l%=8qJDSv5 `C2Xօa^0e/Cp޽j]\ÚJrC7-ŒW49x?aԤM+j|^{H܁q CBC}jH*Yǵ1L &(A;Tw.?u@V/_<  1d s , N ^\[<h~P'r J[=`MEyϚ1 *GZrHa,N& g>p~{5r}4[4T==Reu>!`ԟQ")29:w{{+ "!d}hw$1 kZQ#(yO{ִѽ&=89$@bvMD&:C~H= nbU 6-XY fY2 V2OL @R.>uA KSҩ-ow7F  t;6 ;  / (L ~lO  AIE * )E( 1FJO4!E84vۢ6mv]e+O?f<U4dm%3J/<(yɯѺ-My51~b$Ư9y!zy"X.`3 `[72`08v #-o*TO6pY] Oi=)2i}iP^zQu!1X΃'p{) >_e.ouWwoWE ew|; 5r`sc$ yW73'W[Tk~j@v&o-7t'oGPpQ2|(3yg!Q^Q3U3Z#7zj`W]8JC1Tw9\xV6+J*}YsLQ"4? y'O (AP(*`1!.݃.E':cdR$!it/V/4?OyesQSW.V0#PRHj|&r͈=sZ} 8YCA9% e:Nx9@JPZ?7W7/..tWƴEGBj{c{~?%.[X%fV؎iM* $ , P 2 -  Y 3 Y  { Ct<'2,Yc*SDh&+cD*P,OYL|}62F(G9 Pz{b2R Qv"XMu*:k9~CupjvIDJBa^hk)φ7W!3d5G\sgWFiȆ8O>5~`/[}TB7 =ܐ.!MO>YZX+qd?jӬm:pBs)Ix%UF(ÕuE{ }WCri+ ;!vg_CGghX])RH/СMxk*(٠496дoUq!nlR>; CDhQiv{i+~@p/v/F!<S55p8bFb߷?QZ."WKXB'~M.qgIR^[El@.S ?Rdr= l'b+B'0J*S*{ qlnh(ЏoScf- bRq 5@^ʨDߎrmp1q9ps4DÒie9VgplƦ0LHa[>YW-\6TIy6 ,u|PR>T>M:ay^P.@H8 iR5? giRKSmԥ{g/qn6S5'][|ʃ62Fo|8:8w)H;`L @eqn) 8ײŤpImr~ɟI5:%-s S rI!3~5(Ey8?i-L;AC 5{C(Z56}yFd$-T=24[rl"Mj0׶>yZ0\ B;RLrm/'WkA"J҇;= hC9Nh6՟ c?2g/-(7UO$j@X.lzvфX0:(mĸ$m^!|+% t+:W!*r^@_oЦФ}  ў?F-&m#,{E$ìN =1adyssu*<cRTMQ6(F? Zx_cSC50&%nk]w`6֯G,d2ن:A{-5J}z 7?jнo z;/15SHPY\\Y/V,?bf}z ) W e: 9ykC ;cGs/3x iJfGXP| }hCIR,e@fD.#DD!&1e*da1<d1YHRx 6:p1&V1f#"=sCAK#5$~#>I i߁DS*u<7: wܗ`{m2 rl K :aTy0ƨ we)z)> k"'oPio f4 ^J[;kDbT1ʑxU?PJNMzv~clxiWoe\ف>/:"}adO*7;l^"U" `C. ZG*w_A w#!ZVq,XQV F^bz0hI20bUn ;d GN-1" A VrLn"|=J)cBe"7yCy@ihDZS6mX/E&kx'^V.s i,{e \ _\ ׆^~LbSADP$(#Ep*KQ'r1BXjEwmb+u\eã=9O>;L&Q\4Z3arMI UJ3=0?i'Kcʒs iFrj` ^R~ 4g*_@sTDcE4qK?l'IQgcׁlaU]vhYxsb fl1T`{,mB!]> : ou-J߭o &l_T5_\ץJ^,gյH L|FwqHFvD:nv yMtPd'TRQMAN`2c#FmrH'YxZzOEHbVg%*Qx0fz (@V,jf&! 0!It\kzbb@6H#L8mw!2^;m;n[*ȖʹSf c!Kc6J1CcokX(z&B>E{6ہYEi$U Pk54gښ^CLX>&X08"$`2P,;LxjbD0[H4rEw9o@.swBj .}+gwqk=.7V)V'1|/4IfVxWvF^ ,bIT)d\-¦NC ltg:o\Z`VIeh. 24"ȇfگ~~]KbjU%p1W/5B' 0y%9&?UK>]+|vҜ]գP2&+]BttKA~ EAɿ$3fwIY8dbq,) !.Y<m7= <ީqvK}W  0z,?dC.TB5'@ oU+ڌ#Mh^n׬tgIU0"E|^RnöfCJzq& O{-4,;C\4}bFXTH?C{VG)&O (#tV0)SsiocXzG :{J,Z\w+ I\Y^F AZpeѠ7zrځ%DRZ?uUD6S,˱Wj? VFA4M* a5u725m8oETQxH]&hW J0OÊJ֞BA;tuI"yod" ״'8cbz_gg)Qy<Tyψ#pt~q?&:xev&8U):g8q<8S|#0B_0b<@Ξkm3`o7i< k-jw z09|-`7o-^w Pb.ţ/x_ ._>N~ yE&7l3'bvUz0z<2G+Do\:GxF*X+imR$>p#{ 6)c'"=Ĩ5 Bj92\=]SL}w&jw-eY?2!Bkw-6?@;sz5&4\SMFE6!܉&AYVK|ǾtRX˪.Rp@h!uz/r>`VIK=-3-1EtfC5K eDSeB A ^4 9M4jBguѣ}Ƥz+Se"#<Qag*obF%iZ_8mPV.Yh|7cXK?qju <3t&/EG@0Bh֎{@c{u0l׬<%/} A A ]2`a)"w 1i>TrUmxQ&Ʉ][ڟG&ļ_J I< nH43 q`Y:BWEm@9a.'W!C_ dxM*I:NJFh}K pdQc}xm#wMQNʍ{.0o#b ˃Svؔac޺Y$6KK.~@pT6rhKc r=8_mG1)~Q@KJ"W*\ +&UCh6nkFV'Dn?V6NYB?mzyT CS-/ztXxM9BPW*QGIhYBO;$M/;>4gu\ AC1giLNlu +dE*D Q,m8)yMvf#QNA*5Hb !T8f tZ< Rϲ Դm#R 1c_*UA6ovN!"s9zG\>XghSnK~~3{?Gb̈sp-W9?4@@ )_k 3b_x(03c#Gk/XYq52KQu|*7zmĴmS8D<~*D:Nl|5(=SB"_81B}AE"Gnű`gxP]vW}llnF>Ua:cj7[I&h|2o;7}U;XLpl^x `}xsR/ǻ |DG p5*_NlvY$dtih<"S&%Uq@<,4MZ* dSWr-p{p.)Yl'&={/8[`d9~&%\ߺ~\B E?pNzybpՇT:G4Q 6:fz)MI0Fͫ/`GWZVPZ[91R\sn98)?dg+VvB5THk#HZRUؠ)slJ#ilvM5EyšZ o1]w~Nq}DZ,S1t&d@A5*+~:aԬ"VHXA~@-nW0>=]>ct76d F3*;/}DP,zoO1A_7AϠ6Sea(OүM' #?J[|3': j@(ӳKhڟ=q` s4 ~i5]|/ 9%0)t AC S+U`5b4eFmd53T)2t`Yp07VI 1~w+!V V+7.']6An%~ ']VYR=JD{ meYI?nT:,E+)0tK77*-zrc#S9ח\:߅a1\D>C$2.> R2OE EU+ŵ10fs9$_} !3;(N{Ys ="h,vbt<U4J Qjn |S4Rް22`_zcGLJa{_qA.<=-<?HSnL է[DdWjYg XSC s h}po Tm\0<b$g_ qwV{\(y\Al fLY=(^ڗ P-K=&o^P6YZ. vLp@7V+:]JF-}G_R^7%mkB]?=RF[Qp<Z[Y=s(M.vT3E@ $boG&O4[ ;+]6ev[7QaL8b ]hN(a|zd~EwG&{x9@:#%z3t,jtȪ9!i+ eg@T7nH?%V~A<!z)R<A"YC &:ƻBKo9kmrW'&QQ{q,%m9d˃CPVP%c.M/K8dPix!U<@OM~R­nV# mgQK`?M "mx%+:V.Yp1"XE#`}ATbY` 32(RuU6.W#vô)V}+@#:LUhu[өj5'w[_MrbЧb}%ff sbfn4ˤ9LY7:-ی\Q4p{XΦ | T͕OCN3vAl _;jI=)m(*1 `܏fnVLSVJg&!>Jea+=-Fz [Wrr=x^TjPk+Pm5w1*%UI8 9Uܚ$V 8iT.%4'b@{kɓΨDqP^?)8^Oe'(l0JġB +"EX4z-p1VyIy =P pD,,;f'y_r+ t߼!S.2h+EdEލؘ~t pPAPdF\{'`U ea}cS\Y1Q2x5:[L}eʝrYEP$Nm2YCHwτN|I}W#"^0@\LnABC/&HDҦX5hN('/,m +8a(_@OTL*fO-q-MANz?&<~N Qn?q7Jf'HKV7y4*>Cڻ#޳݂gq_z^;Y?_%!HN+n?]r^VFvGyNw<rz@z(oC!sq a@P8_+ICW;؊Ό7&epWC{8azQ- ްUgtkc;[uG_NY|zL iu{@Q@=z0!}H}dQoa(nBZO?cci^zDVv DvYM|zt-[vRuSJ}( FHNZ_+?U־kt/#6%/^! Pr]}8tqr/ϥĘIv:"w#3zde &Si|NCmCQ IhH =s#P׮I8#ٓ@MsЉ}lqW$qED1O0 pWL|ˆ(R0i T8Aet:$@ /I|S,R;uDxwKAvm ,By4(:N* -:[_ċ+rF*9*QR?OIx$a#3z'{oe3}~J.WҥhD7]('B]bgM.}d3!:&$;P-0 bF$ds(rhn`D3rgaXd%zuni'fr5Y8VSO2GG 3E)$m~]!ip%) a8*?N'  $2 UBmkDW<8tK:vhp|:4b|OL@g Yq?~av8Td:vI-PطA|1H =׺2u)dE*qJOzPJŠ+"9QWvC : # m\j9_y3Z G~CcvN*~p+e#_O/GN.>lpR \"8}=g1Z?+67c(O[W0ozT~9?R)Yއn{6Դqk}Ѕ K]-, "c3ȏO!;Jvyf aș#nH[cA-x7r*X1}қ:;p}YM&UET)k a,_a?*}ed#>sl.y*lTp)`]*7VjFlwi\[<ߦrs!S0$T| {5>|i:eJ_Fàre<1 /7K3*r !7tyaU DBwHA ?@yu)6 {gK#vMEriHb/7jOqoKd$2'5*ՃX Kz 5 p^pOEA6$ :~1[D J.4R4L ?K3M]V )pAt7L9] GJI9ygOsA8fO5kw|tRG&8kX&TB+PpCi|b?ըk.Y&}t8>s 1 d eD:dM3_ Pz05;MsVpGo~{\<<*`R.a“?@x^PP7 Om~WrD%T16R~ y/q mb<<26lЪ7abqh6GPi}k7Dd}m,(,̿r+rRh@r)Z^PSMpTe^^g|гI 8|LGg>(s an),%$aOMg MjЎ7J&M'VOvwjS|K)<90z#9vUU F4 \ }:Np~~vֽ"R_7'(@l(D7S r]*U rjRp~|[|o=g.]F'\Fg=*fwafnV88XmUfF3+Sɺy`'K4w>g ARǓ|Lv0n](/iu j)(R=~t!C63zthZ{=[=PuMWG+=akeE,Sw39;ZzMf]5}n^L#}[y&T-KC"D&.m g#tS:q}wT'lqG3c"no'L=w$;ZKIi{o<$&l[*[dnOSvDn"P#U%Hl*2k]bs)fVN M)ke2DM$F,NO(Ix?:iuS7Z\Dz *f;tKs? YdMD=Mc]LQ Kh/y0nG$NohoZWGHbn(9uV=FTcZ[7?U01Qž2mT{~3!yNQ2FʌFD{,zk_lAb-\A1 n'Sdgxpx9l{8Jfs]lQDрb|/_" BdF,ݤG 0ndw!t<,~gYaUD:YZhZ ˪|8hlGGTB6fL:XB^]x8Iϔ!`cqwq} /s`CY/h 6_ݘ~"y6َ#(Ut %o0z9QbL k&o!l͟.S_|@af'_3T2I>#Z)-AhC!w+E2H[ `P;<{*+eBegfZԩQ*p(Zt9)\2ibU=dגyGXUš}||Im9U,OF6RftT45k;n ]W%=(YLޯ(k=P-ff nojL)("X(tZ'g?lIQ&F aSiFxkBc;'rIh@s1u\J3_Fw w*[ Gtwy*+/hH;z &{RzIK =4C2)(ySY>ߦDU_i%nԥv`9^c^ b0uyu']UiMsN@2 9FGaSEPhڽ/ g !"tD^  F+`f!0cYeMqH[,9K?b0,(xuH'Tgn5u) R-׬7h]=o k/JUq3L6( .z4+>#&ĭQKwbiEC bk\w8h`PF ޶/(=G(K5_{jX/m2 HȩĀi*'A,f;:DXՂĮ\C)Yh$ (3'V~nc ~;. dKݜu{5~u\ldmphr%EU ;}ɱ9.3 ViC;_wlhqiIe{Ѵ Ea1$nD'M(%j-qlvVJd43tL9# 5=̭- .(A)}an+? #96|tg8 [?1<'΂hB&a-cy!5#@r`GEn1 :G+jkFgU3gqԵ;IG$Nx/>[w<~>m h7FA@;gQZDӼsRrU\LfijDy(K5Yy&J1P~b,7A'Q.@3N-"1E48@m,.V¤.7e2^CV(""Lax_}B'RvARsYk`_)c4 ~93}5vGz Hm\:CwVDҭ%AEk7 #ZYRI*TVϪ@L-!SvÔ[q($QynƇ7d|8! cqNd kt$fqn5cgؘ{JfW9M?!2K]$a*{"Wzh>#s@Fp[Yxh6_\wn-H?m,>vI~_zc5R_R/cnC]>2^,JVflb]}2a`}v zI p?b._)[j]Q=GD AZjʚ%C|]lZX43xŮ] =JW&(B4suY[N A>$NK4,̖%9A:aB(C P~8 8[GF}z#_[  M6 i &A/3 7wda._9Mpv3$n`ĐK4'm,. !ryg4i3xvD/-C4@^!II=eoD V+XNB6 FeUC>r|!+>O]Pq,$|h -+;B5U7r=H\WUJ6Q8W&LB\[BM#y5D&2/2w5 rZQq|Xq*~:N g$VtS^UhQv+t%@~/81@Pr<[M[Rs{!I;3N$F&yNTY>z+I7#z-Wh.]^ `8~jBjt"T+QNBUc3Vk$+@9R\vPj;o_Thfj=)O6tA,;^%m"D]ջ3weiO=ml_"?}c;kBi{fE#iBGxw|cF!ovVnNTg sT-M1(Svv؊Xd %[!d mz?Omj.{o%*&x^r? eo1 5s!|!-+<EjSi%Vt)Z_Nf S `[ st 9`+؍>14 R%Dti v *8z! f;=zr{X;+ F?:mrh&t Md}R\%=ߟ0+pˆ}bW|$rc(Qu(B\`K d5.<7 .LSWũ:Ek;`ޠdEH#;GbZVY)s $j$Z0VHO?b15m+qpxIC_K [`)FbI&,_‚R:Jyp\4TRt°|5RV7X,GS+< [a_Iy$ckL3= 9BK`jv)On:LMk7K"u*[V>{+2YnXoPvKxuca҃A=H6ȃuEZ|xI{cOBjh m7͋ژNgNީB3"Iah 0sk@7ZA-MΣk@_4>-oԅC4x}nv4(]9O:suv=3KIcڦ.յT7k^X[I BDp`Bgnԧ BPj_&'LI_ XM>clnCF,;!blݹ#O~ @P+^Jl(z(xDpUI1V&?? Xk?Rat.f~e'~"D5EuLQ?u neH[fGJs$154Pi\*F%IȌtHj/I.64W?kul3idV35O\ iUE.Y^*94T)4! hnkamICs,Ic ETt[QZKBCKM@@*Le6:AcI%ш!&2#zg3qB,3d@y:vDJQiLw8::D#5MD1ơ;7Q4"/eUz/i^s>H`FxkL؞;wGO &W/jKܦ-S]^<RIX2z@NJ q;uCoEF_R _$yXSWC9;3 G3hOp,(CRV>6Wm<x D35K}=LB+Lh#o,KCedbq$Á ø2(l+ O˂jwv LŎۮh'D'?zgmosb~vt$)Tr#UcaN(~~QO;P~ۖjA6T_ BxA]H }&FUdNV}otLpš<Ķ2~O;X!WVETqNYkyx;qC N}f*JP Hq!Qt'Gfo4ajLC,##*,6B 6~o!tGKeI yԝ qW `:\d ;4fC1ЅPHkNm#o(/a('MCDIMfY*a569G'x0gJLqE}VY SOA@@:k [LY!wpPwut3sG)ϕ,6b[_WR@LO\.6mNAzCy+y/1I9\RU]< B>0ʽ]Bh3at'Rke~~ z'qZ3+6?b)EKk=n6G,@}Ae< AvlqZ9s2=&)ߠܠ`@GH7}/W;A@M:5BLxdWqlI Gn#Z;{gJ!r t 5UR]}YBP@'&NmpIQO*HvG` IS@5'/=Z#|^D&1SҷW{GM Xsf ݙsHY4{-O<-yct:ȩpdnrLyo'{A4 Y&h" zpaL.;Rv={XKO*З0B_;#7iex]DOyV}'\SuW3vj?=\dA@uc8:-$)jo\yl+ VRg ,Q8H-YH( <G X̳b=|CJ9OeyP@1ʞ:hZUsH>o[M?v,[~ ji&|ǩ:tt}h"0'wgtI1 l\H;4dd8Ճ1Y!p:n3ftklHj-0J-a+ibAD"Vi vre֫0= b7!rV?.sz)T/ }`m1^vNSRuz#P*i~oW-MXRlx)piVmK$`*9#$ng')N+;6dt 8G Sc_U_xPaa(,,m:|zw L8"/"? 4U?)#.>~un&ROq :2($Ia'6O% x "DwBisBԝ9{LVN{5o!An* q%Yi#W)|[B[sOty=k+"}TF 0/ PFa7$)k\L96Ls*Z@}vL*GBtCiCG1s1tM}; ߏ%+&Cp7tis7hB~|3 (L c( F%yH[K@{hDwh#g Da|?v:$yB#~]VIU'?NUj'كd["@ Y I;@Ͼ#j- vQ JTMKGϤP][]@cC^'LcInY3HOBަ5`*]7= D2m6c&R(zfQQSPe[i9EimN@DW$I+RyjY^zۣ:K1&Dfm/mh6{r67^u5C 5/#[ qX@97%k ?]z&%s3tw"DyZv3*x|)eFZ5q$k6s5[uV?5Xu;8^]];]'Af:YXqQJq`kPu >yJ,a2gz$|2_S6cb~ޑTUQR,x/Ɛ !nS|/MUuwmfki^8LK· OrvD?q6BsбnT),#/O^OMv"qbaN]JH2S]g<*`2(h22_YY(enlZMh]]$=:|?sB$!(6lcno2t_ Gɋ+q=mM3Rc+ xSacN@x6[1G$9! rv]DgR\*’z y2CR`/2*B 9!%kyo]#M u@Fwzr$Y~b|%e + ; >{Ԅ%>L{@9p(Gm?>\r)> #o^9'ݧ>,w+. E8k%2_"H"i*G-s6Zfm@ӃfdGHјT<zg <izU`Oa'p,btPa &s>9B܋Ҝlo~.Gzt^-,EPO?y azwGZxk/W7,I9f20!j/$S"w~"6z,ޏ3Aה\_bmC )6Z-`W;TfdfZB UlȹH93{IZRpZ;jUBopгKA,K;02V"Hћ1^x\CCM~yo  %-7q026)<CnГ~[&B5f`&4r+sZyYGI`b\d@ѽV;X(9*}7 ~4]OwQP/M ;`;`0~'B*V?$0SS2d-ZU1TR35NJA/42mJswFM߇X B^_yu:DMv\ )IB. ,W(Yvg%J{Iov6/4E@ duJ& }1 t NeMSO3-]S< uRPSFZi[oi_$|2fmqd84_ZcZXا?$߽m|gM>!ЀwQ6ok"KpI0)G-ٶÒϬxm4D+5;cv,_kݿP;20>in+)cV8j^>]# U`g*S_#l]Zhv '_@8sW#2 ly%3P'L9[fUXjE0x;+Q2mseKZf'Nr8QIdy]jCv3K9?'ݱ"-~MB"!E)tyPgI /?V"9O[K+YLSnT'P,Z(޻ V^:!<J=yUM177{"' t#1v]V9%3YK9w"LLX4w0~/?%t7vt!L#h<Qs ^RR*REZ { Ak+BQйQ;e^`6z hs*"o h>Ymh $ d]Fua^E.N *{'a#cb Rd!0p+ .EnNhO0Q\ޯ?Tf5.APwuz \Hk)g¾mi<CI9z|S !b__hU,E}W: Z%fzelWR~ Y*_<X^:0+# ~~K}#œ3|~- SėdlDY Y!A@ ǃ÷NiR$S2+֡;0  y']qxlفS#Tՙ$(k.E t@j?$ wIk|2M#m9G. *B sL!&xZ%GYLtmؒȶ8j[jE^VyE:vwW,q֮0D1Rã#8-6۔e5napSN]D0t 0dp&xj-{F؈έ(;i]Y.N^c[K['ܟو^2aSeUpWBS I$i=#!VlO[zQW{#۶&zOu\v`E[[e:4e-Do,zJ;PS!RNX):mfA;0dAFw%$l%9\~f;ŷN#xHvGc]ąz9^fcx/KD|A@9XHځ\CLכBŚ@ 0a<4Sm©9XEkXLs1ee ՆV%v3\''zA[I|xCbbֶXpGe3RpxGKV{p,8Bx[< F34 80Hczd\5y"uERa-G1I:X1yU!4Y sk3%!@65Z WA!UՔ ^0LFKF0EdeVAGkU+T% Pg]SGT'M/!/WD-v`gFmXz:˛_E?\hNt6\Hg5m7^u]$9H^j;RL;a\15G٥2hg-[l10s:W^$6 gW7aTTD<+LE<AihBoĊUvzv\^e݀TKd)X=@Lܫ7rpmIj>˩p1XWm%Mak/"/9K=^_MHgF+A o(X2s Rƕ߉#dmAz"&e~&[ N|qIX-V !\+p(#0w.GIFDHbG:S " .pP47,- cxx!Ze=p3>nbU\۬_nEXTutQCL4Ex˨9-rK\?R;jW%KQ:M2C:B9\1فo7t!-[cb0y+?>|DUeY S{s׋A8}2)D#Fbі}L[Lb/d1'%Rr:$`RLC\TvSPf\Qr _/nڇ%=AAv%~Y\$u|x:AD,r}-m ɿՋXYаqD;k0^/7{^*q!Nq|}l6k` Q9 S*Q1LiGerV9ۍ%M0F'J<@>VP<`V \+ev5L&vx9ELfwsWO#fqsƮ,.j Yk~W&ye6Vt6# bO:{#lG]!^m#QKEAQ=RQxp:~ f.1k-u&Y:UTJ^ 3: ^ % IRyMKwHC4! "P@tS}KXj]ݝCh|i +za3zn x`&5?Utn{2+P2hf%M"w\ !+,;oX%37+Rt;vBCv^ 6#HYo aJ?v}xeo[),=qׂ>%PHmd1"CS}]m+[ q0YpDKT-?c$Pd?Dϕ4f"PnhJLk_2v!`M`K+j>8p^hFuaGHP`0f6nL5w CLh,XmB\q۶~Z9YKa\;bg͂` )O%#MTEbFd$*|*W@ZDL8)'Br&Y]F0}Q)WC"@u.<&:G:r@P&[N^uC0-. M}JACmZDٔ3_Ue;jep[iY̝O NŅQ`aE5=+$^nbTGuSV0WT/[O{KFQvMxr!^P[Z}Y?{&lk5le"~h,\9 `8ա'l'b|Xd3Mq,<,-.V5vաd,+  .#<_ן59Rhn71 H9׋cٶ$VTPSQcW^q?kg\L2UU5%$>b|=CgTF\Qq0|l 3Pc:e}ޒZ|LjI*:)snkĚuYkH8yP&S cY.7ۃW,@ZVNXniƱGV1m-pcO`p&|Da/qu):msn[[9v`Ai;8BgD[8­(2UlHrhIJUtF:1n8 j;K8 pg&&'{_@IF q cϥFsY^!q$]nRvP%T1&6ezD6b aU/q< | F@|$%/7*jl:‚fq&AU1%e HSTmqoޕݐz]DQ1> IF_; *yH67;c^ ;hz2%ntWy:K_}da-U7Z6tU@'},@T D`uZK~l #`AX {GES[GdJMi@ټb1h'z SKV`A|Y%N̅EڱYwdE@}Ov4t3f>:efώxfoolv_apl uKrb&QZvj ty;FTc0Ȳ&5Mx=!w^PuX]PKX}(Z~d F1p~xDxs%x*/Tn!*F|<5"n*FLBBfN2CRIŊ'V=[ 0Zw"@ZUU"3 Ey9 sEAe.μ H;I@,np'ap!aX+YZl2b#*DJrϓxQ")5w$K)fBv=0P޾#9Ra b;7{8q(2gG)6?cR!<'˸rۺd#s4I]DD(i`m63QS\HN*v &-xeo b\^~DSAd.v ]\D#]"AZ9 ږYMl ezJR[=?H42a-RN> {9/ <z/q(=#%5IOTXމOFeTYŠh wD 4o1I>m "7M V${"A?(f]4)7Z'd{_jlop0/isRI?F%)8\5}W_ cqBB~vM ]e1?N4qD5) %TT+ {#Ti%dw U,_e8-,wDJV,=VqZo{}a*M\v]ǛZe '9Yd9dWRB|xOS >j;8ܔBH! %v]ռ+%(wA:er=bI.i/5D/*`iLmfp\b#khQ]XPI nYrG^p77%0?}RN/R3 UX~6Ct4n/S[q.ڮ1*Gk]Q f:[Rn{}DƾiKKH2- e)E~297W.wBW\Ty}eg(*k <eoNK+*V `@) )ż +v3M[7vpnqZE q|s5jp@8gauW>DBTmRi`OkV=p\Blj6"v0-le@,>*ȹ'=!g[E H5~r93a~'!^?PUy8+4D%*Ns7,|54Z|yc}l`u.nާ vFeyG *ev#s|_*kDcq{a&C]]d2Yh U<(XI*;.X+!nWLDonR Uhl!%h\mQ9>P(U3 @> 4t3.bPf}`n"ozݡKoQ AA=r0o|]~o\ e9NpJz?ryj Zu8eȍLlR*}e'h d<o7'YayQxBtH;L\Ԛ3 FV gA$Da[|{UFJuQML C!<OZyPUڛU5_[iׁ5u_p I{̟oV2X^  ,'eq 9;.?O+xHy|`^^nf} c1?oAly}>]kUgNgK`uCu.GK @|XS*:Z{+Mbf|L8DlUB:0u0n#Vs#t:BdΖJdsa"j(4a~)V5 E0GE6޳byX#y-U[$R:Cdz"fvlet9<ٛG-%HD35&?T7}'5iz.,jJyi8A$m,FaizdAŭm9gM:n;bc x4\P6\8!Sr31wl~/P\dfnD|l  h*))lNJ Kqm0Lw~L:HB3xv_fn;ʘDmZ<[RMf9ˌ%i#ΡT!H`qY`E^T 3:!^2Fz J{ yc!FO# <5Rsd B07)YZ><ȲWe٤Y@RvD6_0b7'Iu<E:ߞ0!iR+$BX\#LCb.="[.w9~~`` v2-[*tV|gV+ _U5u1F_Ԏg\ 7|K@T`.}q?|<'_K1gJND#k{{aNKVr/ ~iN̟o._&A)*Jc#\pMP.>_vjqpSπS\Џ*!1X'lI8/*d> 7FD[7XIgjx8`#\ Qnđ#v܀^yaZz#1nZ4ڋ F28hq.˝sa0`o=q$>D{b1%Bc{=;5]Ta=I2kTO1bI  &|AƔOҥmvG'8D@+.7# L 36trvS4-`< t]>.d%O6A -JOUyu$` &vgmlA sgoUԣc 3F3w;ex>:BI{ڨCrvZ8rJvv\[~TX&r=Gs=($M=wX^•^+{7x684g3;w6 %q=S9a=r#:b0aYV+~B~r}UVG`X2w? .ӌL ;52qqeGP=e35][jXd'!2ibAȎk&@UkΈDp͚(T(?Dry L:a)?lpvA=uWl|[> <ȴd[N`4@5( ( i j^AgMh=2b|^O,%bX8Yf|>6ʐ^H)#CGЩiYA;Ș 9-Ƈt` sz'(2#X@b ';`^!+bW˷JIbxv)Ҭk.Jz]S6{f|~\_as[|%>^ BJip4Ae 6 tEZ}J3Tutu7~;U`wh9Q#NoJO-a-+/`ѧz*&3i`!#ͱA0X>X?bLsz/s^cccۙUa)>ycN͓ATV7]&cDZcngU1…lz1&Yg\56_@ekxPC]X`lq6`9+NX%uuZoٛѷ TTR_P=<)"kg!WLNXoAXs3;cAdZ@ vlZo Ͽc#'&c1FYQ k<]Wp=s em 8d'LKG! ]61=j*Mg9S8< o@l]FZ}&(DpnjiAV x'Y<|5nCh2qw}"xo@J'S-y`1$߱Oz&!Q +/sX:}AI0WR0AËS(!YBl^vo ]Y)96"K Lj.Gkחr~'$$db%X.(BOSQ.d'l&%K w^OpV]~|Zw]PWȅpk[mB ̉:S_rrc%^ _m#]^;+8& h+J¥c:{|S|ZKftcʖ|^ -3{9 W6}}UXW5 s3 z0(zu8"T/t&geAcuwt^m8b4|ZoWY0Çi;2J߹ F2VyuAN7RF0$TW'{lk ox@+ tNl4s'+vD 'T~Z6@+QS"qձ_L?2xy xH+*=XOQ>z&Q_Z 6ן²xޢWuEq "pb!~zR,%lsT, y@<' m NktqՑBJ \]k@ Po{5,]Gs 0"&[p Pb/D] Si˛eNGR[[ "Nj $ zs'82"j_4lK.|] k<>r^~S;Ѩ 5KY]oDhLsZeE&ny <_nғ MOX?MWm`3y,MܒaYbF^_ΨFW{t9@i8%[|Bq]z\5|9! LO $w  (Z^G`-vx$٤ Eʈ";6ۨۯmH3) i*UWzi (Pe aOFt`^'~dgT^"9£@O 'QiIؔ\ õ:T-P!؍E+/7ܑaNa{4oZot( 2 0L9Y oޗsSK@ \@2'aՔTF$`n^ Oi$ Qx "8QXB!`0,,iTw24q/o8,W=<Gc3f@rR* :mkDGVTMJ@ EA% {i8}EE׬5i*?}8bNB !HvW8 g>$e^ X&T:<v'? ,çH9ӱiDqHUxFRR Xz&1& ) +=hb߁OzOxeyo2~i%n,q0$-!YEw 8Oѥ;A'+Xn z'KmG.]tV; gsbQ<`@f SB{QA5{ |81K%.'cśL,V FWV"jZ$oSY֏G(E;2/}N% שP#y2=Q߰IY j7 I{HK< q&V~oP>fnHR2xd8ɋXo+%.'*i6֫ idqMb|}kd64 U.җd kVN B98AJEGV'([XesT}p+s@fi,m5{Կ_@3&ϵTjBY1fH% L-Q= 8r`~?TE5\Uet!ːXcoh3(. z`dLsg|(ٱDw]bhYU"aJIҘaW]? .f51XXhwbrΚ0d= Z:3 QL7kTHvJ?n $2m@Ratx\}{:YSjֺr.nmMe a:zMEn!*YHn|[024H5bRU9n\NiY4Tn~!\M-fN=i=z2P+bjGy:rXo@Yb<#< 2sD ҇]G9%Jm0rL@b[!QIW_T<|knq'D/ B Utg[jQ4s>(S{tC͇n|jh E_.eyPAPW&`5!;SY.%sB}@"( m_] kMmFiZAņ^pRy G2`$f!4$^*_ VMBf%Y$\h3x4jgoT#p_((/STzmHvht3G\a7ƩY-6x5ZD}nASu@*rt}Eo(n QCKkh5O E1;Xij2\.6"Kt6_$VP ր~^a9O^[@+g'Elڏ=L%:'a zkl|q'~m2ӆ F-@PE"(;z rL3!eU\tY @m&)!!/#O(;z)_8^6!- :l 4DKIV@q\4Ubw ;"S>|Fx t"nA߲turhc& n.օTt:1+Ht9}'0 Cd_C{mιFQ5+Am1oj)1*_sdhSW J$Ns#>;JH{x¶a:JlY-}WSDEWI$P3y3  >+4l35TMI*ZBך-~?82!2Sjw8Y4d)'Rn~1YF5Mo1810}ogY)]"rt%>y>h;SL|AsJ5h%SwP|~lZ{HT$oڻsUIh@ _sBzL $/iwk*uБD5b^x8Qq\kVrzMbo+)hRy=Ax**xm\Wo%V>Kُ ,ђFWz*rh:&Q=~ΕRP.xrKc!0wFX[G0Z>fKx3U lyxAC a~=O&eCYG'3 bQwh)Lab/-\>`ov"&3N>ao}o 8lmk*߁J tQwa,7bT]A|/]a E ;ɶDx4{?B#}9vD\E9R"t!y?y$kc^JWgSRJ|i":7jc Bj`on-Nza"@Q}Q?567nEk5>i;<dKB͕?8os/ r B9LSw663!Jsn13lMM˓\6<2[w/c^2KSA9X~x'RLFC"j-&#  BeaAGDTX\n6S4_0:K>2$ #_\"t&>&$k Cw.mKm>fZ qY.97 yb* i`qRsDe+E{6Qk6q[:aCSq6ԫWf%;֜"32[9U?C(/!L:eBܙt4Sk!\FTo?j}rwd|q'˄?I{U9f^h+3h'MX-C@ Sjr:WN % dID4΃X[;ՏI^'%G T `Ќ;Y4Ǣl3b iL-"d ؿ!yv&LLԝ,7n>m= Em\h_n  q GPzܮE6Ұ/$j^5n :[`vkR ~BJo>>n +ny'Rj1-JJYҦ[0Q{.,:ѺN0W56=rDT>BiP\{BaFh"HRHIv,~r-`-kjF֭}}YI;TB KS$~ˑ :O+S)fABR%`vw'%)Тw_yL:%/+ 5IR4 !-Oul4xiézݒDp<9_ qɈH-n6# CO==_!j~žNY-V&DtQ-OO"}ouQA./-j;ϫay"E !\@v 7?3]XhKqt& 57qM+,SLKdE.s]F}ʼлl >u/ %,9=n=7!޷ |8.Bp'F)bQfizwf_$#KU uZlWtVWe$ʳtXt9Oq5Ow`s".Z_wn  G0=hHp8zt :& Q66oKrpfv55xsO :j "HAI~igөj.VW[ 1i%[5l{t߁{cS+wS! }7PS|pI߱E ^5r7!q&xK.u- a r|T.ܫ?x,\j$^sGû ן~&,^]]O,I#\R1N\`76~9.jsTwavq3#ug4KO>rjۑMW@ x?)]V,FKo!\V5XȂQnҾ8l҈?|Yg(Q19}uD"hc8O{aq$P!ɥ<} y&49l1 D>?T݈eh}gvdcs`9dbi<[~.έD?rfy{ u5~n<Hfm+X  M+G}%m5kf@WbcC^"1-6VcQ /IssR g-wpg8}fT@+^H@ytI.CcmVlH=i[!-Q&U-COq-YE+GJ!OvI*ߧ|meM_eOkg8>87)?7[+Md="mNVE -xyk_- T{ToB6(Xb=$nEL *g|7LaI*Z7uS2R]9+݇Rau"!Q*Pd"}sW0' {D;W\+Px9ZòW4ccqLg%#cSL"D{ [Q1#Q1;z m?-w &`| ݩJeY96x[3gn!l&LF{O%EDs|ǞV`v$JjVX"3'$=$YsC>|2 D*Qz0,(Mg4~K-76MB2HHE<Ylw}[Z( x Zt?xc\$W]8h]~6J0Y ]YCԽuAFQOWhBsex:rr-w{`}Qig1[`c` T<8vFH06e#|dbo@jZw=W!ygQ.Ddi(mp8rRSyNGN;5?]+)`H6WrT9MM#2Q>T#3CD\ - zua%B*W#@{%7W/7sSljq'/L??99DG05Y ORc~ewJoRw;cTpdHyPGS.8/I/l]S3K'l V=}\aH7!.*Pi~K Ql&ǝ%G_&ٿ?aL)[sAdĕ[:u3,D /p7¡w|sGhO\vOqvG8ΐ@? ވ*lK(bԓc"t=r5ـ6eF2%!S&/|Y>T8fU}z!C6V=¸ *.Je-kŦX@eGqgsuĐĬ[rQr?+9\lzwpJVtr_c u[iX\ fjrbsJPݍȦ*ø ~Rk~!PX70%!R~dfAsx&t9Yt8~+elQ!ƌҼ28+D/H6cRV;'yy/j8+cZ,R,nMJd٣ 72t[f&GocymwkRIDߛ T7FWH7+J7U ~Kb~TQ1.(qbv ,4ڿIO֞cN88pe8(D:rcw_#r>rM]bqjmY#3Tl `hZSggga0s uwb p.jE_{o&w;"(BT5GCCjȋ2\KmWKK5}-<%CtmiW}n ]|>&WL͂~o~0snS ,Irwy#\:w/nMa xȦd#A)&8tCK?S/U67Wn^fMr1Ӳ~IuKU\i{!-9vn  3py% \q]V)1ZFTpcZAY%!PWjD_/7Mi5 1 H pZ6c "O#bSB+x_ؕB 1Nq9 ]^8f#Ӑ\ mɇY_0D|f,e;tmk` FB[\5.]}`sɸF/q YT3;W7Ty^["@n4xmYt}.*X6h"k~&*0r\F^^-4NdsZL(ZPUmvI,/m q*0M,Z3Nh"LQZk @?]$f+!"*W7':[>3 VAY\P 4w--6.HgCgp¦ic'd,)bjx(Xk?;s!pdil)!3<0\W[ad.#1s;4uP. 7v. t/6<p:Q# b$T/>B{޼ASuMn&XH( _Ervx'?|C-zpR6Vsۜ¥r\j3.ZRpKJn"g3P=Zp&qmC*T.VN!A*?jcyN0@?T4?>i^crCAlMiET,r32pZΓ4 \Cu0[vCn"rLOB:0=C[\FKX4yj4 =p07O /ct= @IG6ͧL_>HfHf23WӾ5 ~OF+S_*nD}dO23juЊ3OI߼g _vaHtb;B%r[ 0qh4-VGmIBt/:~$&1y4ȇTǵ1pxQY@mhh1x-~вW6YmT<zJWfn3R32}Tctqv َ#7Mx}pd:gYtD~S$S =; gsgrA!O9pun&;ʉ)VQ1NrtMY^+f-5Y;j'E-!ji,y[u7 Xy0 "hU "Kl`FI-/BVHj^orv6c>TL&>K`,t 8#W_%kC*U+|6~`t1M_T`|hR x}_E4TV )cqr Af|E&Z@C :wiuKw7.XVbԅVMSNvր)ۓ9޵Zd,Ԙmp/C%K̵vEڣ ]l(p,ʷQfΖ`քǜ=:nM2TW4u <rA/,i Fv=LToiU @/.UmHOߛ%]s')ctm_TB j6O/JW(U GE]n-%є{S!v<g/: %r_eERgml~:mԲI<LnR 81VLpMVgb~svSW' >G{s:7L2ϾA7Vu0[)H0Q8tBJU<H:+Hl}6/ 4*g/4S)'IL()]DqHd3 ;L# O8!˩һL}wc'/YDPvm_,Y0KLSzFo/k:q9enY|FŁ4cG p5hcp;- E 5A[6i~%SP![ɤ:3g W:#N/:H{H|8d+LOxx93 a_YN%aS^@;_S z$z]h&*;g '. P"s3wYWv[p\w2a<$d Vu*Kc <٘_?M#7u=*62\:iPQ *Z Y8ji_#cYr޵~$ Q1u_]+`y7xk z /mX.S!=wsAώlE/[!hlAB%J#'nA&jLP#ɥhC <.M[-kc -FGKu22:dAS TujS 113S$(chg&-ytq{ @t54b>W~-Y[kW;@c["'WIwgeFH9ra`?|:A(5,?VrdcJ_1@(<6,#{kprBuacó {w ,/3'\V!m~t\`159-={9z9&QA1-Hh/0 ouX k`ZD1cC Ŕ.l(*h [+<9drJ9P"RZwS|JGHqgU>(c&.]kt% 2R9{n.#=.XkPx%`:Vx>gnN(Ppcs ,yg&^K]PHo6@q0t$eT  hNtjX HK$Gr(f k/o_f#`D1*Y- g(gT8q-&TP AGb'Ui9_26v$Xcaqp63I9WK!gZvR'2Q^-c"o:[KUqM3pO]uK~A'FeV{>XAmȉK {ڰN_bߴRZ3*Hd\2?Qj,q\~O7c6K>YF>o" aV]o3G&J7 D8 Z 8K!qGo$"GPe\ WNz-6j@)J )9+U:Sz7WSM?=i o)Krls{a!֢Hrkwu(uJ{mhD&d4%K>;mwvC0N[06 Y,%~Z#NX))UaKoHLS>(MZ&bJQa[+%T/yL6b+ L*&B*5D6oJ_ Ʀ[N   a] )VP"t>blA}U0^I !n| ,~yi~kXd mBWU WTnpnZi=aAjq1֚1#a8NdaY"V0R$˶aMgXO2Z vY -\li Q/7(MXiG%bpF^Yyw5zW2vQ66hU#rHixFW% 'T\Ov$'`~Ia,nlh^[ )tCh&Lg/okcF(Nx1HPt{m6t7,B4:p/om"D^&VEā;hMSvy.$pX`C xehC Ȧ80*8G`/>LjNIs(ȟSzKe=VK~҈1H /f@I?<'t> lu>5b<:LNM6 8AIP>1bCt)l?"<; 2 Ԭޡ'pMlP'Os2f/\)q^fWc1vc0NV~yyN/F?-T Tܻ. d^JpQM>%ͧ{>n ѷ C'FxDI:Z;FaX&r<0@ADs%tH7ӓ[1t<}tZrU<uIe6QdC"Z a#K%ȻvcV!ʨі1P`bgr(#9?Aʴ%Ðjewty^*x+ `G#{>F|a 6o. HwgkzhRv{X{4BXe1Dko"]dq#>MyaVv kB Uz RH `=AHbQSzvt 4&BRXI,o!}6 K2XHBR@Qsg+~3M/:?Iwj0L`0j; btd5B~q3H%3`cn ܐj tM&VI^QIq:Gy!BUr Lt vbm&zDى[PG!ql8Y[)@pr'|c.="4#2[yef3p2#; DYP 'Kir^JA}j=,j[C1% /! 4,6P=B>?4oOiU9{H _v>jP|m÷g T p oœճf^4`y /$!^2Wix; !l<.}$ CO8 ( -Rv\=j=IlG H4:G ~sgI4|"II D2pԷc9z!_ B\4^{G E#ԱP$(ME,u:m3jKId#1gu;w{MԚ(0*='$2oHX`wLy{O7VZFu` |6bb<UNL[>QsMna3|`r<F<_%J<js7҆;(2 s"n^R!IUFkBbm84IBpk3~l~@Fc4p1zȞ 8)]%CEHL:wuX2Lvl|yؾ%>"ag%  ^J?Mfo6Rf(T6/;2}+Z M5؛bakK*N+.mmsvc<yIǀ/n9& `Va4~m{5"A I,w@\&(!^!T.Y<]MA)Tn9*~ ONNr 3aK]ƳLT1bvM=^Im$(:J-U'bX5iT0 6aI19~Ʌ)6D-;D9O"J/p[L4vn"Ad* u5=A`1c|6m݀[K;2D5ME!TlOY4.{, A.GP~7_4C,raZBA4tmA!Bt^ltf{)QkT͙jQ?jFp&xl> cl?uM?4BkrSP?AuM}I6׀KoO,/Ur95dK )x&@8=B9{ 4<_{m~'f[G; U1qSPB(8}]ynjYdnʭ_b3"0ةLZ;6 99h+S5sR9KP3{K7Uu}4z B8F,H1~Hn53dܼE˶L::3#O6w?`M.L(J 2)r]j o3&+|h L|hH'8oZInQ!rW YiJRFyh~ʵKuh^Ďۋb5B]`lRc @3Oy\0 l\XGwSfþfV%+qw95l!-/ 2 {C+g#  .Ve8/SG\s^WEa s_aJ5#u}@rYj (S͠S\%*m:ĬEݒ}@x*%.2X>48Z?zm${ \ G>7\w:x%`W$h)!=0{%8F'4D&(`eMIkkOZp4) H7OJ2vM NP<Zau~گ'a[HjuS@ $ ;"Pf&\D9^\)=9W<: 1aYBaN:NJP%& P08EmT/|NnFЋ1fl@XC,+!7:>  t$`e'F4RA[OцEfwlm89S~3Ow:H2"+T* \10I%Páqc ]sz-1 ۿe${ 2ƘSy+a/`7F9EBPIx0OF_MOB*d<N*Fr#:CC"Z;Fun 9~hn*:Q . c]ClmVrz"[y)KVWb`bQsdN,۩l$0aJxef4KH]vfg$t>jo@R/|R>8h/V4ocHy|m)0?3nc TTi*WjeyQFls&. Q^)YY^!U\=zRp /VJIHYX0"|A' %?:(-G =et~P9A  \bgET7^1%@c!ahc^ ]* ~56ya`Ϝ Tvo9r'@}-e2zt/ja3*]OkO7LG(& D| `'K:[FqAgjI\` I!"qIqnurtpx$\nNzI,(4I ++ ]O k?R)tђioO)7f&W,]F7LD10SHQ'{:NhFpB\ =;%P.aӭ$(bA)Rmxylr?)O4 x)) e*Eow,iD <^~e;BB<N;Ʃ#EpPq9 Ua dN3D4F }|n[Di40ܳIĵ?O2i3;zFAL "h8(4 [-kD bwr +)1qHy3TvG ; l.1~ty VH1Tmmi*ew3 Z<N>mb~za;?^Ms;G0@} vFw< F΂CN N+6P`4PM8N5YxjifzdmSf\ v8eθ %:F=0j(c;|'/"O,IGJ929;UC0 2U*:B$gy3'Cvj8n etB}eR˾qdxørivEWJcTByU o[R\tj9N,\O1iQy'`koF 16sYnb6s>wu?xQ4C}98  JE nUC„RK~w0J?`!Dkw|d 4")wӠ/͕o&y`(L 2r\s3D_,-$4(*$+aO>%~lI4\63D?X.^,F\)$-YG|Px(MA*p83"5d A:qNԇunc^b{'Hjd#v6ܸ2\ז b{2f:A)`6Q>SW:[oiBQD>Z;8"2S@CF'ÅC8nGd(g.HI6w՜(/]pÉ~]BO|awؚ7%α#V"P\}M0}WҦЯP߾q4& $jy[UdtuRlI,*C"M@@8qFv10g&-:wrjOx'9k[1S9:[ $vp""җ0 nDŇ](AڹUvL[N=FvD h nӄ%$@M/2R,uD|VGh @~}_^a0cQ WTH)f :"fRk<^+cW1)/wOVS2^{@?ۨ"H+{]ʄRas4IMN\L)o`Tjg8|LK]F^&/TA#=g:qAA}__YfRer91WJy?`BDKlP^>i Z&Ogܼ//&z M?oQ;c#_ Fצ/x.mS=ߑ)hM!+YC*i(b 6( *L}0v&RZA=,,uT+G(gY]hteǬ53/|j8(y|i>`Tv]ko)goN l!9zz7KrǬ~b~BU>{NU' 9tò']jW:84r!#p @:6= O0'!K`bY=_ٽFFfgJMW,<U&jV"h05&#$v3)o1$2,KgEқBsB}͑Q4X.j*"לVκcT;8j8'5=-@|l=LۇX)K*e; -Uk "HKm@4nk%|j3@z:vX@g@N] ylӧL6I:kbóm)=,eICgUqܬZ6HC 1TO\u6x"hT{scwt}zih`F.8yv'lDDnu7yHr\q3yu^CM-Y+RnFH%I0&!&1UGy_\{6X@*)_,.cnQUjLEnfHKBcO@5 \,߾}|X&$| 2zHh^Yh1RBDT=S iCWِzS$I_/E 7Q.CDq7Y{pȍa1v"YO20~silVyQʕ@VbTu q2C%8rH\Q >GuqH-BxB/(>i+nnqD|<en/q1d5W.~{ud_s!(K~LzҖoi}zuߴ1pbD08. ޻-(NupT>e/j Ta%k`>jV>*Qap!X_YkC+}$v2-K.WjJaJ O85>vF)mOIh=78",J%r09lCx d1nqƶ/L[ؿ,,_#4{JkGm@U:jN 5ObGk" A 3{kieBf@-H6UNaA(c%W{l b<[g^ݜs1@o%O{wMHsNiXH[H BRyR1]d2B"?.==1ۓPͽll_<ii)N)< z !1eTNVUU6< iNb/j@ws`*J7@J8Pc4\V@s\3Cr0<S0X3<3!Z% 8HFTKsoBo}dM)O"ڲ>26M8CDyۇ+WDE?2 </EhDWsN^ffujH<@eo(TA^@!65VOX(_būQ} {80:.U c1Q !\.DN+SFXQs\x]zRg;(j#Xu^IDHc,CZ2t>͗PbE<0nl8vU$B]5c0d /1W*56YҤzx‰[M[g)6S6OnG!J̋.z ]w+Zxn?wt9Q!fds 2!p$jx#m[gcRe"'Q_@^$[7,m\hWE#H32't nbSW8Ӱ7 E g> OjՆs 55Ԥ3e|0i.| )b#uS'zP1+{ϑ ~ 7"sp,q##YI1OiEreR'i߼S|bUhߖwHd>Kj6v؏C| "nioVpKq.)V* +-E5AjAPg46W 1zۖ8}-X ׄdd+?;>:r7!Y8 !60 6(Rbhdol;TekTdonavp,7NM0}d{"vxei1KEI Hk34"Nm+S$ !2)!#- V.li~ ͬH<?KN"&v;2`k@qfPKj7Ka?;J[j>R6u2ZA8K3O<yl d˷ELk\N}l(knPbW8+| reA}0 s 7 ATG;8s?sQ@Iwt) V(^.Ex3<*28%%KL]{<q;#d,sl=oRBDo&[<0>/L53mBn3T aU^{i"m*TW#'<]iWV[A4LT1P93c:y$-dR`JN `TW"m`09<X 6\Zk '@5 Gr3NyxlEN*(i6@%XEf^bNې5|J8Il_( /u=j/> N} z_m(#sKS LZNc3 F9:} ?.srn!JS&zl/{*A?-/=4I^IS7wOq4%GzKƟoT{N @x26 H, =v-R8!]8]([dN-kȭM '@k] +w([ЇsuCgPEoCp:LX7"&Mb˖Pjxfҥuq*vyJ):ѷ@V_J 9uR3Cov8M P(I)Pcd'rT[ǸܷYIչGMzq8bH&۾)SS'a7,z/ d ?l-uB?T xQun΅ 'T ]&MF+txzK4?30V/qqQJAځr=)8 |&y|u>WupKW#oڠ6ݚs}^8/yzQQ/h6++ nEz{oi(}G~/t[-]y]TE`#3<dfg9SxZv`qbl{QT'"u!>q#bc9s6OSZAtRgÀ6}w9,J@ TVH7H23C"9FLb$K->QukS; ,DSպ2j4L<NR(:.Y|VZ;TLo&o 9>,88pIK}y^~[ >McU߁_{{q`m?bxo,5nYJl| {ypq{)YuP MKc2#F&.F*IT"0W8Ƹ ${{2HwSs$}OFڄc+Ku.֌1mZOC`j3rGݠ<ƃ/Ac*\|=,, _laC`&7 q19lP!uF$qs 6ACJ&.)w@fWj)`+`Eъ; &(@B$1b>`W|V%'RaAq|BtA; I[?:SQ5H#>, `!b>z1r'޿ )jQ">TDDv pNIFyzͤi4dS|"B-TR$^eA=>_6>ʕ Bb03t ?[#OnXjr;5Ani @^R5K6rVXr@h9H*J4͋xFpumܥ*G|W]mmW~0uDud5}C ϣzmUV~T5=gT Q` y 68bN.RJ5~nσy2&b&19o:ft3oB1rn]Ofu/:C8@D3]t-L #79+/w.IF~X|y`FC=%)$x,LF;kR*ܐ ~$u!h,KE"3|+FY5M,63h"~]FSzp$Ht ^wtQ/N'U0JWOE3[qbMZ^Q/l.Tyo1_VoBZqYugE#896"6Dzv+[ Jt\igF{BiTfo)#""#R  'KU;%_0#P;99`mo%x}'[97>GyZ>(2>cE.= m7 tj<#*F,/A^>C0;l= &eZlZjZ{VAJ;,V.Xq 0n7A\9l[Ïi'1d_ph%}p)#"9 7V`:XmرQ13^بehgQRuSˎuubY] d7W263F[*cKYxJkZds%iWSQo%F<:0ml r.V,7yoZ /[Z?ߎbn`KC!nY>eM` A~8,oK.vu sX~@@KBuŲ.v=Gevp}+~7z?3ZZaz]*^|r־o&8kh} "ȼ@2:'54P&kWvfp~e F[qx%rP-Ah;8 )J½ҌW=g]C"ngOLCdkpi 'jPW% rO$  DdjМ%}bxxt{Z] W:a;@|<,9wXShi~UV I?q- 2Cr׃_2ul`<* =G 9$K51Z/ 3G{pg o \);u}!9^^]$yG-ߜN^ _zfɆυL!g ADF4e9!z!_ۋN:0g,~zA {J"zcqO@=sUnO PTQ%YgٿG_Ax\ME2G X-ycPW/!ܛ\+$6ڦv3P}5Q,TE*o?6wG_[C %e! Q#U;!A,|zr3֖eYf1\xx!}5}_ (_06* -"-8x,8^M|"&=vY:`IVoYsvroRch#K|^i 5;kY`OyYH;df& z"h@U{I%i4?c&!YO2߆ [S DJ "85~7 #(R%â@~v)LqG@WLnnt{4~S6:C/^l}K}g{nAU1Xai"Lyz :&LD۽I[3bU|>Uuw|]g#}mkP -k-|\9 2CZ#8do0e0LhSI^>iƿR67@]E"H&ƪfvxhTQK2TJf?~w&rI\{!xM{# <iSxT~aZ2k!E&5-*'* o1d=H>I:3>GR8decAh6lXg߃suɔ/0?\(2JJ,E;A7aOOc i)ezxkO"¨pD Fپ9r6c,aMhp,'=8W N:t^o*W$/!E+ծ?OD B"l_vEP}<|MS  xm[;)ecFcY<2g>Pl\%1K_-_01,: G^B*2drLe 6 ~V9hC0M`RO2B+E+H*C++ A(@1dQxaqjDuxL[Dݿ#Y>t&)rG']e\4{Dq'p?(YX[ 5hzP[aQƩ3\ 3<s'Ff64'zzOx2 [@؇v|CqMK"'M b Lo/,6þ3ȶq&o9faW6f)w9{ K6__[yPod0v-ԽQS?\5w;<[qnij~k}vSAPC`SC9oMZ'weFnZ$Gb!@T_pypMdqz**KPd4!J0G3DQUO~cJ$Kŏ+rHM|t Y;:|9S76 nxzKR$52eBؙ5r*4~zhpJVGP3p F+ }$u=sbV;W0E$b2Z}SjymOr>9`<9Y)4%xx)F^~̅eܡN2g:~H<֏jQ*V]3u~)*;pbP܏L Zr w7lRf ƍwS^Ơ>r9\=`t0(`4Nu=9}F ;_'y 1|B#nQ:pS@;62Px=SLI+hH(|  +4 opah]HYOy0h "Vo4.o{ C_SfQIIWuJimȃܚEހaؓdÏsWVP1?j:eKm6$^eTH|#go T> cیZuJj"4h>}%ERgB-I~!%y)[MRx416jf<ȵy֡h U?Pm&ٴ8'qj a d;vvQ".<>t\ hXZTTXYJ&I0hFeBU %6:eoz/QoXoK1&TkNVH)]jйu+vg[MQ^HxgpiPyR{Y:":B?wODg-))>7 dN<y" ) '!ݏ3@#1k@m;?eg- [t[=[Hk7ZTbO(|fB+BO-&% 0iAIg{VBxh aS8.7T5CngE;( P$T8a[#AKrJfd ^ 40f89 /}hU!.@"Y)$y{4C\F9H;^p"W, (LrQ{84eX2nGh.(b"9RHP G[X{pZ6(Is~ ]u5T m$r)vB xtjW\0$vn`Pioc;ZMڞn"q#T08o@~^=,rW;}؅2q%C'x,7j3MCJ5A"9*'Z8.fQU [M``G8߷ o"]sNDr6iwuV#>CcN`&tCoVc0~kȪ#~™5+Ja.BhQ1vx)=>?fDf?ь[iFu,oF2'ʀcA$0G6Z R>x9)9V_F q A"! TkbRXe>6>oTzz (P‰b3?U`hh XZPW L]H2[8GLhks;-{ypg{kgH5x_P-3}Ԙ5a,;R %zAEus>7(iK"20 #  ! ?N._|$jY&RY QPH[(/s ;&~(OTtNX!H 8?=#V6q '!D3;9>*F -5#-"0!Z8="g/3TvDVjԥW Cdv&XBl2H6C]<ЃEIUv\I@2aoQa/j+Z'CA@Y-CzJaILQ9D$T& CzbI3 )$[ $(# 9fGG :dN Aj} %(ۈ R{hDM?b3vy#wDu+6z,fٗD/'g>[cMmoT;63'sqXJY{/2{[l k+P, i"'`#.&$?^ ރb+5Y;jl^&2(AuJZw:]pɻ>3MvL*xUgQC#-wޒa(bnU^#V' 5:|/_;q:NoRnmr~`r p\i  c 2K0fG\Hyxb\T>(D>D%Q;z_cJi-^Cx5+tOn߳e} cnl=X=(i!Re&*u&Yx_etp;$$=oHtC=MJwĿ_<~!i6kOzug:q^39Oۡ'^~ cO\K-_|N><4T3pG_SwmHsFYke|N]ߘ&u[@C8&lsMn,5R,3ɳ1d7{?h An";F1.)Sh.,pD;:z0)ר6İһZclCdhqb$Xn,Z2Yde w@V?R,h4Ku"  l&H0[2(!k (uA٣s\x]nD~X/=C\Gaְˀ>Bl?E%5vYBkd^LWUv*SXLMM0^T$M}-@4&,!Vg- jE=LA|MdGhфYb|xet}kJr 0@ /+/*)% 6@^bu{ft{3Y^E}$T^Y&ǚ,i=~;u^ovjp vW-sNhLf0Oj F[_/*=&-D=j0\[y7s`7tz* DZ2:NĕMvlknek}B XW-@);B%C72(mq3Tz$3V st5YW9S R/o\Y^CstZQ)>D.^T14n/8p9;b!(HE"\bD}8tXc*_Y,^XDpm]#%߅Q̆|6pw+3^n1`;@C6`O.ya)~Tt&5ͲnNoHv9Hix&ǽq-G)?OIb؅S*"ƬW4GUG3:$A/KILZ.LA,]o_*Q^`f}lZM%FR&2~S4JrG7rv}1dQ#t B9Nv0QdID*^AYlڽWVq6`wux@7&yΐ4M$rc#z"0>#1x*x7m#Ne>i`{S}~4"*]%3{;F#:N!#pO"#g4-16*2`>"_ a-۠a=;8"sf% 97%g/Y]Dv7A;g9 Cp0jZآxu QXL Pa!K:D>NJH\*=t(e ?ETAqÖ-Bzhb_u)XMi0x!*7:A4/g'E0'B Y _VU'_~.tzFo UvuIcKV"QFT0D5>>nO?abhTR93]5=g?ޜ=Rm0/q-;\Oʙ|Fm}c[B12zJ>`5hQ Kc;I.a@NY Nhadwl~pŝ0lۍm4QN)?/*/DS(~Ի-K1Ĝ>U9d%%W& .Sr.~*H5JQ=gTрwr9#: LF<FW0pe+21=B67 @h?Hbvn"Ke=di2  61GI D!BA&02;*325R߼dzޟnbӽ<,cOs|k`:<05-*p)'+~ Yty ~?\rJu:sv#XTѴ5a]y5>|H{3TuljAl(~nwDr$?itX D}4# p+3gAd=NXL,;F.P9Fj? 1e  (A׭_fJ=do@DC[!hxPͼ,3M=X J!XH;=0h &wN#,>=0 m)4+BPRE;DeT;iʖ/oonՆQ\, sPq#Yon&sLwiz};,i{A~3BM2bX?1rk56 #ٽsYWz0qLWwvsV~RfS5TU0zn > _0 0n +W]@̙j"p3>{mR r9ԄVk&/?SYLp1,ISF\SmLbT!Z?\]ZIW^*TV M[\/G6T{ Xj2r:jhAc);og(|bKAy"8q W,aTR*2hf#EAѡ{)-`mbw{CW@DgPwZ0OOMA IBRZ/qU|qrzlLry&`YS8*p&6B#WQ2h<9@Fg4*#:6 '?05/6~IKj*S pe  we[neobѣO72p2+E-s@m~je`?)&%u;JO ;9~0 y~ cJV:7/1:RKP{d^]2U_NZp7r"zDM&(2.@!:'t#pm/*%S4>7$+,Q>VkTlŔp]|"lwJFxN|*t@*kl*xCˏʭ0ԶP[uY nAdgZ AP6y F Oh%A&}-?vw&CfgI9- ɤILv]Jvκ4`W|Ll u*/nHeA/Ruɪv'L;lK]JD;p<*FLP_L%[2@^"m!S}Z$}#B JG {C#DNOx QaNj>S,'$=+#!>jTZ\9/DU03ۍ?=`͙6yv Z1$,e@hNSMlm$B8"lT]_3t}g _FH ()]!e8jtIeJ 6q+%)M'1r6E$mi: q(c`F9R b&CöZfT8y7uS$=X'8],[uT'(:k'ZV-c5GLYm.0PW-n܌cL-' L4X]^V-&r?zO%@M A\C|LU|Uh{2PDj6C&i%ke˝sk:GF)4f^#ggΈFzcTE~9e:g@ܩ>w^,je$)ܨ1P&8,#1m1Faz|0u|au٘8 >=$axJP2{]F#{FPnXo6C[[~~ ~lM9;GY'' ϸ"aj/=Q)b Q@NBY|d|3),LSnܺ4%lк!^ y|  5Bg6-$ n$ i"7s`%|\i,  d SՄ$t=jy`ucsLdo7xe6WX<DB!:v*ZE+JmZhqusymm'njws^|voKocvd?i^0kxWhc=[3TJ,.Jn%0$ JAQ4 )ukYuOtI:K6Iz#g=je! t </BWSXLS^v ֬2o5b YQ2:JL9'gx$&'G$xC>SHU_Z~Ucv@l`A 6hqv]h)U-RvQdB<)P"j#:&+m!a  "obj@Tzf,IL#MS'k0{t51dJWd~A~PX0 D0MK-^y9q)1M=jl{7y&<sx i  SơbS'8XŘӆ۩nCeD!;̂; ފXnȄ[8\VJ/-(X]ΈcevKy4`f@\*ߺ+;ΜGB}{nX`9r(x3$# *#W7?=BQv} pU@];G_{MʌRj'4R~W0V>25/oSڙdtxߗ#SnoKz4:1VҟuZx(88 3sC')K(_%s+߀w>}hX]_gf~KvV<>yv2|B'x@oc TQ$dP4{L24, 2&  51bQttyS9Z!<$ń64ffG1:||4\k1W%|5Q [|*:(?"l` Hc2Nu'*֒ $۞;>|I;BIQTeʻiu1ydWiq_JcVXine`vhjbxv="zwBd,\UuL6tV=V\)ly+27JL%,d@\|Je i5Uˮ<-ض6I%d6~܏0'$99NaCȏ7FZq!:NEzYӤVB8zL SM fgtH4-tBOaES9}7vw5&0m`ʥ>%4@[>Zf Չ8Zx`6rla B?^"{ieB`94sCȢb;hR24- Hܜ)TZ`-& d0V|UpuR;'Tщޝݣ;p6kQDWb<1٧`q(A=Y9FOkAkb&kw:}nX&k}5Kt>k<5hF l^Im-}|fYK-C 8,TkA>51ٛ Pli_,b p@\w!rqjۙV0<j0|.|0,+"(="js@3CPiySR\0ar*\ cCX(<Eoa[H'=-vWris\{`tHqCdVbD=&x vR* z8!I5+W)0(;FB.c6Ճ 9"5@Yx%/*6w[Fxklmj$17PIFX-L\`l)]e'Pw%BJ>iZ^wm_wK[gJbj\R\-U\%ˏh|jlDWfcC6(#uXΗ`?&rLqhbWw7s,hߺeLΰ8 %v=zKShXEH%'}G%wR9 2U3E832o.CGZv c9Ps *IP 9Y5/j%0Kƙx=Gcn{:[JG:W\=4%GIqw quk ]mDz7F-55>/DT%o  JPhSQG@0qyjr;Zp?}&uYhtH.*Ğ’.~OlImIw0b]m~]Z{/݄wJsaz{ф) H` ,  += EIaYKlz{|`oɋhEfkf؋aBRowLR]\c\ZV\h3xpr"-c=. f:TDQ:k v|'E<H@3/N'x{""8ff9 Hy 'n2C4>?XS2'h7DzEX~qYmY5a?ggʧU<0X."Ȉq{|ψOTܽڢGj2_-w?`ZK=D@Vf<j* L6%YW(ޝ:u|[]2#.5\ ea8H͕o}d>ӡxmUu4sN7*01۾L50@3SwBnTkbjb__Wf`'nqq!fP*hD?@A <XH%>vcg@ nt=Cxm!h]~Wf@4bP JxO*F-PeL>}D?x<q`=F%t~BJTa"}2x\^3q6IMS 2_ e cmK8-7AJAynkURd|5P_P2E>wic>XRQzf]L14 3ٌǃ lILf-U})M@~HA>$;)M"x$&}qlM] 5Q:+I\5D:d1*&*i%k/~%{7y#48R17]DKQW]OתKQjZucidfQ>k=T:Ϡ?'I6JR0H T/iUPWhgPs&| I.2G2c[xo*2<8G^W=b2[i^vjO9pHE4B1/9%ſ{Zj!%1m; A? 7)3&AH)6-v'4!#+!\!%z|oqRTPEp&86!6e)zCV (i1^<0B&IWQpYĨ+x?}J.c^crxmk>eT IPMK^OaR(RG9a7*776:);4d6C :;K1]ytrũqmA,wg-IJ4%mBfԜ%.e ? VuSlzw?qo hY=@ 8oW(;l47rsM1t[\9rĎwtt,zk#i$pp8EjyckTz{x<jo̖ղ!@dv* Œ΁" z v7|w zw|zrfgri`SnNri1 X vN`_H@~.  DĹk9[Q*:#/pCf^V`3BE"U gkPs9\66޹ͦ?@ya/WZQI42M:/8!?.Pszfk!qz_({@]5<|f 4N -gc rt1|NoJ 'SV)%>" cFR>0ja-jlRJjg44qD:\b!yvL8#O\]?Jaj^9rrx/caSAQMB>H%qB.' A_t0pJ?M*Ru}mhȀQ}V5I' 9gy)NwsyWOB`3&Q1s?=Y"5BTRA+\GxF[-FA]FO!S}%Vd8 zd""ƥBWLz69vOg54%X!Nk=Y6q i6a.5.eJ:k͇֜"Tw{'8R@m I3I@@HWWg s"t-j/Te:cKy`<^V\lAp20|&DO@u«9c6B48# x%h^pV ?G9j/N% $t˛zh|0UCvtkCoj_kA^)MFt~ED,;W$ۨ !rq`[oZXpWʋ/HuD5f]U+wO$Ek!'<x) , +;-B;ToKͪqż\ i @&a3':H!X{%3g)+lnQ&$n kv.(Q(WK \X 8o+ ;=8N;@xEAc5a33>=;:rkFK,DJ>@=44 23 15-s75.KU Bvʝ,u]wRc6qo&Xr&<3`ݝ*v]Oi'>H|,Y_Bps0LJrsl_*=j"X@JH ̬*>&O\yS*NowNh PjiOqF=v3t'}z%/e)@0a4 )@Zz5rZҵBsZo;]|@2v [Q3>˪a&{+ZKn3a][o Mv7[:nQgz@:4_o~9γ,  @aio( a7mIY~c5_yX Z]3`W[I(Bv?[<81 .k!dpd7,eҡ jxGK,$y ڟ \v3ǾEh?gZtNUrE)+}h9XVzjzH:i/&Upy""+C@kԓ?<]C[x$%e3=$ Qh ;}[8u}ğ•˾g %X#}&AxB^fovYU>O,=Y˔l?%vP e09:vLJ@p6^onnwmhIqVhGdB_AW?gC5*\(C&b)/.<," r"_$%3r PRB6`$wAZQ0tХXsm4dK'( WA%o A%2eDAUo~#tFG),oVu'e)P0 C37N(r t\DM\S@y2q|ncZq2K 4%!";%@  ***88i@HF8L(&ThezdpH%r;RN{%{h(O_ļ`)(e h`/ dWE`X_fro3{\ësU wnP]F'1:X;P1_)+d19;;;?M _gq,z5}DWyg2nȣ5j}h1CijV@kjt}dC\aEg7n+pbgXNBDv8U""-ju7hYQSb2bK9K+-zTl$MG&27BJL\mb~{TE~vAfgtVtQsQlQ [KnLOMEYCjuC|O?+l?{J&X$g{n"qa~ *  ݷ1)=Q;nq_F0<IXgUu{>pL-w -O0;"S#KpTtV jx  u#C +$0*\"^"3%'[I"%/s S; ,^6[^V)}7SyS ySZҌKpzeYjFO~$C[ #?m>D9h-&4"!C#}> kSB7<ʥ=;-;f4?/"4 U>jI;KG8KrPxS`OA[t96'51]%i+K$'n,2U/~(Q'(:'M&Df$:2s=S\t5ga1c XABeW_}t.1?H ."G,[]*Aea'(r%5 p7 N>U>b[?Z'ǨwL&8oVXFi4|/Q} %;J_jQKS;n:U.[Myh EY)MMRR(;e]&v,\;h!U>j$Wcu9sQ]\ 4C*kTKgmPiy}҃ FDe+i ƒ@~}P(&w6k=XfGd!QfWgUh!Jq@:&5~i-M[F 0{ w E=JC(Q1q61#QC w ==up|xauldDbr_Q_^s&T@Ď-M}-?mg\G +(r0bv&4=/I7U#U^Bt_):WP=LpGA-C6-}*prm'fY B_!* UJrZG7-&MP{6wo8`/SLIOAHC.C ?$F5xTLE=eMrO~Uӓ?\`^QR YG'>gIO6pl.{#Q[Ua'H\2 !?::B[QT,mj Bd  c ',04;J?J: 46/<C!E9U1JfENҀQZiyzo 6)ُ9@`FڂO{X5|_&w`j`Ze`QicImg@Y.cA(L ZMSupTu6Xf1U9=#dS D{aK*V@Bf:D9b%=5U/2:D3K^Jy|LTQ(nTkLS@Gz8`~+86e0}`U?4  V-.#<6%O0BhSG=gxg~YAI¦N"/.`M dj#5S,To"F<ŔbXq 0tgߠC9 lY OF6!<$!y DaF':9oEW\|M_H3'!!u A\*;{m@k2 lbъ ^x"k<:``@^p`Dd1obO\2\Ty]_&.]USbWםY\_͒\0\N`L~f2jgcPLfkpGochf:fwhfG_ ^qe3pM}meRjjNG4@* _ٲ{{ykzSbF=qi)x*o].`SOOS{TV+KaDUo^}ZsGshRr\/#Vi0߸v-d;ZLcclyml{0}Xbpfʯ\l`PA*S:g:>H:B?>+@^@AT?e*4y' ױam%$G,f?AQ$`luߏ Aϸ5g Уm%e?S~h}G(;*#ȑA[/>?@CFN}Y-d)kܥj@gQngpzf]dGZ1N% IFF D F? K@ D IJB4b=<`;8 .!!ձu \NqU[<r!2Ħ .plsWV@? ).lPAt`p%]WB?jj* r '5&mp+O9$7@N&dUEyh)M~wڴr 6ХX&r6Mbf`~ G)KM&Yr!v:WU-wqW)tXq6.iQ i[~} ES\`Y5zGcHD,^ ߹ F}{tjQS/2= $3}vjWh;C!KгOLuyUjs3ZE4MxA1Iq >ms H\%RjDɆ?v%-g]W\R).J>3}6}1*C.6C,*ԇ/fQ>R j <DD | 1U4bPgo!t,=Tzh|o]7KV_"wt>S.^.cdj=oEUtt#iswV_*+%8Y>oB˦oECP;$*)J.N]'5R_q޵d Ou&[~s'TGfoJg2!b\l[OYs*z4s nqh_v]YNS>Ke/uD 6; y+r}gkP.x2M'?tk_npXȿryCliTA%=r)aoP ?]+<># ^TVFt?{7U|Sr magZc7.h#$s7F*EPڡY~bh}hy>`T)*J'DF@a8Kw1ʞ.ou5 BiS%-dOsxm*ы̩֟ ^Lm5t%rF/|U7fAuJXQQBkMwK8J Jd!HhB $Af#C59GM&K^wIoHL}PPT&QKtG'B;[/.F~!^&>j)ЗNJ-1r^/DP1jEL:f++jRA`h7vSjEH==)`7 M1a049-t=k;6p0|"(aws  mebc3duiz:o ctT[+LHFϽC^vEG+LU _afs,|o7~%Hl[wr,<\~ !l5Ocn(30=wP as( K3jA-dU8K`,XEe\p|py[|)xYtpɡ.leQ XJ@)7v,h,Z OrGL@.n5%N`{~.X5)SWظ0n{xuYlh]HW9NEpC 1;i5-#6=xd?}B!-n(Qc3=;CFYK^OPTyL]DH@%q?лA; DCFFcJN P.M:JI3*!J@JKTLIi)IUO[jyI:!F?l_^#T *] L3 CN"hX,d2Gq5}j0ޅ&m]z VֽyiUϲ%,{ ~pPgdegݻjl8orey`:ztlkaXv`RfjMiPG1>620Ы0ϊ.m.X3cG;8eD(jIJ M2O=UP&sLeBC!<87 >73/3-!)m$ JgkN* XIj^&)0|;S@LEJwJ QN?QTYY?eIu^Ydݭb__-Q Q". `Ktf} +<C)NZvF)d fA 9FO^}l|1 jth QN{cK2t/`7nKw{|qv$gZ,J`5gnH(e2ma9s58]yH /.`wspU4|N,iǬ6Jә&T#w4sr_xOrA"1 zx9 6qwK3FjKfa8>2EaG"nY9 lSoϿ< Fp(~qH=gJW%h@OdwUʰ%d:lxN6`CпwgYwZL`[<;:8(dgLQk!4N/H3'cϮ$`Ht§R-`^xШmwcVG\:W8SN9KnKgP?N 4rP$N<&J&FA9}Z["Nz#1 @<)!G4Q@?[Mc]W!jD^rfG|oezʏC$USWRd3=z'2Ns_Kkg@geCfeZAb_#s_<a/ic2cdzyfHjun_r(Lu=|j1%n.ۛm5scΩ80Ә|eqrdԢbTK@^H*/x[_j \VNe^0)g t%4h?IPaUVYU* TJRjRQ7cT\i%y;5i] yG{_,>!6- 2gML2NgBPŖ]@gn7nr[iia3 YPP GQ=b()7<5}T8 n$?DΟJvR6[~FcfeA`=WxL=<* eaPOhTJ#+ &l~UdhjS$~@Z/5 MkxLr=[]cNpeD;K<> 183$2"Y0-|%rz 3vvnag`\Y{[~s\\_GcC8j/v*6(u%?f$vp'*.8)E V j!y':UqK'ҦR0 k)k5nCm Sci !uY+|z8J5Cap{ /X@?n,l:( DE2KA1OLNXWKbJ$m1JuIxFjwq@u;B?%J;' i87}66w#65t7ce:X> K>=<3{;K-:s*:m*:,736<8GW=SC^H jMtR|T4TJjP҅gI/Cm><$;'K=DQ c x)iIhܻ;)  = .'w,0y6>HQX"Ya1k%tji} l̇GfzIl^CQaF<(3+R&%%(l.߮936r:ُ7==ES;rxc4p*i|df bbmbab}djk hOj5-mq[ x1xXm&ǘWZe&6u_B/W. ëK r _L :w)8K >14oMIivHϽ ; i3".:ПHV{aijU|q2Bx/c~ۂń\MQ) o}uX{6{b|Ս}n6jǍbC۪?~gH w]by :wVs\&Uަ.!J~?r]cex\ZdR NJ%MNkR<Y]`-iArS&zAcspMUz /x-|qt=lmlGhde"]d{UdOhMopOfyS̃X [I/]=)^h]XUO{B7t3_E"F,E^4׬H osQa[3)N9,+#? 05Ct~e+Pk>v/=!r0Y=t?jP% LJ$*yz1@@8oZ>zzCiH[J~PKHJ>CHv>5Er;BS:;@:>=(>?-A>DNHLR6W_diorǁ?}Q߸v6FLr(bC]]vYAɎ`Ƥo{Av-2 t7 @)&$ZJ:!nU4It[X"7#MY vb#O7pGWhTt^e-ik:mo[pNojcdH\UlRE5l$ZP2G~sPJbpiPp:]%5|,Ij WB/p֙9K/c=E$ J6 eW4)5X<@EKpNNMk/cKxAG-QA^<Nk9v8Z;?(Ea"L)U_{ju sd~*bEN8  R6ʵLZrDM|_'xEu:rB)nh7_R]Bc-x.'xU8ܼȍ~jXp8;d[3VvTaS`QOKE=ǐ2}x#$O ~vp-l bi:gȎeybHcE]KU3K@Y4'*e a,l1~%{v`q> lh"fM/c;bkHeVmdzqtƋyאK`ܢC ʩ*nHSf@+&+)} },IZ f=T<L-t 78S',3mA: EN(NSUS ZO6It%Dq?;7&6_;U7Q;h?~CpFu|GGRF+C<R3)dnm|QpcsOV.FUH2'ɰAݍH{Gg{TXA:72$D{[ ]#ۙtvZh \sPTF4;2!)#7S:w<{ukpgkjfan3]]Y:y4Wg>XZ]QegMsKLrOVbEctX)&`!D-AU,h:bz{GɊPSR_fm>}o4l: B.%@U8][z}K2F +.)%5(EAT*L*dW*`*6g(Ni$Zf^Sc F8)P, w72/`5 Ԯ~iS^=W(EeiFޔYy&1iU< _HńKl gXSG:1{-.O5@W? JNVB`jBrxN}Ȁfx})-bFګѺ@̨m "78#JY!eknuY{STنO5F_PȊ^se!WPH8J) rA Q!7I?XQ7>t% !s-D8RAGLWjPOSn7X"^"hhs~Cɞ`8$ ]* ./-/g.,1*G*+/6 }j?At9KkOYdi`m|]ZAW¸{SNEIA7F*Oa#{ 1!?xO_\\pߙJ9ckPȗx5* Y eyv-n#hB~yvtqcl}U0>y8" u-o&7@X32pC &՝̵;uS\1G/6/H'P#po p3<-ATS:BdrE z-")/m5;ԝ>[?=!m7L/F%J (Jra{RO 7;g&7"ZxtyhbN3hxoUB;=}#F 6@ ~tG0m2g|b]`S QeY5{O0lɭe.a.#%>v=WUpny4ѵ Um^-?2M-UlFakj}zIF#)6J;(0K@XTdenWsu}q{Bmf<GswbkYBC}@*uBm ncYi1OX:GwMA#Wr<771*# gSdSK;4. ~ke\O+EB;Ӱ1?Z)' teLC E9wro}L*ih==Z7H~,cϘA_yJqh:$}^4cRHE^r9,w.t$Ah W!#+:]maVddXAf-9gebWT_\oY߷4XTV?U&S@Mu\jj0u?2~zhE"ш3C[R^g}pF|x{},||fw}E~I}*zbt܃Rl~$bxTUVqEgM4<\"tNVn>,3d{Eī*nKzo]Zg?\Gc 5#}V`=Az%Be!UJA/z5C:ZQ ʳ>լij_QJ 9J!v| ybe{Sq׶14%9 Mw b$ vf'z7?Jb^"r![>1]UE~(QM$39<XUw4p|ަ[&s/yEY"k'z+04a 9^;ˢ<<};GF9tC5/),*$dZvi\B[<~K:\*?p#9e(xTc?Ovp>e0%&W 7ڽJcu?{+ 4(/Cvnjr`OYlvTRaQHSEUW$ZR_]*`aN%fk"qxv!k ` TRG9|,4 o T*, T'-`389xCPvIw)P||V -]_eo@|S(ŹڗNlVYWL}i^T@:.J@ T 7dq ;  O {%" L+OU4i=CGR*^BjWwIBL>&io]Kqu8kD&w '2;'M^_q8źҲ'%ƒmYF5'&n/: '[V7 82OZEtZf"ȟޢо|;+i9[7.>C%X2}Fl`OC%.""\̽1~RqÅ{ksmC1j]h+gJgh,-j:mGf#1 }/ P`Bzl7!`TIJ|p@U7(7~-M"E spT%=V*"m+b+$$j;k*H:LKv`kv`ƍVJ=E-SZ)2IeJPc}{ry 2~gNiz$@*/5=RHN"T2UbABpN~^Z̍dʜnv {O|RxobcXTCAt3V#-|:sFRE_ykzvy@fX w8mi'?pWT 7p`8,>  l!rd WZqRkJD=72c.*A'"o\DGP2.hL(IsjLq%0,h3,9ٍ?fmE_rKaQOWG>R`/j"Uv &ޛ>Ѷi^C,H)9\Kb{@Yp&oɽ:G%4VBcKLR4%S;Q SeLjD><+3.*" <%k&oGhm!b8)c33A ^Ri&e67z/FfSz_*iqjz3C ؈$+;3{:uANoITijPBeAXc`d jgr"lzqJw&{{~xxsqj5gA_[P4N??.1X<")?zNy۶z3JOofTC9T˕ui??+iP<82\ B(~ xCg09!1*G+~n&=" !&I.7FA#3LaW&c)n*\z/jHWb}_@T; i+E/^#ArwS^g {!t!_A9Ub?]v:J/_AҦ\9O  |:1PB "Rw0#b<GqFQB] is}VFɋ{ҏqΐ_}t>kaXOUaEx?9g.,Y[N"^F|@V;4J-L%$ޟN S4zY1bvlbtlXUN5DZE:o/#&ҿt_ M=2m,@).)O*[,.= 2_5d}8k;pY2<"uL [hlNg~G6sNa42_eQboNPt~fPZf'DN4tB"By6N4*Y;ub'hAFipxe\O7?,&Lڮ:ǭ"ѻȬ6[H^ċ҂*xmnakR@B+9E?wh1GB^Jsu.Y?%k 5+L{lv 4l%1`<  E"K"M+M4L?JKG[2D?l@~(>>ܧ@>FNYQdZoex#u}'*0z/ ~4Zz9hs>,iC\GOZLBQ6X;)^_Qe} jn*o[nPi _)uRXOB: 0: ;Y~(jѲiUO?(ߵ.D;A_pѴ- dFYnjσa|}ywwukjq^nQWnFq=}w-8~5 7=WHWj{ ~ S0C(T7deEu;Ttdyru2ظwy0 8)YFFe}&]+-K/[0g3:S6 69; >*BG5EH?#NHSPWGVZYZZXW^WQRF"K8B%9/$nn .<io=U='v,{ ؙ)c|pg(-alh\OX4!TTNzIC=r5-x%t^w E 09t dNO ,(9J9hJdo[ l+|Z0ohYPB*!d?B^% F$ i4W[WP?'ٯHf pίMpI p.5J; `vm#Ɗ/;oFYO Wr^ؼdڷkXs"|uTe\VEH:.VQ$0#6?G WDf#uw J"`D?d)GN)S a |/}{[="3$ (S,RF/0.Q+&b`T߿JGlVGs4]z6HrD3 Ftf L`.)6,$*rl2<"I[W~gBnyC_xR~G<>2ne'% \.>iL*Wq^c!.föf@fqgffCfTfܰcg#h&Qk*Qo/tyTZՒ#̙nQI8BQj\ǂTzPqrfZg.N2B89!XX3Nx0h/1"7J@L{*%[D@jRyb lYQsJwy{o{ 904$:tO_d=0T{bh{VYEv=5En%gZcta-aEd)ffԕewcTX`87\UMF6 AR= m:S83=5 *|30F,&wBAP ~E1hnMO#6{F &m,9J|Z]g}q$yG~M4CDv|#)K3J>H RZlb~jbJs|ZƑ%m޾2)]);ULM]/0m ~;ۏT\ b m6'.4O7:ɤ>٘C+6JӊPvWw]{c(h/:jite<_TF3r5"AiF) 8X'X2:q7AYQBhcO-uf yئ%vr};X4xϓRFTvne$[)P, E8.8.L), O)#NeMɫY$9F*uz6eQ7Aݐ3)h q drex1&H;_$3vCw"] DS,^^2-T`v?2ACXv$+A5nAJg!gQ) W3\=_[IoaUac*brbbb~a`Xatble-Ii>mLsUwo\y&`xaubobclhd^eQlfBf2f!#e=c_`SKC;c"4mD+;$!; J EmV|?vM(<:I/_Ԛվ@Vn8vp n%lղljyhFfǃeVsFelb eQfAi@4q*}# !)& .c:BJ:\&&ny8ǀRH U% _itg6o'x/Ɂ hV .VADU0hzBg n1*AFYGnC)/ m7dP#9!bC!{9k9'#9 {!/2!MϞ {fݭQt=+z _o_f_@[YZ ^!b_)g3jmkwkOk}isbf>G%c,_Rq^_ aKcLg$jθUmmc{jBcwYK:g$ zla{z  5 kCA#k")#0-76?>G2FNMUR\*WdYkZsjY|uVRELDձ:/:$feq P _!r / ?a PAbYkvE|Y6 okoj an0)$w9_(JzKZ9j+w :x{j7XuC.fak)t]Iim%x`J-7%V i x~#L<$2FAO8]k6y Xwfh rYXI7p %kQR?&Zayu sDqd'q:s6PyfL} 3ѡ)~?pao/PHb{|ߔs~i] 3b,\OoYcsWWʷfY\K`e j#hp{+v80,|3 5c8ʓ:x<G==û>=;9z 6<3: I21<%2$3'6O(93&;a!;n:7 4Z-1$7 =^o6.>#_kVfAVK*.ml ZjgI@R(d=)IJUfˉQwt= }{R{˗yJtmaUR{@K-xƐ^ :a~m-[jV*6;! l6L4R`+Llpd;}}חÌҏSS"Hz:3uV]r9H z"v.GgNm&&y=HTk4Le~Tѯr$  JH (8;/3 6Y7m550)z MmxV2r{ lqtfjbf_Ob_^uaZdThI&nZ:t %Vy }q*,ɞ̀w%O&3Tbq<BuAć@v<ۧ#5w,#\K( *P$X2L@LvU YhYvTK,="*&6) ,/-3o16ۣ8:sv<'`M@ID,3GJIPV?^fKkox6 \ƒZM V~Azr+eԒXQK=0!Pj\x_WobVSˏ2BŁ/w p ljk2nsy{h9x< uv@*E}`zbmHXC0A=r W^A J(Pk$!_<O/_6aj$ WqGtp>v'wE5yXD{T|Le|v|EOzQ_wrl7f(`ZbV,RAP7UOAfYOt/N=#KlFk?6 +M  ʣ^L[ƴҝ;{p>YʤBޣ(> ;K1}v6mX[ >Iu%8k&5[ _{m7?hY Ef ёjڧg0ʻkEk WX`@.D3+Zpmʕ|~KnؾJ͙P~W%( S}&{4BuUP'\a&g>xpVwm[}dܙZ@oɎ9Uِ[$@ ., A 52~kseUNdDy3Fm"Vs]؋GʉD[nyV8Swnapmkitb{!XIM6m w bSܵ'n-|w!Ptm3HqEmxXhMk_~SjED?01tQ =:q =kO~(TeP7NqFF9U&0"\˺.z v4WtP< ;)03"4ȦX566645ͽ2,/*$inl ?h^0~ZVݾ "{ʾkl\pNc?Ry0iJ Y$BH5!r "mDŽdp~Cц%"xmxVsAA.Ƭ,-j0-$E#geA@'S $4D;/KN+a_vnF}ي"~{{FDbvf_W8y,1lڢwqyv٨kJbZ [}1VrS|jReR cRaS<^iU{YbWQHY G,[88]]%`_dhFj kʉ;maGn9Inm~jyh,foQeIcd%Pb`$_]N\PWiOE.q9ek+\{UFP}L+aJII(HGMG|jH:jL:XsT{F `;5n%K_ ٤&7NmyX&&..75@;K]@V4EXbBKMpRL\Fg-tU~Vf[gAA Mv^a?OEHHz?B h J ,2H8=E4DVOig\Xvdi9w~ҔY= Yx,} ~+{Wyyz},R0/as||)eqN~I7 C }~[[ Tܣa ?̍c2H\NCo1yx=mnaeU_IZ>W4S/,P#M?IuC;A2&a }M٤Z(-?OڸZ}V@_* 2/ ZNsuOhfYD.GAS= aqZ ŭ~bv{nbJ*93|] h $-?[xԯ}W+ Uȸ0!8%)4_.39/ @GyP%Zxc &kDp'Er5pAkKocSXZJ^89 b%d]hoy HzeZo^FQFn=6.0M@c,Qk(b$5uHN |1CJ\ QCD0?{3M{dYDN+c9k'ryL~szDrYgW&9Dd-\fY WO jƤVDb4v&k~1 q!"K. 6996Z30~/03^8U?VJÛWލgxJtwhh\=Nٹr?>.Aa f ,:رI=YKie{#[zr\ 5;!:.Q dbu11H V`ʊzp@ !wVk]KsM1>I/>b #z"' ./]t#,-1x332/),O'ut"֦ .Db b ۶Nh3y5a#t^lHI,3{ ٫Grp``2wMa^8PK 3vn/lůmiSy1<`'}Im3 | ocrKI'Sb+7]C`MWU6]c#i3Co=BsN wEZgzd!nHxZŪ\ 8M"*_Db\ֳsԈ4XYA MP -}$}Aaƥ+aG */C> YiIVvC$8}L_qO*Glk$1Q#H&}ƂyF#qBjue# b4I_~x\mX\^TOsPBK4vFR&@a;]7>55W68u:No=W%~? @>;t8I 5}!1.8-u--%.v,e)W@$VLjB} :r1((l!H^kd W(D54FU&0[>r1) 1rw}ky%R 1q6" c*y+C2Y75;CExPRU\_g)ns5~0"jJa[rD~B2$I0(<IH(-Tw4_eDmk=WwlpQ?֫&> "oQ/_",3^8;%==T= =<;60c/$3A:jwWQ8fXT|H1;w}qmkeQjh,gweaJdMaV;\]$*bW4wP 1IA:@2* $: @1U$jE{pߺf\7R G;51S*%$8&z+O 18&>5dDH%HM]IuGu B9-[!G|" 1CI3bq{nŰD^_P `(CD\p4+(8CNOO[eiLzV|:r&hj^UYM D8L=;6HX?0r)#ʮJV U$;` GXr]HE0+2% :_$Bu}|'-m\oKn9\@'C LZ" D, ,}~3,@ 7)2a=IeXq i+yIه3[x̉Dq~y$uFstu yh}t83`@c)h?Ttj+42?(Hq ilRyx ? zc$)(pQ*$@+j+*(P % x*~U$tQ-j6Fa? XF;PKoJ MgF.KHCD\@_9=Y*:8R7t@2-+ r"^i|P߮ΫrPZWHamo\W~?2)7,u 0+MD2=Zqq;~.ư-ZH:"!59&HZ jPyyH̓q F .} 7-yq>Wnm$v\IB (`&"3@ M>\jy@7P5[h)ɣӏ{!qf,R31>79>+=+Ax D-,HLsQRVXjW?WS[J%>|,cD@#J $p;XB|s/-z2x$3@gLjV^eeqj߿l!nP.oqv(B} pv֖kRֹ{mU_QB)A e0n*Y:xH\T^ fm's5x٩{V2߃g8ؿDB  h$)K/j)E $\ztlA.˶V&)=)sDb7;Tպ<`EM~3iXd2;&ͅ"]l CЊTs{z3!~vbvmb T` C|2!>{!!@@:oMnwixh'XuGZ5>#!X Դn˜z&`eKn%R-YsAG3k9& 1S.0 b8C&Q,`oy~ ы9vw#%*Z/47m9*.<^>f{BGGMXV`ikT rt1N{BNTyfJXy{tb l0cp\pVy9R:sP7QUqUsz[c7l w[% f#X<Rݺg?NyȈ }!Y9=Qg{`{t:Wó$Oo?3q*A MoVQ{utg#n Nhy6c]!O_i\Z#ZgYXڿXlY,[}]^^<`_ _i_]L=Z\UaQBL8$]IGqFGhJcM OM8vHd@ U5IG%:;/%&o!fv$|fP-1Y8ME/DTF3QsڋpXqZłCă.+Si <ir1Gnׯ&{tQl\b"VVGT6!Ln IRϕX`ȕ)W|ovtelocwlZjQiHbh>f!5ne/+Sc _&Y O C6V)#X_:- 3 (qT7%"H-Z~3ny6S6֘3R/c+I(d':p(h-*4>-L1.f7x3?1G~vOOW_rfP^m+v^7!>p$@'=h8m21+#Kw (]>*TTjyR\NSkY4G$f.}4z)7-76m5Q3J0,*(V&w[&&|b%@iI#qT> >7o&h #TSiM"QRsa:u[2&EC0^nH4'*Dy  >$1,s3pV:ȩQ@OEaI}NpS@eY[`RhIcrCBi}:PS3{,%֛G!uF "X@&k*0y,9tnCLoN!lZj7fakq mN}[o*Fr1v L{ ӾR[_B]vz@Mid3 I&\-"mB|"nx ;_Q'61zEZSy7`0kvRu{}@w|HGxr=mgCb~]ϩYX#Xp[5`Tgn~t5xzuyuՆbnocV~G{Q9 x+s7ni ega^'\ZZZ}XS2KN@ް1 ! R6%2ps_yO@2&%q19oM'Sb u50 } )d9B{J}a\mg|lߒ_]\Va,P C>eye`ns`"NK/Q3@D*qkOӈ ac/8?ZWO|^vmn{c̈V GҠ8ʫ*#oXOE)1& 6 7 8rvD =w-#|;PhQI%U\VhBb/o}\ ӌ}u!@2 ,, !jC;k0ٜju}^!t1mCgMVagiZ}x~RI\?۟R3a%b~ά ,:/D o2CbJL#\i2"B'lT*fS*(z&j6 .e.Raw.F^hw'ܪpƈzYmyb vXN^TE^< 3Sw,Z& r &g |^\BJL @ZeTp5<Bww~jܱh_V*N`v Gjc?OZ7:3-$M! GH"prWf[KF3N{$:smBkV m r {. adV|W+Z ߿X \$( .*O3m 8^<@avEvJx OLV"E^/g>r'O{FaLtc"آ%;1y,/2MmkqLxYeRW0bKPg :j] DU(@B_[t5EHsL'CFWA}d>ue`.=rsV:$'~raiaG\ȜiX4MVrU^SI,Q3N@JWHFyEµEXEwGVI[5JhNKIJJ@HYFPDefBMMA5?R=. l8!1e'H3t P#>&ƍ8~p5dY*ODIa0Fa/EaKFIPZ[$qgrATv[p9{%7QDD!W1SJ0dKm|0,m"ײýxd!7z6/ůêjUJ=>ͭf W ^}!4/w;G S __ kvS# ێ1+,i! HӼju yrmq|ige[ed}cbv`e^AQ&\o<XN'nT!OKHwEC9B~@o=Y812|(u< ׌cCKO&mBA]PGB5yt?s^?n@BjQBZdB\@RP=oGU8:2**!2*J:w#0>rL"Z3hEvZ/pO7E09èK"Vð/Jeֶ~J8[XzV. JfA.;&%GO(UXYX_TN)JF7=pF]3V=) hR{ ̿.UWf@)y6?CB>8K2,'Q>$ξ!p ̖{  1m!YH"&F!!15i Ppr+9}+"bw1I(|2eP<Z* zL##b"@ ִ +Ֆ,9#p, _b5'M>+;G`)NU\@WcjKq*yp½0`Zǰn**r,:ICY jd{+$.H JJ",+aA/@W1m/8j-%,,b/-4l<yF[RJ`roV7SJ Z_Op¯e4O~7!gEP;Pb(]z x{HRwscZpnl@kih,Ifdda\K5U3Jd>U1"]Hy`fn bc#̅\0}<*vGpP@lUWLh] ebbiO`Nq]yW\PGٗv=۠2'_v]yYk{u>V,W(@m6C۩P{\,i8zuEeANc7]A!0Z ^Y0-۴Ũ9)ܝ6?%G KK&LInC&<5U0{,+"- 1}<7y_?"u!I3q TmN_jiiRcrtZwN{@~K0= M RufˈYۑB7Vέ$ @ l/fCOXoaY\GS<MVnkXKL/wv z.9o<cHaX$R MX@\3]{%[{W NQp)I{@a81y*6%!`F4.pf.9Ky YŒ2I uyxqMk9fuR`b6YNO8D 06e'[ JΔuyq`I6{%F BHÔ/?w4Y%T9Ӯ`&_ry rSf g2C(8|$oL-c9{Eה&QG]iis|7yKPIh71̛pi? Y(iDq_Yzp:oA1Lo{a h!3aTJ7byy֏!F/AmV q 9 (|Mt1^WEv+!pT] Kr;[1/X%Ll,QU6vcWx7Xt[iZhv{c!/N)6~1I@7C:v:n[8Q4.ԁ'mW!ZK>H"4H*!o= 3" I SEt :#I)2;u}Q5j;zNCx1x=9yKz |kT3SԊ)k~|Duz?xHt Epjbǰ[`UP|MitKXJ?HHI:FR./D$@$L<E,6y- !%bA{!?f& -}qg\TPC5e8+ #6;) Z9w  {ag|AO$)8/'#n! &hDs %S ]!W11DXo*օ:MMF[byҒbN.r | m ,9DO1!;[P&Zh,v3~:lA՟cFJ{N}RȽUھVXN<[`g%rmI(gްL،wh\M> Ɵkk8.F~ORtKiz]g7N<w)+ychVB_,;p_3br=gQ_KWSQu"MgI[qGSE8LsD9FhC`@Cv:Ec4OJ-Q$Y c1 oyΉj4,7Gضx$\^BJi)eD"2C)Wk^W޿K ,# `|1?JE:SY3_Tbr.e@eTeie~fi[nȱt|!b' )۽C$^sp]KG1% LSc}xÿpjЯfɪfۧhumsMzQįՊk._~kqbRAYO1!yH0DD5Ah=lԶktI۪ߪ%ִaɺHSڷ s ,e;GOP^W'\_aIa^_d[ZVQULcbH#]E,&C2OA7a?!;L=-=s;l>(:>391=79542[-Y-%'m *n =V\tT;|{{|8| |P{Ay7)t4m@Pb3MiU9XGa:kg-k#n4wqsxvZz€ cz*E5AMYeq}(zyklgZG%!4(!ta]-qa9IC;ZKpPS TT8SP@BEIgMMQT$tV΅UoQY)LpDE/R="+5, ?-%n&V!ng 6i$JN%(A^|ËH8 }oz|+x>vrQBtcNp3u!k̅eba^^a8jhq(;}ے} xr"X-9FGUNfv̠$ETKێTO]%du|خzz|jܽڣŧTgp!2Dߜ)WhIyE|qg~_,eXfHRlLYHDVB 8@=|;:K j6d2u0 .L-T,+|*\*{* j+, ,©*y&B!P 3}t>!mgd,cBaٸcfřkowqfgpWlIZe #(k#F2CWmDz?2%5 ECU*eu5 N$'C*,-.)0012 C323 '"314 ;6B;HBMxKRUVaYo1\^aeƶj!0puYp{ـCVH ňz݇b!<#np$"s~\_9!%Lk8wNj j$wٝj )]OCO@Bva1eF!QQ:d w:pwq)fqVЌH[/=ے2(}W O2;ѧڪZ s jFj3hնyxBe\q.)>UljӃ̋!j^*z2*V5:lIrW1mdpq{9B\56Lś`ߜp}ߟ‡uc,ұU[zp+eYzLd>u.:cw) ԴL3׬KfYQp pڷPG3 ؙ:qG|kZ$YI 7C%r~ Vw¡ (!{9mڥjv?YK0i(+| JV(5U*< f+[$43:?3BBAh?_'>j<:O7R4D0x+%!Nn "r9{zq\jcd_`i\ZYYEXWPU5T #R,QW7gPBoONOZOjemQnTtw!Yb_e^muҖr}yu`ߟpO;&w-k^9Q"B0B3 ?#oMl|[h2t\~~iӠ1,N?0̦ܻP{Z.m^Q}FX;=*5d90,:m+5+ˇ!-x.h-Xi,H)[7$K&|U/. @.;qoc6z 7 -5:M GexQ||Z0a f]?kmE1nAmj>(f;DbdL\\VLlOzG 3= i2'+fS x1~X2 >3dW!&+~0 5&\89*f92753{ -{Q$t j!/Ŗ 3~jpTaRb!D4[$D?x$WW~n!tQ]ZL A>(_1H&mxOF  "Ag)O! _mx 1>' /}8oCi O'ZG-f03rh97!@pFH6MZR<W _b'f#Tkg7pJ]v]{p!pn8zv#2 r?gJr]R,X:CM\[/]vZUNE\<o2*-X$&#n't)K*)_']d#E [;v ["ŽK}wdU%T]Fw;r1xq.)s!xV=Z:2#lQ'AA3:|Ɏmi VRCz0qg \]~ZSxI0?4(Ź(ڷ&:}yk';^b:QMyFa7 7_0'w[EfAmF(Rp  EQ-r:GzHWCg5w E)Ʒl2Q\%g-r4}y:->^?y>~<T:Of865p"6s 79&;I2=;?@B DEGD`MBHUi=,_I5j*jwD2q,.)РxT^Kqśŗû0=Շ{ٛm\HwJ`5)HO!- d}vy~ i{Uߥ@-P l,Y{`N׺[&)qPЦ;KF\2bi}6zÿs6ia=]cM,<[(+!m z lsU ;}Pxhw{H߂[pw@JZ2J l|hqS='%:<"*!"$#&( (k( 'Z#ƫӳy:q  &I>: d<ux)vX3u;B HUrN9SpWd[ͬ^ŮaaBK^XPE8) 9wjs\PE"=54/ؿ4*$ >Vl"0',.r7AL(9W6'Ea-4jj@xrWKySZNb_!bDb>b(g`^5\X[TNH. \B;:p)I2v7(DO"ZFPd{ o){CLE6޻B$И! ݙVj^ 4ڡ_-iJMB>S w8lbjtY%RvXK’8Dh<s4Ob+'P"=S,-_l;Ct% A.D{[qp٫p+Ek $=;$Pbksxt"Y#ft|?ї`r680  WìB &KDfcx n- <_/ISk[@aczdpb+_WO[VWPeJxEB?>>(>=F=>s>c?|Q,?<<#8k 2k+I."Ȯ&=[ Rp&Rt4,.LR[,{Nq?.dXXJOHCS@ @H@B5EEGGmI-JIhHFF$sEj,D{3E9+F?HKFNMUUV`o^V4v*i!-Qd! a#]($$Q%&@)Y,16:<O<:uN7a2N@-=p'--" n1;L*"  q 9z1 ,\<JPep{Ssiai[NQU5OiID Al??7#B$*QH0O7W-=w_3CfI_mPtXAzBaaipCx<Gڄ~v8-mrbWL_BŅ+:*{2n|,a(/T&&G):h/.9"G}WW ck?gŕ@ڪȿ%%_N4 -O i2!B]X WBU* e'4/5S;`o?d?BC.ADCCtCsD +GLR S}Zb5hLmЗp'qpNlkde[ǂpO}AYyo2uT" sp5qok"f_ٵV.LA4x%k_!Vs9NGyB=9vN6F]<3DJ0-h-*(%Q$!%p'+}06/k 6uH"R%1A&Tfw) a6d * vg )+J:B6I@WpJKcFTmg^tOiQycuzylv%s q<lq_r5u%~z8&< 3T=$D,GH@JdJI8Hߠ|FC_@S;5#/s *'$ 9d5ǮP]-RuY_UH}R2lcF'CpˮKa&6BQ $(o5]j D`R-vmUd[9lRCIBA];8 78-: @@H"Rҷ_sm{6!Nr{]0S^3%{Qq|(*QhG!7K:]dlytl 5*& /7>CGe4JJHE?(8M.(" JO\("*16p9a:9Z62.l-)z$Vxyr|`Ԃ ]mͷJQzQ]" M܂/n$B[)H-70'34<8 =MDKk;S-ZbHhm6phq-p*lYfä\PD7C-ۺf$Js{tQ ,\'u@CpQ-i IyFxV0sM}d{w"rgjGa˷VrJ$=rG/!kk: I9^!y+n H".;aHH&T_6~`\DrkOuWY]Ҋy`Ca:a1 a(`_x`a bc2dE eWdGg8cvH`\VOEF<I2 )#* @+<Jk"'UM%g\U'`'a%_"Z+SI>=2G"$hDpΌPz~hGTXJ4a@E8o2k-'Λt!'%Mr4f[ZkODI,;3ݸ/.17.@6KWt dZo{]}JK|^xqrkNcY!PIFU>h08 2_(Z.W07*9'D%O&b[?)f,9r1}L5Ć9Ԏ`>̔CK{ T_ܖ;m[d}@%P|G7|}P{.?O]j3vUA@^ =û}ŠĞ~n˘T]cImw3XcB'No&8`![ j{'>mV&\_Hߩ2ؐ xI.aKM=v0;( @#[!!\"x $q%@lJ(Igt+bK/^3}Z8 V>QDLIuGL=BQM=iL:Jg9H :vFDBFHIQM|[QTgWs;])dokqJ#xŲE~-,WԑO f$zk= W~oi<%(2 <YFyP\jz!>2Is1R)rhףMLɮxynaTou Gc:Rh/!C'5#B)"*%*075>&E9KP|Vc\]bgבmbrJpu^vGM{u<s .p;!lh ^e2zbM`w]#7Z{V'QGKD;|0U $# Zz(b6~FgXn/my|pbhb_}V UL*B'8P4d1|?B,lIB* R,9Y1^9cbnCcL3cUCa.]^c\hZjYjW/iWeYa]|ZcRhJliCn[<-n5&jF/bJ)QX#/K;*-;z ]$a4P>IaC{ŕ Bj3?4^M>fA~1-.po ./:%, 3a:(@CFaL SZhbKiQqz9܃Z vrh*[Î!~_tZ3hǮ@Z!JңH9]B&xwÜ"k GSQSt!eƃBUwNCm/EhGffnhA2jp*kje]hρ3d5l[^iVW@N)>FN>W9A7c8;wA$GS[N VF`ku jn))$NV/9^(CLTL^@hQr~[:J_94N.Fg'`5SD.TegwY {2%)+3Z)=cGI S/*^)h 8]pmE wQ|=\ׂ/e(lp֛s|t^rO}m4fe\QF:f/E6$(<!!B.w'bLd`6A\ Qخin)M2Q8G2 n/9MMΑ%``sre~nXLAY8/(#B fnq "NG%*z2<*I?WʗfDw8^yf8Owt(84R'qϞP/K} 5VM+!d^y ]SS#?*.F1s2#1@.J*$J".> LX]a/ghkf&`XOc"DS9K/(k!<=iNɠa )!U.Q<I݄V$tabjPr8? z.R ؐQ"Jڛ9MxdƣΖ$mӟϟx}5rGfY8ZƯca?M` >\: Yu3,VE*kT#TCUWx XjWTEPQJcSBxh8k,'a/YSZQ&PBPpPNJwDA;/z!jpZ)Ic9>+ M"G-^:HVIcCvo{Xf[zrC7kec`[R ItU<*t"s DtLuOVyb,p~ Q]NKĮ-PyE,G^o1E Ydk|h )2c;´ DMV# alx`y6/ˬǤO&VSzf*(˧Sŗ8HO'|ƾqeYXKT<-~+q.Vf \R I >A_3Z"b'/q= ITT^]ng~n G4t* }$q/e;H6$V1dNu|JįT@փlzOszkd#\3V@KRJtOR|N#YO5]R^_W_]^c\g[.kYmZ>o]oaZmg8jOm$ftOa|[UOIpC)>8C3wt.T)w$ku c^FFRG@ >(@7n60"I*Y`o$0{:<]̵m o 4~I\pKnAx'%N9=By}I}zfCi8~}ž9xD${ַ!t C \i$^>+ %!ġ`Ja}qc+TCN2k 2bѨe\([q9t \|D+e@/ <1\Is7+B  ;>-",'8 DAP\htkgc W1d9B1#y81P?< M[/kN{#m&ڡ.#;95nE>Saip~s.-)G'1p6 9־8?6+21.*! Kp1=TY{C"^P}JjpUcV@9*t:[HMlKUS:4}" q?X Η(wcq wnfV_WO}HAº;P61}.:.2G:!F]xFVsh rb}ruy<~ c"9;|VksTsC^x4Qmz<OQ~( =!V'e5rCQ_1m z*Veb4M|֎GyF|p9d^W 9KӱW?p3&n zgv%\5tD QC]ۍ,ii;tp`֊Oz=})X4zϹĥL`e[pte\WVQMJpGmz,EvtmBl?b=U='G>7A/)DHQx\!hsr> 1ufIxɟ!qԈhn9[N+pW[B tWywo%f]NUQN%tH@C<-BDKgW'BgzE?vܮ* 6$W/,9CL1FTTZP^0bcca]X=S-M'GFB&>2=>?=JAUD^HMgRJnJuH|C=672.,(,*u.1u58d;<=*=<V;$:K9T}897`@5v2IkO0a-[x*U<&Q O#MUtLLWMxMLJ>GSBE;330_*u e# W IVJ?8467j=~F2RB7_~AlxJMSbÁR3{\sj`oU=I<y0o $[&S<q %%+3C%5<T/D9@LCD*ROU\SVVjU5{RQUQP.RxU[b)qk@qtU|`h:w݃ ۗ՛КĔ\-5jGHV~otuhX(ZfI6N"& nS nѕ.K|llQ`[tlIgde7V&(LEDC DrHoOW`>hbn}!tx{o~E͂Bz0Gt`lme_]U&MG Ax>t/F{MU;\ӲdQLlsi{gўמPϤQj<"ڲu0Ђzrk'c7[GS3KgsCe ?RX<K=>A1H#R s]iWủA,ܥlԟS6=tɱc#RfB2r$" zu1l\)M'=i/.G"v m .*nMK#*J2F &O-W{>^8d{inst|xM|M\Ab_ z'31:#DKM +XdqH#]y)09DcR,bsҗ_&M-0)1/V,x'!j[8 z E "% 'L&G")֬?%xv3e4?S>V'~"o|:_ N]>.׀!Af M 4?;m+Uϫ4^؃workrave-1.10.50/frontend/common/share/sounds/bells/break-prelude.wav0000644000175100001710000257413014221624107024524 0ustar00gdm00000000000000RIFFP WAVEfmt D bextZREAPER2020-09-0820-16-40junkJdatax   &&--33::AAGGMMSSXX]]aaddffhhiijjjjjjiiiihhggffddccaa^^[[WWRRLLEE>>66--## ||vvppkkff``[[UUPPKKHHFFFFIINNWWccrr22JJ``uu  !!66LLaauuzzll^^PPCC55''llGGooCCyyUU33}}ccJJ33 ..KKoo99uu77zzII0077HH33nnooAAvvDD~~HH  33{{9:\\33[[$$yyTT11PPfgMM::yyXX!!))005544++LL##//66WWff00ttnnqq~~OODDzz { { J J   hhFF##}}11 \ \ 1 1   xx::||GGtt""ffXXvv99[[::$$OOba ! HJda|xrxYS`gd\ht " n)GtWJ${wgeZ6(uADz\*/qY|Bm*$KW_wY k o_j#QwR>ĕFO!|+>o@T6fE[FgP[;gzʫ`@ztK%quў>do[pPazUm2} Ά>u`zöɘrr<}$8 ~k5?Uhv^I0s>l:ErGth{>bC8Ne{1^\fkFE cuu(mJdoՙmdqJnNEmdhs?pyrs|crL9aw^-, 0G%X_n:_ivV]SZ0Nx]-FRI[_oS?"W"E&;_WgF*6BgK{ĎBW ^=4>*]?_*~%:c f r;41EZBEn6`''o%R_;1Yѝ Sk'qe) kBc+k"\E " zVMfY8^rr~8&A_o`~=JI56u$d!ϮkGϷp:{@J6AW*=Yp Ako @ > Y/ǝuD|trlG3 r < q c*QJjLF1n3" :ovWdD <bUB֩Q )0<e4X~5 ;;   T  d h P a J F Gn $~ . x: wcb~twakpCkde1^ " GG֩6֧kxtbyՊ՟z+}yцI˷؄rs+ hU"hC4#oxwG;_ZP.%Sr?=т0䴙=LC墣撦WYZ bdKOQ:c*9H PU^dln^H1_84۽@loE ҹ"MTw$B+M|R'0 h=ϤPS <# wF jL P @Y U _  )  b d mb c  S he= n 1?"= 254(y5rz $viGWK'tE/O>#I5|Et?l  mnPSxP`r~Sqr$cSx4c&axT'^V9 \' 2v 8U C  | L G > = y { v+ / z z)8p~YE}R&i!|'!!!2-!4!( q WL LI o^j զA80\R/.iu3O0$ ٝċ$}q윱٥5)]}^=)䤽6uҀE(r3Y܁fNRT~nPT 6{ޤcZ~gP6'}ISNzB긭[nc7dB,-ĺ߇ɠiho>Q ҫs؃{DW`j4ޛ? E*sN]{?8o 9 ~ J Pi1a.v.Z ( | "[l{_.yaAg\1|S %Rt@o<g1is$lF/¤fq7K%M+`Dx60e]` W  ^ ~E r M. ^ t ! [< f]t¬@cX2_:|A.bAKkD 135 aŜx\| 5sHmlFM$VY>I*k-g$|dGSVfu3  b%#X'(;X֬ssmkl}  Oʎ5g$*JzjjˁZ?yCoiFM/b쪡nJM6cCͷa[l-O}mө :E2 /8grG U!C~@GP B  V W  e9 Lb C#l$`i8$jP:/=/u ~6dy + ~c W T P, 6, \ ~c  [ P g Nd r G Nzh}j%+Z8ǧ?qXEjy3&tAiK+-  DE3gxc;.KǂIgaa)GJk<`G : d # ' OUS8%Vinq!n& (T V U p, 7.]>8ߴxxqP)]Nj9mCay(eΛy0 'I`j Df B | 0 Qۏ'H])lmJG/7|=4'CE f(Cd? 6jFvui>n8pq[7J2^^~3 /"a߄'ݣOܐH.ܺ+۵0DoۜAnbݪߌA( l(|mUi%ې՞ aMW3ro-? 0,hcj^Fz4O(F’o`b`%BvTr+EﺦXOw+@i^$vٿ-_G-0M/> ޝ ),J~ 2 > ;Z;ljD33=҉; 1{{Z(M* de'Rgsб )@ppjR5a92_z7bLeb9'c)Ų1X~    xW*EWXi8ZįR^<| i Ud v xr $ 1{ZEDQ o ] j ۮ T c i ;zJVw{GG|52Ak@@$:$#}b= 9; #SSOBuC717vhRC~ou =G7 yhowzf g T q5tsanݹu4Y.g{Dr ʴBTc>C g2 W}{b疬2)[pO;>>5 xH\- Ɛ!af^Mz0]-f6j qp>Ij_Co;p0HP)ZRJOU%jrbw@aYCCt/^R q0fTk3f N WAw~z7] {v 2  i{ʒ\Kw:#8.J3^1==:x/ x N  yY  ŽdAc9\ ] x GtCit.v5cr_EWThy8=|<.0#'C K e+F`O@1OEcϯv1Kr'ڋ@N {  rt 2K i)rET?iCqaM#kj1,1>|;;c@m%., Lm+ZEyf`rP1-g$̠?^dI ĉ2G{8%0s"08 M|QKm*TEE(w6X~Qrw_/u &  M\w ,o)ZVIr!tG d[Y$/^z0N(P}v*<歌?$]%ߛ{fޟ}ޛݢ݆UݬLܺPܗܪ veIRwxx0jLJe.A~8t)wE@7:a_ ʡpYw&J_O??z7C_!M\ꦎE2OaɻntHMTsl or* 9Za(D H5n+C&AcTb3b+k pky/k+%N<H1~yY=@*őW mZ ?ddB~mHOf=P9 BGOƞY'+BËZi_ÎLXl\ t Aj>](HβsO!F/E{$(jvUQ/lv - £ ? -Aw&< $ i 1T B%  Q < l I  >X4VG9erDMh[V_Kp l% f   ߛwE?#tnx9vM'%Q('x4i*%&\L\ _ ܩnZ`kEs0(:OZ920=<UApv,82c5J3pᬈj(0N"56c ?AaIf[A}eއܮ)I_lW{""\SDtoo"pK%FN`ݑ/OZ뽐l]6vW3l,4fb^ +;tNQ{ػ3u5(dj8a/Qhf =d# SPGόGCTd--t@ b yyAND'rAz+S3d6;y  j ?=3iFi Y>sq)WCdY:5[c){wzBE9o()4bƶ=$cx9CRCYV;+;jY!t@  3 0߮\f|!uSV}8,}{ ;Tk T ' J ÉL(zF.<_u'U %iJ 5ZDM&%_7Wk^GHH) H gW\:s>`_^w&.>w& V  j2ByWQ8el > ! 2:oKqWE}ڹm@A=|4-g`+d*mWv4nkP Yn}䬶Z~#c3_bߕu%|=/ߥ}jT^ WD떐qi=GoOwNHeHM"[%f_L=muzL-|`1 ,'UXJ" =q/f S^4aK!<J8:'dnV^tǁvqH3!g8&̀4m1 \؀`O9ґ{_P9dr^LQ5@ D+*paHP)!eK y]$nV:F s )ЅrUV9Y&;˘Oz=lM?r*V <&$n RM @ L $ =jv~\ؘu!=V)ilC@>>Zzh}]@6z5S)G|!B5ƂZ[|TM & ˋGdS|ecE\4Dmz}pGBmKF#^ 5 eB _ # #f&dL5B YK"T+[<V q /MiFDnE_o{L97  .$SF=  !8F5I o@F{9;,1OKg ?`ۘ p /4 kzZ2#e ]&r0an8ۏa<9SQe#6k3z G [bxT.BY2tm z0Tx>iZBV*⠪}p!P쀿ߤ~4q~f'G 4Kr_/gpLͩhNEX5Z);F $Hw|_s(J {<`к~{ `kd9R0f_LpxQy0Z|. 2 evW};|*^H)5VV80dG5=,}R" x $j (B4. `QN:+'+ >0>I;ANwVJ5ѷ P 1E Ftȁu|Y$8jfR[] S=e?[֝G[^T~zpN?P6@<75ୈ~ĩޯ ?d0yUއLEjs{p9{tVgOlh|aV-&:C4$|vz`ͥ߻#P RWICz  ?+%^/~TOQ5M:q4Q}zG[C(`%]Wqm|~nzEJF p ޙ &W#r> i3^/i.NJa!sp:7    t#r@>£uh^k$udacoL*]bĦЌ@76h43wv/DSb`~}h?>/.W_^]]%G $G y@x@q@uArEGG RR#$dȹ#      Sc>`c'o}4#8(, ΀%YquD$H38,̩p 6ԩobi 2 l18/ΎE<!EcM$ թD  g w _m"+ K T@TuJSۖ6&0fbelX}?e#puf+5`8#$|ᴇђK9DOEVP>#.f,&j1Mm&X[d^j/%<(/'GO[UH95A`lFwS[h[XIedHqANo|T{AEt/p" -AǸQ$2  K עwVud)j{D$q2bqC#J;Xkft  " 1 0.?eKCZsG7V}.>ߑOerE5J2[ "|2 BySZ#9cJ(.JԿGd$4JH*BR&Щċj|)?KO "qp Mͦjz.`To\~,/{.)˒/M\dktw # " IWK2LjsDJY<;H . ; r9F3 @} Ma<\5I7U/I:U6Mmy5[jS mMX0/6\g9vI TQ3>>  SQ\b&S16DNXb3$>Xb0:LV 1 :;  #dL4>67@C kt7IOSaj?H'6@J8A JG/Pr\nPX6 ,<D)1z9DU]-GO 6=z/OV]d  '! ]dL;$CQv KR~C"{)>:E>DN_U'KQ{MSƋƑxOyRR5:IMO )38KLQ1M7)rEM*/q}uc/YU]1X\#{'([59Y:=:VoYS0j<g >(AK<1?| ԶsC-/;`(By9n;e?j ,l 02'-c.}C 1 ]8F5k7Fpt - )- \j1sS8S0UºCqusr>CB Xc\[-" XW3̶JqLdbYWCY><\R0P-:  c,)KvHtur,vs=:6DA/ 1 !# virNj\XO<˸ 2# \P'lխu&!Td=;c]d^1,w1݊z;96y F`AǥD>LDE|?QKH F<5 A xqj˛4gg n.(IB*wIp2DVO<559ha'  J?NFx0) c[gS੅0|! _BE|=&*"텅}أћ/^6J!9@ 80S(Z!+H#ULt? 79!T5,F}=vHG@m##j >0Ao8G> 0?h_* $ܾ3vPi6Z{r)G q 6 HKBq-.$BO9rji=CR:"GxuyQ1'T -#t $- # gutLk0;F<90ȵMPеp/gIRmcJ |RI7pg0A7QH,ѾA{a+.$C# Ͻ (f%M<3f 3tk ܉Ty'p&~=  ښ _q 8h OEulUL4+nktYrP rxFY/& :Xo:fH :9%\2Ѓ{x^y ښ ۉDtUnefh/.%uXO,#$R   <E4D:Kbp mХ<9Z$uHrE1{R-N*a^cTwQ>)L ĔOkh~{ A]>zb_3'1 " + uyɨ"  T87m1/lu t[\7y+3}5^q~]_ΥJ !T U C)ufw!`c0mCJXf WѾzQ  G O a1#[&M6Ua#nyӁN%LWHA;AJ#m,HXs`hDԌ͍3 F$gn猣UTY TkRi|eVR|X 4 R$"]3/nh- 9TAIOBZGbOX= SNM,<>XD?)Q6`CwaFZFJP4X(;_gEVoL D j5HrO-oN"2/N1v_  }'F F?W[1 [{W v!   ?cDh.iHӕ$5QJ &]#n5,Eq^~FphY[^NLYeLja9  E$D&*0/-a+ ?%TXc ! ʼn T ] .Y9oGSJ*~-KPV[r.='T>wZpӔW{q1TqD/p7gIr~yXhV!f^zNI h8 ӈ?12evx O@/ *  yӮ),W0us ™\C3eg'jB-N r`!픙JѮ^ 4$f+] *2wgA?E Q!_㘅^)*&"H}ﴅ\/cc8kɺx)j*N[], su,X2;j[=/[$4-O_TJ팘$o-=9 x2M@T:W42qCQtúWh ~P el"  j,,vn'֖:d1,,C86#ѠQ!&Йe=U6 { "3z[^]zr.!=BOJ?R A Q}oMaqq4;ZhhxH^ rq?g>kԣ Y%ӅHz2'igmp6@V_nzz _r v3`֒  9~ 6 {Q <!uκ4sv=:Wsenn5[˞ W (=|m#O V鵹Bvpx)VQ䝱{[-_,7>Hw rRWPq Q()TjZ|MA+W0>"PU4G{rVqk35.?XQJ zAO[;fIzVfF2^'KrTXQt+P MD#AIS  VYhIHXgesbTϨA9@mp@>K>/  V h SV 3/M;M+9k |jiK 0#so 1l`lRHP:S씢xm&lDOV|UrޭVA6芅"[sVxF@17gOu8d/)*]$&ԫq`5\7o8i"3햞p)i$r}<3c*>̬j|v\f#:*Pc|gM2 JAItn]g1X_ n_ Ud="?70-u&1Q-mM=Yi F )q fr?tDCRJf4SMlE˳D{YUHh*v99?DC22*Ic`f>b%"m0nK>2wG:n?+g O Jv Wbv]2}&~}߅~ sHAeFI-roIk 2 l5 ^G qR& pS KI(ŸF15J]Pu&_~ɟma3+DRR; DBv/AeP/f.+3 t oX ll4: 6d3Y+= H 4- r Q߉@~8,^ʠhUŻYPLiV}Ddu쟯-pG4֟OR$,GGrT&%8ߛ䤰/3fEs"' /0o0}r*.LV; -Chh{en8$QY*5c)Op{"h$&uPJR2CooQWY|Y\ "I#2[u =bשĴ7/a)e@]95'U (QD =-`;t{@wnVd]6} PцD_c)8k {n v 8 >L:OyS8LL. SOLD=;PHUm{#>nI=0ql=nwIW:"Ѹ= z QUz7HL;6ksu5g.s>,| ?H 8  >SL8XLt#)7hYwnsG 5=x%)WNɿ||2V` :aD mT 0 fM }elk)L6-D('y6FbHۯp@r)  a =88.'N k8@A`ɲ^8US^n>0g&韱>S&8wrфDw(U\C;䛯f, 6`Gv-<^@Pqd3`fU\T ~Y]Yֳ9gv 7) ln)r}L+|,{]#>\=]w`bZe9 |Dd:cl+ G Q> 7h34X HD U0|XɚZ\Hm aK \V;~KSR)TPf1W]2T V3D h G4xJlN#g({R.<r:4_UČ n{ j e; Gx$})/?[ MC̆ 0VTqWLN691xd9RYc-eA$s+JJuq$ \$~H  #8EaKOHk.vS3oi F q1V]5>eWnutO2J 5@Z}ev0"饤i s棓Am䯖W} 䟃=97I#|__,zfػ/L9agOpyԂǛŅ--N +k/Qf ;msHXOfIgp+)  yMԡF|q J8S N,0vju߾8 uh`2 l.0WQs_piy5*X$M8-ax`%cW' m }ycX/5TA@[ؐd<HBQEqnCZ2cRQeOMG:. h  ?}i&,at)VOFo 57y_a q a m6<nHB&[=8IJ ѿd H9C賦K摠W䘀MfZPod}NB蛄sjEP7cNmI(kф$MqrkjZ!DJ XAj)8Yb%'57$Z6E8pCң1T;+u<9#>;2c/6J E|5` ?m .ڇ=npAVSt.d˜K6BR } # " P==LA$1ٍ[7،QNU޽q%-؄ @ЈW <1#)g[pɼ9f{]tG 7n Cpݗ#Z-JFXVL7[H; _ 0 H% }HHGmpNu_Uv'3+L+F8*e:3e+JV4" :>&52QT@o`f$)Ma Z   ?xlMcFb+uh("j%Z{6k[:q , S6 ?X 9#]#EPN+dv6?~_q\tP)6_HP#_h}gf04t$Ҙ w{X\*Av 轩vZ_/H3fdҒ厣|\m~p6~[N Ge\ѵ݅; nw"N]cb['N k}>0e~:[1Wg]*"Jy:M4;e6O4J%]Y!7*dD -L Yw  hqMRp[[] 3L?#e!|r6r Ʃzw 0*Oؙj\XvfU% ȏ*D-x\e_~eMr"It3hT =9꟬V=?w'C ;!^ٓzkB7' _ {އnO=eP9|#!'E%(&-A+Y3l2120qz,+%v%j_!S!7^]S/EEx= SbW+2@WXZCh @2 {? s(L&t v5{rAt*  d$ew#E%$\# 7"\^A ` u  #  3; tI I  }?3M|u#$A&(B$q&67!X@(I{  OeTTy -GVt5w- r(Sv/ȉ!]-IՕʌ`u)ef'ZXwղغA34bג?xϷY yΝKѴ[ґБѣӰjh{qXjؔ$ !O-})%5Q%2+<8?W;=Aϥ<@f<m?c:dO Un1_ z|f$"%°$w\$z$>>!c!$ #iA? HA _ T P [ ! e &) w   ݒ^*qIhgYcFjj/xbS' |ǐA Y4"M"-M% $|&%/U'w&f&7%p%m$$# "!G v`< s gMڦ- ?FhoY hC^tSB;BXwgZ?.$&pQMe$0Y鬓=R=޿]k6iMct߀]Uחvu׍kِiMܻF*NΣ*߬Rvmg . * '{UZfIb+X\%몛)HF#1*ؑ!+9x~ôȟݹʼnd)AJi+Y{',&ԝ=փԜսo}ӨFϢ͗8&B˝[ȬȇǑ.ɴ ɲ<]Ss498@^mn ߳naPY=k=g߆@(XQǬkX1T`T"n'^qdB_xyv d1FY[_NƇ NAz[[hV;mD]>#d)Jy@f J |4-hBCFFW`KJIMNI]N 'IĸMHmLrFfJBE":='&@e!:x<8:!9-u:/e9Q:8Lg9f?5З5˭._.hY(S( #"g0)s"m&j#O=#r*x*2zi287:`9~98 7632/*.*&)[#"nI #VRF &sT w R+Q6nV};t!1H6l8  !W ]  >~  . '+ui[9HF(.w !%)y.qwɴQ-ePC*핻 b뢈_r@I=L. Fymv$6:3\ wrWH|7_ph'_S 恼桻\*=Q R>fU  Y b C  .JE $h m\ l _.?7n6"M$-%'')y)7Q+?l+4--z/r0!2 4h5V98i:w @kA :HIiNP8?SY&UTVXSUNPR"SLY.ODFJ3@D9>59X2;716b1S6R05w,m1&+SS}"}G pF LdCszAw s\  Z>=V>+]ZM I8 /> =U   3   F M Ja'+k i H0{WʣNYH> }fl5 d8c|`^x5,n02g%$ܽ G I  U ` j  k (4 n8BjtS$]s h%kXșV$Tl0 f| QW)4{!ygB!` mHB Dl:* 2P 9 c+VQYXXF<ۨk?aIBk4; ` o rߥ  H E )#FUmB2ޙqxbaH?ayh'讖!O_K;ifך̹՟@׫`|Mm [ߐi⚭tM?pPhg5؎q]:͵ ƿD19,"È,5ĈZQ!y1~[q4WLB7<ϾM^;åưU{Ϡ=ҔܘjeTb[p0D(27X:i<AK6lp,F:|@pm~锇UrV줣n=" 6V/\G0:;a8@=A9:5=U83^7"2O7c62f6.13u.-(N$!_ n ]e8ׅ S ^C #@ TX Y x&&kUkw/y'Z2\_zLVW6 el U D\. ) v &K[* L v q  v# 1 P j Ph]| &^ J-'3?-5 0I5.0k3d_.:0L+b+S'd%&L"~S9a )?7Nb1 mR!{Usnuvf0FY$C߁tpÐ,/|n s#fyXu>ԍܴ7gr,lu) ]- # Un_Cq uJsWTMv,-lVlaj| { L{2s vPd44 Q4e;s$Ik3,j덾|ؓAQ2sܽѹWU$<[?njwHzsKș}Ť3ɦSjTu=ؼ e 0N }QO$ߠv|%E 3өҥi ԣҭBթ{{ԙȴpɆVô",ǹ`7 2ľ64ô֢Q+ԷQ̶Lۃ~`I:{ns1>U?@bߟ8s)fڦpT$\T[ޑ<1BႢ:`Z޾p^͉Xgpf]c >V^ JzAdAwdߗh tC 0 d  ui {s.Jxp2g x @ Y 6e   R3 5" 1 Sk S?9# w++)y4*2?|<:9ӷA}>>D4@7EA?EZAsDs@C>K?ٯC>;DT?rF1}AGJőENpI Q_K P6JZL+F,hF?b?N8*923g,".'+$O*T$x+%.($g09f+O/<^+-M8*b*'u&$:" BI'y#-[ i6,%"Q/EZ&'U v I2}(j:@'3 / =v6HE&+q$;+)Յ-΀+.|,/-5q.[,,q*w*_'_'m$ۜ%"$tR"C$9 ":" w]":pB%l{715R/et5K R a 3Phx]g|\TvGpģ!/g <1.bm 1< OSfzȝP`%0y͙Y= ;Ш]xrn^s4dF}޿7*X(ʒ1^×MWK…O>C1O ϲܶ4qT#~cCmVmiijfMB"í%Ԭhkk겋`~ٸRE);̽$PmEQ% ņ@)'06,0M:#:?AmAEEG!H[GL0HvFtF6DC@%@ U)#&#!%bA-iA$"$+* { h .#Jdqs rg{^8k]" "8# ճ!K}ȑ|Yp~P;eh")oJNTLƺoA[rtg p r[R9y'@Eq0F f t x 2" )$hǒu? nw K5Vb^c8#Ŝ߇6!jJ 'յҸdQF- ק/* oY@"rGҜ#5 X|(\Sep\w4]z;DMZ5k.P0I$}K 5ȾTꂸҸmݸȆ ) ) @6'ʿɗi#Ȩtʇ(j}ȝIJOH٫•.T=_ֺǽջ-&o.Eƙz kUlV`ӿ_oƀ`ʺ[4ВU{ٍ{"CHˀ<^U Lq  "4,& uYE\FT8.D"e@su* )q*?@J:\JŰx:QCzT|a=>/G8AYR y= t D V ( d" + * @f ( kkFXED_4R!"o%f&(((z)^);)r**B,X,.t.:,21Z7 O7]-??,GGNiOARIST{Uf!ShUrP*S&LQHMGCI5?k1Fp =`DmO.kF`=EL:8lBi4dF= N^!3%h&l*)B- *.}~*WD.()-,(ʧ,R'H+k%OF)@##'o"Z%0#T&?%i'<&(u&$N(Ì$'% 39B&{y Z8oB ( !C I"2d  } #0#p9 ˈ m) j1J$|BBOkKYHɯ*FWn_PAQb +䙘m-T,>j@ȏ3{kOtc S57U2Vovkmz ~^w$ШC݅ݔ*ޮzY+聊V|=|JlMς8\0gw4{DQtZ}_6+תּ" | v픟mPn>_⟏ w*OgM֕H؇ 3 38Kl擮MY|-Kנw6!fǯ đHð“i}uQLU$+vh9/*!J¨`x>5VϺҺ\Aռ޾fǭ %[ڶىb"0ե~ ՆH,g7qYqSvWX,'"D-VG>_j oR 4Yz95FN->zmN.Ccet߅8/ t7M r Z  8h Bol b 3 $<=neA 4%LsR '2i"E$b,Ĩ-8i89EEN6O90USUXXYjYTYXOWVS R/8O!INWJsIZF7E/CrC|BB??9:1}3V4(_*r!su   a X_ < V <# "p  5.m.pP4wck:4HW$$0Ark_Ql#|u9"@?gK@'Y%_m 9Q'0~c i)K7~7Z z ЊYY&=)7A=Ņ oEѷ[u$ z 쁪꣗U财"Vo n.{Z|{B hOv`:3xيTp 8_ [. ) I v6 ?WWd /53 ɱUig N -+ )  c :wa\u).E0QH e"]mfTsԸ 9H>Fbyĸ]x[p/~ZĺZєmפ }¶ќ4kݒ]ܛܮgM~?8^0wcJϿH[q"vX ɿu=+a}ȘtqXt}jaj1.ΏbFtٳ㳮yBMJZjԉvlLu?crb1fU-}+|B1 3Ri%/oZv ;,e%<'53ߦj )í y>"`  Il7 g (~7[1$h{J;  S~  dC' / ħ tX%đ'k-e/|^3\46+77 88t8 t77.^6P64,4#4[3433751:g8{2=N:=: ;8.6#30T,<)h%ޜ#M/m$'S[@2X {v);  / Ͱ+8FVx J}  % R Ql d`gH;Z>A9 D &w:Wk4-2EL\W D Y%U!,h( 1E,3-3-a3+-1pB+m0/-(_+s$(4!D&a&5&g%G# B&= $i"&Ë{,4lkӲv0k6gP>UWh!-sQkY{F?=]QMUl*|;SQ7w;54[vi X,_Sqy)\*ӷ/|{ tϺCZQCrS#`,YTݍW[T_<6R9qg7 ӧ֤#/٠"9 5] [%xɼ9P? @ W , EfxD P 0M G-09rG|C{= O H  @ z B (QR`!E$*&-T015ag79;;=>F#;ػ'?E(U1 X,Ff$ t(n$gI*%i*Z%R*b%-+%|,x&.($2v+<74@1>28FFAL G&OKPEMOLHcLJHBHFDGD!k@%OA<5H>=:]x]:*""K}Ȋ:yL*{  I[v"#"c&κ%k'%&$'&&%o%$ʚ$wJ#%";!g s&Y0%d!@"f 5" A 01![E3 D ޷ r |X ա R{p&= K 0w$ŘY&~%q=$EX!%6- 7  9 SG Pc ղ / z(ȹ7Fwz: Z,+2cnbER>X6 "BMN~S s#LZ X w:]EfՖ)pd$'[c4Փ~5UBdTS_3H`9 Pv(Zߚ3Srt3rzK|' p$u j]ėywi>,ˋߪT{P~%vܣܳ:)Jk1ˊʰ dYűj k=Z̐Ƚyϧˌ 0x(eTöR̿}{0xM]I^溺~YWY^ovV1ΦYh+ҹﻶ"^̼|Gz5-̗ ̼n֣/W4a-2Ih"2\2+ 8hPJ^RT$ [ !p 5sE9F B'-jo޸{FeWQ\C P.;J ] q(   EI C Z P % 9  \98zbb|}q$uRrO S !4't'0<1)<3=JGGPaO`RUTW!WlwXWWVUTVR}Q0NMM/JxJgGtSHFGDpcGEBpE*>gIBn7i<>Z/|15'1h.!9(k$!aS j 51#_'#+U%&y-j&k+-y$+|"(wi$O Rj=*3]$9"~3K sjZ!MpymK#ψSQ"!'2(}&,+J*q++:))&G&A!5"/T1c6 - |9} [M H (^ ,zV;!pB6tɃ:Y ?Nq%NL,4tSk)D4l].?,?Y:6~mKjU +;1tQtꪵ/<#f?䠗`).lfXDT2u0]4MD@!1b[$fqK0BQluT^{+ 4nQ,͖ȋMO$?WiVK%8!J]K;2⮡q,tL8o vDի0.}ӕ̕Y _g@ϔ˒8SEPRi2 4uxŵƙn6+BT1,aݕ:9VGOXۻ_DT^챑A-J8K-y|6w%oUeAHFW<`jzksFgS _p p,%rM e= ` ̓ C b 6+E ;QHG7!s}p y3zӾבl!"M$(.,W0ϙ69,>?Bj9EG1HJh-J6!LEJW\LJXKcICJz IB{I'H#HϬIHHNKJ,vNjLOfMNRKJ;G{D Ḁ<]8cA4^0,Z)n&Eb#!FZP D$w,6qƒ/H'0۾ + @II3IfDMAhh8IB@mC>ei`L$+wϏfy%2T~!"4\ fh ]Qlŧcz~kJ Ij %$&6t$O Gl=!4Qޣw)=^Mo<ÚÌqb ɉOi|B#=^+ 0+/b818 Ć.$(`.#̃n~ֻnԛ]&/W֊ӓnNз>CY·:]'tl̉ˎNs{lSXp}8I<딃{!29ŵa茶,gxrޠJ)K}k"⚾$Y '2,muUB?M  8tnWt\%ZGM:sw|TM#dO" nb$'#$@# ! nO@ud;B/_| X%).ƃ1c6l6L;9\> ':->!89޿$S 9# rO9E"X5 @ o+B\ 37 Y #H   p j E8;xp2/`5Cy+ pppO#ZAbz9L2Z%D|cFI,5Nhd~T1npo  rR'Lw[y9P\4e6 h I&5>a#Ԧf =)4woc.Ah%o_y~] p[O82 ꐭ iJ5ŭ}۩K 8J 3 s!15@?zB  1 |',s;'`3`\F^c܎ Nf7JT܌75сӐΐ\u/Jqb/eғh̀Eз Zr/[ڥỳ|;53^SÞx;rʰFFa1E"Uk5Xݳˌ͝*F]|}LAA,@נxXaGJƹfM\fM̙WHyq4jM mS;=o%I!X?ݐ( |٘zߨlkk#< ߭Meq=:".w Lm"s@N\&84Z !az; 3'6 *F/r$l*>#i 4+Z(30D8Vo7;p;<| =J; 4sgV i ϫ /XFFMoBIuq"#ynnge=0O!pp*]Jzp  Z " I aM `\ DHgk&"&9k)Xu@xPGhcZOfl}Cф6}C$b҆ο?Ҏ ۖڅuݍ܍hXT70rԈ^[:4jc@?WUEP>& , x\Ɗ8^8a=͕pO8$ f3~ x%0P!S-(u7e2y_C=y(M7KG5TAMGVXQ=YRjYlRX*PVgN+\R JMٵFJfCGA4UF;AAE#AMB?2>o6$N 6 "+@8k* !h#&%%ݥ&Q%&## = ܀(yFE@lƊv#<äB$|og)H`.IϮ)P[*`3E ^_>&%r)c)N)*'jn)m$:&# к#04<Rf [ U{ g3K#   F7wt~.e+  =t66H.v7 DP.Awn3Mc~;{|gj&~ZEp8 ? 7!K$H>OT!3[#lNT_5~@^-<G펥@`>]w9׊x4mPy 8$֗qxAqRڽ]29ɶjHb})ao"/vʇThtuo{ .j ye<7ƈvÇ=ֿ~q ,IwZ;pP5Y @  K( T s  9):1iw m a=ATK%P#-K,O76M?B=rDrBTGʭEHGeIGIȁGIF4DHɮEGEWH|EYIGKgHaLvIJGFD(W@3>8!7w1v 0}I+E<*'(&%."|"xU 03 a ! #o$(P&\+l&,H%+ث")#('@,$2cA: q(dӼB = 5{p&k 2s5\}g N !"#%}#&(!|%N c#WX!i!="F$:'"Y-*n554><;WRF3AfKDMEENDSVMاCvsK,wA0HR> El;A9?b9P?r:@;UATC>)S 1}Y[ +;R va YQK. /%U~QT E |: k b g Qx[ tq  LD{ ` #(,DX FKY uo VYt~DEB @_cv\O<*7R[RK4osG-[ů W1mPi^?:^}%v=6:@ vpUc. |J1&  0g  TGvJ U^L@['{%QE_-; 陱:$c :Z5#vM;ǰ u|T ̧f2ӯ2ӡk.3l+Uʮ0;\տȏoKdOS# ,9ĜQƍcIAǿƀ$ƕ}ƫrXȎ#@˸ W6,@lGݿ ԅ D&6WUo\`[]l QrPD=46"42QbbmT,^;k /j9tDmV:9guMp\+  w _ c \U ߒ JQ \\ Hs, TY`^90 _ 3'u&+ *MY,*f+ ))''& &[>%&V%-'=k&wH*k)9,/k.&6M5 V=<2BB=D*DPCUEHAQyD??`BK!<\@m8=T4`9026).j4V&-3\,3m+2(/#*i9$ wy ,[X2^ ( `  NQ ~s}IbCj+ns?$tU78d0/cQ .S9B%,bs|! ) C 0sEOu+Ike Q3P F ּ_ SHUHk}>fb ŔM  pe|* nMq}% ) \LCvTHLu"1!AAw)].FH P SCVƖ % Pek]3uD0nUt5lma*F:NB_F YB0g A؟$ _; E c?Q@{ tcۈcI'I]0e`E` `~3Zd(ky${Ppbc υAh$/5ض<¡ٳUؘվյru ͂\z V:|dˆ0ŵʐC͢zȍ:a6k-]ȿBM`9]ı-ʺ $IU{4yOB1ҽoD$ yLw?T*Mp VRnv0ZտRL'K_UO禄:K+iuWVB^wD2V=UxCy$H1CVʺpbImJ (  AjH  k e /Qe2{> !5*+׶*5 4Լ=5<,C BGEKDSF7EԷED!CBC@n?;<\ <88Y4m5]g2Gb4F1 4004r}.~3d.*0$+%1i G* u5M_ ߡ gLTH~V.0`UO   @a;;`E^<g*CG}ӭqKs.?z~&d+^$.1p'.' ,"&)#% kTK]C4ge_6l v `  S N )F9\4nm3;M #*hsXgB 8&mמ0Y9XGݱ0U҈8ga1̏l_|H Lgyտܝ>ߌTWÞ;u|VcQKضZraͣ9bZ ׃8|KɴΉ3]H,Iۈ̙B7Rfb\jܣ$ڑI|VkHDQߘ ,[}N}gc$n{M5h].G=Ɗ b( sU.F.O`D u 8. EU+XD IA -1 O.;4Bx[ cb%+oCAzdv,DRV% W%..Q8K7?a?D DG'G*IAI]III II\IHoAHNHXfG5HѡGIIJͤJ@JbKdH6IvCDӧ<r>46@-s0׫')>"$hI 0z t"$'t&)6&X*}$9)G!+'ט$Rw5!Z`2 x K@ ka  t2 9 ,A0 Q I`X5 I'r2!L#'!)H+,,Q, *9*)*(_&%N"GY") vJ7anH/ |E c PzEɄfoO/tJLe+Jf0z۵F՟GYPJxt~qdS\bulɷO 9.~xZ;^y5FLU)ZL O:緼+Dl) ˞:MZŮ.Azr5<UDQ*Ԉ;uwI>!ʚ41 &r ǵMÄcUcھc1-输es,5lG) UbR-0ߥ]彐.3JdEn J.ql%䇱~K뗎5CD~b"~ G挠Dpx?%C vHg "!"yV!=F O5]QzسckP;'/>$%+- 4|6R: =4I>A@C9@CT?nC=TyA*;'?08}<5k9!4A8+U586:=F8<18Qb=(6~;l2"7 .2WE)-(3%)T"&1 ^;$c#!$l&qG(/*,G-P/'./-].Â*Jr+&'b x#rW^AVP cw+  EW#3_6 X2 . Ja 7[ ? Ū s V;!T# $r$?!Y#p W!Pek<|][3Qk'bAYqFX [j6U q`Ǖ#*;EKcG~yvqFZ6lrSfi[삣^nRe"~5j1cϓ.dU>py県sw½  \,þ,)ʊ*Π =U̫{)cƹ+J ڿL>!1sľ D,+wSC*=[|`-\?x^-qB ϓї ׺נ:7ާ闭D5dTw8{_Nv% Z:caGrXFw-WŸcZꄧٳv zxgg[&ux>%e^z8a }xk O #B , ;D r bl }%* bU::#(o"+S %yK,K%A*$y^(G"/&S!aF&q!&m>#x(%,*= 3 1!;9BiAGpHɄGGOKFJKK]JKOH8KwEI-BzGOE>D;;Bf9M A9+A,9ߟAM8O@~58>09)D2_J#k+D%Ɏ_!LFl&4QFz:x $+$A?*$)in.r+wC09+5*0ڂ*.8(,Y%)!%W!*8/qZ`-@VD^qiy? +O =gZE_u4 *@{xUC~3) )k= Յ?WWYRF!Y{-9_ZhrUs< wF0jA Cfq.팘 q ",oC5d?0U^nbaJaN`KL hD_ .HmT y}"e%Y!p)%Q6/xH*270:AG9UJBdiQ8HbU~LVeM}V/zMTKšQhHM DyG@$;BO;l>7*$z6}!m M  % ox9E>,yzFH.. U%놡C"44|8 E5m kpkC OJ LGl8cݻg3HD@D2>%D.֗rdݧگ hDCfBUצ1 /Lۦi!`Q5VL  Hu  * g  *$=3OP#3-DD8 ) 6 E% !  . 8 ,= #(6 5 t<  -K 9U[# 9,(' 3 .i72P94:j5G|:5;9z5K/7_S4n4V2A3˿122B1<32jW4[X33^2|0K/>N+)7/$F"1~.xK%l ' OS/ K?JnfoO& }0 tS0VTaմp 4 Ux }c(QHRCՉCXXd)0+v ZmPN$Rv9~B1Icqٴ^KltSlCw ^=\`sO F(@O:CBaO t_}w]{XaW`V 4,,ںКםYχn3dĽf+VfJ 3 Qk־ӈY%_πcy94CɥȵEPϗ7 LթOϐ= ͦHՙcƖRQVʢɛyĒq{ ՝Zy:MP֫P 0hg8wㄧ릝?ej^'+޽?\L,yAٔZSvAߏGPSSD7^ܵz^Pz֙HV}X+jnX^-n:D  -^ 2. 1 f}Ée4uT D qS o`3&wJz[Uf@Ҫ'~+.M>P_Lx"%N+!.@X3Z49-9C<;)=%R<<&<s;:Ʀ98=7O64e>4r33;K34;4 769X9q9 &:L78@45"I0k1+,,"( )-%&O##-##,P%#t)&.1*n174,T2;,01?*c-&(p]"4#͢^U iY>6Vu=|tI6=6jg2; } ֒@0 'Y f v?S P4"!(#7<#^("vɅ!2_tZ'&b%jz)TSs[G4=t3 ro qA6>K=IA\ ZJXxt+d7+uMg5 Q~`Vi Oq M . .`5 o$W=P.yܵ|X(z웑#Pk k܋9պ]ҽV<GȐ#IŁ C2ąij .yQ>oO̙R+upA~ŏO ѓ$0vAm"8# j/  @ i` K ~]D/cR_s$! )%\+' +`=')%(jR$'#q&#ږ'$)&-X*Y30q:7wA_ >1FJBRxHXDPHDGiD nECjBAE>?ΰ:<\7:o5k94xX:PF4:N2:/=7Eq*g2$:,,c%_ Np:Mި]e1@$.Ř" &$( (+ u%Q"W n"fr9B S! 4R (@kvD 'Ov- - &Ur)4*͚(o=%$"N },4 S9 d S ,9 5S d J' Pm|3gUG0GU01rs`1$p {dYN<  7 ~s3A\hėsGMEmuSg﮺}ϫYYmk[h}KY{ M4{O>á}Pmu*ˀ qq#d_C΍|^r_@sJ,\'QC@ЀV3jKĴnqS{˷,w# tΊɊfg˿Œ'KǐY%ãõ[ohal/<ăVUWS})Qǐwkų ĹױLAó;fhʌqv)C|ܼ+xJRGn1'?" #^ 2 S&{&RlʒrWrc8:=QT)k%L {"L,-cHvkr~cd0Rv IR>%MrWm~ SXՏ 9C 1MD_B~ #$'u/,W Q37&TFO^@>owM=-J:;F7T B(4!>u1bg;/*:/n:Ɋ0h91^ 8A)0h_4h-Z/f-)J)q$ž#rrpZm% ;o#؉$b# !7) *&T /X Lp U| yxPC xUB~+ Q7:0T>rDY CV' Hq$jG&=_f&~$~j!aJ۶V [f / Ő7*T4: JW :pRDB g*} K9%,FiR)1 =aN| Img]K:cD]x C @]%925vE( I9I; U +m=A-[4fRD jC  "nxZjő/O]"ʺ6>J=+jm[Z夒&`.ܵ3؁mکpʖՆׂ*_';eI&dUM蝅(vKa$Wʊۿ_בъr&,^9M ygh4w.ۇ_ܧi4ۇn߄*8deȿ,[4)ձޚ63P+YCCK|-8>_^T 羽 LO{vt$Je~X>7 fFJ Nbjv8 5/   Z+_p/x^45z G); C \4e FD<o =d NSi!5k$Qd%%% R#s;N""'W~"'2:$Nb6&| * (0/1\89?K@Ef~D>IGaK4HKIhIKHIEG̝BD@.C>>B*>C j= C-&;Ai6>08)S1]Y"O*o-#F_GiGC0R TJ2pS1F "b6zm SyF o #!> , iSX v9oOlr Gy Vti}9y b hj۰ o% YEq$s>H^ Z <-[ H;zΣC 51opc=enaO+>r`?'&s Dv-X^Ti'vZf*7   0|ﱞbTdehUzVN}%T}(7!/7~ X .F}$v9} jx8 < Tq F$8v RW6 FD24B~^h @"* >[ MiSjv]k bvs#H* &~0*o3|H-g15l- 5,3*O1{(u.q%c*N"BY( w'` w(=!*$J,?%[+n%}).#|%-\!͆yXpX B  l]?H Ut9XN(L;X& 89h y ns #g-C0f y!b t rt ހ]zIj8eC P!`%6g''Ǩ/|'l>F& D%SJ#{"!/"vY#4#z";(80"93 Jg[t H&ԩtfzJld wdl A[_\H %UvO4Ff2sapiNVǢ4tYEE*_d0yQ&SS  .½|0 jb @ ?#jFmorPUTN^Tib"^SمldZXФ!ԒBˊ9GpԣΞ!mњDӻ9ӜݪҤ7` 'ֳPG2" ͸ֿa3̬aNgw=ʔ;9#T4ۣ˰WZm7rڹW̵,ڷ>*@OTg֓=?ޙOf2Rj`-pnG})77럴 2 o,E> T*p?*kHߖ/6}@ۅaۦ/4 x{f.+0>;ZNPYVd*y]btDX UZ`I Ze zockDk> aؾ7x9u u=tB"bj(b#v/h*51;:55V<17}<8L;(Z8:Z7*$8a6J5c4!3E[20 ;10a1-0o21W/31vk2)/I/7+c*$'K$;"(oR'PH̲P#EM) &".O'1*;2v*71() /|&+a#(Bt cv#{oD3n ,rg?X3d͚v +:|r . : B > y`߂e*/"X"!6*ft2/''~WL1 $G rD ;q  ~R FP ! % #%`0\w[qH8s-' u5 e.D q <s3| G *h;;O4Y3:V3KzA<%+cZ?uow*# w B % Q Z7MR%hCWyhda'nl/H/;~R4AxQc -|ۜʮ-Kӣ0yJһ3+=ӼΜBk/ƍoG@݂k=5ʆu94Ʈ =ƢطYt!Zf݋E#e ə[Nh 'ލST|7URFƾ^TAFI|cEMHVC1$4MꜪ! 黊7h児1RMN"Rkꐙ UҦQڝלK]Ui?߲!X|䄽IRD4/G6t>MʍF)xPcՊn/1T#-E}v O< +N=,A9QDv̆yEʫY {$C)"#0);9Gr1q@a8fEe=G?uHF@G?1F<^SC2:4?=6$:^2,7[//5@.ٵ44.4@90f;401D/B-_+'U&:"C!(bj-K 4'_p:Gr` C <NĤ+' (D >] ! [8KSYe[\p\(/NHE!eT;L  ޜc,"d Gu :X"!$"E!  NQ7pV&=^9?+BfFs<:< l* ڼ,FMy't[o IE)\oOe QijkC(+F3 Etl# *C]v+٤HX( GW hXL.TuC@9O=8Zu].I6!1HjSN+5hڠIӤb@5MK VLH<ߝٟA 8F"hϕ5ͯC%j˻'ӣ˱ˊ~%IR%׋D%(8όjBUǎaęBßLe2s}}ɭ鿝LctҦ`mŒ\ЭlKI+&0c SKُǷ`n pגQ<6] gq@O|AI.%EđeQ`]"k5\sæYP^RvP8yvi^Pmu {ky b ֒} Q,T> F Vfpjb ( 3}R0B41:]+ͯ@.ˀ[ va")L"32)90K??5}B8TDD: E:D :rC9 A_7)>\6;5e*;=6^;7P;99\8T65B1P14+<+@%% 4#\skmܢU 4&!o"^W""!ry "yxNp.cz t _% ;JpouM;qC +@ * m ) \ H :19ԅ"ai'"a'*#%*%)5$-'.!$ P( og d. Ti W aw 8 xwPQOfvLl^Iau&rm/&n&%x/n@MxtM9xDZ6& ГL/ B$H_56V7{;XfD1=C4a0(S-ܞnkT7':C?BQ'E:b봓}6FaJan_?@ׂ^y#G>Ll9v͜fmDЯEgqZlHD<8j'#ݔQ5ݢ1ܜڅUryכN/}%޿o$5jbf(ofo5F^۰ԬԬ0۷ʓި]DW3#}'K->E[ck0;|tmD) )5rt3LX8Au KD9<(  4DHSFy0676NctQ֝  9g Z8'8i Y55In@u+sB :H!L$&z)-G06W4 69=:;p.5uɡ_N|&W+Ҿ["h:7[ۏH=?5I0GG̬Ev&YД/}3Wڷ5AMTs'.rb:q&W{[P垏5JMmvnt*iG: =}甊{ku⾰D m}Z{]%]Z@p2S-g7<pojN`w ofN@0<W(W8%4WPzW=%Ks#+)x.u,0-;0U-M/?+ -)?B*w&&##Fm !l N8zu!Uz!5!DYFRY}UPw -LO (# wdo \oP RUslx?_ v-6ߋlNmYw   :-;%BVNs E) `v=bT@} ݖ,PƨQjTIr ! w=ULu(_Hsu?f 5  t aw 7t2  4 ;3 d CO  )PLKY-$Vexcd^ySWp J +{J y P=F Ä\Pj3؁ c. 9K&c ﬗ- X`Q (^B .V!N)R֞gwdT5 gFGŽ@5Gh]t4۽#O63֐ŐqdٓUF@"'¶FީO2lڽ{.[e}ɉԖ0Sرf04D9ߢ[[$4͝wu̎1ʝnL ҒTba׮ޓd^ qoۓeKQ0VqC&]Z7.ɕxi%;<VJ~")}dq NB;R{h r~*LYG]տR&#=CQMv+*x3 0 WotB)Th[ [Cwi]M3Zs*%$$"+)1Q/i#63o|8"G68_67"55I3f2WL0. -K=+p* )^)DŽ()w)++9=.+/_*.X'%,#'Y_#5̢#4[)&A$ ry"T9#m^"b #ud,+6DĊunR{,?cň, bxpX %@*}͎VOSH Q/2 z!' :W"tu!!c :PkGՊ1+kjvSg8M L"T >^f 'k _ Z!H]m0u59;O@_p<;Gh=< G? T. \  a~ ~+ rw mp,icx!03[Q!_wyQ`_ M,A#^u c U ک4~"wO+<>ű^ 3miGi&gzjYܲn߾>>LܼN5,-jCA) BV0ٿkP~$j8ҿ#͕8(C9[ˌc&{Z+K˲ WAužCѪUƑҗ6-ъ#]ϵҿ%͍Ir\9Gl-c U8BG?}t_ g ½ 8 ¡ \ p + /ɈoZ Zh}\$V^#f-,5]3o:\R8(>:?S;f@;@:O>F9~o<67:I6s8^5185џ8)68j765?3F2I*.B,B(%"j;A#(+ 5+;GItME/ YH>nMy7ZD % f> w ;e թ 7҇\hV N] {  ^Vn , Mcu&!f% '"("L&!t$X $26h; -]>#,]6AY/,|' 1 z0E2E#Gwu0hWTqw xyHf5HT#!n }X=9 W7&Vh  N;uh|Ѩ\LARvT4?@KefŀVڏSp+ɿ~IQb2I?ųt/aäR^~ vȬәMbrI9(⓭*uRY;`b%X>Gm'DH.wiXeZ܃d'_|}7bXbK봝GTDd  cbblu t Q}Z*\`f_M j - L $7ֺH I v4  dQT7mߥqRu^ ~7dhQu!"n(J(#.^.y2^1442 5241I2~/*/-T,iw+2*o*)B*c*z,,}c//S2131J3m800!-t -.).(b$#" !<N?bV> .!M %M 'O f Q 77%Y)'+  ; 4 Q(CZ3} |  h 3 V.BpXne'"5qx*##V@"Z 9 v6kEz]Zd:KH,ß#NKJi 3V|yuB1QΐZv%]%KyA]kv|Nd~3븯~bBトC/dXzc p zO#l.96}]od9z5! #cu\z #_pZ#On1grP;Yff5:U<,R〟䅐߻GۆiܞB R$Ӭ(S~:Ze8¥Ϧ}Ҏ}֥j2`ܿL rGn-_ 6Փg2iMϒX|Q֬ݱFBzH[OIOt߷KgxlP|ްP+?qns$\hzg  Gn+9!}X\SfJHx>OW!^:(*uPp`.XWjBxՌKEܰ8FxDۥբܯ96,p]/ث߁ռW݌Q_jױոYlƸV^HǪ{xuGǫ[Ͽ)ܢΦ*{͞'crwGj ؇͝dqA(seM5c'9~R5)# ɦGuHijWB$8Yr\y[YM`"t.1Oz飈o'W <_ ` bU )QS>lD9ejv Y$Z=QHN'Qh8Z_e N !A9$O$C)7)/-_.42c8439Y4g9S[3~7 0W4-E0;)+n&!9(#%s!$g!D$f"?%#?$+#`"J!Z,dPb Hq i()e\CG w (sv7(2`OL _ a{Vt8q/cVU@ H Zb p_ 1R_P fOӝh-K%cr}  4jT s8 95؂bp s ] j ^ t En' 2N6 ك (G=F&&q Ky: #]apf6bhUv @U,qa Dr)TMR[2v >G 6qs:P0{i0 bjM0Q GZ*3X"[:^gDKL79 Ld@ Gz 6 }?D L|Dj#s :#YX &Ƅ鄾i;kS9hHiTp6" _L۴ l#D#F9 npTޅx*D@Ua62 ] Յˮ]ӓɱ"/˜֣¶ѭ7 D]!kҗ 755]4DޱdΉP=ϴWބ~Ң?Ƀ{@ j&)%g?37/_*3Qd zc OVK{C4'!vݑNI|mo k<  w*6۸19"&qZ-6)/,  (Ut G I 53 mJ lF[  6O4!d'_#([-X)w0n,T2*,.h3R.2-w1t,@/),'*% *W%d*&M+P'ST+')o&&$"\hxb L! <Tf%ȷ)ym]AKw8O P !`N m tgP ƕ !Jw`[_OFGkJb_(.S 9f̎!F%J M '!B' u &K># ^A&+MB  iZu44} P } `q Ž o{a|[tN#E9 !Yfs;J2v6H1 xN/Z pm^PE+gFC F`1[*W0A3_1&Px xIg*> Z/-{] ufb-"켑t{뾎聳0wqI)ZתcLq{9[cڔeT9@c }ۧ1嶍P@ڃ +JUwF@τ RoͨڣO(r0Б΂BЈVᖎ]U/̍Ɂ ۫EȇM%׊!2gWkP̀dg〩י_!momS2ipހk-CBhXO9iq7>L坰oPgn唇W:B|. |v^= R y  + I\RP1T=rdn1 X; 7Jo<+,p9hĂ%2*&*u/0@ "Mp 2 v)V{8K݀UVOiPako'9d+Rn$Op8|7"XF Q6ɏb {Wg(cRl]u8?2wqq"l wT A@j+am + G M3V]E$vNﵶ.m >xnhb&>~7ɘܨHؼacӳv-к`F\̡f͟zS.ӹ ύ &C`~ˢŒ^2g&fg$,+Üٙ@/%ҠRյ.P|7 !+̠ӠtiF63φC_|$ޣ(j9b-l@廇9~VA펨/LRntXNɨRuU>ݑP Opq낄~e)>eqO30 ̔ 2 ]  S\  4 2% j4U!Ss!# -o1 @HxJYN &QN#N3L)$.d*3I~.Y5Q0 60P5/4-.1+m/Mh),:'po+- &G+&tb,;'R.(.)f.E')NL,6')<#sa%"OvT$7]Uf6" {<+%_'GVM'B!&C#JAg 6A%a%0wկm00  \~Ngn7m;4F [s p i (u  , z { ܾv ur<~+^QGK#:;Nsp/LR y7'֘U*5;N^f4 x @ 4C ^O6 GNP |u+ v B֓ I0 C~GzPX/ P{azyE1f4+?\_ L`1="'kM>hxM<^Dvkk4;R ˰ VMs4`KRNU#TDH5ێwHmP,ө :0of~_,ܖ؆7 ؤݾfܳ%ԅ;yof{ׄ0Dʞշ6kiYV˟C.G‹6E^Ӹ-Kriߧ Y+aPEO "V$M{T:s)jd-4>~LB-(5 J< m= = Qq<-X}\gWK&OWs_LB! tߗE:[ ܬy !"k W|&6CvhSX ykB0  3!i~:Sf`?K@ = E Qk{]2QAe O} 'c!T0p=?wz,g N~p;-eut n,W8q쎬TtꢣJ ~4' 75r? pI7-@rMޜxlnLߤcN_䟝ڶQADdic VWYi^ή=>ӱ/SJӈuLo/¦S̩T#П۴wݧN1{oI쐻ӹnM%JDgeP] `[}T׬ }*]yO'-41: dYS O uګBCYo a e M Yt .Ec"5iNĸª2U2̏$ v%x*!3,/G@1M2I4;4C5U4t5d2e41,2E./ ,T-*l+0)*9)*})Q+)o*&- )_#8%Es!dfD; s2 " Q l ] @ W& x C 1w1,w5lk{XXȾ cp:UxGR8R--y. c q,: wU   ] ' TVd-hEH2V3V *aZ46M0+IFP%L.̄Fbb7?=Ӽ_g2QJԇ' i | 7 [  & . F [DN  _!MJ=<33o#o 6] `@.SV0_d = g  ,X % *f$U+ c$;q'(ٹ")ZM(0&4%#@+#F#!t%-'n2)!8j)>"W6(!1%mSW"CqXI53ʹ= |Q-$ ** Z E` Yo:rO 3 xj! Q |ZH  JV H<#"5H@hp N 1 2  1iD z>'j/| G x: }>"o"!o"s3 '0 Zj& 6t Ao>D*)H ,4U;* 6`R:[\f21e#w\)\ QG 3Y8SdrL!`X1b ,]DT2h]3hCVYD6w[TKX{V/ j{  6 z jbK@.GX0\pᄏ0 qtl0%ߝVzLم']s$c㵤޷zR Jݠ,WTHUd نa/x؅??Wvڔ;dVCU-cޮB\r`S2鈟A:J+oO,/XQu }CYl?oe`T-[)(7Fuzz|Dw^YF[8io vҖ{24fqJ[.TjJFxw}QDE.܋9'ÁF/IeU6 4"% JE $ u QJ b 3֡  C {9  07ZFWz6 #'q$}( '<+I(=A,(%+cO(ת*S'(%U&tZ$ö$#$$$%&'w'(U(t(:(^&>&#)L# Au\7zZ9# %c7!hN#$ʴ?#,_!5pM?D`JsR tw D߿]x4MTk=L7!y y 8x zo 37} q=N^dN :zSpP7:0K3h}?y 7!nf^0t%lqAbMzd ' ~9 g Ы Ho8j. g:W M8o  k} %% EuaKS+8~?'=}{yn_J:mulZyz >T#Ag> UY\AF2$  P    ; > ɰb7YnBl9Zd"t2.XOr3UJb20St1[;lܬZ_؆ ڀ\&G'dy}mE\iz:ΗԽ70ѥgMnѪc2{Alض̭!ڏmRyC00d@,ɨ2Psٽnpס$^݈n=Z 6 = Ud6ҙ*`>W*9筋C3#iߴxWkF53dC!ᣯ`!h '_| 5[=.بÉ-Κ #`Tu. s= |:suc KjH+OBq$l!f1(ǀ%o*'+(<+').%W.( "&MZ 3#M"!{Z"? 9#N"$ #=##3!!>Kq ;97 cl3< ? DrG!\n'   & Qh kk>0s0-QmD + 2 { Y)  $6 5 ܒS  ^ '1 LV&JO| -FQS (c%uL O /45lD P i f` BGz  8 c  } ]hh$u 4 b=zLId*rkW(a  T h eyAz& }d,jCg3MmωV66N9}_ʅg蜟:-Oef?\N{vNP(\{?b"4V2](ꉼxy ;%5j-0,.Gf*,a(~)[&'%8l'F&%.('L)(\)T_)(_(1&%"6^" YZn {@<PwC^A? akF(ר^:Bb=`Xh 4 m&NZt=Ga>Q : рF'}q  k ^ 3 o *tӪJP κ!pomڿيLݍ ۽qٛcةD6ٔ9AZr4hکq2s`Tke"%:G֯nnTٶtJG⛂%d qK 0;^Y3L긑oc= 6L= #Z=Wyfmndqe 8pj$тhJW=[K';W Nv lF1v J~ I $3 fg YB yjs3[DH*zӣ)V @OP  sqXGXb8!#Y!$"y$Y!7v#/!kn7o.}s j4]w!9NkOއq1Ũj9mvp "  z^   U1  ck z| rH 9jFk>  2  fH _8^ 5, |5X'<a9$^X gx  J @ *Uz}+%\%l|>2&q8N? B 8m 6" m *0 c=6M`m` I.H*Fh\n*ؼ -,oQ23CL \<GMYɮy=2r%'*w_A~211 ! v9L -:VӠ/oq`h0WJU#5#̺zF/F;OZ(e/|:uGT`߯Mi>u|ߖz-R7<^Xq,~wzvrl;c`"֛vߙWt喅 蒆r޸ a5x/Flu懀z.A+չ(ukY=b7>lk*0B rX./]e1Ov9Ya*\Rp}yƽJԞ%LsCIӏ9#fH8'$ڊn `H3 ϋ!s\hiYܦL_  S y  $ /] O C 2 >b HP =2ic_?zH!CJN!ދ!kX ?cU^!ȶ`lQ_qN>{3s*K @8Δ\L'+ e Yh*   5 Ra4Ryp 7]" 'q  ) A |\4l ?| z. &p  W_ C Ƞ *TQ ;ȍ n( nW) g#?~K ]Z*KwBU'67ISh bN )  \_> 5.l K MpQW ѭJ b[S('1g6g8@W dRRk=<Q FXNJ*  (/dsJG(x,5OCJ8&A@u?8|4 {;JLYc~[GZxrt~gJ$UGK o ,$dLB' VS'?}hm. :3 NNI16'PO$x̄y礐D ݨDb ߬^ ]@ޏ[WXgؗuQu-WM6$2Cq8ԕ}:uJ=w4j zFK:vh *z4ZiR_ Q虛4!s. N#Gf1XU2`=NKeOt6WPm,)x`{ \\:U}G.8cV;7ޘ_M2p\`h8'u)U= p H# p 4 _YrPKVO!sJc@lkM+w%:"M *'T`-s_*.U+`/-, /p+2.)S,'*Y%(Z#'f"'"0(ټ# ($W(o%9z&##u!T @$dkSDp#y Dr*q{d x sbBJ   P$i2  \cxv!P˓ S6  mG   Q L[^vV%Q2C! X n  .6=x(MWT  _b ـ, t v*lAmw<hbMc LQ 6!+ ބ -t d0N4w9O+݇4U_S4 c`[aޘ;zN=9DNRM5@nn1>s>\h-B;9~ $?Ch:QiuU\>ش?;|ڧaݴn- 8R ??t Ӗ(AC!\#۫= $pK$)#$;|#b"*R!\/'"c#z/$"$_#̰## !EF ʫ- Q,^  [[ . bg ^Z b& >d e; er^ /-{ %]O7O_JCQh')< ´j {   b ƅS  Sj  I 0өDShM?pjK~k:\Wd9!l<5Kȸ=$*~.a w]~F!\rcY Z#«qc;8/38N2#lo%_ȣM'hUl=f1MC}mf8wKtrLD&Nd=!ֆ||o>Yܵ3#uIyUr1}!ݏU!QLZvޱA)%m+ڋB7޻j<o,5gzPF[R8}-2Dxwl ꏫ2C^?89"Pq19QW cOk|s^4i!FwR~VP(QHI48µ"쓏}_/.=ﶞ~ z &u UKqt# [z O  N C  , 2P1.A'>4Fsbfc|w{hq ^"#X&%o(&u)D&d)[F&'\r%4&jA$%$"b"!| ! y" #;T"nj%;$[&h%b%F%K$G#("!| 4LnoƚtdUi S2IHTGEoXZa Fu R <6  z l \1Iq/k\  /U?<pE @U<  q5ZD8=dߺxO O  K~ ,P#ׅ 2C ] u LC}'a}Q-rmRE8i-I8WlJ]8=H$C({CF(*A[N#7qs2>NB7c&3?Ԯr+_]K 9B0 "Y QP U "= Ahf|!iM*&%TQqd_~p)H9#d6e9 |埗6Z Ꮻ~H߀:䡾औr#3b>e 4WXީy/Ѻ@HتӾ׈zS]\; ߬{,NVً7ىVvlۓU(EwBO BI 5 O+pA_ZnT%s] ȡńa~}|H:teQp!EUz'CtH~ٗ-iBddKWX$$ߪ`J?|<*LJ d`Z 6.wlDp l?͒Gr X&/C$x ^z#%.1-%$l#lBȸ"!ej1lSLc7A&ʐ*d Pc  \!wShjga!}  yyVZ} =MZ 7 f$$ `>a/u1s޷S< ߒtUaG-!#J^5Tj6u!S #jw*AB kH4 x P4:`d0tbQ\ H} Ȫ1c$b2;}|B@XN([YRq]dgTWkk7@&_@=b=W: S?0 ~>UNiYz?AE\42t@zRC & v$n@"[&i$@'k%*7'C%U&%z'&#a,%lh!#r"X>" "ڞb#/$ $Q#!({%rpdp&z "  ܛv%(/fd 9 %~JD!nuQf#?ev#\ 13 K B vX µ A c- V Ek  w"P!< 1r[@׎!d("LN <uT v6+-[{b_%i ` 5, V?0k~b=3!+X`o\ phиߥb^FLzhJ!zA 0 ޒ$\?}_ k xjxJ(,Y~чwLiM y( * @#/Cq-vAG^6_ [ );Q<X떴 R٣EO1x0;~a6L<^;XArwLHhv6չPx}ޑPf,' UQY9j3FI? S\8Ά< qd$V85P[}%]p<kCX_w NY B ֚G B- `'3E  r>r58J-56#F0$W:G4K`X X# kP<6,g 'ht O  e [T .. ( lxq  j 4# Anh qV #^Zrܻ/o,}d w'l|s/zy4zR7Hj) dckSt YS0tdG  e}_ m K;" W # | (] P& B ^'m0*K?nv%mJ&9ܝ5p>p~%KN@3~.8u6C%t"Sxs#_bOr_q![e/qHr(1;lM Sb a 1[=wLFx&iK˳]s|4;-y z2 P ^ G8 u9ti|Xh mn"   b pR CX I ַD  0,2 ٥)NL9Gv՝V\C.>- 9<h &Nr ? O=^A~O_[bLL 2 GL ճ W{^ !(e6\ Ls ,?! C B)V oB!s(3&<;WQ?=AtxB@ ZsBZy|~;T<~gm>-V*p)& (Zg\ l H|F IY<giB#b8"46SY\{D_8\5h ,8ZW߻nxK٘B$fs_vi/t6TD%Fljs\Z J%ߝ]݊l>Tz~1ƟJXTIx)Dso*ZvIQew(^V?1b5lUj= DbGUL}8B C%^  BhGmq%w`܀_ [3kx  K 4@ ' M3EE}]MUp $- & Y& t16< c?4.ʇї@#3,6:Z;#!%]#&2#&q#&#-&jD"ZF%M!.$}#Wxx"y8" ֖#j<$$x$+N"qVHfOb~jlqm}9Ix2w,Cg 6A D[|x][Mn*^ d6 l@ a 41z0 u G Z u Q" D ` g@ L4  z >y׀#4 S \G |W H" N# azd}7? v 0 ʨ` J\  ZZLTK$L%O1on05[53;8!XZmzy'U{rSD﹟`qBRY*kf?T(P"=[_4 $?x յψ3;PVzt6:h&)*x^+Q3{8 MؕyZ'[npʍW浉Ѹ7"MZ ~iM,I"fyٻDީ,L=Lܜ2ٓ3 MrT!Rތ@Aޱ$aQD_'ߨَޮL5\حO+ِ+ieڈ"7lx}\~6%ig7艹2> yM6N !5XU"h'[7"sK-;hC-2m"a+Zf;N%RfDLFn>+_8x-^PkuId  $ s  G ]^ a- \  s'tiR6"{at! k#!XW%l|"z%"7$!#"f6:L؉WA2OJQVP3*JJ!fi La5 P: b C#  ce E =   W A6Agܿ1"(b/bUmLv"9 \f -my;o|`=tdɾJ {) Jz m:r  | b;9 i _A%ZVb\:>Tn 1`J ;Ju`TPL _Xf|s05t+Tk6I)x{IW0wϮA(IR?@0uYxH+zPz~* >&P/Pd|Jp 7l5TJi,[[~!gSy_jT>@"n:{!V)CwЌ{2TOAԑžz ⊱ℚV<磘{ t8b82Uf]w?N7tWqЙAೊn wZ% (䯍C Ċ+ '[ hK$m! #? / mWGH^ <5"Au)!TN-GF.|nɔ֛x_ۭQ #wU d _B 6 Y m7El @ u 7 _|S @ N a}j1J4 u# n޾ n \-z L .b: +(L `  Wh!5S ]iG.·2c5 dnT9J :  &{ c ݘ ځu t~ 9[ y-Az ͆ k %VA5?bn5x%T[n6M"Gidc/"S X(-6TDd^ ;xk6*q.ATC Ov %> ڗAN d o ${88Oou/ *|`_~ , JNQ4ONL MZ@ OCM UbsK'>\iJ  5"0S'vLK>\&ڳi%bƂ~OJ5M x upQ0ؚUVUV,.*fNC^`!>޶X}I="*CuPuU cBdM8v+[oi?30[Cd,\ TN^}U7If$sl qp =|vI5ED  gi v|/ S ?, o t 5I j l? #*+  d [mB  M_#38kW{ n~!~!d+!Ge2C*%>{4H){[:6[l˨{  Ĭhoi83{6٭Ѷ^[:p׵<M`UX9IH` md Y'0=Dw/%VؠRxl D 793M\  -R D  D;C6\M" D *bl ծԈ G 72# 7fY c1xՍ 8 < pl ]Q" _ * +( 9[) )K1r&qLV8uv~kR'mc؂fmfIbJPdRt$Y_W8xZU GOQPkP LD;E3M0 :E g ̰1 b)zT%,94CRGo9fa0d,g ~p9S!5u^2~7e yETlCV%ญd ٷ;`{ٛ ]ָf>qx֟kBAv0Ԓfޖ>%)bܭHNfGb "lQq J/;=Iۡ$A-[gYw߂tXé4,M:q=Nvn;7Ë!NI,Q; ;#`/OTL?+psaq6!RWRl}*)\+QͣP== =) [ N  0  J  ID m?  p 9 y _5k5';+QKc( (0|U=Eyӵ_qcI;f m  _,Zb!C1z pּAWա  L m 0 . # pS F :& RsTh&nYVy!B F1x p # A'mM!Y^>f+ 8 ū cq~d 7T 8F / hXq# '<  s] F(  T /~  l6 X' tA&#hO} Ҧ${Y`PpK^0dFa *9 pVٹJ9??$Dyy1v UT-Uwo s/YRl8h #:51S;ٝLe[}RcNWl޺5j<*{@pPo@ú1UhUnTSUvf҉1Aʊ꛲_D+a5֛ (=O %᥄ѥ:-xԚ}eT15iGEn-,0~ܪ|H^~A⌨bBh% C}gF _|-L߅捹߹'=w2K9? a? 5ܥ;55 S)-t((05z_FJ]bV(gy [& M-[@^#n:65V7x B֥ mv I4krK y hȂ ha[$|aACޓ#L4, F* j  5 ~ # { -]2^#{<Y݆!@j" $#&$&C#-&A!V%m #!3;Om]/w:hE]>T0Ǩaxg_!rh+& D`ױΐ'!;e@ R #I :K l m vn Rv  7 +gj 3Dc jEM A:s:&r *oUi E V"M o{I) pmX eP çb j2EbpkFCY.<aE$ -6S"PmjbKV{]11'Ԡ&;?hluծ@9+zo,%.yۣ J!L>Hza~.M$h:O8/ e\!ڤ9+?`w_2A.Uk9@AAL=JV!Rj{ ^ )/f}bE쮓N/<]xGL ,`~޵q:jM,9]UIh`d[X޿GS?7ީ\ߞmkz= ꯢt \=곚xF4 g ןbJ}U콵IWEY X;w- A:q/~J웩+Qs;C'% )uJ҂}F F2[=#VZ<8dBp`N ܳl 9 T% /b @ rc "W,W rk  x5 5Q c  >   [ j T& N *cwRB&~$1|8ʺ h_r_jxWcR `lZ_e+6QlW3y e  `  N j  ?m  N  µ \2 Wb<! '$'kS jt J7 ?@WQtIrhI'D m m \p\]&q>eX Ìe Fy ۚ8kW%s @ n R}K GetDM;;NL~ x84y\g`ʿ I6zqp"1 sey]V>eO~#54.d`a!"9J 1@d ?- rL~#D l L]')jي+F:Z)39wv^# ' DG^;s+s=JO돐vn40Av4_4xLzM፷捌ޚxnv_6lwX}Sv F9Ƭa5BA^{v9F |m,HֽFGsH,M|ɩX R WF^$JŔE, qO}j՛K6vmT-(jh@TXfL [ 3 v  < ϭ @ ɂ 9 a C ~ }   R?pҙfQ&OB}F\L-uOn Q n.~N<;q_u";oN7˧ y ޚIw E @O f [Ec& A#$&vg,`4.0 ki s c$/sP 0~- |o]W{wV&(c W!Xx Q B3nM\ P: vD:˓rt3 X y - E 7"U O; t q S ؾ̰ { j> <4 Zh& =$g@hv'9: K 2 q-KfR } @`'/'x߂w> zTU^rY uךj?ϳa=Q@wmlҌ% aG?ie ¿0{  w -Akb'Z)S!+&[>.Ojro<^Sa t*^Ru$;Vri-1 *6_Sj-p-_9E :K0S&.BWPl3U *+{ws-=ޥ7I<}$^~<F5#+'F$q@^!>y 6lw*C%!0!$`|1cpCRáI9YdZĂB,>H}58y\[H;W9IkMlvLe!4=V__xi&>I :># V!  ѿ ) y  P?pNdz@%R-A<F Yl>Zzd47 oF `m`;ɶQZ R<. T2 Cл } _pKY$Jlck ւźt(pT5%hLs >b5v16r_n͛#aA|?Pr>IXc<, +' d P % Y ' W  9  *~,b{yqG#K)_l8N5imf/OX6A;8j/քR33 29q$G}Qb#2](8He q^OStuc&4SAb#&MYM eN;T0/;uCmk$V L$u~ֈלTQWWynj풎u(SIm2kG Vۯ$.Xeym *I6A9-#{{]X Nf{*dCk@}(2m)t{S +പ-֏ EpoMqGesf*H |qo 5bL5~<XU.lP^: n?Wjm}*D?1_Q(q>oRH:toP?P6(VkzDHK!1({2?U[ {Йa6  } M - Nh q 4 o-FV z /& @ ' U6 F ϒ N Y $    + Ip e$ *$o~R(|v"? xe=!Y!kJ Pv! xr o  H[aTYO6#9K"83¤#i( :D[6~v\Eǂ /  "M@\WzA\Tb+4~ Y  Y VU"!{[PRK=y(@CV <Vs  2_h M؃  d ' j g  #VϊTFccVEb#  5 [ S ?V~}s 8 4I{֙;V[]]#C<*?H.tP7yk,3q?,ztiWO71wjTXFV_#`!ݻK5{jK?i4~Ǩ1|\i$G1cg ^ǗP=Wr`u(OS90ABT[^@hKҍ]DdD4$%憜M)^(䉢6mq4ɽ%4ĥ,^H贤 x躷薫蕁煟>TbVV8b=.w3QD9')vIXE>茚@D1a#` 몊zCjVM+Ba>Dt5P[Ly=w:3%^g:b+KN*E>j^P.7Ke' + 6/?L {L Th ͧH  qb Ew_3`~,V 80, w ϥ ]* = 2( ` t# E !C o W ŕŁc*, @|͋bGIV3m"PkX(E)d:vdCw| c3Vi0 E̘QG/=$&ݞiH<ۣ$` =Z# >Ʀ )) Yd }$ P G I ȵ qŰ jZ M 5}֒$>V$Yv k?f > u0boI -XT^\+"?. 2 v4B r 4 h u Qn G; sE yE=i ;QP[|fxQ2erzB#kR##%N0/)lR֘UhH- X%ٚL;%\ozŵkt]sPMw X ' x_b fB- Y 0@ l{cN8(sFL?FJTh14W ##%l`9p!XGm>s ֖+_9Zd}AmS,ꯂx|hH+3Da- (p)^Cw f? kkn4M"ȝwG җ& [j eSNm!]EIm i+[ D&Z< ~ 5* °Z o0 1k Ij1 & } q =Wrj $: XT mN iO J+|pN8޸e{H#w igwslDy&/gr4Xe<>oP{=ǘo n  R#q DqM#n<>ua&ݻ.R. BZ4F>Ԇ HP?8 d6V%wt+"W8Vgepo#)jCW Ni4{L̴9W)*rsJJ%BYESvI|2?-7g;?eq BT61l @"@m$ehQ6,RFOi3V9)84C׮~.7(W;=OG3gϭ^6` <c!@}@>Vm'f.ZQ̷ZM\癳sawH⌑5G6Jnh>%$^Rij&[T=d-;CEq,O#83ux5X _N6qo` {,ZbIPJU!D-KM>R4@;\&FciAuNRsYxT#h e O;#tUa&QpMA{GLu 2 u2  E, H [ f r fI=UtH`s[BAkm{x:۾NPn+rDK#dN M8z`>mz ] [ \ Z ر `s DKR R  3kA kn %= &>2 D*M(|#"Q R& - 5 ;x C cT% 1\ݱX9 ZD ZF *0 5P# # bh  &[ ~- cV T 4 Ov QV/xjHڏ+,+gWusn !Ǘ ,Kw S#A((xT$>e9=m~]u.bp;XF5pEV#2 /B %`  %&I`$ x*^!h:8;aD_~X"0d0/dO hJMGJۛAYWR}r1Ly2C*-XMAghP\s҇ß1O`;QOgΡ纆;6eJ]uq*cԷ'C壋b?3_p?z{Mi{0n6"EjikG:n68V_D8 Ж3'\fJ&o.Ux=Rwi_0bt\Sn?>.Q FJ7kdl9%+zn62HzqK^ j e>1%ݼV ;VZh7NOT){! ;itٙ!T1ojFmq9s&$y"}S 9 z RoOoC] A2 O$ 6 J i 6B  4 ZL }q&j7\&J '_{Xc4s |fYI9 g9 fO)m[ kJm h Yxb פ@p {lg % 2 + N # Gj ^_*5 s< >g bL szf)D;tGZU^BtU "OV1 $/yMm J t])k< >Dd:(`7U׳N~ ? A ;Fb ƾ 8{4Uuw$x]eV1Pxp=~L@P[ˋS!5EFނމaNſh8+"=mDsJ%\샛bd8ꈝ3pxG2闉g=7HG¢떢]xyO-5;,kuT\ꆚ)7nT=l6c/ Qj\`B(.#plp>|7bUoAzMbz/1 bos&N[_ mp "Y_T3 Q İȶB NV ҟ  @ 5h A JA  0T ] $ 3;  _7 Q(yfh1>QT65mckah@L O{tJQ*qʏR*pW,aD +a efUcX:2$@ B ~x Psz i D 0B D  X/yPEߋZcg҇H dW};D$nwf!<8 c b? 6J K H 2 /; | B {,  ] ` ' wNK OQ r 9 BtTSrgIpi!Kq,fXgVH{AK=kmFAEBZn](Jr,4m KޫfY +\Y2|MO92iק& ڊ jSRXfs~e)q.8Z # BL"+j_:2{nOSC笐w欖0X]d%krj.y:Y=듍ꨨsVUuh57yoU nouwt+ To TW9%^w|a~8rBKC[qI%EaWܷ'/lݒ:eW:M)r@z@Wl J PrD9 L  ) 5C8 i e' g O H 8 } W( ! N 5 7 ą ^ q006 ":+Q2|9lU3q BU^"CjQ1yn 1  [ 5 k h C !LezK4O+M} u | |E ]b ^b}w  I U)<T VR ^ ? 2 > *( #  {e|-!=eSK9W*9%'[2` 2g FG eJc &u ^ [ AL mX 9 BȡH]nTL(V"~8fL -[ a O=^ن9/KbH!B/kkeBBES_RiRYqAqϥ Fl<sIZt~ ?# JRD x L $ , | ] ! #CZ::   ׸~ 0v- t9 h Y(\ i02 UR(_"%*-r< Jm\00ttnameC&6)E ۗ  y3֦1JmX (Is#oĺT]\ g,LSY οq=zd1`mzr wR=k>==AAtG5N%6^ly eb % 6 vFj? P t 9j5M7#: Ch-Ͽ6@[wI4N} U1 ϋ4x v#c0noBNy.ghC+>H+g*"O$4@ '=-YYQqeeQ:B=1qBb4DG|`!19a،"5l~? 'Yeh%!X$L;wYQUnSìiQ|{(sB!G x)~L"/Pr6Lv} * zTÜ7s)CC|@| *:彉OfhF푇ecF*5m*^kE@sUŘ~uV#} @H,8 ~1y 'xipIO;t|QNy2Eq 8< Rx qMD h7>.`s(G#IDt,q*g* |V+.Ub@,y6# Zk OG[~uh~#SKf8, "nER`Vcq V   1+9*8tch4V n;Z m \>q D:`l0Q^Ū@]i/5hn EOT9-!y+9*)l "~ U & "  B W ;E =*l x z325.%pO{$ g-ƨ?):; ͛Z%3R a: 2/.#z@%W8fK3Cs{ xtO$9 YQ<FnjN ]BFX.2ZUbP{ 1+D 3[/Hc~? <&)My'M+k0%KIb:H雗({섉9}YW!^d<.^]6dS xV+퀈%BWsgv.fMT'*Hx"3Ef!$9Z !VB-~c" ^%Y}2a9>a:JjlJ!T$ۿ1T;o|.& >#r (}}5yo`\?;[>;P4!y)ǹxN( _  Q *$ _M 3[( ?A v c; "# 3% cm\_b1hV/"n7uKddXQ<5B3bmX\%A9G#@ Zx { 8 = J)Fm > 56(5 X  [zI s"ľ x\ (0 nt DL Ĥ .% (_ 53 h rXEmKli\jx,  1'i"@ _>y  B }\F6 X L ;vv t d GDB X35 d BV @ f =OT|ZD2EVJg6nFHr9  5 ~Q'v5:izf `Xoe;7T@-f_jNFST{+2J) 3Fe Mh,K  ZU3.yB.8m4[#gA1 fczMa H 8Į f ls  l   JH m pcA <$` B£ 59 M mUgL K %  R c  .f\'bn:_PVxbmoPĻ R`fL+?*X D%h d@ | ~ l 5 Rqi  ti]   vO 6J z   "j ^-  E u5 +_txv\p Af 9V'~"a+t{>Vm!0%9 o d 8 y . 2$ ' r l Ej k"jE8X6 tq{ڍ A L Q )` [ KM +a\'y?" SM>+, l^Ug *2*E[!{Vp:\)*} l,d/'Y!&k 4Pz`I*ﯼBJ6ř˳_Q4eqx,n> 6k  >^-։XV~mRI:\PmRXYUyVbw{c$l4v$-WzLП*jx슈\ VSB|؏1X:i勉=J.N=x辆YPz KG\Z髶̊?+\r&N rIxXu,{a<ZfՄXI(¡;haGi2tr]đfZ9~F i5̏26mDn6as=%Vu@A]spgsjyMKp@ |!3 2x Kb tK n | }~ z  ZlG Vq9gei{xi?A#E~zch{ebIpW sHL   i;UaJZ<^O tVn T   e=L L R9FJ!#d-L Ȝ J$Au ' jC}  g}a8F 8hWNayJ4 UQ> va. e$U Z  *#ff#N`N/ @S`?r56Ra~?(*{´Yӵk1*uNǴ si˛0-jCVaLfCsf_b.tQ qxk%m':Twܥ$C8c-5,(WN;/1b)__d=l$W ]lsoA24Q vTUj.j Q}{@i//)vً@ ot,$T] r3k:4GTxsAb<G[Y3MT/9ys9;2 SfWD`HA)4]튘I Z: u 5MTR`S,5f2(3'Yd_[,4 eG;r Mu46k*s"ho#kJo|:C \ 4i H; 0 rh m/3 T3U Nc J.y@ ?1 4 ~ s 2  EYJ 0X mV y T_2v | 87OS9ü/C$  o91r:kwzdft5L F:Ue!/iZÜ _- p 5U ׽ NuH7 ar )n  H@ _ )7Þ($)\l>clE OQZѲbe}StW:Dqq+0֯Lv!H$F0 V   ~ v  m R  /@ /b #NI}Y1[cA3$?+BGV j%B ]JXEH E~W!ZЩLGo~h #obcN|*ۯMk%w#3}xZT5zhN~NnH U4fM[|0oR4P%xCG  n &!a*?(%qq]ˎmxGeO˷j* 8cx=1vMl$PۓNjM:e\AZފfq!G$ !Viaw[ub;kf%1PbLT$+.2c*88/`뇙NJ `@Rb&VmĄHMK.?>=:kMiM׍t j  ed% ;#PH;Xrgp + Uu GM :Y ֨ s \a_w3X)f~4QNNX`) ,u @lTpj&k-i3 P E " M% }jF|L (tM G d + -i i f r C5X٭nz |  { ͼ  zܸ)/ ? %*m(k')<CKL=ivHMUI5&Ib 7OiRc0"l*AH tNF^NXZ. &ۻ<"  ' |h b c yX %H 0!U/6:V9]PJ&m]z:i=O!dh-WN3KHm:einDt]1U߫kg te<t#>~,rhCE0U)e *DuBa q n5{ l]hn^&WKkw(ru8w_KjYp|s]=$ C z6iUbf1dXO nZ20? wfT =T yG "-:;"M|  L B,uHo} ] F NrhdCa*F\ C3@ J @ . - 4  :i <Ak9N` z =O+ - @ D-o9< Rng tQ- AX 0 kG 9 +2UO)]<y5y&"n_+ _@ ' 1( K c * 2  x *, /  zX `K+ ]ƕ pb dh p a kS ~(2' 1J 7 jh/3Yvt<0. hWO '$ ` PlI!)ld 1~<$%zw+e#6g-"ga=#\BZ O k 5P D d)' IC[R-L`Bl7!o-Q1L* ug2,~=OWkgR_$Q^^gL570P5M8SC c:8Y\|4ˌ?U,816'L,ѲbIqM߾Wq oU 'Z0?ud {sZx:AGu0 ^[Dfv^fӲu wX8EMa IajhMVF>gd|C5Zs=/7)` 6 =: sy.~A|XnEy  ÑTUɥSj!PWu~ڣYsXrOU9i@HG} Kg p$ t |2b$?bit!Cd|h> } ! . P { :   Y i  h2W,Vv F -; k; Wj}_ S P.Ͱw~RQ`ve  Q  ?` dy: M  b hzX=3Iu tVgܒ'*!()W5-v4Ū¦1>';Mt 4cIVc/ i yno'rc0 =#2G;8x4?U}aO`[rU<1#=bMNR˂AGx)7yڑ^BL"=dp7B̵x[4B0ﭺA4 MʨOS Ą nțd\{7_qGnO/$84t?%i육3 i"*@4; VƝf% k4!EæC2|HCyߡ瞸:&I";XyVri] ttaW9#"1͗uVvTVLPlY~[Bgt Hgf) O i/|] \jGu"x> ?5iSs \dVD 7 .;L X{;/_" p  @yCs:gMmIvgi':e-q{Xm #^cw0 I ف S EB4 ;٨~0yʋ|wi^ C. a 6 K s .  4 !e  z [a*Xe%++B]-IJr'x  $ o ) FK_8xI` S0 ?  0 HD^xc3ž 7K @ s e: Vf{4Vˏ0Ɵݰ:?]AY!f.w .hAqҷ]qiCK85(pf'"~sک~1z=`vBf+4xKv$+˳mz\Ba2M87qZMA"'b".RZF{  =z I DnKS. og5D1p `Hs92n:g2YOzċ2l50bٔƙ0sG>lDՑKqQE/%k `C63i4,fD6 1SG}ZZX\$զ&"`{Sﳏe{e3!.{6e0;1; "{9R=&WZzԕa&7Nm r4 Ǡ`p;ȃ7fHu | # 0 ^9 m d IR; i >C47y! ) yjW   m4  { Q   f W  IkM6Z arTwԲ(hpSNL(d#x1@( iP[wbaV Y i F ɐ j ^ - $W GQ }   n i W 1  D  A/ Pj/nշviDN\yx70n:0BρED z L z Vk D|   rz > ^] , ~l ='hX  w{0POe a;p8pt)p Ez9Li6}MVZj_b$NHAJjB{1>Izxs ptsm0_uI<i/#bWJ|&S+wҁTm %w#n>]CV6!Z-[+ :R>< & (rDYwԪa;&#" ͖^a|DP2%nuuH&dEj7T_;8+.6 pPLO76@"rvj|u~xAkgĬa\ 9#$;u Wz"kEчASj`{Yk wM Oqr %B < ϫ$'AmwFN] l>( ZBv  As@)B5w7"Oi z c \ 1 i M9 y6k  :% ,  J?x | D ѷl @(re I &J_ gs>H b F*" Q Y ݌q%YG MR hl&l P " wx  I% $~ɟR5je' "FK>fO^d;܏f3nP޻PvSNV9 5ĺ5EҖ:hKS_Q=Ld KY)ĈPy. 6޻u]N+ȸ'i|ve8hN*2Fw9M0u|l paGo&f]S0+9yVC8a9طf_ǥEE@S<o8ϳ ,ZJM2_ޠW;W@ ;TJA/oGLy7#u'ZXql"n~>u#,YpIʲUfeTE)d_ $/٦A /WhRt|{l@rSg7A_o+—5? N1TM^laU!`:<}{uJM;>/rzL7=u&{A^AK?CJ9^8>{K45؍+'$uIMBTQ8m'.{Cz{;o5*jeY46 ` ] T3oTkͨy8eLLOg":'U 8 k  nI =_ s= 3  T G ;J {CKm5vRxFyg U UA Y6  9k-  c1 ? &    n P{ n z5  2V 4)  f! Q @  H  e7 c HOtn@``X@dK 4 g) +Kg9;yM$ @\*imCkkc0'cXE p\R4ŗ~8SD 4  G  < 8  AS <0@ 4 !Zc%?mz7 iA~ X m^e1` fL!݀; J?Y t I+4 sz _qob_3VAET} ~MwBj6 z‹ \ZSj6wF[j B`QF[HYL]րA]*iG(e%y`q)zx`vT-gqq i]owe~ 팙v1x6L> ?dXs_X0@OI()G;^47iξxIB'''^@ \X+PKȸa<+ B 1xӍ{=a- 0|<<[.V M;*UsF;~SKCnS/Muyҩek 0 ,8X ރ\ 6q]'$fUGv(,xÖB f ^d E. Xz ; p%K ց  Z ^ +. &"O]5!SK : Z n` [Lq#\QM?R c!A]/.b4L?mx<0n!*9VxT A3c Q  q!  u & p ,K LI&>^14|A|jhneoL- h="Gx,XEAdM?=8x' cY: p=,̰`%Ym mgy?]2 "5[,YWyT *Z2 ϶8~e3I p-m<<} ``uYE{^Y ~|9QN~mz[GL%C$|$TRcuօ}S>av\u1<_Q;nuvJҊ2%C*e H鰵ef錄{Qp4莞h쏊մtn3=M髻<`) 4ja?H;E.4iSx/m 2ܴ h^!s&X+*JOZwAdj aUs2~f   -qcE/ ai[CoMU\zNQ&J(+T.m8]e ݵ'^Έ7E? ~  y,aRg 447JK9P b֢a]sek q K ^ z W =B .b { 2 J2 W άw _F}  m n ^ ˉ X8gFZ U ZA Us $ YuaB*+ ?j; -( 5hh ]g ?DR7O$+ 2'N&`3p  _ IG 6i D (  > ϧ .* ^ {v "n2DEFhyxbܶe-&H&4]Y.$%`+"UJH0ϘzN({-rUMpqJ|6u ܦnUѻ f1e H+ vKi/MD-<ڋ{kELn/UnEnn$GBT;q07R\렏+l!K yhWrSyA^gOsK"QV}Ep/y_-iV{cMi0f{8G+pP?6/'#TiK:[A)Y3FZU"{ .|uq]íǛWz쨰}Gx\DfjBA@7 O )UT E o  3_Fgi {%  z_ ՄV^bJR^hXTr 1 KU70.ɩ ex%p  ~K0 [2  ], %r _ `   1 x R R FQ )@. ; T .: s@=i53   k_NI-F   Ն-,ABpI4`Sޠ;ȅFӞ)XPok/m (0e8Ё  Y_;rY3~N{Hb jGDSL3$csdq)XqPSThYPzqy?v<`2fE[}ks;d:F9dti =fSJ#EPdT4B(9$ U<*G/ a @ X(4j P6 ?bs& fqM=KSJ%'(P1jx()! p&Y##zxtFK9lnKreKccslY;5#k9은ZĀC"_Uit~g> Xif ()j-~| P2JZֽu}#+nU0\+sȓ.WjxA'l,i*8!"PZP|Nhg>&N.S}8d4b=1>}( 3s `O5 h y y cn  `P  )vJ" |! ah W  (B _[< ]Cu vC 1J {_Kx/OJ >8lyKD­+ %r ` _ o}e E A* vE1ox |v j 2^>X'G ` +5 K * N ]  Pu (* b 5 e &  z 5 sJ Z`-3UAʝR[6O.jix;R ϋX  @  .  & @  s H+js3j6iM'./i$r^U.)ts[1.Q1_n<P1 Kk[_;>Po/J«׮ĵ\A%&/Ju~{#%tZ |'|\Z8;Hf _4v.&v+}&,+̾0D=Tt@] bk%5MٶB;7NWt{o B{T<CUL2B^Ogdsy돪@?!]yj`齬[2ned>\T][#?5<>_.;eF3( 4_?,Wk'FX(kb5k>lysU)p)Yjum B[~e#q08A'd+'cz/jw؁'p}%}a]lb{1% s},ҖO)r4\ E4WMbY4 ucud #|\uZ , 3 2ۅ\8eI c '% Lă zK 6 sQ?B]8+~k~^ " P% b`G t_ kQ߷6$ ~ l  l `] : 8  _G 4>xGae (9l2x WV6@ɩqm&y`0c,VNZF;W.jա Su˸o:Q{nvT yqTYe^6AIvC}JqlQLc.[39\jjO'+|=Uŧ+Th4/O՟mEﶢCv=|b&^M{s6R-58^$:E!av)5 oF 8{ތ$4V`{|H dzc_NeBU*;*^ iJP F Z%5QmPJv{65ہ8I˵.}' 4'wHmQOeR9 g j ,bpNg`H֔A@~ٻv׿C,A9y(DI=^3 Թ7  / H D [0  ND X8 ?1 H _  m L4 g , U U)  Sۧ KYBnr`qPŨnT(=H0`uT77Gf  sTـ I B oT P2> 30 }/| [Gd  2OS_<vCIP<Cz@G$%;yv;7Q7v8%+Mj_#/?tHMZ~?m ,35h@| )[c+0xNrѰv q׷ "5:'{? uPIbhxЬC4]*ԔTOb:`s?l$aj%xLgxM="Oo5,2B@<\J hZ yz> =, T( no  # h3 2  fi j 7q=GDžr<#G45 y } & >   dfy1 h@ j N! (w5 Ê k\ ZY i 7Q % PԲ =a֥  8R| E* 'U XE$ ) { { Sw  b y} ׏ ( j E d =Fw.y,=WgoE< !B#y:*,  p d9 V:`U )ON!$u\wYIPL'AY\HT2Dmi21~E)KJ&C_b/+Eb?9Uz9m_":Z‹Ne!zhHɶBOq,0O*0CI`ErxM7Sn/2E!+sY#x|H?m2);mm5_P$C$BԞ/EA(biI92 aï;G^OTN,Px.103R}R' ê׺[r7kxk~NR麗 8gPV-^r]'9< D!t_μRv-(AS#K1,`Kbdc?+!WH>S)W+lu\(>{Ha0% ;> 9 s IMu4?q\4  r t .bk ̒F u{ & +Da 9 " B'UV[8rK5x$ $s " ,^{ e ч)  G#[K   qtsl]Nχvf/6z[+z l^!ۅ(6y D* l&@`tä!L0Z;.ql~3 %0h ֑ ^.v-i4q1m]qq 6 c:pȘ!N˦2L5UI*??<,69ngBOVIs@D I e>f{e4T$.xY[h-'<g"D|M9,K$Ԯ?qJ&ԏ)j+BLz! u}*u$-< dT$T_@&'\V^+.3f퀙\a 'O mL(=xU{eO%,zb9wyjBZ܁ML@lly;]RٓST0< eޔyqdS*H do0u? AS$'l\HWdm#m>l>(I5o}Qb)X! nd._F^#4Z.`'#ẅ́8uZu-ObxT,/d-@)a<N )|ݸ)gn^|d,2#Z! !q 3 PO s -SIm 1 X zx bf  Z~ {R c C @C 2 l r kiY EP .D{+c +W - =  8Mec@+Ȥr:(li6"ֿk7ub{qG UJ%#@_k+ K / 9 0g< =("t_6NE +   wo x h     #WAd!'Y_w H4A.M5@@f ;K=ɪ̏Sbj!JU@;W\*kp!U ;xjaO3 $%ES{֕Nu'1)kPb8!P64\+zRJU$Tz85c-wa 7/Hm}Q P5=\@T,bX2 % gMX3P1pYL>eZ \ !m'|0  gPlA4jh16;w*SS,NrS6g cl|gwCw^U2`2Q چ>rER{67  }^`ti2VTʳA};M\tͮ[VܳP^69Fi,~^0Wx; [3' *) `5 7O F0 Y 2& m M3 0e" 4 t4a`"(smI\A * % g 4 1 J%|N JE .7'tD$Z \ zX K=*oo 4c  N P6 {$9Ef&JZɿ]E=?!Wq3zL@\F:xE0W= l ,f  ԾV=ĉz )/loKGP Qa :qR=M#qM.ln߿?Al?^IKyOh3qAVR.kYZtbTMvْ~q#SBZ)%p&Wwt Hett]'w? ?m  2 x 0x|} @ a?HHtpt(P4eb1;=D-FLJ!-RC\*v{c*Ft[ﷷ~K8+!RIBzqꏅ-WwHTcEQC g3I¾22b0TܧIb!p(X ~U<.ۡ:fQvpz;i4| ]zIJʿf~0@-)o˽\+ SXzhvOu) H*gXS cE*vKF\\\;{S 9α  Ѕ  x j  Dy < p& /> װ b ѷ jd,Ev(X3^m*2{s@G N ,/t H @4ؐ ;Q ZR d+tpd3 Y=G R *~ !yxH K&D5  ~ ϩ,x !%f@ U) wWbs 7 A8%  .B k$2sE#p@-ZOT 8RI~+={QӴco ?ɞO[F U! w `C ` AX `  g (N+^& ÿ qO|<[Xci{I_vW!('\C,^/-[ҡY p@k #.;#\p.7mC RF<pI_̇D/PydOI3b>D 7U"G`ўq ]Ez* *XM<*+I|)L1`Y2n9 atXI832l/vGFQlmK@W?]Ot\,ǹ5fW_7Bn*ky!_\ Fエ# _BL&GdD PwĚM̓ķF݀4+zsVr? xsH*y2٧UdzAufdWĆ훺!Pawww3~Na x݃ Oi@m5z=.j}js=z4#uA%qF>P-4/h<7w'^pw",q {$}t4c߂%[,$ E x zsLE:vc[z\@ A. - bPS: 'Ǧj/D{cj4z,ӀWxv:BfDOH e {.: ` 9WP+ dniZ;skchmcb[y;Xr'4JQ%+Cyw+ZhC3q(39hP i ߓ40!9ree9!mT@ho#SJ2A=X>\^"R}@ )I.F]< LJ;N:o/sSfLE%/{]ցɉyJ޳fճepʌ)\<0 ;  ye_  f`ݍp  ^W.Txv_ NHI b> f'4Q y1gq&;ꡩXlC-VsD -Q^ T:#Q'rwlMjX6$?}zW{?S܎'=x("m/xGPh?}8Uؚ|Q_ub}c#J j`T'1=^2K&w]'ЦZE$gb{Dfj2xA^PSNuY-x .  <  qSsgg A ns>(  [֢ 3x 97 (z 6*( gT rW hƠ + o 3~0 d > ) ~ v g\ M7DL7" S ɂ і ,V  Fp CL H [ d ɸ  n Ԝ ݘ uH (R k/@hnI\bn%l ` A# ؿ fb 0 `' } o =Al)s%Gb7JlT%Igp^AVzWA"tTH}KB!;ݮ r{ j ^ U5l; %H C1 TIm`/jLgvu'=U6R$0RkN }"W$_nr|/o={+$/GQ\~"^3Y;%hQ5`[/r'5UU/pA~=`Jh>Bs ռ nV/e/3?A2_R?q>yniT&W ?Nq.s@֘ӱM yߐB`ځ6H[UQ5q !t6W4}%woU:\-;1U+8n1xGСEC+a G~so S_YWodLIaJ#<w40S'oPxb3  Q g- @  + Y_zFX!7g5CjL\2jQ 5 A y, 0I "/ ) V)o ʣ0 m ! ?$9 |3}}e> ߻ _3 H Fp W% )R ڑ\ArOɂl гp! etV5QzkW[lݷLdljbS+E,)է a  tJ ?6 `9y|Bz9dFĎn Qɫ'Y QC{R> GUt4 Iҽba\^^$W: I"Sgt-Y9ȍ,9y:(V]/6qmx8Qyi$G&  |qf yi n+0wA6Pfny`:U<>21)L`CL뫦7^hߜbD)!|_BMzȲ>gVcl_K8qr^LkYm BDMw+jHl}(Prޘw@L+reIvk)S}ꊑ v w>7;T!#y<38sPaTp?v=@~q{-nZHy]k؊,a`i_.6̵V٢c KÕI,D@=MPbC`%i>6+KO4n,dZr] Wjc@_Ot'9pZW?{BCi3*hiqmKa4| : x!fMڶi X"dfTBDR#=_ؼ %zXE.Go,mTZ"WlHnV&;wa\pAd3)Wqs=>4y,wAkB[v[kskj;wOVP  3" V/ # {  M4 5     2 ޢu  gի - +j}  dn J oV} 8w Kփ  p=V ;]J8Wf)"# f  eH< 8LX Yy ^CHVsțb cTn -9& %^,  i ] .E 41N M>u Գ=  ç $m 8 B eRZ%CbsbSЉbJu5p I`^L?59F Y$ 7h S) B& 25 } s 'lP,h2a$;JK R8M@6f {Mz0P'|Hl_&LeX>1ne 2uZihS>J8a5c+^,k,8.3`hcuU b{0j)@b Bğ[b OMQ`j*y[ :ozxoC{7KWU&pz`OX>b?-YRyyƬ$^7 8PνK1]Er* 3ب;Q[M*|gnlB/m^lURMh`4՛ISz# |9M-Z-Nf|! GmL~bVK\uN3 ''Lĥd%iEJ c< xI6 mo#/) є*  A F" 0S2b 9 %l>59{\> z  ) 63J fAtj V) 3 ` < QEj"6:   )v H 22 S,G [0 Q 5! r-^ 7Z^n:= RM 7 S*  q 9  X = W[ 8oV j  Xy*>w &zNVF+3.f;E> QG܄>K}9iW ѧ˦Rk8إ>{(vXJ\?Ido`8)=|>$X6Z h ]iAͅ_1VaAPC?o) iyzەD*if;l 6'x=N36SGދZ #[D*I!et yiu-=wpl*ׇ];1W:fZߪCU~&ő^Y)>q/m o?v n?Bo~ bhc NYYܯ|5_A<>^ToQ{ﴫڡ.# ;,p&wk$/Zn6eB Im5RJ1.g,"UX:F|X} rJ.(QoFwc:Gy)j"KMj@zLk6F| C,.8=|Ѣ%tLiþZ;m"&%7)K`OrI>HN'` X  Lu=g   0 M bJ p 7 6 K W m\8 &T *Ƚ j o~ 3M uz>!bQ9uy[ - |  + 2 W YB ( u/  , u  d ! .F S X x z1 2 ]  t V`  | ~ n | N h w w fo ^-  g 0. ܫY"cI)"Jst`mNVCufKvvy, mD. S* IA6NOO iVDom||ta،]ߏAg?[ Wd.ýc:tBv=/ź1]P>J@_Dw23H6E9cW_Y rfYU{`5~,dt9DajMPu2? -sbP}e*?S/i';6ԉ^ z{9) s,Rl[cﰇxy,%pOj 3S.lD|(Qn{c b G,J-?˪J.tȕ 3KhSo[{pb7Mu"]%qinpGdj:Fޕ?K4)ce*|{d_JI61#ND 2nYk{j0xE,=z7<OLe>a _k | k R M+Zra+ t4 Q?(W UV pjP G 8V[S6>rƳol @ aR > s zA7 PȽ Ga G  J f V _<  [# i ~Az OunlZxZ[Z'pgQ7ME3b}:oqN#d=5V>]jl & 5 0 P 5  { ' L a c" A$ I 3q=t[0?wN7 ;c/l4>CB<;^V{j}8hi:>]iw/@t q4I,Kz}Bд3&`Ҙ% ?Ow$ "C5Y|0L5* 7o S0eQ\zFzO$H~)6sD}/w_}m BlW4`ol-.]Y|\TVfE( U특a;RD$)QÓzY8yhq :Lt?~Q*'9rVdE܏7HBvH%-߲e@uG1(nxyU:%$ ~nu=,#A:|:r^w3{R7`w&=sj"Ҋ(MBY2;F]>pEr WmAwKm/aMŠ may"xSK(t:) U' Sm m d$  @('_On= K v˖P@4vbB&'`I K( x 'RS P %y G mV  c ~g S 8 "  .S n  <  1 ɿ d S  IFO+E6s9i?}fS^U 9q6v:h(v$  fS s Kg m =4 '  -  A 1 Md J* T yP [y >0)u7mR2-R*N=hƿ7F9T|.a}SzW+O]\k|<~M(̏]_u}Cf6iI'D}I{{wS})bY{OSaqe}Sa0 ?yZsZEKM0~el=i}N/ ؈Blh?MߌTx-"aba÷cD3L=@更TUbC)XQ>v$dkS`G S2.Mr$  ='0n@l^UQ$ H6OҬ^,s.+Iܚ C&KF xZv #  <C t)߼н Z n( *' B9V yH "Ɏ H@ 520 {z ? 4 z P@ O A4  .  .- ީ > )  . @f , 2 Kvz9 r ǯEK 4Nyvy6.I@uɓ&d8#g<G\mo(a SNC >:)j  Dp3s;J & `/tT6q*>ji!̢elVz:q:bx)USl+4= Ϯ^`j@F̨ ^gGnFUv\z `[-8aB/fD#>*/$ep)TTh=rYgg#w,y]bd8{@B/[,v tXD \7e(zr;/5lq=BpEU6:kZ4bn svM6 :NAQ|PU A+]($bp uoT~rQba`5pV<Pl& HTxd?,/h8OLj&o_tW ]N H:[$kciOY;ƄyDE FoFGxle&ڝudm-"iuM7YH<" ]-Fz<\>kEcn9gz'n\>֌|tGNs%ov)Q]F0Lxti8C$B]d?"+InCd.2 +Cr 2H(,;+8EƋ[I; rn:pn4X@ A> (޿oNJ2=y$ +c=lv)}2̱b-l,C@z]^G z~kX{8tJ%J9 7\x`9R~RUd / FM P I = {A G  .m B ڲ` 5a 0 H y >dk Z`" 1  g 0 'K B=&  E  |= n R  r0  rI, aIa $2C EeЇ=ӹF7oŚ^!t\%VF Nd{' -H  T ^ i, * * pQ ? F  5 aFV}&^z]к1.bc_(Iowa (.CBi/ ;uNj'prf+ ~v]`+$Ce39 s,Auf;5з;?6IxD,|PI.jeZNsuNs($+årwRpx !3Ma=V`18r]S RMc|n9_ssH?Ԇ" =CΫnHxME&8G(<&Rܼ}Y.iǴyh2;VrHPo}#&uT wzCCAąb;?ޔ'`"lUe#[ 1 2 / z  F ' A S   c r .o Q Ms z ^ G q ׿S @I 5 a U i 2  X1 ]: R $ 0/ n :o W  dt q ($ h[z  e 3 |&Db&qS5  _ =;mq]jLcN G ]qe :ׇ 8 >" ͔µ < 1 Ec a @{ f K Y\ 0,Pv -^AUւUn4ԨbZ1PT5s`E'Cx<%j?$wIލJy<] I;jmIbW2T)O toy b^ϲ( l07m s[j u r UE ȣI$2| 3 u  h Ì  @I a SP ] M1 8Pڽic Zf?` 9c% f^ Њ   j'S [=  ~ Ԭ  bO 9 ] /ؠ Qek '5 ؽ } l( 5 x { > j Q*. (s. y^a   P lSLh6\-@x4&@Z^2h8U ˀљ dYh ,HvA<5l.'kXXomumE! i0Cw prm:ބ)ŗ4| 8s`Z7rd8ok:ɯkOUE9m!surA'-_ 9F vuM{MO%8/DR,Ir!%n7)Cd bjIFEJ3/a$p}`&yԞ${6n'=2GKQo#f! *G@-^=8QD*_Ms KY/:gx6>7Y6aexXMÿ ߑasr9 p+'.b|vЖXuydq_A D`±H[j?SY.a2NVʘב `/ |J 0:   @Q j k  <Ū v rA4I }P U 0f#ȨZ+H=FfY?QE _+M3\D,p^` [T2];&?-AwZ&_gNӃp#uoZW7BrFMEs:Z^"fhj8}\h g\Br15CnJԥO$2oFM>V?3h?gp)z:"a&S;g.k`BR##ݾGdab&% ɒWR>HU8C5wMd:`B!J`8~| A[{l*o),>@B-?č{cJSW}]^axEKfAǪ`wO/ģmlxioe1hz+kwgY0֡, bPZ$`uzAXN!WwnyyO   &1 v b̍vk:/v<UĤaXR*aưY^6@Eg71 T wA] ] ^  | Or  2 U Oi :~ pY%1c3dT#k+5(~c7TX$}i`V/zr M . , M x u4 vxU)'A~ML~A[/nM5gJ aT_ j"t`mSWO4 #t Y{ ^ px- ی tT)  Ug`7? Ȉq‹ HnPu]7{XbiVh)c^FkjLpd9ۃ\e-\Zs4!RfXs )s~r5Z^eBm&lSO6p'k}VHCFT,3#r&zFIFAwm3Pvcls5P0XORXacG?3+z˧W&wFwĦx q@!8kh[?v8j7Q `\?%>#uo=’{8MUSdAз0^fEL+r95;$YWfc\,2%  1G 0>8Ote,}`%VJh/rdfhD$ R" 8f @j L2 fvW -z X +0 :, ^~ d2 * Bf + m  > ؆ P s&   ~ n(   uh πB R  Uev kjRf>kCMAyTrևD9Afc\D=1tg F~097έ%8hJ<4x^ G D k  + z jq բ },@ BEՙS)^iiZ{pJbu[|^VmYb v$=9do2>6 yUQnTq6)īI_Kqf/6[s ln"RcS_-fL0)uX? R:T!8A,$o4I2&-b)L-cq3Q4| ֢SJk!2?/s d:;PTDrL W[w n=]pcR~Md+!!T7kn/IK09{;F|N5#r?G3ISNW'9ҴlL @405l[D &,@IR"n+4Z ? :]5{l9uz+BڗaXqߡAQEfq{ PUY'$_7S }^(ֲǢMdk O  % ); P _ %  #j To$ @ q ;' fa a^ 9 [ t 7  jP gh ( & &M  Jx` ( Z  T -D $ X  c V X f ق y@n  #v )tB d O" 4 ! +JsR=/c|F6N2Q54ok^ , ^Vx cwg > " Gu|=fwy>'TQ?a `'}=/k6wgLiȑ_|>.] MIf]y/_'8;0(m ea'_hhz'4hSIzx=b1t6(J%#N0?:}ت'o6\`FXjU/0Fg +ߔNJ܉Ei !iҡX4^ 9o%#ETF3Հ 1h x6V6S#NvD<}qPt  @ } X H3 `~ ] q +B @ O- oo l^ !uAbz<ua(6]z 6 w] Z{N ǚ0 %N < S * vO j %D 2 U" Nv x?.H w P4ڬ]uQT &| Q0݉ tQB "[ȁƱ\  IVn Oi,g 8 3U nto|o~-}93lg*GOnTx<+]L#)=8W3 šjvy+; YHd?<WlM;"{x*p Bn^F73c'ԏY$HP_]S>" %: r@\)@c+wW{R6A*DI+hp'j4Q"߱DJcΉaHi立 *-:IEuN8kIE$w쬄_04vWHNٟPmfwm0yJޜ I!&j 8@s5ĺ[b%+n`:eXe%C_#^ V3K:<|G+a0u\o0fM+xXOG VSU'!9)4k-?R/ 7qz#Ubh4% d )t IN%M!@}{x GH A H ! E |}y N 7 & ]  ~ 9" J8 b P r [ { 3 Tt Ϗ<  .. 58' !7z @< <> _> p 'B`| p HQ < ԠRM _1p\| W 3mJ}]{`{|Tx/d3/J T \1 e y=   r T ^_ `; f 9  (ͣA`C0 уK2A]zL.OBGoRi\$Za8y{'arm#~K|]F=@hD?iLj^cp`/24#3Yh!}nTE53F;OS>y0R cFq~?0t~OwhWKq V`R Sy?t &ICsk՗ȥofT{G12͵\؄QnWDOוS8)rrN̅ ;QG`Q ՞L:w ,&C<D ԰Uu"LO[C|a5"a|3IIX|mGn SȍwhZß:qN|.6Bqw.ȰoI8-~]FHISrL5$)h_vFN 1ؐ)  .) EO) Hb g ' 4s  iv k Wr [ F. k* 9 zf11Y7!{q$ o  [ z } , Np y ( 6 q ] rT ,J   P {̌ / _4.geٮpe [\gRrr\,xTZ"f} 99ٶ4 _ mPwVSPvfY\`zk/+Q>-8U)Լ1<8]SCLGvEݬancM\d?"b8NKD{b##heRogʢ,7:=,UW(&,oa.R"6aSF.2-GkҪ׊^z.g"1wOS u[f7P5K|&~#n p-KEHpL$JӠ} ˸!]7Rd mrVeH]ƈ6IGA0jTsB23XxM"J>F_t9`WU + 3X3nL!+p "&1y }<% k|@P?qf yۍ3#˺I_\d27'>7U-3hPf֬+s&Ym3~yU [},aHlC!į2Cw_5Z=>"Ӗ1ve`I}.7M2!HR>:C~]5]^ h V. x$A ; D  3q  i * x$  \ 7 Ījl ( %!aoiWfg`u$"4fmVg?u;s P>3?"(uX\M:\is);Ob& ]}zfhow#3hdB=fL?hi?e-g[l2aG \5?:ʽ'Gnn]$q\1Ynr''.%Zrмuw,e^tJDTac$Y@g4Oa ^4 rF#ŷkv@< ;ұm1]TWtCї}Ɉ b ^V9YR\**6m N[/lHɐPHY}U"(unW_S bKTLV8L'?y)7B0{+MsKM["Q=9d RSAMjRX5"Į4JlVK_|R>`sTx1@{Zg?Uy*K9zO^CmN/A#lvc]erK%UyHkRӾ"Np |1S{a \f>uű^)n вЯ kD}[S?h7K&D3s7-&hKs ? A  E  -  Sp  vp (4A q d y :   flM ]bt 2@ a+ ` v? Ir DtbiG-FEMު %*c+D1{bX|uaR:, uH + Z W^x 2ݩ *b8'q6no"*>nQF?Ï.~D] d g  @P `0Rh }2ima2ئRT;M6Q.l E65:ilEiMQ^ &rLQu(߇syQl6Ium `n^r8!*\l̇4<-Ux9 Yh6uR3&W_anvmacvL'4LqwM,d1Y',Y&{0Wrȶkry٣@x@:߷UاKu'qzeS1b̶GZ3qUT-@UmE(Tnq(&PUSO{SQ51uy]*ےCi/ 3[`Hb>G$yk,Jd,d`=s6]s*i܊Yv JcɳW(O>N3UA>=)}5iBx@o5nU*<0@h u i 6L 13`WJ/ >a  hx &Hy $ >j ޥg K Qi $ "= V J :& Ő  F # Ш FT* >\@  , uk   N( \EXJշ*|3arbTb-t 9"\59Oϥ߱, ( ?`| A fV ? LP )up %1RҺY30l:Wu֒ ȏjnoPqMJ)OS8W^'#$)<6Br ) ʙz1*yaCu2'%ɂj'AXuWN Z Ir<%=VF* I}P!^ykc]b#oo,=`iSirJlK/0+DgA_F4)H!qWI 4V?QkAA %)wa qװR}l\żPhx[QGk/V)*n/ɸ9DN:0DTVR_F Mu=?^%e\r4k,%- 6[ ɐ 0ѕ Na E 7 O ve8HAؽ>Q   I&E * W; &f KT lp  T* . BC  j5i 4 ^*  ;0 2]7 `Z d@ }kb 5x#.џ0MPlEd$ot2IPtɛRD>SQ)j"& N yA G l R % ) @( ^D~ [xaANabڒ I=d r >HUd2qS )+"f+9I3"&5)IhhA[DT.LXy6 f@%h߃sРS]z(1NLqAoorrp!NeZ̧}_M&Y%7+36zY:U ?, '}}[ PC y:m L[pKIY ;$cPr$upv],GXunǡ%I/0RE%P }0S#8 -)gr#d^1mإ4o.4!99/Q 4R+ L#U;*B@{K]f;'ҫ%UZLaA_bL i\%zfFsV d79cBm2;IL|qEI\HE'5oaz%  mAC U 2 =+ z|-dUam;x<-TD <{ 4 s |  Z Ϯ \ U  n U 4 " M | y`  > t4 W b$ vUT> 0  ^  % J  'm*zG5V>nZ;E4y!]K--{)G'*)ԛoy7%',~]P_bf-@LGeY[Hb0Pt~<:<>EpwHekV:4Nid/>$P2zQ&# @cG0AS);QrϔG)̨a ]zn)FWmrRFN3k)#C:ɮku} L_  dPi(&ss:P4VJ377@lǎ9;$S:z#E%5ts#bY|##_/2  PAq&*Bn?l?o>_?_=teeo+$F^!0=0axq4aaCnC?t$ 2wF:?uVu 0 lI  d5[ cnO!j1%` yXmZ]D1eaIchRyogJ|5!»E"{3}eYpr_ 1U +2MW?zR9U|rxs _{[2|+Q9~}X -* /+Vwe[ e>c>@ @ݔW5k]>Xrb_7hL D |`-Q s B #lJ8)<]GwR/ICE֞:l_"u:gi(  xp{F +1ա/+o<=-+k}  r<4t:a$w,bQZП8O4VU!M"gPW 3bh6A U,422z\$D?I{Y: "0`a g8Po[4Ѳ,Lϓ}y@pC[Ep.,ڈ]!cEotfBm+R˃ͣ߿mnr?1 e]o\xdTS]]t޴+4}֎;Qn-y f+lRJ*#- !VTaȬ<W9 v > rB d |  / n  k Z  B  8) > RFIO=˘\-F n% h\ ( )]R a0 k* l!@M  Q4  6q I le 59CFGrpoGb<}%~ ,G5j#$Hbj&|=V*@j$*V +  4 ~ _T 4 ُL f,  u ; Z| L ; u( h a_ 6|I Z>4|YeC=AZ. 6`?^+fwK5_?||-L^qW~>u!/a )kCW"~ U( 2lG"GzH1\wzpP.00 )+P^o*(i_W s =nO΃ 9ﰔqR $Q d*!3f8i(1e5%v/Vu[U'IbIlNJ}49} 4m8ReaeBQ5 %q}yO 1 <yJDjq x[& z#W:ȥ.PGWr 7/rG rVQʡgy}&OW&ktR;6h~.q3o]TihK$7 #S\Gv%F`3VDx+ImzJ 2u d`*M ) ( ; Q= pCa Hi; IG Fi , K ?H U i ~ $k lw X F ) n 7 K G\ \ S + c ڴ S0 lX o Wc w  Î   Fr\xL3DzgLz] U4 _t m<h 27N 9:ª ` H\ځ"tO ƞ 2w ݟ UBȏ [ ˆ N NB;? e&!3O  եW s XZ  /wxd dqTMewز— -;dr!*9Q@XI(:7sJ}G$-0wY'9fNufRoW̛kŒxK(6bx @0P*b#l+S#hQZv W :odya:' Ku P8V7U*m+ۡaNUӞ {5 V}5s,s=NCk95S%lL%Ulaul 70QDoqp7RHKKQEД;ϠK@onmۺQNLI=_ѫ>vBdkm =<3$MJH|y+(ϴ#6k?3>{uB SZZ>vȕ-̰n=P,  ai^B $h,mkQ  P  R    uti a Ε*x 9;   J P B  J G JW z\#  Vڢ :w ͸T}q _"Q fm9,ܡoXS5E T| 6FrJ{?/jgb:4QDNFun-n&J GAt~PLG  =(ApQ|ruc}?5[ 3`|@'P3-x U(j\WC `a%nK''E=HZX*cL|d .xD T\{U+o? k TTΒ75TcC/h)e;D}SJ&mn+jF>K'P+WLʴVgpp#_CWr?ow \5_ YQ(9Sd7$RXpf#S7[x v[%vY o!zt4AY9QfmLi$:J^I< 0'mХl :aj!QQ \J)CKSM@Ap?%@RG-=E3 gy\e#8*%j S{|Uwb,h+wRxL/8R1%w?VcW eņ{$1_xUAbZ{#Xx+zy&0M 7a 0   85  o f1+N 9 n x N D   A^ [ c 5 ; W F  G =5 p L %Q AOzON oְB1$qeom~Fu5AY3|0, ɧ i ܩ# j (9 `fy BϺq?\Y,*Msd?  zX *x K OFJTI}UA_}dq/ !QJ.UM/("[\A =<Wu<'~mI b~kJ'kVtTE y)~g*\QqY v*Eݩ:}z9[;^vFPI4X8;Cb.C. Au|uu />0V+W.$ x=(< i*oF"-' FD 0CY>_XW͘B-G*]5kcD(5BwS/7q! mjqduI{jlfH=j@Z߮\9E@(Q{;A9'JGOL5uO 4 Sj:%?? >P> `.Qs-;7Z3V.UX6Tx}ǯ[p``J(6TiWMc(%\g:7iI*3\ph P<] 4%$S{(y\ +x*`">t3 O v 'Nj M5 F`|9B G  Z j 0" \li LP C+Z n9r8o8o`*:d˚dI_AOM #BpϥItf<VKaH!QIu{8؃sQ5NVgWREP <CX BD*=w +)$J)ГQlf=\b03'%|#'u'9l}<ON-ZVcܵ!uD]TlXQ\$ڪV [KHtLKk1.nI2˗܂;^B)l,:p%4=% hetGN%Lp$36`I\25[<#];g,+k4*e'a&_dSM _߷f>a_qc.]PFQ\%w?WwBeT۷dL|- ,k`ed־k#.<3 hL+&f) *IYMn@ V P bN1l7D!ނU2AE<:po3]<%#Š1{’R|fhl i&2aBQ J U  i پ? [ jyD3s\ : VnR ӗ 2X _ x7 ! 2 + _? Q +" K " \ # | SC   Jߓ :e <?DJ[ a^+Ch\Q@s jT3HZS@=31_A%&\9T[,-v9#Di_'HQK !4~kA7ܓD jnV[oaXyv0]Ү%?n> X hS`<  CVq&5Xg8OF;‡aby^=S/~>.kPFok؃ sz- E{d\@6]pb@_SJzMj t3cĉ(~S!Oo_Hfz "pQYO6:5_Jmv u6)5cQU'AEr4Jamor]R.Oޤj0DA9E4=eFv`VQPs11U~zE ѐ+*w^!wb\9 =IwRz})x=YQ-"j&;e tKIoMj~^}A :ƴ"1{citp^tYtAf g QK`' H\X^:?8 g V9 9& E,x 2t OU  1 evL ' c #2 [ F )Dg {  N-< z &f9 2 _: dMO 1Dh'ʼ5h e NF CX . ( q6 N4#B]/EDw(m , \4 _"  cX _O*0:}W!W!iD.Z}f= WX  nP ٠! wymwaT3R'&1At1ԱZZI?Jv'>?gL"0vavlv~bp|/;{Cr-~@dE9>( 5,<\ac \ӻѐ$~y,SiЦ3/'9s `f$@QRKTn S' sreSb63~GxJTgEnWg}tH0774F E!sk`f8tox`=$UX+n%h=,Lrq!y+2 [NIAgU6E4/ujjDz)'8_.3Bm 9), S[/TĸkA'Xltl `qe 58SpN\}CVp=$tt#zz rΡp AZVHաe:] ~x)JBaz q0DѤ}T[UrG G gqT pa (! h \Hv  Z=[rV9yP,@?{K-Jn"!&HEiAK *E~9Hrmwˁ?=W.,rA)F%k^\JZHU*5_%k']qW5.?\Dlw5?04,aoW/|w Wu8N ,Jo׼:N >)J0%ly~V[+jU_R!M}MA?#C3U[|4ym*fki7(ulK wg@(4;Ci-g3pfr `@Hyvyo&>HQsIMlp T?d4r430# ٱݲPEe}`łB*c[>S[6}0Z=!YN ΦfFrܧ.ךIj>=Cmd =uD~ԏcy26fZLvi>%pS.P p ,1DR t]7>p t G >y Z }  > ۼ [  Z& F { ۃ Y W *4 ;b9AvSq n| S d 5  - _ }oSQ  Y% KE ]sqH1lAfyV|α}P"[sa.c77utcFQ@Lp8{)! d:@7 O/  O   *Hhe2zaʠNu-TPo[= jRXg#Mce`aҍ*XEfQ0 q'ߨk7E\c=k sbc-k>'zGtU IQ%g]bUTCK NRc,Ru`4!WsO/- N[oX(o;6?bE~XG+ ܫ? ySlH*O]!hKIZ[Q 2@ю 81N 1  0 Q > Qͳ -5 !$  e0 Q  . % S v 8 b  ]X|v1:(_2 g&mNpGfu8 jĻ*.>r?4emaj Z)2àHZP@B y[ŹStuSE3~Z/0q*5llM\s?Sy\z*ʦ[\C:GXd zPF@ ^3K(.Ҝݚh;LK_^"7CM-nOc(AK^rRJ$G(5i#} ,&=,6H?g %F<:^5XEUo;yVIu`gWQd{#V^)] RnUX4#ѨՃ!$}-5%ߨP Im C^C<@%utY Y4Tu*$"#% mHNsΰ#i3rx0SI-n9@@_4t(]lBÅpsQ'n"WU^<Fu D5ڡJjhGiev MHg/mL+ՋT/W1/Vn XAd߶hxXz .\ cե _2 4v 485J/(g_Tio si  !G ´ \= {͖ ^["qFLR)>^ p!TO$;JYKk-Wz7] *HB6u0d2K1N@HEf6A (X\`fJ=`N5`T3e/ Yd\8f}O\ :5`vxlFWKf>YA ;5,s c.`v!O,m2e]Aix-$rFyg9wZ@4Qv<^1l`;;hf{n` {V 8@t]38nl cȍd]H<'X:s@@7#dUr {<"j}gTe"y ]E.11n~ ߓ   - 8 ;[ X   i0   U N ' = fH ^K iK -V N 7 ؏ f   ] x Fx5H_`m);:$éj \t'?"*A&g,>   p* "p 3j t Z  7= 2FA :(}hOۄ.6׍ j/ M/D b[ j! *~ /  M |wm=R7 : 1O 2Y^Ka9l0QFy`h&@/W^ܯ_-y~ґ:s:IYIR](#em}ݷyN)C/2x<;>G SDSw`Y^3ymu, nIKs8'x*xiU$dXs4b@k!@Q\- ]7vMd"fDqWv"||5XPx 31)zJ48&Q_܏Cp%O&Sq-k`V"-ssE s+=w5P39==eA}{Ϥ\ro'q׎ ;h@(y<͍ǵ/DI\D׏ggc@91fl|BkrD+ N"5[9^#\Q'pn`N\َn<ĺSbM A pk * m! ~Mo }U} J3S 6 +i \ d  M ze * Pokk ]~  < q (7 uC ^c ߜ  CZ Ɇ(r'0HP-}ciSBfmpZ;wxzF3cbC&cQϿ1ZtqB[~@# >'-VF)kyÃy/*_78/*!N|(ögkg  6hu9{ݪKM4yn;U] ;+ iTK.JYC}I6elO5@=(MP}p!TQOE¡ZWz/HYm+o?pX-e)nIb lI[S5reLqu'`ycF H"yW|nOg{(VE=vl|QI<0 T stH@/R4&G}rY*ܒ!Qa>f85:O-F k bb];`qOb*>_/rPK%OGG{Pq+};a(qA}j^  U" F(Nǹ()ʫ%fGutcrK/ MUKv.'    V  F /c   U f NY e O 7 6 r  ? k \ / ni %J  s q 9 8] b t!<  =i ^$8$ v 1T lO*.x^EEz$ O^(gL=?X=QtV.v\ d4rv4!v%>G.<:~ &=OXSqCJkC}Rs);f)V1J V~)b1CAsswQ7diU_!h 1Y_A҆,qVp`Zp`!9Uxnw[esuO*Z.RC6ңr=S(Cގ\CV2FUb~ ߣ,Yi s^kJ )Er u; xh) TR C WE W=/TYǧJ>Qp'Rf 4Xa @zP ; ?{ p  Z-G q {  (=>8  U7 )n sЫ    tFs =_;KfQs-WA($$} VGwXr   BJ ,sgo)؋hwbǪ!Dp~]v2z xFp9:*,"*bw!?2Md<Z%d=W6qZ=7Rń4Yk A9I4?  Qk2du!xK; .?/@J$^]a+>ؽ(Pbt,r LBgzAm[Zyi "zu!fHY}>?U|_@oy_=q DECa._v_ oss"kWHE+=<>BV$J8rb7>5øtI9' BJ-rAo<%i:5ůSLK,9SoR:|OB j+Ik)Ok25L6~n6d߸GHcO>bXxO5$Q>y.Q2(N0(|7ח {e1 UUeēW~@&4 !N[~(vNLL#@@Ui]L)&geq$(I.,bwGBuFD(][],^~W  <)` Ţz )`V  :~ K7wpH& v/ L < l ]B   1 '] 66+Gx4BvXe$ÀS{ PtL;"V:^2tv.UTGg ":qܗ' z'CFF9dZԯM\;xU! mMP1^2%ĿHB. ZL/l0VIuQut$CYq˞_izFZPNv0- 6q{6<eMinODl%TZW=j!Rdax)WrL fi5N/) +E(HF[QFT/kMhia"OA7s-])ks>=Ym,MeX]UZuq6}U(l|:[sBYɣ/= f($@Ea&wSƪLy¯p|QFn CAѡ;'a.qw D`Y [c+ G`  ͷN \eS 3e HIR 5 jZ? { Y J o X 1 H= \jF*: 'ws?_TG_Jg`oGc]O4=un) {bݠP'y#R3z{ܒ^Qr*D }Pc3xe(_=l]T  |,w0!dqԑ R.HgpE}DN)[hRq>>ΥY2>]p_F7)S_I>+)SJU'+(N.%9hѐ.RA{JW[ @qW -GI~8lYqH$A`UD[p3B"^htFgV}jj'ApoDlPśNέ} ` +e6M?WfO].3A#'7vUg A33yўKc.g`V(K\(ӒVby7tVRG@b$BWV>qaF/ioZ$K4 GK?OPH ^.|^cnB^q!—O-#8f1u,nfJ<7<gUh LGY+WN RlgJ%~rG sl Uhyw#+^ΌvSL%)Fe36FvOt_+&4t i2(PtжQvYG%ھF@|%Yeҳ׶$0k )u'H"iRB'VXxti)^ y{v0BLelhXaO,n s5cSZ1n)\_ @"2$Fp Ϛ m( xzE .V/ 6g/ڦev7R : { Z \+ KK vA ]K [ { 91 *.    $ _I g ݌ ^p k 3 + / q yA  b{5m Hw[ d g  KJ V ^ P. d qz}N5>۠1Ed=Y gU(ExE..v>NYF?my .Kb?8؋>zC R2a=<"w3Es܂2>+(pGBcZ~ӖCBKUWQ1mg;A*ltfNl{wfdHgj+Vx=Dy ';fr%xF8w}'@O1%aj;+E#AY"F>Y@ɛqĥ;:)T>Wf\΄Z[`&oH-RN <iI=/#8/< + d+vLdkvq_ p9 /l?y,TL9^/:! q]ak^oBA.@IsnU5oQ{[@*)f@%rlc )0t XYqL3ikQIɵ.`DP V9K"-Wn:-2 @%tgH\Om&3]ad0D^}Uk}OWM 2G vj`h6)~4uD\KeTc*|#i}vA7XH HaLrʨ[df)H{NS[þV2["  { c|C GLW dK ) iژ %w  ۜ u a 9] , +   j h 7 ^ y [ e n[.1,ak|ʥ}r IKς7 _?Cb9EA5Brq%/ EW A D ; A f CqLXɩqWy_3Y  g`I xg 5& fFgs]ګŜoQlpBWcqEb9ԢCR2OKRpS >5Ip'~Bg l-!~Cig\&:Pd9P(q5#{-W+J]=Ï|%Tj>PpTES>L!5]Y>djY%?X'jr)! lQeokc;8*7 \IFMl֧k7 Q1=Ry0KB% *swd#p"+9~GDy8fuJ y< J_!q*^<sZy!y {8Hɀ,#~a78o/-3pY`NO%w&_ Hhb7 M|`܉ #j)->s.t6Ч0Jmw[|-Pc: G#Q%m7YJ]Nq75o$w IasuoQ OB/%/Rt.W# w d e 7[  " -y1/(G k 5 v n | < 5 + R  Ѻ - z x 2E+]P6 &Y2YPEYs#%ePg "Hv4fxu,h56lXh@mw>,=^W|TC7!!(sܓF3p:gID#a{V]J2i0K~;j8}88H6(-o<p*AF%eEU"g:^f hx!3r(^Y-@{p.21UBch1 _fێ7T#Q< l>k ףFDɀ1S}1JBiaմCby|Sl&Jp*P{#\AThBgi>Ue:V70Iw+ ;>ĈU^t6$t"+703XpjHU /0S~' 3MJ-+u\j^4T:-0?ѵw}GP4J5n,?GzWHh >̕B=Q;ZY@]Uf=Öa x|&"!T/\LC'$#J~+Gr|Xl@>Bl( ?d B0s ޾Y N( DS_tV-ڱ9ׇzV|U<D2 /!ubdg }|<iV/ |mX:xhn`=r;V}/q = v%Ί@ncxe1Irĵ2a[QZ 'T9R`zK~;xp `}qkl:%l^Yyv{xk9#M^6p], o76w{0i;##dQB]X Mg|8rN|q.-9rYF>BRIb%7,8P5KVx">'ŏ%Lӭ>sۀi+7CU^{w5}΍/NHg@F0GFFq Z+[6od~u jiBSVy)D@6 C{Tnb(gRaah0p_r$ !up- A9N9+F6M^0`$#(V8Y_ȱnmJ&2 75RKS2߫OG\2#$/i(%֦a$O,7- ڔ> ob 5 x i z77K 6 J NZ Dt r ~Zf r "4 (8 b- ? Ca  ~WiT3}B9_fTzKTۘ0m4nE- Z SPhIlm 4Gqw֕v[G`,YwyAS21m`vGd:cIi7ALYN.(}T<V}[$J1l+4<6} ?pga5vNJ#4,c/KCZATNboD!x*z"eRKUlEM BLU1t>BI_e-/g3^usx (k-tOpMIuFMCKAk8 XE`VnR҉0W H1S"ccE oR*4O FH;K?W?` !Xz+7g'+jMyq |%ܼ:D?><CPhÞ7'<@Hf%oc4INDp>fz^z W݂ 0~>)RhNх( {u # ׬ 0' X 1 A H ^z j3 - w + ) ( VU }s Ͽ @  F O B kc 5 lD` |^hb7ċR'rspHP ed+lh~_px!AY`wL * G~qU3 O=[ pf{O(_G;1g>f\ia)_~ 4i(|M/{q= #QsRɠK%4zkh$RJk<zm>_t1vaͶr&CJE{d7ivwYEGk,kǒ}JuN aM!-_95a rd{,n̍Jn/W(ӧw%7* arM kMD {p3†I{Yj'Mƒ1ƽ!#x>v(h;9DN6Ƶw"X-ݗd&Y2Y+&Q1"c.p j.ӢnCv e12w#&o]knd4P,Q\ŢXF\nYM.-zz.bt&k|:3,$<6} =5W__|f,,,C 5abFNDyg](szaǖxU#44P0@I#TD RJH,AJihvCiQ*YWRin7fZb_ZP^<g'9raDU,:cݢ8n?wXtE7g>m&C*ťeQiK` ew+iQD1b. JWw|t1~iZ!w.JxA1z)@ߢPn+c$T׏"GMN^*B L;b Skjx<hN'̼KM/_@HoXcC]1""m=(J wEf">0&H|{k2p`=fFњwHEEH#yJ%C2sM2\Tk\e]F[$\- b.>t3Vt s1>!sjPeq+{YF=WzbooL?q~V}ɮ|!lE0Q P ~] y w t yLbR  S^~<Ǿ#z .I C ά  d-{ nS! ;c7Dml*Rʮ3YMö3c<H$)N*J]#SBs|I 6%{ iRq S9VqB.:9 5c!Fӫm#eG# X(Z"!vgJ0`dz3ymQcCV{XU1 @Brq?n6 1f٭u)zpk*w]|r*ՇV=y9Rk9VLRMa)$W1+ "'.`uS?2 <FyFG ]t@-5S\)<3Ml8#WǴ=z:bRh)zXüzd|[|S!2! bSF l#N݀t0&|OL|_&+"o_)t^bvi"0uMVGm8M6G ciTv& _(D6lդ*FL ]2 L|fQ)H47YA ۿ[tsvnxNS+A(,I>U Ra r AV : f2b m 1 ѱ CB: tŶ \v ,!( d! .; H " c2 t n `IL ܰ!Q W׬ dG5)Tɣ#AX+ XfX'K+d~T2| Ƹqn RɖZTcn p,P|Tl03_gap*HIfw>RIYr \`?6CUG|h\t4ζyHc S9wI5o-<>P'4sth L>[Lź4} G:R zG-9>en&@h:P}(8@$*NFO2,b84G~~{"}?:>HCULe: >h/4&Pv7QS:ֽF`n73?ޕ qy&_xU64ha?"p.Hs0'9+Nnamu,i} 5W Zjp/,!I%4 !?%92$WGpػAwD5{r-NDHȩӃm@9'i25,(_\r')rsqe}|Q%ު"2j>  14 ^ flF lr{ x   i $ j= v> t ( t n ;  K D 9v v BQWg"g~!W+@+36K0TdUA&Mm-h!kgc6S*2vЖU0EDJM{+gZlNpKD+YB^X'q7r.$:':fV#Zyc{[{:`3w PC]y"E B-t*[}Ј)RJ-\MzGSeQ8DF@9ukPt/GG]xHh!{U?<JhLuМ<we+gi8xJ ak|iH]QNI$7dBd5>$ LuB$XUɀAnӁGkM[9RHr]a)#Sy!Cq?YgYMujDl5,)7ܗ3#*|4ق1P1@-CI%-\Z]atWWt#v* ^v}la@q QY= YT+4R~p2&E9KtmqDd/ SqvL7}Vu(2`28ƱKO!&,T6J 0eܚuŐwLlèY(-[X:e5$c0>Ea" O_M$% X3p|(`@@rUL-:ȹ>xRKG>cpqˈ5}dlJT}_P _U85E$0yb3K"E,3wiw UO Yb ` fTs?*dFB:-_Sf_0@:g4, z79c~4HP9m- | + x:0Y[hVM /rsd4R3rS \O0^j$9X&g¸| \aG`_1{:Cr/dQ,{Z/j'P3QB;m0O2@KgZF{cc6ia[6uw&d0' .3 R%;Ë*=5\ScDyi5<>s#{:?YeKh 6\Rd(O h E' h6.'^yu@!,qk1AJq.`30WPquɛ% K3',w]sK>!@R@we.FFw{k F5 L -P(y cEQ:'YtQXyg%z)o{ u+9P8YMmd+D^2~ ߆"q֭eA Q? "/+]$4Rz$"dlZUlk]ŤF[<O+XKITJ; is/k2K8 hbִyW" rrk8\tٔF,C=qyqGD}Xw{] xiBtPnn4] tpz@[\P9,c.qSg(@iUhZQ>'-RD#nwnJGYTe.m!SҙJW mGO0}:6; ;M*\_ՊDqdefx+U0",+ R%y%h>I7e.cЈ:hw[BY/*ClS%war-]1$c wB/{-`x:fpVj?@r{z;,f@F4*h~??^+e0Z'nHG]WukǴKvOAFSJ/nW !  q ) Y  q: = Or Pm  m.I =U U 6^zzIvcB+KG#_\[l։3_3{8D!iQ _F B>6f+u(&^uLh~!jN*,f81X}^)q#`k]AfwxSQ%6v H<ghU ^n!$oFkV%bxY(OK!nsȞRuA>K%s-T9Wi&eyE,p V jBh:TM7*C%H#e% EZ}JRBDZFD~LSecA qcJ 'ա ÁzET<]K?_#U!7o#o5gj_vflWIUaW%LE/R:%@BsiMZL=%(lBgI ңoecC : `Ei f %~ |y Rϐ 11 * \ ; ~m%hH[S?t}  [9V}eP?8m9.e};KDQW |EyxS5U]hpR]z=D .Y0 |s`IJ$%}%J,5bInrkC5C*H?w}6BFT~ ^L54j*W %uyh=h,>Xz/r4:kw.?^Qq 3ϰ_c%z%t:#6a;5$||vrD <Jgx7AU -h1B7+: %,}T}ɏRk!Mq%?f ]"{LGepף&{+ZV!ͯYGg2tƜe^Q"_JmC low?sF PEtTY9,L!,t4vxYe04+8zlIeJ'~itWPth&s4w]SDsAaBzm_.NBi[b. Tf [z Ɣp SH qvX Jl,s{%3YK2ɯ˧I6̓ryVM"-!kSh2[\<Es1^% ALw\pL]l4"+eۼnyTOHU]O9jm&`yB<rD*^(W;^~wJ@~/{ i *O 7eYl\/;XHW+`{(*Qٕѿ"- 9@$Zb"Tj\%okQjc&X"cKgIHm{2sAZgt^v):COFtqA uO ePc, '>"obBpA)vUVKTL%w D3mb_ߙcJnxPwY9O;F[vGOMbDh6L 0*m\nVYeh]h\@5nlc7Y:c@{Q(*4zl~ D ՘"crEy>r@3]LC. N50*cjP)%V.v @ O=* xP4^: | JP_fLC6$MY_2E3Ϝ2&*jMipA *7[zqvcA<U@HKĶRLsRO z Tv E T2Nxbjdq!Up_5J-.-|1^J0Mm[qc2G_3VB{d(zVz-vyV#wHFB`6;0| X:Y%E;JuF.&W({Hk^FdD=!r @7cbJ3Y[\WD{eX?H 46 i-UL,=lqm8R[Wxu<`r0׸Eت # WC \=(I9QUVsyyzrfE {kΘ"ߚv)Pj+%]|AEH!JH ـ?}ccj?D1uEF6@d_s)9ݝG]{$6hr;("C`Uhz\m[3+>m*u4t߀40KhD|]ޔZF'Hep(4]3X#g4 {nP7Bc7_00x*9:D'2QTg-˧Hq4MUB71;_;`AEc|DTl (;m2H1 | nV C#Mt* _\"%u.7CwA6&s.[D3R"en^C;Pɯ QFhWN8'ܮc4fm ^EfPc=h&I,vη T{#{(=\۟&P]C*|yt31d{G?5tz/ʡRGHW(@. sOKV q[c{y z\ /^:&v\;as gx?)I\HUg8w avNJ`-Z_* BV:*lF";4J@{gd$9z+h( /2YCa#TKi[0-T~ŪcITd+u}q`[{^NVnD̀`Kj&WMa-w5hko4doBxBo{cƽ'Fxpegy/yRDGmB,` #*; f&=5^F?k2jSAk'6&\ H1XyjZ! ; r+[ ęKIQvTGq?,B+ !i?zɮIKE*]T!X6 Y\ur\E-CR~?4jGo#*1QJ^400D!{&DnM]Y) )+4u~8XWRfqJ~/IMxFpRvN<KR$O%%o~R:| U"Lû>HsHE5#s0Sę3ga,iS(1 ܹ|{mjؕ(R>fw c]Q(C~vg!$^ 7<k$0I7\i^+}7eDhL Ȏx.=2kλp3T:$3Yl?~jU}Itj o `8%$0xgPetdddjb`Gf.ww$#VwEE2Q}H*$6rγy8+K[uB8@2lqEV>UbI:3>CS_.RwG]zj3r1Oj{- s%k W4` 8zZ}Qcr!S6E wDo4XhaL@TT)p.Gr$[ڭCv~Z;f Jh Q11{Trt{8"rAHJ\:Da>M]sYvS0`P F'|^.*k6H& 8*_Y0gI oѧH[|s?қAg"qL^U<?ct:VDtbIZ ZD@CD- BJt56[3)}e> h`~9)Zd\B6b[.=.@Ku|!W =#DXMC", YD tbWN +W6mB'.ѳ/f9e&O#7;h:%KIg]v<-hL!uyU}nIw(jr0tlR66xw|fGmGuQgvk֜=fdvgz=pyӆ!ׯ/EPlB ]*qCܻ & )ϗhPt&SB8g3oF&]|`LHN4.V`C@=] zbyN|Jz]x4R asJTmFBv09CvPD#r}J P!#6Zs;ڠ8@$Xn=TRn$  )ӓ3U`uvy1 Egy͟@'FC[O@QuxfDWGa8>8;%b E,} EfZ2m)&Z0O'IF?]ypG8'J0%U/pzm7g'>G{{55VU!'ʇu)Jt,=_C;XM'ؼҘv<#F9QY9&lm;HyM4vClSˣ4.!yMm9'}#Hm#XvYh# zk2 %~T&"LHvo3y8oxW ?!dcX*hY OHN#Db77.j72 kMyuAT~uBfEs_xwzl=y k0[<Q {|r8HXL|_3<{#hAdR-kzږߕۋVax#W8wJ%ЂIާJ+>b'ql;8nyrDzes( !dģrB%H>v\`/E :lS<3T/o  b]V|$~ah}CPYsjW?o95CKVm:/ 62?5 B%8hjeca\\tYu0|)~;9FK~3S2OewK1o_ m %DoeO bCQNb0@;4*dd:t@ 47{.pxrpDdbب^-N(?\D'O%$VWVoxqDŨdd=gh^.gjl;p^ s*ёw4^na F6fz 3C>/.q M.nTg%Mli?H4@!Y1AQY]6tɂm5Pd}CW&h:eKϵTƂ4dPcg_`nm%!gB\q>G<'<q }2wsï"L.{Ε;du*\|nX^-I4C]Yz q8=_[)N|\ > \X34qAڋJ-c={5^z1!/Dc6y)<*OX -# Z'v2״b|[KE[U:2'c6cj:21;8+suN^G,.fx1 Nfm`XjC*SAD`\o cCY31c=ѝLi*Cnz8.k tXzv:NqdS\MC6m+*6YbN:H[w wa 7?jwaE=*YPcO/57!#bB2bp5Hw)TO:?\9O1 }vJ)+^?5 HtCz!Ad? @N:v cZԶW B<%na0(.ֿEQMs- Lxv h| f^ D= $-e7-F `u61 Wqѹtj{t! lCnU(M1>o|r@Mi}|^}9.WlRT1QF1I8BsUGg<sBv$G7!Owl9~l$bAmE\o8sCy$zm0:Z[c3_zNq1"r&%Wcp<P&5}N5O\J )Rk e! ZO >?֚:K[4- #|?0'  Ba~S{bP@V~[ܡYC@|7.%S0+T3IMJ-ű-;< "HKgOڮ6 >C?hw7Q>5(_Ve/;FPСjuDl>2@M[~%FQX8yVCE/ۿ&ԑU}ޥ  bcʯc (+? pv0pG hrr,.zFQ/~ut9KuFv[L}-Z3w(?ِf e ~ Fk( x  T <Yk Y q  E [w x1I(]O&O Ww?I<cL(;w?<k:v*CUYK6Z>#sAVhwO$B{0("L>$BaD+..lwUq |9Jk۴!d+8:8ήm9(clx=ʄMKfyGe$8*:=V ,#vz7<8IGXL+H&ҕ.K.>iFr<_9lKJb SyTK-| f sjM)\Xd  q*KSaʁd>Ӈ7<gċIB;:90eZ*<2!5TmY/a Pa5r<Do aXz9%iނ;nW ") ;v4A6)#CњF}wX%M~bSHr}1UkZ>uosd<QX.#iL2W8jZ^c zSxJ50g+ t8[ N XF `N>Qhv$_<>/*]u4HVbp$Q~njNx&FHxTiRG@HKh$7[q|#ZM<<{L+:^(RV8P]6:5n6/^5oֵ-|^gGA _+s^qbG  ]]q`W/5OC͎z*L+A?t  q0/L]<DmpM~_Pm"MGsINCq~ҩ#pp '?Y BwkN:Q{Lk^ 5s i!W;Bjp92=qqzCP9\nOs|:cj8h~._f<-h"1YxFo^Vȟa0hď9=C8gՈ[ mÚ'+`h6t!xRp33 s8}h],d9Gف÷Fk dHӖd ZF .r9S 1G|vsZ4AJ<H<+'DH y\|'pzh%/i3oz-0QC3`;mOWuo:jg.4.eW|L[1M2Y:k6u{`3pI3[]T3N2]D^zZ.1.ʨ@;VD]L"ڋF9$x4VntDZ]OS%[pkCG6Mc,X%kw"#E.~eE6;>WӖ;Zkߝ\ X18| w&r$e6BN&0p\riLKSU7foZ0!)wxA[xV Ug7MJ*`ص$)4GYO+:vv:X_}~v6*bSxq(L<<(c*Mʘ R}Z` ~>\l $vz|߿ate sJį+HZ6T8 ~Y_ r_~YaZlezB΂D`W| T$p~+mV#@50XeQ Yi $]{4"(oF|$H9Bʂt^i&_fϗ |_"DE!>[]:PUN\O _FN/.{e >ǠI-$"5x=,1; L: . 7rA tH F" 7 ǰ@ly>KG= l.Jdw6kg^E|fTepcʡ!AۋKT Iqׂ3-_DFQ:N1Βf}7<7H =zb6 osķ/-)+.RqyoVEu*`N".1C#Rfgr #+Ѯ$oph6%K"Ue<" B]w%wl\h9` z#U9wBS 9W 5,҃4A s MSG(4.:MqW%G`ehY&I -i"t,I cuNN6\JCZ;r]fLiG =M,9t4 GQh{4hmq4A_H]yO{vc2as83|=qDM[ h(nYimĕ["r9er7b7#}pJe85l.zVHl>GxMA.KTFfA1z4}P2y;Շ<LvZ<&Yu*D˗S= {,v:Pdo@2g5{\./,Ct&y#Q}}X%<&p7.K LX"fJVw v:@twU[VS,z.;quc C*0n _c95#1-@,JcV9<1S"FG\S 4a+_ \}B!\*YU*0>1 3+FA:a HzŵzRF<u$֏MRvN~ r2ekccs0M/dCe|uM}Y g: vgv$KL"}ްN]>dp31v,^&!2@2;R n۟QG~ }Y+HKlZ}"~G3eTHr#]i*Dg4m6w>LUKRBJV=8N+|78~X`;ax>=oi7)ۿ^[5**MGv]t!S$-C-PkS>=c,gog1?rumkELtkD5 q ` vvN aל= _T 'B 5.r2fPi6F-FW.[nL-rRp@z[I} 2,(6zi0 Qٱ^ wRq v k`G?Xovf( / |,U#1yNdzZ*-" -I$R%UmZOF k{q&<s"~E8>rJ|czΫ2WO$o{vފ3>3zrA'4 4WٞaENu*pi'c/_'Oh" ;l Z { LR$fwvߠc}MQʴ xW:bFm`[?"rf 1s2a^2,CLdN&: CI]u"E+G̸PKNC K(pKyyG?B˩nFa#:XvuuY'H@!Ey<B,wBfI#1|"Xuƾ[=Z#;Icc :8>{\9RwPAIq}*| #f.,X CgP(21}LxVj3lip E{4 qBpy=?EѤr'`Oũߺt3NxA3Wk:#F=PzIi(+k ^=h (=*#V?zݧ fWm[ N}{#pl.=G{q14-"`.DM=&K=D@oܬn?lcf}$`!}V[LAPP)y~#ӦkVp$Y7{]>N-'W`,<b~H{K[?x#|QHj(Mߡ:Xn&JaO!#Pԭ fOeEpHZPb i+5}l TmS\pQ)_߀mIGe>Z:*,w \MuY s.,\;R+2gp Dw! qbTS]Ubx/58 *NF ϱ95JGg͟uVU h 0K[INOu8V~g1% EFSG2';F"яOm UYLV}KE)C|#1k[VV OIxxBhմT*CTyM.u U(7 nXSe7x0L~c5*/9I~ȈK91*MW|z>He87)]4}NlQbsq o>bFckSYdwl3AcS7Wds #[YJ_G+O2\M\: e.'tbJ)Q&8F0MͻD)m~Ex(C < ^|ލP#fDZXlMWqG8mE; IWX$vk7Ÿ w=E?@ pSv"NtH|ibo|ioX[1Hx$ NJ`eRaE9~$|~7*А~hi_TˣH&#=p͉b/3`g @0QP'lD~a|vH^J#=H$WvmnY+xUB0Q]y2-'yiq|`0"']WUڸ%Re ?[vN~/}>Jk[.6MEŌXL 1;(sG E 77!_0'jb;|YCΝGYXzju8oQoћT-<h03p1W Wbs[z~{ail9b<\3~WUg#x2v>UXXFp ^]'+`4Ij+]Uv6 l]Ko:]!1ѽV:v-*-jVXkh:% aDNeDUH*I>Ha?zx7yML$jIo2.K%)E$BˊR*&WGȵh`|)A@(/{cw!E=#Xv.:jj{i1]<&[=aQ, cRI NU X s% 55puMyAbmi{%rab1^ MhPeZYܑ| Pb ua:^(9J_eak# ԯ1 [HU8%ΣxS%\+/TRZIBc@_l7+]!Ő3$o&6}-(XA7/51QM0j%i^c6;Nd)2n!l0G)FHs}jf|T=2m(DO/lW"I*>k\nuw^v!;Ia͜"'fI\hHi*%o3A{hseK{#eX 'ӕ̈N _eXI9>1RMRBR1a@` EWe e]:b)3LwmjvnLjaOxz|Q>7  ]k ,)uN-0GB2vX^qi% ?K%B;%f{DKGn]-8+FYN r{GQPE]s7\i $-Z΂nvDDn)>+džս8С܂dW / P/^ :+ʺv@6AFA5]H:N7 1${~'ook&^Eʬ^Q]afV4s=P3 } Vw̜F0p3/r"NzXv8j^Aoc4GY}F 1q+\v\B $NL/'R[rN .NW7IЈroBu#N7 v0X^,_HJ Am`x.[DKm3z:q4m+ AgZA%m:Q5J:d3uUKJd_h0yDkh/R@3kOnQH6ўsxj~x7 8߃zQnyktlpo!_$W4~/} 6_kRdET+Le r1Dn:de6B #[1B3svG^(*hp`(~|#fxI o`:4J,|2[IM!:Z1]Eѓ:'|_I>   =orhx = c%jet&UdBglQ*`OSߊ1<U[.0C}3CLv}~LT0;|kv)qo&f/ [?{>sjcd,Ve}+F0q_1 .]n"3ӧEt`\O?eůmu;F&Ew" u< mPzS5Mo ~I:8He{ z  cREKr{KtL&~$laDC=U*dFA. gOu%0[_/Wyf:t]ϼL5_fvwfVQ.T5)W=W;q5]I#v~m Aw"A> F=2FN}ʜ$ԉW tDbLw>J(l4[61@ I,^O[{\č%+l@plh܌Q[saH u$_sn\8eB .9r4Q4"{<<"b-/nfGvj%}Mw_{`J8>x~4dl %3+&rҕFi6b89DU"znUoyiRfIP*u0m h-L(paj!8,eGr^kRh +6\{=biuI}Mm\<>^ In{Y+FOر$\&dm HcV69Op_f MP '0H7+%!`)_z n`X@Qr:KΛgw2ENumUrv&iEٍ;n [A>< k?BI-_A .WGb&rroN s.='thjd֙y5T6=[b9`"_5,أp"8nx+#4fBl!t8_Z.ĊJ!"*dރ=S02Ed9C z pK84s% ]Ϣmo{a =ڌ,?!t {@ u,xױ6{oC c:~.?;=r5=P (Q8'o+ H$:?Q_$^9+OJp^NI %s=aydq_r_Uuf\ Y3MyymOMՉF/g*.p0iԐ Aiq$}[IԂ q} L.]*O:3CiiAmuLEG#vӺp}9&8Xya~'V^ u]E`Q/u+ۋ8~.<'÷UFe"l*<\Roޟ:we:`)]nn2gI c1͒sG0 <"&s]ݿPN;<ĩטqY[,b2vɜW~^V%]{} wfM Wf&,% @O=JMD&Z}/[K[$F$ƱG gՃm\KJF:!M$Q?E=^GJ-lVqx>aBIC) ճ* tmh*L)WνRXx7b`o2Ej,J@PVb*KmA}1ĸZ '-.;|D^>m,D P6eO5PR.ZhPsgP9?ya{/2T}r]epZtZپwt~wi#5Q-)?d$#"!2yeBU5{U™MM80{k OBVYԤJO#Twd<[5R0bo"9B9[0rcs(-*I 1n\XT1 (alXjeVa 0^ Nb5i6g 7Yl ;lҭ[%p& rP9Pd# {{s?$\s@3 z7*ԿMsi5[ vOmƙVӝ-PZrmId?TF% (p<fwޝ{)NdkW`m&V!6IUnKIjL68ICOb b|P))H5{Y{MO?T'!3~YiwxoC-ENoq~e_vE{OnZ;r!Lbh3 L>c3Q&ZpeMѸ[M.e ruu\YntzmԪtFd' ZB1`-xa<|3`v̜50VXs1Z{gU.4#&* f4G_,MUb7&w+ v Kk۶~9+-ViO_?R]<3J)I4Ma, ~ś\ B 8{7hݐLA ~mHBގ!)s&n>!9 ~ P:16c]3vg_2amcԼLNz6G_>_""+`O>> Ÿ2~%=Z7z,\nD٠gϡ;0|s@ **% yVmE~ /sy}Uu)g .w9y%k_`:M?(1GǂC;ZKܳhd@+Lۣf\V~sRGql5F.+ `[z1o/Y8U5o·ǷHd(VXop WB Yͳ7ׇ NbBtpArY>Z;,TpKuF(G=5/M=qeAZuyɹA.itŔ}:SCZ`>/S`5#!5X#ixyO Fygv?M^#D|L YIڸ7AŁ0z4tzbi1SpsZ|d1@)$c,'3x i75f9$# }BNw:.7i;w3// nDxUqvOSl(#kb"H0E`kCS iE?C2133;nq;  .pRw h/\gXxsguQԥZ8qg|ۛnQD 3.ZP6!!a+b+7.eaN?`%A_D47M,&<ø׍bz3WZY?5p,[]i}qhus_ hH֜Lq0}=3zv}}.Ѿt]Lbh]Zo"+9@8VU::OuALOjD DeyfZc[lot97kϝ9>F?f-cܘ a[j5SWu'hoE7P'tG:2lC7$[|ptWCB^Ykh~#St-2I.\ 6xO5.[ ׼Yzuc.@i/tSɫ%(pƟCfW0b);x%8^ߒy<x}7'Xg=zM=N\*Ks$9  *e=8e R u\mv~ dyb 2Hg rӧUȌe,.s6M~j`2,6-TB/_nB F0-xLTkwd0խ|rAmuy,p@uf++i#Xp2oe6jn]Nqɛ+0BmB896HVenu#@8%,YN9t',Bq|<4OzH#xu(I n%{ADU Y3xZw.6RpY =e/xGiRhׄ{[}#n-Kyt|Yq[kۤ5Iq@("a)ۅQbzXXyU 4=Cyq:ͥr Vg98|vC(x'$9B~W]R=/,<1XjXm+->IA^P"V:ydoSՆ(j/H[]\@A?I|IF^!i<)*O PgRD+51J 8U3:8!.)!tR^:BEm:u#oUt +מgo6SKlhf{h2Gl(mNSvnnk̈U?5 WNJn|eQwffL7>&nnwBa ʜpW:,S8!gIR|֊y|,OISF$|g-mkE@k %8( )N_'# x֡ r|b;G]Vy19Yz>jړ2UBHlLB|;kP\p+w6/\Z oHxiy9>tln_;?LjpRkLA}O@1K^?nH eXFLg1 +;p.m`nWZ!aL?X2\\nBe[S9L3\R| X'<dY,VQ'XJ04t ;  4 oSZsCc[/U^O 76.#WgZ#0;0w?&c (`PRSDrL|((LuJng pbmCTr4..   NS ݋NbGQ!#@F|Xppih!E> :Zas@1vqEYgC.M#{\D>,:,ulp%hN]?pulbj~0TNI)A1Ae/d7@ ~`YWW,g|D_#C|`uMN+Y^\ەqP!I7B{\w)!׿$f6}a]jRf/S1+pO):mJjɡ{2gil;/+:6iX~Yt)<ͦۧ$tPpj/aEA+#x}\ly%n7-]a}'g. &+i5WusrBc&YGU(zW'O>0qqE-: * ?1/g%2v+o^ƯzND_B<~AJa X#+kavXy8}|.ܷ; }NYVJ݌Z'nE`qQ3=nWWXGƁrXFwYol?[&{Tv ^@.('JUwI?KuodH{@?S J޶c8d8$eH]!M{N=@23)RCPs<6 j Fm (4U5t0\izS"FX F;}1j}Cu=~iIB/N: IEo#/ <9H!H jdz6s@6HzuϘ'$-uGb*dNMM5Ӵ#4b^fz~\lvsYX'0HuWϐu_)F_aJYc]8h\]E8%"/*))AryһTa79/}6dz"dcŻmڡ#h'O YylB:|\#Pqi  6n;t׺= Cr~Z}(oи`J%E̴"j"?ܠymjh6O<{2mx)x2LH2]ebTC@1sf+g#;a}Ax@ =#sJAkwG~``‹8$U.w}egG<\1q:-6e! JoapfF  ʁO^  j6UZ4?6 s31@*)Xb0/CXȝqM>`>Tm1x'ԹKo/j-wJ$vO 5A5wOJ:n/vIpAɍi0G1 ۲ܲK)CGܪ+Xn^:-ٓ!5Y*} eu JD<Ss+kǖwX6}"Q=IP۫?Hj CWJqZS XA8SH6px6(2X_ %A\donbz8@L'4<_ XɝaoZYMAqR:!4zh{tVR4d-Q3bAEL.J5"'8F8Qn˰,Y3Vj `!EY]&TG^t8!wn G9HtpI4wdLڇFE}d#KiZXPZW|'Ǿ n 3^* E\OKO'RrOszM*=AHV _SpqEa|0@,KSscE_$Mte"r-ΣU[ڶM)x XV`hYqLj|-Kw:s/6Dd#T CUqWI8=m }` Iczpc!|[OUFWkb,r[bΦ*qəF. W+[Z9m= uWӧsyF?4.s1:>l7urvQ`j\iϴzA.eiS dE&[O<ŠnMl~kE2MzIhj)C=6 +ذPuzI&(a[I<nw{O[#]R~߄/^pBY1$y6zJ{_'E{-n|:P \]T+b`|] 1}2D%+ Oy)Y:M7H-tC\R~= (Q^)A`DNvJP7>tgoYN/I#X=v*T!VU A' Ua<<<=(#JD:Z{$VrbC#)Շ  smSdun@̤{ T R`Ǽaf Aa id }-Ĉ\ \$&8 LQ<4-(b P5ӷO/$*{NdUUFG'f uBnls|ZrUU$ЪiOS@_ bO'^u|H#@V&D9v+AnٹD3%[zP2VZa[/Kr"H+|8m"ڋa4;5Ȫv*צ q> zF s*Rb5E]΢YCr]^0Dc P=ˊwqѰE"(plW4;k"YT'm}uEeo=Yu6ZD01eL }&DTcs~lȇ3=&I#ONm,v0 D{"\Š2bt&Pjֳӥ2-gM^pIT.AHD(5bAI _ C69qU4W7$ R8GwNMN? U885Q;hIՕr8ED^ KxM6qzg!FJOy #B$o:fU/fm!v xfEFvks6j(@('X-ozDKWTw3#y]{5vHfι1^{Y}H{bbj*2TOfngSJ.=Ilk6y-NPq'v_{SX3khZ:%YI{ #M#@3@V,`m4t`EY#L MK;IL-]+0OXc:ݖDϔFQ#4&#^<"^]xe B,]o_:cw -s!<RG#9w']e{%Hav|>Vi 9{D+65tIMC< SM5lqOa tT4yIV[نY[]ܕ dbITL:!C/Z7E?\>R{g[ƛruGu#6BXPOLh+L5(Z q/zudHFa#o^߿;7(lցA$-GlSXmfP{@0@M;I0G% >eqiLLw kLE6*0 sp1vf"27>V[nQQ5X5?c8EazIHِ ubMvgT2w9 wTȋ0vZݿƹK VoHPx)2l#&@gbz`s&r k& <c\=g ^jIKW8hH5EaD[:m-dn*O\q8> WUnƙa[B#Y\Ht1 <j)Vky Ӓ(i:c RJR**;Gh6_t)O149>h rInpL3lppRcx\ԍ6OvgtnJzU-XJ5YnyŸ9,xm7yu&tdxiBxeqsG?B'} (G36KXZi\5OE[8$k"+r/MS{nI&l՚yl)dk: a~sv+vf)i&4!h#N gn&~x}VLlq7HHYpGxqOb'+ +/*|aL,co1trhų(@} A#-=l=[M_Xρ \V٘vfGCo0W;:{DxxwQz6+sL[KM_|@ l*joz i!<_iYXby| )/D9 Y=B/R8r m*!"#s;ttc? h[ZJ0|)&/f{?/y!-?Xh_X5{ AN/P| u$Ev]%B_o&ȍ=_ޱ(/; 4m%G RP ?/C I/o1@d~J'&~l+$dd !yzcjLfHS?7kXpNR/{tGdHz{I'x ?_aE ܈3i^R9}m,[[ }tZb4/#(bu,ù:PØ1f]B?'$5aAut= hlz S1]iptƖp&Oq}r =CU![D&~<."$"9*H%voXvXG 0a7b,\ 8"fu~|Ya5Մ$|{b|FW t³lrwHW9nAW,!IN+O؈owx!d$I 2Nx/NĢwscaA goyRCnc&ȊFm9|&/D}%XR1zGO13ׁ=B5(.N7E 9TOW:SDpAf  IDq%rw`ZAl;-6y[=h IQHTM h8V~zaIi +7?&PI^&^Y,Q.(A?1655L4m;;HXVc+UqXn%m;ǘK02 MOKFp^G*+uYI.?χ?QhJQ :*ڬV n:`v\@l"nb38HGmKx'l.-y]X TM4T% Ppln={!D-QM?̏b vC2(uE\M&H='tJ *i8u[4mzL=Js0q Q@ş]y-rbgnTN >)6u48?qKF"M[] 3VNM/3Rx/B"j1lD Fª7X1 "9/uicz/F^etU_dr_A%د+  )2wAzI=TkkePMg jHF}wFYaSwl!x-nD{nڛ_4\Amvl_+ ?'qtf4N2Cx'ܬVW "R+a-?.GA+ |%_x| X'Ywe^owlPzO6-f29j0Jm1ԓ>aI0zk7lNo#DIT3. +_S+y%ԟ k8 zl\-;M@#'6 H6a+Ø6B._7٩,jD^u/H7uAJ<H"1/ ?zd\1,<GZ 0o]٨ cӠfrZB& 'G6?RY;\o؝ )w{T >9$|,aF`}z{#qy: Mw<YV vE>~өDOXlL=sǼ\jƙZ .&6Xwrrfr DdR$BI#}O A!m>?gJWL7d:/Tiz14Y fY|Q2<{w3dȕy[s]m c(?!i"'&ҁ%S"g6#5;2iTvhui ؤ%]$pe lR,p$*v^b7VSz~z\{2Svacͨ9>$f{ߦsELR&\U[RJDFl-[qcW/l ԭeqhBwaYLk}i`80/D%WDS7o :N30C'D ?,^(>mL<ͷ"%ZjKeYkRPܣ~;:P2_{8(_+Nb%5 ;Up1՛[DL~T:(pp`{=@Jw=ev]mBOyo%e=7Rj3-[gXE}GVIFt&]t.>PdkG,oU]M(Q<-%)[ 'Ga4^WB`DǶS 3XT4hJmnc&RtDG`lGqXԺSC M+=?;vH@v&A7 H#}V &y@v;/QV]a6vdMgӇhFN̄(>9Z:sd:w#/S>.S`Xt^Wхv(bRZKRn_@S+hdNr$~nGD( itwjhhvC|qn!^RZ7KwkRUPbT r@-N[H_?ci1*}C2PV7cP}G?x{;B/1VlX=IGd'; ir@@!P&(>3YZ:uŊ^6@mxRX7;@- /Z=pM KVd|UfLi=e)_Q՗r(9*xtjUG!hM7I#cm> A2p71)1!k8mAK+G\ [=k[;bd#v(]&SWJoc ._)zik@rUah2 <oր?-b@J `>.Z7(TJ#[LRB6F u,&%0&>8ZweRGz m0R '(MNWT?p6YY{nhxs&ljOAG pRCg8&gjZ5wup~f'OW05Kw[Z_vWLKO`ŕݸd6:N|8{X8?a F{J\-R FJ73Ym cJQغT'S;9tu]-> &9PAgB39lI*B hhRQNaHd+T:ηwSZ3Q@5!5EZ{/}9mNi_GLBhF l5&Oo`eNQ0awU<U x'^1+9 b#C`2-S ,lPa&;M˥M-_XLP6mԜ!8ne)FY|`7IuY 3H602;zWRz9ЭUoPO[N2xW4 tp7_J0]r ŗu"EcJoH"Eewnz`<q/ m<W{2+C&;?v*UW$5xD!{`2Qsc%;/"  @C1aLHqZXhYIK0I  ˫R|A\B,X<\vz?a]Bn A<^G<yo0[H3ams'v5Qd!y=EW;YMkx& Ⱥ/A6qZ2q&rzwqImlU/ajCR0dmY`inb; Dn˛c5_# *JTzZ@oj=v=8v[-cu%=s\CSq-;' ÆV̦{~NCS}g/P#2J9wY^rM4|:'i!yzuvG[M~]_9'0)W3h7XI8q$!Om . EyDBatʱ$O9\O ZAml EpF ~w!4t4lh0KYL2?Hk{LԍG?j9 ׹;{+m*6М][4 HE3TvV"QL1\]lXMsbzDe\VcV%J|ŌȗtK^QO=r|&0QZhn#ir^Sq;-1|^Z*F /A3w1aDMm lfb*ak `>ll,2K)D\:Nkko " DVZ F?<˝ȓj}PwC%0  xUtFbM=q;G|B2 :h\X .fC -I2P'V zvGf&1Bn%66wKGMOMO<hů tPG=/@./:\I]qRkhRMRH.4-ן:;RQhc,N$~4fK@8/]iICH;7QrbV}Mwa <M$B]nzxzuwi]#ߒ(\}Xf֒q#v6x͠u5t,xECqR]]@p @Pk b[,2,JcH+5TRhU[M>(*|AJ4ru-y~tX=k'a;!>@+Z[xWζP))7F61[#L&~LVig-tNI572`*(hr&lw7 t\u :(mf~@Rh8?/~s*[z ;c :T"vL;(s(~C Yu6h1>>ސ`Z?f[)O:ʺJ:E2Wmc1ZOȳD00Yf])yFOM#A&9m3o.&*X0"$aY:[XitX'e[&'h;obM j1J~`APz9/x(#DYDFWS9j)}sy$ϓyj!:gqrYSc)P\bRd-z\0׼ UCR%16{$;/{}LmMd*7 Fmc7t#`)W+aI1 |9n:jZ+PyIkYVT-7@7lnQ—]wT'%p??VIG3e@x.LS i/AorF9TYn34( ':)}H`y:+@?;l ŷpo!(/`E`H;m,'vG!V5+\B;;9 YϠAPSU&ٴb'q@SF0L-KSYhf|eR}0{s=SQ,H$ %?E3-fI]ipotYs2ygPCܠA}5TSZ<|YLrV/+.6@^mj(XwpfҔF=N Gxz2bfPhO  Y}ax)t9)k-\-SH.9G#bcU+`x!'5S ^69EP&\bop dR9VL2>$TE6B<ڜh:a7AI:SF]CYrh$kX?/{#fyK۔ bFU3Ow3UR v vurgv.Lccа5h"T&# +;&t>ͭ0g_(<S0Wv@ JAZO(t>)Br>5GŠD` 01 >/n’3l2 {kstY ~qR>f9!4Z=^NHSjMd>Z)pnJV 5< >%_CA?I[*ii f\BrQG-/YVg\9Kp/߸`Scfyk>j˟*pΆƲX.&7O(_S3+<y&;llROTK[n>.'+0|2/B&b q':"N W `| KL6*~ s9[/4oK1zWµ;YU[,!I3ٌxUi{(wbZH!JVYumd?ƌċY]j-.B2>S{Zpv/1ÏmjHqLϒ?oI7XQIȕxK;d`%0صAqxTа5٢" #AW}>Ux(}5¸S0olh1M-!>Pm)YkaP-pstm=\IlzP^ 'Y!Ұ-hGFSLDAR?eUpZqP_fDhQB4d:GAΌ7: $?.a4xKLП+ iŴ48X_?P[0^gcS =&@E\&^Mbb]1kH>vEmz=[ߚv<7XAQa@q?1xؓh:#$4RQajX>q4YB<^|S0k /G\D@G\DKؤY18Jr DCV}-oS1*=G'.0Hf)mg ?xwh2Q\+[6c&% ;Bs68.%#!e3n|P or}i/ZT%uG*l WZ4oc!;jK_Ng_Zeha{ qVz3lSTw5i;/zN ADaJoWz`^cNl3:&q"=Z?I Nd}w}3;0}wz^r3~;c wpRh6HtK`L#?Se.3&9u 8kiy-$G*Qw?&&}tl۟4&~oEwKj1y>hðկQ!&>|=gu_ jNIJEG\ή83 f)@)GOQl5UIR!I<G35A GEMg' q%4VFJXYriUVK^y~Ppܼ $)5Q .`u FwReTKHVC/u| >-lx`Q4H:aޓ~H=0Z+tjseoWm4g fYsSO GLw$7/}C|MP{PdST^X{vӯ RUyHT^>m`cPq2j URi.JIXfr{W4Q(w  uEGTqmbz0WXTmZsl^HOHv)JeOִK %1@\תC~m& ;)aM,4W0@`EQP1Q1KWAm:@Yc4)' :=F;n& /ior^I>1:0Iql)i5z 2 J [b)e_kJrwgGQ;} ' gnsl:9:(&JM(X#Ӌp}.w#l\lwmpAăصThUCp4/tkm? b1RF}~@4)h OAGf(iGDS&g+Dyc ~d}~X|%_Sg)ZmY LJj7?7F4%p3eX>MґUѲ{p&\SS#2p5Voz_qwylڔ_p1WQ*YiAumFja Kt}+@r.Tr H'c0)'e%0F%z:`R%i _a,]5$q"2;HW9pQ&'5^A?|L@0Ge 4W<w}]w}$!Oit~Ka`2 ׿\^j5Y{'A?9~?g[9،/<$gP=UHPPHHi?E3*P-[m.5aMEr9"i9dF V<yy'rtdpݲlՑQdݙ)\"m=`s`PrA?r7-qoA t*t(_j|u?ܔO+^ 59-e,kH H26HCqi>8? zAC7\݃ y(#} Lqai=;gQ)q!g9NAQ8v(%OJrWk6?|?zHrq,]]WT5[]kG Zc}'3[?DID4BVJUW0zuhtpR"G%hmc@J [̻|.$ p'9"?'<'<3:*&U6+>kSv6M[XY s}[KlZ]Xvbj,& _iE{@o~SinYAST/ E//wf.+ /A}*RRcANpZJ`څܖAL 9M/ ^KuOh}<<F׎lybb Qj+HSSFԂ.B1U|ɛҠTlu2y5ճ׭ nnxaQ.Μ)paD * 65AJ.iM @$I_fώ UDwK:8fqR'?}==Iv6I [{QińlIBNntC7zь2|rN bHf" 45i$g/ԢlrTSyL7P9:dBWkkBf`R;8[a U' ') 8FT<`r=Xd΋\zx>W0 (-K0H1[mDUF9]N~Q2U}Z C^uIr ӦB)V~[L/gxTfXO4Ocm & {WD[FSC !T"kWXkc'4AfQ#ZDo:gM>@ i.5Ջ3 l4%Pɞ߲ #$89?^5J`,GZpZcNl/pSxpdnR')SmtX.Az%3L71e_%dw*r Y!-,1q6T`rU*wxM & R zhiY@8'v 0(LPфo0.SackaMQ׼:r!I\ ;7%&Y6LJ3 Uh^O34- GR|5R1G75Z'תD UEi YEu(a<7[x$3 BQUczɈx=ouv(nm-U:a)%wSup Q9R#nΉXws^|b{Ĥ71yG¥xki[#VW#\$)Z":!U2!E:=GMaF2W2:T95ޱRwH;!Q^;?K;qjH,ё .m= а j!m41; ISmv rHi".dEgÜ@@Dk2gJABrnZɰ1C6z#`@lʤ &)}10V9@b\"~Kk)U@VP=^Jwe  ")&YO8.3`JY.yt_M "r,0`, 6x$v@T*I<{kW7hnykZ9d1alA+&/?YNn-U³0^eW|. Y<*$'MQOiqqEt5xgD^uC@#B "f:\7X<*3RnEm3ΠC-Qq͏RBhGL 6;+&s.H`<KPgA'ۀHX=CsB K̛u}+A3y yWueS_.!.GwUZ\<esB{~cCZI]1'08[s5oVܳDkzQ{2\C&Ǻ` woA>u'rz *$,C\(gaK+"04Zr ;IxAz#)Tki3@]vx۞i@\)D Le^_)`\*z~"#'OLlS0*vTjurM %B,bKZBC}<<:ߔܼgVL(@ſ1^T׀(gn`"s*Fpx\ M\j,4nemz /'!s|`K q!8ʔ/9FӴpI7lO G#(!a8} %uRQfNUOI&A9g;Eݣ_VP^H(~ Ry$K@P#LqMi_D*XVy|*]+PjV g{*Bt!=/lqxbQ<`]iBpn4'}8Y"~>^up`ɜS2W3k}gM|T"UQUlų?)UJ9!,!x *o[,`u))<atIvcANIJ8 i#Y|ukw`)[SJ2<+Mrnpo8au9i1Mw2SEF}gYW 5o<^ - Ǘ~(Y@R&(Zvb]3u.:b}!M-~in~/8c\qd%J4g?acnw.,Ӵ:j%J˶1_BbXJ߮@A?BPcm&,w37 ,}w`{U 6`~ MESWYZ\_e\t8ӄB^ڈ{+tt@/ oWDSA>AJlȤ{+E|/?1Ji8Xvp8 QSh[Kp~:ɗytA^]qttyi9.~}WJz Z-;rTM]!ZirNp<7)-  3;[Pv/^q~}|KR|Fhw:tC"BS zS7k*ij ,XEi) F#iLI `!xrAfT_sR&2 t˖^x/r&z#(gKɉI- );5 JZ,oY#: 7zLg8jT&D83r,K]:ph*Vލ~ge tOɹr}/dX)q,eo:  >Y=Hǔ@/1oV1vR&6B!L9RUIq_~.|l7~ !-V'jk]Q2JkAY qN2Qn3 tf%Y]yB>Z.{?oxi}PM<RU*/!B/aw_Kgz^DZ3!5\/qy :IrQz S KB4A]QvK'R93RCViPslg"FCZoQ :&du> 8Vt!sU(JUX$)u"y0focJNR,Ra ]>ib?m`a}GE zfBp3yX/@p\(Mʥ7ky˫Hx\̓ۘa=6v*Um*dk)XR  *CJz3Dm7tcv:EW9{aPKp/c6sZsSF{'+<@*՚.b2^EIZ`]+uQ A5`3Xzz[;*K@ Kq<%i(i1΢7t/JhX a7mW.̎>Hl`H6l0)6sO§ wjWzLPQ2`aRm+snb ^!e>=ZT.3Ñva 1>RE/o-OSYGZY#G6/M@iP~yҙaƛW\' u;  'pQm@#]X*]!NGH,$]87[,p8g0&}COOOLP@H5}3A cՙrK6|^%ߙ5CwO[}z5nG̷4p%oRQal-.ZMκ3Pa 6-~OqO6/=9<Mnv}zt٭y`&]4p֚Fgߝe[A9; f!S00(vo!6n= JK)2?3#j3t$,c,ucIZkMJY{i~$FzTqgbNdigTD)Yrd-IJ?.t!=,%1;_Wڋ-8^i|ʪN`n9cy ds7?pAo77a` ]ncjIK<'W%$gZd^. |=/Cr( /58x ´I4f0-f!+BvqlVX*}_S9OLԈzC]t;W 2{5-IlM;-o0"X}ס\7NV2yyFf}N)U|mnx,"}s^Y"%Edp=+y?w,<c=-3v!~ v4! >0av~Ո y/xS,fpQؕ~)u}g{?}/mע~d37jluv=]WGV ;7OM  -AMfލ4r#/$I\p~1b}MDYjglG^8܎rHg+4L!-sZըgUFw\+*a|Q\RLuSd}%Fxb*)S {}eAw3 "$k]40gkpً\hC!|/K w2ʇ"GM)w*?[(U"Yu`1f„їq10Mٳwҍ[/yHtQzPqw^Y\$ kMZ )[ ; &8 =as(kQNq:.q2gV"3;8h(Ik#.6&X/?H'<#VxF;2sԬo#8w"[iHLb6 )q(--B0M'E 'O2ql&`_FdB}Wt"d ZJcvÐ BL4syQ)_(|7ITy/}S:ϖwfBh &X3nQNs[SzB]*Fp-,H`p+ʴt5Ʒ@U|ngfʫiLj6vnvS/)uqDDwc 5`y߄}y#!3"@ tOgx"$+X}2&f8XZC>UT`Ym^[Z(A[li6} n,5A\ >CW>K-c&|Ћ֎FVj]|3srl{Uε̯c/O^G)H16܂q pB7a;3EPy]AE6@CQ] IFkC$;RdhU8'$eC8&lWrO!,"aP?-m) 5g7`Bi1C!"</! )"J"fM;nSG!c Vd3Yr tK'A9eCVyS.t'I.<>FCqR?7xzWi>6/xZ,07fM*faswuKznY[3JE:P1iIbPnXin0M(`ȯ &!m!?cRbF>Oe g;x+JHv'9}:/QG~] L:]fd sON5{%Zh"P+@8@ ]NyfF nKS*N_0gKY1gf9Za[(TF"G)zy:_ȭQom|T ?;-lNEF|&**M1MaOB5<xT uux7;awkH##g6B9Bq43w: ޒn=:.V9D8Y2܀4H;tDCoDBd-\&) mO~Xm#eM#H "U?DSWU@]?fG+\"W?mP34h8dNADzA f.0f1f`+Q?tJOrk<L6`zҟHE'Bi*l+K *tJ@!T.X5RIߣ(EQF6N`{_zYhd! ?$ju<p9\u\Zu:|M3zF.ݗf{ ,4>FӖG.C|=ب5,Thjd;-xxqU8 tE<RIgdz^}\9^5 O>b>}jʼnOGˋߋO2` %r`Tz/*@KR ЮD7b&Yf.d%pTK<<&0 &M/dL/DB x}ns!y' ']׶#kBC"7:B*\I[vXV|J>6f}M5 x9ryC!7Sez"3w9(8<"GqjdM681])%Xx,  ,@Fp6-R5"IIWcs|8ZMb8QSG9s.0*`0| F@\փ&j !k/~;<NXm'h $ CN0F G1&F%'ɫ7 > pewT^)PJWm__SQ|6PU 4x׷'Gր'4,kMU}@s< Pk*~ÐÖ )qʾ+aVRXOP)Gy.u3#*wCN#d X $x&"V| 7@*M>Q];U"58&$n  -*Z`>=O^/s:H`Rd<5LD(xJ}eu~}=ʓYi\pNrrhAV% Yg78t  0sDt"m ; h, lNN5B%= X " -e&FUuwv~u@pI mGaV&bEcRԑjJ/AZ85ט@**sWl>w_k|Y<[KqIIh^}yJJ.e685m9W:#BUyͮnu9S.KjħQCo7SHjl$GΥ>eRnY M^wA28 9c7)ދ6 BLXGg(J{=d\'HїSpsHE~.dP<~4rL=)_@NH*@aS;Z2\t^qclwk}c!1MYF3W.Icg)//%?9uYO_uchiF8?gRz 3n[BlU%^:*uISR8,WYX0YY S:|q@_9pt;/co*-ydO6 O/COBUpj TJ?.V,UP >vBۃwerTC\}F l4{%T&L}(:.V$yt8NZ8  P|ȟ;n-hzo`B 2Źw܌R|g;NP1L5`3HTg6¤]XVa}eq.NS7$!2BZ,Rcj\X3?s ? s_qd;x2t>e> kw;RZikt+Þ]YY&uk39,0!hE7-7$*4AhKI0P6lKrac:^ʉIE,bV9Pc'sq'{{[#E"? 19Xغz[dgMi9!,M6:bF&IVZgq*}DB)BC ]0HSTTX2nZuPBi_v֣j<K*!R1{^p?1 G"`fhs 9s~hjbVc^Y>9[#Idiz\F)aCG>E^+2*;=LvQ sNsˆe %p4+PdmA/Rm3 vJVRy0IW[.B"R| 5 ^#~S|7?8raT$KH9MIx[_oTB3x4rK"^PVCLScfFS uTgY,T20&;1I/TceC">pZVgu@USpkE'llh =fQ:k e O ]$* sf.K{1@‹B Yv]0xFӦ3|S'[%bzTXg7`-" SXr'"^]df5plqh>r 3? !7[x}Ock[K]d`\CJ1-L \3B7t"'RG&K) f2S(#rP;<4Z>%< * W-Z5UFKN=IP>\0 +rMV F>,dG6ccmuhP4]CSaP8M\JRjL{Uy_gԭ8ИZBNxܤ,$k4Ciri!5xC.Y.2} "?b)Zw.RCPiTQ_H8#G,-<'1Q_P1~~6)wir< 1 {b+;Ff_ip6u\hoa NR-72 '=^H `tږ  e s[,r][ l_ݿ D(:ZhUZ$Nj3SiiFMz6K&c6^(3ĹTzuS{( ޯR_q"\{l- @B 6G586x  ~ ]n)sI1shxJKK+E|^^ÒJ"E6LeZ_!f=cd7Mm&eL͚vYuC71]. t% } %;-~o&iqˈۭx]3l/.+fZ#HzdkZ; B$R}D* #$&=sUX?ZN*w;Li)c3ry%I|6e{VRxvswiSAV/X>~6'E{n*Nb*+dx[ #Qu6t3PÓ2BCh[KZKqk_OI7A&)nG*S4F3 Z3F0PD(eW42`2m) mof 3<P~^z^Y=@SRWMwfaEs %Ì$; 0FwZؾgnqwgurUQq?@o4np0o2q6o/6Ja6*?AE suRg,+?6F%F( X^jz'Qvhh+4{[GOTHGO\Dq_H])OR6P7CV#X|bAo-s(IX1J FT[neh|dO/| N Cߡ)SN[|T`rE(p2O|+;/[9;4MtPpzk*k#PFe?+9j1.Q~:_W,u^3!kJCF:ݲPHҴ$y/ DE}$.1;M4TfG~E:Tb|)jr^AoG)v]:5B: H_b-_vx^tE:hZ`> { )<rJF'C:Pc#kgdR0eR9?3 ;25DacƋ>n4nHHDuȱg0BgPy'>!XQrvR)7*ȌmjHN@DKA|Ongidx-mW ~<]&(n^n`9G]#V2ֺ-'sC// 96!w/$,3GTCM\y!~= FRG96ynKnL?.b-t +  U ?2Cj6MK:?!1) d+;:Q q[7`Ub.-(0~H)"}"x3Ti1OGauD+ !;;erRnX)UVBQFOjQEUi]Kiy?yEYqros2JK!|,|m<]N͡EGxDyIPGpTOL@![٬~{3]nHTCSJNVMh`xO}!-lre)V˶ $T~!^Fy iki[/C( L]5BWiop+tg~' ڪ1";v1r_iĚp cd j0 !YB::)a'(t9]Cp<).U b:q^HCA$(8CojAB|1F\![bbR#%J{]{ư$o  ='&DI6.]6BQsqQg̃HuWP ^6([y5"u.xzhqCHݳl(4Ir9p>aW1{/BIA3WT w-wFPU%/ Oo7a9Wi*0b;'(!Qmodtt%g OMu`-P H7kT)X-;BrHXVLg. A|#O_7AYf/6H>(:*DB6_G4VX H@5(dKvyo] x٩R{^/sgT[Cb\-oH6lN(A.}W6a0IvVT[YT=PSPASJ8UpOh6=K s$b`W#raOTy "/X Or$[0h$yA2Z y0v;o@W[lksPn]ik7Pj,+qITOoJZUA?Cw x:{PIW` k7qr2pU(nc~0mom=k:_DI ԩay|Z$qtww'۝hL ǻv|(Ȃ?6{I{ 6Ze My=&Di/wm~C$w+l6Upc hf%kd7Lb@auBc`=`H5,`*_XF,%Y{_}GD'!e t"k-94bA6i'pXa,)h n}"k,[e[pvk)|Z^ 4F.P8_Gefe{Ma$`[TPM,C0{s;r]6hx[]{ZajgdTv(77Kib0k̤3J"\JyhK~1jy miRn@5p49@SUEH n?D(A G6t`DdfkVRlLgDa7B[FX@TW-gTpxGKM){m@^\UVmbnw+;+PKT~m)%>OeJkIa5ޚ lk %" z( A7ZPJҒ`qyrѐ~fMV (;wk)CTJGs'<{(3uȁp: .VX)u\lOd/Ya  <u ɹnlPnAG8@>,ALc#eh0<SIهK{w+1WKsخܗF؀<i1+Q:Z"B^6bqj4}KYc3y<;L60 5(5T2}YIPY" %`)j E_WS '4 %}>) -8"L&gۇi$AtX! .%1@#/|m&[|b?"b;&!s(J(BV6HOR)X?!bT q,lΝc)qJp6/_ ˀ2 b{06Ivǜ ? A3vTlhp%l`!M+3Dg`5~xHqGϦ`ڔF@]u CqِvM6 g gq73h|ޟrs$.;BXzhr0wy'}PiM?kDQVmS_Ȕ9q\ .!u%!(3 3$]2… ж4ٯHImueكs_\ubljrir?gqu__K;) ZlX4& 2r^T `8CgjVtxPJ"Py'̀mc;bH?jNdsw#oVXFV8|yYcnSO7\H2|^Z0@lvHG0, ,,ByTY~p7~$_ڂ(.SP'fws?S89;R ['S.OFz|SSLlED LWZ].Fv C!Z2u', !%+S*aZ&2R&u.2?Z2P,Fu:DUH`B ao]Z;yY Yi[_ fڗ lkv@`RDGa$ۈ7Ky ]W8h[?6N\HBOvPS5c\elOBc$!;ToX_]Wq,UYfyy֓5{ k?e z1|zoW7j$FsG_j%u=R050[!6B%Hf'e#>Xrmu#&sC*ni.u_2DZ8p[A bPlezvus6w&IP!/ gQ GڰuF0J3)L}(BK6,]c= 6o r`n,e*ZGMlA]8O.=v!Cb1Q}X,( AZeU^:H<D|%*Y֊HlXE24~nj"q[V@+tRY!16j:[Z]"s: ZJ,x_2PXzRdݺJ_աm]%}Bs5SbSHEs"/ ā0r*vKv8,/<#{a*#eG,lM8'HH=_T%|ioՠ@|#R((x+~8mPVsHHzX:xtP2x 0 6B !G?E5 gFKMhbIqT4gx PW5E 3р4hn%%n &;7G1XJ%2G A9;[R9E9o7/..U-w,Sf Y_&ely !<RkSô Eۤ45X{ιp%asQJA&,bT"Y^ml8J< w-/3,r-1A .7c$rxF$1V35&hN ]ʩ3:A Ԭ5msBA|sYpā/أh#(")zL;kcoLt>b:*A.#]S[n ҌKp/lZ[βjNFFhN5@\uujqQn0z`X Njr<>v5.5A+=xM;UJ8]L>Z!GfXĶkF.Z %47*Q`,8~*GԛPO5Dc15Hs v}q&ByX~=>*V<˗ΔuUg@XRmԔ Gƌ) { uuD| ){Gl(Cq @rtMR41 b,cPlp}*9׳ACi$o-] Ox?\ (X. oH?ɖ%[#B !m7UCtQS IdrD{?Њ:/U@{ND :<N |TSPNcQ #\ 4s"[pʵc#u[l +Ai}D!d I)~y#;cn@[6; z^+]I#@ @0?Wn{ s&CY\k(&zYH$ѮR C36"PY+aje,p`4qaUvs4Gy8؅D.,Բ8"T){.y:7>n&?(9BIZVug~[lnT 2jx'zg]O^{"IlY Xn ki#$Iwk. } "BFl4i/PwnbOլ&#0\D4G &PG]o> *}q  ^ !A+5>8VHl];z6n{u>s"pyf`[HV(%W[9c[lӇku2bx:pN Y:3vrD}q_@K_#CG-SZR7`]5e"=^8L 3b*BvTx`iq zvnM$uCW 2i 3З>I+.z_?d|d~_9l,pS>V6AC}7V63t4 608ڣ?\b-mAC$U$.lZгx2r)J+N'n xgF/ctPBGt=Z' 0% xJo}!1V/v#>;W]Ʌ0C` /}'CocH3ԅ]H@S.RN8JLȍv] &4yojJ ߰&i";WQ"O__P[`^X-YWNLF=D.//H$FP"]h-nxFk1Uϗ:-*%v4_[R4%C.! vO2Ї"1dKhI'QZݐ (|2)T ΋]OGnCIBFoT X!|r +lNs)'q&t׮gFURiJJG>4M3-D\8rVcƃW7jX2OHyXvcymx#&>&Wceb^_eLqva&Ib=@Rl ¡δf2 (:6Oh4}n+Wh5%@߆cÁUV}}`Sj|0'+%#G V"(p3 /F1,]Vss8r{WqU5kktOs!3A]n{֔ތ1Q^ȸӪyqei|mS}`5'6$ ۳by\ NѸ8+Zj(OC a" W_;(7QG5T6MXb_P f#:^J~/FoUp{? H~bѰh@JsQ(3u&?qd/T"9zHz|nk43zf]Z_Yfm .p+\nLkll twك_wGU~ .Z~5"*;m+5ɎW?VFg$~/Yߖ˜RIR  h2٥;84 z MI}gjHn(m"6y%X_[O9z9InUq_-m1| -X<3m*"U 4Lٷ`#Ar29t7 j]NqgCVkI#uH@_bHbQS=)f  ҦwL~<^~qfS2a7`di1jdW6FJKD@[[=ygAq'L{[]n#=yb R&$1eW,lה@K0r?4"Wwq1/CEK\MKXFT>5|,@& H$'/,8,5#aJ.:h/Hr/@V*#E"o 4ZFVGaZirohtgzkv^@s?P!e)EvTV(_ .`E[~)A Gxh#Cslݪ}ɎyTC]]2!{]1caa1 ܱ)c 5ܹzRԵpa:#gvt])X0 AŨcAvK]HDZ4^<;:;"","b> 9F9aM !8BOU]u^BTAI+P$#k R%eLiIyUogΒzVڛM`D2']bA'V)b7׾c7̉0z 7yRuw1CǑFɯK\$ /2w<gGTd=vUƋiUJyXtCjPoeڤTW:u`eE}t#">.*[9RGxYnKwG|H1|o"@'#yO|Ǟiz[@9o)OI0][f2a)oy[&{CLΉ'6ۙ c#E#' k\ұ+4sXX;C6B538DPIWjT:H5[8u{&? "wga{Ѡ~>k^L?\ v֜ImձL=xB|fU8Fp>՜E}8\b6K1k9)*Tx"rQUsEx'|Wx}gH5ze,;Tmcq 7'D4^1(#7u:"!T[0V~u!1rTpl&GB=yZhx E=NskR2{=Q;w:Mn  7*/g1Tb8"CbRHfW!r/7B W sfo)_k= cJNT2_nZ[˛+7 *:0zS4(;.FR[q\R^W@* ;z_-boqsR#I186d746! U?Q{i$9aVvgK#o&qZSzSkCdi }[,51"( .(}T@H_p5LX"¯0OdtlWDU|czb8:uij?qs3_{FeFS,G:@F=!=@NA>1/lAQOC5SMp[|_(Js;!<42Y*3-T/X". 3Aa*$_zۚut4}ssGattEq&Oe)Ky$xfUd<%|`EOsBH~JۢRAY,Y_PAC0/"&wHvf#ۤ+)N>^NW78/SLD[U. TK ?4"e.\q4U,|JBNpxv:K8Vi" r}s7`nRT5fu&_v[T[_ [eS,@@ k3o2)in8QpD.K(e ֍%u:>OJbV3cK u^Ylzw;+$d!Û0 5! 9^ C0G)fvj!/Y|,";5ROfEFrH GM ;r<kfHׂ|+O30+ `s ;F2iPoEj&aN24 dT!Jz(!\4h$`3R% x _yf>Z jU3 $@\MEO-F<~4O|uoleޞ=PFf/#gqp~!Yc:%uK$: ='HU8"pqM-)G"^mn`"zH8+q\[v9&Q d@{7r`2׽{9jlc,XG:0*%"k GIjF;>5Y^e6k-#HoeEd|@2KzMDzrApqx7Uor;P#UH &x-?: tEJKLPI\ub_# LdDH -[;K%` w^|m `!!rzd9j Gas1YAVŷ03xv~FZaCoT4[)-buf*B(;#nVZ. EYTk,|:>Qf^^{ŋh *H$҈zhlb_d;r3ȶW Y O Fy# <-8~CN?XA^\QMK1 EW(XWL 7h!D|xDov'*&֟q_ ڝB2lO ~? s'^244}c+iJE`#'Ry)l[=TCfQxɓ=Q{[hWVdFٝ8zk+4yrfL\(P8[K?g T=ҵY"wY6{EB5'NMdPQϲT\i|-x6[qUF  $w}?*4.uCd[&5? X6by% yxOb+ =I.ò*ھ (>X `4[/&dܬ_q>q D 9O:S4l'8Mhs/w`ZkV-^ &>-H.,,+j.ux:MRxŧ* Y 3HO}^xb\IQP)@8M1M$e${8dqJUK25IH~nL+="/7P8{M٪=[advg!7gl"L6t ^Upe߈~ŨֶHN{&-4c,ϨF ,ɞ3ڮeѽz$G!5(#nФwJc$'Im5bkS\>ؠ.R%w b(E !forHjQ~DƢ ܏u!zy~#ts%{aB["mL_4Am\\^~(N-eNїPt~[tLKD=42&l0!sYz%bX62 uT-oI}\+}dpla^?XLL>B'6>3FG8`DV:qht vP}}yzv:uw&{--15:KZ;5"upR78r# >z N7XAh~AQ%i(*o* #(|;&X(%{(I[1|J<6E2H9 C3 )9Y+5ml 4,aHwd:z+|l (wHgWmLgG7J)UdfayɇhlzEZro:2V];=>#4Ko/jwxeT $"2{(H+Md?/7{FY$lx}|Yxt2tzܦ%P?"(>sLO0|Y#PZ=v^*M9$H%vRpRΈiF?/mq-kw?+~ cߴKijFD *-=!k.q8!A/bG;@SboЋ$"ajiMwGi3Z$7Q \h]scvEeA# LO~ fj'ZY[aW|Y ]!O\JUDIu<1wr*'8%+Kl5F[ok?|cyf{+csׅlj~nO~yVϙ5[A%Noa A!.#%!) 73FFE:W^jkFncuO8)Սx ż -&PY ˧j0:\C(Y-6tl>HM  4DIk"X([ܒQ>'#NO)$ -'T-5;8c8_8n8=s:L>fDP'J 9MDGDC@5/;  YKu k7lLzz=]Q^ & Ge qr:X_!0{~0(He@x#q%4S  ^IkYP>Uk1Ux-dYũ@xϙ5y}vo8kmbTX? Q+H:^$0IX!ijLM:Pu36jA^NNF;Th+QEI3 ĩZ*Ӕ+۞̴N q)g2\Rx;FH T\s|fa0f@IAHbc4@g!k L'w7X$/oZ-wA'.oWǦ;P6h 1ATtB{S I#DG>sG[ {wOk 9ƈWwpcg \QX v`ytQ0C*n?5OYD d[]tjn2jb0?\jXXUeWPY@w&9qdfjcPmCJ̃EUGp|\"o(#29/F?;;OhIc]o}yûs? A/V(ov(xA"5F7 w7j XS"01K]css>zwm^.L!9P)1$-"I]%kϪfQ8tGnJ?oZrvqutLn?f`(f_dqI؄t % /.3,F\; M cv/Ч;Jt]~}s#wn[f-6I1KqK]tJPisdeD.[ $ƒyG 8ځ&o e bckbYFcg&psk\TTJz?r=gN?C6TQ/qd7wJCbzÎkON:/v  KQ-kiL)(.-5g+i;TVn1Hz>0FGLV'_R bM1}]CRVEkJ:3 N1F54@3RKh[wo:5(R.Kdvdv  }et11K "&==L=bPL$Dn<6-&6)<R=BIbMUd!_~HaVW>ݭqҶ*q]7;u#$Dci`MvoX i 5Kc*~ʜD2b]]MvuytIZ֦x<Z}-~qPo}k/}N|'ws}%s\ov]QL>:2#n} rHI}G>amiWy~p%fa^g`j8ehK#g`,bX X PIEDG#gN$QW~_U*kgz'8 y &G4aJo)\qfhhYYgJd?c;Jh?vGM5c~PA'.A1l@*\ ߔ ~eRx&pߗUd9*82XMnB&;Aq Ny[5hCrbziو![zx:{Zx:QXbl^Z¡&n~,f-8 4+l#'T)D0!=9OdZY3z74y/!y@bZIp3V#J !@2?O(ZqД ?^ s|e~ z6" sA1k~ASdPaZS[WJ^X1YL:ҳ'R< *(" $>4yY\p ؝8ɪ%l"CZ8UTw1Ndtn,˾_>[Yepk^q) n eZqPPHX|DZFMtXad=6_|{P_;k>!x$RUU#x k<{Xytpljʒo}|a6Zzr_"E`svw9۟"Э|f[w|Ji"c$IR Rksw @% -Qm#lR{0vex?DX&Pe([ pu#_g]SMEQ2Rߞ!0هwu ?h+[KP 7_iSȌqrs[g*JE?n:27:?1%$i~V8LV\?fmjk@Mm\/eom>q;qnabNs2G>_8}3+cv !KP)u2Ҿ=~LgT`{2DVpG)(FR]v?ͭxBK`WmJ{}hGs\8]@+pmx1wKoUDbGR2D4:98> NWqbvUs!G|ysGCaMN|:9Xu*2 I|1axK8\||X]5xSO0dz.C{X6X1hN5zr*u r8hZaMBs=;\5v- 0 ysaNt @I6$3 7R> FH`[Dy8"&$=8#yn7LL`n|a!zsQ Ru%. 8ec![B_Շu?ɅG, SƼT 6LDFH8GG#SC.Y@SAH? %X;od_0GkV(E[>m~g&,) qzx]`Cd .X!v KA+-"~>ECUej|>)h%+w2ݲV{Էrz %&$=#'<5`QYzuDS@pYuVk{6xeMz?|azlsrFd=R7?Ư,wa@>  <:!sQoTYc> G)tV?[$|~ ͡,NCNLSO WF)7 $ AxI#> "^"k~rxm "W5 ^w} X/3  [Dv68?8RtuHXB[p6S4 <_H$TeP\]XwP8YG?z;;@  I4 R#aW*U-?I)4 BpYR¼es AoprIy$H] zY[k&U8In'_%T!zMER9b&.=% hyYAwHVl=_.Ta4(9rL''j %&QTWA}l0k . S7 I';Y8wfAPtCT?17n.E2'%!,DJ m` :#\1߀6&43-l$8"a2 BRX<_2'e+avQ/7xWq=rU,I%q{*V8FMjBdFyPb7]idrwtx tCojoj$oa>:uQyX\[z^Wu/[5k)U\.PKO7S%_s"Dz9H Y|6A#RJ&0~l`XSè$M2BSJ0?&.!k+-kzN*'ӋѣwMXBty3wr(t`!wM<=1?/,-x$5-@_:LGTvR VWNU?L*<r)wSm A[ % Ed] Ig<{fYT v#UTW.WQ A'XYLVS^!%W}3~҂P&܉BUK7#[0bؑl¿eE2Q.|9:O4?H**!>W R"Vg&04]FEb+ۜ27U`d Y c]b߸E~r:Ҋ${hR|&<Wc?&0NRA@V;55BDmRci?"5GGasE;ƨ*PsԔ^GG(Ns pS8>x{h"X =7N [lKxOXadyhIjoeY5qGe2~aAPfr*t+֚T8cHD2$R!~-*< U r2Ɗ/{AMz} $B~n[jqqowm*n14sYm{YKD5 CD'GUIKJ,I FjB”@n@a@w~?9Jd-mmBG22oj:7{dh^PP]`&ewgGhMgXcHp^56ZM!dYG ]Sg%vb˅*QűoUO}erjdT2Y%4KEF[Q}cxɋhۘK:'ԅ$5#mu>N+B,?J 8p-i (kc7BcxhSH=o+"F(./+v$~'hC>"f/k=r6I\NyZMHAFq;[1I*(gd.T;[?NmK}]kԆvDĈxk"MԾ!gV5;ymx'Y% cCD#R#)'@J fT@(Pi6u2ggmغ#d=W"pILov1*8!)#5DvE]geVފf^ti{'e2q&!1C?vY'h7-o<{o>i^lJRg5dqc.fl4%rvs]Qn,`\JN/Up(J;& ^SWq?p{cC}T(Ա~PQ- ^$2ǟk̦̟Ė{L|"jWE73,Cr$5?Xl&F~fP k9V4#D5Q/pq3[EBKZA z;=87;U D/SKj|b҈u"j}':4XMUTaM{Dd?3hA%SM3cuHe 2<)iK.ϑG.p,Q)( &#%"-.2 2+-  T&L^CnL]QH D00ACBUChF}K}ZS_ rk â&>Szd Xu-$4D}V  lNN7K?MV#VNK4N8LHU jU1[a[TVbM_g@/!ȹCš0>~{XEw4 z77~ŵ7ar+v!7Q6rBvRh-OtT(J+. V2@z| _/J<{Z4ki:.c'glsq# XWA_!?Nsgon' SKa:_%C0YTdFk* ${q'%v: .oo@gLɧ''#`n\C.X@IRaMiKJMDaF;62(eUir_WYd' u ƭ5ټ42`_ 5{JT[CXglj eG^4YKKZgda~oS|MMOƻH+W?RMچTbNS:Im9#u: @/7IgnuaFX4^>"6̒W;Sٶz yf1E0'y j*%)cm{l)xddAcXhTrW/~^g;pcv-yxex>ltaoeZtk/Vi|SkMPoJvCB0~5$ y~XyoW5 H}e|xr)DfjWCG*d ^7 1-sC"<^j(Ի'Qz&_\&@1U2LPchju9>'{\G{3 r+idv g4-Tt*Kvg\͜@5i-"FWucRk(qNUw}oBD؇2M{v2la>ZN[X^6m%0vWua0&Jn4u+^) XO$s5wFUduщu L%.Dy^{1quyrOwpk^nWidAb,Y2O EQz<64A.y)$?goOh^%zlAbI"`ݪ_ {{='-0` y0),@/%Q \0 ,c&ikpuzx|c[/´ؿέ70hʦ]Qɿ߁ݸz{yGrc/Ms.+XJ8#=1y~xO..s9O\0RE Y"<E < e>H}+.!')'K t?m%VA/#LUL"-<hLYibe}rb+^gY>YKP 29#C o$ۭxg_@Kg=H8)d8ي|}rxafK3/Lj3mQC8z#0yJ q@ a( RCO"n1/<rGOESZTQDKrB7,* ,>A7ԁf.X.>$šПs^q{`/kJQYXB-D4D0'&Tf;"b71BunǶ[/)t`oM_QIruoH|l Oh]hrjqmߧ8ryTmE.J]%,E4(<.ENSWFa-l9zy~R-#?6a1H`Wqaf:h:"gxJe mF`C^XMAH5F(Ѽ r2yAƖ?2kjQ~hq܃nxֹ7Gaam9Шf'02Jh3eRJ1p 8"_Nc(Yv< PMa:q3}0x]mw0&h 1W 4H.;b!&3Y .,/3q;JCC\VJ~0MN!MGFLr)L/HL "N=PSNX5^ brcJd ie i5ssLoe~Qh} #':OG`nzN{-bpJJ 9(Lq.xV,){NMzoa:Fw-g HPjTBGB0 E7Oe\ lf }8mt8 _?jGZdClz?w؝w`H{Vs*\C<( "{jؽU:4@f +91 }?ӷ<Pwk'amP0Cih9'L11,d+a o/8Hag&ΰx[NQ6%z@)7X_(n v&=.Q8E`=lny&|f65qRB$6ER]f2m/sxp|$ׁ5D6NҜLRݧN-F ;0)&4 <  "1+E6[AqMAYgk!so N }o6` .d[)(1J9@HDRU\=g4Dpvw4&v6YtcErTbrar}mrpwqcwolkݒ-e̛[L:s)ݗ1f|x;(n^<g{UdqeHiO!otEy|Cu% !}C2W}VDV`hvt~I]B{qxLxd{-R>ZN,2^Io̍{@w£_BN #ʾ)޳-F#loMx,yiR /YYG3!am9> BB{FQQ/-!^C3"t.wZsTsv| {I {~kXd E_T2 rBSg)~cH!22 -n B!/ p EPU"o!?{)Yl:<{#Jիu Z4TQyt/ (=aƄUb& MrZ(>s)|s:2 qOf]}O%+™,+*:#Wf ߙ1@ń~:vpxknaAi&[yhwYl]u2e+pܭ+=׼LvW|O%g$oB2Z`oR/NO osaĥR>Nv#O?[%vٕaރtUf[Y]Kp<-$ N}.e{Hg|Ad[t xxpےh _6UJu@81wg-("4 R"6FD #R-XG?[AV[&qY9WrdT `OHwGC<U.\ M0CSzOiS;%"% 4tfm~sZjU@V2A a- qgwP,jIdӢdipJvhyzl|[6~9H0Fށbρzb_rTDd~ZxDSpOjLc)K\ITHKHB:K9WR30\#Ni ~umkfKȭكgw|dPg`IkU^*{G z<-2%J^~NfO8s! Rbf5J#!4VqCowQ`Yr6EQi|͈$Lyň8^b[ۉ'Z&G`JotEo],bN 6 u;. kunDl{$iP4nF~Xh@wTUl@n9+^~}BR'gI1nyrI== ;,UP-^hq~{;Z)˚&4E~:'=aA@|mB#`Dd:F IYMRW^_gZ? Y#nS J XA81 -+-6g4=:HaOdSW8TRQ?3PQ7PiO{6O4ON(QSӦUBU0UTmhV͸Y[ bk k̡rpy.nop]_@I$2s_`FC+[$j;. 9lě݋{k&{M5gN3,Qv:&"h $}ڸQµ×OupYCu/M @: r:o'l=-R- 9)!6K @eZRpTr<\*Wz k_UMB}GBB?y8;`4)ypXaTNIw@ߞ82/{G2{:&Hl8Yk~jÐJ `sͽ"#Y@kf^{Z s )1ҿ=7=;t85d1/1YT7cB*R#gÁF*~W 0('1 ;D&F=TRMd:f2xz,~3I$C3]M3d,y:.HP0SvZTZSj&FE96)_|$r}I~]t6byJo/A e&~4dO@bIOvQlSW/\F _)c hn\wHߚU<p})%yO rǏc6~C5(y=0LT6VJR&I=: ( !D uJ \@h^ ?׫~>v)x+8swnoiWo`/RA?W )8[l:3{6 ըiƸRQwj]&RIA*C5?;=Q@=&Dt?HAN@YU<<V[E3m_k&`T]U H5•\|b0GH(W-e~{{MYu5rrMeqdn7h"K_R"D}6{*}L! pͲ-LH0b][) 7!4pE6U)fUy,6KQ^lwvg{h}{c:x*t:p%6lSgq`.6YE Q ]Ir4D3cAKAZFNвZ3h$u~y)>o7=(dNBY]OjOIw{FG3L]S\ug u8*9Mכ;m՘W84\3,|ٟе)u/ qQe&7BHN)Wcahsll n6TmKCUjFetA!`5[$RV !Q'k dyŸrIܜ(Ř$b6tc%SD :C3UM1$X49;7E8OW\]o\^WpMLQ@m+0S;@ n[]YφvlNSi;&|oI q Tw {'b}^]_|engNkqzٞ}C}VO͜!ʥ8qvQHWqFCd{@?eO;w7yJ[*c|>dR#dy4seC|jP~[fv+eem3Mve/TW#78[dEc=@vUpwD1/4G[1maY{x!M# nG-bht;i;^QӀ7ڠN>8N7/lA[^R,O%_Hf GIhdI1eZMR_DPYOTIS>W.a o kVnexվ\ H I*LI@Z(kxж/ٶ-A6xwVeY2D_QVsU]UOCD{<9a.E:&x! raG&̨ɵ[$c1-Yk¢Ğ{{{hXgNLQp78 "F @'~~hipI i.lecY wa\uU1K;A7$/)"&@&(h+RK-?~+E/A%"{  n+z8(x Pt&"_7FH))aV= ^uB_VڥBEy+t eE[T@PwNTM=39N!O$Q|TYXv]BicBT&kIqIuHTEwZguaUr1om*ov׃qQ'x>Z4|)5u9/801L'e}ϖvF0=.4Qf8ttgyt6gR<9 j6/R@ ký՞ʎzcxHR0^Uh κ$?nd_aR^Fo T $L&rD_g {!#;_R>{g x"%)L1ތ7<ߌ%JYi"v\;Tғ}.]4d@LtWI!t"gj[hzS8PyZI eExw ':'$(Y.38g8D4r`)ЦB|zMf&L-F.*fÛL^9h—h ~pR|v^~fAIRq2DAS2l(E#%%=-_3<ԤO֒e{-lX֜8Gפ91#90ӓ5?kOLR4Zi8Af_nTqovBhʮ^ՒSvH&\>AD 7I10$+4 %"p+57BI'J{A0quB R]duߙ |zbpcfH],QxE,9k1w.3jA&W @s5_z+o *9T5.Oh T F'Dbl~ )EBaDpx2A؟=/_Oi-"Cc= /4<FIT\c4$g fT%Nb?QYWLk^?w3z*:s'a+ G5$BfRy]aOGm}AtVWu2pkg[IOD0=;::=@xAJ?-::g4TB.(%+%)(--O@4R^:oei;Ux5@(P7b¹FɺTؖSuu~rg0\AS[gMl,HnB ::O>-/]-n7? Y;0}r/lie'aU9Z#FQnG34>>C@7K3"N3J7B=6D)_JeM LbH@[7-8P%g TC #)r+x,6L@F%G@:4+$s]T}.&7E|VJ6Os*޸//RAsk>Uf&B6GMwVRmcds]?V.5NAB0%^ b݅P)MBy'oc`?T#<@j(Pz0n]3pE (kFu%YG >w+=ݎ?WDyHoIhHcD>c!>Pf6xl0t,i|+e+.2y8l$=\@ALD>-EZ4D-C1+:B+A/C%3D5;F15mD0=)*."",T"-nk=5NL_9lvqjYo?eXH"];0*(V)cb,02T:Q)ALDELvB>'/;sa:Cq< 9AHQQ(ZJ=bj/fx f-Qbtx\WVQ9O@PU]ht1e}NmNŒ.}ϼ+yt;r;qVs v>{~||}txs-nva|UֆLH:HILT"_y+ha`oV]ptkbbR.YSoTD_P6rsz",N4"8}58I3WX)a \i5 ,qzqum[~x.K=GG5K^TJC 8!*7K T[pch5c"[5L:ZM'/CNp9F ,'C]Rq'~ZiX='s a0K8F4Wbe%#_RBf2/"1L L O 1 JBFu)Q'BspeTTs>)Q?#_,#зax+\cC7WSV4\s bdbD[aPG.D191V/Xlr3L1=$,JO Yf_/oq׫ZoiNb}Z[rUhRcRcUjZx^Q_@[O#@.g¥ Zx$Q00@:@Bރ@XA9?DfHJIE)@%;I:k]>C H Wkl)Nss%bR_^.|8)WQxM41zD&TMdɢEzֽnzilwSى:ԟ1Fh;I2+2]Ԓtr$ϩ|I3td=XKN,<\Vlm^!^3AK}OuN>KG7F4"{H&O)1Z*miF+{+{,C,*$$ ? Z"9n'8?HM#^AjOpokX\g`d.fk.&uM1qc [SZrđ˷6oDb [4\BeQK@uAP#ReRuOH>z=2-^4?S־~bԖ:oM  k(UpDY:@4J%0 t)jR L3zש ^#rDa.@:""` k Ũ ,v^Jm<@4et3 83hABKwRwTSU/P D3) z\\eA*x: " 2/BO^VeUN|LCWf{{G$u/<gK\*Vnud  <E6e q(X'E3F<>gCx/FFEgGcM[qzE:;ft>I#:HiLuIRB0;7{g8 ?KZh=t z*zMbxouXuQzIФu7);mJUcz\^4]S}Y7ixUZR[R6R?PUR\VZfY{pNYBx^TzKtuDAf47Mr/++*c+,$d*I-2#Z iYCq#x Z`A .O il w4SO@,i6~=|3nmicؕ,_H^^x^lGY aNU?VH,:W( X:U }ݙ#"E{(uZ Wm:aQJ%yspqݾv ~c;ڣPWH@ɯqvA6rW7lZHQ*UTlQKE3>%63.=%D<K1UVbu6ԊBF"#@9zO#d`w9)(={  (<Fff }Gwsp:ppf|rvtYRw|݃v|Ǟ#J6R1RM[/AKP1bnq.2wGsqxhm!YbGXk7QP6)@JHAK TcvJȻw]d׶{U IO?]}5dq&JG/po9%]~ӠMVt2TFsR$+{\`U9K8'vX_RFMv@^#:9ǟ>y|DmoJ2YLHId<@31-*)'$$n#E%t,:Otj<˿`Fsu rv'Yr:K(H" ü,qDEem! C ͪOG.T;)}9X7.uߐ ƫ6M=gbbrH!zeBzc-rL8d|SDM703/)2pEp9d?CAaM<4Y .@*~+*-0&;Q [alpmRdUC/'H1sO 0ի} sqWkv[)$Rю'ORƨ[~Aiyx²7sľ޸ ι% s,5 86 x1i%+C&[d:$#ɭp%'(D:&@q < 8lKuaHNKvk0 zk!\#L);{1B*; G U]bUmtu<)x*u HuphjSh]k6w$ U! 5H$]D<s6M,-X$_djor|q ӈ ו7P˪kŬ`ٰ1xf(VuvrI$@Vnc-ir+kLCj*Fi ilr?zu!hJu8ß7/?3N[1Mhs+{6}{wuqsjtevcvctrdhdY$cHp]r7,RF)?S%l.#w>A  #zQZ.olW076/N*'0m%6" #0hERx'ZKy}evBnLjys6%[b, 7gjQV;#h}!^(x-;Z4S7o64I^3}3'6k;!CD83NMi[cj^{|[б~5 *-#84f>B"DE J%RS8Z_ Aoq@u7u)Y)}_tAF'- REu [p o.}!1rAM2T  VuR׫KD?>YCc^NU]pmΨ5a_׳s@$kj=I$$}3}SQq)y}Iu8k]KV}D5IEJ-V30oWY\Aw' "o +3N8:wc<+|=cr1?c'@O@8+> : 3{5+Q![lex# MCX %*sZZ]/Nndi-V5n#]XD`4)'۪F/DBn9`'޵ L*xlA%72N0!L-^9BaI@L3KH$JE6D4CG dO-{\ m84ƔC6ivR6rd c uGhSI8.I :E,rAQkwlG= V!$ ! 8!ESmXߕj/Jm,iWMP>.J $~a`Aʡ$z8 Q&PdL>:vr+ajJ;5# T7m*4[NxdG9IDGCPDDd׹ۆy\-2K\cer`;X(ot=WRNeuuJ`ߧD0ע#b҇:=z2BzuohU%+1:VEܲT4 fozgNlԥ WĸD56*Jd#Wr &1KMAXc7x>f5$dJ0j TyRu$ib)]B=SKGJT@Xn6XE*]VQ KIlC_9|-5GtAmɤ#buu fWtRg98q'(.vۨQܐ.x_J JV7))Hqv>)[B!/B#4" x&Ks/-82==Φ6[*m8V`A!.A `l" pO+dC\u ~{'swnl mb}mhml]]iMb/?aX0M #D<l979>pnG5Sbq)b3nۯ3*d70? C<'EBwH[NbpXu~h:}v,zwtXprrp3s&Vz{ݦȌU ICy1ت}Co.eaT[JD@? x@@x@}]?Cb?*@CDEKZUbqݳ%%al}Īgѭ,@ҹWS``cyrAԀI Gf'/5?;4BBKJ.W>eOuz`tQylPtu^ $@ AO?k2QzhHo= d S>p_hzTPEfVfUS D3bwhD):Zy8_U" p_VR"HHA '>q;iq7Ŋ/ċJ#q0~ ovYxv:~vey||lnI]KUa7B MA v(a*O̴!@581s~z5bi@>QS"64i3.h"PceE$Y idw9 `U: t3`xP_YB&9-5S6m;;tB'HyKHi>Ky+:(_O6ݰBޕPK=MsIm:?n0t6!#\J?)s8.1II\jqqld(P\?V]BM_jTdCVjT\pZRsOr+MmhKeJJ&ZIBOJjFLUAoP,AmVYF^nPj9^y n/~<ώF=!AbAF^ b40J_"~v76*M­b!u21;YZq~?yg^UOr3 tTۺ_§,y|d%mK4!Pp 'u)'P'( ",6sB^5MNTX[k" ^'0cl*k(x ‡$0*Ӯ%:c !aq60aLIQ#\@n7-MuAڦ`x7Vhy*DtqWNplOeYNfHly30Gq>OM|*oa(2hvyaIjJ 265i}`mO ^G!Q }F p=4y*+]e/B*:- $-%|paM2 ̀!FLQ)/t1/a*{]"sg a7^_Ac0Gm=|EM7*-u28#Y@uƯ&8HUW^Ve6l;{t%2[o/ L@;Pha]:Ffclypshv my]|jxzȊrvxHӂ5"loE'-9I%YB gmm$Y('!T0@G 4\ p> D-6Gg#$X) /'7+7C[.{Q&b]tpZ2ɗhŰwxtrxDskvb|^l_udX lscyq~GuЂs>Lj&& 9HPWAfdvLr) < %C=hK1;k?2EwWA j~; q`qTxMKfL'PVa^g%pF| h &>R[+l7T lH%>'$X~Lmv& ck^3O@11?%>g:yZ ?h3O7j n,/zy7[m]cd[v<GS>Ih<KJ,2r}/c`FG2-C\7Ʈtн `]+qhqJA(}]9ڢ`zAuFOeTYQ{LqJ_J ~MS[f`tZ k ˵>EjYur\ {AB&- B0Fw9jk`ݙ[[l$aYmI}?ۑ?<23>DuDXMV Wv_Ef jkmm)Gq4yT?,HN`]SWc [s-G`WfnnBv!T}ނ&S-a{r 'i2}aO]Za_he]fqb[aJ`6!esPM[T> O3$v)&40>wKGgR^R,m}1 &E/PtIuٜ;!Ri7SidzWe% +4H:WFR^N0lt {NqAKݬ%o}wrex]'K;0+B-7GU^Z{D > -{k68<v AuDVHqK(LK|_HmAcs8m_,XaOh~sZX: #&tل {dqg[]g/|S@QH<;N*ugQ4 B-aDpG+ӼI\CʰͺnмJں( rR2η|\ lpOYHC*-\ \SR'×9…?~ywy|+ָɠssZb΋VPipO^ RLVC:[&*`e Uk Fs~YÍ؟T<w,C2_~JKe:]F g~#U',=6%4N|>iKх[Tl {U:`EmR6;QԠ">(Gr"\zEH0ϺG$ ;GIu$~/Ⱥ!:oDKOGZK{hwVv]zo ?1 &D(e !VA:  +O%u/ 4Oo54&3 4 7.=7FYQbC]y\hZ8q?wG(@z+{n9}GU%*:/EqQRU X[qqp#D.:8G"S+q[!8]@HY[Nq@ /0un23zW_*l-SIo`]VnOc7L,J15HAQ5"# SBrV=]w*i\O@)~/9K&]uk@ux, voaZgT_-Y\V"m,VXW3BY .ZjYKU?N EP:/0B'Uxhxo$0bKa73b#m/*6gh 8.Ui6sJ2G`/I%-Qa-]0n 7?S)IFQWD &[24x[o\YsWHVWAA]ff/tރNs&6 e%*-xH$9eGhYlڤǯZ8ػ=\l?j R,PDLVu%Wo;jtSBfmJa [S+[L"F!B C{I?Ug ~A QThLa%    ]!2h,G7bPD~Sbfظ| kٰ3 %G%-OE5::e6,ow2 ~>oaTKJmE>B4A&%A@u>"$9)/0"7=@2Bm?L9-  .Heۥ^dp1aQb< 0A<0D\N/}h`#9A&}hm^i{WLTt.OjVeVdcpax]пTJlFѪ3Pvr{rhjxS>I-+ C5^2 z*8?G+wUnabilgth!y\j'|j}ngr{h_;vRlB]2pHG#:,$>;q)78EP+UpVLgS`-MAGAy=:;6>ByFH H"-G0RE)wnEG.MUnaUn{$?`)0Xf)3cK7Nar:v[+32 L!)!3@1Oauuqb5_^SNMOVcHuu/[{- 0>APp"# qj;xN;7Z|#_P`cr`=aK'ze,3#l;FuAPHIQp`ltr_$mF_=NV%Wisw,.0v%8tZ+D 3#)&+Q6xD`TudsSγJ#_hAb!ŗ8JĈ׆ӌf@RӘݳ}u]Fq=p qs_[uwxzPsٞs$,9I#G #~pqcZnTNC_1+w 1@]'/A7ykZ Q8#FlhUT%:<71)#g2 | %`0^x?mCRgFefGv%ks&m^ŜˤdְlV -%&e=P>;`1~m_ybU}MA9 i# fC~U+9:1A@>am2h,>@sہLyk}tr*tSw% +{Ѯ % J-O4onrN-( W3&7E6f1 &,(( -9q9\J= i`Ptw+v|;4I;FSWT0It3hf4 wK$J,?NYI{uqZ6@h*SA>A N~#s7PTm,go>|ENAP#u?x(o:kcAkohw9E5ڈrBp]lGP1h,2Y [)#tJn&@@ 9qfL4%knwI[8(=߼eDMF1InhDjtp^P,|##MFM?rh|_WGZOneF< ;3H/*8>AGa}PhmpYT`~?c."b"V[P^DX7+r /"vMsa fy u;u$+ ./.>,^)E"c~A"& 7yM)i"24 I~1`XFtZ2ҏƋC%nAxFlm d_C]^a`rdd]aZ|1QF37=564 7?L/\.n~9 -A! +ׯ5ͻ;&@DIQV!W^<pVQioEJ o-ZNzm:&q;"MYs`a7^JYVwUXSlP V=_]."iJ{DmƦD6m}O,6Y / y.$ ݵ+5ܮd<C=Ը8/$r\N;1r${1z; ?9#<=b2[!z~ 0cMcx4gfs4c>TIBl^(@/AqC2DĨ/B 9_+6?" @HAhNUqqX\1sD) +ry {h^YSMD'<3(  zac;S wh`#{W>'B&)Q$ ! "(k2=>K`V#\^Z¬SYJ: B4: 47/*-` 6*%0G _"w-ǿq"D)n >Xwp )W=QePzI pb6YGZS.ZD\]e,_P;#b1F@h MrQ9NSdUuXɨ]Leªo)/}qzcܮLտ]5 ]Y ?a(X4{*?FQGCS:-- n0%A]u) 3JRZ`9uW݇erΧ8?[ N *PS6;98O - )#K153e.j#-ËBx/]fT$C94(G[fgX.q$7MQDcXrvX΄w֎Wu$z+So`FdBaZ|QH!v>r0+T5z"[f,|K13mxG$ Dp!?q9Ml*~Nf2MզnpvZG.7ܦ(=]}fjTZ%OIGJs(NOdLLXB1| %c#])`C.<0e1qF18/P+zv$sw&n k{nwh_i_A/DO {i$yh'pYG)}M+XD>0c>$8y<|C?yQoH{`4Wnnkz$ŋȒt& :Kr],qà*E4M*CHAUg7w;.?KKs?SWz[` :gr5r[azD-$/PFc.In?u*4<:6P|Sf~cgxf U$H7@E_@^M?HPRWVilZ]aaknw k)"X4AS6sͯhm^˼L VO#3fHaa~qCswssgw~B@r/g61K;W5Ӄ&}Qfzb|h`jۤdR tsθ)Y ^1H=ye"l1vp< `AK?@:7+D*u;Z_ҲY[0p !w_F1).`mǙ9{nkeaUKUGb-IVi}QN<_2#p|aAXP|Bup*pN@qVRt`n ur=in\K9)%KLkTdH#`$+l1g30/)w w}`H @1t  S(1v83<>9AF EM!Z,,m7ZFyYtqƏJvc.CYPXSy\32Ql`twIr:ryM+نp8ZD/U?O^Gwu}$&Q1 O;_!B9GTKo P6WP7brq~\ghC*W.SVJtgvZPA DY i$52DzR6`Po:ĽBvAP+*t(+*I'#j!M!c"P%''0# 6>OGe`u~~KkyLqhbN]zi\]HawevmJjfnbpd si&upwZwz{}z}v{uotufigc]MSU8PNXOmPߤ=P!]KfZ?P*@5a.K)P&Vj?#@12L"/ _sN8)]Lvq̥S77հ  sSqŘb֜١%Y$`(jpzwxnz}XƃB -0B wa FO) xx\8`!?ۺrDrCk &CC"b$~lť 0:eWu/XYZ#i3(0sa684r, U#(<H`LIrCt:Il1(@i J sAH8b P; yE$$%,(*:(M&g#9"%.=GS nUr f"$(:'$[*{:--,* *]''X* 2AiWqskД!·xijZy>`w%T+4P<[D&PNZǯPj8{`~ǭ)xXd#mk\t mX"2>F"_Kz: 3oX lF 7H[+ [$U@YasL@Wt&c3 GU!vSR2a}m=Qk 9Uw]B&T $S"9st ‚tu5}gAr7;T,z<+"R2!?I*OR-~TxWVu[tDa8v@hyow.{m}Ϫ{{Wu %neg%p?%AAM?9I~p,8q .p*,>_ſ) saSIBB1IXYp-]?I k:TWi{6۱ wE/!n6zSn~ 7M83pGT mY.h+@v7P<:1."]YVPZ6z[ r| G-7hFMc ިEK a$?3ef;;p17N0)m%:$bB'I,a)}44Z<>UCJHFYLjPS/Yǯz`IicsN}b +-If@ Ur%lX_I}3TpsAQ}O\, [l$+)L-vq2`8Q.AzB'Kx4hUd'h^wdea_WFHq&58V"&N:cvË>R?~:sKjb]ZXUI%O.;GRu;jT.@~!  Ғ`\y eN7!(7 wIK F)jnUG.$& $UîgxhzOn4ge%Zg$ls{#]m`bZY{]qdgm _xX܂cUT VWWU+NFI <25,D)+y20v=PJzkXpLc0kpsJuOwcz%ɒt؟mrmpEu\Hi|u0KU is ow6 UzqT/q\q3G?bۄkя`KEc*kp{TX)QA=,!>p` bJL &2`H-`Kgv+30֤xvdU8d/˾-FT]Ѻ7vqtLe:C 3pRz!m!ޔuA\z`rn8m]ouYfb-z{ a*2: RD~FlC?<ʲ2Yp(*JU {>{tFv*udwf| o.|{Wnon`\~QBCV6U,j"F5&C ? ~wjĢ{QQe%:$Q`}wY4E8ͤ}\"yJKG^ +! fGŠA&$a;TɳEI~>Hm^ܷ R)Gp@=@HVh}~Xƥ# (v,޸2?:WBIvNcPQKBA16 2P+!k u _Zs 3G {|="ZFļ j;ǭ!A|G 5` HUn\\Re>}O!-:O,<FKviK'" # l{Wtr`sN[@B!6G13;HXkK}0X+8ȿAdFs{PZ)1:h: GQNY_Jdiuopt%w_um^GRK)ݳ֭~Ϥs^ l9$w6_0D(@M؞={Řz}|\:ty=Yn{<=uO[pҨy9g4U~\Erw7f=- Y'|K'*>-/2b8(E!Tt`V]i ;noC n nMnr kzk[5 dzH<;K.0 {o,cOB`TsZCks1i r >4@Nj>Ӷ5!>>!D")6>MT$gi]=|ϕyD.^?JNQ/yUX\v\kagnu[{Q(e"~nzSawRYUvUwU]|yUƒVVX+0]'eqlw-2gPYE O]I7"H7XLISX]XfPi2tu/ՂÓ ICu+77iQ&f-tyvFi|V +>##$)'*0' ~jNVC *3e;%{Npaq<:|A ͥ.ml+mAY D!B<oX *u~K:4O>QIh;c]>}qMFT5^;Ƅ_4'Zy]f96Rjx<&ˢʼnXsobU'N@KΒFLgP#mT]XdR[KZIWI+TIPqHjN{BN5 P.!3TZY`ee;iriTuh=ep.db%_"3]v#Ze&W*R0*Jn8; Cu&1Q Xcay`BcX:Am=oGV%͑eqg+dwjbyq&p4]?Gw*pKRMquO7Q?TMX\)_`2,_sZ T #2Lz3DtCs>tRZ;\`W0wŎ-_65nԗy~̖YƂLsbSF;4B`0X@-*>'C#grn K L8(J/5?8<4N1*A2~+=&H~ r#{N_%~r/bR2P!G=%TE*WQO3D?{LHSlOLX#UlYZfVaOiGr?F{:87p=HPYpV\ؤ 5G ZU >] 4uK]Ne6x FYӋzmfdVa^I!^n_Qclz 0=+ :1yfr (p"qcuxcyvRqLj c`]Zr[I_Of5mnYr$sph ]#QzEI<t6"%4C4;4/1.*8Pq }>ysutpM1k&)e`w\]Z'ZZ%m[LZ -#W-[N ?( }bAJMU61& YWw#'>5<$TJ6VC{]Pofv[Zpdy|mu w3ʂyu}K{%w|)Ӝ$=?R$1{FPk&t7ZF|QE VRVP.H> 6T2~149{M?tBB>ڗ7.R&s gZ&! N(B3:'A7|N:YCaQe`;gptgphlks nXtR  Qz0B};S c#ts*/2Ms7O?{L=d^CrwЕlYfj>/>6H@?NR W`Alv2|co\Woiv&CJD_}V3^)/- <frHsTR:IY&l]`7d>iifpyxp;J Ƈu`_@A G ] y8Yt> (t>XvYjS@:1$N/Gpa$zTybE-Bny]ZhXaIR<%_0T$] ɟ|(( E2_%4<ABFL"VsdX2wΌN~gphg cZc!_eThmr% zSX4k| gVRRg?h'42F-,3, .%7GZZnl]7 0]K#ۑq3'CKUUhb~6\.hYJhp "t "Z2hq>+mV hWu_OFECC.EHK@O -fT7\=hu<zd4\a&7ji{9.;EO[kI4i]s.F$bHY0N@ϾVJQnO^Q$!RS>W^htv0O(É1t|vj u@Nx 3y;^Eyrֿ2"ETQzۣȤS0%C`  \sm"f9sZRN;n Aˋ/W s9h_ YSO4JրvGU:D+=1@nFSydEQԏ~@14w-nz-e3Z?YM?X](Y'q,=QblAm.Ir+Cspdm#OklpFex'e7 ǔ+#NO>s }ߗn`TL$I}I}L OhQ8OTJg,B;:L4D]V3l8zEXGqX8Ȫ1DTR &&% 6k?B$?*5q7I(a{ZZ2>n);|N d<~қ4[΍&y1u2aw'+}A0״?@)1u7 &ٌ\0=IYg؄"r2-M L&X4ZDY3wqyX\t.^o4Kd\<1,o*N% ȕ;8(]b ԇ]c%Lwaiph|V/gޙPE^"}zN!jW@+HbD֬#U"+Kc+ xl"ik[jUJ4!Pjƛ5xdeEWQ{-<'z43Cqo/``vf|wau6dt5q߁bky`x-R~@+1.X \'2e8c~W  ">=Ue@jIvZxnaV4 8z wKG$}NCH>!Fp* 8SqxIg\eok#yM5JÚCP  '$+)3b=F VLa{X:@"#?*Xtoh"W KTM !b q GL3I0]vNk_soNtBr;m7~h52f'5gr6l:~uD\SSiÅf Gb3Dž8iR,rd)n5=ss8r֙8q$qRtyڂij)^,F %iD_;Tt׻ޅ_ݴȤ4ϵyc0V:&W8u+CHGCb|%>zr9y6,xU7}w9Jy<y=3:k1ٱr"= ZLȜ<BgN0vYiw~ao[_bVQ REzMD=I9F,:EU<I=gR2<_5nM)SŚh]q/^t"{]UG&4zx$W]K:K ^3[3${ds]|@&v۰r S+6 NsJ9<> A.85=O-=5i8~K2H4,-(o'q(U+3 //,F$TxsLm\nKA<'/>$cm& r0;$DJ'K2FIB=U1*lW&יd]8,?Yrw RC ?Afiaf+z<:B _Npu n(^ TG/->GIdQmUVXZqa(l$}Re-۱HE 55{G)BR7W9J9XN`VExVU}BV9 [rdzzs#_E,n Ly%^:5P~du  φ0Ar!X13F[`{Js|ݬpU&3x4Hzv z   ]335E8aPTT9RPQ~dPjuTS\09phv| ݹtXX?Zk.u[ FS~vr[=i;RcTu`oZ_D]AZR%E=3t7kCPu~giBK)<;%'{e4,v95r'[lK;AQ;B61^s+##K_}rf[Q.iSh?O@PIO^YSgYj`0j$etgede\leKj1s)rrkҬV~~qQki[k~ppv..ޙeK:)}re Xp)K8B?D?o>BE5iNa&`xiMU:3>KI !7M#c7zN"g~!{BBme>fLκ_}n"]d/~ } b*5f q0̢bQiYªoIWs0BT4 ͚2lIHXR]JpA@'EOӞ]encPˣL7i:*/192N0 \-_)9X(E+)1{;iGGR\,sEcUf;hu$iRkTq zTp#JaXИ81N[q~yzy=z9Vj,lp avV2 mH_3`Nw[7#~#~Ѩ\I3۟([}6ukPpP#9+oA%'\NI69B+J5/ Þ Q lY(LxBlS< 5 n- /$AQX,_Xhvoԟs#xa}1(Ou9`HDLjTtXg8 (@XC^7x.Ҩh-xWsψ8fЫtbN(M0ozFq,oXqw;%~UqS}m|(~9THܕ!U`b_q4З&ޮ BEU"Q.=DOa=:qT{|t'g XK'}AZ: 5L1g',7$}Jr/^ bqY.%j.Wqaz:RsF:-z>q>s:EL9W;a>KmA{A0A? ?AFPv0]Dll;Tz`D1ku5܅uxLfSj/@/9 "pFϼث}:;~{x|q߉g[PTOUND<I9Sr<[DB)Q)a_,luyuj'\]/K:+9T% 4Ib|~ouUW'0;"wpkP2gvV@VR#7-#slg~a` dk!rxU{~Xxc3o`O3>0('-:J(]sq҅{z/{{&{9wVo.cZBUN_GQ$;Ig3g417QD U[ifj|"h"ޜ ,ǻ!ope{Kd  ^)75H hD<oWei7 /?#,28?wYJ;Ykm3o(: 3cFXhci[|pߦPc@@2!"U8uGPBThTRgPSNzMKG?V$3@  & AYakhs]rhgGkU ?\ *Obɢ>yz|rUlj/m4r wF{:{ylu2+ j@YSFb 3Pi} ]h_kP5 >w*L.. G^.vlN|&JpAmt!UG:Q]Lm5k5|{^_NB'$:0Os| }$^B1CNjO]> (4Ǫ…|Sqγ[AH7G*F!^ޏ N}z]`~jG'jku rH-2ET-]4 a("`><]!]IYzV.WZh0a~hU 1o?.rSqylϞcXM FBELYeg7u|%fSmpCFK4$}l{#}ʎNoUTbrjrst1Sy`|+&xFfp,zJ6XktOR-F! c#U֭xf$ CiRCjOgR u#o:ZJRRSPHLJJ۩K@PYpteZms=,! N˖H Y1/ >Ơo^}&;[ykV=!fmiEEOƧj׵IRE5Q״3|Luq7pp olOga\YZ>`bj|6y uZqqwDHp:-9v-"?d3 S-BELo; P6MT4E496+8:L;3=2AGNR,a`tˇ 2lIg vi'&m>siQk^esg~mrlzSgM۾rE""{G`n-Y-vW:w> ]4VʑgGhq0y!u0t}xE!ڒfx,J Q0ns?K&awhPD==A,JcUyi`[kuƀ] /';BC@>-6$+--z"[+|-  3+9^IW}chiVkDj2flc 0bc[QhoKWv3|'oq~9z+}sk'e#*aw`8dkrcw`uweq"dP66N5+bU8sqDp|[}D+Re]9CS$d,x.Qg.oT>MŸ߆o~\iMXXBM9!I0L+%W'hP|֭4Qӫexm8HNwi\PY8G69)/}sisb'_U4aB fQmX_uk}|x~Mz6mTX; g%N:ɞJJtS}VskuS>eP`tP^S>`@Zfcatemlu6x`u\ll^ANZe=ԁ/&U"Y$\)018>-AAABkLFN\ p5LN!(;STo(?MJdW.BEXlC|6& hw{hX(IQ;0@'r01y |p2GDNPdH9# \r24IO]mUxA:̈EyϯzQu#t?x -@IyOѾGZbkt+j$2QvCoPjd]}[fO=S@D=0C:N 5v3 1 0+ ,,d&`&+cd+$"% 1|S@M9X>Z]L\*UIc:*j[ %p"V=^d}fi!XI ;R,82sS\F$1&ؗ }hYjP KIxGl:CTf;GdI/d!e>ba\P}@- " w#5y0 ^0? %(+.c3)=uJvZl}rUNga4lhP/ p1u?5HWN|nRnV`M[Sc Hm'@z=B)}O\d %7irL*̡7w7ByM4\]nv#FEun@$m4hr[FEz[re{q\ Wpr7 GC-.v*&e.X1PJ.7K7(G >ECC#wGTP_t!` #OS  +/,!%  z 3  f  . i(;T}r ,zcK  & <ʒVt tW?-b"y#;D0^ 'txe'Oq_7*TH#4XUel~mfZK(;+<5r% SrN i6}mk>U§)˗/[/}D*WvM r8o\lfwJ[GIs~08M__Xh_%PV6;(T)GV07X$a̫}qicM2P /<CgI <>e j]<9VEp"5`W^ivb}M8|#McxNڻtDɡ?˦uchnR KJ#$ /i4R0(5F1n],r(?$G#$%C%7#Tn:_`, MnSs%~*`g%\9~JЃ2WDv_j c`eWHgpMkCsj:2ߎ/V07>EYqvkuwKO 2F#:RPL'`lizkVha$[&AX1ZXabOjp4'n% O/bw4J|2'22Rsi\o*O.3XK(1Ԙ ə[n &ea1<65G2c,J[& w6iN`O4]t ,N"_y -Gg>3 Oe_+XjAnxi?[E_*(b gR  {ZwנDxfG(} |Hǽ%ب xou^zOsEhy?^@ULGHTN9f>&{#)ɰZϯWїe'miكq~^"|L2x>r4k$2]d%6]@YN@XG^5Zn^~di1liZ`O8eBZ^ 0z;0R4dMqnqvnlgd^]UDXNUHJVG]EmkAw{:2.ض#s n a^}* /).i*A&#*# '-,6>=F?L>QU+z\CXf**[t9E}]er:όr~}\20i FUITt6v5F6ޭ $ _*>ΣR؟dKr z֣|x=obrU@H{?=_k5|/7*%ȿGG !V@(`Y~4Nj[ЄqȥZ|Q \$~.g>*QH<aL*_H c=N ,\G Uh=r!KDk5;C)IIC;nj3 ,s& ?#a'!h, F1p7,Bq:Qeq  M}#o%(9'M{ bF)z]i&}8v#\k'b*%[Sj7K[$B>9{D2L,/19HZqro7ixi2^zY9YDŽz_q h] q{K,x;{/1{%vtpi"da b{ f P!U>[`Jc+aY|YNpu@f2 ](Sp"J#C)?5@ DERSQ\_jahgt)n4q@{s0wL~iw@#͢uջt@u,5&CEZIs7'\ 4$jE3g?N$EaׂkL~l~TfYOI7B%T=l$Jʫr b[ذ)XȱR6ˡEm >D"(k)'& ) t:mGOpPhMzF; I?"^9,#c7":q"C $WQ(a0r3<o@I Vq`d/b{V}AS{%'eJGku~yg]C,WMuyٝo|֞eU\t'rd!4U:wG<'<:24). )#D$` FZO"%Р7Pugq `I`hc }hbrl n(l3i:c9g^a1"Zh X ^XqKZR[\ZȌTsyH]o5L?}3(- y  2v -cvoQ!?%*47J@]mxа|F{yJoJacPv>Ȥ0..P8ݧơK6X*7W@ "c h%uL)I-4 n>JnXdl Qoju_NQK;M '(|Y 1m4'B"Jlz ab*,@# 7$S.'I< rM3`<,[rGiYԐE{>.g(0@?yxMv+SxQ|>LlD:<46'1/.%x*.l -b*I\n'Z#^!f"Wr&r/<>L]תmx~p"~wm0 aX(5VDMM<_eHuH2 L/!S [{ZdH(lSsHzфdDjVh'H*)*1)B$T((j*w" 1%=M!a0vˮh#N5}Ϟf!QY;R%2ʚ Т7'\,ZP-]ƾ =57/E7yWMmU{~glJVi?'[p )!9 $zf5^H\Xmcwygj}Q[wSh^QJPS2X]Vo`^2WKM<p)\5aHi6iN&F]O /i Dwj[Ez+rc\M’C9E'$5W~@frgC^aVOQ:InCR%=7{-4w3y_5;ESR̙4anRex}|$x!l.X>( : VC zvI֯lN !)GLmU[Mv)Al8g gjz$qUw |Qr~}g7~A'Ո" ]ţi,L@2;X?s^!mhC%ul0>oM],jt)wz3zv%ndZjQsJ oFD9cD5Dq!KD6+C"MBAAbE?rt>;|^@(}~FuQggYbTIw@c-[ؾ x8F "y:Y5Ww#oY$,<O-O?D_VmbA{d^lLQ~><(C2}%^idAȅw lYfddgm5)uz&d|x0mU;\GqP0]<}j  bjS;1IsHgbԞ|"6rZX2>$ H~cLIpq0 z$d5G*oV!3q&/])N6EnBtD%JRWb\YUwLs>q+/rzt[u. s5`oQ[gD\ O 1Af4?*#B !)"6$(H &\%r-$ц" {!̟&}/=XnPTddD9Ux Rٟs5BwN+Ƙ>C h*@ZZp#nX=OO/u1^C \wn1nBiTliikoy7suvMvYv3#ax.=|0Z(@ܜN %ue&=&[ aMw2::Z1B]L\P8-QOpI~ ?L2l$pH3 K8PD-[3 GܱV\UZ+PrAe/XjH 4M*]Or[-8_.fB(A{ |Iwa<'N,0>>2+v)Ys,:18y>dBADCWBBDKU odu2k'B0@^wǡԚ(ޟ қz~ɆkY+I q "Pc~ " 0jI;@><91F+x(*lC3Ag %S#g%9}y':*.26t?I S[AL`FhaU`.]cY'BV[/UzWx]h+v^{!jjm\԰QxWH? =7/\(($%n ,R9-Jo8-`;>v?E>;z:<}*B5K.V@c.Soy`Bk~Xnߨ[mOfw9b#!C2)3)ܥt?UtajCc|)I/WEWq_}qtn2Ü3)zgSB4 K*]<"rfZ 5T= {E;6 ޒT!~cyuLNq=k}Bam%S$a@V_*aNeFT?s82/>V0c5oI?[ME_, r1;n-7g%pzafWQQ> L-GC?<:;J@BIsWh{;|!-h!0]'705S,)2C F gdF79>` {cضEh kAe!D73Gm.PQLhCZ&x8=.BVp'&nc$΃%B*[2ıqZm?a=8:3=.R*(&/$% ͺֵe+/2)80a;KYCj4mLktRww->3OѦ^jsy~}Yh[dJi4k*EoZmhl]g XmC)+m;JxX&tc]!k:o$sk%vSz:## [n." #/d75:X6E/%,ax&a.kMM6;X>-Gr# T9cv 0 ßۍK^!tvlQRg-Ta ZhPB2` ' okXCH=t9U!bs} cI1 $˾*ϳM"aL44aSs7I¬NxRnhhQfBffAfd2@ab&]JYnVBjWh[:dp")Y*͸Gd|/b^{,'.`k/~thm;YjQiDZihaf{#b\nLX U+W/6],h#JyrE1!@5;^%L9'PVlR@*ЫhF)[*C'?X+Be.i1ef6Z<eJE7kM# T kWViO;dt=#Uʾ .+i fUt~r+BQ#c;t>63Sn;t ۞h}E r!35zG݉Vpxtbji_2l|VkMvgNDb9^/Z%YX'XKX "&VJ, R8"LrD&E>M*>Po8L"5A5Q08&>F.gN8$TVUٵQKD$>q;;y?tFsNz8U܆XӘW~QsG59N(/Q@j]Ek߲L~WP^z;tmb*WmKgAp;u|9nZ o@XQ>b#\?, Qh"F=Zz u_22H`3$B"ռPfYT>w~  ?9FP8c9n6rFoיfI\QQ~1IwCo#Ad@V@yEl?2; q5,"C</(&H2d?HMKG϶9TB%' ^)JpK&|{ioQ8c7UXGZ:/#)N&*O"12>-{Orb!\tD$.|q p89pXu]I7(H  Dh RiK* +'>>{=wD@,wFxQuz"bzux{rAai]_QPfF>;D?>E<3Q^`lތwmՆʌܲg#+9çi)9O{v',> #|J^S̐` U{z}=Rw[j{w8r95k&re8G"S?[%P`ɞKdԡiPp%|{"( dCEI/aD R LW<IQA(`*wU]~=e wKwb0va826!r;(!_1#;CIK,IGBk8,!aq ԅzsq3sPwjx{A~ڢN2A}zs@~kFfcy^]W)NA3}$ e 0Ko7KAd%NB:) KVK+ q}?r(EdBRvW?=f'm8m*h6G_lVOL0dM˸ Q7V&Z3]^w]NkZUd[WdcUhUr6[ՀEf7vDjgyXMJ"Jȗ<)j51$&c :a.r+U}I"^hՅ|la| ;Fx)}-+5)|R ~`s:޽Hl}{X)At_I4 q5e%H!, /B1 1t3M:7=F2$Qx5[@ c;`g,gJbYٔOC:2-g*[& ?i+B#IR"XVvKd:'W%L]C=:.<`Kqz_KD9'*2.ݛhl4;z k\g7OwD:\>%<;=@B^CAorBIWibL̺\*mGLM3 ֧C @ѭC44/+Dy ` |08-E*3 ԲtT-Ǎ,ALzSlhtdXqKx@{6x,0sn l}e(` _9`_`am_ZPQy%C13y8q"E7$.G mRp^ZZ[vg;ypjTimx*DS#D%E==&P9^'9)?/H:UrJa`l|Et~vrs kv`}eTHF@:;97:v;;95S6/9(A"ϋyh$t[-S&9ORDW~Ob7WqS[݁[YZV}SݤTǡW,|_litZŊ qۀsyrm[kk,Snq=t dtqsoojCea+adOlxp4&5# 0~&rg[fhYxMtD@21CPLx[Rn nf z ָϰ ި_ <|§I% к>9S(Q -?<Od]3 gn^!r#uyx4NIU1|`F*.067.'+N lYXH3QO[ovњ&DaUn#y;ĭSm .BukoSc^$>Z.:VםPv"HTD<-σC{uGqoj#ikhs #mXU<3%h0.I znHe]^W#UPBG=K2'h% |8t*eIQ;mVPr^hfaE`Ő\RYWYY_w^he!sV}MLDžYF DEG{sI=qIf0HH^TFXEVGWMZXp^fAawgbVzav^A[jXWZ˦al zP[jžèiH8nZ`jqaJ%iJ>tȟ^t( k'@(=$ؓ g&Ç+muMkADbOx\[Z`©njSNx(Hա6EljvMv˼O ywu# ݘ{)8+7J\aoxwg N4IIRV@YRBy,!##D(A tj^XIX3$B,6 {6BO[e:jdhlp'xj\5e>`rAZ=V5U*BUfVnkUQrIf<+[1#o%Z' *a0;8LaVuxg:zzvloavYTU1SERPKB²96 %BleZFH)O;]3_28bElV;Gj|in\L> 4.-vx)=y}&>rr#Hn5:m5"no> ojnj}heL` -]]/cHDHmW{YiՌwƂГ8ڜ#*:YOlL]PdIH]B=:51p.-0z:I_ySÖJnB !@ж&vQ7H ə<= U2O{&kCJaK=xB.QqWTkx},wŨqQkii)mvzP-ٲyXm*V0Pi w-Nj9RC|MwfWrcZnsj g} g?k(v1n)71[4a4"2 0/\1&4`|8;:6*7;v/*gh%Ww%G h4^: ?l  pGE k ?ʑSsciid)b*sa`#^u+[VRܥ0R uVȢa`Wr8 ,(sG_^)G 2B  "xpNp%^loM;a(@ ^Iµ8}[I xr dakZ UkDVY^b|edb ]UAL>&\D%+=/937.;7F8VU7 k~4Ɂ.&R%~~l ])OPM5kE~>:D/yHU"[JFKyMiP!TWZ \JZ`V2KOL F e;yI2ˉ*n&"&@(٫+H/q2b2,'0*+$`N"Si,4=lH(Wk3j>qGrNCR~TU_UW\Keo4 |ŵLJ`(F.1dЕˍ^Ĉ=qEܽSmo&,7?@Cs2Apj<e2[e8(h#ngt)z sw0 .`#p74?mF=IyKRM'RYn"eטrnfLQQ>.s  XVQ2K.n y[%Z#N >+O;d3 bߊ߃u} ws* sPy9L'5,,& u's ׫ybzрtn;qYnCi,b,YnNC<:M45}(4;7h-=4DIK)lHr>|W/mQocl]:\]Q`Tce%gg=Jhi n,u& CnM$8̢R[ps5۬֟ݕΕ?]ܲ< >%ʦ031ˉ\p@z zr-TS9|2@ɴA>76.b0&)3- p`$N((y 7*)b/&E!Z+o= xg2>dAa6ARRjz.M}HqJ^IƤ2R lqSZr`;61adO3(ľ21?Td&_WWs E@?%&F/L%<g R*e5uq?DC?1;u*k[`~X1`Bxh#|Y^,K2;73+1=6D :MfWwbbYMGIHRy[[Ŀ`<_2XeK<~+i,CSU'4i1 K:)A8CIIQ[]CnNlJ>3i%x i~wr}S/o T:C#pL+Mg2 y#vY+}z.,`%˙΢ p<Ȧ=oqRoW5l^La1k&-˘,,\!vUg5ZPFIMMDcAAvZ>h;g^6V91BN+E8%< b3+Q'|(-R0(>m:Q6 gn~Ǫkmr `ݝWQGNKIVFaC@{@qCvKpWqfhvׅaeF [xau/nkl/Ks}ÁxzMmxtz ~ܰг XGC< Kw6tIYU:Z6Y{[TK|NHEe FuIOз'W4]Kkb de/`e5g%mxY/; ITȷ!!ѱbuLE Ej-Y7sZj:ޜۖ2Vz rlkK pqx]]{M3,2^,+ 5"[& #1BRQE`PPlwĄ ˥#.9AF.G'FVDDaHն#Oj/ZChhjxY9MFBy?=9M9l4.1/J2 :`Gy YJojن ů+dKL,{ /\B#JAW'fOvo×cUP| y7I;Yty+ Tث.<Whw!u}S9qe^[[\pZ:W2P IuA%$<:X"`>&MF'P$u[b3dK]Nm83iqo790ϭO~(=jyJ<Sn@k@mU-@ij/,"ji@] Ыj  6!2[(fc؉ X swc֒> sA]G2LC#iX7e%1>WJ )V`l%zQ3U@:JQRNf(E*8.8);^6)[$&:i pW#F`fMQ$[Pff'$3>ԛGcLմLFlg<.b0 hK{oƻJ\il )%q= UkښU P1#)|?Z_N3SM b>' ޼}i/.}D|lGעG6@@ea"ZS B̤MFC/ȥA?$d|c1 E[o#jSɓovU6ŗIE|-:$;>~ z @c"&i$. 2~D.hSBvDrMhdTWj3tHa 7&Cno1a RW۔PKK v GmAj8l~,o\tT ZɷKB{ǁ6q̾bǪ)WldO{ KfIIVH;LJH-GF{FBnH=0K7IM2 N/M"1M6EP?VtKbX5tmck#p oZkI3d(\NU~PA%OeQ^UF[`)egPfvdb/a>NcHir s# -M$-1^/ܠJ'[ Nĉ@zxzof_![,[V:'^L,bbe}Egd]QrAQ|/ x  Nv?x7Ob?==9׍Czu.Su 2x|?7d |now_L9O)2Q!Z/^p;E&N%W+ar1n7~?Ƒ?JdXi|H`R y)e[e:;Nge~HhtdQn] 'P_G,D[=HLK`P4U=[LZeZmVpP,nHeAYm<K9>7h5*51?2G2!-8%CP7 ^^j(tp~|w*ue?{!w.\@rwUl[;Ed|%\XU* sM:eC7*HQG '+ ( eAq"*3HN\o~oi-}|!}rzl{_jҀ&jk8Zlm+o rqwPLy| 8~=(YR'p\ n ; F # @ "k 4 H[m*By@;7~wCmjaEV7M" H6F Gݗ)IđJJɀG\xPBq;m6k)4kT6l=|lINjFY:eni\~wQ؀D΃7P,w#j^T\N M!Q9 Ywa$hm+ woqnwk&5hgh*8m5:sH3zT](/c{ fpg^iGm-t2~ɉܖ Bsͺ]aPM  R]7 MK0`00oEy\V}b~ hg}]f{<^{\Q~A0B2<$iB®ɷ @IpJ J4|'1Jg7C7b3,k#cte;_^K$;$0+Z-5` AlNZ[gr|AS{̴0e(~hgrbYV4MbINH0NJ~~TLmM?a%MW~JOEsHM@@:76/4)25%7&D;,z>6?C> Q8\g/@d#lf9c [RnJEFr0L Xqh{%JHD&IZFGI5?*`9D_IEq:'QP?Gsu8,D(δS%0oۼ$?Eh Zw$>6BHH$C2=ת6ơ22Ε7J@RKVɁ`~gA~5l^noZquv}Їc(ɝ<83j&mULT@//)#<-e!a\&0+5.O/P0Җ2ќ7{G?bKθq[mо0ܑ)=>?: C#K99 WLeZUucOhhYgLefKjAr[rd6}YSRLW_nKjct}|wCO&$ "D,ٸ35U4\/=*$$F!5, q!Z8%G)9->1u0-_0.C-0{'4 7lU9r; >y DI FO E^ _q cYo4Kڮ?z9eo!|Wfpx^hV*eMcCb 8`H, \z!XT4J+>`_4,&\% Z&A((,%:AßAxi_'7XRPNIxnDx>/9 5$w3g35@:JA|cJYRX1ZKHYbTtMP~FgXAMx`?jA YKIFT3bA#r݀" F>u@q`þ2`#](5vٰA"$ YdʜYN jz-@r=lNiaiwiyhf1fratdZQ0KH /@:8&8'i;OR?>@tC{3E+GE"' B$M<"'5>.G)?' ).%-6=}D(WHL5HAE*J@ Oy:O 5J1C2;55<3E=5O<YHb#Xjhfrwzʅٓ13N%Ӫ!ܳ?Zn}EևndԭDỵR[_=߿t$33\u  I t&X.g*8S=C"NWr\ ]L}X%O,A%.2C).#~;A (K=qR0Qs4ɷJБ{DkJxXJH;n2Z,Ic(?=5$63.5 Z8r;C={)ON2j?h_=ʹSKJ/'h9I*+S?W.B6K,W!ewv'+ $+#0rn0h,=&@ MȬ(6(GuW`eJAq${}pژ]%]7ҷ1H=}VT_ah_$m p[gsx׀b~gnjT"E'8-S"vk\ AtUyV¤}=C/eMxO{y{pUhR-h͟;*ܑ`wwjOw^dUKHM.PG@ <96/#:c5RxCh)*r=* L|TCVRT(O3yIp_F~l1FjIjCPkX;ka:k8iknemrqsxuxx-U?ϩxBag b|*Dyк 5Wd*=!]RBg6)zT- ~ow_gRFH6DPGFKS&\d j)q0x,ƕύbD>ir h e}M,I9d2}tj$aG^Z4#W>%Y& `w(im+u/j$47J9T6h.~ ahWуӈH?!n${ƫh^~N4$ J.4]|<jFtK{]JB1#6r& k?]a @b#!))27=ˠKÎg\~%n*rkiIc^^ZSɚIF;M-*Ksz1uuqrZpnmkHf^SG;O0( #OW! B[! -g672'$ݲuٜc&>܈_||Cl6x.YnE~c82V."*J?J /7v35]<^FP Y^_z[_T˓LՉFD%}Hx"Qrse_ mjqdXe[DQBIC~BFe|O[iV 8x.%lT0m\6`6/v#f>i/)05{ .Ut15`Qw[d!0#W:??>ʗI>K+@gEO![}:hutVk|_aU~@LWyFDqkE iG8cL+FQ8JEHHS;I@bMsRXd\C^^[\$ZqW/VWXZ&`egM n ;s".;w&wI#u"r#n%Lk&pk)[o,'w19ˎCtOT\jimt'|[~zupollNlppnyȄy~ݛJRhC#J97Qieҡ Ȩ^wǤ͓$nֲ3j<VF%;41=1A2 1W/e+#&b-"|9!gF#R+\S6 cDdSaamZ:jWPZmPEi=;`3R /C-3.$0 3?4 3R/*$bt({AI? YWk^WbarOlcԺh|6s2dSDx7.QD(q%a$sz#r1!cX 1W9+'H7U"'k~j\lGzqohBg jqiX{n#)’$-/#,{%zV|-&CY!b+64;RE=Ӏ:4,N$Kɷ% !*4js@AS:B2̊Zzu` slu;z"ʁc0}1BXp^TrcvVJȾB3>'=HR>t??N>iy ;q6h2!_.T|.Ju1QB7*=1@#<I?QqGWURYw^`WiQDqItAkq;j :_<>UDL3PXH^IlQz]nqVԿb8mK%8*J Yo 6frŞݱG17[_sggL az]Y%V+nPH@V 7{1!-..e9m3A:bFCfFI,BL:SK1DJ(96  -, 9{W  ,KE@'P/(.5:7^C6#*3$/W+{(r&# %GX"~"lTk2; ^؇uhb2b%|ee?jwYnjgTpXoqMm'FiCTgC`gcFjIqK{KaGJ@87+2!o } vt0 n ul umW p t` wxovqkW,e;aLa^eSmn*yP{SeY1zrةwlhNzhԘIlB}sv|ՎچۖABu.˟<IjL,|#u&}+*?#9MCڴcZS"zoא~0fy}wy|S.a,?BMW{z[rZjzSc J _0@8\B8Z4}Z4 Z:XCvV7NR4YO"b0LgKTiO}g+X0cce]hvXTWQZgPNOKE;"-E93@OHTApqE9 "`7jNhD &ԛ3CCsUd,p utC-ncUH>6u20o0$.+(1|o7=oEMHVd^Y debӸZmNC?/Xx{.=y|*nc\vY[\`fclg}q t}SvwzH /Ѿĵnکܷ ht}l|cg_I9e1caF]PmWfMAF3%  z:N :$d SwFw;v2u-t,uuP0x(7?ÉzH5OKRQ-LŻFCǷ8e,' d,z* jk`YVYUUT)S?NEˬ:j0.B"6tm7h<&-vd9TFtD<.s5Gp1G=/-~`,*(Y'!'44+E2AX<lGJaYiuxR\{ !W0/65..|"Ęm>ư+m%q<`,+rSQ'Z:mLE[-dRDh e2_˴VOLhNElVRc̚tن7ywͧk0at\@[`^eklty||ytK~nshHWd4.aѯ^p\6YDSK~LA'4'Ձ} z gxMx{#u-Ռ6Z{<Q?G?ڶ[=ɷ:I9{:R>eDLHqV`Wjs|džjzo+ǎЈ.7/5cL^q1lau\T{~lAXFAkz,gʳW  5@R# D**15`4?@2KF(,G#?A*4"[  #{n +S=֗c}#y0wzgVoŵZFF{xsX|oq.lkgNj`VlW:p8LGt?7wL3x8)}x"x x #{(08M?.B˩cBT>7/t'=w) ^G3%e> >! )m3=EMVS`m Õ2$DL=R \axc7cv#b#:aA aa#bQ:cb) _r(\[14U08NE<H<E:(Fx5uJ0R-[:-dj0l6n>`lMGcMUOCMa/(E@@9s+Jy3m3%/8Oz?s+Eq0Kt}S{_"p7*/J%~vqnn"oT~ppq:eq;[0pCQnXFkl,:ql;-0o u} t6Bݦf)1J]52G*<! ŽJ38֜Ҳ~>K6Oi$+/5GAE_Ot^irpjp?gBiV4>l!Pu_8b#&kiMKIr}ޘ8Rّ&! 7  6 e}Oǐ3Ltygts*w©h|ԝށ~[ɇG2dׂ.Ăɼ<ȓ:R"oW~+@zq+^eL$Zg OC<7*8$0(H3+c,/53[>KX ]o ͘/ؖ)_߀sצh(a^t`ld*jzosztGvtxu/uwwh}{pBpsx%E|kyyt{^'e"B9{ tm%ip/9iH8clArL#{Yڃ%hCv$01Ӑ}օՉkwjbQ1Kȃ3c,߄ < f|sf%7Y.K6J@<8B6IC8S>Sa[Hs%Sهy]e1kwnUnm"ljxiǶi-@i]gCd m^/DV߼LZBw:35g865A<GGWKi{|ġVxHU(n&\z?OJvHr9Ho4MqmU~l_mirqG| yɠ,v|A-AR/PX%]> '_`<~dj't: $KT womk}\L;-S!#OV W !6$x]#4rb! ٚe{a{r"k>ebb c7eJeb+\)Q WCj2v 2oҔ.x_~ NB<:9p8|4/`(xY"t<tr)ux Sv&u/Yr776k<`3>SK:E1 8o%,p%$$ E?r/>SL5VS]@%@b/e>iQofg xC}`#^}<9_XN*C9Ā1/0O6Kg>PkG܇OԅVz\A:aaf 5mvƥ̱e&m47̻.xByucQD=a9=:D<7>`D@ (AAC'G7OI\\kn~~ؓ=29إͬzk`LZY\\bz^hl<nRlg$aYS M.Iz:FyBBKE<]B2:$-9 B%y"Y@9G| yS:zڠ~ulhhVl)r7x|}"z q|eFV3Fg6n(?@' :#Tѓ4qqebaQNDCm;7G9>cpEjKD NKCQ7;(9#ǚ -Ɣ hʕ ,B;H;U`wl-z|>ֵj'w 1eI5 (2(9A0F7S>sAܰ CD&B\?H==ׯ?MDLV)=_vYfinh"#c<&_Y.Lw/\?+r2$h'cdI, o=4Q.eCwu/n%˚ʢXfh|.3v#%"lYW% |E"`Pn43/ٱ/4[S$)[dj6r[~.9wY2-g8S/ç%g$OȔ`w_!-40_50l4(>aR q)\Ia x<34p0f/g!00"K.'*-%59!@1N\ i&^s^.y5z:7w`:roy3ei%ZPHDWC-Cē$EivEyCs @Fn#:i3d?,<]&U1$N$J'UJ-N2W$7c8iq"6Z}v/<%I7 `sa=N";A,9# Xz%?+/e 20,%8'!E(hD!e %aP&g#  bfHmeĶe N)_×|/%W=Wr a_H^ ?hzP`SH oJ[#%**3+~?*N'^''p)/9͕F3R/,\_b"ucbg_OX?Q0L%]KAOYlh zT԰dk t(G0oHI {`5AslgȃWEv^g?}Vt[E5~X)z@v}pkMjI b:[UER[YQSpVBZK\\YqjQLpFq9%,> DϬWY'4ăusMx0 h%07.;m{KHu^Xrb VMsH 4 r V`>t*( i& k [z }-D=N_n%y',8}4ZxUs1:oڅ4lxiogkdk`nB[qTsMCs[H~ogEh F`J=XR'Q2]L&hKqaLwPOx'RsR)jO[\GBLO;;a+,) ~@W X`lE *$NV*aN#x"~&/4%9>e]= )68u*XvSv]8j9^]T % fE(Mu4|- >FC`ESxWC]>>862.,Ɠ-L1U6"/<&@¬AA $>|:7V7R:e @I S.y\=bLpdW,av^X^vLWl= J- 8=7$iUޥ<Гq ˃ ('w@0n:{j$HiYknnhip^oTkndGZ;NB7_/(6#i zl2r  L!'_8K#]6>lvx{#{v,mɇd"p\\eVV==R?'QfS VsZA^> boPfFlg@uV0$+k6 E8Wk* 9Br)/P1<1u0(2l6\T?<L(f\m~pRv9vRc}iJSN>++3?pK!5,6C?|lGzMt{S%EZ bmp|z*Ӈd^7xIrFqY l@9i)Xh1lh" 7hfb\\SnJ=B6<s9.:=BOG-J>JNF[<=c.1Ne\#aQX" MDADw9e5{6=UI- Xhw_sib&%%*,(j&l!['v! !/OMa(":&J%YMTiz8 _)r  f{ n_UzfJT_i nD׾/a.r+ +e'`2/W0V)Ѕ ~zJz{~KApT}Z}y92W~2h((D16lB6.J?x:ʸ8gJR?vDt=: ;<7i>Z?AEEm4KgT`o6 ~x/Ԍ:BFeIBCK7MxORjX]asUkQvR2W]xdq[i£{kƭzjf#ya[W Sj#'R6PEzNNHQ>pO?.H>23("mW, zjqnGqwu'x9Rpٴѹ&u1Tqo~in`)VOvKeH6Z=FRBM=If7D0=*4&\+$7"% 'X)pY*("J"$# 2OeDК}ij8+|u.n(f s^RX0.US?uU.QYdazkTvM7 8~t1}n~Uۇō}2`3ڎ6Oqk TѬM/iCVNfNvp tΜ1qȑSi^΀Tq|NzLzQ{]{Umz;wRmsdxn]jhjbowtסkթ8yؒn[|eh_ZYRUUQQHUM\.G6f@o:uL6%z5;| 8A}^?~JVXgtM<v԰g+z|g{x|(j[_߈[Y XIZ2^abTC`tZ@R]IA=9<2\?4({E93LR9Ra:U(7S 1#L%*@ $0M !|"(,/_98n@G MlRX^/g|Js_ՏAw71Ey _GبF*ey̆xetVD{\LrEgA[P=OM7O@15O).!h*:*+g.!/3)O.1( 9O1<:d@2&W':"DͶyεe  )(,_-U,v!+*+ O.q1u33v/&>4L$P2cZ "jn!/?ivRhj@n~J  ; ' 1.">'xX+k.:3_.9AmLEZhWu`! P4rbP>.):!"DZS Rw@j(E9hGwT-^yith"P>V"P=Vݲ,xdp3QomÌK+6n%e\$W|xT@z$љҥ XN u\(. ;N:a1ry~mMUW݆ă]Eqv}W7A2 25(7#g#%j(n~Y*{*y*{) 3)ɉ+1Рc9ʫCKNDVZYϩtPA$.Xf~vpJLkeY_WQOxFƻS?;?:~>:7FYpP%[~c8h g߄``NT|]Cp+0:_J8 5d".I R? n ?"\$'E-50Y@ mL X`j%ef>2b3cn6iN9qb:2߹Y'GP+՚- ;҈@a̐ m2DR ܿѕ; ~ߦxɖbtbMTOCIfHBҵ>)b>I?+?><X95@3Y3l6 V>HmU,bN _m, uy QzwBs oll!oxsYgx[4~ULTUiX[|^0`bʌfΘ lZs"}t~So@Hޅxt>b PB8*636h3Cu73N=WC_GRgHoBF{y8@77-T$);63>Vp{|U,?0'&W)0,9@U}E&xKI u9KtLwO|TTYZz%ck_r؋uDt|ms`ejPd?a;/a!d joEtw+ywSu(;s(po9pZs"rxpl}4&B/~.8w=?lB^BO>tA 8P50",t* &'~"W) 0r=|NbawS 0u'&3T&,6w1>,Ac'?n*.;>'4.(%w%&Q.)~'++ )I$/@OC#\Dg0r?~= f_!(whVHT6PZ)ťbFbA%M$ {XDrl?,CDlʑ$U3΍qbÞzRi2dP<CvqXGzB`8Bf^yuXeY5QLH(C!=3' W'7$HygWVc5k ndmVha. [9WHVVYVg`QiisO}݅yy@+ŘUXu)"PlE 0*a+f8!lRq=, DI?(<v 5  %  JS)x6_zAqIeILvVHE.@53}'*%'%  X >"(S,qI.-+E*)=+.w1 3 3n/ &g.س;mvs.ch &+b6JAؖLE3Y%NhHz04_# +<'5?NGLPU(ZrFbu 3lpw%J$ ku_W)e~/}|3; ݗÛ֧!o.ŀ݀-pqB;-j n,<= +wqmMf#b`Salsb~bza{L^~xYm;T! PqENO/Tl[6dHm‘s8wvIp,hp^<dUwNqdJQIAL6R#1 Zp1ao6iw>oG=vP}V߆Z;\\\\/^R/`@bjb`_cXPKz 9") -Eu' '/6>6%;>M.A{ADRHPY,e&rX GY=a! vnig{iDm0{rJrxm{sk|i{ gybvZkt RtsIs6A;u;Lv9u:qq=pi@5\B[J A5T;1L%=P ;^ u&!eB. c:qDMv TZaqMjatoBoz"1ҞC-.:qn^(Li=Y3C..$2hn9@#HOVA^h$vjӇ=^['=yHvZ^ ` ] '?\?j]UUmh<wn o& -0;I(cV١bjRnťnGjcZuTRcKQD D?>;(;l85;.C%O\;j1vtb]'՞ X%Oo7t|#|g!QEr[8HeEIl?o6ao=-k$f},b.`#d|um|"E%&c'!(O)f-3<Gy,HS:^)JqfdZjijwf^T;qJyAm:`64R4?F=4=38y187K-8&;?Bm lDaFI\N\gV`Pn&|F226Zszg{:oi8/829n:F:x8F3+c>!^, 8QP A.Of#e)>4=>-HS_n$h#(ܭD(N%TW` F@ ڊ U y:@s+ Dz2}GV]#u S[Yw6| :|gʷ!DӲ!vu~%T<F."T i  "zgVG GNSX ^dl4w<#e}~RitV &7^t8e˷\X)NHHGGD{JcPW]$bcCUc"Ha/^>\N[P^0[lZvlX}R.G(6n~+zLwgt(s't=tihtY@rOlmJeH[HPHFH>(I9J9L;Q@XFVbKlNvO|K _E|J=s4g6-Y'qL$A";>#}9]$=D%D1%O#b[l!foqv2z|C%},S~4~2<AnCA~:@xW0Pn#T`RO "=, YrP$}4oFXXiExc/3v!,4a8Cp8 5:/*R&)%z3(Rl-E41 =MEEHLHtQyTTV# X(Y",\.`1}eU6!jE=[meFmQj[cseYLlKmob=ny/ji#d _[eZ ] f rG`55¶5' HK 'J\MiF0ס-`1 (Q\LAME6- 3E8$}$-FU5i4u>A"YFK )Lf&76KG|yXasgUmPt6fZ}\eOڃ>)mNI~5`}C~.#D>w4ToeZğצ0sr<Lƿ=rLAsg!jGXJ =B[=:l8*4&.:&sZH#|lsf+WE4)&%r B9 U d4S%G+/a0409@s@SzHPFX\*f]bXM=qR*eZ$#)?z )չy &e:PMgzf9{ԘS̔c_:xWf"3 :8*7COS[f2Qq\y~-C5IzpaHQ3@:2('$̊'Ą.]~;HwKo[Jhlak{]G\ϖ] bgvnsvvVrTkbYQ+JFEGaGeJ,NNQ4UWZ?^[Bcm;js/}oxvo&k|zq ?itdabReFkD@s>e|ABGM SWYA-Z=ZXZ)\`+gcn]u^y!\y!s`hc!WWiB ,8?$,H6@@)nsRwwtPuoJh_%XfQJLIpGoeEi_}C^?_8;c5Qg[0ic,k*j,Ei1g95gA|gJ{h3PTiRhPdJ\?-O%3<%&&o5;j](l- xMm}3'(09BLcV*m_egd8!])QB_3&ڶ, )4>j%GhCMYQET6WL[uLami >s}W;n >XY ڊj+Iu?v X#26DFC?Tb ``2;lx&-I"06.r)I  bWxpQmmp{Eu z,~׀9K(+()I *f91<3x \lkƀ}JgyMs mq ig@ ha$3o(y,059D ;ѳ8:/ ;PZ׵uC]z=srvJN}4Wޛn\ Ab = }&DraiT KkH>I=(M0Q6U:V>TkCNI FgR;\61h's 2}7%7~}dtgUnXxJ>762Yv1mx2i4j4o4?v2d|m/L,oi**Ã-3g:݆AgGŏINHRC:/%hxgVG;'l4m13$t2t)S6,k;-@,CA*C';B &?;&!=+(;u+T</ ?1~CG2H/uM*.P!OK}Dns"r+w89}HY iʘvǣnh[fN6'{աxDxzl}ۉVރw*{w sysIw ~!1BSVboVwV!|{͆vyonQgeT``[\]\[ga[Gj[uYVzSi1P;N &NPФU&\b|gӭjɲh(ua|VTH8ԭ;) bAΗ~u "Ph$/ d a/,57yqkdA^VUMvDf<6[3a3V%6,W;s0/@)0CE,(D%@9r/#|fq+Z 'E/ Y478$=9):M*<)gA&H"Q[:ca#jYmlQ haI9YiPpI@Dbz;Ax`?oK><>=F29-3*u+*!z)7T(&9 % %#'tb, 3j)%=D0$G3PX29V,1X#^UqN C7 D,O#7a%-5<@BA;?;B7T3j 0O,z'!I[ *ó0Js2*D K /<(;3gz= FVP,\%fikx/Ј WNKrC_*$e9`.]{G~6k;GúOlJe Ll&(27>JTf[/_^w[W{SvQ=t\S9sX^rapmBm|{Uh-sb\/XgWY_YW{RU QPM"HEEHO2Y5 dpnxv>{{Uw'pg^[WShQRkUԎYY]Sad g.*kWq<{n CІO )IOv}Bxo#b R>* {JP~w]j #@&''4(C*S,a.;m~0t0u-r%kbEkZmT]1R9,T7YZbk2 u~|GxerLk3{b2XPM Cɜ:4e(2P2Yv4<F719ϧ895W.$y5tsPvz( KOą&#F/!~:?yExuoNs Wte_Owg9{Xp~xEJ}JvlxWaj#VXlLD:E1@"?> >= @;6^0')3#?W KX"xg(w=07|= ??e=6 W.gQ;'`/}j|-}c~ ~]#}dwlr ]k !I}2M  _:$+g10&10U.,+.v 4; =G R\vac?a<["S6JŔSC6>ti;V`;Ft<;=r66>?5=73::>60=0;5"9<E6{G3?Sj2J^D1f/j,6j{&Mdf Z L>0%Y0j>6{$@ p&=?9 jh MuC) R'eS""+-EC =Cy]qaUD"{I C q m#I)-55:==S<:Uj:=ERdYzA%<jG%251%E*lTblo y~{WtiC^T0MDHHKPoWl"_G~e+jNnrnw~}c[͐YOԹueT[Hz̨$ @c9֭qc֫5N{z Q"*w7aNANO:z769)=GBֿF˿BJNLN PNS@LWO\ aEe h f`AVHIu:{h+US  =xL-L.}[$ +O5@~LFV%^`^QUtI~:?+G6o\ M< B- {<:k<aA}FYJMTN[EM(KHYGj#G*G0I4)K4HK1H:-B'W9","(^J0_8M?DFE"Bo> : 7J7|8c; =v+?7L?C6<(N?6:U-WR$U:OF = 6t 3_ 5 ; F S>bp`} D͛P7 M,dm5'A:J:.5f.6%2X4W}Kk (lp f1FxZTCmÑ .JaZDZ5Qn)|jYBAKT?p#$#4"  e !$"& #)Z)O:&O J 6Q>K OK"z.O9yBI`NhT5Z`OgGmNrktrwl\aoRtAZ.sn H*K]ZX% ~6ޞQ W+ʜq4ih nmvoBi^J XD}U.V WZ%^&b&d%kd#%Va&k\+V72Q;CL*F>H,PZDXT?\7^]+9Z#&s(+)Z3)>%IRYE\S\ZV,TVS\UuZbFmx_!k:x5[(|??^ Zo-lf,ˏF?quhYd0dX}iSp"yzƊ&ޘi9~U0+Y_#OxclPHdn,`ы~_[ a3:Z6%6l-|3p$248UU<@A@<s5)-F6$Eu 0 + "1&H'Z&'&V"0O9X@F(KnPV ](em/lmI4s`6v5yu2nU.cb*HS'+A'.)1.3 8<oW>t _==:H6P&2/ 192DE74Q|>v_F*oNT-WGUObGԵn=)3,;,'P%'q)e,v.E.p+(#- I>q Ma#Z)Ng3As=L~,H\PTTΔkOF'9}K,yp@cX PNRR[^[hPy#{ī[dT3o`fmIOk P_Ydڱx`dt?ʾRp:)UθŇDq,YI]ujrB[ʑȒXV/e%Fzc)h\%Rg9e!c q$+#Y1o5687,5%1.-1/:5cQ=GFzOegVUYW,QF|:<-"QqthmaMn^^ a yehNj(j 8h do`"\.0W>QIKQCT9Rr+LC9/,'!fit vPx )>1Vl&<./ 8v@IIPmTQUd sR8LCi;35//53<duEcKM;cTcZd^d]"cY^rSgVKRJOD:>); <I?DJORROK&E9?<1:;&<>d>u <7 7.`&"(s& [!xfj ^1 S agy)|7:E(Q\pfoxJ !$ - 5{8Ͱ58V3-%ǢIsstKi  # #/q@PMQwa [q%((g&!OT\d| ~Cz'y*}fPΠ%Իtlwc k-X?XױYfء9@U~P7f,3!j$ ?k 6   z/"DX )7ʅɀ&zar$j-c8O_D$]P]]ZM_aadRccb_^ YWQMKB?G8EC/+F)Ht'K)4Nv-vO3N9L0>XJJ@sH}?H <,L6MSm0]3*j$vM ;݉=Lz+rw?kFflcoW3a(G_5<]6EZ3U3O4J5hE5B42jKX.?'1K$B) ( IP* lM!&rv).d)U 's(6%p1"9k ?3Ay&?u7q+  tGk|(;5LTZedgoIxkӘ 9`"Hiq@g TND UtM0 "Q@./8=@>GCNHV3_iksIx'yk:*\,%es|ĿeP A";٘yJ*uE  ~% UpO` . ¼f/;fId#SJk ˵(k"ߺpiߩD`C8$>@ŬRWȟSv_qr}A!ztxbog_V"L>J.X hhTs>*e/ 9$s ~ # FlM=S:E1;b|uoWgh F`pVI;,- ? }'s*>1)b$d h *; \]g[z](XVeD U/a@:' -:" 9(?;cN`pC{ n.JUzu,!kOTze3@$0 <F#Pn0[b;fBouEw'C }t<~2|'Tw!ph?ca:a}ckx Y ֬mB+aU#& i}r /,d5 %8pA  2% I*"QE$%.$Hi )|4y=ow:FbG6Q2%=1P(3q8EJ@ Hd[Q)W[p,]]\0Y,X'WwZ^&eb lq.u6t~jp=Lh]R lGt.?B:c83_:"=5 BEsHЋIK+I\IJN{ UDs(^j1ict\WYwS7gNG҉=Us1x"m d[1CUP$MGIKF[A ;`5)$.r,).2'5"(8+;0?6ZE;K0>,S<Yf7^i.`#U_ c[< U3?PLJVLW+QhXB`h_o!"s$s{(Sr.Eo5!lM?2jIrjSYm[r_>zo^)XM@ߖ 2Ś^%8$+GK5J@T/C /Tma%lBbw&yƍ? Gf  ~LtvQ/jJk[aaZUy[Si2i` 5LnH}wQ Fމ8P |xNy'w-v1y34ψ4 _43ڪ230طX+Ie"˴`|OT2Tݘy+I(DV̨p^sq{vqk$nksj4{igoc[ ]R~EV6?&9 ~[3t 4 S "Y,k7&@(F5AHV#E~=ݛ2%&mzn ld!\<uXN W(X ?Z N\\ZU-NEC<-3b-> )'Kp'f('j%  cIm E9 D qƽ!ByXd={A#, IS? ^ )K4p @o T)|4:?enIGQxXp^!\eylt}r̗Q43 l݅|u@sw̏S1(Xs% P7DHZl,~bnSG1ܬ_ 0 ׍BegnXd>'CP5ͮ 5yEn4d-D˯?kmߞAb*e#qcښCrbUIKO0t[c%Pۧ`3İjk\Tm|rfY\Kt?)J5 i.,+}$:+--20|32t/2' .&WV v-  ^ @ P J 8uHV'4y|ARwLa8TIX%XDUPoLaIH2yJdOESZTEfY<]|5^ 1]-[*W'T$T;"U TZt `"Ch%n6)PrB- r/;m0dy,W$I; 0*'R#"Y$7$(]+j7-j3-j+3e)"'9( u,~y3t=G3QX[[YQFqFE8?+R3q?,&i*4T > DG]Mf S ZakVw##$}"ܭ @ij-i5aѻ 6e#d&a' &/#y!mb!" %z,)&;,DL.^-q'a;UH i,Z.3V&NI<^ XݾsR|4s` /d{!4C ^G Lα}vY}G7n<b J Bvm]W̽UVK 'EQֽ g4$НG4F%Z|@ms}kXcz=ZCOB\4X|&tm jpjQlOo|ro vsTUr:Bo! k&f)dd)Id)gH)l})Gr~*x,{-{x.jw:-Mo!)Qd!0X(L5 [D??ACI+Q*Yd^dz\b#ocbaazbleaiXinR rQOAs_NpN^jN_M?RJ7CC4;(2*+#+Ka a%0,d32:?8DRGKN!TZ)b)i+pssyof'Z?K;-"jC.M$O*2;sF9S#b:{r^]C>̳^kz4,W4iTv|i Rd|+3:=|GS^ҹiC+t}=(ьݐ:̏$;DŽQa~ó~y+wNy8Dަ6(^0Cc^(5W5= 0rXSRk+ k)E\ƲMH-1H'Wa"P"V,C;xh_VͲDlxwa, rU!2+“49J:M8}54Xn0n[-F./1j?8c@sHwO TUxT6R=OO~N=OaSaXsg^Lxced^TBG$7?()KuU ) 3|ENx4qjGaX:Xn7Oa(@F?3<^:2<&!:H3_)$S @=n|tb+רc[UDR6AT1. O\{bS|ag ,dij^`@ E(9}h*!z'%@.)x6](>!FL QTWGH[`0hct7z_i'T8UJv]p,֟)o$^ކQ6h!sk]*.Qid!`H 4%<HFj*v+c1 w=A?,\&)~r Y >mt vomncqwtv{xwvWuuuktu v/Uwuvg sn\e?YK^]=A/$=)8L Y5 a|h.A$7.3f6 Z:Qi9Os3/;)<9'L1K!050҃.Qe9=_\ whzUubqYnmQm PllibhcYhKC: B(?k-Ia+ o4`pf(Ju Xi J'/,. -(# o`&#b+Y^5z@JZTF^Kg+pw,yeSA!R#$!> jGunl iq |c 7 ze%hHPm':$M` ks < dܢyaU{J"Ok۷.!$o4F+52;m:5E,\ !m HߨK"L@SO?\z_7 "y!Qa)bM#Į^ C΂P!bzh&.t)o+j-gd0]c5V<)PuFyJQF\DNfD]lEmFi1F3aB-Ur;Go0:b"I06)%%`')*71*|'}=#+JA&"*7G5t?PG L{MJD=782|/d0AO/3=6|1:)<H&e=%<'d9)6+5,52-9,,?+%G+O|*V'*Z)ZW(UZ%Le@2 %]J%;V_c{sa a#(eh/9^FqTkbnyu2 w9 t mk4 U_.QSD9-w2.@./V2-4u4S%27y/IX+X'6fO%qO%~|'І+056F5/!&qNu!&bCNi%b/9}B*@MhY%vg IwdAOo]~h۫r2^yY0k,vj+ q`w=#P)j.M3n5rp508'xf"_ B[l7GoŶ<nH]a D!w1 LJ<1ٿe@!l:|""v(ln4hc<YA>N;B_32(d!h @e6 \t O ov  ErCZ}G$$$!\$~-)t.i6]=@RJ%I>UA]D P  E#,P 5 R? GIi5T`[n[}G,h}5tI#WkgD]C Ŵ@.2&B°O [dmu}Pτ@!RHnPٌ0cz vt|[wέ"~ht>@Jզ ѣϣMe<g a; }  V:\W(f)E(}[0v'7-@a.k+$tV 2M%d }6tk Q ru r"}". {9Xy8DwKuOqqXPiN^fJMF9D" Ei =HMT9\ aelPfҲdLa]AZ YcZ(\m_Ta au]ywVKJ>@l0Y"B ɯ@N|yyyzmzwrPk$bWKM*)B37;,? >W91x)]!u˱m'Ș[ӖtCpy *=hQ-%"u8<^'^v/v6;=j=7:^#5W/*Dg&% +&|)3.*A37_:M;s:_97 &7 8O <&B(JX&So\ dk6p-8uy1[]f ]J#U1o?M \j&xZ7ǚR$}qBf#]V5SJOSTuXWwZ\_aa e@ jp dyɌA> Οv@=wF&W|d@#<| (zg=(x#3 :<-;ׯ6P1+1~(ky& [J'M*D-?1>:3A3G+2N/WU`-ZJ,$_d-a 1c6e#>{gBEiJ^l$MnKoEHo<k1e%\QE{:v 1#)rH%4[#eU#q$Tz$Q#, [#*\ "2;tTCII42LpJC*^9"+BnX)k9_t6dЅoֆj42o{,un*NidaA^9E["V0'N^B3!rUӠNue<ط$L L(Dib]DF(024z5a3 -0+ (k'U)7.5;?J$U@`$ijr-zT *4B'#4p^U"j..3D$!z6)7?xS>hx|Ґˤrط4f+(ݶisϹppHO*>0>6 S{'s56BhKTON_JB>:L2q+'N&Fk(D+m.0 21s0/PC/m0s4$!:z) AJ.TH3sN7KRq;Sw=P<tK8D"/>!(9h7n9@|IU}b? nw_~9͂-y2pagΉ2_SX!uSQ`:QSoJW+[]|i^ l\[[VK_O>F5>/`8y-x4-3a-5,;*A%IYbQXIn]Y Qacefj f e- bw ]p TlGG<62z [_iul)݋n\6*p3Zy_q?og/C}5pwb\SF.}u)EǀQII10FZ ?`5v+_"زG&K.¼5;?5A-BlCaD F~I7L'O77]PDHN$ZGkm={e/ԓm|!ŠN;z X","s5SYqe2' Nv|$Υ Nxj`u`Z W|YM(_foxw  y Z 2 ~ .wظl A@4QzSϟL}Qz xuqcldZr[*PAE::-'09&XC\HGiBQ9/.M"Nv H#.\uB 2p\ *1 wj8?_un?ӹm[!@:wscf,SB2N% _  ( 8\| Z7M*h],7WWD ~{M#-/#"3/:2!N > E" @uj\e !)2S=($cI)WP0'f5[vB9J93q5-#' Vc@4~s27'*;OK}bXckr y|ʌ}.F|vk="mUj";3?('cwڷ*_YoWA/v~<8X0޵RDޤZ$΢ 8ϢŠ$ }Ǵ xq±XߒX z~kjwNsoqqqOtr;Brwpen7kg-dVaw_\QYSdKO @01 I89HC?H)һ'F6;+LrD+eVBao6 uHiA^JSTIR?Y4V"c)!~QI^ v  ;tpl  "*24 :tC LU^?f knnkg9ea[WnSRkQhQ1Rv QBP;M2 I>(-F0C9CBDHHKN>KZVE|^'</f.luq+tM8wWy},xZ K8oB~"@(W8H6kYjyDNCSb|wsj?d)a9_^^_@_`c,f5lfs[|BwT̎xߜџ|KHBg u`zw ^DsMm o,r4%H884/*%H|"6mM" am#Xu%%Tp'XS(TUh(X#'\o%_Z$a%b>(jaT.S`6\_@^oJ_MR_V:`!W_R.^JoZX@T 57M*D{#<6 1$..*-g2._:1yA3GG6K7Oo6S?4X 1^-d*Xk(vp' s(r)l)LcD)oV&G!N8|*1Ma5~y^!."!+G -)8Q !$*/{48)86h2˦,T'n)$wz#HdG&P|,1?V5Y0?%eI`Q#VBYZXVTe"QE(P/P8QOC>ROOQE[M$gGq<~y00~""+l}xs?8olloj/u} U l 2_ӟ}BB5ײ'[e1:wBFGcFAa<6_/2 !/--Ҩ--+>'!WO9 r^P V2DTFdbtcTϬox rq@AϮFĸ:J@|$պeC Θ*Ӌ.7U?Cc1A|:{w^0qe$ri|]aDYTQQU\nf r } / r E: 5/e CTνAg; k>2!?,jx4rn:Ll=}f\?k`=@9ZfA`TCOF`LJYKDNLPOkPSL@XE[: ]-\XbES&MmQG?Bg@7|@n CGMT3(Z*_9b?efg!.hXhLg e `XL<S)Q6dH0X)DGfb8UWEU*zBT0hOBd}]w1!p5fZ1NCj:ӵ3Z0.j/n1R3h444N2GO0L-R+V*(6*B+W,--b,|) $k3l LA$y-4:.@wE*JJPgWEa k v Ё IAT8"-.vͅl\(| 4 6 9 ] E z B` a _ k (+3;@ACDCң"D[yE~HgJM@S-ZaFhmqMuKxd{~ӂDĆ̊I`t>h^ZuN$5DnT=z:Z; @vHkQ) \ foxfo ” 4ȲYG \&^Jtnَ-Vbl$h҄0ypf [k UQG>"7>%/U#d($o mf{ZC eX p t"*=\ 9$l'O,w0342G^-H$7c? >4GR"30 E vjiu^]UN:JpGiGJGGFB2=TU5^,Z6$ML?^]J(#GP*{18?F[LR9EY1_\ei$k9kzfx^)SD 5%0/ ,+8 7 _$4M, 4=G$R*^/. k/v.6(a0 K:~ZEhۛ4̫Wii !-* X2j9&@#FF*Lc-Q;,IV&Ym&ZYU.XV VPW[Jai,t8 tfJִ~GQgM4f#xO Yq$q/dn85?*FK3QVt7\ܲPaIeGg.zfZUbZC/PC6* Yt}K,a@y;E8n^%h&,*1=33M1O-s**r' a`'O)r?.E1 4&:h@SDE~Dg#A$U<*S7038D0?.G.P.Y-a`*g8$kkgw_SEi6 (.q% R{$`ŷ0*E,>7k> @ur?4d;KT5ICA0E2,"%*+ .o39 >B7E&)F3,Fo=@F^FGNHV\K^NfPvo(PwtM~Ge>22&ߎ"  zvsnnk*dh5vf @dHFbGP!_mV;[[W#acSfQkPqIStSXv_zuhpDroh{O]P׉Cy7.t')ԙ&&(*+*'xA"@"=%Z3e BCR&)b4rW(+;͢ay~pc4fY-RqBNUMN|QWZUdY]`bgnTv$E xm<weԉ- 5̔#ѝ`BV8B9` @E|B+#3wnig^Ohvjm-npo{0om,kTj>iLik_l>mVlqhbXY*N}-CB7Խ -q$#{ps5T 5-0?? j&i`d7ܵۻԳJT p?eۡAИY0{ d6]B!z{tJj1]7M;\* ]"O/qw:|KC .IZLL KIPHCG$F.E>:Cz9nS^cZR4LEK@N;n8w7.8/< )AnF}KkN NPKDJ<x2( cJ|# *06@;>QA C Dc@DH8 7TK[L0_/" g&'()ł,bx&1o7i:?2g@G hN lLTrWz&YXWYV&VXUXo[ļ_Xcf)e~%bZT,P#C6*V!fw:\ZbZ$*l1h7&>*EkMXW?bo|ݖƓpЏPr-j|x}aqvg o_i+ZfVrfTqiS1osQvNOtLۈ'IE(TCAhAΦA!B$An>R91&;  Nt&N`uiL<9dU({ >. )%+),R.1?6h <rA:FIҒID&<s0|"Bz od[LTPIGPRW]'rdGk!qv1@|u݇"SG əy O /b5)pD`QDst;64861J:?EKRS X _h\r1~,[tѲDLݷr- [^-!\= y[5 "(/I6<@@P gB>dB/@=Z}:58i}78;3@OF!MSpX[=_adcinAu||6ӕN.ـ}z, y)y z({.|b33|7O|;&}@EJNݓP9*P L_D9,1غͤWŗZ&ُpG ~ofxdswnoIlOj gdS^" pV JO;*^^gwq`a|n/T&];0O5/ y)+3 R} ٱ^[݈о)}p^dugYJO)G .@:3I-_%O~\F[(vaa;    9'[ -2R 7BC[^C+?B7q9r@f0~F%6IHuFB_? <><{=ag@iDH+ L PRTWd&D[1^`_<gGo6PwVqYhYVEP. J:C>h;?R: n:_P;<#<,,<V:80&5"16S. ,%* 5u*7E)*V(Bg%>x9 z• Y3/n7 ,w~wQ2w xp}AxIqu;i+`i'XE0Ry9NeBM1JiOOSRYR`N=gH5l@.oM8p0~o+n(l(lI*m, qe/u0{0..z+'5I$"S!~J"t$ 'i)")(%C!cP*wEd6RUR&E/q7v5-}+2 N,$|w0qqi6b[VPT$R,R3Rq:;Sa@R@FQLPSzO3\JO-eP nSuPXzX^|e'z~k{sp0irtj\uN%u5Aro5o ,PmL%k kM>njr x }~e@X L& rC NygMQ/f t*&`)] ^$Ha}j X'40GCSb|Ez8K6NANJgB(Q5H%8TbqbG9xڳ wE͆gcyl2hbZUTVVYYl ]_`/^\X?OD[9.%0#Nd e!r"#?%.(* ,:-F.,')> -e R Z, ycy 7   ] [ B b r&3 84IAL|U\xad hlkrqx5B[O?d <tc|Q` ]ϼa`uC6"N!'^.;W36K899)I:.< @ FMsV[/_?>fjkiId\K~TK8D=qn8(\47( 1f0.6P+x<(A'G&L( Sj-X4]>`I_U[aT%jI\:bQ6g14l.Fp{,t+yY,,,Z*<%EЏt؃ju/gYLAQ8T/j' xSi".O<hJ{]X dhl:pkp_lЖe0d]ӃmU>xNmlJa"IXIRKONOPRPV P[N`KKd}HhUFlEEoYEt3FzG,,GEAIU;L3)ߨM q`ux S x)ys~2o:l)AOj0FgIxeMcP(cSdWi\Gr_Y~bb_xY^Pa_E99-#aF!  78h! - ':CF@Q:\bfqi|xci}D-ܷJ&.mQwōsiiWcp_ob^^)`ac e0h;AlcqKx uI % g*zBȌZɬ G:PcAPv;,.9CKMLVG:|?_6a-^%r =3~~2 M|Ç2nn| s5&,ފ0y33Y0*ʜ-"0ߘX<OyRhph b+r\RMW!R&L*D-<'0b4y2",4%677 4-`p$RU+ `U::@Zq:G{ȗqGr8Syܼ:srnv9l Gk'UkgkSj/f{`VI,:))1 xU V7r8O&b2=eG6MPONJBJ9c/9 'd!'8Q3#E&D)ʛq+p~,5-ӮH.b038>tE)lKPR8SQOv}ML|N 6S6[Bfsg=Lua@^8 h*G9DMR TR{OzJ}>F4B6@ ?ܡ>bi>Q=;A8;3Oc/8+)K*b-3;E!NgU [^>_R_^}^_ b-hgmt|>k}k ΢ zɴE\? {jHp\$9Pg'F)=(6'0$K+"&.!#!"8"# $'%-e&$6%F?!3HZOTV]U(PQVKJD">2855(6-8v;c>4J@4AHA(@P@t@@tAA3A>b90D%}"wOsBc?,)9Xp4ԣrn_Nt:Rآzy1v~)rf"]#U7 ,PL]H'?E/Ah7=.?96GA6UO24W3]5aO9c.>`lCZGPJD!K7H)CXRF3H:G@H<J:L=IMAL.HJjOGVD]Ad@k?\sC@{[A" B4WAki>8|0گ&oi<v{Yt4~n4ni dS_`eYjRH L3'E/@7=?<Fa>[KAL[FKWKEO'=R2S'RJO^L I FE6F:ILL=QTUXJ[)]^`9cf]jKnpXqng+:\Ld9 z$PMD9m W̎׀s<6hE!^i%W*yS1xRk73T=W@{\DB`Aci=bF8_2oY-Q7*G(>)6+%1-`.0u.73 145B5;d5!A56G73M9+S>JY1E_Ljf#U&>FK:P6XY3b1Ol1vP3U5V7U9۬8H5/j(' E!3l?_2 '$/L5 9_.=O? $B_)+F.Kx3`Qm6X6`3h-o$yt+w w0u roIl]jui{i@&kl?nl3p,q q{0scuy 6ʜ8FҵN'4C $L,G2v7V9;b<=ӔT>l?y@5@K>9 2?)ZcV! LdBF.6" }BT{P|dIӏ[sgd\TOx;NN mQ TyX1\_vd1hLntb{6+rPuo;wfj;}\vNsAt6w+{"pDr7(kY zQ+2~vʈo~WsyiNae[WVWuY#[P^`3b"%eVhln!rWx \i& `yhlj^FPKCz8'/Lb' $]@X} O !60~'#3S? JR=Ye]n_ha_cF)gQls$|ѦsS}y^\h|gL8f=>_rDXKkSS#P [^ObGQgUk[!m!ckNjvhfp!ct\vVwQuNxtoMsNsOuVRyywT~UwU;T0#RO~NRNԲORoV6[_Daba*_ \/X`V`UTUk4WTXY_rX?V~SCO]Lգ/JIYRI J LNOKNKnE>-4<*'!re6 z $B838E-y ڭ" M%*m,5,U'&x Nk[ J38/%&|0k11&9ѹ\±aa,zBhКH!#D:j|{ArCh"_SWZPKnGDw@ p+7m9hC"a-5YbQJF6&E!F{K`PRZGcxk2sH {/ >" W `zʩj  <3vW q''R }uk6Eb#.Y**?Q 0 K4F7D7)D-5Dm/D&GD=&BkH>s8=2l,G'#}}! !LA#j%-&#(%h)Z*ܳ8-049>[B2EC>5(^bޕ r" 8\Z)éҰzt۷nPkjikwnSqAtCus ofagT]AQlF,;-3- <+&+-?036n9U;<*>"? A*[B CjBf?2}:^d2 'g{Ws7: Q58wtB'$2s>PKiY,f _r|3|Br8U-`c;ج(`+&.Qkyz |^",G5; ?fwAA@ٿ&@@=9ACuG*K3PySV%XX:YZ\_cUh:ls p 3qosjec$Y SO(Dv22;<93hG7-P0);X&m]%N`%#5!7&$ W+'M05:@N?-EKGRX|]9`"a]Vo1L?pn0(+!D[gG#EIkD+c8~sDu$O mWfO]a_l]S_XO\RWKLRC7M:I1XF;* EH$D EF!G{$Gj)SG4/EFl5E; DBCJ?DRSEh]WGhI`uJxIDHvD?"|:Ҫ5Ө2ߣ1137<CJiQb5VuY-[I\܋+]G<]w]]^^][1WPqH^?25,% # u#A+05f@LibYolep{ $),,-.׷v,S)p%"k)M~|vpjmKkk l,mam/mslmnzIps}x}d2ˇI@-{lvrraqqnt5xr~|dA "Ȍ)(++, *c$ZN9u4;āA| zASysmz|qځsdSW5g$!Yf;A=z'pdXmM8C;O:?2+(%V}x = P e !+4a2 x;u؄}V56AVo>֟9sI ;y_wjh[UK;f-!Tbb]7!)&,17u>G'FZNpVSW^dhv%j4ie;a$\$X¼rVɾVPWY\e_aa`r^[$:YW?W{"?X)gZ,<],`I)^b"cc bTaa@begkWosg}s0W9uh/w] "$'e3=C0FFC>#9Ѧi33a.oh*'r%#!#Gwg u%5 '- 4_ #;? AAh@=F <T;\<Y? %D IJ!Q6 X^dK jnoXt$z)؀/ՆP54:;A=#>:>=:<{:o:b5:.VD;J<A>9@4jA1CAI0@/>/;/:/9:09319431;{6<<;T<x@:9F?7~K|1xO)Q xQgO K<GD\A#:@@LBCE!I֝blݭ. VulmS OtqK & j 2 z l | D8% . >M22[gqx|} |ɩx+Bu+rp-o2qΡtDw{*o}G~N^}PzXwCs%oFkg3d#f`'[(V&(O #*GO>6+0+*q+,/6>F5O`W" ^Idjtqx,‘nЙ mӧ(ߠxLƕ O_ɇ`@}BLz8uvtr!nz'QlH,Sk//l1n1rT/wy*I|#; K},xstnZjNgFg}h>kt`nqt%vxz{ }~?~}z}Gsi8hYG30 8j?BI p+ #~{dyx]wurm|f.F^bTKYCB%;Z6+4@y4a6P:JN>"BAEVGIQK  M OKQ:SU2VTV 7Bb;I QZdhl)u|ă9`6 "@'*Y4d4s>i5?qi Bk$2N'(( "&@ T!^l"'*+(*( &rP%$%z-(.+W/x369 <(>3m@-ICFlKRPUXZVZ VP =I9@&7//,9d)[B$J"cQP"cV}#Y%)[([,k[0 [4Z:Z]AYZTIY.R^Xq[UsdQilKrDNva<]w3u*5r/#4h=(6Lj}0um}gbO_h][YWSNH1HB;62<11a47<8AEm_I-LP\}TYi<^c,Iim6pqJoa1jbYNO.Fj>s8452 2 2~469=C$ISR^\WgsU NB $b |kq>7 h]-=Jd?zb)nN4#>2IR2V[bsg1jzjhCO I  w%3a/ζ8bAmIQڶjYZt`f>k nnl.h[aXOݯD:1)Ɨ:#V SO݉?lZ Ɖ ։:ʼn a }Hz˙fјl,6ylWv`&UK D><>;O9v8g8 9:=@E\BKbQ 4Wd[v^^[U_MBf7h,M"ajE = y ϼ75Xsaaa= K%L0 bH""i#+$zuo%"j@'a~)1]+!\?.Z^50.c1i2>q=3x3h;44P565C}4Ĩ1,%`diR1G<#ͨ1+PjxtEɴ##, 3q2:W>?>:4_-w%6* mm 3j uN  L !( , 6 ?C GOW_gow|cgVB{umue]$CVOIJC PE@;72.xA,k+,/!3#&9$+>$B"CaCHf@o;G5.B)V1%K=##!&S*/15:@DHtImM,#Q '~Uw*sX,BZ-ZZ,.X*VS&K1"AB5w^),'S  A=Q=wh <i + B i $ '% 3+ -`.G.-k*\%6?TIaDn<b1  & x 9iO7*Q|E \)*ةߺDZJ~S 9\W+ >τu(zچ zUk9yopDdnWJU>5-(2t&%H&}'nb)+C/Q3:-AJT^ZgUoesFuuctq:p־ohq;uz \a/vѤq+Ҷb-]|"rq|M5T`?'D* Q"V.(:&DMT(W%XU VpRl*N5J#}dG |l<=? ;]7%k3J-'=N :c|8>$1-+6f>WFmM TxZ agF oN/vy|!t 75,zxlp1g2_WQM+IFC @<85f'20!1$X3v%7S%{;i#?tBo/C-sA f=|7]1*Gj%! !$5(Z{-K2*6;>BIFCJMKP[QPK?^D*9+2o< R&i:AXR/>  3<_*hS%V X $@*Ɇ057>5kEKƍQWCa]ޏGci2[nru}YuLr`m!Cf#~\SwR oH f>A]26U.8P(rM#MPUM\cj q x?~ M ՟ z {DKI|* V\s= <*q" Om %)[06|898Ƿ7q646C79-=AA&WE9H;K NO`BQRT+WhY[g\^f[W'Q)H# K>o27&i!b(/+5v : =w?w?:? 1><(*=/z<7D<?o<H<Pt<YB;2a8IhG4mH.p&qokEf `f\X3W4W`ZB ^;b e Xhi?jP$i-)i7hBhKizTcj[j/_Jj`?h_{d}],_YXFVvRRLPHOSGN^HNKvOQOXO`YOhFNoLv3K|IGEwC6@J;B6+/e'wT;ٕ* _Q qcY BV I>:M5,&,%-y>3b9 >|CHkM[aQVTUtVvTgQ3MLaH#CF?u <:a99~c:_};~,;s:86g3kv1w/89.F-E-48.ݮ8.ֱl-+Rn(^$j<y0}vrMq rsu (w H|3%`@\p0 j>m6\W,O->aqd%-P4L :>@yBFnxI2LN78PO2MHaBH<%6}_1..'0(5};MB;|@*$B1+C1D7uES=ETBFFHIK-KNJR!HVCZ;]2^ )^\7Y (VLSRSoVC[wahnrvxpz{ |~!&*?-]{.rL0g1Y3K`6<9/'>Y$pB0FHIqHEHA};4v-&#!t"L"KG Xvc ~$'4TИQ_Kٛ8g|,h+ko[΃yml`62R$C6,+#r %+g|28>1CRH2LzQv Vz[,a[f>kbRnronrkt*hё dN`H]j\\&_0bښfjnqtv~w!y?|XȊt*#Ɛ|Hνߕ5+ߴ*iWFIsFbCɤ_nߠ7W%/Y)9'AAI^sNęQQ;NJ)E[@P<J:9:i<d?á_BD9YFGIKNC[RDW*^,dj0oaqXqnmjte_~YUsRQRUGXF [q^ac#e);ge0hL7i= jCiFhHeH`ZGYDP@HF#=;g9916M(3!B0X-*+'#7# ('*-5022W5!7%:'*=@-@..B-!BP+?5'\;a"4x,# !pi%`),.:f0124l56t65/3.g&xa+bx+6=BS[;*F[ ۠g7 x&k/`8W[AQIMAOyKSJVJHXKXLXN]X+QWTFWsYVR_S f6P mJsCx9z|.}#x}|{4xNutssuSx}oKQx’͙yڦ7dݹT2h]~npp_^^, vd Z"&k@3FB?KValu$4|-L߂7ڀU}zUw7v|vӺ wIxz|;"|zDxtploMifO~d%'b.a4n^6Z7T7M5EH4#=M34$3-3(~5%7%9&};)<-o=2=,7=;=?>C?G@L BPBVB,[AA_>sb:#c5a1G\,T)K'A'y7).,'0"4] 8;l X>!#@,#A$ CX&D{(Ft+H/YJ4}K:KjAWJ|GGSLCEO]?O:uN6&Kv3F1B1>2^;4j:6X;8=0:A:FL:[Jc9PNQ8Q7TK7W7BZ$9\:_<a> c_>bg= `:Z47RZ2G,:',!=a% 2 DeC[? M  E p"TqKаh%/T ي"#NP#*#ʼn?'*9,.-y)+&QW ɋ`(+L ObԐm5uھ^7 :. ag=)b Xkz1%DJ 'J%"}wmh: _)P2J9> AA?m;iU7g2l/4,O ,>,d.0z0o2V3t415Tq5i5ݸ6i797::Pd96490'd?_?)CJ!#Q%%$#d" G!  $M!, "M5"}=A"D JNO?uNJ> E@x@;9I8F6c7):8>S $Co AGMJK=)L-GK I(H0F,9TEA5DyGBKb@^M<L;7IU0DEp(?S q:150y, (%g^"t`_h#(q-14) 7~ : ={@ECBFHGZFC*)=53+y  ATp\"}UWAn>h<>mU6 ZhQ^JcĹJK49A8Y(43a0(.Ӗ|3$}\;*^H={d kMB%FPk\Iȴtlk̳>,XC8 _ܥæ$s(ţ+q,+s'=#@>:|yvut! t(si0Dt7nu=wWCk{GKNCR UWYK[_ZnhXӷTNF0>6/)&&h## 3$ v%&'#(*)U1*q7U,<.@2C6nD:$C>?A:C44C)-A?&>) :t6s444$3{ 46;?}DHO!K"M$N'O+PX/R(4T"9KV=#XAXSEWGRTI>NKEMt;]P,0vS$WZO ^^ ` aKka H_c [#VuQ+mLHIG#zB2*=19`84?/-F)BK#NNJ D3<1 'n E'lf?C?. X*n4I>7FM^QS _T+SsRd8Q`WO=LN&DMj?L=J6?PH{BDF@K;eP#7T2X.\c+`(dg&h$Tm!Yq)t Cv$v{ s p=jV46G/n)ҹ%##J%;')O+}-./v01@E3"4M6H7C7M5_ 2 .5(! "T' ,0S48I%<O*Q@y.KD1H4M5S7Y9j_:d;h<kl<k:;jm7Ig2*c,`^'&gYa THPnLH5E#B-+B@3>:|<A<H=WM?QCtV:I [O_Vd\i`mcp1ekqdo]cTlJa g:_`]qZ\TE]MPz^M[`Lb MdvNf'PgvQhQiQQ-iOiXMhJhGfcEdFCacA\`?V<rN8D3b:,G/~$"$Jm JHe*,0^]9nm\OgaD^m}-CZ|7`rP!>?@L@@R?<925D1P.>~+C )(((e)) )? '&E# !.A%v{GN W r$Tq̽ WJq_&̬?mr;ZDLS74Jȏ;r چv DOzM7rc"Вj$+'*]. }2Mf6՚}9#;:۞V83[ -%7ZY|ݏ U!mLD hC2&09mhzv9 C2xUW/{k ObT#Fw)v/L6Z)=DgLyS[Y]_i`_.^\ \+}\/L^J_aWe8im7qRZs-t utTt?s9rp9nk$Sg},`\3Xj9N>TCC7H,M"[Q3U_XZ[U[*xZXV#aV'6T,lRB09Q4PX9P>PDPIOJN3813400}// /e0. 2.3-55-/6p-5.40'3317C0<w/X@$/C /TF.XG-F+'E(rB*$1?#;8531E20|.d,g#I*4+'3Z%:#*AH!FK1dORT1UW##XWUjR KC9.D#R AV?``j9'6=ju@9'g۸)ήG8Yx"]M b,/s 'gr`ܚ.]fU=lu$T̑6{S|ɷ{xȴv ws{/?T^ī޺V jŭqqa#\;T2 @7"N+*!04m7-9`4:k:~;<=)>9=2<+9Fr4m.2)%#8y :[ $M!'ȫj)9*ݭ*>*gT)R(`I('()*u+ +[*y&!_. Y,k 8q ~Q^h#'+v.1X|4689, !97cB3-B'v F (7 a ]]ML b# '+e~-?/ 0!2I(4.648::A?9B7E3RG0-H%yIbJ rK LNxOP6 QPONKY I6F sC @^M>M;||84 /"s)"#O"8!w,_W Y|.W>|I p05-bJE <KAh-!.$ٺ&&-g%a"hǎE M es f c  Ǟc6{0LE* b&-2>JDl6 0qga57]YUCѡ[o5Bjw/CȺL|% =n41B :"DJJ0P@z T_ڶp¸.5u {ƹg 1[t%*.W1o1Sc0@-z*9n'$#\#T|%[p(3+, 0368!9J'.:'-%:]399H9?p8 E7I4K0L+J$hGBm{=L 7m1v,]x'"CB *~{z{!,@$;'#**.t0*3H67:g;<> >@?|@:> @;+?7S>F3=.:>*[?'8A%C%F%H&J'eL(MS)O)#P)*=R$+R, S;/R`2O5jK/98E;)=<3<)w:&72. =.*%*&m$%$H$$%%w%Q$v"1e T$ +i0N4. 637i7S6O65Q 6178U:;</<);9zI7m!40i-*&С">vDM#Jn'Q+V/|[3r_7b<e`@hvDk HnJpLyrKsr&JbpGlC~e>?]:T7J6B52<67x85:5K=6?8Ar:WC<(E\=I?L,B5PaESIAWNZaT[Y\][` ZajW`mT+^QZ&OjWMpTLRM,RNiSOVlQYES ^T/bpVeWhXj5Z|l[m]%n^xn_Vn_pm^Pk\ugX~aSCYMNEBj>67,) 0 )y# &x @" L j E]QRi7 B 5u~T `jd{cUs+ƗxmhyD˚g˒Ï8P3Д‘ -Vˊ׫fӔəmmVش)ڸ~V<`ش6(= $3:K'j ]"j+ƫ2n9z>#A]C2CPB}@ yU?}v?Tu @iuEBvExxXI!{+M~yPRATTŔ.TGS9R˯AQrP$ONM]JyRF@,:522I+$S>_{$ *0 0 6p<AFKP UZ<_!jb c@c4u`[UwN@HPBb=:7X5N41~.!2* '$-23N:AHn NSVHWV!TOIJ+D=Q7i2P .t*'[%W#r"s""6z"3#i$$$l/$yt"n)K@zv<>*|ALcH\ i&B J{UV=GI|Xnۅ؂]~8zu>Hrp[o>Rp#r )v2zn~@ D T $U nlV@yq_kf/HdC@d>fiAYnVs{Yx)}ā)U O ~@Mrұ|/4 ô6:WT8÷X/sL?d3;4"A1ihc X {  ojӰRH=$X**/4:A9'<G@qCSFIbL- yOMQZQh"P5(M -HX1eB5::3?+E$KSCZdbi,pgv+{x~)k& 3#&} )x+7q-;h=.^L-7S*H6'>"6zd0D,5*)+-/2m5s8<?52CF=J_AM8O>QgRR|QkPOON 5~E/< <)`@#Ub':"/ 5`:=5=:,60*Ca#?x'|G")} 7=MNC6N2INNNTcNXN,\N]zM]5K[GDXuB9Si<DM5F/z@*v:O'5%0&,)),'1&i6&':(>+A/D5G<<qJCMKP6R'TXV]XIafYcWX|dU]d^Qc L@b0F`j@_K;_C7_4` 3ub2d/3g3j4:n%5pqx5Kt5v5wb6w+7uG8q9k:bn;4X!;K9e>n601J#x,n&Y m yEPK 2n  ?rP U-AgEFG5}$nAˣ#'   ]ʹ~ 30RTf&JB:?GV&$Ͻ x\YeTc>J1vICڼ l _RPt{ξ{Zm E=Rf%*,+/0T/Z,a'wT!ݒ`n "[55@g~s,F6]gjY"'?v@Kd@S?>?> u=+=<<k<C:&85)B11+2%4+l!ſ,bf3<9<řu?'[ACDFfIpLORZRUǴ1WXXX4Xw`XcWVoxUSBQM$+I+LC2]<64:,=%?A%BmCCUOCB"TA^(?P.>K4=/:=? >E4?eK@QBmVDI["F4_FaEbD|a,A^=|Z9mU5 PS2J/F-A,>q,;R-8"/5125E/:+@(oG$O" W!_ ufc!l"~q$ht%'[u2)bt*q+m,h -b-&]Y.W/ S2>O5zL:J?IEILJRKXM_vOdqQjHS oTs{U_w7U>zS{P{Ly>FHu?ng8fx1H]H+RM&BH"= 3 y*T!!"$&0 l()?*w+(,v,|,,+\)&.#Zdw(Q  -׽p / B a=1(#wZ4f;ȵ>Щܢ*o(r*PCթ^\K 6 7NS|w +R'  7#&)J,/3Zu69<>??f??>ϵ<<X;<D>gADH4 MKPgTrW Z=\q^4_`Ijacaf`,^vZ TU N G > ^6|m.$'" i{x!" ('*l!M.u$1'@3+4&054594>2:C/G+I%*KVKI@G, ^DA?C=Z<S=e> ?@AMBB$B+A2@9U?R@=xF;L9P7To3W.Z([!\]d]~]8m]!]8w\y:[0Y/V9#RMRGWA: 4F.A)H% ! s!! : ". .OX",0aai`!Ehg &T֛ėrr 4bRxD$1ʯjWX @u?ATNt67y~ָsgPtqxZh1L&NӶOUȼoGz F KZ|P_SNTExT (SQNKSIysGEjD4fCBAA)@ ?|=;?<iP:!7m~460CE*7"Q61eMRjzb)2z*|%$B(*+R+Mk*6(&$]2#ۄ![~z(ww^w y{S ~@ Ј:B8Y Ҩ%YL AB=ɢ΍ræoTì.R/,ϒI )\ۜt C־ùدԷ*/LD'sZW(W3M>PWHxQYܙY`ueܗg7hב|f+Bc^ŇYمT(Oم_KGDXdBf @=:d7a40:1o.k:,]*) )7M)( '&%P"&g\(}2"&&U*mK-a/0(:1 0102>/-)y $ 0%  5?3HULr&p2 Yi[1S8"u%6'W)5*lO*)(.'M%+># /3hV32fkP^IHK\uMѿ ~ e%Oyb.kyԝf"H]VD]{mh'p.{/ͻ =;/ $qrDHq:~ @I,o$%-$ t   V& 0 C C P* r q.  , s;",*2t:A HOBT| X&Z[3P["ZnXVU*T!S$TUVWIX?XW2URO@L8 J[TGMD$A+N>d0<:i4e517/8*9$9g9H80876!O6'54.b54[5:5n@[7(E9GI(= M\APF`TJXCO[R^dU`VaV=abU_zSK[8QUVNPMJJKCJ=J'8dK2yL-'N(Pp#SHW\bCi px;]aQ@^c3l[~w #q8keIan{^\Gw[G/[s ~[w@\^]J^ M`w$a(c,c'0c#3a5^5Y+4xS0K*cC#:2I+4% %Ya7f/j(A h#,b&I)+5-..-+H)h'& %$"n%&g(F*,KZ- .?. - ,k;+) '[%I") : p-C:'|h:?leŴ.L v~vbyO$"EV `; !s$ޯ@(+y/048)< @CEFFEރ)E ~DcyD!vKFgtHGtLuQxV}.\`dՕgGOi*)j(Lji}7i&hf/d`|[TLLBjs8O.%A)"z%(k+-4~/k0O1DI1m0U/ .m",#*b$V'$ ##'"S*g_ >3 Z C#0, ;5eg$B(U"-60359w6:642/,(=% !f> rd+Ri.G wBvB >"""$FAt[#a WE40 A= + A"W" ڱX r;Tɟ)%&@l#U-POsJc;XSo' /+׸57p;_гCUE}$+jo)(rpY"\  s(I06;d@ CF|HGIIG#D,@: 3+ױ1$w ufk7KO˻~!ٿ $9&u"(A)+-/h1af2j_2 1..*&V "$(\-1#59<>7`@aaA5B*C{D;F IH[SJKatLKI D>7/( +=NpR ("EV)y1/:C6KSeuZ._bdGXdFbB`&]OYVhTQPN}WMPKjJSHlF2DUVAXa>V;[7Y%2%,u$N:]-)!G]<ȶ-VEż+qt qy!#+(h-{0'220Z.!y +Jr|'l#h g}gjwnftV]{ s <q'dz t;2 RNyYzx{/n&mh  {uh>5ƴD"U+(3;BSIǬOUH[`̲c[:f4gޭf5dQaI]XMTTgQN$mMʡLLmAMvMWM]L L1K"JeJJK M0"O\PDPYOqMJgF=CA @s@_ CdHdNRTSlZ$_)Zd.g;3i7j;&j?hBePDaD[CTAK>^A:J6*6*1-S*| w'0%^#|!d tR !l]l N  !e %x ( *, .g..}.l-D-t,=+/*)M7(y@& # ;! & peB Ex?o[ jQ9#jpZ Lr )17L*<>? @?->a$>=V=?B=K=bW=I= =< ;:2863}/.*¬\#OA9jmL+y$'3>;w,`$5 DMl Y`M!%Mu Dh3 *5@*5KezUd_hqOy)F?upɑǪb;fΦgēɔN*^ؾgգL&E2r J S*}K3v:9<;889946;3= 0@6-'C**Em){F) G)5G',Fi/ FY3Dq7C;@=9=>8>M3<,R9%5p0N',z( %Yv$J$1%4&=)+.1N85r8;>,?8B/DSE$EpC&@Sf;x5.@'%1!Ld$bWum) 3q{w @V-JnZ,?di8= qMɾƻ~,3&ϯ K#/A(, 1 I4&56653617). +F'$!wXDb. InLq0 yJźv3/$N{ Ew k%Z!\ 5Qx%}!5 &*S/ 47;N=V>02?)?>=<ֿ;:8_5}2֞/,h3*'&{&Kz&zp(}+. =1ې4ՙD6ܣ7ٮ7z7-"64W1Z-)% Fifk~ag  bP3hyUV7f uB $Y#zz 8>{agZ L=~vijv xL"z)0=0I6<BWH_MsRVxXʹ{YY}WDT՚QM:J FٓCW?K<X48 3k/*̵&!¾~Q4/6^"rLWI[ A|\I{ K+p:Fj;g CL,#*!G!r' 2>S[ . ?o@lIM%"*]%@> Uzx8(k|  bIUټpFtV=-_Xy9aEZXL p^9# ̵Q97S%Jj-59)<UBGKiLNOOSDN\RKFbHAU:Ī}3_,\%Z Y,YMsO#(̘/A5:x?LBNEϴF bGGX@GFcEC@1~=~S94 0#+([(%-&R2$7$=% B'Fq(sJ[)UMv)eO(P&Q#RSMRTUTT, SQiMiHA9wQ1(e uNL$}"Z&I.>X6z>SFO{kV\adlee3be_~[WYTQ PNHMnLJGC#&?93-`'!n_ A@[p; l Ql_$+21;6D: n<=F=j";(9(.*52 0f6)81"9R9.7W5K30-p+DT)A%'[$T!*B8- ZT}zg$meCg&k.ktKyds%rLO:3ytoK@L3kPq ýK_ )=357;ZBu^Hl:MPWUSjyT]CTROK.G%BB=8Y53Y23l#45f6h77a76`f53*421C0.B,iM)%i!D$]]\#M)/S n6&5=-CU4I4:N>SABWD)[}D]pC_A`]= `8'^2Z+U#zOQH4@ =9\K2A,S'# -= =*$6^@ #b IJD? 3{/ du:wD#k, >Q{@  rQXlmtcGj6W|4A,-~L* <Q c } iīr83S3 yR7 &*R.R008J0^ .,)"&&-L#4i9</z>j> -=a>;9+.7=54s4g4 5}5@6A7$8{*:z/>3A7F:K;=P>8U>Xa=&[:\6u[R1Y+V$SP#LI: G'FcERQE^EGHK3MPiS1UdW0YX8W!TO;J-D >N8i3/)-/++ݽ\,h-./01g2BF3(4p4H5L4YT3I0+~D%JQL 5d$sE{=`"/Yy̼Yz'SF GѰaYj&ek6B´DֲKF$ GyGGFEED#C BBUC}El|bIC}NNUY\`eF0nvΧ~̲rH-Vɖ.E@'=. {"qA#gJ#]#QT%#[L#2F$B%?K'?}(@.)B+)Db(G&H$,Ji"J9JIHF^!C>@:9Z2/ + #.j? ^g|1`  ,U`] =%3).P2 6y:Y=z.??><H8A4.wd)# ( U Z@'\':|;P [h[a`f *lN! &,2J6:E= ><9:4ͳ.'ӫ ި H dU  u,As pM~ lP! edb >YhU4MCQk'z  x|7C$~bA&6Fm=$b,6w@I S[awUf5i,j@ixf9b\RUMKE s=Fd5M.'R"QCԳ ,#0'չ,,.0b83g5%66H5f4c2/ -})\ .&(;"0"5":?CG3KrOS,W[}]_paj^bb$ccA b* a_l ]XR=yKB9s0'i+ ZD g?OVX "(/+7V?HQZ7ckrw[{H| |yNOv3rm6jfhodba`_zu^H\ZUWATQMID>\7!0;'0T}0!9 :A&,2g 9>lsDmIMP2R 9RPMcI]D>9~4~/+'~2$c8 ;J &=hL 0w55##~n A!"$F'*H/<3,8g;`>8?^?n>z_<9oT6 2?/0+'#t Xڼ9sCRתJƩ_#+t3h<ѵ'DKQW7Z\]b\Z WR$Mv@G1A W;Q 61N.8,"j++2-I/1?460`8[9z::<!:) 8m64q0+&!4I^"%(.X4%:+w@1E6JL;N>R@VyAX@Z>6\:A\*5Z-W:%gS:MXF ?}7`0!*Z%)!P{N5+TV" %b'`)e**~*F)('D%M$Y$wa%&y'+))) (s-'$!4M2.'l FsP<9jվ%F|̯x0NȻZ-b{^gbhNCB-j=c P#3i"9k>@(ͮә{tomm?o:csF,x}`qMqPd>N~Mղx<*RL?PVyX#B;EE!M r >֎99 .b{:4!̗v$Jw(>,@1۸69[n<=>=;!995[1,'P!"=(Q-`0gx180P 9/-q*K)().*,/ 3 6:~?CJIi!N#T%Zc&_=&c%f"ggda] Z:V TRER(SOT6VkYf\+^pacPf'xh&Kjk@lv^kzRiKe`VaZHS3K%&Eh??;8q8w90<b?B0F 6I!K NL&P!Qc$S%T%Uo$oT!ZR]NEI}uBU:L2#*"1ws wq K!#%%q%%#Fu"41!j ^ W)!X"$n'z)+j-.f--+)j ')#U~ -CNpr(#EU` KB+=RS@j" żH ,A*e2#}Lelx7EwCPm#q'*-e.F////q.,*(^m%"X.֜L !%+l2=9?EWJMeP}Q {QA*,P~4Mg=IDEI-?*Me8N 1N)GNM"kMLqLtMNPWRTySSS^QN;!K$aHh&D(uA(=(N:H'<6$1!P,&{ o| `b;wq- 8#:o(\-D1/6:[? 0DLHRLhN]O NKFo@9W91>*y#M[=׾  yi{t(PMZ'vb3x^bLӮ68v:ݳ#/hK@ ɶ 5 u8m4Tdӧ٦`|kTܰ?1c{V9HMEaHVzb~oYz9iK\OI7cɣyO$pg;[2P;P}}; }$!o*53z{<DKtQUoXZ-ZYWxT*yQjNKLI)G4;G]G%|I٨ZLSPFUZJ,a_}gm=s7xq|(Gx{̆"G)7%/Ȁ30~8{=ey BwGvMuSrtYsA_Yscr!gRqaioj;m,kCj0kfjbHj]MiXgSeMaHo[A8T;K5BV.;8'.!& "4@#(!.5w<CSKCKSckTrwBX{ |({xt<|oMjeaaz^;\ZyYMWUw+RNeJ6&FAgr=WU9M5!1,c'!+FghdR$ h%5*\i0^55_;Z@DVGYHH}FB=7P1H+WS%F .;=7 Y+ 2? VWizvTV86> +4b+ m=Ihf % `R|[ Z[Cp}^81Z|"%(Ւ/76>FK`NU\af &ijkk-jھNhdϹ`_[WUW:PbJFpB><H;:::.:1: :9m9T87d(6N*41<..*js%6 |ZKf* " 4`!A(~ - a2;I69W4<>{@$A BkB@Wq=}w81y?*!z [Vh3 xoU vj[!4'+-u1h14U`5D5vO423l 2]1,Z23L6߷9й;=y?@?GE?0F>f.= <n:)9622J-&tb3;; לIJvȖhwq]|.WB-: {k v!);1R&8 =ACCA> ;$ 7k30f{.h0-Y,w+I*@(8%+!> -bp?4I3f$3E!w:|(b%OCj &m% -38<==|<9T5X0F)#{)Wy  sqwW"O ˥m"(;-ڢ146B6ݥ@5ݦ?3Uw0%-)1%C"%! #&*,.~:1Z3R4#4t2y/+l'w!k&RU+- 9.Q,(q/$sKOR]"&)g- 1!48.<?4BC!DB8@Z<7d3.+))a)5+Q-#/G1243U4 5N5+5z?6/6Q66,u5 `30ݯ+ݫ& %7T8 Ao8^%\N*>.2-5s7{9::;F:97s3.&; #O%6nc$AI_Q= e Co6Ry*  0+    2L m V & . W\G! & +f.}0`1 1- 0.o.Y+gx'"I c(—f4vaڊ s<Dvk *"3$"%%?f%Ľ$#&" J9ܼ 73eu5( &+.15\6;??B\EϹ]HEJK.LmLiSK+J/VHF|AED DSF/I/VMRiX{^5FdNei;m yp rUr",q)-nY7j?@eGX_LXP PRGS?HT6T/0U;)GVP$W YV0\aF^ _#a{'a+a/a3a6+b8b9{c :Nd 9d7d>4$d0bb,_@(_\#X~U@SIRRsUY^mdSk "q&Tw)||$, --Ȉ,-o*8#' #@_zA!'Ryp-g'_KXSOyaMK#KTJsI ZHhGEvDl#Dx'C*Cw,lCS-B-A+8?Q);%!7!1?),e&!"A< Y%?-xX 0!"n#1$v$y$$(# 3Pzc u1QiT !q4YR wb O6QcS$= :@5y [CʦTpyZ(qɠh1̡M2ڣ* ( Z " 61 iOy.6N}N{+X U^$*/2K443$l0d,'(P"ٳYP"} nY=dq Ƌy[Y\ Ay2=3]^isa!,$' &&(^+'.;82,>7<B-HwMUQ!SzUuUU T cS1 Q OO K&9GNDA9 11'9 nL -6YSz")y17?> lEK~Q\>VY[Z3WSGNaG.AW.;61d..,)g's%n! ]q1˪/  ,q2`{=aW_j,]g]̚Sz; {ff õ5EI6`Ko" 8i2U#jǝi+JDVsq*4MV7EkRmXE78o  BaaHd.0[|-ħڡ% d FTh'09AAH:MQT-V+VTRcOXLYI GFibFUHKKPdV\b2hMtmjq)Pt@'vvv8uf 'tqcnjDEfa])YVPU5% U,V3Y%<]\DlcLiRoXu]Zya{d|ig,{iwiDriLkgc`dY'_O6XEOL;F.1<'3I+$X u j   h g$m!v#/&z*) , 048gK<;> @@><:8T7'7|.8|D:ɸ=\?{BDҼD.ClwAIQ>z:Q:6h1,'v!9.|Y~EgQRn &QN y['"=|&n(('U$ o,03Ig_hcyn>B  G ux%Xq#-(\ nEJKsSy!>!$"_%]%)#tOGaS NKQ Y0 Ǥw *W4+=yEJLךR/W3e[]_4`,`__8^b\[ZSZӡZA]\m^a>eiFmUqs/ u7"u&sq lgEa'Z)"jRq#AJ"A 9x1)pY#L`X$*?29!?&E!,dK1P=5Ua8ZH:_:c:g8:j4hk0ja+hV%eT`<[JmV* R}OOO%hQT:VqYm[\/]2]\]\\[Z7YNVuESNvIOD%J?L;8a859!=A%FLPTEWXHYY(YSXlVSPJ:D,<3z)c@? ɬF@.yp]s YB  4|5!y%')+-SA..-/-Q-Q.K03w69<z>V>9 >;U8 4>/)dF$*D (E*6A(`9ۦ%1,4L=E+NU6\^base3gggea]EYiSBNhHB=(29 6'W4a345*M8<E@?D8HNK:N[>ONܩM KGCs?Ǝ:X5H1|,x-)"wQ&x${I${%<(,n,173>*++_ P+2*Y(3&$Et#"!QM! Irj]  fs2<u-5_&6,2g)8 <p@C>FH ^JK*KJG-Bm<4n,#'ށf|4y Cxk xU z~VH+kM;gc ?@ѭ"'1u)rФ(?Xi r%h,LvC h Pg 1 q ^|+-^l#5i_`8 M*m&K~"R"X8"7oXrq.z H8xTi<֪i_cãj*bl   [ˣr JUo97K-ҪH$gNX#f^ S!n&* -K//'/-+5)ϻ&W#E!oE?.y-n:'"J&"+91:8Pq>ڷ DHL"NONL!I&FQ_A/$'<t,|6 308f*<V$8?=BJvEIO:M QUnY\k^^k^\ZWTQoM ID>:,800(o! m #y*18v?[FM!OT [gaJg^kncon[]krHf`1YRƚLGC@h>ߚ <ˠJ9 51q,z'#"v0 1}OYIB QM A"J'+.60=0-Y)#q`h cJB=-C`  YE(L_ _ʻ,` D;Ⱦ$jF)8 ;#]j$O B1͗ c}ՠФ&:-%4ǭ:`>#A B:lB$At>;753|/7+^'Ze#] :r+2Kz # '*5,6.j.n-+($9 $) -v1`5:"<@V0G]OcX7b k u ,}9ViN)# o&Ǒ''%",qbZ z@qPg ]TLP~F\B9@|?@.BDQEG2 uI KIVNQ|"V,[ "`k dMhk1l^l{Zk,ifdpcrccBdef$ec5`g\>`WlQWKEN>7^0)Oi f {!id7*#B?!hx xo$ \u##R,4 :< B}EFE bB=g8Im2 B-(do%k"' T~:5  vI%-+/3G687k8'8886{5R 42A1u1/24#>73;AGwbM׮fSƳX,\z_x`_']YSLE=5&.&8 +8$xœX$V*/4m8l:";s<x7<|w;$b:97J64t32Л11G2|3>5hc8o; ;L6Y62L-)( "{ R} ;5z$ *#1Y&.8(= +|Aa-C/D1CN3@3<Q3 7B1!0-0((zD#SJ 6  cy [8 z  a x  V q 9 7NQ "dY p DYq0-,4. _fs?i:ݜ U!KC!| , r)OAS' &|`RS sW؊pC]?ͩj8vw+CZ#cѱ k2 !k"%)0Q-1U58u:J%;0:8KJ52.+pG'"abo8f}Mc?c!o (YF_bV%<  n<~6FbwC@[$%,1/6/:Lm<ӿ===-L=e?<ݭ:ӧQ9ơ7c6gB6t67k:z+>צCH6OU@x[b`MceeaGd`G*\(VD$.O*uG/0?%161-P/B%,)&j% %%'*g,Y:. Q//C/ .-9--A-J-D- , X+Z)&&"54~<#)/I6,<;AYEH+OKMOQ zS]T#T-S PYK4E&=z'6P.εp(s#q 8ҭDZzs3ſ 6aiE "{$&B&8"&#K w~!Nw ~` ?5 rU)= mr_ g"v$$'G) ++$+)]&F"MDfenl96"#7'+s/81@33_73n2\1#/'-**+d&S,0 +#*g)mx'%p$$C%z',*".4V:' AGM%SD;WY:[)[QYkWt URaNKI˾XF~D_#B @]@~@6BDHD(LPTX'[6] l]+\Y UPK7Eʲ?5:g4u.X) g%N!| Q#&e*F-Q0}2a3.314/LR,2( I#lb F 1 #"k$L'*.e257838o75 3 1:0i. -1$, )8&-!+SR @3L4'P \u_ yt&FQ,}Z28?*E)JONYlQQP5pM`IMD+?;T9ʟ`76KY6P55ǣ23mN0c,25(p#ɹ »dŹ5LO Pt{0Qܨ-;} N %,)- 0&T47;w?BEdF F[eC> 792>,9' #N aTr1Z4 %Q (^Z0D6r;k ?< A ZCi6D`DC0B/A$?i>=N<M<7B=,A?a9B`E/JyNlR$UWuXWM8UMQLLE>S7/1(!$I5Wd])1z'x/0?7@>D6HصJ'AK˸)JcGhCK>9=3L).L(#6 Ú`8֗]U!&,M>39?ZICNEFmhEdBe=8,U1{%*"l!v -D 1y& H.f49e<>!0@#KA$#B"BhBA?s<hX7f0FY)Y!QRD J*nU8X @$'E,O1*7[=pDJPfTWXXW_V ^U˥ UUV#]XCY oZ\YWTO|JD5>@8-3R-'B\HiB}0{rHN'!t{Z;*n 3 ,c!$%V$!\F`/]{$%tP 93( R+PaW5|?۱|m7~J"'HqEPvWOtX͒U^Llכ/աDjտ w!$y&''%t"W P*_>9UQK&h#b)}.2dc689;#>@ UD=HiLdePSUVVFTQM[HrDA>>><@* BCEqqE;EZD%DUDDEFNGHBMJJ"JKH;sE B$>;U:35:;) >tADHgJ@uCqdGJ LzMLl JF:fBl%r=M,[81H385(.,7(7"65\2 /e -nv*v(Z'Md'(+/N5e<J`DLTz\4cJh1lemwmrkg!b[noTL#E(=6o0&+'ia$C## %q)v.DS382=2BdE8G]GbF%D@-<8ûM3.**'$r #̤"̧#L&ݴ).4n;[8BHENNR[U/V U R]ML$VG)_@-8/b1P04*x/#-1 ,*R*+0,W/1'34_v5b#z5(74.1 4.8+=(@&AP%BB$vA$?#<"_9L!5 1{-?*'Nl$kP" }#' +Z!."0`"2!2 34%57*?8K8ny863.i+)"lwjO so ? ܫ b G  & m X R : w>Bҿd5C",zy2) 8'!PHk]~L_Jijr/QXo_|D.*O~e5`28a/y<+ԮFMv;%q ܦ'}/&3N)N",H=uo,%w5N¿!ۻa ۴]Dzq g;~ 0 Ȝٔ4B}*xNv%?vq x|M>")+0O7S{<v8@WVBBrA>B:4.' N<E p j/S#(* ,E 9/S0%0/ V-&l+w)av'=%3" 9E< [+F0blc=+i4}"E',16*<hAqG!MQTUh{UGSOK,GDA¥_@@@@A!&@E>:6*2-O)%"P  &.() 0 wXn]&-Zr38;=# ?^hA 7CjEtGkJ=L@ N!O6\N[LhIE B?=N=<@=K=t=< :V74&61|-R.3=,9"+<*\?L+@+@+T@;+O?q) >&<";Y::';0=?CHN U \ cj`p twFyx3vrmjg%KakZ1SLFRA=RP;:f;[e>BHOVT]1d4iqmm o3pnkPgaU[n|TMF@;8k57W4N4p57a85; ?~hB;EVG2G GD@;"{52.F&  z` ]U ZR%"z$g&M& %o% %k$T $&$\" w u#u?z'I> \Xo6$(+-.&/ՙ/ z0x2G046D9J;Ҏb<E<a:Ij8+5 1N .Q*(%#v B[& QiH1CEHGf3 ys~}%f$@3+NH29 |@cFJL.L=JUOGB(>Q9R631Sf0.0'-*.3'] #`x!+'+ y- .^u.4-@C,Y*(?['&0`%d%\&Fv(y+Ee06V<ZCrJ*P.V)Zt\v\d[sXr3SYME5>-6.A&vcW.y )1?83_ QK0Jͪ`(8QKɬ1qE<G ^'  VQPTB9I7 #Ar&''%"!"$8 1~l7+rYIUg}{ %X }# (&,b/1\ 21]/{7+&Q"UNng!-$u%'S''&e&&''(c)<)-(Ի2&#d E3,UF $*;0"*6w:͜>?g?>͵<~:> 8a5I20/W+&h!ʲ6bos 0V~poʾBPD@_PMljHO L ]UNe!t$?5H9|")./4 '8%9:::?P852v/6/,")P\&b.$"9""$'%+#1 =7ۜ=-DhJORTBUT0Qb MGA?h;&4a-&d'I!ZW|xd&OC#7(,1/14m2J1ӓ/,T($ ՉwՁ7~{eC{}#xC$")/4d8O;<e<s:?7%x2,4& 7p e jEs>F1y%,;#o&o() ^)|(~'{&=&'{)0+-^/|000~0f00_t258<AtEHHDJ{KLLDLLZ]M/>NwOP(Q R;=Qw%OK._GeBi=9V5392c34u516e7+7V635*4 3C3W4:6f8:;:19c?7h!4w0-+U**,&-/d01102Q/-+D *[ 3* * +d , .w\.-}+p(%h"r Z K#9&+x0488>:{::L9#7(5C*4*<2)0K'-#))#m"`/H  J @  -_9 IY&J,w0#46D7#6x}3/**F%{e I;& f&$u2 nL\>>fg 2='t0vt"ڼ#z.XN\+ok< W%U6)~+,.--.0~25k8:,+F**?)(r$&w"hW^ cgV,Sq?U`@3Ļ;׽L > CXeT\TQ{)<nQ`dm (?7 @T\!)/4r8;e;[s;H974 1U.+'%B"_! h!.&#&-).3^8<?DA4AZ?; 69^0:),!KL( `л|HH *T5;~)5$)HY,e..c,)w&t"?;[iZ? I/!R%(d-75<4CHL<O|O]NKKf~GB <N71,\(%~"! s! x# &B*!]/H"54$8U%s<$>#?S"@?,!<_ 8N3A,;_%\dNY 8N}bj^ o K#B&'(>(ǿ'8','u'G(Ե(v)Qj(2&# Xx>T`; ,*vhI ʾV/E>Ϳ/Q@'3YO 3  nF #O$<$"- \u?W s HC H fd; ka//4z+',hlCx.3)C 6!/&)++*&!EgQp)z'~U e5ݻ0E E3 4?1e;2(f-a & 2kzM!U! /$A C%Z!lDy0a+WC, N[v $ B) -i (2>5W8Eo987)40h-+z))[*,9˶2ֳ+m%E"X?-B]wbNLI"t&4F+i/R!3577!77p8p9;\ Y> @>C"D C'-B2/? 6 ; <s6@1bD-iF)G&WF $D /BD?#<Q8c 5|K3; 1[j/.h.&F0 3'7&z<BITPV,\T`wQ(@?]" 7 a=!W$eM&&%#S 8C98? g} ^  )1 \"$}$o$P %!&]'~*x-w03ic55T4 1I{.A*% '?$N"Ҡ("Ɵ":B$1%'6(7)εe)))j+,`/B25F788z5ZI1L+I&߷ >ָ)ۻO V MZcTNR E R & lI  !*3;QB6HKMzLI-EOy@?:~ 3,&@ 6_$4r+#&-*, .i.,R *d&+!W'\ c-̾þh | {<txbs LVbHyĩZq5};VU p &y,1Z4`6S76?4A2gn/,+F($D "$'+0-5:>A nCzC8CLB @?w?]?Ac?%?F ;>RV<,^9(5&1,z)k'#'o(,z05: ?B+wEGqIfK|MPSZKWCZa\C]i\]ZWOvTɸP~MKJJJJиxJHEgAR< 619,Ga(@%&#6"b! ;2AX-YPIG!43%~(5*,+ +c+ "*j|)^)\*+-/0S0] .V+&! D B l h@ "U*047886;>480,)k%CU!?<_xRcq&#\'- *+w,m+($#n ;kխ`H3ߚMc6џMx0RSCs̷Źwپ[8EP B2ʼeE~Ĭ)%Rһʿs"8YZdO[y ug<nY*  M"I%L'( g(!( ?)]*+g+Z+ ^*'u#WSM"w r1&t9V>"rH,  DDT:*! %'((?l(_)'q%#"#V_$&jV)) , .-/ .K-+c'w$ !6x9ԾNhx^l4{(l(]Czl 9R_(!z%y)f.1344F3:0).,+*_*;+7,u-.y// /_,(/$w! %BF' "(r' i&(k$'"sK} :!$L(wP,04Y 9<x?14AA@P>:5^/.)d#i$< i;0=90URM^ B 3 ^ v } | Z!'T -d9H j &Ck&0p^@ml}O^  ! N z >t<!b%O(-*6+}*!( $%%\!&@T%z(#; WL ' b g $M8 +S_$`r[8g2.b-U(E$i ol"]\d g$(z-y926\:<==<y9v62-)C8&g#4! u!Y#մ&*y0N6o=D5J*ROlSTvT!RNqEI5UB:82 ) ! xw p z b R udKq  e" "!%O\ k  !d"""{#$')g-04Z67'87#7j66n6c78_:::N9m6]2-5(<[$=,!T# #&U)L,HI.)B,?.H= .:,7*4&0"+v%6[ZqTF+!8'-3-9k>7JBDAEXDiB?k; 8840w-T*p(&U<%Z$#[/$I$q.&P'n)y@+[,8H-d!-N+e)S&F"!F_B vRNJTn(6ܥ= 7N<wi? {; (5EPeVY T ) { D ',p`k XM2M07d 81G !"Sn$=<%û%D#!pjc u)ފE[bsL ̯6TY"0,IWr/׭eoBx2=# d\3 ab\\9;_p~cKzdA / B? 0bF%6.ij6Wn=BFeHHIGEB ?R<9\5y830W.F-;--/UQ1WX47;e;>b+ABB0A>:5Y0`*f$$oȹ´ D& r Z ٶHv 0&wa,%1/4D&7O875b29/*{ &!q![v0JV u a 5^Po'+u %*E/Y2G4X5V42.*g&m"ry yy   ""B%$&x%'%(T#) +v,7.b//.K,w(#e,oRo* 4 Pe^"oeiVsY_ "!( -3=8E<1>?!=Co;`8*^5%31142456T7,652A/-s*(-&n$! .B.Xb )b<;T^ Kg $`%)f-v1 5 H9Y?<#>>=N; 7 3'/,W*3Y)) *+D,-0 +)%s!f  %j 5 O1 vhJMf!UE5gq:*Qr'#('8,H/\2 4A3"2.) $..IS *zi,8_stp Ӽcҹs#O cf}  0  9  P3EmM | ofRo3f' 6 g4 qS 6"$%$""@%>'(l(& #j/Ssh|]TgI19%hJ^0* |POfwd0 v X 9R y 7 - #e%&v&m%Ui$v#"""!"%"z| $?UE9& P[{F& Kj ? M @ $@ @ 3 De ~&_+l#/G1p2p1?1K005G12479, w::t:Q$9L7!E5#b3%1v%~0$+/#e-!*& L<DZ~j-E#`',16S;?BlBCCXB8?& Z;6@1C,( a# lM+i9N cPiwgtxt\Fk^-_  gpC3 a D& 40$')c.3"67vD8Y?751  .)%c!b>w9TrX)qlG8_ot.O {[sf4M) PAA6 )i-& ;!$$E#a YHA IuM0JV1 ?X ?kfBU&Qp ) d~a!Ju U{: 3m<\D(| 0s  yQu^ ~$ (Siw"j(-w2NU6f 9m:_:8q<682w#.R)7Y$ lx.K <"1su(".%&-'&ZR%*!# yqbATb =%&Z1q @ ?!!"d#/#M#$%&%'((L('c%"KRgxH`7 UgvþS N^A\[] !" $p'=*f/,5E;HA*F$KAoNPR #SHT?UXZ]_b}a*a:`\mmXQS8NIFD D#E' GP,H}1I27eJ9=JKC3IIGRNFR/FV.FwXFYGVZsH.ZqHY0GXfDIW @Ul:2T4zR-P'GO"*N$MM/OTQJTW:[h_]bf #eIflfeSc`]ZVf3SZ#PiMX KIGBFuSFFJHJXMPVjTW,Z[<[ZW&SNNItC(=N78sH3.f+(S&ؿ$"$6$ %u&F)-,B/'.24:6ο6ck6:4y2/x9,V(%G"~ WznTxplpQd^ OQH S! )W:x =bF7O>rj]MM>@a^5Erkr&BuN@Uj:O  |WEܟ  B  C [ & y'  NSԠ0S9yMFy\/l )5-D ] [#'+/2h4k54X2,/7,);R'h%7%%?z&&U&$!N M(%I(y+C ,D-/,+*<(N'I&S%-% %i*%/% &'+())+l,--..z- \+'@P#>[ Xx=2:`gf"q].I~ R< `5QxmXKHl]iOD5'pL-4 % gydH(.Labw  C{Ľes& ~Q y|[3 N m >  j   B }w#~(,{/0;W1]10@C0Z00u111-0-־)oA%V 1GS=Z+E  %$n)V.$2?Q6~8A9t8 79"65#4#m4*$ 5K$6e$ 9$;E%>P&?'s@)@+>-</:07Q15313~01c//.+,'+ *W3*)=)(O(o))'+-L-=03m8i<l@)DFLH}tHKGDNAo=q9`50,](z`%0"d+=_!wE@,!$w(S+-/N0NV0A/U-+)C (0&c&z&ʸ'@()Z+-9@02W58;C>@|@@fN?t<9o4c/*%{!|3IuC < v '!@<_"g|D  -o 6 #q K    6 GWv#; MWP *i]C C=u<] ;!]z$+% > 0Hca~or;N ~(W' | 6e!(gu6 + U f R C A A ,+-< 7) #U"o$L%'!%2&#a*P"\- ./I-\m+s(?%7"%PT ijR/ "8$&),/s}2u4W67t7yj6Y411~Q.%*'I$&"z 7!:lE2h=h Wu 0cX..Sjnx )qFg#'+-H.@y.;,v*v' -$M ~F Ao K1 O | v > S ^F@,^ e; &d> (}Mc=:`Iv5 `!_crl z 2 4  О`))ؒ{K 31 ~ × pO{o}lu ~ Ǥ^«aoj_ZR B$'M)M*z+B+)q,I-.X0a12>3l43D1'.)$3V+x<Z l:N& d${&-&(sv('k&$ds"@ *@ &6V TT~K X x : :c^f+ :c{nBV5C&N 29 46Yi"&()Z)+^(/&l#Ro +? =G47 #'> ,G0+4j7M9;,;6D:8T/63K)1/+u-g,+K+I+4*Mk*#)(S' &$`j#!K &{[4)F sWG6,;vI(Ne @N2_I}KK3jɷ)is}@NҔ>ו.s n,E0{\ĩժ*M Ұ&εX @ :l 1 AVW}b J bM  rZ "^ $$'%&%N$7#!q U Z!"q$&~'; ''&#h {$)-P0A22i2Q2 1y =1 41Q12[4&f6Y8e;(>@CF1YI"K<MO2OO {MJF[Bi6=72-)_&#> r>4& T" %d(`+yR/d24s6S%765T4p\2=0&.a4,s*(z'5&d%5$##$R%P&H(*,-G.H.,*r2'B#3wa5 1 ?2Il $](6+,?Z-V@,)%z | z  \  +V^L9D3$3"9/`-xZ<~>!yTwF   >H$w !G!'""}#q%?*'˼~)h+f"--{-ܱb+2(s&s#`_!ۻ, } !*K#/$%%%%%g&'aM*0-~15 9 <?#@/@d?*v>v=< <"<$+=&e=:)%=','</I:A37 7$4:R0=m,?(@AW%A9"A!?j><9;w 99 888c99:1W;;<>@BAcEBGVJMROlONqLH'D?:5'1 , )%#J#/!UU\L]!z}#(%S(%)+ +)~'C#.   ;uJFXC!~&' l6vD|H#C. bP= ) i"'+*`./0.Z,)&!Lm} Z gX 4cgna   s c < 9M;:" f c= v*?HU q  Z[[.CeYgծ +/ Y W %  ' R b~W&] (`$Y_?s x\U!!.%')i7*+,0-Y.-/-`0P0/- *&A" yN/%A?f) Y%+SA0I356P6^531$/, g*E(h&$^#:J#ZV#h$F%9 '$)O+a?-.1/.w -{E*&""_{  t CFvR0S{jp* % & B\ KF[{4y/) Y}r 4VQ!L##j#V#"!s!M!3}!!u"v#-P$0%; & *' [(w)$+,P-2. .. 9. ,*w'%$T ovJk6e G Z R 0[ hW * & 1PD~ & =vB,YCgb²v>;Z  b&?6:* " &$ ,&ݧ/QB ɿd$ f"\&(:*,.T/f1244~6k89H9%8l65"41e-p+)((_'c!'%#< 9B$g( i,A '/01 2>21112Yk22y344p4Aq55-x6v6237>7T64H,2.B)a$ZU%b p-=eDZ#{"111"*3rK b sE*Iv* c{1. #' +g/03E6Y89&9lN864$211/.--H-)-!-5-8-.]/Qf013X55s542lS/*%v6t pCbpG/~}\Pl4i7z0Z$5Q_dYoD{9޴(\$,y3v I  z=  & (, \QG#מ?B I [ DP[xz #','0H5'X97 u<3 Y>1 >7 c>> =:X;98869;<`C>D-?1?.>0<!r9$D6Y'2N)/*,a+#*+J'+$ ,? v,;-Wn. 0 2Z\469<7?tCAGAKOO *S V$Y\Z PZX UQ`L~F @ :;( 6f1[[-)&&B$"U +w|DC Z"MQ$06&'(})('`&z$c#U"h"" W#z$%m')*<,+-//:1v35S6R61W641.R)$-RG c>$>[fXyo{)v~ { p "1<0opp 7#EdR`62S$.=I=b-> b X ޢ$!˦2pNgY*̡! "Wg#Q#""" $(#&ϒ2)0,g048ha:ߧ;;n:ָ90866515[y5uA54}31/0.B-,--.s.\0>2z45E65f04 2F/-+)^(Z'&+$SJ!*NL%q E<$V"%(},N)03*7:T<6$=)=W*<N:875M2G/,i*g'$O"w?Pe:=RL# xS m (oVvGw L<  N}aXnP$(-,.//k.i,)&#'1j$!6{+Ks3#7='{S n- ' 0p o mt!; oNZO " xӼַga;~jPb5-*# s!B%(#,/1F2229234_58;? C9FaHJkLMdNHOPQ MR DS S R PZ SMB QH B;;=4N-h(qy$" ! ;!$!("(-#%2#O7#R<#@i#zDV#G#YH$qH$pG$E~$CJ#@!<9v6)3/F, S) X& #_ ! ! Ov (^! " #l;$P$"~ 4&/XV`N c+l._+R? J u?vakpj .' H  > Upg|+eH@#f('.O3Z"8U<?A1C~C C1B4'A-@ d?A>X>S='=n<:86+443I1 \09|/.t-,+(%A!7lN%U Cai  g  zvvH">& _Y;cMC(EQ$s<bVEp\_ J ' U25,.: nL5K{}{"%(* , . D0 2Y46?886$Z4o0o, ($`!JRprXm 3q D ]yBi~Z^_oWwS& R6q& g   ,0 [M)Afxx#s(кbz : %'y*Sr4|RXY{eCr<b4D_k/+?v1llhSEduC"9 %'Z)E* *D(:%"%zd+{ )[LN@ ~q1)C %SBWV: / iOkQ خ 2/vhTP= @W!ޟ"ܜ$%&ݕM%X#m JqR#={Ĩ8]Dɷ$R!e#%(,059e=@kBB2&Bh@!>;98aX8-8G599-95I97952PG/{+ ( % "983f u9ALGaqG2!E$3' ) (++7r*'~$.0 G13 qv17sb^gh nk6QOg ~9Sr zg!)%1)V,)E0X*3,P566,{6 w5 )4 2 1' 1o0d0K"1v11i11z1%123ul57YW:=b?!AAuA@w>;8/ 4 0o+'&# 0P HeJOtM_yfz-+ ) ('s]'&aa&%$#Q#yM"4! !""[#V{%'(^)****JD*U**,-!0h235m8>; >M@ACd0G#JN_XR.UV YL[gs\^\z [\XYKU,jQ~@MIpDA.X=9o6/u2.G+'h %:" t//g&Op\E^{ |2,MGcqfu>AjvhIREm.K+u7PPnlT̸E~_W`':{y޳Wŷ cA#.W^w hu;+8 e"#%;o&uF(w*8_.2H@7;g@0D,G-`IsJ7L9pMNr|PARS6TT_hSP<;LFeA-A;F62c0i/]01 3>5V`6Z6H6" 6&15)X4P+3,2+B2*)1)m/-(,&\)X%%4$R F#w""G!!!"#V%`') ," ./i0z08~/-];+v(%&# !>Oi[?P :|:: FMX|~q J ^ iV) e(0zrVm{  =N`kWP>v3 f qinIA?.KF<  4 "!YDrNBؽ-f99?t*:8j_O\__x,:i M | { ; ¨ mŸk/ !ϔ! —OԘt/3)Pږ|Jvjlɨ}xO#*)?06p:~>U!AB1DGEpFxG.I|pJ 3KK$IGBC-?:G5;h1]-z*-'%H#y 4H|{J p"$% &&&&~'v'(*+,$.U///V// /+.,<+(& w" >yb{ ~6-!SUan;14p<n Jb?|"HSl]&R  `` e0-Fq)^$nu+?\[DEO$E np!"p#6!%L&F'H'(ct'&k#] u Ma6yh},QFsu5\ j fq  v $?*4x;p~:t &#}='$+.P1I45k6X6u6S6:K6PO6 +65*41H.F)q$Q~u1| MT"U$' )*$,G/df135'(776z5j2~p/e,)P(a'b'IW(M)k))(:8&"IM)  H 'ln;!"h'$8&(\[*, .Y0G1G150# .1*M&\L"!R8Y p < tFb&g< "$4_&:'='&oz%o=$"#]"!"C"X"#r;%&()!*,*._/;B1|233 }3>2'0R-U)N&"KbdtejM&>K!#<&[(K)*7*')p'Y%::"4'Y"  Z4woP S{^~R9,vGfT#DQ|e ml` . B{ K "k$|$<$ "%!̯K_tv !"|q!: 2B9\&$1~\]"y9(3!^""^"'!$ >[_v.?;  y)~7I}^ |@pe!4$d%qw%Y}$" dA+ g Go tlT< ,  d I~ (Y  t92Vm=+5m :jKSC" n&\*.u2&5!78887mc5{20 a/O &,')/&$:#^" !!B"N"-#o5%&)s+-Cl02}<425D]534p31/- +\*?)`l('a'Q&C%4#>"O #} ?8q Da Z 2m([4n v19f"{Zϰ߰{³4 \ϳҲBӱS6!$(,145668 ;847i5)30).+J(n% !CgQe- Qf +C'0M  d :"#$x% %4 $S Q# KS,/`T+k[#b I x   " } L  H r &_yZJ rl~_(nXGzTY'qH"%j)6,{0#47]; $@{ODQHK!NPQARISwSRQ"_PNMLJxHEMQB<>\:5 1T-v)B&## g?dp~ O E 6:]9_^ mx6?  1 H н(ʶװ `O h8!!LL;vf \  h ɹ ! R | ]v6S1$ *Qy/+4a7:f=>c@AC"gEFG!GFMD@B<C752-y):&h#~! wHj }a7xtl0@oH!4#${ '))N-+ ,j . / 01dy2X3;Q4`5o6l_7_8E8x8875 r4- 2T1=00/}/$0K12l4c69d;I=b@>%CF} ILN; QR SRQNKgq3;n8A6Q4=31 100z172f357Ur9i:1;;;:_^9s7654433EJ32\210/.-,+*2(&@|#p2r ~? E2|B6hbM8iw#/i@q*[[-0^m+jT95 n$/')4 +Tm+O9+*)?N(x&<$$ 59 S @k n ׫2 $K(+Z-}`/'S1K375<66887X6320if-L*'?&%%|&,'f'& $&!MZ& aj 73NX!${n')+X-_/012;2c1O0-#)$ih$tj Hgv=w*s?l=:jp+sn=',n!f .B3ghk U9 .^ !t ?i 0fQODT L E 6  '7 f 9 )B h V _?Eend<7m4M* gt50K7 H7V, q ^^_ O  zA%L+Zp%%"|_ ڿ Hc_"@i%'{)*V+--h..f. - * ($*!M:u(bK* bGXx-  2d[kT21=&-f \_!l$'^(( (&<%W#}B!(a  r 4 q g \e ? .7y^3^^"o%"a%[)m-04D8; >=&AbBBBBji@ = :+ 5G18-)i % |!! + 0Te`'$A2Ry>w25"QW; L ?  V a c i5 u 8;   N(0 l 6YE5?7rcYctH^+ (a9/NN $w ej$(*++,Re+)'7u%t"iLPK Qw{Al3cg  Gi 6c eP`9<y{W=[m : P ;  2 EKH [J`Xn-]$ 4qO;)xn(- e x  Awy8^bqlWaE[d@d N@t!x&B)5,.TW01"1n0r0"0N/>/".-,*(+&$r `" -6u ) }o%heKF5;rq  y 9V a^ v   c 2t>=  pW E z5z *4Y  0>MҪN&PFC?D2CV2cT1q/,6(1#a\zV  3   0= Z O x  7 5sax  mq  [}GZ "V##&"b ]5tg? p!OBIZzG_). ug"W[B2l/'o5+yZO7b> b"%`L(/, 0h48<|j@C!F$HMIJKLFMKNNpUOvO=ONMHLo2KI_\H/F?ERC|@-='9N5/B)c#KTM2 re]xB'3$~E se>7~G O fbe P@g(.f  ; \ a $ O ZP Ju 4R 8yZB|Mc#x)v$Uq @dn h# '+K.02o333q1s/-,j++,.l0P233t20;-Z>)$ JeMn! P y'  pjUOJ/f .1  -K!Y)!t #BxeI  PSh7)m`8?C!%(,i>0b335R78l9z::Bb;,<(==\>>E>lm>=R<l:X79g7#5&H4,2 1 W/ - +).'o%&?$5#.";"X"`##6$$W$#"^" 5'n`M@ XxgCZ  .1 5eZv$\KEa= jpb'QCFt| c( :43 S _3&m3- {!#$s$?W$#"p#r##$I&['+(E)<)('=&Y&&'(`+ab.w1:94T67M7^746_420.2-,&)_%P 3-V Z_  ~_h,crD "#n H$ $H " fVA`M\ n jzI=mN>, M 1 -s cR0qFC+jSl - "pun!3$A&'(Q\)) (&u$"D!-? V7 X "W#r%&2''1&g$ #;!6p?Xz@[bP WqlWN \ W&(Js;uR S x?EC.M G:L-*Sg)po?#v&*K-0'2 2@2m1N/%S-A+K&)\&E$0!CW % zj s  M bbM! #b$&$(Q)^),B*.*w0A*R1')1G'92$2!22,2r0.++ 9( $H ! m>_n2* j   zH  m . J =  `  ]  M   P h< ^ is ? 0 <9 c=  S   qY[ rd <8?V!LE%(u,/_2q45e6$P6j54a3 20Z/-a,l*;(% X"KG-| ] - t J>+]XT26&oZG:U}iJ x ` TBC:P;BKo {(C$w>3{kIiRf4e l"$&''((\8( 't&_;$P x#L JYEkleBfX ^gDOuqSsDAvMk] h;W* x7E&e0 cqP!VIUdCs@Y St r t h > J=|//(sP=dId* 3{ urERUtFKZ s !"Y$$z%Z&2'()M)Y)F))(?' &L!%>" ,'~f e5 ~J$"" o *=K~y5C`4 2S ;eLL[8;R3( P.E%26`2'>5 pz| ..]H W ISQ,\G#' ?+-W0]12s3K4 4n3 1u.3+'<6$D!&  mC!M+"Q"|!{t  > d Uk hXh"3j'8I[ ]o!%C(* '+++,,+r+k*( &X"VPN V c n;ILg9T{KkdVN [ D (J&SL5 F"%$%F'F((F)# m*8+,?._k/[0T0S21 1e 0X00;0?0s1A2kM4c578::0;x; ;$<<<F=R>=<3t;r96w33>/+&"'\|%% 9 .,Do=`.)oiTXQOVkq^i 2 W (ZjHnlt  }jv` l p E =f P |&Jv}95N,y{4)f]!6$&W( I)|))sC(4'%>$"2 Rqu%5 e#;o6 S:7 7= 0C?b6wa  kpf\:6 n  qT Xf*  EDz0Y}fe|"|&* I//37;+c?BE!Hc@J K LDMULDKH!E A&=83u/+ ("^&n$x",!h qB a&vz4 2!"#L$e$H#(" hHadK4B96+ Pcr0vlN}z!(;!:;3jֽ/#m<>T0y&[_ (X :>bQxB d!X! ']YMFhPWUv  aX? "  1 0  ' U)2XItV QcgRj $0)-0t3'5<6Q6q^6 5n<301 #/; C-+lY*,E)uW(x'n&%u$$wv#1#C##@$$f%%e3%H$"b '="|$FMcj--B}2|bvH^ WO,,'DG"76xyG@rS(wv\~^ 3 8\ @ " HLP?("n(t-1>57i9zs: ;P;SP;:":8?6f2.8)#I$2I %jU Cm&q" 8"~=%d{' #)*!*d)B@('^&%,J&u')&,.q0};22 2~1 0-u+)=;&":= }U5yM^ZB1s+ X  | Z$  E L! g 2YX>b lY,u@+O&=o$ >ZO BeGlQB>  {04y*5R#B?\cj g#+}J*z }$kU'[= reON'&?L8jzUog'FW0|*R,Q0> f 0a)^, &$(6+ . m/{/e /F-*x'$C q0E1)tuL\^ N   wqAi'O2] \ ! ^ "q T PmG L_!G!"U!o ! d! tsgx Rs\< wl}l[ #_2&C'(?)))*a+,c-R`/022 b3j4 Z54 L6+]7M8C:;x=?v@sAABAVA@V@, u@@pA]BmCc}DqEB:FFgG]GzHIJK%MjNN}YNQMqKDHEA>;1:6'30J-T*'D%#!]z.c9Cm}qXVzUmKUSt} a] h9^>D |JlnB!!!?y [,~clfa#!Z"z#$&'*~,%/Yr1/34\320^Q.+|)6'%6J%m%i%i&'z'j&m%T3$"5 U7x: E'~ayPI#vet= _ Z1s40I9 * 1[ ^oW5 qvWr\!pl|\(J_uoRi9l Hc+]t! #%&'&% I$Ay" _I8SsE28Iar@0X%by Z w6LTPNEjb<Jf * RJ < ;lIKp&*ek7{jjz>]ZrzCP?x0M?L_a qa u@+@n f##'l* -6.000I0 /{.,!*['$( C '` 8$ ),/1234iT444m43oy2d0->*^&9"k?$#@ *h}@GXC&oo2G-mG+I%   ~ ; > k  R  vUv /59 J9  C3H4A;[4!%W)=,~1/5z9=D$B0FKILNOPgO"N;iLlJ5KH{FCYA>;*8.51P.,+Jn()&^$"! -$vQTlb!y .- L : ^`9y*vloC8 Gv v(AoT1w%cE4~HPP!@Xo :Tv h?!X  #'),./?q12P3d13h2 /_M,X'y":/ u v A / L : yRQ4)#{.3=?Y`\_@ k  y >gkX}   R E yEP"G0?!#^%z'(H('(j &r a$!-D$  ! `$]:k%Bj"JN&G*MW.Y425AG8$:4/;;Eb;;:q:|::;Q;GZ;;Ga:]986^m5/?4:3ZL2NP10k.-,;L)%!n L &a s < s  c F= , ( R- YvizuC4{ h *-:>@MHFC(kVUF j N {2yzZ/*$u g  ` 5 EX!#d(-h2*m69<q?AWBC-/CAj?%<YA840l,L)'V&%%c%$ $"5 8v8/TV@yDgi Y9  E `  WW # & ( * + +q@,,,@,5+H)T&K"FN 8Z d~?%~4fA,eU`ZV D \ ` V K =# 1 V;Ua|!]yVe&FigN)QVIp}'03}RgYHF r Tb HC'bgz}()}<C)c*1}+Kz[> :^%z f't[&d; (  S  /m4:QmXkAk V uPZZ/#&)o+@H,,8 +d)'%h$k$/$%nr',y)#v+X#-U.D.-/..--+*d'$a>LS e~L~ * uC%8 HW.O  }#vO`W56 oZ).FHY@=&1b7c4 "eK93s  #Z%'-)=+`l,S,,++*6'9V%"(!9"Zc kq!+q->xwwF3llX>)~u\Y{ ~ | *} 5$vG6q1~ROv ?   0@TN!ri%"])n-169dk=+)@B6CC/ =CA zB pA G@ ? =<3q; :v8i642r41/.-P-W-Q,, ,+)'Ud%#* l_BY}d37 UVOE  B } gi u j Qn:B"/^ s%Y 7 5F;ECQae !Cr!*"u#%%(L,R0s4b8`;>VABmD{DcElESDC~AX> :)4.M(! 7}(rU;$0 !T""W!& _Zo <Cu*<h!d V<FC!R+AYJWalbvw6_9OE7bD $ \2, )"$-~%%%\%%U$$b%%*&/ 'SB''&%$$:J#! A=/><,> pBl~Q¾\o{l ^}tk3k UN G Ic(Ckl6uYx?ynwrJ> _vUgj, !!$#F$$ %$#>" /ol C@ E!gu"##;$%%n'<(50)B))s(&#> 4 w Nh+q_;l0H:"/f(IG5?Sd$nc "ODjL'!9J$.'4)Y+&&,.+ *((%E!ka.u]N57d"p%)k,/o37s:s=[?AA?S=:6n*3/JJ-m+u**+#L,-y-C-.-~,N+-n*|)c'!%"6Y{ldV 99 /3;- u x% t |f%]o-|: D" W?1On|aI2K\`2,p{mqA %k QO[<J7O7r"%)(+?-.- ,l*'m$h+"MGRzmaEk/{t u!U#_M%Q&"&%}r$g0"]57;v, :1^<wLTn\ gYCX&VTtH0tc( kb' 3 hj\:*q3]7aW!#}$h$W$#"!!e .gEq0Z MD#Ih! # '$ $v%TN&A 'c'x(m(('%VG#=%"ZN .du*AdH ^?Tp><2,-  ; ur c h$ i M n>.9@OZPr #i=av-Aq-al)Qz '* U L _#m%R(z*X,S-~.K.,]*&T!M.O 8 3An { QUB$ZP9ol.^&b ("  &d  , v \ q ):.8ZXF  C9C{ F&K]&wI[1]sZ3&Cnl .UI   O=![8""E""lz""6"CH##+$l${$a$5$*$D%$p$q$#%&/& %b$'"V&Wa 2iG_aV@~ 70iR l& ' *V6et "en h g/"8r&9r+B!53-@AOk"_Db4(yRb $aA 1&,T195I9U=J@=BaDCFoGGEYCO@<=B9M51.s6,!f**)'&m%w# @"^ ?*+/HR f,!]!  okldGBj<N"$ 'n) * + , -fI-S-W-o_, +d(%!wuuj8 aK3`6L.U!~ FbLb'D!_U   % [ p6E l!a#%7'f2*%A,t-e. F/{./.J.-../1c2}46u78v9=:;;Z<#>FI?6@L@{@o?4=;c7 4F0,)%M(# WeN*"]zL]1r`9&+/|B>8 R  c  yi\gz(l1o &LW6k^5&  _5y <N9JVKU !L # !#z!Q)hg=2lr^[Vkmz^)%  "iJE#'.d'6hoT0t{PfD[: { < 75Q>]88:_lD6Xz>M }SIRKOjYT(z441~Jb j bu^t5aF ~! 5A-'I ' y6SM:d9g"s@owb7P [-Wj. _ kUps]gvt\~gSo%H?V @Z-B8T]yV .& 5}b)l+O}fs]w:G!,#AG%Ed&'''Eo(e))*9D+"x+y+E*vu(a&$!D ,y  K!"5 #I4#%#S#"}#5>#Ss#1o#)"!}PVL~ ;RZ&B$ -T~%g : ] ~*u7 9*v -X9hwAM<^HJ D} -A `FXh;ZJGH;7 |g#:(+". q/L //-+*M(&^5%!# "! " /y H"j#%'4)s*!+U**)PJ(h&:o$"!IEN? !2"(i#g$YG%]%&$$ " p} _ M~gmck e {$Grt %@g@ $v&!(3((( M'&Pt&@&l')+|-N0ju2P4 5N7 88r9998u7Q4s0+&N hA  ) | * zy8mdB H | 1xME`<!.J#Iworkrave-1.10.50/frontend/common/share/sounds/bells/Makefile.in0000644000000000000000000004557214221624202024416 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/common/share/sounds/bells ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(soundsdir)" DATA = $(sounds_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/bells sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/common/share/sounds/bells/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/common/share/sounds/bells/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-soundsDATA: $(sounds_DATA) @$(NORMAL_INSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(soundsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(soundsdir)" || 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)$(soundsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(soundsdir)" || exit $$?; \ done uninstall-soundsDATA: @$(NORMAL_UNINSTALL) @list='$(sounds_DATA)'; test -n "$(soundsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(soundsdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(soundsdir)"; 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: 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-soundsDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-soundsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-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-soundsDATA install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-soundsDATA .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/common/share/sounds/bells/rest-break-ended.wav0000644000175100001710000161165214221624107025116 0ustar00gdm00000000000000RIFFWAVEfmt D bextZREAPER2020-09-0820-20-46junkJdata,I`BR9@&##"0Dd)6ER:`Tml$2w;h@R??>2D.P4]DkXzp3{[8Wt)oJ(]&hCh/HkV%Z[}_fi4aL,eD4N\._^Y]]zdt.8E ^"1HqCH`&?u `=j\[x0vE T 1I.km6R! soaD94i/%k"T!b 8@   /  C  ;^/  [I Hi}\.$t> \e O S g  }4 d &n%_+^&{!qU+,q56Q@@L.@teg?^T{ulCP& n s: X8G{PrnVA "%S'+)y,/14/8u;VH?BxFILM Ph SV*aZ]3iae_h"kd&n)Jq,s/7u2v6mw^:w=7x[@Vx+C xEwHwJxN zQ{U|X|[r{^x*`!uaocbiea=gY`hPgiG j>j6i-i%iUihJiy ihw@gsc^YHSTL{Fq?a9R1G*<#4/U+ L&  !_mVdtXWuayDW2pjLro -BdrW2~bŷx# 2Qa" ?;xpFE D=H"pCGS?F\F:dXΪoH0L:0>_7j J:+?^#k5{H. IEqtGG`.#)R``/#t ?T+@&%A u E E&qF'J tQk k8ȧ*XʔI9Il z; * p`O`!FMp]Bmg" %i*]{': ׷ Pe*|_a #~ؙFO X  ѭ AC  kRUKW@ v>:,Q P. f ̮  vss RViߗGNf Ea V#  r觵 ؕ| Z18z0\7Bmkzo媺HCN*S%>r3ՒZlaJ]ҵW%Ҩi+EKqO}&'?߾Ž-] w5޻ ݽݤwFBk넹LWp+=A_,mG\,L럩P$W%k|W3\ԙ((; aER ;fusܹs2a쟥dVWfK^`(T(L]Aoħxk":%“$%$?z$Ds#ņ"5"6#B!d5*"n•7!X<&2c+wZK-2+LX(4&`#C!1Ԭ nLٱu9HP}{ "" l} v16),jk $ 1g'_ΝtSh/Wgp6"#zr&FJVr؏ X==#grm엟J:BC|B3T-g5,B7/KtO- P$u* o% ļ $-S?,<봁  DST p<r^-ARf q`[ 02=z Ŕ{kIW EHv@ՍΓdYBP2+j Z^!Us\mo$37!]P֜."էǖ ;rZl!ߩ!0( @=1C!ny{ŏ^I$=w!{ q<!ejo= iL#: )( *[or~xo ra _]&xS3 w# vunXrxWH2Qb)qF-3Qh,ls2vVV|Y/hD.e|Rjé@he;7:i AۦcbzKet7yۼcN͸ pH܈7}!<-)|M:xAɖtYﵰؕ>*J)aDnnzz=+MPs ]~/햔r{93%M{gIna b{ VJZlG1iˬn%00t+I+_O 1­qvz.|#O=&P&P|r%7D&u% #[/$0F#= .Pbo!<$xe(F,j. /- ~+3 l+aV V(7 %r [t$3C "t Y  ,'E\ECP{;?#00$"& VN(}m Rt>lwlUq   ,l }(2By{1iFL @[pZb|N˛ iYAY^3oB3)Kq)Wt:j?E~r{2 [6 d .;v_ڪxeXmS> CYw8 2@(]BB)B.}z$iHH;,G: _)SYAD.r'ύ7wJm\* H^ !) GЮ}c*T*%9EjC F+Y iCJÃq1+N3LEik}q1x8 jOM ;{>nGcs G3{kU/j?Go 0gJbynR q,+#+l3POx%c.ݰ![Ztp3P!ԧDqnwO2 LB.#bHYFESU֔eW_gWsh&ϣTn}Сm@eO\HH?G۔\<$ڌ"ٔyYٌT9[m,0vKێZ\pR_?_318FLz3== LH핅Ѧ9Z x WrWq EK@_НnnI{zYDTAF_Wَy !:$<\$ KM$ԑf$=L#,X"yKv"t"I|<$T CI"  &{+| &. <-[ +i * cB(Қ F% N$P >"4 wg I>I ]itS!@%x &Ī$Z!/O"baRq= S f D)] H +K fY ֱ }d ," {- !Y"$D9N~o78LlMxlQP+@oAP1%W'lQEcf_dg)+_h6 aH X< y2wR\%P-nF=7@/62{SgnXQ,!"G O^Lr ߿]tEʤ!6] $+Z*%XF 'R ]$w I, T9hs6h'A74s5JE} `_ ,@BB~d4)Ô(x ' bj78 e9:G49!=gzA-$leҋr]*@"'m>c>8O[- u ꑺ6 tAvҍf=5 ?X1]bI^,GѭBICӹEן<l1*? UG/8D(+дcU˛7˘C{Ͽ#F\bd(ۑZ`ْ9?ig!hlQKO6*EiȤօ v隰|w)! UGk5.P@%벩W4l $])33 #fk u, [ w 7-f ?] 7 3H<\Pi1FA5l<"Wl691  6<,&^C$"K4' * n(U\ N' /& 2# !!mi Г ? m O AtX#`zfO#6CD`3v^tp)V+ = Z -`bIhgV}H A Ja+ l>U*neDĄNEi%==]h0`d xQk WE]G CG f{s^nŀ66y yB {;P ^8k}?5ߏ+a`eJqEB Fnnh ŷY<5hZUYv}"O 29 OX j>BF\Us61xb%x-kg.͍T/MX;ZMvL v-`K; *Vh JbN$sA)f>Ijz}sԓsշײLq{P+CBB6+ڭ>Gh9֧EYӇѕWKΏ^w~2h]!*#ۦAݷE.y{-P%^4ٲ> VmMM y#/*鞚G #]a"fvDTScb>I.kjL+%>귣@(^v`._M~j,M9>;AF|6[}8 ;dATg`C߃a+rE?YoA.1Ґ+qXn0Vu>>N-7w"#~r $l ƪ#3 7" /!^ Ut2 i p} n ؝ # T Y K!;\_QpXw''3J]V y_  ?wj ;L XIDZ R28 .jacC5(Y@hfFP}xu!39LU/ N/[SC!7R-Fn)gg3 &O'lEV}I~6T# _Ƃ ,< 7&q8IRVt$va& s} ) (<O =6I 2bKO7w޽i |*d;'+ ~ui!Lވuv>ʑ+=~N L %> 4Oz[&@@35Q.١n$W:O<=dzNms& m2 @FTDĝ6ko;/- T O ( x̀K;>84ņ[#A ކKQ0 z3q\'9iA$yIZuZH7P8 ejbOsqC ce[tߩ.Yd_M߂ރ)9kڊI)w-V0&Ӧҋ^XGQqFhIcp1oU޺fj 8ݏcV  ۢ82vRhwG*T@UJz1LgA7fgp!ﴒBR!rZ?lY Bhqcffo ɑ ` ܄Ii'ON X9b^lvorh ^ "] DVn&Vh?ͧuM'{R/  U 1%',^:b@\Z8 H  [Tǖm@?}<V  7 O 3 Mٽ} e5 &B8*K:OO|t9U1bm@Z! C} ڳ 7 Ho|x,_,gJX0 /-  H7-&+o ufx2YyIhxn Di.vNoS6&vMƙe "dn 0:ܕ xZj!"μiY]c>XD n&UN eȳ | ` dSwo9WAT: [ lz~kKG3a6G &p  - `k  ;P- F dnA_4^ >rqL40L8a:at\ɠBudy&elNB)vm{qߥ$=Tk3kR/k\u.nGZiJafNaR&"wzⰗ%2|L2⦚wO_N`Os.N^N޺|e܂8s2nJ؀'1T-;F.)'h8T0]w ჭWc縷ުT)޸7q㟝#謽캼S $ڂC7[MN6p;' --Y/ B{&!%01 ;6$p4ۇOO4]2P K m;0IK}c*C%_1;U3* }1; 7 ]Q ]j ¥R eu@ - 5mq wUG [~k`V; v iHWL7Z'YMMGa),F 0 ݠ[;zXrQ  8 X dK6K<)o8դBw$ m22ȴ.!fZo̪ĂK &  9*I"DnZ|;mZ_ypD σ I Č ݥx} K  $h  X>  Vl ]f +\Ka"Jf9}b7X~t EԤ *{ b  %@ w o kS[_\. b O$e{\<)#HBs'x/ - u ! /_x3,g* E 8'b; Ҭ XC x[ > m  \ G ? 3 J Pv9/ce7rq>@ w <-fPfkj K o,5JXL+U'R“+v04-ivd_6le ؚ È ϒ-p]GQOJ+/Q  87 6 M8 ޟiS j? Y B\> Ŧ!R8< = ݴ <'}*m}X_oM>M @T n  J g1 x wi ݞ| 'zl?[l>" aoBAOc[(WJ4 > 1i VUJ , ID4"!=F F:& 7%6b yZ+d , 0?_"x1rHDbnGY3r;kfv./@KeD;#W EJ-cQ4'^S-l:易$= j^:xz4N*tQ;Jnwf|P@'8m ;6nn_nhZt={[wҌ܏vق~4`lڝ .$^,cvLvhw-_'Ak޶]awkcOqD/y$oe~0 "I# ,+f7{KIx tHai_5w y"8HG Z"Srbop/Ccc ?ff9-_-OB3 k֐hrN ^Tns  z BK t+[ Sh\f*%uGtrM:o Z"- j):Ioқ F) A 2U z jU-g n RDݬ s V -d  qsl EEYTH'v U5 swh `x Q'ܸ Q*F T  Jk* L^ ;%4Rt^a528=r.8`}aqN+)aL L5G됦"ltrtjS(ۭ$X;rLmm[1>豫8%⏏}\ɦܳ"w(Tk~Ba=v2aAVfk c,ߠԶݸۤp[ڗPI ctOZ53+AFU~jԞn⅊:9z`nȈ>e's*Lo"A-*Wr4K3 =X{M}9 ULBp Dn^yv vҤWVk^r' |O` J!wwЦx3}JO2KLJbI_xev{o2{u,# g_9 X i]߂;&Cra[Ӏx<xkBO1TK"`+h  5Y    Ṕ &-W o;.\” K\ ]7 ywX | (;ډj-|C 9  R ^q# s jn Kq h#  مg%OP * !B|µ)  ^C lm  G6 oR !.dV'QR  Wml .} 7! :  ! r6s ee|H{7M$ Q /I [ )/Ks{(V><h|}< g 2G @  K k   P 5Q1jgf=V{mh`F]R(7od +Mb IP. 1X 6&W - X79F lc;?Rk P% )E< 3/? *1 }6v y$Bun|87'F>ln$1>& Hnud&=K1n0B5D^_Kɵ@+_5Ujp0S10QztM7p=2qlB>^}Y 4D'~.oY+}[ER6!&r۟A 1 s3M0w㒴Ex *Z9%*r$5:b:-}yGN"{ USk* (nGmݿ,Xbh4ZlYeR=єh\dt*{@Kgre{7r`~p54(/ 0,@P Ɍtm^w#mm{$qT'HLK:h*o?o*~kS=   k9C^b`gnpH-` kf S$ u: K'P  sd*ȑv  I ^0 1(L : D  ~w ! dW h ! fR h Q) 0*e,G;zL sj 1S 'q]CCXQY ]| +YÅ (&) H6 _N 7 Q <P];e&fOHS V 2CU; Ŭ9 զd O  v xQ2 OqRx $ ?@ u7I AIb'0a&xKy 3 [ @ }` " lp p :  y a$vpa <.c*N ]3,G / T8_VH~)P1[ d i  J;}"1DAC0 wы ~*i|KI)  L] dž_I,`eZ]r-4[PNCO` 09",[nae}$RꆱM"r|f[j@EJLJR $ZI])Z _[-b,QKiB))$syhv *86 ͢u]7 a_&E$R  '.R   ?Vli m 5[ zr'lũ7ɷP|N:^9w $F Ԍ^k1MX}2 .f{%h%? Q 4Mb/4ub?}bv % s qvǒ ~3w 4 {' 'fsT33[" s* w T O Q (& , nA Z x xZ h ) %F ln ~EmF{Iv } ih N@ g. i {  E:GhYl~^M 1' Ϧ ;#U G @P 8 cU B+ S f| nc  dU y t## *3TX+!uns! 7) 96 $ -  H iO !,-'J5BnUZz{ ^H߈E - ?( T :-21b=[ȆpUfGNPP\ Q$JrSww; x nHKT|K금%!K}%b|!L):j/#WH{Ld!r7<wk-뉤(\> QiHzY^wF81)Q"QHWo}~|=dg%Qv\M8l[KQ"Yž!ߒZ7U'*dXD9x,|v};#?)Kw(51BC7q%T/gMpR_SUFSP  rrNW'4]rN7<i{.xWxG `~  {=lqlp?fIYqHѓAKPSe+/hHنw[6v"Q/;d5%eY-zC[|U*s3YLD ; άFH-/.b"8.Qi/Q  Ƭ:6j<5b(7!oK# A  3  o d N#+  DD P_ G? o xWJ ն 6  "=`>d?3$0 fnu y@P If  mW n9( x͂YrvZgK.2K]D DU 5 +_ WQ )z7{|u zG @ Dnz = WQ ,f*re~UbChu6 S f6w +g y3J acS Z &% K wYPw>R|v aM+Ǘ tS 3q -\; sxi9ڻ.w&yXq.lk|a.zƓmR.6I#8;KӿTo$fhD^@*;,ʻUP^7Ѽ_ꁲ'[MdشtP]@mL ~搮jJ lz|dQ<_#X9jM-bG.)I.+Lgf?'m>B\.o&&/o7\]fsACpsOYok5Dڗҕ6t(̢ *\%RT'1ns=xLU@) M= N % |$]60 HOBK{!kG.yRMZo}K tŅj{H~R3@մ?VU3`k' 2ic~]s(:FBS6RG DjNH{EDFK@ Ps  bUUqjpTD S C o 3h {` ] _XV se *I ,< q/ ! Ʊ] L 7x _NjmR&Ђǣ ; -Y  ; ; *)<`n| Oԩc`6=xZp9 d 6+^ d d@ ]bVryG KZ +r|  xI@ {{X 6KNj\0At  U  J  v 9 QJxiykħfN%AL+ ϮU["eIyq: <3 @@ Ѻn FbD0-'<;Y'K :2L *8 AAPvQ04C yj~fZ샸l몊Ꙍp F ; Ǟ'6m/ X'{ze(@Iqwh2@yV菰9(7 U%wvTW2O^"n)^3,1O^@樽 㐸֕M%DʹߣA>w5q~"=]:t펚<-|;&t %F2hڨE}*+O^)Au8cI rq1:'] <h:GP(O?} d?ZeOwp (@N3:>cr5yu ij ( ȡQC@sTG-0oę8S7]w?x(!fK cyYPT9vf;B_#xoIan^-A%NOFj3Xf'iX0O&*r'<בBX6  PNAo-!   < n7  ~> ~ ` + B`o h*1 p QnZ ;i i~ kp 6+C 5`< #a 4 J*0n >{ d SZ?G'k{-SnTlŶį N I- ?i ls\ %cR<HC7< EF* J 'z *<% P hQ~LMVDdl g 4 ?| .( GPeR 'g FwRE1Zz8" ;jYD D F@EK*-#dT.Or+Gsم;;  C/O=7iԟr4 }o~ \ 5Gr  = G>PVk1…a\ pRN_`km'gw )x܆!YS`7X?r|0`GӶ/Ia1=5 ?R͆3aj:u; U " 76 rcC^G; ݺY _@b J8 Y( : G4 FU fH Ӆa1sz[RM1h D[ & HTF 4, M+> رz  XL pg ` ! zUjY  wSN̛ƅIBp{hm%;yiF p q _N V# W" 86|$"B6v"H y2 : 4z$%$Kc oi޳ {M ͘hpG>@b8r Tص'jhҭ.7 j!…y![vus ZxC{u@Idoq^zߑj eEF vW KW `# +y , rBUD5!ym Z *HZ]:?g0*2X yUao+kv)C R;F%n?z,[G%رk,RкY+8UZK}P̓5h,|O]թ^ӂ_Om6gHm͝}L~եϙHfGW_bV*HCMmmr0UԣMa9>Pz 3k "d9 3?| R5t'H\R|'b3^fntX7 gMfC'NdN_4T8V̋n|Vۊ6(s7;[8}4pkr0h,)rA%d I :Tc/ `-*\"ka; VPz>|WcݶJt9 oŊ'r 0$|U*@fIŠ+=būUDg|YبO BeNj?GkW ?}!}!Zש;ɨw՘kYwSoٗZۀGjok o<)PsSDmHǡ=dہ~F׵&kHʂ\_48 CK ְE h' X E'Nq :ϒ %wt\P{i">Vero$P]>m hK"-'WgZ @iA+)Ǔ46 _xl>1<  D "CB2uރZ4 pZM8+$ۼ ա; t]TIq۠Q<ܽKEsG.b"١mضS׮_w ԨCӲ z w8}|:'EX"'Y {:8<!)p;\7pぞ h O㭁 CQVr lK g蘚EoD|4tf#^uj:mVM Y=CP 0cs3 *l5z[bpD Vs e.t-VVC J =Qt:,TXz._:}ubXUg$`Z60CWM>u3bJQGIUON֞oUjc;Pu!j6]ёhA%j  Fl jĹs2%4xH"\#{@ hV> } DS(& }R! 6p<$mC%t?ȜXo} 0',Vr`VqosrBT?$ 7^{ <d4 !g %,.0`;]L\ o( v shYdq_?s =#`&BuR*n3-U9 ,Q *5 @(H ' Y&qI%lt#@[= M  Q$.)s,2T C8+2E9 #8u\6+ P4O12 m. y, [) c& f$ Y ?#' A!'\ \" %w %D v0%X %; F`' vv((E E( c&9> N!Z  1F (q22 l T ݓ  }w(?ȕ9]jU/ًf2X8I>"{ \J0 "wOF jEбb ѷԯٴX>NK A@(IS`(8A6Y6½͔tF83*󆖾!yx%hb_Z3SQ} spNj_H; pJ5T,VlΟ˻,<˲<"g6Ѭȝx 7]b%m~b£nM_ce.Q['ă\lqZ"< | `03nWH<~ ,rCeZ#o7qX!~\+&t+WA-DPHn/z3$'7T:_Z;jqa:2I6պ+5Ҝ5 H2/P(zhFˁ0]w.({ [ ] \?1" +^ z: QC bi {D K &x BcG +2mmXZ0|ߝvt1cFBMJ j @㺪0ᕒe$⑓vKqW\:֖2T5*.ĵْ^ e^Zgl<I f+إBƮןNg+`X}DŽhI;CB \ ޘY ޛ(Vjqfz1 [ Q`.+8zV5 o?AFhHZǑ\l lD=<~}nPdYBZf;<,:r殢 S|ݖ7~Bet uxuNJL[J"tfݍr*{:{{ tLYK3dj˜rEV"=ob@ט  ~ OUfw|Yǣ5WqzVOh`J(IH;-@.. ] Ia2~2uWTm =xj bD 0;@F~A7̯z|ՖR?W`n*`z;p:NRk$@Xgf}-.r6' H) u5 nl+X<PLI''0B /zpjxnD]&i6o!:&nvqs/kBԘl)ri;?,f<o$PU'; +:' g&%? $ S"6 V5# kmTF.=n/a9v\b) < / ʥnA{k9 o f-  ]> L5]~sw?PP/3t@$-{!v4&5.n O &$3 tb+< 7 !ta *"< "#"f(#"m!(c'" M?%'&$L(6^^G,Q0X#1d2l5,A8̖LE#AgCw@AJ=9+A6zս5'6|F65zt7(;K==/>[ o>N ;س F7h 3n.9+<O)Aw#%-v~ # #ҿ#2!8V˝d 5ta '/ d? l& F ., b&ڝK:n#qy4[fBbc]('I \O*~d{NtDWŁ%@]L[ sW8MxbT h*VFRK2ۉzpÑԷ#S2 J ӭxci[$[Z hǔP&h *z! TG1 8?Urdn;ɡ+I'F_W+3=k#`*T^Kwa\O厏MR ݣ5]ڊuׁ`fy+e)2{^׽u- Ij< \ -&r7Ϝ+ZIw^-IҷѡO~#!-$i 4Ԫ ,C- Ƶt֙}w>&h-0\ӾrK&kpe֚a$t,1,R%M {,> >KRS n`Z#I;x?Z1{-vi]_yVEu/h ~!.9p*C:BcX04q0 l$K8SvA?hw5475?4ΆJ$i jON $+L":%R^''t' '&M& /%Ɲ#Br!6T H^9 y؝#e:OA#GH._e7bp!4,"&!s=4]h1aN)"8 ]RRetu0|# 3)_ Y| q(` :  < ; +jV u \R]%5>/#L{}w}sb V )-ycE>3tEd,,">92Zw,L4^2"lk@;rr7"GUn\&ERBG <> Lh"Ga -  wx %C,ZjIH V!-N$sy u"'? t%MNʌw !- >$5P$A#>L!| f ! H ,Y $  hW[e ͏W Q :"(شu+U+3+G:*CHx(;&d&$Z ׎"F۱x#8 oCI# „ w`z 0# Etہb6; g' ^ KT X8 N , ط" v (xdUK2[ps!xJ^"58%*āqj>n8Hkp9~]{i_2jӂDl2S2~Ûdj:zsý`0x_IF d1+w }xĂ4İ[ԋj 7jyi%MƟ3yۜQ)npʸhʠ˄`χfZyCUhS2#MLpP4,7<ŭ6=FkvVCzQL᠇8_˼5ypipDK}ߺ. AN/Z 9awQw`[() l(q#hc0yliG?[bJu9$"QQv+0{!AA$Yһ(Ed,$-t)J1,L+\}+G,0-)D(/d0' l/l,*qB/'%B:h%m*JF%6$$$")}v,* -+v./^V.,<L)Ws&P"![f tzwZh5qC9Do-9gRzKRr;:UR{i\m8$ 1c z_9&&@Mmj\v3> l  *:`9n3NJhL)E-D f1&,e%H*oÆ+@;'W^  fhB & "#|T$pP%8#saf"k6 M%v}%C &uT漧E3&sv!! K3LSrl=Rd9 Od 7( ys 9j1 V Z@ C|7 I 3*6kp|I ^CZ = iJ ,#"s Zh땾{WrJ?=[FXbIX.7Km-$$ack k2 F 76 1~ E ӗ&ҍȪ 8Ӻ-׉[ ^0K*9p08 ]> ʟaFEXQ]RYۛBmQ;n⢡5O:V6!W*ZpCbpP1 i=;$u~X8%d7y ;vpO/=R|nEW ,BCLPrBRJ@*P- (S$ceaK\EbP97vںh#_&sKJ'!к'l`&KQ%s$qt"%e0 )75=Ԥ#:ӎ1 f'áywy?=pAqJSH#)s]Dhpnnr6w> m)! ͸l4CXX||pZ+7`M[DX#i7\SǏN"Ws<*e˹ؙ,:tnEkx8_S-3?)"$H_:l0]'\C$} Oa亽ȷL{5噕9|5R6axbUsS R!;`ts-WNBH2:KU ]O IT'OΒ&<9Nypn;?{iT#ǘ % (/ f]IB _~q#WnBatYREe(#nAk3  Z Vy / M Cc a =l# ZMq td  Rl  t  O  I ^ < v 8# <} G Y (ts=:bD{T'Zu5gSW,o.qNTE`QR(xeŬsxGg/,\AsZ>Zl8S&y#+HlQ\]@%d; rQ2+{Ò&Թ'ա.0Տ;tO(7g16=Gՠ5D՝= 489ْ@ OӴtjm3}urܶNLyB+|4ĭ;`ݠa4sf W ^a"1 $7 c F vki 0] 8*g Faq6PU"* i@T- 'w_A] !cN4  @ y!* #S]%Bk% $ Γ&< <( B/*)9 5- ,1L21glm}0 0 1H i2 p4U?'5\ I48 1t <.v+(4*ާ(_'u&@b&p|[)|-\-e3/s30V3d0c. `+q\9(#Ws T!BEh\#lėndVrS{Oc{!|Ex E * b3_Y6<3oz"pCf.vI_buCg)ŷkSAB sWMv"f . G-}d ] Ǵ & ߩ ſ߃) ޖ y z549. t{=p +u$mp,U䝛@`dDUu m m4ߟ e_$| >dUf2YE=VPV6E&: -G8&o_wtv$f  L~3#@kx։e:93 ;3"A0pLٌ_LD4m\>iӺqfykεݺy~j٦dj܉|4+\/NJjIĞ19֙!Q0_ҷ!DZ>sMuVecS_LR.'ս]k !Փ*Ӣd|V-@˾nӑlOwjׂhM;j)زp4wojۮH'@ỳ' KC+VDf$|b2]mPVdjhKKGKG]@H0I U>3>hMSq0(^Ґ/lBnS"Rma f@qo!5}$( B' (+ w)E %`)[ )6 )nK '!%%K$!Gy$}9%.%*s`&N%NA$ !#"#Vs#'] J$ k &L&c 2$ !J ) gZ ^ %!c ?HF 5F0 )+?]%ߺ>71k  ak pJ zWn ! M.v +> w $O SLSQv/V,o2;u=fML+ڊs"CPmAt@tL baN^C1*z'UK l;C+%_Ev|xf87 bDF2*"Pr"N%oJ~ > o <, 1&  h9\ |X XDk  Ae,T {vX qN r +_ X M Fof Mo'Dw{ ^GG >G$`!^J""9!I. D%49A> & ^ 5   3 <  9 { J  _{/ !n2"7{P (&g-|Dn-UE{uŀ8I)M!O} ! y% 9(%Y('{lf(Ӻ)|<+h,A-;,{*%}(k$!!} +Ok!PM&)+%[+D)6"'Y$^ C.?x9s 4lb ޕ }QG @ +K5AL)[8A+tKoU_eh D )/w`Hu?CN n}.Eն7N xT3p% ^ # [s o *S3 @XO[DY"RjS7/W#.d豾4JPfz`-@T9?(u%X-"ZH] F>' 0 g2 p2vo:IgJicF "Y U uW  ^M /v *   $C;r > [u@yGIU7'ƎkhFMmd5XUZljgQcu_UK'rx',3'O-@g~A4|M`ckڝ /md(em-/K801^"GM 9<ޛْ=r*-"500(xbԇ e$+7%x5SlnD{V&~ Aye. jŧ=P&-(T?61,<,w[_`vQW_c}?]mf2TP.!HC~? KӡqhM9>8\AiH|/ z <0Gve s @x ۑʂ @, o 9uE:E , wMqad b w> tDcus=c / O > z5j w90 /7 \; F4NwhG w jc nQk2;",^ә9D3V|HPM =J EVjmf"nxzCgd[Q ug|AD3(VrKバ칖d1ჳIf KZM53~\蜹o~no=ŭڙEY9߻e_`)llW$ٯk%רԿlӳYyIkۃ7_[~G=n2C>9L%c:U-'ᡬ}>-D{ܺxYsI94 MQoMPqH%#xTHE>AmTXH ; %cC. R@A6R4,];T-l+  \h|o"`%C4&]D$$H{%2&Y(#,Hn0W@,1b003#71Ž2Mxn4q ̌4)A 2*i K0 &.I;c+']&i%T'#"|#%'+؜2.]w.+F)J<j&.#":r(** #t  w [ ʳ 3(! m5 @4Y oc5 ) W- 3Fm`jbY p;$ڏFSW% UF.YM["͡dtG{DNtO>ƍqk)™jT2bOAᢧWSܴۈ[$݁=yو4 Y7lx<pJ]?C mnɗR K嶸 I6 \ YqC 98 im7 TFQ_SATZk2iB>,;K2tO BUF %h { R _ |.6uPR?̢JM ;3{X.G8j&kyjRCVH[d5pmluGLn;][S vK.h!E"ᥐeΞ9<Ş:FO}J$P[#_^|-S ۇ *!# Ye = 4 4gE(Lb586{+b7@CZAGqpӄUU s±7W4}GWR&..b]SvP6vh<.p@;q4ǎ)UK^V!8OoF`^c s'G : x6 ߠC ~ \'+UmPqef7< M( vSrycJ P rs s "o "W ! $!Y  YƢa~52y;h66MBZr8~Z",;ׄk5*Ck)9 NȫJ"Hr|/D7 {G (3p,6# {yZ^?:j/in0TbFf p]SϜ~虧 (0e'߹곒2{q[tqUCG63Ν:U櫑|ͺΩSwq&vD"Ȑc* }1lIc# %u;Ո=D,8IYֶ`x|g]ByllXN67:uE%٭,c\!UeA}Fcdm uHCH}WeY@&F:<dKj^2I(' E )4  wX G  F =X G  w  Ob xJ "#ͻ|1*D#"  Y&d: '2 8(S #)/)g+Zw-x-+oR*p(oo &c"5 !q?L- b%r(s)m '$J#FXWI1B4 \ I 5 ;E tɖ PQW p3< 8xkH?6z3ub&?-0 9=R}NvH27tonU%T+#;^*XR ?Cp;Cbڇ&}L s) a NE@اF@`! tþJ75?hE/7)TVk)yBdN4RF}$n}('4P_?jU6&|TXσʐ`Y) cZx$csB &[C : f ߣR x_ E!R d)g Է||M>%sxMk w}M7 saV sa.e\M!y&{s|8݀蹒Wd3.P0lb0#`gZ 㣱2yҽo)x|xcj`P&_y{W虨!3R6>QPp^^1@4]|++PjΩa4@zyp.X3)w7TCiO10jUuC[N?14UBn{31UqU !{] 8N4  j  '  % 9X  L 8 FJM ~) h? )l  R)  o  K. P BT 6k% _| N$v 77 ?y Uy<#m i8rh 1$+ K9 /z !lxD69+.~Wr~`눷8L\uYA jMٹL~`Ho1%IK1=9u"[_s m:j=EHJ7ꡈ@/h$ nCRtwZ^;j_$-OKSm_| jpsWB<rL+ Dk f ( SW 2> RZ 0sIm[D cH<غvb$k3[pt]8Im{e=ia^<{7z/jb|5W_3m)KE @]^',zFH`/Xm8/1R<?pٕ <qn]~PA$E<% V|Zx !BvTrC &Q*bKSM"oR琻lcr*U-ڋNbݑ\Ql@P:L<)ݾy.Q.c6JMr@Hx)[׋^Q3m)I4T9N5'|Ȣ|G1w2xyrߛ":dYH*[#$ !W%M2̲? U%^TWGv: V(SJFgK υ9GZDo8L[|4Grz ?x AE!;ƍj2fd"e&/mJ' y%:E#6'n#e#p$Fe0'5*,"6.o;/TIQ/ T133@#1[ h>.= ,{ T*|:'n$\!>,Js8a(rB H%d*"aj+L)qdw%o#S*GO}PJtxQ# f( Z %HnT B<g$&-a 2,Y `c)WkAabPax0PϚYn+5aͅ3T9 |젢ʴr Rm´'=: ,Gq$܈M^eF{|?գvw; B ʉD-2]AeMvL# <ޡ { ([ 7 P 6_ ؖ Vm vU  d׈ 5^ @ L >l}.7:O9n@W>!: DZ`I mI 4  On(E{Ж\A^. (C v 9I@ҔwMrQfc#M) & Qtw y vC HCY> &f*P2Tn= M|^ n\ rc~YưN;\A2_tF{ )A *0  c2Pc  K F70ꓐ2|"PXTW܅y*W-5] c4n{2-Ӌ 9 X$ќ &Q>eg! kSxDP!b>"shE# "&%aR'<"J ] ,hu^S&ԑ )h4U<$%; l2E*a# pRMC pHU&\ H+L!% _dZ )Tqz |=5 \W T (!<5d@~Gl'/UYJ}Nu[ ՚vnږIUsRg(f+N* m{\:Q>{)%먗O "t Di0 >v !`Mq1{qF[*F=!v #XL!I4a&,姼];@A2ߦQڞރшnlHa(# ۄ>ݢۚX ĽL_ NO[4R_>ȶB^Dž.ΩѸ۵C`퉦퉞/kIP.yg>9W '>0&E9  gĶ!4l\@ hZ 8< ٯr % -MpyF)j~֬ CwW4cPi~) sաkB\z Lru4T\gȋHĐW6TJ]Qf0}ܜsdV614tb׶0CU+C)y>1p:306yj4=2r5,VaHK!⿠]GA03+>[CB{aUq\FL9 W=;uj|Řy {H"a`PBAW' ΠF;īJ`>=DF93gRt ,AnqִGO#تP/TqDSI:m bO  )V ǥRe 8 #  L ڙ }wE M  ',=l- t Ȧ/ 8) > [HP r ]zvE km )!e { @B  * B@3BY hҾ p t 0vbXey?a [ Y ?ܑ- =3J?2 H d ]9 P Ft 3 H Ow 3 S$R 8h 3 {?p,MV}7KVm&9wj8䓴ӈߥ5NQlʌQ(ezI x 8Qi|I]RʹK=G .b:wM)#[ cL>mԨ?'3?D:«wiڥ|~[au |A]~Uo杍=,NE11*w-Fh%5.晰'2"`MxlM&o&G#D $%x)A.4}3,:۫_SAB׃HP30R =U`5q[܁a+ghzhӳll߽pU s_ 1n5 d Ր]( rwY @{TUEOu#ICH ]Q{J ZP2 uW ~Us|Ry=RR}4Om!J{#@`5PVF46p3SC1(r @0 1 ~Vq ە$ւ'ؘ8ܣB^L/[J䭨Sa- !ƕCRbWX 5-'D1 <?z"z&/Ԁ;0 XI۳y$-t :s֮ Np@8cP6NN` c ;Φ } Wn$xz<ϡzdաՙJ(].G݈Q0+N܁'?ۆ]&<''*!-h4W/4%no;[RD%^I,|IvMbC]RSR;PYQ-TMU>aÜ $M B, ;8 ʋ5U 18` d,H '_ 8(0.-9&5ʮo:4VU |. ,V!*j#&&k#7w!qY-l {q"p C-$~w%-#)"@#$fd&As(ap)h3x-4X?1a05.>7n7*g7071=4m媖1G^.ܻ-t޴-E/k0ٯ/,9'ӌ)ؗ=&ͣ$_s4"xՔsvm! # "BǰuUƔ[ DZ6Y"V+{P´y[+eH!Mʝ# Vg>nĬ+-ˊθѼ^2ALD-qP)>.@ Y+i۳ $.G} OIec Ta !Lbb#/4l- :5EAՒ W 5) IK%=[+Ncw7<QI{w$[M_I %(N'ֽ M_reZf@ 'jm R0ST6ԍ7)t81:9z73Xl4F=2:3P3˾4+b!a0!G_$ _? g>WM ъ qF0mNH[,\ b" $/$yN#x#?"fs5!w5 W@㙢iFr҇3~ Mt'g9Txk-28e ]싛#hJyNZZuU~a s1?>%(?+07.G722'Z2vIF/-|̋/XC~2618}2--s@,,::-a>e-.,027)]ê:^[=ɰ@;S55]1 hv,d9''i!,jb+PUc< OWm!"E9 A# GdZzY )^=V#v   -ZGΓ.p,\;LMa=z2W<㗥 M|Wh;I$M׀N RCVRxE(m'֚:uxVE`V Z}iy_؁4&ݚU12fTERFPEĚ( B(@C Kǁ ^y͙CJȼT6pCjt;}[  <jT 5* _?( < , 8 g Xo'r<\J G3+q;*0C_33+l+9$!2"I( %*'l%$Z%%`$s8&["y&&#uw%C,&!(֬'*շ*!f+&$)'$s0 o!y} p[r?/=T 6$Nی }? ųi % sx 0ͷn' s  dpQ_Ez$<\ PC $[ uP \BX ?~CF2{EW$8G"B6jCJm[`u:u D PGo{ K(6De7r@HA TvōٳZ).n#?]Ϯip@S}0P<(+lކމKFJ݁ܽ]䈽!2cT!珹lٓ@ùFT`Ș*ݐÆJ*o֧Pԫԭ&˷۷Mݵ?ܬD6[;؏zbWjDӏB.Ѿ~4CDZ{ s25 r)ي :H\$_*1!h 䇪9v-뎐 , 7A쬼 KUYM=+N'996|\YB,`DU=?:3f,K+^,n3-4,&  WS S Pf_Xל"t!Wz / e RH7 ?'Tm!CD{ #H#Ip!,>]\#eHؙPHnn_i/wy܉j.'$m+Lyr@k}HӴD|[ h q &F׳ 6M сӈ Sm~m4͖Н8/z!DE`.na\IK_&v +  GnW  npOS>UML8>\ X{M_Emw/,Kz*3 +ZMֺ߂d~{4"x},*[m]Hz}!qJh>eOoQ9UG欗9?-E_X5l]<0y_< fc @ /Nv~j79ZkaLrhF" BL\Xq {- _2\Z3]? +ь d `jhFǻn?͹hѠVXhQ^*Wnˮ}x[-+TA(`=xln9E|!V{y*Ad4HV?)aR*[m[&EX!>NBVv b-~(ߝ]`ڣ! 2֊חݟڏVdX:GS{{n+tQjVɒo78zi*`LqIZ| ,O w$ M[k Of _@V!Aی s&U!J#}+@$u7ny,v=71Av4PAFp5>3|=(2:L0\:18Q0$5_/|6093 >7?B8d: R67{s4423151i,y.0'A+e$ *$m*j#P2*#n* h*,Ū'/b%7#,j]$e#t 3"G j" w$LV&w%H x!ϳTvqF_S]*M$97 op[fـ~S C\ [m^ \4] E$p @-/?phܡ'nevB./ٍP;PVk"m_S'{<U@*yue镮8>Շ2T$H./ '@rTmCFh_9Yf!2$f8#V ""s!l\4P1*tEFzfx QZ"(D8PrVugukӄ{7H( -ui5#nl)ۺqo+ wQʫu`:QT2_} u衛KN=spRFa/j0 aAsG!ߵTߩ96'ߐj%*St+}'J\0e9QTdȍ>Uޓۊѻٟ׍!gقOP OSM3o E\vaGD6fbKyQ?_´PT z^aKDyG_5ݴ#|-U,##&6 'N )|$P( F9/n1 lw6<}0 "Y'Ty&&A)?,A!+U"%/ G !w!!#Bz!%:$|;|!C˯ K Do|J* 4%yD1* Q*k7*iaV+{I*h]Z)( %Hp#k%n2j%R.%'#+%#%PvTdc ϩ" ~(~.FC2u42&L"0\.Ap+1$'"1u_{XV! "h "D_0Xq{o $^ K - {GTr1 ~BhjyR9*ٸ iݶɊ(>cX ) F{eQCд JҔs` 3 m>GxÓ3 .#T18锵oM%t,8led49eݗ<^xpD]J[饜 P#YpmMߤ|Y[PM = {? . 鿁 r젧(: t "ac%Ѡ*p13Js8{hBc4K |Q0LRL= YPd OR MjN%M՞wK].75Io&oLZb7R' Z? ^τ[V ORì (LZ)Fp?u;G ~Mvm,dꮍ뇁iRF>\U9~0멧jd;U?8ӁfUY@dθEFǦ: '3j =_n/-5Aؤ6Z^ⵄu?X4a"4!L/Ydb+5@V"~n2 {NK=d>p&A{ .T .߲n Ԡ -)ߊblܲHX4JۚT6RUByR4 q9 yyS(u"f":Cbm"pW@8voT(=b$r xJ^Vw &T*[3躧B~n~/Lh* Q!!2<c\TBRF'  J  ʢ$Ka4jj xGD  , n3s V<푞OZ6 ac h@r/}YFNK oEU#${5%)u*g;0,f`.> YGKSJ#^qDMP?{?9:W1 p, '7&Mx^' Wm% #Ncwr>baiSħMu; "~ !P}d;VxXRJsVv4 Cn%r(lӲ..)10Y!00y231n圂-u-ʯBM0c"2|30 *-'|Ը%wcٟ$'w.$]Y"?}Қ$Oy(Y܋,߀.DG-G+{1++i*B%R- x$/ܮ/xC!wc"m3/&,@}p H 9 i3du# B'F %}* I + 4 $l{2E, m @ )Q)t?  Arqf 1T,FI {E {X qh7|Z EasyMcH!5fؽ.֨Z hcuLC,];'4sůAj$~ŎĊ vܓc 2$n M:j'gr> yΙnGξT[D]$>O!X ]Pz_&7CUtl ;R/KH$Xl2%FɈ륖%|2 $]A`G=JCO]́dWn[_jOq Qbbݚ2 l 7: ߯R 8 44 Ce 9ևHԱE0'*$ %enѺJ1CcEӟ:gg`tg+?5u DMW| : '^?  vc/(na 7 dDZ$ / jV ?L |V x KG)-/z"%/y_ \./&0)1ES401]6w8Ԭt>=@37Ҹ=b7E0WS<+ ) 9' #?6$~'$7,Z ,v (db & %w $[ u gq(ez./Zu[GU S _zI%l:{7ܺr uHN M3 )D4iٳY kSRXjj UA 蟉rЫnB e|5(㏑K~0ߛI4M5 ]$#,(0rqtOwSY`䦿U=r"ݷى(GZEK&-B yR"/-̗Yf5}BS{U Ga297BxW^Qi`]ewk5~c &9+(H, (iy#1w:z5"TI 73R6*~h!YiPS }!!E<7   W!Dv<Uh @  l r / Ԉ s Hj j<xI E3!#t%!d&R}@&^l'dx'W/(hS'~+%S& ((a(9 G%7A$%5&'7%K$'OW+b,2PB+gL*#J*i?)h)',&#%C_' *I+2))\@&r)M"/c_fsf[`"j H%J) $tn!_ :zD65@'-=f+S6xA׼}> #dף-u|aoa0I t {UE2xY?yXIykܕ]׌ўoWjχk'eMƴ4HՇ$K#w %ɗmQڌ#ڋ ϟB~X޻TЖb͘Re3=ϩHցRbYۺ~0)ʫ`?}U3~UR%@[aZ;t/ Bc*0;ϸ T4?ʳoN1)c̔5(y [99Zt!Fn߃"bRx.^1!7+l\Ī,). ~S!I ,|[ L07 Q0o M}US[%aTxAZF> e#"(1 bY l NJy \"NS0&f'k+rq,!/*N.h$"M)&  J#t7 Mj   ; 8R Y7o!F YY_-gZ",a$">޹$(ߥIjb8^Qln֪׷<>O^p^!K &d#Vc9D f8B +Qa݊u; VW0-#_L|,Q[J lK m tNDGEA$:6& .x~k;xj@"$'hE +*w)V%<VtZ@!;8tǔ641]< ͨ UǦ4W G(AwN C, J5^RcMəKuB~|^wwjຊiQPNcҞ12٢.حԍcaWcz|[կ(jӝ˛ sZg\ūGʔb2Gks[O&Czˆ/%,n1LL4]G1Ps,)g{%[3%' $wp!S!!~#'D)|Od $^y  y.k"PV  =n8P$'s З%Z [!' >) S5 > x t`=Lu\&HfRmZ  *XYX=CJ IbqiQ` !AI)$,/SM}RH qX `6c0U~S3)c!8{"+'. $)p l0)C([ '# cI&`u$z+*!R;|ɩcd=$mn C/LB N `m .M w G=o8VEXS ^bG Q_ v!RFԧ{O} poқ}ï%Z4vo̪`0Mx|P0#LF Җb|]|往OF_#Z\RsLȄ Xn( *| ]8Ԩvoc5 |ا W  fg5$r<xrd J?%S.*t*17z) ,'.ya/ 12i9XFjxHjE"D RA<<h8 }^4j^44b45 Ls3B`t1!oE/!-o i+'RN"`7"C\"j{#7bDdV޶fD:w TQ..8@)O 3Ovg.e8UHhΖλ[`IjoQS i_d -lYW(e V[G*(a2rzఝLDNGv%vkӕvϠXU -Ƽ=h"/)5!ѝbjHՃhC 9۰"{U{"҈D#R%"^^!&b0!|t!` ! D$nqyR`@~$&!, o$É%4$`"%!MvSu|a9Ge:QJX?  c m j Hf;50W~ {E xC @y H|PFOy<Ǩ.xT-W `yFU42 kz I6c8Ԥ4Մvە~gt2$py'b"خ$;7}'ٔ.an_+K2U֢W*GtWZvһ-x;տٴM\K6݁Cݲ%`1`dl(ߥW6lͫ\m"}6VdW"'+ )+c.`ZAL,oU)Z)m%%d,#p)Y 9a$V)-Dx !/nPp!+S݅jyS 8 82$\ e@DQ~ L-pnwa:>Myg9  ]㗿{݊֗nf+Z 9j we+?1ಗQbتfHXa ;yUW5:Amx2Rgz!C4[Raјj2d M`[_녻-U=`o|fa0 ,-i%PwijNvtN 3 9Nf"0*ڽ$S2-O&4%A3$XH5EI$ψ6""*6 D4{/ūF.Df@0C,3d&v42$71GA20/."o,Imp'?r! I " a& * n(}"gJ_)Ӷsze\l_mG6 eW ЊQ as({#Ha#J0Y"zU};y3NuA삋E"J/<-l},v%-Ǽ!DO)fp` ICk ]{[zhJ;k[|vzP?HH}83~q x.`I; !5Oޅ KξO"!+>.+=6++ yZ*yZ)VO$o#/y'+\L0ț91$1r%3410*v.(ȗ$slW &^(P$+ ^)& 12Cg = IB) 7=_Hc/ (CfS_-P}c~ z8oKKr4Bqe(sO'/mo cIت ߷a !Lw AGp 8% H䟜 ~ kٝ~ ¦ EҺ &ՁG ȟ{;Wm$8y2"Y}W0ڡRq!L]\8 )CfJjUj\7C^jꆘr3E }kan#{6 vSLF=J7<ڥm xR vux>%osF')uDJo5"Yd[vv'z)x&ٓ>9͌lzon+eV+<5KϠpϕݷ*ܘF̤ڜԶ۞pk @?9`4 /PK F$ ;m ϻ?bg>>ߌ!{rW܄c|N!d)jJ=0vf٬(: +&߼d;ԛ00}tXm:3p: eN#&3'er%OT(}-V꿧3+:UD;@loG}=YP1X8/^_,J] D*ZEd)YVrSM.IFtJK*{L˧OLwRPNL1/JH+.B;m2I.;f-l .Pb-$g)Byj i]s$hWt]Be  ) 9 ,c Gg "^ 8| ]X׋ " W ו 2Ԭy۹<(\fߜC2]fAЍk̡qtȚ QO ˈ!}ʞ!H= wL ,.X u(]n2X%V!H0$3D̸:&vP%\ǐ$7#M#tȹ#V]#nʚ#1#!n$W%"ܰ%r%7ކ"$h""B@#^9#Z#l";}^$eޥ'Wj)@R )#&iA#l%&#@']""$&. q*%(-`33<bT8_06A2Z>1wk-e+T t&R }$(a].v391 %4,n)#!(&.n%%N&t-:'xa&$>%;IHrbF  ~b[twAo44嚙{?BEF/!~ XF“ + 5U Ml!Kg{ob X >bZWir'Z޸t12+"DlԬbjv\p2v_F#j 4HGLf hBCІFY y8UvaSpM)>[ NkY k',oU JGp3xj 4< ? FEs΢bMt#i>Epp30俦-n\Xܘӡ۷z[]sۄ8&IH1X'^}Ζˌ 78X8Fõ1wF]+i'HW3܈ d P XE Ա _VW (Q@ߡl\?9?> c W + ܨ4ѳ?q1/JyrW'[lݫqRN?i6~zPLaxqhOfsg( 5  Wr$$k,F:-@-Gj-u&-I.B-Rnd,W~^+0̝5U9 V Fc7 /Oi@*a%NA!J6Y$Jq%)e[1?0\ L s U _\^rE産S]}b_)},làn54ۅ{ۑ6R-U`RekPp#m|rqFR 9o@頄 tꪭICP=j!ݮ eSQY읱Y-a3Vs.4X/T$;R`,a9-XuX(lC7d o=+ Ks H )H)!1';BH=s9=v7[5v6ܙ52(5Ŵ%:z0"At0$Apt$: #s6h"5"F2z"Q&.z" ("?%;"Ip']"JL(!)!(%b!oJO }GwiN|}pt 6 ! d ^ ƜQ{ c t|`91 Ouqa ~H ERjc9u"5bQ}m}b9?ֈ2:$6Q>fF4TPxd?Gg\L8e  `rIEQy ASj"bQZ608([H L F RYL=` Y=u9y=>#mdKTo4CO|Oe"{$ՓM"oz gCL.萣$a# Y⯒ Oj߇씷붶ߕf lLz:Lmٲg'ѮaGʗa@yZaibGW>CƋ`EÇCӹ|?}v=d<4<R:hW5O5jA7#]8;Se=4w8#5\5+4`6t/)(K$mZw&Q5&Lk!(g&_v k2t-b ׫kB qA֤-÷D%RX&*%3P ӓX.[] b{` : &EH H 1u  gSC #6Oo`G 8 !X |x} 8!o!yx [iQ^铘CZ<1Mz% nԊ M!n!P! A6YB e[ Eg! $1"3,')0)S(?{(t)θ*O+n4+- ,b -j -+}|'28#)O T G_ _HBe%4jJ;點!^偋)0 ) o Z@n ; پӦP|ϋ`/@z HӀ,:"p :7Q |FsLXɟ2xaxHðLz`e Wpr8V^_h ^9t . |H? JOa&'zp@$$cJ"BH"4~)! Dr"u) 1)":tdAo'B̙ A$A@A~Cj1 DkGTQ1SRZ=|a?Fb+_Ƭb^LXX^m^]B|tZYU/X'EnWTT/YLD@/+n= Mw: (1S DkRG e ڛ%unl-BĬ B0 ۥ؄ O_*-Y[{Ǚvz\QXT/< ?3@ar9U9^CR.)^ Ƌ4yyUcڑ/gkc!I%d U^sr5%@{l!]Yj8}aKfxc֓A]kj@b,%- z?+ H)&$:!8 X!"#KG)oLcW189v?M< J@ @!} A4 PBp C d? rn:m 9WB9H::9g41,7 (z%"_cV`{K) ̡9bQ; 0 \a5: =H|$H h(S=tKdLZOwJjG)WjGt cߴ'x(& 7>&>0%ad~%]%+$j`%b@"'` Ͷ(Xi'+FB,%e,0,N,!5- ",v+ *!)! (%R = M}M 9r>C4 7< '\D  @^I5>!D]"$!:g. \0.H㢴RMQy #ްAh3:ި[bt Oq-6vkh6]&[='3G*8A֯kVrdf fJԘ<#$ aZ:(0զ*4ڦNCNFI}rV֯PY^='H۷`5m㤕ϽK '`Q$)~,rSc  +T6 $s577J33)U.=-x />Eq12E209){j2(}0w)cxp([B:&*T Y/^'{6Gl # |U1.P"yc<d Z:cUւW@]C~{]R~ȷ(ؘ1- ,Xͤ Mr. Xzsdg{8J+3}5ve6kX!rv 1){M m6GZIB +fl3 jy ]& uBhc%#"ʐ/dD6D 9 ;C >D5 M=ϝ I;N =7!3L!!505i 4,Cg2{hA+.%y+"Zs!*p.;!c Ef& g*8*N#=۠i_ ڕ 6 W5&H,lL$UhF멤k!rx|ו<pFױca)׃'{iE9&滥CTa s$b(-*pOG*2q('x&E&3.;&|&` *H0$Aq7]-P;0;`X2:o3a95R77776'5zW35;1;Y2b?Q3@r2,;.P4)(0O%.y").6!W/4 .c18YZ4lvj5h5Ɔ0+EE&ز #?o &#zr&FDjLk>6|mg@$6 ě Vhڊ B 6M洁s&Cw맺 ~|Mn W A+ PB/8  ᜧ  #'sI~%*zb?׫ Ip([i0ӏOJTb 7ZcDG7ۯ#h8MrACRd"! P3*(#X ˓^]azQS9HH ON }O:M;Ft`=z,# Ӈti{(90R^՛~7׵%7I) n橢:!+(L+xV=ߣbVI._2Mjgro蛊(팘&+ KN쭡KDZ ;'Tvƅ1v/P͠# FGqĴBO!D}`2'k4<.]34(JSL@( !t#9s#A!%b l ;6] ? Y20${%,L=/21i1Iw2^F/`00/e5/ /,-p)s~*''/$ )1$T|+$*#O'z6 RvN@k3D^eD D E{ t6l6 jJqvZ<b-,QQ*@6(81g\;>۴&|ҁ@#Ρdwʀݚso3}ε[AF/OtjhC!PϴSU|caTӌH6Ԥv\&4rͅZ$M~Xڢc̕ˢuPϪ{ե7Yߍw2_- (#7Qư_A4#Zr6pt)t!+N/q0 /*"0g#1t;$/"\,!O)fR (!*X$!*%(Z&0n$qc%hG${&3%cI 's#*$X+!Eh+n"M-W %6/'0&/% ,db(Y3-%6A"H \:&ɮTR|V"# -"sn-\ SĸDCb |o \%;-{ 8_m R  ;  ^ <{ M6rqBȌ{s,v ? i8 j42X. ?t(8`Оp) U Lj@>'ƁI>nA!tQ5ѡ Gx6݇7 ) d d%l'$&y"N@y&Mm!_ =sISMRv] h TRXFgpzQW|.bLJtgAVhi(яѲ(MԱjۊ Ta4Eղ<6ШBpɒh>ĝԄI:zk1f!v*L/mE-J֋ׯ1նRÞճN2өR酋7Yg<-;I *TIC H' r ALG j&!(N.-#1t/2m/4/4T.k;4W+ L2=)h/%/%1'sM36H(s2'&.b$b-i#R/#/#Y*0#N;.' -KT1w3 5!e3.(|F aU }m̺p! !*}h9cVo&0׿ *y80g-LD.V>]_ Cj zU]j ub % (t&c^E!/ # &{߰*i~M"vV=.<qa`G7}f*- v~9pP2WU2L U=;Tj +>\8>O^Gi ɞ ډg$eH>h24-a3Qz'xed +*dih j.- 1XƩiRMGP=lˢ\fqH3 xW78i Q#6%L, 5W=#3BAw2@m?G_=r8*1=Y ^-f2-f.-w5 7*&a%?#=V# fF3%VO3&b t0J2Q~k= qW+ٍ&۫\ފ:oߵ82vz՘mRbͨnη}qTʶ3u>:M8 ]g"Շ~_ v՜^Ѥ̼͉^&̹FaՔU)Rϖտ(ΚyB>3Бae'2s+Z۰Iw!4)W*пDDˆQ rˆ [5֛<O/\TX: vr9-bR학po Y~ v y!" !{ "k yv" ! G 4 mxj"Z'?-_Ud/N,w+a)|Yhu'Dž9&x }$~j Q"ky#ʖP0%%&ql"RJ e+St(bgvp V'gJ+ zMW.v ȑ UJ3U_Eˎmԇ3 &J Z  /"mSaUu p ?݌D HȀ"B9&|rḌ$Jyi Q4  iS+ >f@/H 0<mwdPW_ SID*V{@$<* p|,eܪ iC#Fշ+$3WB14=r3h4#w3l/ ).*%$ǎ',\*u+i&Buq!Ȏ x-Jbktt<^:Wg+1%O :L,UVXCO*O,g{lGy>[Ѵ8Qcb_EpS%z9ߞ қIL"6pauZfK"N$s/oI8uA*q칇)*J ;釬 =佭cw,<^9\FWA}AY( DnDxrsg  .]r ̭T>1>z#Qv )+B s+w8 +' *t(Z.(=&!'~+h/iU1iB.V(u_$ڝ9!vZAz<&72!=Y:./; ꍞGBf)^qV(9W"[&D)R2D&F)Uۃf㑠uߧCK0>*$ߤ,dݺ]4ӪՏjԥ6խ:PnFbʗ+l޺ƭE+B[SU :|#kMy)هcڮT[lLX1ٸz{ jYH:.8ᜋ)F#k,骷1녔FZ쩓 s`:іr#k$ZR%| \"%X ii"2 oe 28ٓ9 $#?'$$h p0c,?qmX:K2 e ~ j j[*TkƁ 7 $ 7 *xכ<@"j]cA+*Jl$P\\ZL#iZ:F\ma.9B=qZeЧ\ =%f<)]":{k:M= %O{(=Joy^Tpu0 +}_ %< < | # , &hU 4 `f H^ dn -*(<cQAzRho]! 'w"-x$.)#c,P "8+q( ([_v~'x!N& 4*2H(0-^u4,e3m$;-uҧ(a%u3j! *Khn{dܓ4 ,CZg/?dd~ e 2 ș `Ea|L̷xGf뾉A* P)cD Cۋ<1dWwI$  jD5at43lV%T/CwLuw1HEZR0b sݘ}sFb0RuL z_yO[YCyf+ H  PC n] $i sR WW 1 c"@L&kY%6|$/_f#5!:CX5:Ea#l;s&u%Nb] &XA; [=+p ] W-U\  / YfF E Wu0:V6˯r {*+_L,4NytΑ{{+dךީѭfK֢N8J5eܿi,gک?vH!ޑ#mo#ҦE7hYyՇ"̭7lӶd 9RHġ٢,݌oV瑍'%Vq甈Bo#CL2Y|ٮDH.x3;Y)IQD"F'WHd > i$6M E}Bq9{u c9.!irF#g$Tx (Em ?/ 3\nC6| 3.e`( V%L$2#K!/ c"|0%q'gg#ηuT!* QկR <;+Y4c&"[ _o j >yN|!o?j!af)-0<-/Q|-koŞ-,º ,*p (W)b ){(#hFMH z Sp?c;6\~?(Ek:"9~)-&L#gqFw FZuÞsST/ޚZӧ4E|հUmVN=;ֱb٣p۫⤰ 92` NC I_a Fi2N_(Ou;xz9B~qvX@EB+UHujEc ݽCJ84ld 8tKGXŸEIV'R,^&. .er400i1Y2)L3Ƶ6@$:+aG?>q-e9Ao4, A.$Bw/[AS1CAb13-B3agB7E9հGWzo*8g( 85Ә&2 /?+M;>+ ,B%8.#$+ha'$+ b pBhyEtJpCc WX T ~g:;6iwS7S,L~kI<#.OcMdq߃Y qLnoTC'լe)6uGdۮ t%oN úɊ%Mpa3Gs)"^ɢdӊv]A.W-`Ij@-7ъRYъ5jwKσCb:Y gД}K ְk gbkV(KV QkRf.kr3+K)$%NOc% 3%|"(aD)D'K' iɲ&PT&N'& w.&֑(!d+%-C*0A/*01/ݾ*c/},of0 -0.T 1,/`).~*.07,! 2.3 3T)/g!`):#f;ka  vn w Sm|xx %54M HqeѦx4dFR'-T5(>x/b [p㶫+,BT('d { 6eHo;1v=8NG;I. L gޕa߷:&KE ZOܑ}לi٧Z Ъxhf)vtќd+;.(nk%CP+Bx Uq Ұ y_ ؠ8  scLS.4$hk4!#9a'&]$)+٧+01.3̋0l3e000.U.r-0h /Bs1O0qe3Á10?/)a)f*{#\& #\*!p v^!e "+ζ$I1(E3).<&k*-#R(0!K#u%/^ HH"<= n ' :j@ [ֆ B#H Ӓ8$R\bOrNAz =VS b -47Rv7 Bl \(fS6| k=n\Xh[,\u^.R^3bD:*TX^5N$h6q jOl"Y#B|a8NjT!SM91#}k ^0 6kLUsjA NR39I 1Hi'"#i: r7Re@2$$Dw 0=*$i%h#!Ү&@{App)"EsC2@injJm@ș־T!IVHRhWG*<`?\F  RQ 4!>7  EQq 4 _:jw6Y"p$jZ%W2 6bm Y r 0LZ<':_k w]"6n"J]4~j)E 'cWc"D?,HA0W1؄ 5M[;5?3n/)@a&y&\r'.$O%C>~M TﱲcN>z_# M } ~a_ ! z^>&y?>3XaVنݐWc_!֨FՀmQ(o,\ҧHHVN2:ғIEл`Ҙr}2j&BSۧoٶ)+,"n DuLGW#"LX֐^*WحӠOxԹÞǒ\c(Akǿ\Wu֝άzڸDՌyߓ+ͭ Ҝx,BҔ$tӎQLo|9ԗpnIcz(8CtPCtPAW8 <]UEa ,Lu= !O!aA A9'   \r= k=v#OV%?J%o "U!Ԫ5 e4Z iP)= `Q#TZ%KU#&%JV"D lEOSSQ IGsZxvfZHAh8C| o// 6  C %D : y u0'@CT )~ Bj-jaQSH -8 NUd"Q. p -aa  ۡsHn^5(k,?o1X>,J/T>!H|nl/ ^*(~ 0љ2 v3 %44d3-p(<+~h-+,s'&3 zk ! esK+ t (ezfYcXt3 Y ] +ls /n#ǀDo!=$*0s)_$).6sv a\3N1-ϪeBF,~p09pn_}M>yuYbJAz'ON=nfQ"~ 6^uX'>7BYiK$oozdAQ st B_V GL* 1 iV"kQHQiwܐqb+E_陋[@H[Z$|,)ޙg㏈cH ꍲDJx[y0zJj$e`mVmWaޝ,^*4qjؾ&ȏے>݇<9vE?z;@9ֹ6]G;hc8:F Ɂ앞 `O X c;$ l  r TRa-hzopG*AH98*7OE~w=TJ:n 9Fp=1Ca$J%Qn!C Ozsh*#{h㱮|Ze)Uj`b8$VWuIB&*o0iGZV0_O? &P5X:_1(8 h_Do!Jn$ Hs\PEVfXÍ,c{'T<H>.-=)KS&P {7 Zr TK H [P7 2  Q: ܵdt~s P A-d DQ yR z AX^]Y}Src r4 )0 xU~^nU? - RxS$cM _>QV22~ biDem: a  3< x . ɡH 6~ h#V T! R%<=%$'9(A|g(wS$&+ =  ԇ >N a+}C kxoXc  4GDT {!R[ ( \;*,oWPE+åmX)AFr;~xmh&7Q> SML+4dz ďjO^r(+ޙ昈ߙ詳߷c*ޛs C&gDn à\ 栍 ˑ܈qLzڗءTNaY)Иkq8w]ӥ1zw g=CG"3@qTu᢮jހW ۀG}5#$!QP|8._R(N4}{?2@*2L(E ` $D0 `,td [ Ntjc )vrFU kK +B#V! " o,","/S'B#l w>$͆ y$ y%l( 3*,+ )vU'"{W$+E͵#_[A"V!^ "$ (.) `'7m%>BJ#!xY# VDwDKz [ c~U C bIUL la-̀n4;%p2 ( pI|4 3CA ±\Uܣ Sy1N2mE">+8iRe k |(YWA2F^ 2\@u\ ) 7$ 1g6u K!RBK3 c"$ v{>i_u$/=|9 F@ >oEhcXZ{"fV; P} 쎾b@1;1StRWSڍ㘂R;6>گ Ąfr2a݌<sRץZ=s5%Sg<0淤t qc)sBOlV_麄~6:mw*RBx`پ TDoA%) X}p. ! Pl@FG&™$rN< ff./Rn M_:% kW!#& *Ő$o. ,N152l4^75}L6<5V5^473A8M3'7u`3 01U],!1//81X(3+26c2p7G2a41(3f0~1.!/-+G+~(')'Yo)˧*i)&,(',O'%$kMcBG2̃ 'h }dn^iT G Y!d>jXwl<9o n>Şe#"L5%'3-^yϷ3ݷ8f08b$@5Q`5@4T3,V0RT&+u$v>$'\*3V".$r*:Y%Pc!)gUU#S 8 2 k N b BUƐkpAzOA /Zۿ|F܎H~2[xuyTfk٠'OAgr+C@% 욅"5G!J@ 怡闾j0{wzhi #Cޝw7qO: _J }_cuһz7{۟ᮏ4l)6ߌ8R9拼qNdjy#팓Mt!/XۈI67^~g#ag<o ~u}edh1L|gy V l0 A@ %F5(%"5Ui&0$hT E|Mf W Y_\JgcWb%n>9#0.- $ v p{%oS8xRT59p\֧d.X ~mrAf]L{^(m0!Q=) } rD ĉ. D f  i^jV1Ovt D{ a*2~f5w A3{]d1e<)A#3u4^X~-M JEQ;ձ`"`q(t& JXQL7~D^'@ %q <:p+l \B*V#`.뀁5_QJ[lt2vzއd`H17at{ԞS B)L|x;.(ӳj>HC̎$ɪ_hjFMyˣkԍ7^ShߗOߎJ !N%@ Uj8`HhwCܸGjZi fHM_@Y9CۃQN9q2D2s3BM%M4N_<]*(}ˏv3$]iј}K\ [ . .3+gu:z'€z*l%7*e*4 +\ .04I/RUu4hN:?@# ?k!81e9+O{'M$0bw  #n1&X *'k)O8&}M=u&)/v#&b%&$D@ql*Up/s٪ VB 0 Kh5mi+K&1Qo g|*>il"Y#w  )3>zT^ F dR ^ w#y8`Th<* 7<b+$0 "E>jGfb1IG *Ǻ#N[} OH3E@B?ISF¥,QR?D j!  J V  ~ _ t[ i d @qP=  S^YDxoqi7&ԟDR{I4th@0?e=;aAG~[S'uMmwor(5Es@:k-ÞmV= IzE.O)߅8$ T$XG@ H'OA rA~d;ڸ4H"+ H$Xl $jYtM!> B oT_f}{&yHNvJ&.'b "Vco= ʏJzU;<*:?: $k /}-LXȅ!$P{j :3 h5"%(''Y!`dY] -ɥЖjo愼v&V%\}d[Ȋ-Drpe5!6 8E㦁D"aoWU"Lֆ݃ ݺUfFlߨG~ꄉK =$~uO903!3oN[6m3`ޙ0aԸ ~JΏs6O꾃&X`cIi[[H"(ӭbhhޭg؎[fMcZ ﱅ̇ijt$ak m&  [pzw sZ (c“2T^jh~3"Y$q"% )$,O4#L"ۊ H _ ن.hdn 5zuQ_ P]!|6R:(b:ϳN;7A8 ޝ t=?}X0 I +r@ / A ju G}Hߤ?  TA`L 7(:L* G \R -KΌJϊ6n T 1ϟ0ޜUo> v xJ6 =m(]T^:0 7uRC UF[4q_jXOHz6 "}{ '=chB n"} 2% (,("(&*6j+* ,V+Wj##(b^͒@, Ҩ  B i *7 nh 1U F? # "/0Wd5Vt R oU f춈[ V郂,$vҧة  K dF  LI a3Z )[EKzd-0WE}n1yr ec8a&_*r[>ό@2y#(*鞷ф_CZdo =60) bm.0z:%2M\^kO_cA-)(Ut6B  13xplE$o E /N/4lt<;glB|t醜F\r/ޤn!X},|,6l1Z%᤹;]';SOerpwDYNxE{ a2ێ\ww;6?evtw;tʫ\4t܃ ?u;5ueyEmsZ,N MiC;u,k0 B vz꬇IO 1vhAL;햨ՄprSrK]~"5$_m03{[q wozB6H[O:qг,I[qo , vs  {RU#Kı%C$e {&([i)D)؆%{o[-?A;Yۚ4Y _u asx 1N`/HEG~Kș7" d1!:Qk[,:7u@ E \ nAFpC}"ouC Y  ~ i: [ , h 2 ~WKR'\mjT\'G59 Ԛ^:L;<:ȋ'0o54x]c\Ga 9a2Y}kڡxN1tY + g'5 xd  ^ {KTXH 4au C"8  r_ 4Z J '  O, K{y #B = $HZ 'M y3Μ m ZDp\J ?[P ? 7 5~  V R҉ 9 @>D q m.wVf4tPJ$4 kQ9Dt?pʓѵJE5b;1*:_ . ݺ ykj%jU~Й@? \ ݈ nfw E4 A? e " &ӷ X @0' j4_ VG˘ͫVܵ`/?K4UӤ+Q<҅]ܜрw;0 *j[V^H::pՅ䛙 h. 0!kW}]! 8h@ 6 @L E6)}&aB} ]a%; ԏw{.R$ p hS6%u*bsU,^+J'+wB+oW*7 }('%14''la(*0)W5#*)28+) [); r),* ]o* `)*,v..2y,5 +giO)xK(&2Y#w t d8=ZO!X!7!1{X_ z)c0`|N>Q#Djx ' : T$B  yE`M 3d9o 7H FKd=WzOg,C GMz,S}6oS#"%]?pWp} }49JVll\Ĝ`\ċOe\NrMny:/)_癧Ԝ/3DHlʯ傳dsl=ԇQW揫㊷F0AM/4:;2pܴ2(ykS6Z$w̗v0ˇ+6TyldiN5!H !7u)HD/ [?\?S::FЮ9G6SǠlK}vW0@W*HBvF7*D+Deoc &#=  ^z'\r a \ Jэ0N%ٜ|J)  ybӘPwO\o*M'm ? ;/  I [j ia?Wvo&#)QoIYTߞRVW$Y44(m33 M8 #4 aa( }:' j/ z4\U4op4x4qE2f50,`+ (aD)]) 3'($" 6Ъg o -_d s~ t% {m$4J $ 87j"4x u{a[C:'bܜm:܍/e%zEi&c+W F",E$iHmR⍙}y(ZRٔzsѬVCՎ>0O{5؏jȃOn׀Dv֘ }(e?TDB&X5B[ݺIM+d;b磳Ѹ!enIrߛ5ޕqS+Zz2AP3iHŐTT*&-jT6#50Cl֣`ćP8*ǎF0D ;Lm :   . Ń 4`R!jB%vm%#E#Ωyf%,e% p%`|a%^i'&d*/ :,c-% +&f<$"EuB"aT!@-G#&@{'l#1 rp3VRXmx!A Or  % IP Ua t< wppuI?ߩܝ I D(GLNnGPr;Mסsm6Uc}-Q!+OϿ4=xMm$]5 e1ҎR\#c&&a7FE"Q yQFkfo5I;lbD#vvlN@ cc3-%V>v [b 9 f  ` u w $  > |Xz /;4- k R0OwLTi-: 0P _+8FnLoi}VuHs[:Q8!>P5 K3zs>G5:q-y\1~5!-;?TB}LqTiZ,k &  iKa&x@t5h~0$,9s6aH؍29_'C FJ;ZLAaw)V+_ 1*|"Al+>*'+Z=ȳZ@׻' ? p9M'q  u]`(?*KMRQ6ꍱ?k?:jeRc@_a^>KW*ﶜy̯i,*@ y뽨4QVC'{ȏ搼v㗼늮:x x=y $븕# =<p׸}l=Nv`I!08\@wW#V3m$ ad؅E?~L(8\A+mc|,:o,Msvoszqރ#M<ɀ&k=ltqUkP &2yY^z+R , |)Dd/PWk|̎:cT'/ݱWe  7pN4I@ ?=Z ƇP;# <}b spW "Fy $ s no <: U 7E\`` "  %bdiBv@wIȃ@ed]-g3|[?i22[|VTϵPJ~rzM :Ĉn(w8 S/3qD/%rsM9](4"ͧڵUNZW=/) P!*E /w! {p ?0 #'D ! ,  ە ] Fx-*D @LE&{Z2u  mQl :I >[HV!rR.f 5ٔ mB%4|]!,va~ hs nrp NN`@ϡj+Dqϳd&R>L} h  a ^G+ ez ,0 ڛL I"L.^$Z!j'CӖiXV?-\d6KX 0Kod/iY+>&@L4g9Dtn6 ")Zo Xϸ -[X JBMC& JMj$gKAErUm[gA'T=GhCOJ\g\ow _w^澯?z:]覷0ojCH$/&v9% |MWCz23/\멲 e81 }Bmj/{Ft&蟣JMF8+&`)n.Zt#UXЍ\nA?+`l27V3w(X.)C,?;#Z /Y 3 XV(8sLn0U!;@i:YoXQ"k&!&H'/^W%=)̟$!4$ua0!%VR$ K#i&Z)"GU.µ%2c1$"0[!r.Β+,>(?+.&m#?#"#Ou% &H V$n 6  $>.8-Xt.lg<@~_$!<o7 Z60 &] ,`mWxЁ 1M ;V w :# 6} @ 81 ^aiFH^ztzl݌ I}{Da ^@XI%κ/xzsMz]!L}e\٤cc!~~a)0E7ګ N3 * W3\< )Q ZE }AE[ VV Ki6W\ P"xcsEj?7+ʡbJv_@س]݉oh|7BZ^jm kt=#B7>s2(E1f sx#<$_hk!Z *TeIx/"vْ%f-f_f,;D ʆ. * Y=fxe]V~CWV R C6" Z *T PY : kn:LTu>b r 5Rake,s0I{=6|k<9*7Fqꭞ{oM}G#aea-V#95El2\iIOќϷkfw8B oW^LJi ՊȚneՓPX-ӟ>Ѻ릁ѰҼlӥ'cGPɹLvܒ]\)'68ٮ۸ 4͸L$)*Տ,} 윥 MYvTj%XَgESH|܋lC& Il A ̕ ]9vd&Rf ?SY[@d teU:^J.VKK[Uߢc!BX /S LA !p%hseU)aWi)o'/'E'(Fg)qw)++Y ,:z+ '*)& q(3 l)K y)7 B(xn'վ(*U,ȋW1XT5|6+>5Nb4~y2qg0A-" )8 n)G )bH :*xg d)(&A9"(x F3#5+91tI FRks2rBhyy{#U% uY>>fa/<$K)hDM/q_| yij3~ b. $#$`uRgZeTQc- L ) tdOs[IeC=Jzb' 6R*Mͅ 2!nOk@ŒޏBdBGghs..-T2]8g뾣۰#ڐEh|VOBZ?9ڱ.n?m 8Vꦷh꿎!#z'9&W?fY- Sv݈F?9m7m f mVB~CE2H(uUp]a ޳f9y\p@MY7Ab5<"{ 87 A K s y $, 205sh6q! ~'"J&U"'I%.!VW%0!UH%e K%) ue$S%h( m*$,C'$k,Jl(H(&Hq"#p!dByk]J&2o"z"D#o t!d{2wG Q6I4R =Q M`-XT/HkJabn E~/C,nu<'%u َv@})ISpڅ觙ٺע:x4ow}E6 :lo~K@=Qڦc$3Jk$=v՘*6%\uKzDߒ(8 < @ __wܨ݋1@5VO=SkL9xYAyu!cb\A'o#]r pdų_uqfܵKӹ!}y}}J b + s: k]D&¶mG g @7$j( N)Xeçwfs>6r8"|vmHih8K^CyQvSP&MEycaH3 {a^=eZ   #Wcr:'w8[)qcÑ ;'0 + x7kb"-n 'OVP(6& %Om :%o $hf $HVyY#<iK$DaT#{ d" 45 Om 1}6j* gqxCm8Ȫ;?^S 3`l*Q ("mhVN! G>H|v~ڇ2ofN Rܠܘ[{ ^Xm_7=ok $enJ<+PЋ"0m [IVڙ9.o>j_u 95~k"R?jUGF*Ig(k$ݺIqd5]K0{t &sR7z e d8´M(EY v yYk ;e = [ ޡ  4x V5z' 8U%qq7Dl-% i @ 7/,sclkrEMVOhKꊊ) Ngl^&zPXc:s6|搸!@/O{傣.rWZU?1L4Fv7 ]ᮙ'Cc@\hI촘9`^(I؄O^`6T)#Mt=8Gs"*kPŝ MK~WEȣmhRU80\\A`W'rTgX8Ec+BLPXx|`t~lWtD(!ˡ=3e 'l 0 GU i  f #2 ~ JA vxt ^ F0 /\R  9o CLVM{2aAK-q,rU  ; d V u :(JJ y} O+ tn g  & )a(  $qc"4g"Xp# $(& {'%(>W<+]'-ӏH-/Eb(D#"Sj N b.z.wUz*m8#i l# ~ L zu|>F/Kj v7)w uPteQ9NeV Hu< `OB _le ^F / ho$O`;);N˟ؾ$Py !:!-Q?!Gm|W#q0gH\YRg< 4:;AB =WTu k? ׋ė "_TOm&6^TK` A! <~h*(Lc%3i&~z^bkB gOp^lOdIY n %d3s7s:EYtz ٦pn T {wvUݎ #fC] l-) hs3—+?CL'\^Apł+H NGJ3##j|15U=U7n{0a8~2s+6 ߎwzxR2SqE*54 W](K/tg^ w8 YZ C 1[ 0?_ I Ns Saý&e_ vEM kXQAuTlaw:R?F:>>J}bM DS@Ix(1&cJ"8Uz$/-,ƃ&]t`9oOdX_aɉ&V.q4V3P]z_@[@ȚX=9h /f$\TkXƻ7C (% &NQXqk#!*SlnJmkw ns<j= } & h ? H] yv9ř7 Ez « * (&:D5 ~:!HM CGf#g y54F?fJW # 3t  LAML 1- R7W^2knN& c  N   7yo )GG}Jb k Q Rf  E #i _N'S%H6ǺaJCZ%͛6R`DDJp$rx;/WJP4#4%މTF,1 3$uz. 3N19bpmi"(kAXu{(k"% EWrhHH |J]8Q/p1,A&m; q 4` NUPQ( 4 `& :~  w0( 8>g Kpg?TrC!6qB?7!#%  Fq* Or )G Y6 Ct}.w3 7Tq[ȳ 1Gr bKw PO 8r 8X#.Ct] ,J@ &K m$.ay a(Aw)!+/#x,#,t#+ I"\+!*h )ٖ c>,7"/#0$.V#ۦ*O!(ܷ 'd^'^'H$AFr&zxG#*x!ׂ,~"hr.#E',f"I( ? {$R\P f=*x&S/;K$>=}#6.hM2(R}۩? X ՠ 3>@*[J}GY7|{m[4Ae-~ŚDmy?s Dy Ǘݤj-Z3zF;<)˱o!zȳU \Mz \H S ?1xZcaxV8 lV sP)&*No^ r; Ժ'^BgJ/<k;~LRn lgDRH*Q5~8BOZZ:ÀT.ymѹvJ2`*_kΣ _ LcoR !j]m'B;>, 7 & s " :| Z = &NO "e40 hi mzV `&NbI9]oP4=V4neE Q hh(2*k^4gy=u9zOѫ'5US).Yk 7-(i_leoĜkQ߽/ܖMP۶=HۙX Fw@c:g'Ti"rZ޶gfjDpQݪr/䓴借L..&ct39QJh/ϡ H,A9prDW ۞<w8SiR}B{ԍS!1$@_%; }$&!Pl !$s$S%% #5!9L +7 !zmK* ) c! `'! k,)ah'&u%j_!1@J0f#5cq?4ilAwɘp=i p %l#s D$rk%c/1+ Ħ GNI=9 ʊ Ūv@QQxQZC5ng,yM:Rld?GX(Ph]MzX pft  S2 R3j3;JkhnM= Y B @=  N., P el FT8n6vUvT5|%lK{9@p| ǕMpfp#T\^qR#{~0(Ou[Gw9 Uȏ>u8EaB_8wrD%m([iI o8\ew:7|B8',b?"k Ifmxw¡{O f/oP"Q_aH~ZIXҮ7>“ s)  F  0 m$ +%-2\5{E   1.kJ#,W#  )'M + , - .! -4 g, )Z &X%DQ& +.'D'" 3T}֫ 0ZީO#.N?8 4JA{xncM#kq v ؿ3c/!.:\==;z)臂tS~>i<' h]vGjyI96iz2vvme`3GX8vǮ2n8@y ɘΒ}9?4܁zѠ8χ&ʁ pʠpUI^c"Џk8IТsOW C>xޚ")'C~Я^Z!r[fн~uWSE1e̴zbqaVB'{,NxEwOj0? ^Gga h d9y o)W  P~9$l}/&ifM 7b&0OCc|0X,~t|]MW9 +y pD?vdI >XP0b$feҡ!%2fΐ&,|""|cX c 3 = X 'U < ~M^ĿP5f><^ 'b C0 A x   -`C#{fNANG'h`!5%P'4 g&vw$Gj#!}UY*a4.C/tT={ ;+l KrQ~ ^9 ^|%}D/ebͳst?'9[Ch@" ʿ٬Y M1FԏOC!n^ h֤]kD@?Ȁj<24ݑx9qRF,B] kMM,٘ Fe^ZM ͶLG8_$m)o=p*RBԼnvݖ)b _{Yϑ慁>pED;.T\d-c'g|m1dk:UoѲ e =>  8̴ %B7s&i´%*s&Nɠ% 0% ވ# != R$o_ c)Ԕ . D1 /0 f0 %Y0 =.N ͳ,p ( c'/i([fX+^l.#,?_(4%lo!Pd hHOU9!-#N3(#g-tbQO.*]WD{6uw/4 /e/|w>'+`4"` K* )-| yu J^ 0c pv4lْ;/`q~Xx}%6)/[BTìrrۯ<*2.ݲ13F^L,$ 8+@K^c8H@آV;( 2,%,]F7;0L2|qXqXi?|bshhS݂ yO.v0bP]%Nig5?)#Scf]PBevW 5:Y떃dENm\ OLneJk⪬e)Rnk@?)#*#L|evmJ>SV;>{jMKi|MF|MX1#V>2a5觔g\/ 3 E R mJ $> D&%ljM? ܝQ agB}(Y` 1bY,g/gyQ!A '^ ?)j6 '\f';&<N#!+fM5$p"P'q2+ º)%Cs9#s!#>x|=gwx pR|B"5*#w1 d 'X 5] z7   6# E~ u.BNk.=4iEGg*a :1(Ѱ<)e*s!d|Sxzܱǽ/RMVn0.qkȍVK>B?n{zb+UV VU,8^*õ5 K\$;h.8 Y8LJє M%V;h+ 0[ {+ W tmP d?4 CrK֧F4A{ ," _ ZdL܁ )J m8Pu64yMG $< : f~^wt_m[3 Hώ$YLC!y`i x&~q=HoΞyp1.qJ'\.>ap?b W,6_X%:K@邒fMxh v:Lcz;uݟ3og-ȵk0O~;ٸ ;#fi5Tl &zqR0jB8:'@w%U wvZ \X  ܺA |wE<7v؅IA :^>j<ρ  *8t wwY]eu7$pZbf&S mDT&[~~T7w[Nn $@\[˩ MēyS1'LfAE&m!R[kvH+w0/./6\+Be'\xV֭@VMyIR{3hUZYfquxSׂR>U! JbpI)j[>>2;?8yW س=K_"SDr% b L_  0V {U 2&opAeq@\0. ƕJ l[F^B; $LB<ՓV22hf_V|;è4S+/~oyCߥg9,D9WNP)Üm$lѢ-N?[/6`oc Wu߃^ꈠ.1f@)X8LKNB"*TwZ+E/~$+eCJ]iL+<0q& 3mVp@} }Ohsʆe/g d[sYU q(U]A ZG_k!| I%R ' % "4  $a{BڵW]Gv` t5 x ,# c _ n> e o 1 }}@h i Z ڪ S 6 {6 E W  b&f=>1<ok;ab F-Ex, yE4FO ь .mb  0*)|dno Gțd$ž~e++Oj;y ,Y \= Hkt|2vPzuqr+m&(aiN*l1ϫ H5״mojuMchI푟31D*T/A["mZ $Ag~-/ܡ_+Vc-螀ߡRQNޖ(L`߆ߵi(B{Pa#0eH쇡+? @f@2cyZS}V<zP!:^m dHV A7a Wqu \ 3 LJuw4ꔧq$=}rvP Q| r]QI#wlJA65*O%kv4-RݟR2E; ? 1& 5C oRX pz ź h$ ,q-? y  VvY9 k/&DS D^jyt7AEp?߹  s%1(+=Wc1 WwN d P S VjU  \(- ^9  -p f 5 J# ra [7l ^" 2?z\^@d,x-Zf?z}%_roqV'V/Ҟ|QB 4FDbN߻;_SmI '܎!SD7l=weqzNzsVP$De. KT 8' & Nc ۡ X HT"T <sLk*C x>dz"+O$%j'f)B,`- ,} f.6 Y>0 z1u+ X0} *M &xK$!I^x"5=u hd39Wab!R"qN {! q3! <  wH? `Ԅ ^ e?bfS g,  #diU5WDڟ =(@` ` e=D 8 l ^G p)_-Exq! d ,.c`HHj _8o|h .< ck !+x= k 'hn" @ D v= y硆+ʅ ф! 1 h i r9T>PAIhdb%7/5B  \j  lϒ N[2D<ɺ)W8E>727%<3lnhf;p' e}2 ^9pYd9uTYutaPZor| e&Q>X&5%p)5DY8( EoXln8, DF`~3iZqI8G:9} m$į|ti:abUn( P r-4ewxZCǒ <"q ޓ < _i VV Z +E9B@oEQ(K8knoӓO=i$Vycrm T4 {JWʒޙyC8 #s EA)O0;$tùͯ":r{/^YKh/Fݗu\fWݘusIL]"GfYTKJ1L&L,ه{צ4d`ڡ{3d M}a{ɂ^F,ґ@-NTXd[]ޙyݿG0=+ j))&aiQE4lG.a( _T/**7 2 ݘ |W L MI 6%_gѧ+-!W 1J]?2kH^@2* s't / +N+lL.K-;\;RonSft?"s,$_1 Vt9oC ;}K t ̖I!'M $B"n qrf@$ y i v  &c#"gfmIG~tS G 1 h @ 7:m R  { 6L u2, xDҦ  +g SF&6 8 . _ V H +"PKjp G4VwYY5 JMu@)X ; "k ! = FǕ8HL y]~ H?+B.T}RQLJ콗i}`ws<z, A IIJS8`܌#uka Sc R &4=5lx¨:7'4sAVRbr$+ML a %YI k o $e r- 98er) 6 3 /Yfd F cD4r's-s7i$Gwc$f=T'+}Oмff_AWNd-s. ʃ7iYuV(2PjW@TOSuYd!H!| '+t2J^ o<0~T  . Ub$ Z;iW8ת to;m 3hW9 S538Zݗ=GBA ) 4,P B~? [KR-  pZ 7 sHЛB`=1OUP6& _$W3 7;X/xM9I7?tt,CdW qgUNGjdQ R_8\g<4B臵n;0/7C抲㉥)Sݜ*9{N,@Fe1#w/n䊆+oa}.{|C5]g0Mڥ,#0&*q;gH=H28Q ltCMOzTv Qv`9wnG%7~TeKzM .> }U?5 E u '1f ?#Ft*\uq _~32=,p[,M)Hv ^ nez0U:  p` F  > Pzɇ   " [  [\x78u+ Bs-O !   b- } 3Y i5 3  V qA U ~}J  ) > i M  JŢQId#Tt ?Z 1E&^8,UY,v%i ]s T " _ f;  Gl * y/Lm^LJk1E3DXKii|'I?q~B;.mb JeYGb(7Bqu5y.<Ϝoo,O\`V 80 |Y ]]  eQ 1 P !a 12PG i]+  E  } 6 QS 5]=BLɪus\G>Bb'?>g/1[F*4t?!& kErI,ac"*O5v_謂#>MꌥpU<z!*ELX/@&z$ g7"sjwh+贺ʁCvnv!n#'|^`ᄗ ,P`d^q݊Mܝ]wܷi`*U},z72WTϼT>_1Anbwۛ'ؖ.ό֍]o}ӡ]ongS YIt&+12,a FpQcJ*CLZ2!6@:T3j fMy\ B> Tg  7[ h1E n0 $xe1h"j)%O3Pz64!]7 'o&+P*F/\- 1/-12v,"2\,J%2,71ү*b0&'.[ $?-]$'.:=%j.`%p/$p."'-"7-"+e D*(H'^()\XV(o'%|4"=Qv[)Քۅ) {% 2 FzK ÷Xa Gl1 |oWI~o  4W  (v  H * Iɑ` v|@ \n\vmy{sqwg2GEfKqSTsG,)!o+ki쾜IryC= H:bQjHr_qe/8ﴲM #y & k S @OA/ x*&%+  σ _{ `2 %r0 f< qP+JDuvjDhG7>ijfo MEI|S[vtqc[hb"@R5PJf0*÷6>S9˿tY  0}E T u'ؕK j[ $w6_ Վ)aTHWB͎Ӣ ^G }ΉJZ:]HkE3ZD5;Y" MD )4qs5!)G Z *-6^\{ z{hdܤgXbAwŊaa fq } ɿ ) s! T 8DaגJ#ֈ(sR1+fy~JSnP&n,KZ,뙰$빱-c,'Hykh|巊CAh+8bm8zs #?GѴ<#8聯/ \ۿ& 76 fU#瘕toˌ= t_|ÀfY S[KI[ws(GH_ € i3L  k2_"yP*&X7$ e? ޟ!N q  e [ R #Q SQ xx\XK #."o`!`p`OV\ Bu B~|Jc8t"v0 {b j &pM Qgv ԡlFݾ XQ+ .;d,; uo~C1J1iTOy3Yt"E e N>$ h/ LrVg  ˬB C5vbQu E| M Nk 9g V(%Uj =D/[XpG5Ԃr h7 Trlr '8*[!2x,y,VwkI)jRI'rK`uI :1,N9 F hv# =L:`n/sv@ffs3gn](;oݟq/-!?9'zpB̮dxVXq9y,c7 "TNa7tIޟ'껝Փu<: a竵d牔ot>n4sL8&ưyW?ğ VJb/3. y'zz[?As,C֦mBuKOjJ=$  @= sp2V7 >Q>iq e O  Cn3 ;u w" θ ^,k ;\JYȰ%pgJw'}=,~\zK+LzFYr ? n`A} J   ^ ->= ~"  >@ x'8KGy&30  '1)}R_GU(rb?$9M8 72,C#E-hyOFQ9__ {|WKwbH4q)z"XEw,o쿑eDbY[-U+ {cUIicf=zk{t 0!L2(SNѥџVRoxIDN;X M_  > gS_"?oMHT5іf< _,-m+cuS^:rEX(~fKM$7<)QV0,yz;Wg\ܷ?"&E}?g8bF 3[#7Sp)9ʣI.P^ZL!Yc0V  w | ;|f ӱ  o )ݢi}tL|X{d< IE+S`pp%uG5 E2 2& '-`E x n0+  ^u F~s pi =ע j0{Q q A , K]lW G 128/j*I%HUVzƅݚ@Ppp^=kXKk*gfbF=?nBW0TU` r jdoLGcLS#ad,ZY]z9p6JGA}/Vh / #9 FJ  C ? \ *, f6 ]/@ '$egK+iem8 p %4;Mwk  y b L W9 X# ̷k  }M>Zd) 0oY+@@ =E1 < !5 X: r<-M &W SW?92vwhzQ#fbZ@T!6}x3k(sbwBUߤ;ߦ9#r -Ё',)Yu7Zyc亅R\'U9.tp+wpqHn1\*ZxIPX7 hHNs5z|hu3)hQumJ`X-J<9UǶH7c_"u*1$i؟G2ܽy «E ~0eRl cE\eiCnTIb X: x|)T 6  UoDŠo4 :[W \p 7 Y }x 0|)UjsDnpF9. ~_P*EFVS y! 89?K|S`J _n Z ; ] \jT7l5G P B U$ MY !  #d T' 4phO_Hk J oК X m12P)$OM92=G5<*N*.K2ڄm4Y(J*O̝dXtLUS)J*bd/q` ~Cn Rb* V-` lԪ"cs QIU2G뛒Oj\Qtm+T0ڔaB~$i-ZVܫWj׌< W71>Ɏ[ﳞ4Tyl[Ycw㋊!wz훼M~Ϳ4**׼ρ 98 )fdaU/A`RnS7fX`Za,A9X[$<B m^^v [Un_*@gQ:g agp^+ 9 9NT\Z? <m!y"fi%4`0Z(H:*)$**=(˒F%4cs%Z%y%5`#Vxi8c"=%2 S   e /e^DM`kDL ^Dh-  V ԏ_ $>Ny  c,Ww]etF0t*oR~҃  0 nyD`,zfAch (PtWqY8}nZQFVj H*85[ L K w </ OJVTLS봳y9(X*A*ɟ钸 Q]^mbPZC nzWzˈ.-;~ 7+ 6 0 K972d7 L  JPD  E  < m  HP{Iܶ 9)+%[(yZ)I,& -+ `,O ]*;'zw!%+8#/#W2%"=l6Lג,v$6 ~ ؂  Ml}C#.IG (e^ ]Gn= Q^W\ qk nԠ % ҄L N| )B è i$ o acj3:y@#[D 4xs@ilۈK6>YJ),t CY Bl04sMBc 7v E_,  } ]? i >?D^&WWA!^`x=v'^1F! r ( . (ߍ,ijF,!5UUC4OV$;QhGh5,~dzd^&io0jv fl k'f,^ 9q}w$yCLP9.r7}qP2i#"FX^#?#1rAOeL urؾAYԵ:2 Wi X Au;jZnYF;lYs8^n8)3 5  XF.k S ,r   P;u\͙% >c GRHDq+iS1Nvc).| RXI\^rbjw F13mC O@ ^jkﰗ֖.'N/}y;_X 6BKU4nw=Yc?1GuxrډKf- JWrS o5<%Js,|HV! 'h %TcvQPXm*9DPb*M]Hy&! ԉ&Xy ('( &!& & ޼%% \#F ;_ o3 Bv2 byI ; s W 6M $k a $* :b ڿ : AF4zETR M a*;_\bՃuyKHL4 H}qҧ1BUj*M"~'ּfRrxP2Fhm2.~BvZmbp/AL{T`28$;BXr|p䐞Sc\~B=iEa,M,]o`n4'GG]ay; Uߋ)xmV#g@|?Kvf/e 6F 2ƶ /U ߝ$ cy ZO |C [  KDA $Z Y u I b }A v ] I % ʸ n L# 2 .  b"? < ɒ kK 8E\ h& H w R/ i ?C x yFat<ӲDܰN I-BmM<lr;m}>dt7$D nӺ l~Y Hw   ~Va9tqNIN%HRP 9]`O!^ ЦZ#YK=" u9mNt'P4at N,W Cv`FU J qȠ _W?[U ˋsq@RG{MNMH:9٥dQ* {E\:㦙Jf8XAڣ&U^_G߼jS˝&pǻ'I}ݩ ~Hݢ^ Sܻu'<\+FX!jl(@oka%#MP@/ן+!qjz&XZ &Tk =pXc}4}1 d {C 5\  b W EG 4́%@&%)H%a';^8V(w'7BO%O#?@#Hk##! s a [CtIm5 a&=l7X}?ѓ8}< S6(i1#\.;3CӘޚA< $ K> W`<9** u a = Kc) :&:CfqT'^ 6< iaw QN nhVkM+xUrop0,Qn8A'H_/~?1<4< Up {BZ<:B*_*lw=; Vm2ܽd8kP{1..Z  g o 6 'M sr":0mpv`vpF0OtR`?n_% Jyw=WgKCtgt('9M,4Fb2]~;D+M셂=p@%^ q)9pU'8 z 沯 )#“ f%LE 0% !+ 4r O "'ѿf Y `IwNաO?qbfO)( %q A- OTZJ 7aD1)M@ҟ\yu&I2Y`"gg@$ gjf̟.?BjTw3Md1EHT$Gm΅:BoL{]-E@+g` ٺA$c'hKGC?1˘BPOL|?o4k!by:`ˍj ~+K81o[G&j,k/vnX͌x Q27[F:@>Poфt>>z`1+SIQrXhd:|Q"6lfE1%Hb7 yI4kelGzOI[S)f id  [n&]."4e!_h2h@" %~ 8l ӵ^r(SQd[ x n 1 §y.['OOHX%}ue&AjjHG  PnF +< w OP ,}J.gj1yyM# *J.8 Ӏ { ~6\NO{ i!?g{-R,wDU(|_ry3Z6{$>O  Gw Qlw H_Q Z$yI&;όbUh+\  #) Qr dRSL;ۨZWKZnD1]1h"ڋ:)pS u,UwcsU1(J0NXA*?4}>;ȏw ܻ@k-iЍS!4bYP ~: m >B` Ak{5 R t:Ty(tg3uk}9N(_ \(BTQBLd>Qqegfxj*GUI`P?2C0q?(WC\V}e7(bA@=]dQ֯u7?]AKUgo 5Cg s"khc+3s3̭ŕӽ7z:Uv 7 BnlQ,ytz!YB )=_#g-!5CKiVAgBlB<~ pNMP?qOeiO0I!n$9iFuW#Rjcu"e~#ef:,%ONRd`(5 tmeei%6_  Ʒ XAXY2N < _ R a s ~ B ,$ xAO=EdI5 t pX ItS4%!5t ҅Fk5Z  nOQ:kWY ai );| o `L n D | b v  )  ۷ ``GIYqxsX7'ζ]nYzRo}!o;1;Aa}R~qHTJAp#hw*SaT|Y}jyg]m:vBfhwTM?raNWJIMbMEE6;tn;=sZqi*%xS*?qy)v1V PN q/I~GM $R `Nqk&u 'HHgwYa q/; AI <Z-Iq  #Y |t i-*w 6mJ ͌ #._ im ZU @ J \T # W !3 N<JXkySC" y #? CsO Tr I 9 Z D`  Y^4R Z ۃ q{5 Ap8 +<\ ?4Z N ~ iX r@8 ~>"**t M@rGkJ'2 6+:ҎK>'ND]v eK#b'FiwX)x70N޾zN #0On쇠g˾t,_198 00mbfL3gQũcI9y9k\^bOIGm{4sw 0iy#!A0]KJNHSg_p <cbxeZ`r]Ƙ*x7"5|r3"dU.\adhtvJ3:l $c&3z3LFԫO>63P3 xPOYYS{vV&c1gv;e6*?M\-V >@5CM+3!Ѵ M  j62$/U|@QZղݍ}= XH 'ʗ6WGU:xd5 O_3QG7[Fw`pgs Uڪ , 5 5f9syd1-SY;d! *} ]ӟ 5 : }& {H :iQ ) = 7 N=0˳,U G0 ʔV '{ IB G %@w=pXr+]~HrCL9^$M)w{M:~dC7Y/~9s~P^db-KE|Z;.nr;qkyMu˳ٙ}@z-C }3zb=AQx}UzI ` WK[@=hP9uϺ."`Z`= k&ɔW$dq Z/bm/'!=} V-b;Oq}W%nt:Y jNq}.^Ӂ{|zm"upuel]wلl-d ­F8H?Tr gwԋavJ :5(;]eT^aJiR##$|m%ZyC 7 tg ɴ ' K yM .9 ب  YGe g d(\ #- @XT m .A E >:d| x k 8_oe Iu s Eo D{!)&} ,([@:_Pp˙.̇-Zj=mOj&yg z> !(cw[wf,5InL#˅vkd\o^a=@(Njr'&xYDi~p<FeQ\iZ ?+U2יHxlu#g|"hIޱ l*o gA "J~ % C ~zj`t*m-h   3A So;6r_ږqv3 IMBBR&$DJTVO!AS=Ln9}e%2Kl%R~y:-pZrC֐wKѸ~@,&kab,9d">k\Rx8Nd<Q&l?Q*u&^|O%eAO+nVV"/pUD.yOq0=Es `pD )xx F"N^Z%X6~ѿX<\W/ _* )) Hu 0 P_ G `i> uA& RG m B+ )# I ݛb[ A4;u`jIFH- V bZA*KH=Nf3LԮw  X{w&-#_`mXn'y+a:&v}G K Ǩ ~ګ $ ]@[g מ '. Ƅ` : V !ZS A BMmcWr ^M S8,J[IaoD&RgSlV1nMpm{?bL vW'g l+  Gr,r6('@d`c;l!$|d'wc6q{ JIM.8n絔]COdݨ3-X5W[i;6nl8H髿,a]_g&tz.Ih"zfI5m!\}}R F>mwOLe:r6o ܽS9" "If3AѣUT&v_W-ru/ggC]Th WQ7l0!T>pB@; ȋ,n U ~ TY  ŀ a 2 'u A Go8 ? ^+ygcDd(dؐ86 ;V 6dj p P$_ Wo _ # *0C ͩ: P )@ ,k a Z:y %tp < 6 ! *| z  !U"|> X { eP } d etN{cg7[uqʆK,|ԧQY"t >W8Q>4 ETM,;q6a!orMr t9a Z=H7yjGN[U(gJhy;u9=\`m;o+xB8 \AoRgv (f9pYK[_+Aȶ] $PC8N` C+pK'>]jv% |҂D"ՈJRn&`<|Aid/X%fbf.*CTk!,j؜?G+ fEcX8&sQYWVaie J1 "1H`   4xN h^ k Xt-%uK [D$ Xy ? ?z ULb B!}^r!r Q r c [/v /M  ! B vzv~~E ^ ) \  _^ n ; m \ C Q I  HU ̊ ȫ oC % \eVFufMiY IT)}6 _n#}PqŁGZه=!jz>e)FlY150J8rL~Z}~I `7/pQ_RAVLg^BB}qyIpehA yLZy}RU,Vr-.Kr}k[@nf`Gl(: kD~<+N6\$Hc-$>J*0x(x7RZC]A͛WjUjWX(Jzz,,ʼdi?b۶frSu?Vc0I<r`}Mdl-viU(ʬylx@U%\l ^ =n p‰ 8L eRDAmr\   4 POڱJ!k06ѢBtO rzI S X J`G xnr:4>5Q H s ˈ ISơa #nT h{ J]] '= ?P j  W  [  09 % 5I|2l!ApbU21FkYVLyeƪ@ltx.(z i P ʑ yp| O]r\k D( 'r 6i|\# ` ' ; u'9Enu8'\ n1=kkB I2.7ZofG-2Pf>(8)[u:Pj lm Qu 8 5 {b ( #u5~"_S|W ]* D : <D*}JwSX.} g ? D ELS$;aP>5 E Vz @.T/4 h -n #( %v,/iR+ f 3= J.<5{o41wB =U 19~ 4 coX6  _? EuS=u~]wULviX(<R?AMQnϩ?m/#%t Qk $ V 5 4 š F}  Z  F C&e~  Úw # ~9~Y4~vu!%]mw|^KYҲzK[D-B2!^*ܸeh0~9:Ae\B$Ռi lu|BѽWILLHU6+_yGq\D-P(=hy>NFPE&c- mtXH%Kh"R)[i*{CaRp ^u6MKs_ 1t d_/= #MdYZJmjZSD~ L N2O*a Yi D Iz R 0 K]F)^ y I s Q w `Y E , u  ~O R m ' - P t`     Hs K y A # :H Ax <Ȕϗ$>^ a5SS'P(Ј1,aG y; G k3(^#}"sVc[n;By4t] )l_eT=ofܝ9'(FY v}c vK*fMA~+h?yY#MEVUu9^S'dzE"%vnEa!0G%hVv+{B w TQ^Juq6.7eE>y\.dU% EHWA&siv}*%?NY1C&/2|fϋpt;y5:c7K"pe^mTV#dI/67/ҳroMjݢfL8Nl= cmxiVfU(N 8 ? S Ů md (x ?` T&G"28 M^ K ^+ y T &MEr1ZS+* a HME_WnTS\88.BVf<BJpEpXb{A@)/ $ Q 2 ܠ ¨u р ! ?jspMUPAA4ji2(HX R IZ pqtr 'U I } ^ Oo 5Pi 9 O [QC O <Z:/^$,`?%i,aG1H^X>jUjaW<7t,(#/Enpu^i Tyk&X BH>mz@{hsåFVyFH@j(Lm$P4vx;*@+ 3Xdk'ǫzI;t3KL} ` Ne((#9)9mN&ipN8xQWbimOtӔ~1nO.c1J? :]tyxhmE:$E+MS0!`GPT`YV=a ;Z\_nN-.$:ۓxs^D ZGڅ#e4?iw&;Jn6&xʠzm.Ѭz:< B h_  6Fu 4e_AfoZ>9|ֽ>?+Av$iq^2t~/W|y= \r 5f [ i /% PUi ۝ e ) o)Nk~u6v)F *) &   (z& Ђ (k߀dzEo|(Zz}hJh!5D}tT}Cs h&BQcrˣnhk"Gvp"R]1zw=ϚqrIQ k 5R\t3_"*N۱ @@! GGT#V5  8Zb8$EU c*h%v+h TԞo@ JFF uf-~'}BOgh ۋY9o*]%D.XPaR}=EVx)׻"!Uf5JBVIF{o!@x})ckn[1{En*>?J=G wUYco3#TX>kŋh47)[Җh)n=QXnv^RXk|e,~M6n   | ܢ} F  RrJ  + i {3 i*yGkt B( 8 z| Ϩ pS ݀ Z U l 7   ?   ٭ s q K2 0 k kiUp^%%Y (z 7OJ  - r  |(zWAL~ o T  8 RTcE[@.8- Gn}2VN Q&oI\$pdr@g7cG aoplUH}}*nj)8G2\(m54NY3I8L\&{y?l9Sdȧsk5#쎟_o.{D!ۙYt^09 Oa!:`BZ jk}O+ DH@-뀥\x>MF..~9t茙% )8H/FWO*4>pcV{d6I _"mN~}fPItGm,/^?m2!_>@k*= Gn E7C@VT?rZH\Yj, rLp@ roxc+~Xftf m y f C: 3 S:X) o }nD C= X~ ؉ +QUƩۥs U V R ,C @| 6 z ׽  UU ɏi-9Ix$gH o &co8 LjP\}Ԟ^)S#@'(y}PРi, (x cX"!)H`'b;zl Q͸xNtycSy˦\2 mb~|>G|)P j`ڄ - Rib/)?sJ" ;U=J79H "]o.Lɝ{ ;*Iq?*O&޴ FQ1xyJ M4He3ɃiP fC*?nU-"ϭ :}¯L/ tE۔l wVE = M= oՙ Fm36{x6 Xc 4qd]GXŊm,DC3 U72{vkqC&lz4f[q|ӕ-Z-,M2pmWdL?8kyx8,B.*i B l k$ 9{Z r pH, D wpG ~g d n /\L^ "XUOʤ!  [ s aS x u[ .Y~obI * Or$  t i I; y   5 q> Q ֝ u qF@ Bx 17 (%̻ ;r /DI #J nH7 gF 1;! 'Q l   cx0[1ZCN 9pU6un**Bk15!EAqs:q#0_М#"F89{-.? ̿9\Orv#4 k 6>J %$z6[ɌybONe6* LuE)!-OpI"_Y>/VMMU}d"7a f!bycn4ǵA4GgPb G.U^:}]}\,;=}]x*IKLVapSUV$بL5^4^*: oWV]C$~ltGc GKq..tcr)T=(X7='c`P?ATf5HQEZC#cO 5p1nR9 6 1l PN3~[w'\6E.!b;f5 qJ4OE n ' J5 C=xi,`| j{ :} Uh P % \ r ^ & 7 ? ׵[ pF e %Tr*+= !Q Tlr G ؽʔ 1~F;  8 r { Z Pp 9 n% t >YZY`({=B1e/]7)Lďv-ͱ?\{s.A:IA}8Ry&b5A$ ֦.G8tj<7 Q].=GZmBȢ^=P~_AG, 4&PH FGEZv)7CūK(R-oDPTMR=H]210X%~IH ЌL6d5tGRcLR-lE!ZN (^4H5z+'ZFgj+ɤGg_Mr~)AjsMJ] _sIS:`=R : tTS!5 [Ty W +la Nl[#]&H{Tf3%q+]u/BkCwVR4iaU *_ !7 B 2 d}3<2 N*#! F NWkkI;R'AA?8#S1Do:5NWO5Ru`xCLKZ\|kfw!*T4r/U%ӻgr!7bZb(PymI)8.> #XV}k|;o`9[ǁXH`)>RU-voj1韗]yRƏ 2y+Quh8 $:U[>|:24=Up.YJ 5HW ujűu"[ZP)viCb cQ#cRwW3yI+^o z^ u6sR3T2f4Jk!q;3   | t Ʊ ;:^ RS K3 5D ceC 5\ bLb3.rOnEZ7 jf8 4 !s s pL{ 8z \aiU|M 3 o@) :}}hN-A^Zp/ H\X\c7`RCP+x9v*C.V S) (ecx ( ~f qJ _gk@ % _"Lw{ J^ `*Ca @f 1 mO l' \ r2+n~  })  A R N 5x ӷh ` Z K I CI c Ű nS WN i`v QQ/W 7: !D E`W O8  DQ[n*-!vѯm%=l 3)d\^ÀdyHWf#2'-i>l$fT=Hi2PAmi2kg-T)n]Żh=}_ fШf|˻'<R{z>L3z$bLT~@^[LE')C˾^&rDfX4?x}w_E#=O/'*ݩm]K+e}}3otSg 5 7"r!U~U@2OI"d-Cqo(g`VNUS9 `H_a@gP P $HUu)CBHSܾr^n}SV._n`Y-7m7ESaEt=E#͍VHj(R7]lOT~WRw?R.)n)N>Vk|ZuJ%q EE~ C k }o ; = z T  x~ X} c  h $, "B> a  ^Ru  yIN 3 x һyd tos( ''#ڬp5 3b}F"&: M ĺ [ C (MUd]} A7f{k}TR[4=v:^r]=Ghz Ep ~{5 Aԡ ,"  'k ;7 Ei ' 2P G*-fQI_>/P)cuFdQAx>nb!c,g *!b'qBfnbCVb[n'/IKIÄ! pGZH*&'? ԉ-,T{,"0\qG$Z|B;_nY9~> 0 myn_ԾzN}`^&$2j=cL1}a*~EL F.)\[D ,]  ƌ A;i<  E} A o {.( V! u    ]* ͬzP  7 u |ʼn 24 GX=M7  ; \KJ 6z8[N K>#  & ] J Z ~0DOUPq ` i#* Eo"D4t o6a 3. Zwҧ{grJ]1hig|=Mެ^OWjL+\""{}A:=OrU. sjӬz+ {WWU|FW{*'(kGj3YZ+A{[7Z<2Nǟ{,/@h̦U]i-ya_7M7xGӤ'xQh?B(N?ܷUT7z̗<(Tާjp͒Ş[fq^.gpFExEEٳm~F2/PB m_xDp?*y?8YQ/cC@U,a\׭\WzeNݷgmr(c z.mg ,kNIFg@;&(S{JKӍV  mJ7N̑:Yj3oe/&'2El OuNe5+G  c \- 3 @ K hP] gm q%l R  Z7.Qj\[{Is=]+S(k{[^Sz#Gp,AJ@ aY`:SZXPC ,]=Bc>?'qUi*b 2{:r k a1I|S<)SBcoR>YLG_~twNGR'hlT#-MX&.Lf^VjԚ *H,-J1WEA>ɰW;KRDTPWSwG64mcZV8}M+}ٹKG3/V~ۊqq|iS-;3Z!*y~CNzwkP.xNs%O'G2{,x|W9tH G)h.e4TȚ 6c }  E ש = 4 gB~mj.]&?Od6$l_ f3 & b!;4Y@FPMj=b0~e}c/- YTUubn!/}HW5\yE4gwX0"(+s rvI[uHʋ7fG2K0g[pdQZq}=' BGq3 SdcCOTh\St(7aR_QY&3B B:o_t-zPEfK&)`YѶ\O` hԉ@jVk1DĂ*f]MTv5l[#L \ q+A8rA m| 7D&FWa;dihw]lTԆHۭصUoh[D6 2u! .g e ŧ.)   Hn$Al&zZL-Α0'pb"^tUYjp2<$Cg~H8'p:->f tJ12\O8E<}xeS L1hMse~)zUY| lS`${Y*)Qm3HĭIxD/k%DXn oO/?J]Zj_}HXqH?$hN͡!qb;swSQϡQT! ]W MMmf%;)W,퇧!VOE=f$ȱ>aB0*X V|BZm` p&R8~Mqv C4 :n _* Z X y( n)  WO $\ R fu5Pu~`3]a Td ). N}& 0v a A">?EBG>eQcp{H : i| =wh ]PH DS H *( - Sb  wZ31  o &~ l } U 3 T  w! cY"tЙ]t"IAuBc[A|%mhMx*D&$;)`ؾkjEg5 /d0k;^KUZa^gCX;.s2x<")D;Av@XhZLwmDZe CfO/d_ d94'־jy |%awl̍Y*SuHr(BsEMgۛ^l)̒xx"-69_~Ub:!43](y%\F@O+UG554{~gKS d,u.5۫XgcL.K1bR[s T1,jaHo×_;FsErdrRjs˙`-w) !Y rEWZ~^=ls N !2l_u x4^{,)#m aQm2e' 5y @' ('=oXTYa4l 5V;HX*+(= B+O+b&i8o%5i!>|IÍgIIjҜ5 /mFq>L1gug1U}KNyV"_ܘ 5v#j^WN3%SmY|6d.ij|b뗑Ed/|V肭Ws;!3pt.*;ޘt~r?0сGdj,o%%;/L"PDW%A?!*NP/.śI#hŲ={#\KoC2`JJ!߀+wq`aO *r VnEi5pjA?XCeHA(&cp @#M9  G H$e  N> c X' † ɷ ;p v6D Ny  6" T5 G[[+2$g .c/[Q .3Ae KmKsaP"xV{>.f5/Giu{{m k)@gR[ O ]^ k 1 gFT D |  tJaJ DM Ҧ aWx i ,L_ Sx [ }H m8 I @ CI I s bZ w\ EWBmDW*`oo# e t4  o mF̝!@Kv!o@s/fOZ_%,UpJ7+IQTBIF L3m{@]sz42zRpnLSrB uC*fq3kvm>R{sjk8Ƭ&yH>+37*tT;L0zo|#R&O [-$TqhV|pA%1tVkV$hҗ.4rT7E}6Xl@K^5RrZJB#B qVh;(aϱrA9qkL(D"+,_6qa jK4n 9Q؈|s?@=X?@\ALQ]{X`7UB v]l- BGIbTU,b>qP=,O#(e%,LZ\u^7L@#vQc  hU8)u8 25 v   (' l& B ~M SF = g "s e H J<  4AxhO?tP H~ ) V* [?w O %_:  L b)   Q*L-sv] *1 _ڥ بtP %qd  uw?Ca)^]W͚ZJLEMHzDj  p Y Y 0)Z 7? \ s Bn*x/gfK*Y[_)SP5f' ԑ'8Y=XqF#DxLxiUt,n y#xot,X$ kMgtGG.Y#c/eßJ~:d1aR~# f ] tLup4f#mOQDnyH#]TN`vfF8l$INJ  O=kH9')9}۶<'yTf}yV-^/ST.1$hVlN o(w83sMfaHF'2 t2IYnbTP&?PSFLV.t2C I&l`K޸nj{Y&2ep J' E%(oT].wC]DтC_G5!8qɃpR*ǵr]*)\2VG36c- &,X<+--!)PQ^KkF P)|دyׅYR(i3~=|^8n}uBrqDN|v@6|"Ż"zOr<0ho9YtS6a+UKaOBKQ!|X-xR?dkY.Q0Y^Kp3g/4|~8`vZoZ8;53 *s4PHA6$`?cNăF9FZ/rڣğFg"M1I4` ^\elK $9iI=*3 I?#FS_Z#ļ'J "t\q"ODA# bO~Oy Y 5{ q A,O+c X%:QBo0T'ba/uB@TJl94Ny0#.4lU_AqrmG*&@/p+b -dXXscC-k!E%BJZ3oz*RZS _PvWGI$[GdEgة_eQ48reu<\xZQS֜b{JU#4mAHz6ΌjKs$k)oLY%Za>_#Ӫik YHg=Vn1F:Vx1Wv:Q0dvf&G^J>@h#\t4~sMcE?+B[Js(W>%M\`UeX @ -{V-6 x3Xqng xCK,Ƶ3[!f1!09{=q³?^n7.6Pz_! C | y )F Q19 -!+$ 2 dIuSis7{5<̟V%Iт% 8/  7$ >hn}Di*Oi1l/F(2o"~5hAJ\1@qOu]5 nA w 4@i}p{0o[3IR P Q >mHz"oY {gBoss,oq)yH1\@ /)!Pr*P.Yqm5HzhQYV_).)^)pmi /zm|a>.Lҧ>V*m,bMR3"kz k/:}9R)#skHd:ʪ6''ϨIK'OU?ts6X_]%Ek!uF3qҗk$aB;$`=5iX  kH @|nra?,ctRME, #w,Z(t> sT%mjh"y["y9EnmE_2$PscaOW`>5<InUf  M  \  ?, #< s ~ :3 < "M + # =fG QwDt2 K 1  s.  f {e MCx~4p.M>9AMFfaK#\¾N6nfPc,Lv/tsIH_#p$" Z8m.R^ p+^wr~wskk6*@#7HN~$& {aLUVN/'I+` t{,J"kO93zR7pgx0y}BXڒMA6 h/wsthbz2<#Ny`5'o&p]v]gJx)9\ICy-4Rvٴ hOH Ri |yWGP;>dl#!qg[;S .JCR6zc25%XGq4d%?!*W(Kw9!Ad::jvknjT-:1dՓ_(Mu%Th c0 b G_L 71 }15lE fe i t ȝ "b RJ &-iɨjZ6Qن-|x%n(` {f3.̂ +4N30f#Mi,tMhl`_)}gn",d:N!CV ,S F|U؁37\@`  'SCblylF+aMtj*YJ`ilޏT44{B"E;ި+0w o.P>c3d`5(  #: Jv d y ya/ ƒunl;-%bwXHFT SmmT5w۷- =4 \Ռ{Ax#>~mb~dcZP]M8S69W36+"z6_lNs$SZ,&0p{ wO$N< on R 9k *o| ~1 A ڇ\L=)&ʾ%L  y m G/ R- sS!N i5K BN 4   _ / 9, w u }& < m 1  F< uZ ?K^S M< 1@ .E  Zz! ]JWҾ/'&j g?{dK>%o՝p}'G|zJ]^VfO+O!fҾS9.=dl0_ \ecj'3O%b P"W?o*\u}"svmv  p6'Q q TD eɇ  [j ZT A k$?teMc6#,X M B g c^{9kPҨ7 7! Q  ϣ . nM!7`C A<@O/V* K #) E\7xr7VH: }\}HxFC 1C7Q|ZE)y*0a)^( fgm1Vtk|'N7K 9{&vvj;+({W4~+*nNTOjx36c^5eG%7s ijA9J"r/9s.OBNc07Go0ݿ~R60&jls#Dcpw:q[HH*5UWf(86.NP^3[:5q'3ӱ:O>{F=ytPNr{2#7G>.&['}=k^@hzAifip\k !xgvojj Qąt .?9O/JnDH]§ RYbZg^q_#6 (>_ 93Z3KVt ^, sM1EY6W:jpLs ';*Rf-Kwx7>_K,;Hbb az .R  0 ݈p5 ÷ *E U a M ( h{+ !]ݵO:sm/4nI%IB 9!a(DSw2w^07W5v2nEn-h:J3HC]݃|ͣH\r%uz7Ne2Pb.{&qAP/bNDdQ&U*}&rx~3Xm% !v3B1 9|VyKLSUճz A.,ѥ, F̠pm2x2]CZv83*U2[V&ds|SJ'Drng) B fQl@B3SzcfAMj: VA*vdUecΪps7GFw9p*a֦Ic l:1{Jώ\Rw>>4ƥ 9cU: "nX{}a it`ˠL|<CD޴GJKg;$]e@`Щ.y )fz1MD }yy2iϰ S*D^z %l#WXZdN6C\EZkNbR$7_"JqIB.Њ|`|qn>_aVN>^v)Xcp3)t,Y[E\.A tfI)c=(W,[^[k:PR(Hr= MD(anp:~@0 Cb\CfxwK%VbgJ :<ҙ&Mne>_3_@qEFV A H YXC8(3["lq}&$':eya   9<e" #Q#  [ AV $1mh Nb/ T5 %3YP QGLp eg S[ mjBCCti#])/wYϬ`,"at93PV(BQmXg Zp_ k L |2= E}ð 9% u{ +Z 7  DCzBG=w x6VR2g'|{ 5nE H( Z[ R 4zWNm<MP( |. ?Smh|6L0, +nD+o`!5s0LSBkm!~ĢO2Y5(lݱd!"}t`.vvY;ώBr}wm{'$laq4L %[ar}s[`id*x*Ə5&#&(ޅr;WeEdE ]\NC"6zaj~§Q3O@~bҮC-*' g.2h˭hTu8\: 7YPȥ):t_aE !j2]W 8r NWf/swQ\s7k+h8 M7QmokaFtB,3e\б%Sto Zl: ?`xN <ACs> cg ftn$Rl޼Dl i  1 sQcۨ:>[$<"yH"-Y y E (֔B9eH טE3Wl N( "ܗ G .}"""PQ?J&K9AVbg|^EZ+jeZ[iV@*Q% \$B$XYA{er^yZ%u;E3${v/^(ruasc(B+8;NUh؍v~TQ-zW&B]yyNVtoEv,a\?1u@z2^YKHRe,&w-[2XoEeӈfn79 lTZx0KNSSY$6W%q}xrq~m6Bߵ?\tgQYqq!\&>,qV~ca2+0b]LV[!J+.MMFv V02 (F  s? ]bt 'D$ / 9M A0 Z).Zd"D{( 4 Tvy>iuV9'58iK )'$LĨ& UnT߼rc#(*c}F=k}H+I-ڝm[*(R"ֱ]2p 5 x[1{+.eS ]7+!L0}d6ߌӋ=? %k`=`Cs1>3O *4?L 4=q,HD3j ; # |* ,w ! 7Y :. T+1 PR wl : %c,1#w8Gx1 e;ab.Qadq۰n|u,^Y0|gHU tBcF'{ Äl ZAqlY{:Bt!`M]ZQo\q}(t!k0i.w#hYrt$ZF0ˠe9WFk2HO3Wܹڀ'QkHZ#x*]=.S޿&e?[deA7.! E20&'Z_ l{ O6&B;'#RQE-[=9p.W1_&۶8Wbћ1lvv^${NF`tg$:ς>zPz*@ȖwI۱]:Oˤidٙ$D@}3[-:2^IP SD>Lo A9X6`*Sǵ7fow'4kX6 KV|WHm3!5']w^yE  r+,$)|ayNc5Z_':8QaUr )W 1AAk'0kD-Kf9O&1Dh}Baj53t?(S)DKx%5ED4ݮ57qUY Q  { :JS _B:U E )p Er93+ake,dQRt5օqj*k ؔˀXm<]u2-"A@[-{!@ U~;_]AָUm8$Pm$y'pT5Φ61T1;v?cẌ́YfY45Km'$6YvxЬ.{N& l\Y-9r-n???pU0:MXDm.P)OWg)UNeu ^P F16  mS l j A= kDwJ_ w"NuD,jVu5KSviKlf\KU\4dKK~څ#1 3\Aa H6d1+? п8HRkK!\L]p 6p3"nx*TD0"=a(I}j&e(9CQ#"SaKUD00S?E9(_,x6DW\Aeo.60Δ[N-#%ux2")(ZKOrM:1|f1ڿ.2:Tmp1TTScNEMZ1mT/Nrni(c|C0i\eȌ#xfS~G#P<]rLt`nC69"1)2F41Ȍ3a~lV'~&u;(ߵb+Ίj -O=T/JvSc Pu@3'0Lnb#et<{  2iZbL.)+T,.o0[X7c^4=cY!l@M^ q :cWy}#%m9;<wrn9K1VGm@w:]"7-LF wFzuC{y*l=sgZGfPxk6;r6Y%[ Z&+QO^"Cξ`<0:2[,9&U\3l=y('nlm'd,7K J#,L`=bWJ[ .J8r1.P5A s5)Mb̧*39)_6w-Rj=L6(.$:bR4R<I1:&p`zV2 Xu  [e 3" %uso{>n8h?="O0.I?EbU_.`1 u\8rq|y Ƙ\;JNgAep'zAn;.. n1cice %oV? Tff--,bgUS\N Mm(U%^sG!a2.]S=4U>,R ]S{o-T 355#z_B?i}"M(&;PU8gd;Wqh~ss=m)3:!3s2=] , ƒX >3 'm -%\ U~|;$F9=Q"1J2o'ky%XSLmŬTMb=iV^/>>-[1wi](\zHEs d`?aݖz[2i:oE_! 9Oc$_"?i{Qޏ5@$~0b 'Y68bwQiξLcmmEQwfk!1 SX/ pkdDD:yq\DS Eڇ(5OW1&Aa4-WSqBHozсK4-X&=l20mu6v$R ;Ik8*/qƏ$ D~ :YXIzN%*UAk1N)Ջ1>/T/WP~&8vJobvʑx%җG"<Zrq X D5#   \:w "D, <ٮ  ; `CsqJ^ TIb:* jW Yh> b8?up[Bgr&RZPoxWU<|mMN7<z u_I..OSPTZPh>U()s iS'D 5DrwLJG6vz'cݶ/<%lf^ }RyWgL[B|a@*p.<=&<r I8<>c ӽ$xW>VV`> gx=dif'DbBџv{g{i=M]N/g=$X\7|?-e!}Ud)%YmbMP8xWFub]$tƻc(Iˏ^?^Ծ7Rk0c9Irx$8F   4i 9 +S[}jj[mGq m 7 LK0  (j l *_gQR!V /up\c\G9_W$b2`k"!×*F_>ezG=u$~k(J T+ [Zh~0yo?b7lc /O2j<x6(5tId,o[` -)Hrp)3"(zh Wz~C Fރw$!X$/_Helo2(HfO2:qhl<6rdn]s/"@4&Nhx7[~idž.u]kmnBg#O7vZ!m~`:&?5W=9a z5nBJ}'/́B?X%=|eO9bE'>4V }Nr]]]GsyA$mH!'Lc6.oTO;ڶ`Vu:%LdfDtLčN 9aUV9^>~b',Qġ8?Wk7q%*:d`"mAOP _MaIOPG*+V.m))ʘ  dwo)7gpҽaYRz>sb @Wk0R#-|SWX;cli":Dj#}y>=3h~W IÅjQhk4Z/D0z{1O}TX?ӈFL\g$z|'P'e'r#L_mzmb¬-& ɘ+6-~K.~3]_O)rpC&oyLlTڶc|}I`plbWb6TMpc0eOk?C4A@J96O5qQPm=݊fNCZ}rP(N*zyzR.z-z,J75j4VM `C"0%%?'=k"pV"wavp=PZ"FA@HA^E;}]8P#*IZ9E"kB7\;C^Kno- Я#  (X@] yQ[)\Ƨ:1y{o-ZBWN9q6S4.G3+>=96]gb_:^6%2DfX7o2nhrξ|nP8UZ[k^Q 5.J7/idE@tp1`BRbkw*a`!+_`gb=S?tgv\pzxݥD(v%qA *r_{o/`>XMsݧk ʏ`k!g3Vb,ct1EL`;@K}]oz?N@Aw 9ު$Q*:oy#%)w" Kc 3'7Η;Kw68,nȃ.|j_g/8 'ZN/[&7O\*2 C!zXb60VWC6CE[ت\t0N|_>2I$crn=HW!W]l8E5>!\u'[u/B;=*S]w62B-}>t51sÃ?=RBQ;Mhpk=( S.^EO~^\ 8Pm9\vW1gI4*5/yz}_o @Gd 6[vvDs QTK|mrtDzTby7owHxUЍL6ju7<?]ж)p 0M]w^KsӘ4KQ2|C[O-!d fs9f0jmpCHGXk9lvJn#WZY:Tnkv%D3Y} LigTAez4hi_(-Y37( E)ȵiGp A>`&\acbjLO6]5]nbxqmS0Dkjy~OI$XŊ::Zmxȋ_@dOj>/XE1IyD5 Wvl9eFZXI7&ok;Bӄu 2)ie#=?x8;(Ŀ,F>xؽ!bj@-d"YI^&MRF9BG͡v[=En#yDjpGhCHx2;+`'aapں_<tue9Eg * 4 Hg $ 3,NSCDhvnȨNN0}˪Z;P~Vn<)%OaA*߁D4bh/a5\y{a›y%G.}),Zxa9v)IkyKo#&)ypT0[+H+#?`*j׹)1eAi9Yb'ElFrcU?>Vw+;, DMpSYl:^OAW2=rAZ6B Ek7*C!x>ȡ/M_*~B~q Օ xMd!dj2N^)K .'b8ƗR5v * 2T kv #Q B :  $ $_LֻݯoaJ+J,jK`O#&Ӟe8 []OML ׇ2O ^ko3nnQy5i~'˼u: MC)9%'.<`Hf{Ijs[=rsRjZBA6pE -qT&2`;y|W+U C J{(& aI u"9nV"9OXy}6D7;H*@$wl>@Na/E`c`luڑ̊n-uȦdJoXV=6\ qG@u@[ /ms(Oî  $]K+5X7\L^\[̀e)B Ma5sRV;YLGf#B|/"Ef 4{GA+o-$3d%;g^ՈdZo^am6")? ^4 M_fjm/1$Q<!iX(͐ 7H9S 1wB`}2C> W>=m=/XJie+4E9YLkYX_ǣk3 \?VxuR=\ӷ 8)ҋm6Lj 9N]b)u# \vTk$6`^x`x+9AF*Q| )N| cm94At&Vu*Βl[s%.קfS_/?ql dmUa Cޢ%>16I|,[\,RF/4< }w3mTqG]$8vh"6bt+oMtMs]~x,71H#"|iO ewC:S1]w5eNcO; \ #    % s  S U)1^> u `  { IÁF;8Ze5%ax("t3FkOx\B&QqqYgFVz,+"\D yZ@(6k[zvU@: 88r mrr.g(W^;O#"+ $qjI15˩-Shjn9n=+r7@ޠ )/[2GeJ]FY7%(Y) nX--7%V*0 +&uR? ZIt/}oxgeFNH*^+<K zqZY6j"Wr[i4IUtwW{li5JA0^B[ooH_*E|d,gCXQSIe{$ajyil?%\2!Mx_ĀEaW"us!"td69LVύ\ HƬY_'EcW@'7g&oN8`uΗ%Wb JU|WL=U:nvJ Q/tKj{9jon8<X  cvi|q~e'(o6"E(F ^иu6%j|ke-rieR&B )yD/ g'Ck$@!PU 0̓sy'IG?gBQhmoBMqɪkfqnjLjRi&\yUk} ʳ_Oy9zW)!y:zB"ODc1xKn1 !ie)u@r OTGim>LԷ{ Qe$dl8<;0s>sliwdS b9(^UjfI@nZFb}AO,,d9PHK9-~Sx]06)@_LD|Z?u!Z [A(^ 5jيV80j%k)w14ɶ=ɖ@ ,yvvpaiX`|(L<tLu;]9+MV5wQX^AqH__UIrNPm_JY)LsdþG2WfN=fNR&DJCmf y1DVx7w Ayh,!h"]NUD6 qI^#by8n!]OgJvKff5duTD]+{]&F:V%9d9L˚pva{ ^R۠CP}t"jna"z^QwyQ|-qhݕ5T6SB[uQ|O)+7g q9I`;G!3:VrR7 Mwb?B ɕ7t :5+u&,i.-:w(/48TDky!}By*$ |iOTzOlo}jU#v ViTeM9)'Er|rP>j9 N6YP1b8UUO^zeR=6^#,8,9#{iOkgs4^">aUn^SH@fH`A;AV֠iBZ<̮Jq"1 llP'z8@a]*4W>>q8T(W7Z{-j=7mC}0O#^q|\XzmM-D0kK+VJ_x}ׁ\.d)'XJBXI:|@U.a4թFz7} %"~\ qwU6%Y$X p\"@q/W0=tML% K f"'z )ѽQ 3qXBN.pZqp{ `(>q+1 z!Do 0E0J?d>F0P[ݡ]Y~6 )Rl*#%O3UlPh36CmH O܈d,ۄ@|=a"yo?Ra=DKQ .;nxP5zNC *5E=,"R&TԧNG,4@sk >H<ʡ>tba-EjNש6@nIIP2bo$Qe]ZF Öc M`TSB@5*}D"* A/~rI_(fE:;3i+H gaVHe11UOY4<8_wyp!i}]g|pt 5YqOO:w>FI ٢ڹ( J~sbbn|WJz{tZ .r\SEO>a/0)ACcDj9vCAf1tcQF/m;eg {dO! 9.dn"G=7JBYar4{;/}Izj7IDnX$[>-0gD{U5mSY#Y.;xDpA@7M,x&HQeD>'M˰tu\mNtowRpW`ww* :gp(;7NB>AXK3Xi5WbcnMNH#)Ir&FZQBN]c]2Čmȓ<u=|E41V^  wzd$/g!o(h.avB a HT03(g%F0  =s5@hAS RlT|@6w' F}2dqT#dD u/.$ Er<[(GMѕU,^6n +2${*ss;.k:,VPɿXP@/FjjCEα2g 3a1^WDiz2m):uZXSN~ĵQ@07>|G^fI"5VI2"sq#mODu&3~{[5aPr>Y pDFgwĔ'^tޡdz'q@EEmj0f{1vJCj֬mw+R}+y;[$<; \g V+A`fb8:oc8cHd` 3`CVcSc\W,*r (5:0!(fP ؿ);Nz b>K?Icp)YMe1I"SS$I+`O.xD <ߨW99"7OR(nŘl5CBl-`fu% ^·|*}|4@&G)gXZ[g+A=*zZ7o :{Í M7.ct8 9f7كYSA`*YW#èyӫJ<4_0PcTq}&,~xS;s8\iոZ#pE bv*eHX/01RgG]p,5m1JN۰OllE\TbJT`uGo6)6;>$1;4f'6  Z 7&~{@7a-f{nx6$ "BށC2umLu1~, !*QC2f1XںV Ps'qtmm-LYo%^c&{BixP Vߓ,ms]ѺS 5qT ~ X[}<oKwj.0$y1)ndMV868K$4Gl<iZwRAO//NX0)B3 E o_1GBN0\ Zu Z8dn.)0FD z)No>-T4;O*qlQ a O]2{>p*O{0kku%qpTfG.;d.&mQ I! nI nq"))e+%]Sp@B!4#-*B`yH rYd VTAǚVG'XxVK & 1n8ˎxn}% n[#gN2vz ujCs߉O!٧3:6*5M e*K)hT2CJ \;OP2y)+6chcWK{&g*1VPv&q9T:3djbyQ~;%fQGqf3TiaYAb\^L;T!pF wi`DwKax^>P}V [+zO~?68 (|fG6 6!ni@#n- 2&yDi}g!J)eYP½Fgo{ c.y~4gC%G.&:?YW8Tj"<ѳ׈Ue;om55dJуƇ(UfmOWWSnOul\% U*B5e`=sSS0H}1v#$b>,DCi$ji,8#sкNB1lM 7nUZ=2?C3 эaGZt<m7,R6x&d/a*@ r]Wp9+ .>L{bV>g4}IP^QډUnfQ)|zw-KOr~OYZjm vK0ZaR_n`y.s,"R<- @aSZ}K`:$q&M% vOlO\G-ŠƟ /E"Lb'B+{a8aD0y*}csHC8Μik ?\"uqwajKzfTqyX@d1kI.x5*][w 2/۳Ѧ=7m#,,Vd>\>~2C%LvA`+ FI{72%,b .DC|Czc4\q> 5?LARWl9\%dOοxfD]0 [4njv4w9D?[!G($ =IfbA aK'>\}^p8/wVPr-M8);h9u'z+T%k\:Px>ZKB_L3%Y23{x3; `<n2~۰w s%Q*խa(: /]H2'{a@ ʠy7( _\x]^LO _p:ZՈ$,/]ONP%h.!Rm^N"h} ?5Y]>Fb7{ i C& 9#3\BhiC*79rUD)H.B)]/Y0}ĶGhKHX h l!A[f{5@_4z(~/=(S=guXH );I J nit|q;35e{˶ݑr#,0$~$yBUokwy &9ZR:,|_fhF sL03 D`1u+,*)[.uЋ`_kK9a{qu"9+HIK6رuhZIiGµٖAf2*=8ZY||!ȖXLtUu̪/f3gM2+:-RLݎ2eVPp7wPSW*rlzM׮+Hx=C%Z#vF3@DI#1P{mfHOO)}(XVZ!HF#O`kLUTt\wSP"1'!"E^ 1QSjl"xJ##1pGN {b W.Z>e̤bj$z {J lNA:-Q]^ua;=jAF>7\l $\d!)J] ={Vԕr85Bozs\dϺM$& Ʋ*,\Zm3)W9:Pzn)xh&h 1'*x85pj4 X0v?SG&J\E]Ehm[b'YKF%a-B >Hlvtke1'KT&a"v$._(>)J^Qmk[R&MyM W$~@E4':}=u~?uOE Z&](=mw@n">p7bq] usOwToK FBXux̌CY'F3Tj5 NR;FԔaEj/DR$kGc,þZ 1jt{^2>2kna"sY|uv#}"jB!(ٜ@IxQ"ͪfreɄ*\``۝!o`{U=ʭ&1wd)(2'TMoqNL|H}b$}tO(,+L[VME ZRE XB..\ӝK]o|p"Pw=nlmQy^c‚J4 <QS!!DG=>Z|D3ՆiG"<2cH|9T+?Q}R.TQg/g1Qq9s$J[3LK">,Y@ϥ378E9g~(bqi}JhC-@ׄp7p 8e4u&0yMS%Rg6Fi_ڕ(#ʮg/\t HNn<I )}kI}j>DVnݧc*l^vcRta ׽*{x>@6:"iz, ;/ g`c/lؚ?|g"[.7g:y0z* z Q EG|xN[kp&SU&< H<aG?IN5Ȇcc Y^kIe&HDEP9cC+V|!Fh:*#l]cH6l%[d*GWp )Ljܒ@FTt;p\ED#`eƉc%0[+13~1rD*YT~HLtVirڊ y9X7NݳKnAkk$S%(F[E.ҁZ ;16{I!\6*}xL*`*TuuZ).#ww9:?}z-! z4mlWPdnU.h;Wk1H!'N/` Y6ALSɍTZ;G{>06FuW'9D:mgmm5q:Ofs){;=Slvd,edBr="+Y6&I */8@ lXQ_[@z6"62*@2evZk6UChb{foD,fwg$˼I=7`dq<akD>v@" /p]np`1R~Ń%V/yj-֩B\G_9F;R]r#<AR/iB-pNWZ6)@ƲІZ:nj> M:#BhroQk.DAfڽ ;Er Gjֱ׸jk- zM5<3G\u.O`.#~5*KfM-,l[0R#+T5+1n C"r phY(`Q.OuIA=ʕߍ_L{4֍:b6d\%ׁlo=hTeIDbdLmXl2b5QoL[!Vip@AL-~iV_a-6- ) Ö^v\fR&yay7C9"; BnƇƈ !GAd% gJvRgqYMf,D^vsF oZ$nIA>Y0Xc(#ShBb+PuS&oh.I-&+7&[1k_bL 2F]N Z)I6yn@%h]v;>1GGVw}ET2|@ԃ]3VT=o6HҟpUFSwY^E1ܧ{j\zC!`*6|Hxs*BX E q\T+DЌ]vrO" y Z'<*tL<LK}#پOp5/XcW.WF{uH\$n3b\"jW~7%N-GJI .>";kK#V-pqEBfF3Axo7\'9,1Vp(dRWlakS(Ee>Ahv"ypr"+کh/7i# 0@(n2g%F9. U).@b7A0 /% Ew.An28Dٛh-[ GWgy I>ǶU>_Ӕtڝ(\EP/N%jۯ+u!& GIeF|#Md/K$݉A]#ť) 9P#'.a.r(b^1gO)z}0eu^RnI:ZsPK*5# 5/mY z-Bs;z` GA+FM# 0W. )1&r>@o~=WEiVD-Ԇ0/_f>rj!\dv,~"!M~U'qu.  ۼ#{b}z yiSJ9!bhPCK;xgkVǐ?b{ `z Mղ`hHnQP#Wn3~j3%ͼ,D`)Iswz0J wY(ĉ֪|v-EQ̑VĊ6\1f EuUktoO NAh qax845q)0_F#LWy %~6mBz$ #Aw,Ev_PCeaqbVEdwnDiDx4*(&f(L13kx{3g<#rp<U }*,e{nXKI`>I)[S"CM@~N!E5L1*υ:/B9O^!n@`\^ X"tGF5knM;HeMIICt7yXQ84/ c=h/:[66xp*JE>}CwpzajpIQDt p?H @JͤT^uEeF+i?$wP#>g9'oG#lvNߪ A##"e6*zt7"_c$o\ h&k" _ksfR1}y͠V,cJ`E>NLLY# ]X}#"c/xVQ0 o.rcVU @ZBkmٙ/rG3xCy,?3Hg~܇NͅK]Sp&gHK^܁5 j%%fd$a1-CUFt(3g<DV+,FoL"XzTUr:~W{tVGp) Wv5JK|8yY03r;G?J`(< dfip=8H[?j6u+N/%Y< hi,s4lZ$LxVYR#y:tT#_~Z3{Dh ^LhCv8D(3fQLgtĨlE[j[\ztP4kuw4j<n 4(}TΨawTſE;ܓ D#I6 C5ZUZKv 4&TXKqn(gYz=6V?lxeZd..T8Z6 %؅rpJZa%Iɠ4sW~F-W(ħTwbf Rh\Fy~n޲[-G*yJ+xnb6P/H@QEGX%O.&ِTuZ[&-y)KyOcX -o:; gEU^9yoo`C}&uOS Zv& `dI9#L ?9TqiۅҢ2.Xcaց7-^L;E;5bvGD'!'i(˘l6@ 9ħ j]/@U pF>XDh=*dsg;7f9/|`{/'hA{mCe6 }AyV5_AHi5jBFG|cLNW%Ujx7L.$$VVxɴU\\#K@7-#,vv$$ox֨^Kѫ6N*''- y9uPg`Glp!]4zq/y)?Idq#J^D$@& }N6Ge?.1+KTB&>wc fjTՒl=YvP;t.&a)¯ڻ:\"oK ZdYt&adKJIy6oU]er]!cU DWdOF3Z$8$6ZSq||)]?k`a6ȶhCͣ$A|@eD091GjhxijxE=eW3H; , ph+mX/mg-v]YLyPO.`{64zy86+S;\S~ɜ)Cd u0\S*c GHrtp ENB w7cWFIG!^` .'2JTK>US6i4HA`]N==o6^w`u:V|zN+sڀ|<9j E2Qzx8:< :ou Qm`MuTzGVJ|d1()OJoW2wY=_J* p{nٳN6oLhz:~a.$IP%>BYHtuمlIH%se~?"JE!X 1P=&i>(X Nʬ\%>pWL#٩?Я)8w 1YZ eFB/Z1%J[9f4qnvB*C3bU+~#tSDmB< 5۳wIR,sYD!DUW^:L /N3B~o~EulT'uM_V!\@I +1kn:$k;T݂NTY[WD$XxP~ jvԱ[#Fwk d"aOF^%Dx_ePI6L{]#|7k{'`~ f8B`wvҧ%9:Sc8 % #7p'xT=9Og$_A+1?7H!' %CI%G TZS*#HmF/)|d``&\gfAR@Oʣ `-=7Ily7kMr v8@ <Zh5cz3!5H%-uC FDOo#A89# :9E^jmQO=n $ǃ-=AJxaj;V~0 |Q {C)@cD0bL!ZW)L?-!@Q4qkr}TE^:h+}z[$5p&p9t(%RM նs$(ѶQ][j,\tӳߚKU"}O0|H7~ #NIC#NdAqx3ص%[91؞a%)8-w^Ex٤h "d%QQػҪPt,p | LT4HA !(A06$fD1*B0YTb$4HKmKS\u{˹;%X 8)H'""l,CGK G.+7|gMy] q9-?ʴ 4HSV:gcFFn%V| ~3I4?> pV># n=WRw\i7fEcXFdhK3H~l#qK971ɖĹjQnST[Rx1Q{;6ûu}eY#.kH!Z1mLK:&$N|?2:I(%zh]UD\ISEK`DoZyz;p) P+5&qfd W;Fe^ě|"anl_<b%H|wN7kuLvW&`5k3cJH#A51|%"}Co<<0 `\Mu=yrD)5uSTe%&UXxܨ!5̻]Ki$]#Xu7V&570`i}/=_oEmGOUr nD#24I..ۋ(;:ߖ[l@d7E}'mXmlvԴ{6YXs+$~,P̈q*y4LlT^1 bJvp*~K,b -XJ>Ɍ ,)uZn~&5x#(>?NUwNʙf!})KdM%k)K#=xen}UD5v,Iʧdo>R N9W7.%v4ڸ:q1v'H}u@X.%qOT=)jwzi >iKDj'A.iis|R3r],^+`g_Go#+Y;?<}~|6&[WO>p4\/}uQAx47T3&cam <&zU#MЍ(UNLDwtbɣf(K\jώ FokobW@lMu[5Z u=IqoMU q# '1M"6*O*sV !7sMx[BaItVqR4"L+кV43Eu0>K-ޑIIt<BKx}\M7v ~ge?-xƾ.g:$%!sR-(Yr+ YO &JJL̬gw 8~oraC~[B!v9V ֿKIi:D8N~xc ge; zy xS*a"6p1HxFuWXG<Qcϲ>gr= %Ihle2O {z)~}th#PN C:8;JS{201Xzc`!L-jcz BN(ab`_ +}rV2H9GsG^Im9 zQn9O5%zN3#:G\?e/N@3aET)?,+p}WZjN^2YCkv({QDH]%}Z>E}. YIe Z <h_J=F4@X m\2OEV`wo4 Z8mqxA3=~S.Nn[YcW~o"yYQ4A"@\kD="0Zn}^ TV|/{nHQn|~(cWT22?zU/97`0^\lmOc2:]|<ο3NEj@tAGcr4*Mi_TzP2$5.duۉ FU̓g}o'ٙXW&==h7F+ +FvfFBa!C|i_g':Q گ$C 0#7@r&QИ$[CgL\jg_v2nB.e@I6-LH`|T"ŵ}'&)gyE Q0?huĝ IA`l[kv3,!oQ:7+|rׯ [`:^f =p\:] ?T_N9/UE*RQ|@B`IiCN>_Jk̟̈1~"1q-gjG%YB>F =k35Ue.B0t;Q1q4CAD)h_O|?*l**5Ze//\PdǞL^gRlQHviW}`0;z5ye|-Bu/Lz.5yTO@:j_M%hƒ)[gQaO;59a,rj_{o$;sf~,MkGl0#F%g JTZͺPgS/~X=׏?6Qp )_!(yLNfzԂ2#\W7(6* &Te q]gi+x_"}Iq3x'TrodU`f3;p}Xb2Ftb32jWW!$RTo10A@4)AdtW qL6w4}F9ʇ8]}dZ8kU+C6!__mg)PE*0e |a "owEPa@R0' ^q,Qtm\z*jEY9sn,w x0b7*B&i-;f,3DV~2 H3]>>J-BV/V AR+7'+F_GX_HzJZ{-=`3f~5 i0*NY$xӃ !܌:o~*jxzvsD+H38L  Ѐ eK0--! maN +yiTO2a sR&Oksb H_@܃ZHIuz^S\-ϸ-]SLS\ٲʹץh@E ~zcBnN,G*?Y`Fvz9\.L  ;j ThʹZ{6:(EkHհqkb^fL":J i.3a(5V42vk39zM/`nbpr19eժqD#7T4t`B@j~.@#@r7hVF0E]#ab.: PT`C.8f:am6J$|-Y&ϟanu 0WÊ#9"S:y|&0eššߒJ"V!ʴ>3:]PB i jq[ZD8N]LfăЇAET'b$rs.jHH% Bɸ6eZGfeEGmލz4\WN\Ztsc9(^v{‘ҁ5%P&iIK#?'Yq+MQ'}2&{;p{Z  ex+Ÿ b875L\tmbrg4XM2m*G0jw8:7W/_N~,Y Rr+XI[h`S+",2 ,ORP\(IMkMN] =͝J!+4ܨ*ezh $fyk?YOyRTzrgF}!D!i_YQ8н8CWϢLno6k  WQPY96'Vj !K+v/%pևY ^E e1/`K.9pNs%d]x6}"WgE\+JxWN^,Igy>5MCTJ 3nTU;5+e*tm~-Hu-@8B 91 D|j0s,|v+ Y2T?]~1$b B$QDuGO%uAE?s6Ε$;*tl"ͧHXEH,_pxrw V Jc %W]ifs$! /C9AO"=QFf \kLfvc"9`30bpiAUCvrW<S˘Z9z#gVq<$HZ5WҚqZH*Luԡ-iRPWuj 'nP|; Ffa@MF>@ g9b _ckYT*\qV{?O"p7V2@*=}%z\&yn_t=/xTw+J[g,] >u8OoD~Ҕug&XBqQZ.R=QGb>o#`ʓ% RfR"طZ7U:-vd|[ِAZYMD;V<5:H;Yl`s=zSAUWdX3KqSd\/JbW)z2zXMUu+eiIhL.'/pL+^^wnnfBZs| i:rzGBTW^c 6&[Gl)k^ג{%.ٚʤ j!: j}Ek~{jaa?3QrqWpTOfc_[OVH/ :[gSZuimIb ئp>PjTJAl YuUhuY O MLML*e@{<l7QXQ cd|[,{xRWg!4nB0@u7 | WF@fZ080nG,99k)8qU]uIK7'aYR*;v1ZiYI+gad-[~KE+-[W@]Whm|~xdxyH(&m5e*VjٛVR >~R RI_AIIR τwU ?<d9Xl xU6#fozYq2Crj*9n(nP}XkU#0E'HW-%QY`u5/fqV$] M44E4#ہ@=XsQ,LEkLރԏ[Y(,o:h\9j 4"P{qaKR,wR6, ; 4$vp}?n}pNh+ZRևZ0q5: <5 ?(FxA/gu<.e^x5P_QJ<6)=7>D5T~:*F]"{'M7=h~Z:ӊ[>% C{H@X5# tO(2Yp>ej/Am%Qx%"#14_r%h{%<">>] !BAu!ntB'QQc N6l"ZQi_<(cWNZXI2jջ}&uEWK42Ȭ^; 40zGT S],o^"Hwy:_373`Ϲtv$\ qGtKY`khA LZP(T5tjC  U.,~U|sJuvXaq(?89b _ÀSAz@+#G nK0|zgf9<?XwdJ_z nu}Mr}L!ԜD[ٻk Jh3=b ֱq3P`z#j>ٳYP9C:(  eoxT` U]o og@&|Bh]7 (jf0ys1BrcYJC+jƒ`qIV7sv4"HAAhWPg|]+v7ÎJOt `)5Nm/7Zn%L:Pk%Y&U*tAw+{`:zG}L޷}2&/]j~jyP" VGv|#PHt@#p//Wy5\.g'`n:_<'N//k7E_LAptI1q0О. /8i'J|s]),poVߞbYO)wXgm~UT E  @٫ob@rLb7j A Թ4@ie QלmC'W ^#ʌMD/L+fcF'8VyFT4` Yv́_j`0yf]]~>#H"46wl_+ӠtYL;qP m"j#ZنKjleb9!MK:0/p.KJti+@|3D Sq W@EJU_fp1fa.YF^Gb#:/djP}5duj<نKο?NEs7i} fڬ{C@ g{Qq :DY %ƈFZ 3| CfuYm~,CfKm,< oٕ^ PA= T/ z)iɅ64 N"U}BuKi'v=t"B*RXl<D,X`FR >+Vu$ut*UC$.]b{151z4ZTeN0D.Vj<ޓ=vDGRV3{]m$:o6;pP Z?d u%Lon~z8?djzIԙ3& fA"Xeu ?{TwH9C{N/ $EY r=dB GnA_ qCi}\t9?kz%}"QWLnGzQvTTfVcgBQJ-nx<%yr." kamۙYԜ;c%Kϒ3b_bP|\K?:mmMkG Da72;e9ْR;&]hx'LvNpBnGN۔Nw,.)Yi@3?v{9`<U*miSPj m[wMP0Ac͟h5YF+nQ(" @LSUB^|Kp((RqIG$YYN\YNX (1g:ń7ü9&yDL4+mCY^V5zeS1BG!ew +Hn  ~|[$1N Ex q{' 6.#blc!j\ +27o;>..P9//4QonfV4 A[:89n M=PCrG%j[Q,_R\)uSf5<{1|] Q.OSm<QaF\/ VޓB,x//shcZ^[$v}R WcQ 3$l!a^OTuOA!g]7Lʂ*'w^a2J-0/2Uu&H9tţ PG?g"g_$hs.y]q29dv K'J*kOL`a$ Be.)9]US[e;K|{r4h2ew( .x5͈ )qf2C>^ QlWw %~]BQE0Q9KYRi:s_+)E#{2R/n /0>DUQJ5HQ@- ?}/{8{q9a7X{A:O/:I)?}y_oF[+Nlnjs<#hBj6T!~5/"$ikpYCX7]BM04X$OE#G >db8"arOw>C]Ѣ:?Ѕ1%O=l dr.\S r~"! Nb(QuBqT<m{iTT8B@'3>+LqEӒ\6Cbx~")wnEoFpا}ܤ^+iA"bT^8@M. 9VirQו )kNJ_Q{LF$mR\a{֪x7!0H3wO Vyz/Xau%' YPpl \ċ?3z69^:L;l  j0,=Sonn8c r4 ?G(]vVF.TT&?sM3AÂ@^R^WqbTqASt1w60Y(>sYgPimX QRʊ)l:7Ww·NpUdoTXR\LvQ03(M}c yK)&Kn a̓rGlowVb.ί9"#|1ذދ7Gܥ9MH΃k6oGXOaK`xmUB_sYRZg߰,nX̟8Q%*p`]TJ(/38oIH˞-UDGELw&oz&l+tK|7q+}~tRLyRWC!|)sG|' |`U7'>(U:Fe~w) azƩ9ubL?&m?G1eXq[/s4nO>]0jkxF2{W|zsa[f|DD\~ XVrMcpI0O;T<Y4m%NIC%}s"bp-Y؏5{#nI!BE%Y%|4~ԏxH֛9Z|[VJGJ"CV[iҺEB.?&W9NJJrAB2qB#!LXT/Eh8Z.+o_m;qpZbg7?lĎ̏jH>`Nf:b er_?XYk=gY ,AZݕodCoxeqz\;0TF9<*^;x3,O@e5[6c™}٦)QNY)%,e;lG(&ZPo36jc9"3fXT7G)n:c%B5-v  <@B*n '[M# Lgwz4N{?ȮS=zcw 1$WRr/fsD ]hjn88A((iqLuqo\uhYn (|q-b9--(2VO3 ]Pr-`MGa2pss4m;ې6~ ;^mw~pWoIt}ֲ$2* Igu9di:4׀~.p4q.~H?@Y_;G_"=_.r/Pmz&rbI~bQOe%e].v|sx7Inbƃ.E[6}R4qAC-Lw 'I}8I;k%l5hO:߃h -uS|HVN#99  C+hi, i,{LM**Rϴd&FWP/?6h(ӫ'V*]D,߶F&Z 1CyMR n!}ff(B9#dkRqn|eLf)q\9)?#l_iэ!&3[VB=K(rQ(ݟ=tv^GN>/Pr7 dqԮB8Iqq1*}Ƹ~5IqDC@i%y n) tDA{#G>w-=D"2OEl8n|}A`K3+Qb_F.n)KTf*9K|`wFbIR  Ho,RG Hc!7$`uv8.?0]u-)5 A<2:?RE0YK@F#n0Gja]9O R<y^EGƅ?amFH9#C!|0X_:Nu K)ܕ1AǾkgCn^e"\oȫ"*{Fz18f RZSC".Lf<m~`jj|NCm5?Yˏ%a.6G}vN&$xmN#3Jh6,p~Xӗ5$G )9¬J1Ŀ.47$M0 (pxjm KWK0gd7 MrGBv\zi4OcZ Esq˽M34#ҖZ6Dh)mQ)2pqRlY o]R(pp)Bju HY5[on]andNIOtJԫV[9D ok!z7(  S7` 6 y|1;Pf0eǤj~l\iG\V\/DAqO4#xEW)a) Gj]F_wlma17/4;%vyxA1ߓsf@VSio,a9G 1n7f1R!uo{o*E~gmcH\VxMFeV/'E@I]0'Y 8}R:XηNӖ*]&JO92nUe4^#6N:XNe]*Z-Kk}=:3Z.{bSWRHam>\MIa,K~=eurA ^Zy\0*T4a*UC FA Sck< {?u4s`bVem>Cn3{7!g((ow,gK1@4j >,\Ǡ;z^S)U.f  ԏW]?R"j|)#[i16Y!q*iHW}M:s2E$B+5i;, 8 b]j"Jܪ~I}JQQcMi)V vk‰GtENLXuAd z&}B(G>vX jAX_2TLg098CUjNG}.ˍFEb$-F2C*5is7wevlUx0oPV@q(xNN4EVy<5(FMN53Aw% :^.'Zqe[ -gϸq>cbQ e&Io! H.*}`^p1:ٕ`qh:C6eHac:g xOJ"4V/Ka&ۮc 4*3 XVoA}s*ݨ"vv"h=X pfye!kzs`uĮ n  (H} ~߈Arڢu4&k/"<1}~  S.nneu 02 5- -g_9<x<86EcC.*:7$/s ܐgjK_LΪΟ*S}Q#-8SJ|NTK8=|@VTELQu>%! 6ws/`#&"iBs9IM${ [~;g{| !sxMiP)@x݌/V7?n&:d4pb+o@?WhEarK>i~&m}M+Y\z&R%FfXQ{.RYyn.mq+gk+Qp.vItOAQ$#aPcs[LJCJH6~mg8*lq 3dkͰX0( tB,Yq (:XEH8:x`ՍCrn S3 eM1W͊CMSb'iFаFb70U5`cOߵ0zKIb.[Jz:U}UKjJk'7{JKV{qNU9Pb c4+ ;EeXa[)>8#_M,}\Ð~sjQB#uEl[t~+D+ۊl%2݄D)9dzo2&}zp%]0pgtTb#^09Bb]6XK'U1޲A5Q6O@2 <v*M[m }@^LR_@(+gcna+h@^{MbP TZ8;aіlт/dV;2L8_8{3((LBp%mLLe4vvgymGf[Vr03u8n ja1frf,{V?%ftm#Jt]]JOI-=%,kr^+ђ͞A\.7q(rZu33S_/m`۴]hZf#Kpq9h oϖ%/7M-}O2Hr|c3UN~i.Æ9FrmyZkT1=;kK)_9Tt2aDQ#;Zp[nm.8MR\"! X0 ~"|$.QM S3,HdklPPMk  >Lx$OC!sA^O_or/BܹZ&UH `qȆgWXWtS/(ִȁhH/_w4eՌZNđ#~ߵL;HwWC e{;ѷqq!̩2W(A`\GQ&*tU%OTqJ{rUIm #F*U1DBW9| pKJxKHri~to#xZ)I?lxԾT"$|7AХ&3Bj5)q$=dQQ0nR7Z'9 Cd $V>M7m %# [bzӹA3hF[&EW!eY >4 E+3{GUE[>ϳp*=U]S7(;p v>P mO{`g-vzOdztPP=(ݺhM'pb>kJtH&gK-'BJ,3G.8 *2k;`t8> e;΀yKM#.RQC*MCin;)y\tuf&V]Rau'[.P8t2? ?eOo(7i ,A9|LwMu(ul),458ZDɛo]uzXD/ ()wn5DyH#AgoQ Xi]aC( oBhXWpq(Ek#Xz°RiQؗ2n+p;,3>5N 23 S+ f}M#."hL>:~bmZ{;YOfs3!jN5VOjoijiL+0 i (i͔9^uUAwPs%(qYNJ}gQ&G&x4Ê4%:0#,>uJXI҄Zx F$c^^NZWn_a] S'}5"[l}bX^dBz+biT!.|.(\ b2 W+E" Y LR6J$tn*yA3M~A /Q H'J;l0 J=k K|X?5('XsX0B*$ӈT~1FVVI6'/L4 '< TX?JMRaVp9N5(+ps"^cvͶu|}UrG`qA"bn!:)Pk?{ +Ej] ~.Z ^Jt[BtdM (B A>x ~Z nF Ҵ;Qz:us(2]#E0m@)eO]J_fpAg=Β"IbfIFJ2+@YC׭djY5"x/1,!'{301QMf>z '&D[:u)  S/j0 U.+z[buW]|JQ=B@6GjJ|dpweVNr y0H )oh*`8) KR ~?2Vn"[8V>XlGJt\b@Ϸ2ZgS](+Pl,/D!_|ļ'd+W_*^eMrVT&2\9z6y[66.$:99؏we#;=;8TV[|Q" ,ـ sZkJ&IF f 'h IC8?b\6%KdYˋ^GMh+P&="b)`-OU;!(p6s{:ʁf$ +yTk4ZKl <TYAixMuH*vw, lk1IWru[Yvq8`!^G(Ш&]U+"J+$_fF%U]{Yo^I %a4C Y`\ nY6A3+Gx/ff:o-0yNg11Ԭ7Q[f [JHuC =P0#[Xhq*bMzo Vb,Oj63y_G$mF2RoXĐziArWm#aμ: 8S+H-@c p(z/aA$.~ =*QrN4|/ [fg>|ag0KjOh^iBF#MIV 2qK>/l>qػo+!eԢMOQ;93Gc^l/W(:R2ՉV!Û:F faN"9u6NfBL ƞS-)֋d(:322rf` HHipW+ C+N(xih=3J)?`q}S"% *([YE+C\.m 4"2TgD"]fX:ߡ`.Z};e!mzxu*rE+%&LQh. %gwi +e.n #1K&k.1 >6cRcI!_{&Vd0 WDhX=bfk~Cc%"ŶٓWT70a R4>@ !]ɐKN6LD6q? HMZf@#*̿GS{REL4?vQU#]bq E!=$EysE r\YsIN{d~ocXCqa@EVFk +hR;<^%ߘA;WJT)4~+/ jU7VN:c 5 oh*9.fef|\l6-N'"L/7]%}}*qDfM/3?.)m-M4yo~!I ..,Q EC, #*B08{HB$pd`o~R], NNT,n+>P$xr(!"ϰV C$lݢvb7j@ef> o #Ը|?L yMgi}Ij oZ ~NhXo 7ޜj#L'*Lr@  o ͊.G2-yT{% bW6@BD~(Y 2W;$V ^Ӌ3Y]k@GP+p\Ƣ>^6)Ǡ%8Lv/PT@=MctWޢ1462:V lLGl[8Z(L# ;8kD^eStesLU9x"”e֥==V+4 .`:=$ZiB}8_TiC0eYRUM(p#$q X"=O,OS3>!s0xZA${z(<DuyN^']<anۯ,]p15d(5 xZ K@ uj o u}I=͌ty_mRW}+$Ku$wpg@_.eA=erGx|]hBOoM4htvQQ )BH'tehAȫ͝ԫFQ\.*aFBϢCK}i2)='&q{Ш)7^ Wb"j/J 0n:wi: APC8s[)~+Caj;AC``%O9g)Sif2^KGi7TcpJq{/}>r,OQɔ[{z[I0/Y5-bqJiOJbk 4WFaH'*u(%JGQ];O%c,\eG R\ggC#JC@TJY6ւ`4tu(tgFic&O6U+1QaK >!ɹkNY81A'mU `nwr` 0-l@G?fNREEi.@d K"7z)\Z~[ZAPsHuDвLZ^ =2aYrlX`XxrBSON:F]P8&32:[#nǭ$qp[6eoiuPxc :5; bhC[[-4{a)o@'ubR_OB5!=/6#u}k42$q?pt*gW|c+  +E+jMrpK&-b}5 dP;'T[tP$"XqZP5r{ jԯub[w]_A(JJpNo_Os Phrsz~4-,$fD~o;3jk!AfLF)rrG@tI2%Tbe ( v-z\ytBt` 6F/jn1DS$ S@s}7:{\Qs@jy5WJmn)|_ IL-OirXgC>O12cSk]GC+jTb7r[%c$\?YnGVHV:2:"rE!)~7 cت~bM9xpvWj'}A ibk:5'!2B;5HKBDSIFS{=OU)$8-\yfCE-w D,Nv2V1 .B!*O[)"D̖eQ%/6M;v6Xg#[&BW' KߠViy\!pضuJ!)Q{7 )@DGKӬcx,T>A1gA6CUkp!JF^x}'yEY,AH162' ȋ.F(1Xߐ4ODd=1>#E#? wwONCf-<TK]"GU4`Ǯ-#*\9RA5rƖX@Micf^=KHsxT$k1uxG UK$PDлV x$$ E piJh8#af{wW>Y`*}G[Gq\\ ~SqHRa3}8? F#AhS6чfdhƞzE]^$r$Lr%9:z Omj4(ڕW}UqFiZBT#7fNU0h pi$-` ;V[~5W-gܓby-,rJ ;eI}|nĂ#"\,3+fvwL=CN}wDHmB$097pYV+ljvtRB=t-eMv­I ]Zsq T."*RqLWyff'N$3 f1tJXj>MW\\E( K:+o AR)(۶$1~-UQ}>;JfpYgn{z 7hq/5VGyPRmvɌ rRcVMO4~^q(TlL*W7 Pg%$9"0ڌ0G)UiS ߭/r"?5x1. *Kh O@!KJfZ.@Lup(`@Р@ d<$t.lX06pJm7}yS>6MHslFaY1w=69Əj8t.ic0/? OCtcYt(}O44HK- 6%V*l$Νι% !=av<_P%s_KH1ApD߭vȊSspwDKA`;t,]0<5R2TxR.G@QBecXqLo7 ]bkͭ>!hzu\9%#)Cb/>& Loo"IW5S?.'; w "oRVvRu}n;0EuFVkOVRawfN8U:[y5RY2ޭjMz/W`Js&;}h`q<Ql<:(9>?h3DC; X;*swV YOPSS#;,;# pm2gvWZ@@J(X8@# 2cUQu#Yy_r@nj@cg8W^bi=igEY](f/oK ؿdJCfd!_b#dt[UR ?GoTݚ$qoz5t*9i3j8l}d#5 (XmYJơfNm! h^'pyVU0KKBFX_jtNo:.$|klNRp*!` خfH>(L!|MG7>$yj1d{M]d9\:F6O2 `WW_2D|>H 'jnYX1Zq}{{(3օwe5I1Fe'5LYY%`#u`̞?a Puh< Q`19rAlWD2\+FDMMcwg+|JO'EoҊG| iQzOPzt83ř־Zw9$3mMTcVo>>=DE3?IQm&P: ?jc${MY6G'3 0 w۹ӀQ%_ ;EE)>.:Kibn*[\%ag QL-CLM> aMBpW|P_dU*5U}%81Za^7'rMKjyK{oqb&};w,P!Y*q8z@:.Us&;#-`qt<@]X.]A\;mbp kW#z!uP2Fr5)_#iBOL6A.j8l8T-/$HId HzLXKX-"oPamKZ|qZ-) 5R0$+.ݾvîgEqygp ҂kq;"ng5@o05V G"]Vv@kH}O5BKI/!7`OSoִ* Ds:zD]E;V:NN!h7|#GQQ'9j'*=v fJ\$-b:0[mY>Pg39hXW'Ƈ'wn:a6%cUFvpZsO '>l"F4@1=3J !5~ W|et$L-={[Ež.b=xu=z h O4(e#ptY4 Cv |~{3x?  [:D֧]J? [`Y@anvx)$i6!/}Ew~R}#A h0O+=c > 8,Pr,UClr"C}mM C\hte2"*3h"D[ 9I$yD\{@c-x:eSx[_~J=KK3Zh^;֢'yTu,޼+,phzXe7WNRFmJ@6pP:-ms!`lU0a"'J/^!22;Wk.̵*KVd>1Ζn'~BPYG:iyv/ W !un$'^YZbFeHJ5J# >^ : *SRVB%)MO75U|HJ3(dRAXBo#ۦ "ZnNoq P>uCl O1';:u ;y,,F=5QLA d">D$:Rt(zrAGO88ImQ >1D 7=Me>LopxRd VU9AzF Sj0dc!ܝXg4tY;kQ?J@2uzn Rb\kn8]l؊ManW $1ي<AWM{5{"GA`O,wx6hr&ҖT~:E.+|:t!# =cELPIv8Z{lcV- &vxBoS87Gba2s,b |` { 0VJnu7`#~-øX-AAC9mFJ,4btFԕS_cJ#,+ylR?+GQ#jJX_/CFrRƝt!qFd #ۨLjZ -/>fYzDTqgߠʔ"y+-Z#4"?58Ud*0|{ 5%Q5"jIj|*`.=+'3fg7CM(s*'Cz: 3.$ZSLR #h@gYvʲy Q~UcwJr*ڜnEQ{*^;s$f= v?3GBJ02!B4Vn  =!l}g_}J"ŽiU9z|Qwt3q]Y9\hk6@?B8]:?M^@t3 3ϾсLT`oqL#6caN$ Gk_f?TL& ۭ=U3bXcrK?jPl#NEhNG*xPrd/<qJT!l/,$__/-$ OQ*'ɛ`lHgjI@~fzqyZa]-3r>R=18kZ~*r3n{9<{_N *. 3k#Ur ('BBP .iJ$aG;MF9': 0S1Ow0x$VkMkAUbz+ҬujN'x*B2,G~iA?A Օ^  X4g( 6UJ"q,ڸY xHq* ܳ 8TW\d.%=B\z^2@ wmG!sa6OYL*v>n&B^CFR*e&X i] >h\.^ܶ9N<)4Pm$\wEBe_hi'w/LsOU1B3?-J-=lbrO'~)?'[ki4`Yhiyp%v#H1fP> Lb8A*+L"K^$ EW%C 8>%B W"`;IKY`/ %HUpEm5Ygu)*,jsg[%H7=N] {L3WYp[kB*qs4s@Ffhhɧ\v OLrgW({Jp[Bh ~Rbj{h@}'CWG1)l#>g2bZ}@|)<^ځ..D/&hJL#U vS3o9Ti#TlxNOVWnlB (uy9i8aU1S'b̛-aOo kVT <$ 9I) w1/_o8߷ viXdEyGqJN_:6'kK@þh]v==zh`3 *yeyF_clӋ\ W]>N[\eX ~w%QqNxe1HF0 al:Du6}.Vq>gZkU0 e,f6\R a9j8LDi ys*Xd\pJ) g´MLR yZ}M:b2L#0+-[ .]odi<QGmXw#^,X>1S07='c?4hm/T\1,6i/r# Ն=iA|ƍNF55b7:gNMN!Vq+h3Ms`.a'@bhQd=o %ړH}*C(UUmII~zri{r<EY< 1BHO| 'fĴ#,.Q"~#l3C7M_i-eb|ByhB[Mx_ދ:/ "ۻRWGL#oQr@xx;Zg =0Obc&H:ݍ[?'f9H&7\aN2xBD/y&#U ;^"N}M*X&<o?n"yygNAm 4kF1 b{p=JEGJw b:#}_ vG)QUh;O%(Py7]yLBr*'d W@ (WI4+s|#te.q QU4m idpJgLv[t̢~Z5k[+gPhd8*@9:g+ lyLo8_Kb7rF#=l=SZ֎1X!dTJ;3C Xn*yt\ ^^ kf%"ULf 6q>D^'e9uA șFgA7nO+TPo<<k>}~_Y,?{-r\EFbe],>?  w^E3߽QX&F0Ngj1͒;b1eIF%\dxkfW@Nch#$L""^Y%MN'_/q+aҘ¢j x 'AzLz4K!d} .ݫ%3.  -@:>kw* %?8cʌziiI[?-a:Q9}-'pA+#f-9N&MQI_KU>BY #"Bηu?CN݆/uxNgf[#S>^Bwd^u,ZZlJL-GRVmX@$~ZiKmqaWKMdXq_quF^CX:?K SP)Ptg`^IMn_subvDcoZqMw,XX&<"sPur+jW:J`ZGn w ǗswJz7xD*Dd1yr/hW/cuIu (.rl>n7c-{;fH4BF= z7AK&GÉDcUYA2 ,5R1`.`e\@I/-*+z@o>Z-6lof}e-;W4^n{Q,05ƷoU?Jj_- pEb Wk224k"ȳ!?2*Ks~pfۚ&'z&]V8N8M1( I 2rw6sΥn8'RPʘetAS v=ߺou|s LWL37Fb82JZ<&Z [JdeYk:tGdoe5w/xrhV[gS;'!I]I:zzT>+:" W-,x.)H'iTlU(GC"DZ8x8:F:5 %nA MԆ{P{o%gtvX:~xMpD@V2-.Xh?_poz0@Bi!W7O\qr9+qN{)OaP7q85lL̿bs'7h͆]F W_8WjAD}%{*=_A?3LRI{ë#SuIlF$s@6^]#~Q Ӿ*,$lV1nzY "c-4.BGr{,$(+h45W'tqp[v.;5Y^m%lj'*4|γ?QJl&,}~dL: T% &{E9uamdC 2Xtҋf{VgX+G)P:COcZ&6h} B Dճ9FҾVZr^F<-,Y{r3iA +Y"M N5%6#!I0; VnbƵe|ol3aNo`9КAJzcjZ=<;}q[Ye(#lYsWUr-e5f!v/q_*ٓfb!^> L"̜} ta0!$D ^yן/--u_2V7/^Xg+\UTk QjD/9tX$,PӾЬr6g\rVqac~e>zp6L? bL8 "Ѵ]J\HH5k`yCܻ{Nw4"Z { ')AϹk~YԖ4MH[P+6{ZwB, ,nY6D|d4)F(1 G( t/Jb Bz2ɓhl:#Agm"URLEyp g4GFRR<;HSiHm7CmSK[ _ʶl7y0aOo-s)["gm&Wʅ&[eaR=D;{|(ul!>l(^2F` 9Z'4=]ΚsW2`@b7( O [Sn"+Yx/gp"}h!{|Խ{:eMdMT,yC3*KQ,coYf2q0,XTjD7N֧TPSiJ@bj^!xoC"?X&2lB+nD\EWW,_1eKg.x?-iUFsb,cYr\%xzJv۬z"M/=A:]g -gp&j xuxgZuRR .Y(+<[.%asϏ.tV#E9i *Ш-U,RYCc 3=QmSjOTlV`R}i<z@'%N(!#1Z)guT45kC&ȶgif$kK؈pI! L]v ?O)}(Y0)g_*U9S.;(HEC[x ;I=9BnV 3(0#vIK u@ Ig~~.tICQ9K]6IB*mr.5htmԪ}AcsvMR޷_qvz7[MIy3r:|4O{kKE]h w*4fo*OjN[(S0jG^ HxFbxn=y8]k4,O@pl/Jnchʻc+tv/e=Md[PwxBIӖJSY X W(_+ [ eu O9C•lۡ[Yk /z0\v!:$,'fzD&R@(6m W_v_v}0 }XV8&@7 \#1n. R8gvuj#g?A2Ms: Q} Xm4b1e@7'P1R>[أx߾(mR ͹O4{`IG# 'p5eJWzErQjH^< ziof~(Wz[k `F ۾  d2nkg CF$I4K]*eJRrR/%`D-; ko*,3{5S+Kq]iaZqe>ADt(t:>YPf+q.f<SyBb6T6 *Nؾ`ѯ[1nؙ"2~RBrXX< H}=>>ZH$jQo32x,f+t֬,qHTulvpgqC s7 dGnp.JK'eRg*BLf2qjh.\[Y SfSQfr}n˞Sxmfo>ztxJpI>h (L6zGeuKo'f"jt{VqsJ(H8LLt{U<0l^%F'VE?8v\#.NF.ENu:8_n6tIs\6bֶf{3A5%$u4wx ,xlGs 2"Bmg)H2q.39!LT. N^ =;٦c<'XfU7c6ʄ3K?-RrU0lY_G *"<'Cq<нU<~0H+S8! {EY!L5][ݺ52yGa7y{R^UL›7u" i1rE%RYWqXm?ͷlϋb&}H%} KQA,F (apQ)Z/NVQGUKSW(t]2T<~8mx ^~bmͼk.?U@Kg\V ^8w'(@~ s>6V ry\.  Ng%Vx7sYJ@f4l2" /V6E WݢLx3.K2 ]E13EK?Z}U LXj;~Y3;f g y`ZX0K+7AXq5F@:es]~z8s2JG:(¸O]V O:[EP`31[^ju؃qUy wrE~l\u^Q. 3<hq[bG4Oo*ݪFx3Z][Q`UajuyԊ*Xl_`%[aC-AQ(f5,><'[57pdrz@(M}%BńK_6., ?6S\ oŅR=ǒDQT}|z/_b`H(0%-5RP f{xZ>3b^-++HejD-pCU ~`BAJG~pn^ryMJ=?1_).ؒ7]D?kAN|9< !wPfdWvtGY:7.VmwHb.m~%R 8qZxD:; sZJ-)Hoԏaגk!ky[Y}:Il`QlY X-e5>`}KM=y=?q5E(-kYK|4=ͩS׫vxS Zp |4]./]eJMi\7jhsoN*sQ1088`L@g:/aF:X5=g36dwAM -D;K(6))ԔAx`cר_BD4bNc"LZNr]t۝о̹,bB!SիxfxJ^O|MYeӀ6ӥ5;pglZwcPhjmR)ejdyˁ:Eلv-5|}s_BA,evmhפӲfdEq,S/T5$k!JCXv0 K)LK+̸[ -(\#tՇW*K7&T7,4.D jW=h+tlxcߞt7"8@Y[+c1=m|bSF:`- Fމtfhci8ň)8&]!0v*qDV!kֻg(f[[nnelR\X[.6_v)S4 2&$(ŢQ3d#MP$P9+ @*O t]|r X\*\<6=\:W{P~F_1oH?GX6*/z*"'9!c !qu 759Dv*vl X;H'4F8?%3('n  Z{l2R ^!0&K-]6mz?tfW#W9oVk\hSF'tYb]4j"0)Tj)O;ld|x5Pdeq gp%s[_i o(37ڊb)F<Nub|GEӇԙpDWR.9 Hc>$B o}SD"N[A9zFy  \*d5j gV#+XjwO 7`Ib O D7x:fHB?fh-Ifarm;7)،{ss5*KsiH=Ka)Z9fKnz#\5B<\XM\s5gsm V_ T/:;VV[W$U#]w=+bX(lZ$vl!/B?\s9; Ӣ?AHs^@{KWN~x)o$$\L9$!/5ZE!9b 1Z uF* r<!TIh&IhL h8]J ~*&%N ,- {ۢE|6`v%`Xߴtr-- zs7]4sKCZt8 R@m~t`' QPu*"(pdt,rda#f',v(jüXZ,RbhZyȡXInl--j.B0(0STQWcr6kf_ΎG/._Tɾ.Nwn#RmN+ loo?\_lؤL҆){U"b~1~j*Bu7iY L^ =3%lE ja$XN?nOzeͻNx\C* O4">Ը\k}sߒk{neT:S3 B^/I%O}JʘH}}>]3XbVW^ٓC0\I77&"}1*y AQDkovҌ9iI!Q.@Ư@(SR'SnQE.7fs/g! [̫u8\6W%$Yy5]0 Yq^ CE2ܖ#)Da s:7Mdڪ۱CaCZ^n<ւoytxZZ:9Lv&HQ?V ,<d &P]" 'r=p\X{^J?#}e|ZSVSEk`]yW0Y6f[ۯuhtl ^rAҟ,E@ D{%5v«QF),f6jmoP!AO~4{|7گmuKDbePPQ 3lxet-Xӹ2"T|׍M6o(ZTpJ)qrY{HN+~;% -:'Oi`ZdXVBZi ? MfJ"Ϋ\j:bũV, I7m0Nu$mHPU<#y)~4R_wI.9ca4 tMHuFd6<u%~g̼! K!}.cV 3=)+M&m`6{xOxR{\nzxVy 5jx55io@aO[,;JpFUy-ZG1`%h>+]bIrZ*H^0U8h9g?:ʧMVssCFy#9wofyK,r_qVU^!+U%()"76# y]or]-0q C6Rq7vXM]\>LvL,ՕZȔbw]ɟ_e>~uj{o3DK.+q%"C<A|24&?<!] #. 7o̪rECZs2lKep2z ;C++=?hE0 t-rw ;UE|%#ldbeEp,M ;/28eb%Ö8V)],%,49_2EW#Q@z*dUЭң{/ iD{*MyKyiNH(Kn9af)n!B ċk)+\h/{, h2`IH#h0e"&G+r>1HA)K]3oN oh9#@~M\U"QZjr$8t\ߝxJQ;6#7a> ѩɚTzzg78m\h:VS|*Y5z; =*7K?]WY^`fVYt j(sTbu<l! zc o\`-b{Xd +)e۪F3^"{``v^SH}AUGz+1(#?:db93aCMMb Og*23a KA! Qr@7c6ӝ= U%-b"]tXcZ,Rk}Vz2D>|9ZIv6)au\fXJ9Ds?.HR}nxn;,bGvDX9rF$E{$}lI]5w|$(J] |XCBg…" M=%ۻrK&Zm{1}Z#ax-$md t{8 wVNd>A+!{/ifjȟ c. bLbo$p!3z> |y2hvO7/4&!$,I!$fX2^V9%~[=ƗW2W_}ûexIS+UF*/. 6'm>[6c kDfP|_Ou~i;dLueHb|OmbMUG&$ LDڻT%uw.pOB$ NuWnS|`@pPH ?k*p =y3:Dj7J5 _s@g7 c^Ri9KF^z4?!/ ?;q4 xa =jo6-, |'RS-c 7 vX<8`"S[^bQC"* 5[sC/_#;C&ulHK*\+-^,; PpҊwZk L8&Zߜ0d|yPi\syV]2.OzE"qln|Vo=c7f"lߘEzxfMg'K:A$A LH| i@sެQ_{T[-JHz^)/T9Z,$f#?4M%=29:2PJ(?M]HJYGlU$EySaRdG=MӀRpp]ZhOd.PK80 ik i4W]H \Y+;Ix7KNZbU|co&}og%[EK?G\Tp ONk2P PfL]]O479`, yxu&0ftI X\YF@eV0p}7s] \ڑ_uSDvnB]`7\]=mv# qn\\۟?Y(:J:5r.@A)&1#[43-Q4XK94h+;O>dxr`Au65tqܼ%|9Ve=:I7Q3\G.Lc"b5f}#H(ur6et-F{;3X"m kͅՄ9z@eYkR7/i99S]@.plk<CAŢwoYmM7Z8:/#Yߘp^K~Y _41]v,s td"<Q(C K;q9: D9fXMVp]Ni!Bg:-Q"k\9  /n"i NϢNkS-$vjjjd1|IH$E~ͳSS1d+ɓXz׆>vD$nWـO5Pol/>fc&'ٰgX׀7 4OœL|;K.UƪHnϊ!Br0c4H.b{t<+2פAΦhuǷN>aGN%>4z zϢDs ,;y_> X01TL^j} P,ޗW ~*=QLTdfbPk `xv$gBxM,8ƤGalRJՊCǁ iCQ%?8>HbV;(o cCS a'_T9"#0yH$ PQ*Ae>-Dyp}c|O7B.#(??.A WLB`]\<ڊeTl+9Mndcasl#iS\3X'cf3o*Vyz{ {Կh_[h\0T#HQL7$'L'"* 3k";USNA/: _n !0+'6eH/d=, 5GU)_!G2%A% .(08'*;4JA(\ m݅ 6rER1dbXxv0ڑMp: o[+\ER[TiTEb8S>N'N 5'l;HbV@']`:QfQ{A؈/' $m+oNo:GYH)j \ _H5gh.O3=h];h  O~\`$$.dL2:7mEthg+߾?H_r'<A%ȴeK( eumZ/LaT)4q1F #_Pi6?]r.Ow1'h^>ɏP;Ckr*2=@q<XFI'4:#D6}n$]zCmy~tu{>p}s]qIx0,[B-Faͥ~ss&{ogEwP!i\aAqUcM;/W0E>F\t&| kB89cKY?^5.]f1fx\)XnS.Zj69\%SSXXǧlm١בDdfRaK`C95$ m4mEĘ -/k? +K9A.gIRS|J=~9qT@:Q--ӥxcrtȋ71PDAo ),'&k# Ss, o$ u'ZR2$*uX4*EJSYA'tIY0WAnroLLC ;{+6,ZF>HG>Q8$,QEn ZkpY\\F/l 9(u,޾&Ͱn lQy9Jis;։XWr+ ,I*:HS?5p4q25*e-/@d#ei9l":Q;dy* c?!LPNIS0iZF{*Hb5Gi1mL۲M[,vvXpv9{^1%Ew:#H\vѣTe< GhxƋgboZLT wNSwDgt q[ g0Es/vm"Z:~`<AXħ~(U#|bLFnpȸn9|I{ʮlJf٨LE{ۖsu- t"+WN`2\ a~ ]GA1-yWJͮEى) x; k2&=w6JnLsOQV^tO R01 D2 =NQ~x0'Nr<R`4gflce _t}NYIwwnvQ;p=j1@jgh kelfvBbW4Zb߆+ pbGJ_'4j[@S 6d}X9Λ0{$VL$?ev8M<JO)s]T|u6^qËJJ]{y$lxSX|?w"d x6@}U`F6RҔKI (8>_DqkVhbruxyNo.a%W7M.[Qa?wԬVWۈy7^UĬEONQqnZ][cfBv h:2hwng;\Q,J_O,DU-~{R RJ;vy# AOF$~kl1aDPTM[_PYQEV#9VK3&h,m )U kY(6/+ug3J6'8)FR`p35yCFFbl"uqQO9 K VV31v:Qbtj=t.2vspgC`MkX ?tG(4v!P~ ~P**0jf 9z^\xTc79XM/6`r7QA<'}"-ACȕ.` 2)GaxkJE}# 7^\Ay$qaqNzSvo/y~6T%idAZH PxB 9݊݁ևx9{q~pmlcXiQRr6w~J §d3 2HAK٨ryTlam P& j<yi&*43,o#1a/ -;#BQVOI/E91KjROGw=2!:6 FScp`~ Swڎi`}xIvېokQY#MNmI#RLd[6wYdT;M6O|Z[ [VvPO[lcȱ`Sk>V/+,c[e[#MTDy O`Jw/_D!H$%Ut/,LҨ (mhuN1L,X^\;A!G [Q h'Nnk}^PHNUQ KhŞh$QP}+ԛE>hk|$[\wz+fVg JE-,Gn0vNk"J\eB@sjtww}zREn}q RBI, 1Kko{}t#(,>+?lc 6~?OA#٢o9}UwpʧTQl8ӻ+yOtN9M^t7/b<C<-N D8b9w.ZK?2΄'_d%6D+q4D/31/6(>y8& K ~J^ˆ63I!g3,Δ{ pzsBjcb,U=q T;30f: /-")kTiruyye~,b_}8aW @k?k]?p&;K%;H]Jp}!A 7ڔH,`.$G+q]{Z0@/:8b<ܛTu>AD7wjq"oD?2Dib*yfpZ]\ F 9f1 vB$sG\np|2+UEʾ p(cAplHU ;Lt͐W<}ОҼ0fpVAb-;MfB7A!Bn A8+IZJ #wʠU[E7ДU޽n[?z_tV{HvC3i;Qs-^yUFA6ZH2U.rPD%OWtMi{AhLs&)~e^GB1D-G3; ; 6ZM \q'e[_7LXEy6Zk.O|"vNo_yh!(fcVdMYhZp_uyvz}8L}͞{tsCͪ δzN9}@Hq&dإ'+dJg #b(#7TDHE#-=1>"@ Eu0%KRBmTLVYdvlXWsux\lFtw(T i8~L1=6= Cn4 FN*JDlMK}RN`Tg!6&ndC܉~alSQ<0؝4||&}JDek9,CAkQpK]\rWQf9B()y ӵ?~mxSvJխ,qù@xU- _ 32ގ?cy@f;?.##8>Y@#u]0JKb"^í(?|KW=j7hWعW6R;1]xn3/Y 1%  t^E\"9_; t7U .gԥ-/DLAkIKB<D0JiG/=Ak<[AhL!KkB2b */C6ֻ5)YP `D-37-@#JG$[B ?c_OL({t7 MRE} –tJmWF6Q6?3ŭ(؜;{DŹTo9 ~";UnEp/0h'rǮq@rk#J`0 o.^T=c)o+8r2޳JL z Ȧ.!N4ՠn9ˇ3c9)U$(>) ; g'^i_s$մ#(COT6$XXd#pinz2P6R+/K f :w*" or)bh-).)o)#Aw=gص) WkSvNb4telt K#%(C/kİhE}}}ɺ^@Hw<{d`o >)Lv'ىrzg]JM;=B5Bp C )+z1}3]4]{7DM$6Jif:?&Դ!)',r)H0#5&Z47"-I6fZ:UdD1h%mhU<:|\LPPz x/I%%u#T+B?*O%T\"&I;0TtNydbyG/\ĈQ ~l[}7 %J], -J8 9"7m;>UA'p07%\Wuf)-5-5h*< Fx/fO@5;\|O>€ rS'p,'}5DGBnS5VUT?q/$$>7b]W I70/kkY :8: ^OVZ[+f| tC.l6h:3]:;* Z09Eb%Ssy~"{x'7L/:y+e~F îBDhN)5@r*)!٥V(U*dA'Z\-]`:^A#[@<o1E R=Յ7'&K. AJ;R hO\z5i vuT_p:q$m1biOg>(9ܜ:5~w2m1B8UDOe>u{ǜFqH:WviaRK D\9'Q)Yv ot`~d^׋FR. !E'=)[IgL\ZЭeb[tYr9:ڍEՋG= .bR_Kh/tO?usimtyϘypx_3 d 8J;FA+n !; r|`?gK,۱.0[86|/[/ #K##b*tE1|-Q$# &w.,݆H ^ilk7%nhgDT(<,&!<]bOۺo!#w5k@Br?\N!?tOHPO~NQ MIC:45*FCecoYHIh)<V\?M3 }  L:;LoK iӀ>tiB/npngBTd"eP5?/B?Q=$;$T7",cJ%|} SG$PF {JN!(j4O=\L<M4-V4A.;'CgN8$3zglr>QW9%x<!8CIWfU:gYf+XgZUVp/B'Z$ +U1 [feӪ3"q'$lyVi<\'bEmL"juQNQ1Gk'߉^GZ*]TxABtƚvsq'sN=/(gA7p+8, ~oq$whZ2Q.a<&S1M7.?*;~t( snky<8_ |, Ej4'#14Hϳ aFp_cYs-0j` 'aHR0rĂffd.N:&` k Gi44y1c=I* xֲ"D|k4eSjml_pnhK`x]bckݷ>l}YVv tjB{QV L.,@ zK U[ qMP <: )7#!H4OtWAIB/:23.6`:c:n4|2Պ>~$MCUXX6Z[sTWGF3o},,53T\@;HڡLMRz}O@=) u1y=k?IF6/#r+۵6 ԅs[GW}G"Q a8@h"xC?m@Y#x SCCKԒ|#en%TkKgl 7f D]K {% > smA'.' Uωiѕg.-p Y*M gr#xh8b^?;9T9%-gX&% BJG5&]vRGVe@4u"N%\"F2 }cΡ}=`AF˓*[N  F F$UdӛP={}pfnx(]yX{W9Ԅ%zE+4?]HuFGvEeoBc74-(/"2J><5CL=S,8TX:B;0'o8!21+ L>3Pd]]b_xJ`M`3VEua4@m.l{T37 :Ԧ9 :0AG[C-;p*?T(. (] NҨ mɏfKB;|8 QQsAX%);znn$):Vfn[Oh#u޴[$g-qhΦoo|\tgs$ 9`rbDcJO7K$"0!.o!<$T}sȵ2uKdԵ۴ H/!`%wT9 O^[^>\W>?P\9N;J @=1:&:v^/SЯkw ack% eB*xo7E<0KpdE202jQ@ IJ@h*oCW:!;r 8InC42=!#^t ˱Ev^\h rbv’a^8~wp9I*ld'B,0c\F1g;3rU/5& Y  "L8;=:C9Zkf'>)VbRfiPeaaTZM6<t ,v)1Mj:AFQz]KOI`A,WJ)F;>$D^]D8-'-$DnX8PJ="uGH? nokQՏҺ3 I?cz.v\D,N)x{)/0ZmQ!z<vc`zZ} 1nlKl@")_<sBE7 Z' {WFAZrΏ7Mu$?(gL#7EpIUT@=?8u43+N*Zy5E9ۡsWFV4%P 5 #Eg)qI4y^5-*cjJ2yGgszAFi.W"[ #Db@}8<.3VD2R!exZw!jUS\INem& k @+-*@53FC:f77)(v O i 'P5NF9 6575?h;YO\kw Fz]rH[g[Hd:oe1b!YvzKX@|7*gXCHy //CA8gf@NPX"^SA*Fvd\L'=4, M4R:Vy}O.=< eV"BNCVplذ5m8~^o_O(!NtPCf7X[LE 2 u#^;K?b=d, @ib:*.5IuZlZR5MF:N,P0~<%-Ț1P:o]IzLS%RF}<<VA;"C(=75E/3 \o 5I"<d (p)=$,R$78YEKE(P:Av>t~fi4q0ld BpNQs| [ #Z6JCp)l JuS@j M <Gjם5%! :B++}ǹH 8vj@Tc6e7(00ʹƜzxtR-%ҺOջ2/[=Jmr }( d,.. p եXtoaoU:-QtE`3G&Bc0yr .F ev9*tK0q*~ ֜k~3DBɸٖCk|pj(7^Ad@Uep4n_p\_@ F5-K,^3un7Dz 2q(f#K!.'!N"H,,F>pjVHҘĐ0r'MwalGϭM77TA H4JlN}:ZivgEk\Lc, SbHJEevC`<`/$gfQB+@srv+tw'?v Cqmc^h a{Ǣ X 429Poұ\sBN:%;'@C5R~\jurM~SfE9|]Seo[^y rQ}w#(xs)YQ}/D:&;C 0?z1$ APJ rKcb"#vXq5'5ۂ`Ef+N1LB :c9D8.?gy^s)= : &>N v ,48?:@.$K W-CtѠdAK`&1RbǨ) %3FF=gDkCWV5d+$ : !3l>_NJ FB"UUtMB0"TMTFF*EjLL"E@ ?+1! Uu5 +m .X}pCzC5A '}ٿ=mW>#8!۱RABP %k4(a-" gF^Mٯ/jfgKGw*$ >k ^M?: ,:<4:>7*?!p; 6}2(pzz|3;Cc,|8VCQ\^`_@L_m.guv%E,y`jg>\&JݧL2z: Qt%}{5{?:?QG[SXJ_}%dg`5VKyBz5R! <yR]L62 . DawI6YtC9&s ڜ_"ޯz]$d: H"D ʅhz>DsDmlkzoPl$ȶc e°[1oŻCK1E-m9:7 0r"Z $_qVxa suvyp(}$r()=[~%;3Q&{{f7ϦjCC;:0k'1el 0 /i,H2PNH!-&n+ ֚םoT6%0A;=</L.^:."]A?fOxz1%0SCm>p[]73G2r3 7 FˊaQ;ni,[Dk_*(oW 'XIrk6veb,texLb|X&'J[J}2^z S | /u `qw mոqAؘn*u V{;!gD ) )HHƾiPOE4Ϭu+UUG{!a /W)i:OI{TTGKn 0]=7G(%,9-U* -&#.0+(*G7IQm<8#0qͨZqGT[B\JumSU{XJWZy_taV7\:lU98rTLZk`I`W¡&M%E;Qbc-0/T[ ' 7XN5,^ q^ 3kIjA#0Y=) zFO%[he'ڳY}Q]W7fV/dJ}țP.VEeX1x^QBL" vΧ҇ot3^ˣx#@qZ~^QKvA P]#>E Gg9YDMF,??U)Q+0*'DB_*H0 xBN%y!-/)3 ';`wForyZ]wH Hn/lj>''Hmy7F\OIc2%kX 7g3Kt =;iVj#rCu~rGjd;zKU14$j2&A.]Q4r3{~0~/'m>0R.T-)$I(]/5{XEDyKˇJ^D4;t*L3!6)+=MP@*0ػƊeha?->Y\}G!.jpA'~`)$kZ[sLydF4qhe4/ط * 8tF{vtBSCwKÜv`e4! c&4|(c={1;V*R2' h9ֻ+t^()(f:3;3F@H@BY@$FLL)J;!j`Y0'sH$>?KZo %'2#'E'QOUC4);+ Pe7|M`JԂJU_<](w& @k<2 T#f/O!O:^HPR_M=g&;/' <x Z s n| ` ZfldCa:,;Rwme2NلlJ3,<&1!}B5FOJ1jpkhy\X9=u@9$ _1]@ö&r5$. bR$W6r\\̆ Mq.inhT0]̿ KA;B< l)s1Z{]7z ([mD yx=z'$.r$5 2=!xg0F;[s?Y?w9?|*l T ] w;Б:2[fV2h - !#4$M38{cF!KUKI@H<zu' hMKbO L4;P$v.*q}G֤/&l ,qK'i#vhk@&LZc/8U Vm | Db 3KHiVqK$,ix|w!&>%<, b^g{ n#;1}KLI6J % C  :#N!dSe ϹMP=R QS~A%1 (-9 H-Z  vb7L8< Ȉ+#qbl$? C}-/4 .eJ.t{%Q }b&}8߭FG\\:,)""l"'4P, DO-:S+qR'+@' u7 p9;cZ~pnxc~m&}Jp؟/ZE<=>;=f96 8bs:86 /Ib.8+~EXgLky@JaD@4;.x")Mv1pL Sy))Vӧ~bXbO) qI?8{[J?B 0")eO^9eRcDe$vkdT_C6@p(`/i2! I4ת91#K$u Ħɤ/KyWN't:C4$F(K7OG>C3.jlyXa/6ͽ& .UD ^Oc^x"H$A$X#g%J+/0.(F# [oZJ' &M+n"#~B\/J93< 6* 6a\gs^qVc+ 8%V,o<8zMkUKO I@Q0s'r|$x! !> id`Q<}TmcovwOtvd Jk2gK&p#΁.$Ʉ vc>E7; b'S&)9\!DbGHf_E8Y?J--\95d dգ v-2&O?DX\FB#7c^#g[o*{D[y6,ŻC.QL&;8?Ww-\,D+T~)4Be&~ 1S& oNyx g RMU_,X*3=90 3+$ikFcB*"Ll,!Ls80.d6;3/3\i= C1=.2rY;Ar eq PR9!)&C!|2_50'0%6f)ۙO*>"RɎDL p0btmpF O]?T*V*;HA(:-PF$ wUU={ "qd 6 ;@?{ kn1%W7OCkHۭ@*nh_ buWiiDXF3\TBE%@FHz+9@t&N ;q1u)1fyB`<ͻ;'/:]APYWO3P6h*hh>5| oP"Ol *?:JGl3v kaX* K6'4p1$+*N)dv ϩ, x\I!p$+W12G3,h$X%Z3LZ DoR O:R;QP6Lz={&co{>:<"e`0 r=gdCA< 0l*m0 90:3_|'&l S 8!l650g} 3/ ^ A3Ao}@z _BiUљyv޿5d Zwk3f=%@ VXX|C$ 0 Uj] ojx1\kpCF,[9b:GP,Q2}bmwgjdZK {33FcA5XX![:rJ2TUmXf-Q4:{g.X $  { [ i^ (`72K1U*1W!@(|B]P WcD--sf}pJ0+] /W!t Ajc!A .  k _ |iryբ"D/.Ysj:cOI0d%p sneq8OGng`{b 0IGr+_"J|g n {3n&\mG/({-mM+6_BRTguvȻE' f @{t~oS7\|o9чlMTjOREDJX<KY;@P<S9Il0<$- @ ,1j?VxgsRgxEshgeWI5@cu 9Pl21\n)NM&=*'c12-,)0g=4BYzS``hkvf]zU^8Q ePSNS XhWƽf =q" gԩm nvu&i(ioh8!y +* 8FD= WE`04-QʺӻHv߭+Եm1?n;m0g^|gmIj_6(,)^!2~T:C_f8 wk? Ls VGa3eP,9cE*|",,,?&|]t]UT?NAsa4` N> *#T%0,;={=6I(r ֔n9 T^VH) Q%DF[=_gUghvf`ciJ^71%O")D;+ ?/9x'30$ص3Qjq *=dA'R^hfe[mcIu4V%@E<1f $ p[(="UU&V~9έ[GiNPrN Es/z7([{k|K/\}LOq;=1+12]J*M<mda8+q EWiАff:'ZF+0,HQ7YN':"3)<56cD)<9:ϻÙO@Kw+MOte}ŸڀV=pf0'<y2- +{. o%:$ P.JBM .F*Od>~2.pA/NnQGP/qfV *@*0?tb|@,ǹm F!'#2$xt-:eA2 =. t b-C;HjS f(wC#\8M`9DN~B/5_)$!"=3 7-M:m&J 11W=Bl;N({~S@Z5-%!_ mE$sAs, Z G"%rK5EJ}|Q~Ŀu=" ;7 0@1Iy8]EOF%pZwZʠ.@:Zh&nG_aaQi 7),/6R0 ),.3 0bm(jb ^J"-tN')R)!ZfrXN3$ NY+&+,+1~1w+ M @ P@.!Dc0 "6$ Gz 0ʷ$50@CǴ2?u3wGO$+u$x<8e(!\  -o U]*3 G%!n h"tDkE*y4K`i$ 9 ;Laf k_8RF1FR,Q'q" h>Ap,`?^:~:>3DW*;A'A9|'-x\v2LESC> M>; :V0#Y<{Bq4l,E 'Gt8XE<ELGGVx8B  " " (+& Jh7*`6n1<sEV>SA58+?)mX2Ts :oXOx[lAÁ-(lAj$CH;7J}{Srloh|{%~ۡiQ 6tYkis{s\L6 |YERd+ϱFm'4N ]c3?|طMGmB'.;[n׈"d ;Xo4HS̃)c"ZE&v}q"'Ye !z&Ǚd,*-j-T0 M8L@JiA$87 )(o S EDBn Q$;7N ^x 2h'8g4\zK#l=AY5Sh2S-DLm&"H!M"H7$v9 $%2>_$]64{Be~MtSdSouJM:h=')Dxj a 0ED;]"i -# 0),)! %)?|`8Y1hUKazTp4 *fQ:Mf5Q#O{Dx/-ŪlFŕV8ZoZv0jP(b#/gE )  p2H`lZg $ Z 1.cR,',0]1/lE&canf? \:PRyp)"61b1 C,(/-V7.d>=82(2Hg`BJ,5Quh (w,GS8;tCJu$KVF046D%ISU M ?0 "5 [JA"'$=ٯIiQ.X:[ZVXJU;C1A+CN$C@DU-A.F Y0$ *cxP[lL#}/87mI,H$(.!7M2*0ƋZ_RDsA1 2KQ B "k0 P-kP5;Kn{@6HH|6w8};'E] 2a&P.]zQ?MjNLc ~> \ :krbvsO_"w> W"&)&?*!,6#~hi3xd&7bBgE>,v^Jj0:\^jqd ~! !'!])O!$',$pbJcBFr;BTDK/3U i,bE E %v("#Yxd¼RfxJx0 z#4#~AVo>87>=@\?<-gD!E]AW=IVPpK zTF@8=M"z{37BUFe>Lr22x&ix,P 2z" V3A~?6>':o1, : :05 ʦ& wQ- -sW k #:-%264*uXf41?P|-X B m J haoP=wHoigP9ɽBlCpM9XiYF&{(Y '!tY Qܷ~(+Z(ٱ:_I ?aTWYw%g 8p3h}_Q5e5$ ^;`0[D-ܠ#=@{6HYi"y@-3:- %(hU4I .J 29XIrO`rOJr\p86] 1DJ![%#r*/<)K['FH -1 z@h,wnw`)D2 "\6>EuWE5!<dv:%S$H$ `f]cboG([+P)B4_?:QkFKG9u4Ecz4!4i!*LmKH~s*tZmLU"Lj yrX2$:&,"75-D.G+A*A9E,`e V@L!e +K]!x56WD2N,X]T[lSxNxnS rZZ2OLs?.c3F*! !9 (E u""A&R81x4GV!gIpߕklkgYDER3;(5 /&u} FDh|wPZ  02o4'BOOrGb_AFX;z8*#:.q#} puX{,Æצ|L!3=Do3RMpϷDHkj /,;I Kn<~!ï3$1m6.)" i/_e.:QF9;XUVyI$q jj<}NG_Yl P yS)7:/TK[( M5 *l+s'!͓ lmm-܊(sR2L*S 6-Cw:!735^4> HMK3LEH<lo. EI 1=%[8ziCqKNO|KBpW;jM;cn@rDbs?{e0XPHu6^ `RJ_5_b+9^DB5}5Q#3E!K {Fx\lZ:?sֵ R/bM7gRlS >(&:d&FHbEuB" 5GZDH $/5]@~ +/ 'M^rmAwF!%<T %`VDR1Vl,-3?<KEB? w-u F! Ś=_'@ F@&ypEVM35f>"(/4q5X6,hoQJ\26*wV1 [U,C22v0<+/p]o}jep-%0=46a"' yf*6#9 3( \:=G.u,T Yzɘc"< |k^hZhog&Zc A,_7o_~m^? F"p" ] 4z 951J_`NP.XA4?Yocz U89-@({w(8"#QGTN6>^6SO.Bi&J&?'  cTBF v3 !}096S.3f+zh,!`@zO;6; >'7% OPU]/9j"u%E V?aOM;u ?%]$y tUZKXZ"plsDnRrYniJr p $`to1ۡ8k$+%{MXOFM #I$%!4} ;TgXW g0N t?|OŬ }{xnv4Y 'D30`eCmjlEP,&b4i>A8<[(6P$CG cI3L+"_S0O!= ;'P2!\8 [B<pI :(.Wc ]ޣQ5x+|7$=9*>7%5  ;yoAI+iN*CQ3"x&$(9T$*J@LZ9?`&u Xay.hXt2j  %j7}sB:z ޿-4`T~E("ez5RxY6"c? +ku( x WbT_|p3j P%7=eSxY^N8*}D2??E#3K4#O)>G>98+5uxB4C=m |.=)eJN8K~fGFu H8i;G~Z?D14/". 9>S. _+8hBKP}J^O<"$.; \&"&' &Ja RM=$N+Sz& w%g'-4q-32/Y4)_`}¾:(jE*rŋ&r-D n: U#  )*M +e|oU}uzc1zi!?>kZe#^63HHD.nLhq [7K<1(F XAxV>)W{ m0wQk B J4  0 kD#"3 ,l10/B.7%']M , "e/y .n+CB7Ff=k;<'I7 x7"@;+cM2V+W/+RH8k"+ :4 t'Bc1p @͙kJүOŭOIzCbBVEOGH#B5[2~ E 6B_= a~{7͏K&$7. }/zb)f7/ 11S"vLj \m) &M>G M; / Wg ~ԴGZg֫ C_ek%s6 ED8 $"fT mY3 }H}\Pgc.V`(yy,)Ls ^Q1e#$%  T$=| :,E [#6,8. L*V#UECu1)@)kJ6Zbv%-+ِןXT C % " l($4#|!0p2jjH{ߙ4dc"-i-D zk$ #Q#"QNsYY;fDo'Əe ۙ[q% M]9 j0>)' Z_fLj0a6U=ZU]Qq{Gt^K:3dn2"9!n~YL0 I\ Ty@"\ \9Je"8M&@f$&"H4} 5#S)$*̮T`c<<#&A2Z;g@Cc&>bO23!$ e A^|K-(ͷ޸Kb"2/D?\kT{\KlX/J~44Z0= d#5 un sJsZ&a/f3-/5r$c8%1 dnZ*m2->d  zF9qDtoc)t~s~.(`r%`S~ZPRv dTk6E`&>=G.@+P&Ry F \ 5Ħ? }]b(Yb̤:%ݰ!Cs\XOI8D: B<o63 )(&K iHJk7?W C ӊ#p.(AKv&-&"Qd#2Y 6{y {1IF,Q4J07931W&"n7 lOu%z΂HO O7]-&8 6N;Q<-D6)5(  P9Z{jurzI~)A%]J1 a5k2_(A:p5<L_NobRmp]hH<: x/No)d0%J*-*0 i0]+!%\g6*5+WG44-8`@DD@??g9T:K@_LHOrLlIH>@0-54*(5vd & &q8G&^/o4)|8wO;-e <(J:2,848 c:g ;#9|B/3 3u {. ,&5s0:n6/J6[3/"/{ vF/k1$pj|'r% DWQI3jH ,·Y˦K(AC Z] ln gYQ00 2}QK7AQ;%-"wT)H4^1S! /^iDgl^-s\\z^˚90   6@ B J" #GBXo"%Y!Up|H')E1]8b9W^6;/ )+< l4 >|BJAT=3$~&f b ':&UWV6/{B^I `KFH(~Bv_;*Ev63= 8@>\DC?Bx5:/14!%wfq(bZ)7avQ*Dg]r$mA'[c$f;->?I0** y G~^[~(MP#M=A*M -Mx *A @(  Y$74x/7`ȯo] 3#UlnG"]7w8 |\4 x.AcXSC9ay*or>2w[01l`&S&L.n( g3 {E%h\h3'j uzX!)&.3P/@;+4"w!q)?Ho1&D GL CB!}yx`J ~ *4* Q .:BCNm zL w W .q n{mGlY"fA> M pE4)(w"r z h8Q}Aj G{atwixNw4D-2%6 85E0 ^!_' _=u5s;Nc-k#`TGKJ+5 ! }Qҿ@5pkQ`~$]%J[! 1"kz QD$/ae1CJ o 6X /s=}FtnEL8k#-&8 (' oA+IMS{t6)]U>f;IrJq7C]n2=l[?[cgu_F .%2{$ B SG>I.G,r`b^hICIA(#V # ^3( U5urj=w;'z.zv8:K2F1Y|m DAI PPD,b}^}_hG \b Q[]`".d,.ea4^]3O .9#boF?!:|275UhqStvnV9C29!1&N-V'B#e",C )Wo!5WtHz\%?D['(@\-GO-:Y*>#h'%!"Fw d a?scBy!d *0"L+/Z:7Po=-5!6(n* !g ~KZ7jYwU& I,!>)rG)E=(P!O(v H $yrڭf3p " /+ h8|wg%| xf7M׍W@skm:<2v X_$)!Pc3uPq_zzTŚ9dt( @/H)zZZMU97!xlV 78h' (==!VeV -@yOl9!T SAuUSaSW^Yg'b5-h1@gbDRWKDF?(J4r#0k%.=vXkp o[#0h$uX#MA#0M&(+!/z/(G xEEz4MT ['vC%!Qu+OMi+:'UV ±ҩ!G }z̠"V8 (FC_EF5)cD i_af>u KzDY?X"D; MwSuME=}"Li< ,2}kWiܶ%f+>s=-:?8(ky-K#pܻ=R{ u\ ^ L"1 C1I V!{E05N^h :V>"bC$[-Y59(~885B3>/.#(Ewi(w 0:]E J>E9,6,<%~|$H(!.A3\7rD8Jz5s /`'P;% Pg+T6WATFUI^E: @4!e_ qhAA8AQ+ gorIgP 9:b. D" Y x[YwRN Cð͵3Q Q;U\NK 0^/(cou8Z]j23,DCQSP= GNiE>G@c8i_J9 )=]ES"h_+n,d$XM7 h161C2740d08(w[^iLQgE  '.I#0@&+Q`'S";Dy(G ,2{6˓C{YTb~K |xA$)uX;Sŭ ~< g-or0}$VxG`*x$= <&0- .*D@;y*4k/g-U o,]*&!F|`U , m"h3k2QAmSNJ}TwPeBL[08P/@++% &]\M} y=~ )7 |?#LJ!QA*S ])q$>d5)Ӯcb>tg&t U| S j-bEn:a#!Q" WYv^A< xTnh-Lh I$ [U5 Z3 ^ucH~ { qdabea#SQ #}> ' lrA'zM(Goyȍ xq,U$rAt5 .$"sOF-X:':AWDgqd~S#7=0=! #j eW+1J<34 %D4f5:&*f'# /-%(qDWٗȫR {M4+L7nU;O6>)G'e8( [[{LؙQ=~\ 'vT:b= /DH'YnCgr BҥZf ؃S)Wn,*'%qggA3k/Kֽnߴtnknwt6)$54)hvPf+699 7)012b+ zXg@"gcg+:1O4V1{*x%m ' m.j7bH>RAAhB0A=[3#(T}F[ ~'79#nU&n(}-({"hR4Jp1&%\;&I-81@1?f,!\t.Ә6k 1P"F }O"dF!'. K^)(^!9!+9 Wr  p--. \ 0 4RVonKOm8;ƞ9c(bI3P9e1guXD @+/ $# g> 5`- 41 /9*VAPNE:*YWxf(iG5a(WóxzX?qz\ `$x pkV[8!}X?8!I&\'&# &*"w#O y#!Y-W%-5!|;>CAiC"y>4$U*w7&w*3=M>E]JxLaH{?kg5\b.U.1O(3gE6;8 /`9)"981[&/ u>Zquf K/R94!N [{: x (Ͷ{^>U(W~44DaD}4(svV` ] fL67DAki5& x   6[5;h0N#<@/# | v/pvPFz)h3yIp&Y)Y'El( >`5f A%UW ~>J } tk , &Zb2pp y, (o0 YlA 8TIVWD U 9eiQ IV:o?2BXs u8Yll`J7,%#p n `$AA'X c[{IF;1EON: e!|IӾ8_9!-DRWPGE3oP#<] "%A#,ldm?@BIkb'(DqXX"]*GY.XL/=/5 2/4X)4[=0&(awa']xO1t%{VJ8sFO˄3Pzu1G9Y 79%%#' a '~- s'[5 9- _=AuĻ&Xb`f`;[^a@Xz_Q޾(Kc%Z\4>V$_r;}Ok3i&8$`&ii x3pJ n " U #K'8*( N"l&(j#}sX X5IE DJA*:Z#4K%+$'8@ = (3QPFf v xo nH Xh=<.l*@(% ou0\rrqTZ /A H C$ 51"7 K)Yb4e_5q+@ƕ ԭYTr+f,=8@#5)!s,/ 1Q0EX* 2`G*m0^.< U#0a9Z#8 B,Rt; ~nXf.\b,K.m3 +[x+?z!)[CRzd(B^[*k!+:jbZ9uo#6> mgfRj_: RoIM };1OqS H/5/t)l'_$ "tIxP !!  o#f#Gx'\d~*~`-Sm.ΌF)%y/\H7 B}<8!4(T.,]%-,x' 6]1J#(;+L7V5 `P<>T#DR ` ]  < g"A"Kkq7]Z\o08!-e4,;SN 0"G a(?%_ǭ9~F~x:)2z!< Ee=)Rl  `xb(Rc+:9eU hmgS,]7k (8@ݿR+.86/;$&5YTb0 XwRhγaҝ˖¤>mf%u);v)kXVtT`il 0X't 1C,6F9N6mD8.2$" " n)9 /O$346p 7 q52f$39Bt&IvDL^ LTsHu@h?4}S@'>[1L+t m(& (,#?.//v -u.'g L'i a 2DG9 &f N L V/5 +3zi o)8e0:4J+%i#. X~ e&.U!Ӽ7 oS 31~O]eY uJ 3o m  H .9FP !nuF;dzG&(%+s+^`g)G%,4s# *$#/$! c b^!\_aGgGN 2tC E6l!>E}T p5 ˿Lf   4O>8?{t6N<x?hۺ L[,+(M [Z\cTbxeAþ4Cge2E $L/EN8$:#Jqo _h &4 -V9<:U3p#nvvF0 ܯKb]6E:[Rb]& ^ S EK@b=1'51(52s*h vyB~+`4=u=zCrF[~DMAB0DM'%I%K&K{kH' A>6f(yM b#732$W=ksDwVHuHfmDVM;W23$i/.<.)C V^q 9rK|l;O}MP q+{##f )8jN$7Y/ӿ,sШj$2vլא^trjyu m8oYXMj\|vby8/E>H0'/7-mguU;M$M*G24t{Ys6#!9A'V?&,f"SlQeT'A;F9:A<@>)?<4l!1 PGIrT-iARG]ZUN=z 5 66(7%J3-(0i/&=+Am'CEI,Z^RS@If2) *j1f18) P>H,_F#`} .PFDRV%KI'2%/K"'!u%n*q.-.j{(p):b; +/;B;MH6%6" %I?&dEl!@ a#m A#5pC?ziȶrօ5w~N)l`"I67g *L%S"4=WNCv%li5q4Kp X!Q< "FE X d IW'T!7/;3hQ5oe4r2o,y_#L<9};A'E.@i0e8/3)|.*7Q&!X ai$&$% 8;vLSMTCT5 W)` -& &'#k%-2& 4/T2%C= Fj1`L_ 4TKx9' $ /0 Ro! w-ݵ+4pEC-3HDF lNhvh ,,,6%K(w7¸a6#T=@OQD2\16>0 F UdH$֬իgzpuQL&B?*A&!&`Aaw`17!M{QWx֢ċAp5< 0p-AHe+$8ߟQ&, .f69D>=B;b32%b /$Hb)B.,b2 u362423:~AI7`PZOST`{Te"O\eDeMn7:+1&z5.*<1A69n>Y<+6";*7h1%9* ^#8!"`!( =RIaH>M Y.g#!c @5 ƾ6ID7l}'C[RTP @&U- pi*5xQatI/$@F4?0,y  G> ` +x_ 8u# @V cc"W}C-3NR/a6/)"6-#V%|Wz 9 L|e1+1 ?>z0=Y hn  ilǝ"nI^GU?][)?8g4 G #05g0SZw"$!'w($o!qh- Gb_d1lG>!f+M   Y"6DF=+*vb$'I'sF!II#Jc`v*?HC>,5&uw!`Vspu=LI`w }+ H ^cO V>'~G6; w$9a S?`16\"G$%UO'hW'L#;M!(-!*'i,S0,73,<'= <17"-15 D>z5TL|*>`d4g9]6KU18+J/i*k+P,'-V!k+c#* S^֡m3'F0'wphd8"zmCUl*% "{e4GDQs [ TYmS$&%** \ (PR=z5x #~#w2-Iy4_6k3i)T_PRFK K L1MH!>1} 'G$<TkedjYcFd J6e:,m# \mR8Rm *^Y>[/6 4LUL<7[-W 5yZG |J:@b'9" /Yu-#[ j Cz X%6 )*'\M~p2Q B=P2 9EwGr> .z %5^Ev4*]$;0h 6 2k2&p,eQ'+&ŦΘ30¨ϫҮ.H$(-5y.2rQnd=mL%rMJ:45A@;5[& z/$*G)}&  +: a /qJ ',A6X<4j'<Go5jv+7_PLIJGFFUA 5T8(U}XG`(#- 'O&'>%:Rh"IXcP %=$ g6 FS A 4P*%CԯN +N9U9U-;Uh6=&' v>G ߶:G! &0(/I& F"$% #%RB/Ԯݻ7 ?տ%#+:OC<(h PzOO_DBM ֘I!*w"in'M+{ EJ1\|sT(RMd@ 8\*!m0+ <+39_3--#0rn$!(##3;,1)G9&HGA>RXBXhY&kRVaDvO5@l+:(4q)-*U$*(%n{h"%m)1*hGi)S&OT;&KSL5mUZa`*R*m,u4!&-0R-C qAA ZV =yԵx7 ))>GBm6-/23u&1(|p( XF Iau >Z>qUx,p<^xTLwA8,n# %!zw@k=hdKx3 T"*VB jRIPa<9 m :oHdkeө 8~cp5jB Aq H 1CZ8w~HD]haO< m%% Vd1RX )sSw<7[$N?(XA$_QWd@,+! jPq Uq-? F#>a0i"@gv#* +u%nIY"? ~bjP"?"[9& j3(i4(^_(R*K/QI7G?FF=MIz-VGhC';v/9!TJ#W4 S*Yo95 }@;Ax):g4PC.<*}.+!.d0(.:%,l0,z4aO$ 2} O6 'O%?=5У M%} y \G5>e"ILz.ִ x͹ ՎФ~[5Xj\!a1*2O)BB Asp.0]{<. $ l 1 /LvP9,rk5z19ZxY46j(@T`?I 4 0/(> K M}3o  "f9r,[OV1^0.ev+\ )K3 qWH#- cx A[ m ) :0 'v"@0< <3%~ _ 53 "ijKpL:x+[ ?F:D9X*#H!d"&}&%- ƺzѪeh+!+W$@A TqeXM8Y . [D *}h>tjL?N:"$!b [6M0KT+\ۺ,YmΜs)Ǿ& .6kp%NyUQd]GW i;QeZZ!"V$GR$3i' # Ms  FHS+ `7-Y<rOG!ANO`IiQ=N-=K 71,&!d=Xl',!0\(?>H LgHQ]@[ME3M>#(VZY.+B% 2z )&T@Gtza u& %:u@ k P C $ ,e<|3+7'^&Nf 4x(xCj{/IHWnp=2(Gw/\E+/!LE,xlvyF4vQ03=_7NNVP-B05l(-(t%N#9 1'* 4"CU'C|Z> jjEI]!J 6) )G  P-(+_ c  qFʻ}$Q#l 11$ $ / I I p =ļ^;)b)ӕ x+ku ;@L _ r ( OpۼRxߡ:8t!m9B+A@#8}!D(  A>t~A] .=E3%KU,tV5,H#4 e%q 7W7D/\t  ,%-% '<uL J (:-ŻEb3@A<1' % $o#nJH[wTQ ; &bTD9!\?$i$Eh!^%L<5z3#m2*,;2>#7:9$ 5<.&;9"8.),Q 0DcU5i6@b2RZ,<$V'2#_ R<# $!I5IUz%/g"S(h[l2yΩ0Jz n!tTrfi`q lJTU h9S$ $/uc2B{A4'MU[%YHDK vdbf%h9 Q(b4k;hc8Z.D .% #T"S !I8Y+H :G 9/'d--T</F+F#=  .` Ff"b"# )xPQ Ny ReQ yz5.E"x@!SHD ?7 ?'/R* Y3 @ a^ F6 |7IME 23` Y @kE5* Q!}Z#GV M V h"4BEP:&x$ uQ2e ع ,5+ I? W_%NSҟhj{yF/hnC|- -| q4i )ID2511M%x@I VA]p!Th?)[[ h{u  >0l&--64I #L.];Nk&Do.GoeAZR56='(J/)%}$ $ # = Z \d 7[ +\n4(7K64<3,5'kT4^W&rF Mz+:s: . Bq.kqo A.ϿS`vf!!(;E U@K1w F  l e s ~\w\6Q j( :/DA@Q3c#=kh 8Zp͠%H |TzSDlV`H1{ٻv }1<_j{--:1C'!-r{`&S: cv(:@/O#(L+)?+k-H*mj'# ,X^ {B<DXr"-33DCIVPU` X[HVM?N=gC-k7$- g%!2!# lO%Wp +_$m-|m3*48019R(2)<8 *EG s'$+Xg(,?)B 9^+S @@=%BIWe=(q;5IBLCED;&/'5e$#4"I@"'?@S;(= 8N? KR Ky ?0 '%&'D"5XC$w8Um&=' *'%5( q`saru }<? iǠ8|{MN3jVT7$s E w/|5-p3Š$qdFSSZ R-2o,~}  s.5qK35nrhrC 0@nRH$D"8E'dc? Y i='4P9HL E 3>>P5J$;Y~ ]S!.T+`` R1QCLI m>6,t0V7P |( / xy}#B.(=A*O)Y<&6ZnQ_A3J^/5/NT0%0a$/+d.92-$3z/`+'[&' Y)!0,6l/ZH#2T2eUA.K{&l;-F*J*S)\$")W,,$԰ @>*" t"\g ""/yw,٫ku>n^w|gb~l2TN o+pbj, ş@9Et~xm+]1o*Qe .Ye g( >;xBi4@"R v7ZKS]J(Ocd.+\ -KM&>B+938}5n2: *{  N Y] I{ +&!A}. T2Z\0;V (E1a$m\  6  =d(:l>J:7q(E 99#qE$ZF-:@r' ) Q 3X!tZnGrs  .E&5] =-|7 H*w! B#"9 i kP & &  ?.6 T2l' X;# R^I2 g&R8w.;#bcLGbH'eT|W E+H߂n3O %gC A*xt?A-rfBb&Y*;PH@ |H ? 3u u)B%)"j"# Y" 7'xY ko7XO*Dd4p9Cl8_2P+Ev'@@%a;#6!.N H|{V'{)O4?3\HE9R9^MY2=b&)lv GEapSc5r#"]2M&D8#/5 ! ]fE}a< K+I(w>3 2<)B.027iK5)Z:t{x.> `B >O5<,%A WytjяtRr _( i` wPhRSTEګ vjR|sD3l.U[k^h ͸Xz-& 8Zf>; 3'l!1 V#!#L!d!  Ga$gy8)O5@a@zgeFcF%YhCJ>>):56%-0~"*$C Y[Wc ! "%(\2C>;J?Kn<?A3M-'.:w Nwh tRh E<y%e-q-Id%yT W=N); Bf$; 8'5<H;u5S-J*4.V2Q4/Es&% COW:2}!7f H SBU*OBh7m0J(L iwA(0# տcvoyb%U+>%5b9)Hd_Q+mAVأ xEO* f3HbExP3*P"6a/Ȩ8 TWl*l^-~(2x[e:  , c>}nXs52 G!IWZ"jS!SC2(O'A[V 1`6@,%w:g /\=:rD/>P-dhAFip+5GJ>OM$,!/65,e: lt9|H^T!: WJ{wh&6\"2'uDN'R"V$QlFZ >"?h I@!W>n:w2 )(=y*#b(*"1-}8/K1\3bl2+[,K%9m!-!"" ###!tE]GU$b (  r; 3 WDn[v)[e N]4=eU8w5~NqIg 6aO&Sٚi>o,%2U4C.Fx'?$"a~6q4DEiOv29fRi}u(ApY-_+$K':#.P ! 0 U{}]uYx E L5d(C/NG4M`3@k,-#xG> +hM Y=;t6;4"c&,5;u5&K(PrCu  A*xn:MwQ@T$5?? T92.s-->)k$   DE6C++v EH@s)m?#MJq= *_x  7S .,~F:# >?\A; LƶrThёAWR4#'k6 VP]+!CD50u;voF`D5XGMIKD|;QP66 2,# %`E\ &y!O=jWeo!L,c2&t3_1H.6,')% C {Xvv B#A>K ? ":'U51A8E9)=4,*ZC[ / #C /dSfxe;Aw*{+$^Vp M"C &~bOZ$E[3WqyA(6\><91&Bh!A!,;3}W +%9wHh KB 0D`OkE)[}kdte@nJG޼( 3XUjT qSX_=,0ޫ HR (> 'L N AH2 <JF3&/&~)$"%g!> O+,GJa&p/u6mV:u[R:C7-05#c3.S3(==lq 79:('0+20,*&@;& E0w8!s^jL](? 1 /u%lS$ k  Av"OZK)x JJM3Gx;T2M.)2#- l;U6  5jI]W[]Vz DfS-o  S I||7 Byu,{UFO ,N>Q ={A sv wiB<۾8OpIc\$ r$*6>3<X6 *S5 2 _ 9 w,^2`_/F 7Wk{a^ OD:UJ'+v ]9,dm,2eT 6Z&/T."| BM;ostRf', 27fA@D=d2 )$!vYkl,VUCG$8.M 3^2Sag,X"Kv=5/*'y VxQD~4 f)1.8iB;aP;X%9ZU2F)3!z! I1"3[g .p Vr Su4 dGA ޯ#~yٹ]q> S/;XXo9f||I7,¹P\ ;K2 t><L3o&8h{| (:YF3HJ+EwY fi_N<A-$MQd  Aus||klOn R(W5-!:}5),hwM5Re Y yHJ`sM5hM D+gb<#D?&7A\$8-y+Dz  '&\jVOrBHNX<0#@$tGH!6C8`) t`% JC(Pi]c S  /!89 0,t"Ds?kqaz 1-m)I]8mgT ~8P 9 ]=%׌EeӸ`74Q 7 WC-s %d `'t4 u8!1d#M f,%)=TS `'1#@ES_.X8Lw9AA1VW#`  !;%_T}2 R)01a2 ,*Al 6g\z'' ~(#[_Dz 8^cw&eeD~eX,? k0 P}8pq <"sM6-/=yEt C F92 ,n $ g 62G$7~_ :@W %R7vDP~"mVM&S'zH&,:i$."$l(&#3)m )NG'!A f RkdymS)/3Et3/+ :d $  wD8NA+(uG# 4#!?>T2 "x <0SdB -iAv!"5 DK8%G 2:*6b"c z 'T3<VB>O3CJ&@DOAY I 7D | xvo | yJ A b [N >sb\G 2vy97BsFp %T]?8v LkB"˦;`z'! j-.'| &  (LH8Xc;W RY,b;vG J E );/`( m% "D I tqR\Uo!&56 :N 5T +>k M3: fvN&1:W FJvH/`?0; <` ~8vCBc Y/?! @Y*/J-JX*O@ !K2# ]$ v 5U    `| |{W%HY-&1222;./'=)U6 +mEY1b}3~~Ie @`T 4P* 2c13foĸ+;{; "P'Y?{^ 7(bu{)T|ư9g {'/[/jMWjX) GR G ?G<P: 4$')_~ ' Qj->?kIIA6Z4&0G.wM`  S|P1@("Hf%!D|$)6f "5zy w~ *$x8[{ G ^"'5"2'7'@3C"'}=(b M  hX,6-.38Y " `,t-'T)w v: <':J%mc O R\ e <y-|U\?,.6 Cq:٤BqIw 3nXX =a.%1 :YdoM*9>:n1rJ(%%fy&|' & #! 8 1\b>.K (#< 9KvZ`:-^VpM3G A 9".&!7!Z iZG-?l7, 83AgG&![@% 2Y Dpt)1| i_[[+f{R;M- ^+J6i7) - t {$; goz6b1 G  g+s/(v 1n2& (  k(KO_M(];~pW|+]3J1 U))ymt<* *{en4  | FRB@hKMTopu5:E} ~7y Nsh*$x{6Rtz'(2F?3y, $"X !#  E=H j6! {IV9Y,TJ;@7R/!9&O#-"  9*7d N' 8JJC-AM5($CW0^L<^f2'odP'? 55 =9,O T &Fm8R#T 0992 2($se-, "-r"wi>/{CM& 7BD>z1 "dJ ( %lI a9 :fGiŴ]pg- DIt'5p3@~j<1eilg "*!Z#L py;,`-Ts]{ 55H^RRJ<G0n'VS 4 hpqsj !?4/.RF/C+h8$'z  L D=S2rY, 4*m 3B -F2-ab`RV}|};[J j-bSd8Nd{tTPg= p(|,(u/!krm!!l  J>0 b'> + 5d#]7!/y#b'D-R l : $~(EH"9 Fo*659y//\i & ;oq=9O0hyvJBgY i[2*vWjwc0Z?1wϳ8ܳTmL4 Gd[I pVMkd@~&s$7AA%:'30/+C/`-) ( E /w3sJ){ AdUeLgkeXI;v0 &vzoC $e-In p %H4Z?1AAd7'C}HA u '4<TQS7 (W,%'t  g?0H )%32+c l <Qw ~.\JW'f 45j9]1 !U %x.&"??d}!h"n(G'0$v]  5 [(CLm/uHI,NUW V{F"/Io[xD'3? - < AY?8/##*&& "U]r:I b! SV2 z+h [AQ[@e[RD|3:)'JWr-wo U+ 2e 0 '   hHYp "Uc@#-..)  Q | tp io<.]wY6~yF|Q/> E=oB}7i (m3TPadC6Z6UBsWv7PC I0!>8EA B:5;"S |5D?E<sB42+o]q7{ ) ? IWtN-i7N  (? D  Z 8d.`J<@ Jq F&dN24.sm#x%W &X~E5=Vh`+?,<4GnJ9Ck4~#X#G F ti"Z1{y'~{-C+8"K IV/5@2Z-[l6> :/8\ 9 \1W'&;z I ~ MK4LOt ">7HS$S%H"R8h(|'Gs@O ?% E >W64(6#?(3B^*9(7(#`q1 i iO otjd@w9 :iJv4_O@$KMT.v  5kqYKXĸqZF)V t$6-<8u-2!"  7d %-P\+<JIQoOvDN 60))_"X$Z P q  +Fr"4` 1+'7b924#)O) E ) dE[ln=( 6:%4mc+f!u{nS 5Wz} lw|l}-"P0@D<.Jll= n $Sai).;I* 7 @s%L+S_=\= gn%Ed>PIl}Jn{c~pBǮr;p 'w a4jhgx7]TCC y,F?$H.F>^1x%pvzRH dkxd V Z / C ( : H RU/NC6{]+<&$ B$"8 JD gn/# 175-U "  Cn amfwH ioyLj 6C z& {//wz)=t W'Gn.%4QAb@) r$ 5 >n;/ ; {T xLzS|O%M (E * g$ Eh0C,DjjdRjpbiv2H  0  jTn2!!N5;UٰWNn  "  c4~(O3T_o @ 22> A P;a.x +W; :: 1 W ]q u>`m!_ f1 U= E, `G RAE6S.* $I " !b$5 d  7!gc$_0/4g/]%xC > ?kn )u/7 J .!6po4j*W ?} ^ ;u r}0]" i%7CXE<60,bY 1)lZ9<qOe-2Vl*  *23T,mQ =Nh0/3+]g R%j7[  '1<@$}k%4*dy> tL t:vL%~XU) un}g J )%>+(y!>5j(<W?bu(f* &('3;:2z("=G:R ?#3E R /9:- 3>)0 w U   hP_+1%6ABMB4 9 +< )@g  D" Zb)kyz qm# 5rB;H C3 [6<'KCI[M N  Af :]+z3#2&C*n'i&*#4 $DL C}/f'Qf.o y\O tVQoZhf6ʤ4Hg_~[ }MnE(^Hq}6 :=,C!4 c)8+ %m]z <)tS kR''7CHxF@c93g1.$++$&^(e8Vq? ,j"Q4MGAEA8e5-)"fMd LU; &uyziP (4f 28 X2 &[ = BZvF{ s MiO^! &b./A(vs 4iw $5+v:Y r "F {c }pj 90hWio-Fs<{AQ<5^  / O*`s]'͸Jj, J<30I_J)F:X#-/sY66/G&0!$&{%+#FM"-._E N }%;6 aC LNJv Ca ;/ 7 48F/@'!~ ! u  &[5~?*@y9, g# :{  8B-X7@ `03 k' / - #^ H C|m b"L`l ''OkB%- & b @ U{(z vSg")-h'HUJU;t>Zx40P #  w>%~QZj7GLI0^ zca*   vT -fq4L) 9(r]p8 N@ qd%%*$(j t~J' ?  6 A 0 0 D)#13AJ H @AB70O ,I &   u T  kCK\h*+F8>8+D@ >86iNDdh!?,%/)516OYKA_ TUQw.JF #"4f@cB;<3*d9$ xCV { G? h\+,U&$3\5=<&3%` OaC50DMG}Q7:+2#H1E(j?  -- $ <Q2& 24/'=+U=' &? 9?) (*5%8"u28'@w~ 5 yaw.d!u 'Tk rSZ % S ?1M%"V3s} 1 <"}-iea"q0gSuD[<+x 9Q#%i$!au02r y">&AcK'e9GNN3Fu;1G+as%S* ] N= $C3=R@@;:0=#I W  u(# !%g&/&~+)% eR 5 @ xOYYPa .Efs 'a)$S Wg gbKJN '} W&.A*,"v + 4Tk3y9 ?>WXYE 03h7p@abk(| YBHenT7lq9 OL7=T"%F1 J75T/yL)'C'$ EC= $k/XE Im)9F*P FS\L&@(m4+3o%%!B~, <  a.16jK&a2I(:9/+\!# a p  _ X ozcoX v'KVmx5 (AmH  dqclr}|+ 9!t)b'45 g 0AxsC)8L,u@`[)t,6%Tq ['w$Y<{.,aB4,MxmLW+iVX$0jZr"B?S[6C5  "@n H`n#~E E&v[ SW*C,5q6s2M+$= Z*%GQ S_}lt ./-><{IOWvJo =<Y/{#_ G =a(1[ QW%'/Ve3.`%C ~ ~.+^4Gx zw2#$"{  P ;^gzp:zg#d&o01+t q9F ' 3 N r\8H# / 622&&   ub_ \; \ZGQ/g G K  # OUm \&VD FYhN] "< O 7Np!^o!SV  o* .F ) f? $C qk ` E $();4 Z;":r2D&E!D  g|m{[$+'-'v/ Z 1 -R~'uU_%)&g*' * /  e k)?,;p)[6<:0"K, Z/~ L+)* [!|)-W33+! TuK] ?4 bKlS  LJ: [ !^9K!U Aʾq f4>Ie 4 <  - 78i#_%}d5M?1%P.-%$O ha  q_ D0VV)4~<@=E<m2&ih[!ugmNFA6!-)y/.2'|+NX, #UYF  +(,}*$. o $  f^* /"9 + *G ! ~ | =&H`~ _az:{EV-  Q ) A b`  "| LVUT_ukp |Z .E`%W ]@^0|fb>4 3&HX 8\IB{;.ov*`K5PW!0 ); = G7, `!:Am?AR[ F@ P*+6-?|DC1 ;a1V(b"7pSBh [J 7m l  ! *W P,U'txLdR 7 PGVDSdP24S$")G $d*A|(GC; Srg Q%\(!<80H2~p of2/E) QT~7Vu(tT6(6dTj$W\ X47 _{i;wRrhE,:C  U CY~b_p+a6$4J 5`&0[41 '"d    % }# !; 4p KEe$8. !6t9/70b' U - ' MM  4l Z 8o9/p !'Ye'"?eN oNFhJALN(M+u v%l0+l).!@ tFzQ?E Xq Og\v 0 x N&4x& / n t |Ji 3W}E&L    #;   %XW+8DRn Hv y aMzb,kY !h(*(  2 BnEVBgyO'pvc &g-/+_#8dy }D} \`\"'%6,4B/w |gwHa=F!4-l*3(F0]&8!.pZRE?~.W=&Yd%> - n0*<W  S f4Q)Gbh\ - D %2V t 6#'"!% H7d !dm/ NjVKz)) z   Z ;  V "p2;F1[uUh aH- : q U ev cf^Ml-40 $#i(m>%e  d ~;xy7 a,36S<Oo;4R,%#S!o V|U] ;X6;`Md+35H/g&1r c! *toq8( ( 0W.$28 Q|F A9 V xO - > u+y ?P T )6{ 5 MjZ1`YVpQcNgJB% X  A :#y%lOtp& }kMG.Xh)NM 6 Lo8Cv!4_OSN8jy }=#3#kgj:k&C /[+N"a,_22C y,fZ$Q=S i ghJ { B +=7m>@R<n4 +$d"!l}* sjyB{ HAl) -Z)! * EQ@?a+CO: ~ 9 " $c*:qX234LaD 6Ic SK8 & 1 GYCvb [mW1e ZmXETJNIY-}1Gx]^[QW;}v!4Ji\hU&m)&=l F   ! Pl o A|Ha Z:5 <v&*8)S$_' a W>-SC ,6?;;6 .%uX! 4 lnL[ Ltn  &C-?.'KQ B Nk8%?=R5" !Z %hR*J0dZf-( IL  A ;&0 O 7+   A 'gPOGtP`N`," g& m"  o 5K z %  d iO" 0u3mvR[*v UxT3.<&6cO3# u }   t 4 V A=!,z7.6h9: 9  $A!GCQ j- Nu (IMN6svUPN z )h1&58 \1D 7)g @: 19N} P}uz(,j'.X* uI ?)Le>  2*"I$:[\` )H_ E!TzF  (!-(Z'e!I0 KBL% 1 E S>x#W(*(Y!Yz >61a *(] V@9! t t%hN& 'Lugy o.' ciNX]x^au&'_#k<CY 6nwBvBbsT f)[5* < <K7K./=$>Bk( ?!.jHx]?SH":,42A[0(W^ +]B C[# <G]n5c P |Yf; h/D[; - [  .Pj2L * GcY}Bf r Z. VU ' K l G A  E L{ PS  A ^ h=-m3t[d QGpB&vb%09qV0P 9!Q 1+aao?}^i/x~%x/ 5&5Y0td)X$7 z# #N /*jyp w o iP)>6g?Bq?Ge6r* 7#2&a T 2= U"Y(3*$vgXh[||@\Uz+B a(| u @t "XXR7}%-Ir73;XF Nj@  3po |xO&$:+@533 #Fm w:,r 6x=*|2UAWh| us4zd; P3 1cd4z$C a 5q(=Fwv '\1rI5l15*#D 0awgp, \ ?X| wb).9@ ?6. *9k  e ~DpL, $ ) p(h U# ^|Lj yfo1g,#Dh rdA;J gv-1\ ycc!9#0 8 P{g| >F:,oQ>j c2#E%< v>N P) ( H[F5; :oRb >B.k$S;|I/D` & [   I.4c<Hc :7$f?{ | +$2/6(.<{eB ) sHAV1 yn3 )n S24 6/e d%Ai EYKMIpL4Q%%$( !#gj BW\Lj-7B!S1~Q /UfT U3\+pfg? t8%.7/x*!  Pg B  X _' f1H< xi"P&:# Zr E | [~d1$3 g+w>E{  [\ BE%=Hu3h@_Q,}?DJe=4y;@>u!GE#]D~%3%/ 2Z /- n&E  mI gh2^;M9X  +5:= 9 y1%VYr7 k \pYR Wj Z $w4 W LLl.MiZ% S " GhTAS0 VT[DU. 47lqd S4-Z_KX!ge7 r))4+%6Z s=5<K3*' ) $ LL W;I(]_ W( 2'"9;6+k< Y> 6; V 06O0`q}z1R o aZ$`!Y' .DVbZm4*  | Z $+ \4{:znh9HVAGNSE #x e" !, Yr^ F*oVk.w.|(d`VKi }St4ng/wY wf6> 7ULIs4U;@ u%Esu]( f  B7 w -zMYm@K#} 1;z<x4o( ;q  R".  )}<2@O7 5c-W"=[R '  G1WyH5v1f-oY "#M 9 &7b7u\)6>9|=`D*~:vh9w_a] 5vRl D I/:"C=: s@">m{#m]jT:j 5 !jj` _;e/LlP(Ivn ,h ?10[ #"~jn/47DjbFkM7 D>vthFrh]U?v#f , 0*,|# Ar Qm m { m?6 0L:U u$*g H,n (i | _ " 6[<q@D$^$@5 ~|Vq9F`<}n0,G[!E!K4= U};1@8}a  L!g&% m E S_<1  L -S%_vv1+ {@ % x H `~%L\+ @ )jb3 T&]OHoBX6}Ikpm#:t8M"u$PbeG9rEV4dgS0 $*,&X2   ) 5  1 W I,',-H) 6Ci YYz(qNp$"k '$1d!w  r ~m T!*h Nv $(RCm(% Pc<pa8M v l=B[ e[ a< @ e1 j q#0y   W  o;H?H5f (yv 0pI ,2%0?=X$"q`N?j*/Nh7 _\_ ~|s>+'.X3 1T*!E   bO( /^=[B m%Q-}1/ ( 3W 3 DT/Eg"bZ' Hp#l$  L (SR#" -Kn `B(S'{02n5p#EwcV"d%mD$@hZB&7ov iJl94[@F1.'M]' d&'>{mcvz 8i) V5 [ ; %n[e") , (Q("2G`68`M 2nqR9 T$A,O.Z*XD#!a|| ylb:Vg K " %B " RlvU&&TB3s#d9a $`w# vt%Q6>3&6EAo=v0 f[ !  }`MZS \Wr- N IBFiYm<&RN8cNN9> ~BJ/) 'l UJ2/ b)B%e JrL w __s2 p j *&' "  |bo  !;ge6^#) q* % &Rs ,L 'PE3A4\#$x 4G-`ZrGiuUh\m ''?s*:r"cCc O o 8 > T v G p = 1:`r6r` Q)p > v >i E<0 4W t * " <~)0z8i~2'B6PRy\aEZZiSR Q#JT[^@GVSW3cpxS$%*);/"|9gQ1~~ $P /Fh$3g #,P1.5&0 db{ dY ?eDGOqrM$(.$<>*vB3zb r/H,?g 4X+++lG='"~J$- r y}( % FAc7b:M+ !R  f .WD^3/]q(JN z+'S46'&dW oNkML !G_z ! 9Ycjms9es*13*/t)a(#e n F F+   T;w_ t# }-33t- $Ez{ oC 5Fu)|cNGd< m M U5 X!@N4|lh']t 5KQ m<f"AH 7A,8EQWCT32|2 C S `L 1  r)RO&6V#9 L r . W H5z[ TH:zb5nH7w+~v%"a8dO  W(K=4(D,2ruU  S`WH  _z   v  " )$6,K7Ii" + 0U1V-u&/?!`j(/ ~ Z3 c G)U/2 0(b<b UA`! .epY\P`!ucMT"Pa}(m$[('| 6 trB5aM;.^w. Lkm7lb 96&5 t_<p  "[ ^ue%{=l,D7v6#2LR@ t FJ  4HGapG,Q N E^F6UR JbR0 1  f  j   cO&#%2Gm #z ,. 0? C- & @   1  { e j AE=VGF!S&M,,>$dN_sjp}*c :v4*9P63kcE6LoD[ X&= i) x'%p/3|OBZKjyd  g[%#R"PF ,x l f, cWy08$d \24 A&T J|jhd 8 +e!` X *@ gA] E  v 6 c 2^% - ;?,7M%ovS(% _|"y7'r6#(/./*F#k^?V<JLOm H Jk#]5+n~r$,6/*w!Q di{}OT)6 m6Ap 3?;_Us>m' T\ zjCC7j Y-R>M&PFWUQy,4ve  i !(=N#&Kf2 6nQ ?tt# iFx/nO!R9~2N+$.CbY`v7y$> $ N y)ZtW^J d++3Q62/~+"c jM  7; m ) 8 _$" A* -Z,K&+8( oW~?  W$4 ~u( Q q T!] 8o`A{/w d/ksS_DW|{/^wyU83:nj HccI&zts~< fnN&[q`x| nG. _ hNS5$~\h-6~eHRQSW/Vl4KU c b 21oQo7~$;)^ LD#+z1V P1 d+} # g  M,  & e u\  & p& *T c,[ ({ ~ HG B1 D\}{9T&Ig!`_'5 [bHi) ;:v mGu[mx,!aoTq?O.^mN x!] FpX HM/s m$ $ c TT7 F*{Ah= Ir7;i i ]i  H$!3&<2ru v } i<]Hi -2Xyo~lPc:\cE=%+,_'2 h|L  , H w 4  g pc#{4= V+$"#Jer.X t(%MY+$>| vm< T)oJs=?px]M. C WU~O-w>c ,85 g   xC1ed]+;8(yf' ? V(^y & @. A ( ZI  `C ,   bboqaoP!1VMG J-gn"ZV ]Eed@Olt7~|L cY!) ,0*8%1h N|i=Mp.%K2'1%fd> ! 2  _ A_p\17O\U!r *"k^Er;~:@+$~+"/S fEVs k]WS@P+don2{Dp 2 U E  I} ]- /|5s;*t^Gyp9 SIb h rj zr M8xg\Ha S% |. i(AyXMc18F4*OSrN 4! &`7=dJOLc< -`'o,`2.*n$86rq?+Q   nMegnS=x H%e x& "  A % 5  Fx XN$ra Sc@       iOv,C$ BbwD$ -M q_t\y!i9CW5oj ^v {.YHC @k&b1/iq   I a N@l%v%dfCg7R  Q@ ~i\y)aEyx4,g)gj; ?d#^Gq %' NmS ${k('$2+ $*$v  G+. _z. 0 0   " & $2 Y 4] P@@fH .< ]]x } g/S Rs P a3nJ> `+S_J g=]vq LR4@63H|/  W"8. lFcd`5 ==XBl;B_^`U^ rV" z YS;UG{yT /)kFm/##_ 1/a B]t o16j381SFV5Oh _>S0ec" rS"Y?yO.o r zFUD4 ]$b o#6!EKV^ W k  PelyG+O     uQG 91VW} P n'N['I^ =  l1/ p5)$&tx"@lYGQp\KEaaW _.mYI`J}c#H%A-"J 6Ix G!x}h "zLicD R1bNA1%OAA [M 7 Y  &swk$B    X NU=4d $  S W SZ 875[kw0U !; q   #!<9 _,n_F;l. UoO^PD px r9 K   i`H~,j Uq4'%)b'~}">ZuJM,/>z:: &:LptDz  # ('5 $%  5 J V_ a @3sz " ]&  s z q~mi -1kRQgy;Z}  uI6Xsm.B!(+{)(/7FJt |9k7g{\~))u; d(5*_?hXQ$TVF@ 8  JE)AJa-- {R /S|n>|   =w +gB }-wXYHM2G0= b  B   **vT^AyT1qjoR$-2 9   ?>ub w+ 1Z 9tnCkx, y  | $%u!+WL60) r ,7xBl{ b j f! |$"Kr 3;uvKE(yW84w s2G= b^SDe{ZpT\ZEw1VJBT %oy: ) !j[.?g -x&LnuV3 x l';(vacC= u/C R $ F 0 {g(s@ >= +"w HqL!zworkrave-1.10.50/frontend/common/share/sounds/bells/micro-break-started.wav0000644000175100001710000226723014221624107025641 0ustar00gdm00000000000000RIFFn WAVEfmt D bextZREAPER2020-09-0820-17-35junkJdatak KK8811ootataXXMM44**))$($(^^0 0 | | __qq11||UUuu y y۪۪BqBq1W1W--\ \ oo66ϮϮTTkk(q(q66<< y ypp99||rrE[E[=j=jℸℸjjAA5d5d䥖ᥖ++ߔuߔu--vv 6J6JwwHHNN  MM yy(3(3E E +o+o}} m m !!NN~t~tQQbb?? KK33u u TaTa  77   S S  EEww#n#ncece7/7/nn""ttRRQXQXx x ##;#;#G^*G^*E+E+))O?'O?'L%L%$$[1$[1$#$#$$$ PPԓԓԮ Ԯ 4 4 cc}}11""aaƱƱvv00xNxN89zz||ߺݺ=Z=Zy y ZZ22ן ٟ AA ϝ$˝$ϕϕɝɝɶ$̶$##e'e'\m\maa;; } }\\rrnn  EWEWWNWNyKyK??((aaI'I' Q Q##zz^^BB**OO\\WW!!H|H|//tt*( *( 33MOMOS4S4AA/]/]lL#lL#jj%jj%g#g#\\KKLLV#V#XX=$=$Y&Y&`%`%'"'"' '   #!#!##y'y'((:<':<''%'%<%<%&&J*J*//66c9c9E8E85533B2B201012222 / /((`!`!ddpp  nng g 22""yyLL$$%%99鎗D/D/pp}} PDPDVZVZQQ̸̸xxEEঔঔ|M|MooҙЙNNџ~ԟ~ߞߞ--|g|gάeͬe͔͔vvWW00ffzz|N|NttOO00OO'\'\IIE>E>MMIyIyjj!!{{    __??FF: : ~~@ @ |N|Nee[[||nwnwccfsfs1B1B--||88K!K!% % ^^J J ``,9!,9!#+&#+&6$-6$-@ 2@ 2j1j1..,,9+9+**G*G*X+X+R)R)##dIdI??CCtt]X ]X qq00VuVu쾂澂JXKX5:5:ܛ ݛ zz \\ᣖޣށ܁aa{{# # 88ފۊۘ֘TvTv[[ͅ΅qq ; ;yy__u8u8̀̀͜ZϜZχtӇtӘ֘::|u|uG8G8JJ11kk4Z4Z'l'lPP**o^o^__ V V[[(A(A&H&HxIxIPPqqGGR$R$qqBrBrMM  . . kk[[FFOO!"!"_"_"WW//eeKQKQww##6$6$m!m!܈܈dd]]'"'"%%%%uw#uw#^"^"""pI%pI%̅)̅)*0*0Y6Y6=6=6s4s4"2"200//5/5///5/5/N*N*""`!`!؅؅88))  P+ P+  < <tt o oRRwwLLᔖߔ6u6u  ^^DD((߰ްݬެޟLL  s sԆІZZşşEEEEҧէb>b>փӃ22n.n.DDY"Y"ͽͽҺֺ22׫-֫-J>J>ծ֮֐ڐڒkk55/>/>00OONN2@2@}}33xjxj##2244OOYYCCNNppnn**\\}}zz00%%  bbII*2*299!!> > ii@@SS8!8!"">N>NR R ##e*e*11 T3 T3O1O1Ƚ.Ƚ.N-N-!,!,T^+T^+++r+r+N(N(,!,!0 0 ``XXkk&&0 0 %}%}ddQQL4L4 cGcG館ꨬ 3 3FPFPݰܰBBZZ f f!ޫ!WWcece} } ޗݗݏُp p ԿϿoo͟͟@@ؙؙEEՄ҄vv.}.}RR̦ͦͫЫl l զ4צ4%%֚Ԛhh$$KK . .11**\\nnXX  dKdKkkKK##\\ h h99//NN--LL33oo``+(+(WWii  VVKK  m!m!UU  FF~~ݴ"ݴ"!!OO33(#(#$$f#f#!! I^"I^"z%z%**G+2G+2{76{7644H2H2~0~0o/o/+k.+k...*/*/,,Q,&Q,&$$  xxMMooMM'}'}MM [[1A1A*d*dˤˤ**++_ _ %߰%[[sosoDDw1w1x߫xmm޹V޹V,j,jIRIRGGתҪrrTdTdв?Բ?))66""IIՃF؃F ZZ֐K֐Kɟɟggpp**@@))**""#z#zBBqq99ss33  (#(# YDYD&a&aw( w( ggúú55||**nLnLXX  oRoR~~ Y Y 44QQff  W"W"u!u!PSPS;\;\HvHv""&&--x3x3Y3Y3J0J0..%r-%r-'I,'I,),),.,.,f+f+E%E% * *KKÓÓݑݑHH;;++qq kk.G.Gހ܀܀r݀r~n~n%%ʮʮ,,݂܂))GGee\\A1A1ײѲHHͥ.Υ.LLSSѢj΢jΑ!͑!&&ffέҭ K Kee՜Ԝgg88  VVDD:|:|yyͤͤMVMVrrbb''rQrQddNNoolwlwFvFv $ $x-x-'}'}  + + ooEEVVvv88mmߋߋ+ + ii%%MM||o o &g &g ""i^i^  kB kB Ah#Ah###2!2!6 6 z"z"&&g -g -u3u3G5G52200Q/Q/'.'.--3.3.=-=-mL)mL)!!KKoo:J:JO O ;;++//@@bbWWYY,,LLWW[[++揂⏂)) .#.#OO%r%r,,ھԾMM||ϑϑϪҪңգՃփ77HHЉ>ω>&&ii4#4#_9_9ee22ך՚oo۰ఊFFYY MMee::]]{{' ' .y.yA A   JJVVJJ,Z,Z#B#BEEmmWWs[s[ttrtrtddiippFy Fy 33vvY@Y@GG!!i i <<(P(PYY`%`%@"@"~h#~h#]!]!//T'T'e e ]$ ]$8P*8P*1144r2r2G0G0..E-E-,,A,A,&-&-))'"'"ssc1c1xx;;==qqO O đđ5050KK L L77쮥宥ee==JJ&&߄ㄖZZ旴嗴CCAߣAߟݟ##22""ژԘ : :44͑ϑϐ|Ӑ|ssYYQQq,q, U Uͅͅ88BB֧ԧ;;JWJW99IIbb@@ddaawwZZ77ff77@@@@yy\\llymym;;__1G1G_/ _/ ll˾˾pp˝˝ffj%j%??ll/J/J6688ww!!^ ^ ~~E!E!rY#rY# " "ee:A :A -#-#?h(?h(//٬4٬4]3]3!1!1P/P/3.3.--G -G -1-1-Ё+Ё+;%;%ZZ))  7733QQMVMVBB9{9{""WAWAZZ'ߜ'YYޓߓ߉ssvv11ttCCߨ0ި0݋/ߋ/߶ RRˋˋII,,??ΗЗKKZZؓؓJJ//mm΋Ћ++66q q $ $nnՐؐSS܊㊬ //88\\~~ssq'q'@@ll88))vxvxyy]]NNE E scsc^^eeffCC^^HH ..LLm~m~g9g9cc1 1   <<wwF#F#CC!!""hh  dd   a#a#w)#w)# X8X8 D"D"&&..Q4Q4_4_4&2&2//|.|.v-v--- - -,,L'L'  33UUSS))J J ==[[JJwnwnﲠbpbpmm$$WEWE88湈繈ffMM88ނ^݂^#:#:FFУУAA**ZOZO~~44//҅υ u u<G>G))<<vv//ff;;kk==DDMM77}}pvpv-O-O..UU66DD::0y!0y!ǂǂ>}>}NN44  O"O"""9} 9} CCGGW W ]$]$.+.+t2t244e[2e[2T/T/..jW-jW-,,K,K,/,/,͞(͞(1!1!''rErEJJccVV$ $ FF}}||33}}ɈɈJJ\\݇11xLxL߄||rrߣޣ3|3|(q(qԲSвS||ΩΩζжtt V VZZ}2}2ϋz΋z1G1GCnCnAAxx H HzdzdEEBB7#7#{{\\''XKXK^^ YYKK##llHH : :cc\\XX~~  JZJZVVŦŦnn[v [v YY<<77ff<1<1""8!8!rrxxooQ"Q"9#9#A!A!11~ ~ $$))/d1/d10?50?5h3h311//^.^.H-H-_-_---e*e*##}c}c\\ҟҟzDzD  SSPP**bb~~痁ᗁ޺޺ޜݜ'e'e߃+-+---īīN'N'##7d7d??ܫ/֫/֣JѣJll; ; gg[i[i՝ѝmmΠΠ==ddհ#ذ#صY׵Y׊jՊjMM!9!9 XX # #--SS ԊԊ11C}C}##܀܀88~~11ͪͪQQK7K7nnmm}H}HiiFFq q ,,  wwWWffPPii[[IIApApx x >!>!HHEEGhGh R R G#G#!!EEJJjj1""1""''|.|.2424_3_3L1L1(/(/2 .2 .Y,Y,,, - -M+M+I%I%||UUpp  WWʹʹff!!hh77WW޸tݸt݀&ހ&""^^WW"߬"uuNN߷>ݷ>מўэ"ύ"99΢Ϣ((qEqEַշyy<<>d>dΝ#Н#mmԉ׉qqۨۨ=h=hgg<<TT5^5^^^WW++rrVyVy<<llHHDuDuccBBf4f4nnCCϾϾCCY_Y_1G1G//n n W W d7d7@@ClClTT]]aak k ""ee@, @, ####Y Y LLٕ!ٕ!\%\%,,V3V344N2N2t/t/{.{.--,,V-V-?,?,''88pHpH66ss~ ~ TTZZyN yN k k ZZ;;bgbgaabDbD11H>H>&&DD??]]bb))__ޑ%ޑ%ff%%<<٤Ӥ;;Σ/ϣ/ ֥ ץ מdԞdpJpJјϘf(f(ϞОНӝ;t;t''%%Q Q %e%e^ ^ kkUU@@aacccc]]rr))HHFFFF{{nn[[99GGܚܚ??IIXX;;,,33)L)L^^OLOL22^7^7rrg!g!T T ffpp88a!a!"" YYSS) ) ##O)O)j1j1N04N04`R2`R2//T.T..-.-/,/,9a,9a,I,I,(( ]! ]!G7G722LL..hh  kkUU||UUupupޭݭffTTiiKKFFcLcLޤiޤiەەhhMMNN;;;;zz!!Պh׊hמx՞xբ0Ң0sGsGEEققҊ֊nn׹չ``YYI|I|>>(U(U'y'yFF..[-[-rr&&ZZIIJJ Q Q $ $TT22ggGGT`T`^^  vv``""@@=-=-e|e|OEOE 7 7WkWk  ## wwcc  T T "" ee##""o'o'///3/3"2"2//>.>.P,-P,-r,r,++-,-,))+<#+<#  >B>Bmm<<88@@AAVV2$2$33xx]{]{**''XXSNSN88YYYHYH߯ޯ$$෸෸ݘ÷÷XgXg<<ѷԷԶض33>>٠٠|h|hhqhqҌb֌bFXFX ֬C٬C qq// ((gg wwBByyGG!!PP!!``rr1_1_ R R~~OOjjq5q5ووrr8j 8j EJEJccll}}''FFѥѥOOJJtt??A A >>``eePP""<^!<^!ަަ__77  .%.%X,X,0~20~222j#0j#0;.;.s-s-k+k+H+H+l+l+I*I*$$DD--kk{0{077++++ rr`D`DЏЏ X2X2~~??'G'GППsso:o:66''ߊ߿ߒْقԂhhZZЍЌ = =7|7|GGtt%%Նن'}'}*w*w}}}}NNEEUU}}A6A6DDppkkżż=K=K  DD++QQ++WW--//~L~L!!mm\\UU,','ee ;;jj??sVsVitit11!!!!FU!FU!7788i"i"و)و)00h2h2@0@0T-T-,,++l*l*O*O*i*i*&&P+P+ff--s s >>\\BvBvFFQ9Q9SS4L4LjߞjCCkkTT##ggccXX{{ۃՃբ?Ң?&&дTӴTךٚGGtt++iidd-Z-ZOOe%e%׌J،J==۴F]F]KK''ff Z Z AAy7y7]]ddxxEpEp<<,^,^QZQZ9P9P``mm__YY88i\i\d|d|qqvv6p6pӛӛ!7!7##ѢѢ~~cc  R R yLyLppԼԼ66yy1-1-O O |q!|q!jj3 3 FFKKl!l!:+':+'..2200d.d.,,W+W+~*~*~*~*[*[*$W'$W'U U đđQQ  **VV  33--uu  OOOO77uu&&ࣅߣuu**yy||pp d d``h?h? t t[[rrssؖؖ}:}: Һֺ{{٫<ث>ZZ==ǀǀF<F<B B ;;IIߢߢ8u8u~~ ]@]@ll$$yTyTtt*e*eŹŹ  KeKe[[44~~rr!M!Mm9m9iiYYUUv v h'h'66@@xx..''< < ߞߞ    s$s$7+7+1100 . .O,O,M+M+!*!*Ϳ)Ϳ)**''""::vIvIbb__00  KcKcqqffgsgsqq඿߶߀WW 88]]pp%^%^sߏs55HUHU__ѥҥU U ճճ,f,fvveett2+2+Ԛךڗڗ[[HH{@{@]]O]O]ϏϏM}M}mmkk&&55tt77  ]]VVww-w-w::{{ppggE E mmeekkaaCC%%``FF,,ZZjj#k #k   \\::UbUb."."yj)yj)u/u/ֺ0ֺ0c.c.LP,LP,kE+kE+.*.*f)f)/)/)f(f(##uuhh8N8NC^C^2M2MYYqqI I CCj{j{UUxpxpPP## [ [ेेqq{{KK&&\\00ǁǁ))۶mmM^M^ӹGҹGҌҌ)u)uHHww}}d?d?MMjjPPIIףڣތތ1f1fٝiݝi]]*q*q ?[?[\\LLMMaa yyc?c?cc9O9ODD}}gg''((--PPddvvvv**||| | QQpp]]&&ffG8G8ii{{yy22,J,J &&?-?-Z0Z0ԇ.ԇ.n,,n,,**))(("("(7(7(y$y$ssff, , T?T? [[__ZZ&B&BLL=y=ycc{{ZZpp::岔㲔[[OjOjp}p}DD ݒ؏QԏQ<<ͼͼҩԩ==٧R֧R֠ԠԌ֌]]iȉ̏yyLLDDJJi i ggoo̬̬oo;;00%%IImm((]=]=**MMEE P@P@ɆɆ  0 0 EcEcwwkk\\zz¹¹pLpLssҒҒ..ػػ>>~~223{3{TToowwFFNN_$_$ + +//E.E.oI,oI,**))w(w(|y(|y( ( (%%XXEE%%\M\M? ? ACAC##));;,,44xx22^^66qqPPPP翍俍''!!DD߰ڰ!!X+X+yyԁB؁Bssll߱߱""ԟY֟Y֛ٛ{{&&ԏԏپ ܾ ܸ,,ttPP00-s-sghgh%%b&b&55\\44cOcO``]]GG  2^2^00̔̔**    9922qq''}}##RRIIa6a6aaUUwwDDGG""ވވ/Z/Zmmss((00AhAh22("("))....n,n,6*6*))((''&(&(߂&߂&L!L!wwHH"">> pp ؞؞?r?rT)T)ˠˠ>>xxkkNNPP""JJ_ _ ꧉觉{{kkbb%]%]۶((ififŕŕjLjLBuBuUU00jjl l [U[UttJoJoННzzff;;[:[:ooDD~~$$5511QQ5$5$MM22>s>sAA > >hNhN%%TT X X8Q8Q22ZZppqq/l/liiii22#L#LwSwS  ;;TTbbggqq33''115Q5Qnn- - &&sB-vB- ..,,**{){) f(7f('c' ''k&&r"vs"ҕ)z<Y RZ YZrz u QR+ssB>B1VTc`XT:LF]C!(5R{ n風Ńp>GJv R؈mՃZ3B/ra3֧5L|>m`hW[ڹhi>b֕թDA>THܨJܑL`Q/szګ**ۆF_XG7MLiD0u4_C&qS7QI5PJ,_ K|VZ9f*sՎ~s))Q4Zj2|9^#b^{X"t  ٮs&F-   xepVc13Cf@#-҂l:vZp2 ߏc.z2p<Mn-n&~([iT:V]I$r#v++|.".b-,l*W*Ew))T{(!(Oo''/P'&'c&#n#[;grIh| %  JiO4 v P"y-֥OiW{TB#i2;X#mfj8C?%i烰T A|pg=Y/?B:0^I]" bڳl֦֬԰Ԁ&Ԥeq~֊Sp=ܿ sۛۯ7HכQ"fF֜.$q%9cPܠ.U܎DhڗRrɺjh'rU ֝'$]{L.9.>bRva^tޥO4%ٔSL Y1OK0O: Vݕbo~E'H^OZ* ( dF˟{OgI,yU{`Q =ŕVCP >:x{C)"2A b'c"@@'#lʙch#!/f!(dv(Ϝ-(-b-,*-*S)(8('-'&& 4&&U?&$$X<$X5+ 2 o 1N D yyuQ+?P ~hHmg,5`b?>6Z>C0禊f6[}GT'謎= 坦[JS.qn $jՐ՜շ RD`+B3K֍ r۪ޱ3-whlw(݂WPLdVI; 3VuY]DͲf$-E wYi@la3Oy!b'+7oGNnܶ-sjm#RSp"sbhզڳ4ҥC=u<U-BtLDܧ ^uldžIq32Y%@E{|-,k75de,Y"C:|^?ofޘŽ|g\?>g~#_e$*5+3,>-+&w+b(:T)'K(c&I'%S&f%9F&k\%r%v!!*M-DZ/@PrZo"  1 ȵRx ^ ˯Dž\ :q_?1?,4-CP4< ^tAKG5aP.Q㋆ԛ .8aMעc!Zող"2kgh_jZaްݐdUw"saÞkࣶ<U-<|8+xX2`Y7O;=eu[AJ;^I a  ƞ "[7$$ЁCU~\6 Bʯa5Xox I|둠2oߏl14 5]Mg4MB-tb&]=6B]I)K ,`I=}uʢ&aU"Nut/E™ggqЉ")##O$7us C +#6$4"SXs{^h,~~e$f$P/%&%cq ] #WWS!$q#0#+h+2u2.3h3x/V?/*T)}%~ %"}"M$)#% d%$]q#a" l9ר[3gw=,Qr4t٘g |  WT~8h b, ]?& jSSbMN 9 9Vo{5p<_/V,+b[&ARwh828VِKO|;6t]0)ʑŇ%^RlvȼHӕ1҅REߌyF>ڤXّ؁Zڽx&܅2LkAwHQi8[H>Wbʰ8ʪs6\3׍ ͨ fgwьt7\i9Պv<+2+fY@0JײH @op2/] c P ={ă\ ? #V51m_ ;q\ G *S  B "qT |   C "W uwVfL$1%=()E$% j"@!#n%'J-.i79`=c ?r9#;3A5 Y132D4^79's>F,@AпCV=?57)$/0$,-},B..0/c1-%/j0*+ ,'(a%'(J"*./0*1jd-/..)OZ*%o&7 a0ms9Se} x 9 G: é  k$ #I,Q^TXnڞҊp6NxOʳFѸ~QAb_אeNeWCSpȮ_ˈi_7'LrˬU237?}( gRfͮ# >X ' i j? +3 ˔ x) {+ mM  y 2{k.X4'J !C"')qD-9.48./I3)*&+#$(!Ԣ"" $5'(.0k2@4D/b0f)0+'3)v:*+׻/r1G94;ACGjB$DQ`=X!?:l<~<O>rAJCWJ6LvR_TbR+WT> Kz M B E.`=t?g9ѹ;^8Yr:{X8b:W4`6rQ-b?/U$$%-JW1@)b > ` {%4-> p'zt۬Dܠպ0P Քեӽ~ٻlפҎ+5 9 "ΆöӎRCt4 a8jȰ±3nᵯ2λ(Y-/̴Z18CgNs*ET[0AWPw$.QjԌqtP Cf?K(Z,]G*Č`f֒j!)6"0ȥG$&M{ {t JUw˒<g ; 2ooBظSA! #|#D''(ä(T##;O!!o##%1&c'(E*;+Ó*p+]'( %ms&X'(,-0T2c3=N592gf4./0x2- .Ut/1m5s7/?@H oJƮLNN"IJVEF>EFGjI3NO[UWW'VžWMGO0DE)>?]:T;o9n';;Ix=J:; 0!1-!#ٓcF K _qM x \"15#z頯XWq솝7ۀ~Dnq9c-Ơб&}O;gǜzŘg}tǰ#37{澰;lĹڹ\ 813khR -׋1ZɤPcFS6ЀYGOo*f 6Ir6!CGT 7ݯ} bg~+HR ~)>6|ۯ K!m}PUebt{z@JNwVd)VNIODhY0]MHG@*}@,}lgKG"!%$z("'M*)*>*Y-ܲ, 0p/Hh/.7-,.>.&226#5P;:A`AvzC.-C AT@IA AE3D-HHJycJAUIYICOB@U:$: 44323eo3b5]5 44-q-)#.r#}qMjB@!F!q$ =c .i(N Y^ vvr x@H}07p%7"KpZП"Q ޗv҄Կe͠ζ;1Iuݺ:sPRML-V rrˆBbʣsϡoոfԒm!sؽO =ٙa ֨ojvU\F@h7'μfsQ٨ڴۆ{ }ۉֱ{J<ҺLG[Y=Ilݲݡ( "5R [R}X19K8sOxp &e( ; 6D3' D    nlD! v vnHDGqC!3;6 J3v7t_$H"8/}-Ie97<:;]?X=.A|?=A2?RrB@D6CSC B=1;7+6s5[4J21/E..a<-q,,+%$ef^ӎ68H;R2 U| *+^5z ^ j5u^l\p~R p 3 _9xDG,80"n S@wY RCC[P4<ԕ׸Z7fK r URyݚ߱sG:\䰛[zj=?fm ?l*@$}/*]׎~dhm^ӇՌ"ͫ%=Bւ6}8xwQhk[A|j`vd5}LÑlE"|]BlEBQ B%u"n" c] }T,4\):6B<;9 8541r30%304@A15p12Y/\,)Y%![Z:w##/To$/ !Q=?VCPJ C vVP@o*im&EK$Aw;36DG$O#pbP&3!,dfK% Š#cyZz]/:__ F(q@ֳm)A ta;G>wp< ,4 szx #XDzl 3 ΢ 9il8_eO`k,@WiIM.B,agD:k!nmrZ1N$0R5 ,-,y-j-W10X/.|--X;.-h/.}21 54 21ʥ'@&?JWQc$nrJ 9)] v8.`a$L@lm 9RA㸽I+\rsV9.F*d7q,ŏ_ZxHE(_Zf>4V 㦪^I ,"tyZ: !>2RgX}.<냟 v2o. t|U<+UwҘ ^v +}  !Gyyj"(\!G## nQ{'j iB S `$"]Hg'^^{-u-_xe>*4ۥfll)f?8~!A. cFJL$w;}ՂF`?\_7S!,_| 2GG>ypߢ2T,(\] l  6E$QG{5 Q WPSw()AsQ`0sP:קTԊNP{.$4j;lURL&  Z9sDLF0ێԞѽEAv&? Q ]sIbQ+-}@Au* 6%Blj> ]wR'ŏ`#SvpRk}0s WH R %b  5U=  N{ @8 Z< +K>>"Y^;4n!T %"` XQ;l > ^4,rY t(a&&V(b&F!9}Kify #"B#U,#<Ls)\ &  9 Yf / 0/h+j   Rua4 ο ( B r/g/9P?!l>h7j A)% `P \aK# NMq`Uרaj^=ɧ-I߸ܹW%j\ԑ@@նῙN#'s!5VNtb#yQX/:Auu*00`'̡nаٗ`w3zm9*CЧ%kHKϺ zՀ}٫5ٌd^ӗҜ"T?Rˊn0p.3@ybI _=th  Xe’K8\Z (B 8a %M! ( _t !k Ƭ ~. _DLhHe g  ~ 2w=J !4Z#"ySG\%!d}+8((2Y.U7#4p85}4Đ1\ ._+\`*s'[+x))J/ @-{436L5D*1//(4'"$A#A" "#}#(^(%+x+'' srM#bY$a+L, *щ,"R${A&OSp^+S%`5I '#?ӆڤHn#1{Qܣپ6k :>* s'2k&϶ S mնz!Г25Ψy[mG˃qqdz²@4e!%1 P=cmՔB)7Ճ( NpҀϿXѻ-L՛MnZD5ծ,zWa.pإng,MPfdc@ >*,WOMyy'Ȏ?oU^j"*H9 ]L| , F = a" Xi #E lh i; 79[ ' &l V q5 ~k;oI6!0.{"B$n!)'#|'$C!)%P+t(+}'Y'O#%!&"2(܁$><*{&.3*:0e, .j+5..+?3/9~5>jq;SAJ>4Y@q6=>;~98A$6+_97 I=];DuB+ KI1JIUCC<H|^]YH_W ZI„4:PS]ډR L/'pr*휦w11݃PAia a G@5\yDxU7 Ij%U&?0FнQ";?~iZ8  ZbqP!/YS Z6!#/ '$K*V&r)m%&a"r"ݝS %0!d+P'b.E).y*Z/X+/H*ϡ-d(/*03.U2[-3m0|3+A:2O,'=60ͪ9J4؋?R$:DGƴAJًEIoDKE]OCJ&RۈM eS|N̓QMKQFwA{=t95m6^2}41r4n1n0{.- 'y9%DTw BJAM9Vb,|߫`D㫃-b?岚蛨J:ӵ/9O9|eq#|pĹD7ݿB߾{Gǖuǒ˛ I8ɲ;/q*߯+3?"<1g ?79&Aըޞ٥v(N =[@{`Qޛ!m,HE(9[|z//kN<{SlegM-!g0ot WP&3U1m%kE,/rlDo!YܲG#UUȶCw υ3y"r%#bc/,bq.]+*G()5&:*'p+W6(/,&3/12!.[7.v*!,((6-C#)^\3O/=59 Gb\B HCHCdH -CyGAjGAHB8E$?A?Vf9(:FN4+7s1 4-1*@H1!*0g*,d%J' (%6`%C$#5fI PmpPC J<@Ka@?K|e \k q KVJYMWw)OR=OYWR<GvM3d@ĿZL 8ICko25{7MmF OǕY^-*԰3׹a)Ԉ٨^eoԖؼ#2={M-wsHج%Aplw6ޭPjШ>RYYSثVs/s)sHO=gymH f+ "/   Uj![$i5̯ K e MWkW#$ :!yĶsa-Ѧ% $$"!wyJifR%#I3>S1QBB@FR.DC@N3AZ>A7>BE?NDψA;F}B[ CA?;=7Y3Ѱ/ -)H*+&݂,x'/*|0*+$%%&z=%((I(0=,I *5/D>?AʖQ<h  9.o 8hy<8h}쁯F+< A *KF7Jw ظސ hڷۘؠӳίX78τ$ i}c-fݻ ڷ`j٫x,۾U9MNw1T8OP܃S^(|K/iYHB(P%AuSX0̜~@d wuڵ**$,@m%*oUHtdh!凵}S`lO0kk#8DO r1Ds:(c a ]k7ۂ8twF.c}1N5%BoRU<!*-,AX68m89Ё56,2V31`2M2^2NI44M6-6g4a3l+4*3#!D?* #P U,jl)W/F,*)%^ rO1 ~ (~0J[Jƪf aA UOy- UajCo7wUJ@tn56'E8t䮳fm?YKx:,RtYm5MaCVBw 0 t+95sŐXMeGQx1rGرuq&zT8sOCh"x&*rXHƅkT A   C|n K$`(й,n0@4R2#.661t4 U1E4a36w3614-0(5* #:f{0 ھ"9$E! #SBI >  ԝI eI&ߋ镐EF靖cv8KKiI;>D?Mg& "\ɐNJtEz ԵްhyPt`KqN?6)&2_^Ǖ~p3V  *rW F t r{={> z  .6 (E X o;jHo]p;Q}bO C45K&א\ 2u  #w=?NA({o&! ƪ T lCc L Bq Q." ^.KR~adv%Kw ZI, ( Z mx f/-Ao "{qq!@ld  B(M@; ɥ *q4 b"l IA<ݢX/w(c \%R.OgVK:mc,߇qW#\ 蠝|aW.Lu箏x~ ؀ 晾߾?D۶w~ؗq՜@h~޿<ȟ(;Ma>,Ӄ`1հ<!#<)ܪ2Ȥ_rx۱!$9?b6Ql ,42  JTIB Aw z YJ."b q }; Q@M#o %{ Q0 TuiD]Q6 5(ABËO  0 t 6  2_*yn |! g ! 6 icƙi>.fp*&Yd(Z 3E&S$ 8=%Jq&~(y+"+"'t#3 "M)u#)P! 16(f5-:8/8U*1 8v1)8(1,9Ӫ2VJ:P4w8` 3Y4$0_3/Y3/7\3_0`6B4^;::a9m515Mv3m3>3'4r2%l3/"1#E+5-c"$X] ߗ1 $ g ( ,"%0_U\UKA{quWU> Cب?! h~L;ZZcUĺ ε^ҏ|k„Ƀ&q` (dKb#Ļ1™tAt@#߽vx+5=Utޔױٶ*q+tyR_ :VͶv-)_Xpm0VƿtBv871V aRpa />y9īcAFD%+%!*&- ,Da!8>#n?&Ms f*d)$o0*Ha#u#/cVmRoyZX$yGH.%5,36*H{.W%D,j9#E+ "*H-H#A16(Q4q+S3/)S0{&I4/9d%*1qs'h7 .B8lL29C N0E N cELDJBIvBIBE݇?<Ŋ751$L0 /,)S&}$!"4 X QRf h #mafRՓ[D[i1HM%ѩދ\(@%|tbؒ9հ ן#խHֹF?^*b4Xq> E$6Rfϭ|du)乳_~αIR5Cb Ž2}Of D9 Ï5ÿ;VԑjۀA4^y dڱuÿvR뜌=]=q} @TAs Y]<բVowU)& MVNe[Gyi: Lqn[ /6B9$y I E~nh:[a] _ (CZv- z*%/xe*!..x(+V% .*+#)z#7*g$W/N(n2G+X.0'-( ī& ) 6 /y&,:)2iH?ۊJA FLQ<C%9Bu8'B8_CG9x8D9SA07:/0^2L']-E"C+_L!*-p#sG2x(.4ۣ*/wS&{)% .#q!¢zO0 D  3'F) (UBcW?+Zu_p2z& |ҴYҺѤy"ʄNʳmǷ7*Pxu9ǥJʕQOOUρ/ɧfȧJuyFGGչXМxںc0GNن,ќ.ۭU{so  ʕ,j>hFԬܣ7?: r> ݗPٱ>b4ZAuH> # D d  c C^c y #4 ʼ#t`U>?0\Ҿ}r{ wc'|C7bŐ0trCQ ^j)$5W0H@:L CG I^4 o8Z.}N՛E$H;L{&b1=#NdF6ĥ:z}!0*[d 3<|ؘ _l?UfGOm5ء8L?Q^HVh姡sT]Q}Cۍfީ&T 愬0/iA5L"=ߎ (cBKZX1j?36x)<6o-P#j[_1[{RU} {QNGd{, a>|* &)L//\50>67/Jr4,1l)&d.*',q(-~(,r$ލ(e!8"%`# 3dJ6+E1>Z 22 $#QF]ة7Q55%MuUwMe 93vj⇌ 4hj引hT|Kv]A6墄:X&Pi`R,`ip*+hTӌ ?O ϩ ' U >P܆mFqQGJww*, #eERUSn<#э' llz` ))h۟Ō'K+-|{qz"B|ws)/uS&@V:>zr* oiKXN>i]C'SA2G,RLZisNTNzPPFw1E ^ko2j6 Pu#PEXZhe:is% ];&|~!wd '~ mY GO'# 0:iӣii!H b`[Hҥ5%BB*v;~!gsyRI:*燇?pݴ-/XmZic?x4LD 7Ylt Ç E S J` ɧ ѯAi }Odi1k    !sF_( LH&%N|y +ZLNB-@,hyм-9ɬ)^!;jFM' +G/F%,2}lCCxbB`VnJߧ9ܵZNv?TIڎV*.'#{yS6ܫ'۞;طcػWڨGq!*f=mq;r$[n'Wj_HF9O  BX n P|II5n^}4@./u3I  Jl< Q IO_3 6j h) ܗօ ԪT+#-H&̉*ZF#( !?2)"d)#e+/&,'/*%_$ &v>[T"+!$$@"h"=C z7^J nSXҝW~.sHXUq x kaF<>bD/o!D|W^dmR pGnIOc\qիu oGE\τժwUl&+S-.ܲYӘ0i>ڇ]8*dWPGOj؅ՎKQaٖCS(MHݣ8xrsT'9@Lө/֖ uGک[gڙܽڶwasHF0Ci][rR_(^f,Z)dPWX.t^: wr V؃ ChA _λ  m J  J >& DƱhjrl"0f$!cz ^o!1"D[$H`( 2'}!(dfFd1R&֛B26Q+mj9u2_y6_"0t2}, w1+V0+MX0+2(.24|00-ϙ)\1'%[#CE%#:(1(50 0HG6644o5V028,}.A(*!%f(g#&!ϳ fX Y 6:umWHSh hE.,6cEJɝ勨ضߠkֆܽYe$֥2Ҷ $Ne4ԡghͽaϹ( `vY.! ؿ}W@8ïȁWM΢ˠ$Ȝ$ǖWQZpOн/.&h`گ*x1ث-UVݏ~4M5@LlvTlZqFQWF]xrԾ?uHrrp:QqAN\6δ7)8iY!7Śvy ~SWfܡt@" _!B kG #7PSPi΢ #*2!#u /Vo'-f%5)"'+ &2.(P!?-%}/'d,%(.!'ғ Ѻ*٬#5c1{*$>zd7KDhKm@E}F@.>C֙=5FB=Aj_<ǐ@"J<@9?Mn;9952/z,%#zlfyCx  F kj6Lp{܉\~كTބڐGߘ.g'f| ^/-\⺪eބm RA5 VǙ`1kƼ˾KƸ̽:ƃOzmr|[R~ U^GV/;U`ʇ}>gG)0ƣxҢuֲ{Pފsܤe3Y[䔋2u]M0:@Y1a)N0k%z"7Q  { R"LX&D),Jsl JB69v aI=bML W L _T"nHng>W(!Bl',!)T$(A"P& n ' & &k' հ&Hr#=^"o%,\$V;5->7QAk99?7#?60:3t2+\W,OT%T_)")K"-p& 5.`5^/=.I(%Yˤ8w'p")jd#r vJ6NRhl:+8 yV3l7y߸fbꙥFd |3C6E=Ӑʗ~GLrz lxa_OuԩM&%ԟVB2m-n3͢<ӪUȗ$8y4ǛYF"oZҐBr t3ݩs܁#Y}}ۊU }QV℔2Uڱ/x6tOT< @B~G|IB昇ccO48u _$Uzͅ_,ڐyDL"VXэ+GՑWT ~8G)֒U|8Uk3KA ;ٱJn忘ኘ<Q lZ :h p pP)s-}^fˢ| U P c6_yF&,(3244o+"H- KD N1():/0b/i0h23&r:;1I)JGITU!RMRTTD[Z[r`_8(`Є_lVpU1MK(XO&MIUS8Z.XR6WOQCX?c:c6:503.W1+&S!+#aM!+i3[vYA`⇦JZ߯ W<~8z@?z;[RV%I&%z|5؋Lѧ`E"䞕޶eto1t83}tXD⣤M( @4. ͻ̬CP \X_&\M??q._-mqK7 jdgpbD.%&G%@Fvz2) 5NNU Y$=rDG IO'!3vܐ ! }%R#(Ej|l5^,ynG7+q g:ORgK*޹F H1} 鄚dj8Y81ed'p5 s |4I"4w-@|Bg b12T W1.&R932:U3|@9mEU>VHAˢE?q=$8:%6[?d;fEB_B#?7-Æ*1\& MP-@t<pp>:%igc܅ˀ[̂VΉYͪ :HDPt~7 wiYFʶ0Nإ^ Q 8߂s;}ƚK[p7B)("'S3*H/'%iΕ8䆒ꪉ2p;dJUR+~,?oKy g< \QWoGYJl#_b'q yAB4Z7$+(%,q/' i#^j# ͜L { @{gVc&.?#-%'3])* "`!o#' )(l*_+&HL'NJ^-C'E0"H JwaW ~0 Q?d;a,2G96q yBuݰ_xϟeͯ"SQb6샮tމ"xxX_ 6J(==?gys wݷHg3=)5}8P2d`X涚kwv1f')ɕ0֑7 ti%Kw_ -jXi$ *Q.V l\;?2ZO!0  "A"*.57>W4;2:_9Af=Eq?dG:ձBW54=FB6G,>9O@b;ÓCeL29B%), B 2 )A QH@1P1(uS3H׻ >t6PzMYs?|B4OYķACǛ²6ĭɈ[ϒ̞2ɾɥsFEItkpe|͙(*1ϲRi@-9vm܏~ ,k)-ճ1?-P#&\ -ܵKqd n.WR [9 nz i O_ %P(faXq4->#M"D! &1(nAz8IJA/JAsP.HBTMzWPguSiMKb1FJHE-O0KFUUQ.P|ME;28*B)$$##SL% &~ !"e|N=Cei9LYi S X~LrEtq틲s왼:g.lv ^h!ޛC:Z;TSDqYT QM?ˆw ^dOQQjEK6*rFOغ'=թ̩5`H|Ze -$vFǷsz fxCq5LT-LʉM0B?WqT(䥰4ߘu';uџ?)+~-:D$7V#jO$菕`>!2tA~9( 9j* )04..,{%#"g"O@(l$2D._9\$5'g01+S"/qgX8n%xhs.UI ; umvfj()'>sc]=$W2(lꜶ"-iF9h ~텻ZJxr:" Cns 7YDr, 1zAtH{k !]\o,HtkJg DN c=<u<9E)B3>+"^Ն#*2z:b;,`Q _@!jq^ Ga_T R UQ(r mJmC$.Iv"G$ O 2o @ USfi, =  b }U8( ;Xu=ۜ `ޔ߭$g$6#Ԣgs|۴ޱZϤz҄*1[еQ"<Y\b{&ļƫ\!,مJʵ'!Fv" {jRM EJHdCxmtWku;꣟}6\Ẳ泌=Uul1s)$4D&[Wq0: >[v` iGiIU&),!;t~ j* $881}(<$5y=22+-_&n1L*D8\18<9s5;I~4s? 8pFV?+RKRa5Y@f _e4npFT4böUش 7BW&ھRD3ƴd\A( 侑wԻ{[舺JSṅ5º VĻsjn4Ri-N(ǘlʌOX tކl8*HH9;n>s Qϗ Z t$"fF}) =/͗ )E^`X7!ܞ),WE+ .Vd(*/1r9~+;r>?9:r0!1d//R6%<6AA@a$HFN>q<1 /*')e%X+z_''#z$ G '"+&.B)b'!@tfLGcr7 8" 0u݃ \%i&U- 'CIm7& DuO h( GXy7m Z-{ $3T _P]qXFa$ުPJ~An٭t=/T޴m!$x=2|]r^J?A<-GҜ=ڪ5(BPɸh͗$Q"П F`6?|*R(ZiOo߇ J{'j,9{x,pi 3[9' $O  [!j $rT>a/<:4A"%ױM   <)\ S)f\!BrM,$n3+4ڿ,,`$)s!h,P$r0P'{X30*- $(nj* M2n(͈=͸3c'Y,)/.f+ =#:! #* ^+7sd9d6BVq7x9+Cx5?,i:0ު^ϴB͌(ҥyRQ6/|̳u-xѦ/\ze\ShŌRnԿv*}zUZH#„ŶOJ=_MbF՚XuBL[/F !-mб{װhJLhAz H*jC%{sؼ2SW5*%\wm%2ЗնCگծڤ DskI 9N<@('U  D2| C~sX l' Cdr. !`$&,ya@]=!''g2)S )|h* , -E33iw=-=H:HTHkHGFuO N]Y܄W]ol[VST8*M.JmL ]IBR}NE[V0]7*XdO7I@:71F22,?0:n)(*#!ӽ#@%$$ @Ɓ O;0Z&S1Qd6WiuA܅.<瀕NݧFe2;3ds٢qԭ3< R_݋/"x2㠵L=`0侅p@ے{8\ൠ؋^Ï3Kϯ[nIeך`$zW_w g)8F.kXy8f@B='7pцx [}8?ˈͶ0,.E`+/_3Le %}!*iVA` #7F(,)tY."$' '$ ("&|'T9+ *}a.ϐ :#SU ݠV8 4 _ m aoAcM  ;fd ,o{('.i{?G:Gi2 H&1 > %&?27yz[s +m*w}@%F\ SC![˻}E:5[ӯ9+{2W2EC>ܞj\ p5e_u./ !:a>- .D:G5HB=LD@/<)9 q64w75\:*99]S!۠gW ɲXIru{۞᪌ކ܉ӀM*^09D=EҞCЬmg^wݰs\A)?[tHnt(" )фh6"h96OLtꕘuMweyytE~B\JW'+;0l2QxYk$&&%<'|OjG TUtk _H%o&++>&!&"!'q&B.(-(q0/.:'$z9""xmq*l&M)$~ Z xSez:̧ х {jz>漚bEᜂHT|p9!ϰj4p*{*G]ߪٱBٝ+eX#5,$N1xCkK(]68L xEC A=jPy2Re@}4Wb}LW>LIV621xr_g^kR+DHI֛!gC m}(U_ u4}nCFƚZ!$')9w/%k0V6_/I5*Y02.48t>1B!Gn@F.7=h+3k194.:\7=|7b=]*'0 }v!g".V N B"#y MW~B0p RW/=-GSrts9ڼ/07W!҅I՘#N!ڷvdJތ+ջ'Eù>F7e1Țʁ JZoA>wwGy˭^M5]ۣ FֶjcMxɯYODUV K ,-+kyH0YEe2:\^s~Z˲*F Gx, r[[ t  MG#Y;K"S{mH;f iRx'A'!s2pw, Aս:HoBR,CNF=R(Cѐ=3J ER"NS,OJsG;VF]CWGkEJmHJpIe?>V6/.v$$!8!!l"qД)n]43 #՜ ջЬi;(t\:>+ ]VL]V +IGSᩖ,[~몜w=UCAG^gcx]֩ATلUX+"$FȰcZϜ љ9"Gl4XUymq,QZj߾}G*řqj!=W!ߠe^C5 *U[I ;}HqC[d%{;2j .[ :xZC%x\KU@ej$&#. -'21,G+M'%*)ę2JY0;9:i7.-*y"T AF83K vE  VH >(*GD1 =(?LCdmJybt RU= 톆i UAK  c Z 4 ۮ zw _;q jH NK@eC N]` ns5z/ * v (rD n3A 5PF2W zz/HMptkocg dAeѪ ]-G I X%f4 E{ь S -^bsˋV v-m93'nev=^<}QZuj^QZTsX-ZxXוLG 㟅屬zjމɚӡX՗Cۄ""̃n@P“ͣ¼Ƈ]<=sӿZAeϳ??s/8lӪ)2ڌՉ>$豹8gl⻍͂l L5I<"UgI RuH+}tAg+L :_| qlgT 5 n pwa $Ŝl%\DjN~!W,"$-&5q-3+,0i)o0[U)i2+~71Vf7W11e4:"4E>QK_Yc ^[\5WPq]rX{dN`liNXlHia`%\[ZP\\V\\NYZLqMi;G=/ 2*{-'R*jv xpޠZ}pMVF5 \%/Z}$wR{ЮIVĜ`ЭDBD5/lf1Oc_䅼ZTQwxξľ{qcÞskW( )k!Õ7ȏ?*;*綨% ֿG U[Ƶǻ9п? ż!/ 9q*Scd*5e쟣D@뭉층cK;L-OF @9Ufx ٌ } d h(Wqv&& ц-qz`((a,+ '}&0")w'0ՙ.I96~=:6Yo31.,6[x3`=?V;;nGk?C C-?5>8 3,/W)*((#(#ɷ%C q$#+5(!+XA%\?'!hf\־ `׆ bF<L4k F P INn 8 ſvu -+ o'i !HJ!)QS, bmU ]LkT 8 =|LzC.BC!A++'s†߲|U)2_QW؋UM\t(V^ޤU㤃}#eە '`t٪1e7ΒӒGܸW_ tګBT)dp;c^ QB}L"}0Ax11Y?]0=rS C)e P ?{ Y6 lCY.\J|+}5iL^ HK f{rY@[u0"$Ƃ"/MG\k g_=y-2\ﴲڱd pN , sfbɷ8J gDyaY A J K H="- '/:1*+\%Q&&(!_/[(6/F4-*y"'? ,7%$4^-P92;25".M1'%+ .','i-W(O)>$k4)5$^1,1,9ߺծښŮ6Ү΃-uQ־!-OԵg4'I=*XPl.80^FJo a G v JZt 2 ;>VR/]l n?H$%&b% %D$>$,,Y8V8D&C#GEBA!ERBZLUI+TQdXU>QMA{MIQK MwXwS\WTNGGRAY>*76.2y++#Y#J $q&$'h%~vA 0Pחq^Ac0$%PhqFuM f0泸:8՗b!>ܻ)x颦.$lǘrC@0Vc', &Y˞(. >'&{).]$*Pc"Qc"7 %%)V"&qgN!Ec yI y1 V@ L *NV u s$2%?G 27ToP.d$b04Q3 `}{Rar Im ڠԭL'79]w պ0p͚ mt!MbPD $3 A2 F+'520- +x(.+}53>=0<&/xǕ$\t4Ԏ*`ҫt'nεwf>b۫܏'Y8YGKLp0;(3A@B c T\[v g)pS4-s۵rŠ#^ 9:3rwb(5x`6'#C.M*(t+'$[[#\ZMA&! ,&,r;'+$O$ #]z*) V"L*' #rz a $ 'T"lD?3<E1<"9Mkpc2)_px'E]Lb.א| \ٍw,-L+rHK݇.Ȉ$8Tޝ`[N܈ C@=sRڑg{Z;$?#NL\8pV( h.;dї0QwOWЊ>߀x.4;Gj:ٚ%Q  .n> :;fT\! #h*,43{.\4_(R~.(-E/4<(:?&@FF*:^?U2e71648Z6r:h0"4DC&_|) f>ڔ  a~46  Qݩ 7 U~+:.bv[dMإ֕CGә!H˔r [-_k͑i˚O͠kB>=J2w#ȩĦkio8Ԙٖ@IJ6m ցEJ6җ^A!ҕ.o/,zv <*aG|4䁺uXhM_  Z ~cW9GFArr: k E "6 y1-,NWE".)<1  t.,Q>BL>C:?gD :;?.4nE'-4"b(hwt%y V:݂l x_4GG}>KYQs  -nZ)_R0,@[DMYRo逸fz,^==cmoiY*f@wX}y M6o c u2 "NЖf+YO(!jlkۼhOyӆ`Ԅ1إJvCZfzuјX7t|py7 8dhp 4į<ȉy9iYiD0,4;lԊp7uϘΙm=aK1F?"ƚs!/\\.s-9EL^ZږEA:UC-FޥG]]5v7U.0&)+!T+ S*e;bR2`/&r<3pBΚϒ]҇-8ҘZ)@B;[72/HuÏ-f _8%E6.Ӓվ1 Aj$ˊUȒw86ȿH‰uulqnŐ!½IyΠRSsɊ]`.쀗Y,LT h% l(2O2B8GOc8KD  oZ"J ҂ - Nr $!z,*(&w# !v%"*'530{r5Ը2G20w/} 4#1|9t61Z?Z*QW,fd#"=86(#] ! )^L#,|Y*c@Ygv1[`qz27ڡ:Z 7UZrꆞpKK$\F\ǯȈg|آvܳ\xי޽jaU汻 /krxC$J[58|b#5 'em F24 kLK d # 1 Vf ]V[i 4 A%Jqe=IkQ7p>|gQS/ I=cQhGчQVxڴ+؛}}ۖ R|:kVgOT{[Ě-h:hx3#g9uoor(n4 !r> T^9̓&  % + R% M R ;t p+&+&#C$;N)<%/o+2 .+L'r&#d($-*/3/)0+.-jh+x{-+c&,*,++*/Y) &J&,',Cx8;8C DHAA4 5/]1ݜ0,2n4&7m7r;b2F6 a*.%)h"(!t&$! )ƪA LǨ]wtwř+V4|Z}._׉[FX͏Рr"ʝf1^sΎtgZ\'hƥ&Ճb\ԥɤIOpǎ̿Bȭؗ)v ̅* і&q M@ԑ3:`r=߉;T 0v*1pHՋOJ3.ו{ysl^iIٗrFSL Ii7/aw;ش| Q cۭ<, b_+J5 њP!ueڼ!6X,(l:qK6C >?u:8;5+<7B.=PKF"MNG6KE*LjG07PJ5SߡMLMu/HPC ==V8@8L2[3 f-w-(#/ }c~Ea#"LEt}XT0 "Gaf&DzXVy~NͿ{ F}fᏫo<;߆(!ۣ)ܹ>ݝ,^>IzvTS:ED犒颪WI/nஃޅqpD X”֑5}bՎLzWLh`K׮ܤ)"/ﴁ6OJ@VH {e̴}%̥`,D 35exh5Y^+! D/II ъItu!k}_́F +#d"9%!  !#3">#5Y-sWN s5 5  3!50U4p@rJP, `&h=vq>V7p׳FXQ2Y|sEpTrٮ6`^M 0G B.Y g$9XTPO_ #z!vvQ&lC.7+344se3n668D.nP[-oa pg|=O9]-xp d -d! .xl.,--$$ #f$g''W)_-0z276./v3s*As/''[-7(H.u\' f-gz$N#Pblk! e Y\ R6S $eI#GA0ݨ%+և:wѭw(]OAݼT %;A'^gVZJc6ZtB 6oWp^P1sx;:C:k0rJ;$9g c!"M wiL" M[-p'5/1F+(ž!]!=F Q#+G(!'H^ $9`S%f&ls&M5!F  /c"L<~,ՈegM?Rp5@=0^ ;u܍1T" ,?1}3L٩|JLGZX}-2FPE6xM7-~ac"@nENcIo0 Y!t3 <m'wmsY]g{bBt~@EzpG"^\ %IV =ܖ`zڦrԜ2ԊуӵJtѲV?̌8b5byݩhտصV,H\>(NݏN55 ߏ>y dܚox>'b޴iL5deC~ ==K\VZQZu#:Rnj k, ^: <  WS ?bLGU]s_ \u2 t:D%%3-3>L>C;U<3g4M62+458eA @ג3ך6 776QԱn?q^ YVN `ۿ:Ok <}̀r$!K?`\H4B/L|)ctu&*; Rq"04P$TU f&t")% ,C(.)q@'"? I0'*CL  \4 h~r bfpp!8>{NBVyO9Qp씘k9x5DN{O#+%}?*m=_usd!t uf W w yb d ^ + H0 O.L W?  C.3]Г#>+RXa  r/ڗ  T L  a^], 3d JEޟc0#OO`2B"ܗo0qu LNڐg^0$Y8خ8́ձԟ(2՗GOZ}ҟ c8<vXu5ȬO?˷V˲e Cnьh۷՗Ԇ,Q0"oِbsJ=xHt5>=K(珘}dkapm~8C )E(@w}S]xvﭽfh@?/sv?ckvۅW4 x%6o :Z_m<swz!B%f"''$B#, #&p!Q(E&b-n+L#08-.P.l,Bb3yB1M=;JH5KTRPUOIHIsIGMxM?SV,T]rTV.PrR=M/OQJM$J3MEHEF; >517n22h4,#4/ʹ#&+TgO #G  خtF $c1j3@T޲b٭YN3"a^!mib^^ϖ3v`gl&801vӏ6Եe | :|4E|̛~{_mȕWǭ Cd:!ΘgϺ.OÐě pȒˁ:_ɑ+ӆp@)j<Tݯ(eVN3yO(wadCп)CY;Rw e w !f W4ۓf %\%''~  c%V%,+\*(~,+/3/2 24< 4(5H4J-el,y'o&&$&ʒ$%#h -8 bllu Gq uu<{C|ڵx. ~[ IwN R6` X o aQ3l: y \ Oy / Ћ1{]!Z ! "+zXqz{Zwӥ J pLsx!0(4f&3@qp܇VY]kz;dg&IpN;e6iv^  iꨱ\坈4pYD!rTQܠ뢺V0*N0~; &(_" ' `dX i ?$ -z 6 ~ )N $  * P kFvWϱ*(?\k"7:wu4nlw18꼵"y⦌L wڝ<޴Y.`Y`d<ةۧ2ڇ庉JIH;޺ A=nEl9E+x;}! N.D w  +י>  ;Fu Ok ĝW  a-) Pwʝu:f/('&%IP#Z"\%$K)ѝ(V-+*(("&"*'u..f*.3/G$2~.v+'*eN'a.*r2p.ph1-,).*61?;<;XCm?S}<_e843/gM1p-|2/5S21/+<*4(T'%$YB#<"\gb( }r:)wI5aY9"ꣲ_5ٻDم(rыeЁڨ^A0̏0K ۽#ɊCۓʬ#sWpQ= =˸B͖86BM(\|,>˒VWg nݵqh0Z{+vn3r^Uڦ2Y=AݟuPWࣶidR_+܊)}LwVds޶~Tr\,Ik{HV3mAB?L.]  * 1 jcU F f8.‰ &2dLtCx@zWX !,,'9-9H;:ï4 4E21Y65w=<9 B\@C BH,FIGvJRHXHE?W<85=.7 4%63,2/MG'J$JAykF# u3  c w~=<WSq|lDLR,U8~Ihi!Dd4' j匶|: YlXVHQ }  :A `K}8rC.3qn Obw%q܎+ؙRΥ/R7ڹ3re҃t#EGݫ&[ۖqk|G{ |nbɐ|jG`e{8L."]I&Tݯg:zA~YFf~v}a k^/#hEAc!V"iafK}!) ?Q Nx w,8 e6;@ mȗ{D# m:CZ8 ]yr$*1]56Ĉe^y/kS 0mlAK` S f6 or8gs/h ūl1Q#(  E& Bbۻ,X7kePaD2q5EN8'f?<n( <:)5)_mS>cA V'O@R X|li= - Q!Y ]j& +H&c^'" k""v&$h*)Ũ'J'T$$%!S$%#%Ǯ#% ;Z)+#hj e7>%<6R\{)[^+T\ٓ օ7צ۪ڐֆˬ\ˏ(8ЪեT`pԻSRdM>{=a"ߐm% h@CIЍH>"ViGKX%pUP@Ln^Zg9y]ulK1v>އT)32iQk ɬ;lUl'bXgK1V"gxZfy!(p Q+{DZk{(w"0@+q-K'$'!6 rJ"i.B&&6a&I5(t m(Z/ /' r"h:i@ x :MzXAg4$7'ct (M No>vPȻArHۈ5QcX &>.ӟUZAq#z-n9kZa(1P{ .|<,11`v,RWoU鳋rW[A Lg糧 vz g 4B di^ cGS oV)'t31T77:63_2$0Yi/004{5ɵ6c8240 31D42+4!14`*B-y":$u!n%2b- *+-Bx pi= _<|odIS+$+gI1]`si~tcu 즅%''?N@F+9GbfV]PؐPMwGX׹ȅ/M {1hr˝׵pN=z6|js4ԮcNaKOΙ4Pjl 5"-tbAtH&UsD9﵂RN(ޡCr2{(E )}:N Rl < %PC{c3, WrQ%q' ~(U"8$^UrCx1T3 L|r2 ESv  K<JN U+ƾzE`= ;Kr2v$){57x cUޑyG?T}+c= h Q A~ 4 FG " lM uf8 I -@j 1YGYN@;+i9ه N,"  C22 Ipk*LY F wMOnxU|X OΌ%̿ҙ Җ"Yӗ`}ҙgöU`ߗ.j_ 柮QΪ_ةEfAE0'lK V4Rb`EG9y|;t>J# q y ebE<"Ӱ6MYR̡a!O![WS$S$|,+̶,;,K,: ,2*2U;]:EyD.HEHwPEDNCEC DD HIړHIC?EB+kDDFD\FkBkD<:;ì132-4.B+*ŕ+a&'n<s B P u@Mѳ i_D)u^v fa$8W\1E0\UWX3ր' Б ?d/՟g~vҧԶnԍOO`I2LQק`ڲ:ֿMLk6XzK=d&P|\$̡DkgZЇzLyY{7C|xƛHu?7Y\1;12homUnU$4&Xi13huҒT46ru>3 * s8 i}? x>~gY67$+Q '!4ITS+"ŗ7t'z/#Y(_$փ*&/.+.1,1.1}.ҍ,6)$?"!_"93!$o#.x9hNٺ)L8\[ q z> B"N E1g \  [OJ17H l ޹V7 3 vn ;ao= 6؇ y9B'ryu D h3  R Qk Cj = C 46 j8aAq퀰yY`jq:*9Ѷ2mjq4D$21wq3jRT:hㅁ׊TPn)c&6vL變vD<-URKC@ (xdUȟN˶FNK u M @  vKT21,AfC][g=@(*+rjSM zb vx$ ϯ Y.Pb M+#p%y"$"$Ӕ$%^((u((%"$%)&SD/_,3`0S3qI/w,N'C)#,J&*2/,I7}14k.2l2+q5-:"Y33@87M?)8+9Z2Ym5 /3 .g3.'/* '7#:%J!]&]Y"4% !ƍ   OOCBGHC_LY ;eWJJ߄mK;)V!҂Ҋy.BUb̮.Z!͒W)pJ^;ů+Y\ʔ2|k̴I#nWW,j7%ۥ,m"-ي4=5ݾx!icܣHbKihַef6yA% eCi=e(v r=(BӝRؿ$oڑ+W%qg X r.Spvt3V >m2 * &?RR/1 E@r:P>E 4&"#1..673}40=`3s.4G 0v9Ԃ4.>r9S>9KAj#TW&6Lg?@uN !V   e o A< MM= O '9CEX; , ORd ŵ|7U,&/@׷uH_{[\b9p#BW,f5>l*/E> i B< 8 @ p[~ G2m C n  2 Ubk   Lik5h%N&g4F쒭$o m*eg-bqztQ)+ "GKF?%oORuU) ) p~ kZ !Û I&#&$v=C!hW%!j"N.)#\ gA\Ji3!8!I͘ke o g. \ M{SY?^7_n /#ma%ݜg:DMR=cn"[+P?av}e Cώ:0ѡy8jҠ?UE0b:''+&9#8XmQ c,Ū=|voTG#<$ GO1ݕaW>m<> : KO3!C2"")F_- n!%.5!9}&4-GsF%1%>!,,'1,'h'M":%?z$ł"&D 0(V!$'z$_&a|'S+ N$ ZHA5Lm"FXԂ')x#8NisC}OGzFۿTޭ٪ 䬭^dcoܻ<aҷsf`B ڋx6 *`fhP5R" G/.r#}(( WV)5+0vF[,@3O#}BQia]8YcloI QI ( Saa]Νj ; -? 1* P[|I/Lg mJX.~!a%(,Ε(d, 'y+'|_+2)T,*".'K+8'`*,yX01f5<14,)PS,O0"LE;Wo+~;u[[$ _:\I sYXfQ5!p+PɌ{#$ں<&֩$kasږr ;<3[ԻI_iHߑ ][.DܱB^,r"?'F[n qni"sXܬ៏ST䪀rBGP{ n~GJH{r:5ՠy~6]D1λǨZ*D*.ER,0'/,Fki",0L\gH\<$x 5 q"R )˴ J*.MF f[ Q/լ@q;r J揬ꐽ_qtu&4߄Pτ ^r ml̐~X\|5of@vJ ' W#&0ϰSg}íĶ><> YJ %bPzhM Gh>= #1M`P0^p4- "WAN$'%;D%NEllB߉`9Uw~>  ; + [ 2 2 VKz j Ð J$RLF~duSm$( = g &[' t : 0{OoXnR~@ZD!;ؑtԸ<' 8 {%n.O]Z$ % &" B oez3;  K $HNfP\qzŨ)y ==/ xꌥ8B51pf>j܃W̰̑#!yӉvAyΥo!y XwU ͅ9e::'<5sJ1GҢ 42u 0{~Τ1xGrZFf50ҹ ֞ ژZvbmv漸Y[7ctK 00}ߵ`g[[8w_]j".b;"#$ % &""Q""?)"Q(Q|'I/Z-82/,?)]'#A(d_$Ύ,jm(Y38/g61]3Cs.-2-55a0v:e05;;:m6T7Y29 605E0 O3-G9/`)&̀!8!DG!#hV$P~6$(46/X tzaƌWMV FKYϫEHތ?WӪO})́YkԼTUdKƱnYɆHVH͋meR̔3Ζ;-–ҜC__|^J#/ޭ~#↦,Nߤfb޴ OΎVw+fEuGތsI K~(/H2R@kl) +xc Ud$8?z 6/8I c7r +! `ˁ=KneS %x2(+-D+L,%z,-Bi0x05x4 487v8<62 6l3<86=0:ݢA>G>:OX5<1m1 -l/_+fi.)Ͽ+P'|#;XjK:PYvd ?bP 5 :F{n^GA7UsߴK#m{N宍~T/'$7c5 >8@fy4>A1 JK$(IZT7%)..vp쯇A?p0l^ؤ&ړP,KJM.3־" v<ݠ'#I楛<.IyxH {?0({XH3[o5Aj H\6ù)a C dx{nR:Nڲ *ٮ:Z(#},RL oB C J |f \:ia sBu$j+ 1%- Aey=+}L[I,3YFt&Y!; ?r%.eNu_|%Dc$e p % X U l# X )#I( l϶ :jb ]! ًGZ c; +  -VN&@'g&#k^YNK&03#FSo7.eI "wX oMlbzO; )/S  K n<ʙuEH"&(s/ ƔQui!u,lh;%1z J:C:H] T lMhI`MB]"jGOm굋a +Hڌډ;ں_ݬ=t}I"RӺ=kW-[i[ׅwtZ(E[i8hpOۃ 5ol4OPdhT~1|Pr`@G:5Acuɷap c0yP f`N ݢ*^0e]7D$B2 moZ$ S#=tB ;,c<gd +itM <0$ao)$H+~s%4(I!0'f)+t!d+'#zv,#'s]"";%'!9Z"6 ,eA ? @tx[/j!P!!<t]bmnHf.苷Z4fbMk:qPJQx}@:7B܈.RXx|gZ0u~A&`aAK\u{zZS2' Y<~f4fwME17dUas6C^鄻trC+F}'>s> oo|J~iUV(gZe?d(w~X - Kq8Tn;6  S X X*b^ i#Y@&4#(%'!#"#f&%X(:'H)$l&'!+#>#%() /,-z)*}5 P !w"b %iZ_Ӆc ru?  ˛  ,RS4#"pBOϼoI"o?K@$|ж1nZߌ Py:`3~+dH>KXTZdV0p1fU7 f\NqH[o6sW]{29{PVT(3גѪ^|q2)3&݃-6WI e ڬOk e[L rR/ϋH)=!p"'(3()QB&M(<(*)+CU)7w+&^%\'$!h'uI9"$l' %'6! . Tc k< 0t"A.HSKoWC,A# 2@S;ﲝWMvdLo׹qqS~23c9e*9PD_pz5ѭVk<,DP;a vHѬD˾oi=a9Wg듒g[o s[zXN횩J Lkf6 7;(hB S5zO1ߍM'!_!sHeq*;CjO? 4mfzba;iCE$fX<rV5 ", ò {V |A5L e G6E cyʫM^pRٌ/\% } - ֚z,2Do M3G#U2< Gdu65 lP2dS `E2"9rnvS,Idҧ g. Pe g?9,N |Mt ^bo|S -"^}|h1^$]cc|n 䚈gԊ ط)(ѥ[ЌFӤtqdAF6y΂€Ъؒnj7W+%V4ȑj<q [!c&o"(w$W)R(-hf.~3(4z92q5< :+483n7n;9IK=9,=X|5-8̂/S}2&q.I;11M4]7`9.|6X8y,?.w#$e!Tb ; )DկQqu ,. 15KGAf]kN2S[1&f꘾3_(/y5 !Ԙֲ4sJث܆چPծB5aۛ kNڹk.~iݪg.tܺgB(sdu= ^ }z X}  itT9wX,_&m8 W F]h x= D ^_pm;Z߂l<{@G6hq*]xQ촿'TLU2@j_9 X&ih-rwU~78eUmZ" 5oRN<*IK:5qaPA E2w~q0HZUXx j&1:"E1&T ?)V(9 T W߰㳡oGX:cP Yڪۇ>S]JJJ.LhBcԥaHXsoJ'M^y K@D9F 'Ae H a ]&,֎ 2  xxyH5?w Xdikh tY 6^. N"x vK^ CVr~K Bi=FkɊ;h}hCY{P7z-d:[i\R[^S k V I wi [ a^w~Zr=L [P { R JGOvI~֤v/:i*L0)y (hKxcT)P|M_Pi7(pr>7B(?Y@]#  }:Pj  ` r# kt =4De}nzM)% |JN/@ 5S tPz#P* }X xU'z qhrPd;8^g^e" 9"|etO2 =OlD݄4ݣh` ⻐⎯*ar۱F?֠8qO:*cKٱڸBܯݯ)$ cbe#$ĉ\"Lyi+ !WmOnf@Wed9K&"lvz_ ĉ/Zy :#mRа p]eeq7 lZV/% AN -NϵњU]G"|F2} /kk$ '8"I&-p#0 &fX*3}"Q-$0)@=!ZZa Xu!%"hw"fa 1 "~n 3d D$7M= GS-LN" \0{ u,eSQwց7m\鯔:J&qd(G:jިn/B0n^BG b~a qf # 0p 4F.Sz~%CD#Zkhݪdlay{xqV?dTV\ 1i=]nonԈ)Eg jc"[7% |YPޘ`b f(pͮagI bSMY Y  lP~ {|~(JK3$. i \Sq*e\x V + 4* Q'5zzi6/}]#Vt^tbJC[2h)| t(D첫'^ J.Yc!|.j ֗vR Jʣrt,Rrb Lo/ %"/ tm+2+lzi*X3wq1s}ƅMXiPtwz O\a C P 'ͤ&N}-U7'5"ztk+o8X0sGfޠB/dqpL _ 8 (d wD «`Y#RWTcwY6M,J*d ntmv橄74܄3ڠ٪-gۤFlY.^N؎r-kn\{۸ڦE~ߌZBQ8S*'K꥚G5dhq#@U/Is %Ns^6hCF Ew)gZBdbx;%R:}F2!n!DaNЅx h T c V͍ R 2TLs:0 SWtٿ;Y!I$(*/0t1O2r/Ux/aN.vz.ml0?0W33v3^2>-/+K)'$+)N.8,c0.+IH)i##!Q ZA[BS G >Ma G1Dj. .1@4ctivW<he㏚QX5vs'8j/W unatlx')U矮\hlV 㟜ObaRf=o`:߬4! =AUJL)- q+/ڱ*!uEN=7M] ۅ\hآ֝dP7}Ѿ^NJl 6vCU]|6%'_x[;=í~ z5BYtHA~,-|KP(/% q:x◝v;ΝĶ"GG"k Fmn]o 7 t | D dc { K`l5U,l!Q%J!#-%VF <+%- 1*3,.'*~#+t$R/'3\,L)3+ǫ-&("?_%\$w Fs֪V3h/|OC΁@6 a ` % ˨m qc\TyRm9f(?0UGpy]V*@@h%^'ϰy4A9}1ijv:1 #g'%#/ v!|0!=ꥈ]a Iª2^}^/An6ⳡϔiƔ!O^c-<c8G5=0s "s^)ϊY^}C .zm |9 q G  A"*A faPcD Gm ,4 da|X !a E:  !   ].d@kJ82_ Pn }{ ?/mZs,3%-m:pPn&\G}>&c@yb!`K, %  j g o e{ 5UE } _ (YL9$ B 7~y ~dg/.pP.Vm3]+=lCM0ܒć"Z@#$iRP<   %  ;)? |KLU@Fa{{n *>@C6vWP [ p n| kUC ( p q87;z U@0dHwۮmi ;qNu7wwzߨ`"{# 'K?䠮܇~4p^۴ڠj(S-u㩼a-5H+M3izڀYi zEd+=;UZz DS ShQ,& dPrWE-U0Pqb8 *Qi & ˘* Buֹ'!d%~KswyL(/IBkv=$)".)$ %ݖϾ%JKS(Lk+ /!*1 X#9\?8V *bPfь +]  o :c 5{{MkUYgfT:I:'.V[^r_V7 {@|Tdg%eTxʟέoly0>C#j.691J?lEo>9rlpWB {@Ep{ yb2[bs(-0pTZJyS%D bj49 \eKVy w'"h@V gCknl $5!u!%*hb1jA(r~cmcNbB?,qvi=/zE zj ^e f:T+9 #ϑH\Lrc8B/]Y0x?0O;W^ %:d"CC4o ڌ`J[V%yU~@&zHOKΥ*s9ZO$䦻nR:W3h}IOU96J+ѽ/ywyAHCsDQM@ M ( 6  d  v^ Ύzq %A"s!D*" H; ib"aًͯA&RmX h)DaL5R =]  nG,IM~X{q >)[DɿQp@ɺ$@C=u;I1Y$weI7R`5p61J$lN0l z&bUhjce}K'Z3 W3/__7~u !r٘Tngpٰ1X( GB@DbNްY<Ƕ n`aDQkK.xZ'h(WL&8f||g`i{qO,K!`!7 B= -A< w[?< `Z_( t*\ DvL  w MGcY3֪|JeV,rY*ux,[pƴ z,Q1*vLL! ?&nkaSsq ֞<o'u ¯LZ g I~a)V~|q7  $Qwsl_1R>/6j&G2Ls9 j^AvYz #g .)Iz .[C+Mj]rSDʵK!uyHizX  Znv~ZC x eC F< - 2* &slYįЊ j^vH*)0t5&O>†<Rzk@޸Iު ^%1\~S,l]y7Z wh(/$|+韲!K'oCO:4EC!uP@cj|kxmBs)[!:n.O!f42|#g6Z5k 8#V2]7h\9j`z* 85.vLZd c  F^iq# ܪ AX jRd ?{\'/ X5 Spnbg Y6ka'*xvb2lX/Q4- L =nh2V1b;5~ȫ?`4!9iFe %  0 ު <  .m q etXV,U7hm:(xC2bWKD>Ct.:$iiQ <̛K?ROt_)S tq۩;hXZq;\5=6~c.2Bط;F\ZbCv`vHUSFLdz*ܞ>ҁ^sHS(`r8zݹWB$yin7QY)B՛@͛ԥא{զOBk֙S٥U4ߧ5紶m3材 pEx,)1^ͧ^y5閣 vK_PE?4i^!ĸqI 5#RМu\i;GЬ"jsGaJHFUf9J /= մ@YP* >3B p s j  ' )  T<wa#Z!M# R"L%E v(#f,P'4,c&nW("3I'!(F#>,ڻ&+֖&n&! #Qq"a V& o}6Fu&(GM?  +    | ,ej\LjFdS2>iN-ZIH4<,`a`H.Pp_j ?,DhZg kS1$ޏJC`N#&$22kT?Xݕ7dBb;vb g= 5l љՀ1tA 47S 8CbU7LԾTCL~mkBPH!F 7"D VĜ   (P } S` c ~vU|i - Qe Y VGnV+8B J.%-]sqҎ lNW T ʼ@A OrqM0^k=-G9H:a IѐIU d^ ͆d d ~ 8 &J%6^r 7 = kJK ^]!#G B0A&  hLHBdx 0 &QmGS)ڜ:8, }e, Z5 2B l{A K* S. Q u G yH d (x4 > &$l[y " D  ;U kL r  7RG lG 2 "=XQ<17J7RWb[@~ʱ}ZPwæ[4 EL薯a ]IiE^FܯB߅7 V=ĭUf*@GU(u6+Hމ!d[`|!QmCBU&%#  S! NO-e5C D 7 iCn v? p̬L -1:i;p4]y wtIɋűI%NR!)`%?&3!EE#pj#W`$~%JU u"=C1EÌ?&'fw y c ¥L[kD!48gV[>[-Jv**? V HR]ug bP4+QI RLC,ma1q/#v[A-{/%J(%R+1w 1mپR%*A~pO }ӦFSz}t{nI2eH^Gvy1˱`CU%9aLi{VH֒1n hq / h2 Frsَ*eDG7A! ]l--  Z Ta]pmc?Bt]$rW1 I$L'5|5 (9|ebi r]X܆A%p=kcAo]|UdR9!^%q met,:کREz>4 @Y69;Dg7z\RDf>4^9>rn@\5Es#7y& [8 P: i `-b S `q i~ o= n$#|FjWc=Y]ķxk@? ca v L _#t 0ʍ dv2R$È &b^Qt D& ]qBa~ ̇v-u|3F(p= aj{41>S퇰qA2PJoK,ЇzI']#K8͊t%q$j_SUdmvO 2 Za T! a ,{ z+ { T ^t  }y W f . Z&a .pK t#P8(iywOF65nNP&we.uP&?$(3"V ,d i(Uji(@WI>>Wɞ|}ptzCtL  KX<!c @k*mD_u֓qRs+R2$C L+4Yk|  4s7W.p  ʃA`k&*C3*m$J 3agU@ag@:\܋{{OJg|_c$uà|y 3 1 }r  !x c4Cc{?TDbcl T8q֍-bA\\1dgm+c.✎Op۷ښڎܮ۫ަ8g4oىْjꐱ@ =nSH>?5 HAmx|oB]]ߊjoH.`qars x|}`Mb_n[Z}tw,y\!{| ;M.dn1Qc 9M "<01ID c8'[%l>/,-.*)_%X(S#t)/$6,CS&!-&*H!$2x(-!&tXi&Lo%A)K -MnLgpn ۅ. {o Cld I 6 ޑުdȖC #\Nw!k50?*6d&Y)-BToA(_䣇0pԕ:}[dx}v&1Jꦫd闙*d輫GX`揎}>^lI#4 -X*oڊ,sTi9_d2S ͬ鐊t(8ًl.l\mS cà^i7\UUn&s|CAsTbiV m, b,R$Xл>^"0^!,|dtm/ah ߍ : i IL  Ru_ f+ a N= oAe2 T( Bm'*}>YB"/~I0s>KK<b [qJn9!| Յ]06 *D $Ҿ-d]:2Qo  ` O` 4 @ku[` `h[K dx#ftk\~@Z1l~!{f4[[,TPEc0b2' JƾnZLsIͲl3) j {x{gIR-YYS~d/8oN=.QEEjHǀ4+50PiK< ;g:om75?IJ429'kCAnnS_"ꏺӜmꡄ@|2䨋) }-d1\4M_fy5zO]Pa0.L.:_UW K~ z 8b i =(  |t W6 ` If uiF "JR %E 2cG _'²"|!9%Y$$T"uq%"k'1$F])q%t)$H&L]pPҚe_eu =?z'i玌赗XD m-O$`F\(y-3F)= !_B(mo~Y[PyJեc ][P &dGC ,zb\ tP p z35WW ! $5F!+P 8!(!Gy$x$%0%D#I"#T"$y#%WD$Ԅ%x# .1\z9$3m@w`094 R$ 4 ό r" D6 ~BNQPm ԫ<FY$bU?=zQb?]f#*iqVm dmI<1#8GZ?5ˑ;%95?p݅bޢ4AT\yX .{ h.{QL"tqaM,lJYl 9<0 FZ PYA J0   ~   LT 9fgF} %op ɆC}*~*̲2|OlN$˳}HF}5errk2i`l R7 wu=EgmI_bۭo~,L8 jS$X4A " =oWmcxy|I +U N`E;]S e<\" fo.b! ~Vn[-^bc}N  8 GSV~ [5:(o~86t =^ς{R>:v8 < r\aǩ)k묿A 9 ; .#eFunjS票L,l` `!*m1a:L+]Ⱦ )kߡsbn=H ;/#N (t5.Z]p]*5 W[ 8po-pnuDjTҹ>QCnvh~\Y4 ^ QnM+{ 3+[ 73L(AsmGs[I@|Y%2w'N_BQ^mi/ 'd, ܏9f ! H`  v6)F"&;gD=.`a= >ER %)].oBrupLJ>".c2Kn?lXF"8Qq 2 +fI[5l?/>mX=pj0Ԅvd UR-`0;WOVv56jmOyb?}  * h?7% ~ m 1$U9R { # L 6Dc"b/{zJNi]k>1N{76v \?Wz% V   ݖzM9N!T T]DLVA[r)Gp8)"KcKI|`G#DxMp}?Jk`B3n*xﰎ-#@@:?fH[6{CWEVdlJGR:@@N:'\m|lqK_Q5^_lD(t(_Nr8sh0SMSV>Zd 6?"kC²)tv!r M  3 *  Ț ו  . 1 zYj;n/o.O YMOú(GJGn%.u1%w9O+\(0C̗y2jMi"fy,kV6mK|J+WdMV$`*n)4GۺT[Mr G[w5s!W+J/.i> OڝYT`L T;VC( 2v   j\ Ǫh2~ g+ "p `Z%Y9qV ee |laeTJ`}^TOɠշ rt1WB( W.$ hμq5dj5,TWbȍO&Wro'6g@>ӑ9Y竗k+ }O*pP䑑2fN߽۪ܛޓ&`n=E FS޵7 6-ֶy"PBY o֙;Ul[Ԗ2#][ P)SHO"s q6'7v ?qT("K)'( XF Ed;Cdt$Zۙ&C"Z}c!)$TZ'( e*=&!Z'J$$$ h$&&gY(&.%z#~# #5#@"}.xZ6fȱ@7z5 ̬b'#9WDuM M$ o* LߒagJw!,pBk9%_hXbD_# w{;YmpPZz;oqV(#t}w\]%Sab뫚ꮏ,|YnN$ a30豇blS--1pv62NhqĹ_hM?.$;Bl wkxu9BAUf ;X{;=M(YZ=4IA1JRxWd⦿{9LQG;*2q(-Tm.=vP ڀi Jgo xH16.6hq; #iml yG }xٔ LG˜ Mu_ %    3[.M+ h" 4$%N"#+ a*!!=!x$#};'e&Jd%8$="!D$"'h%e,(-(d)2$e%Y ~$NU$l#$Qs|'Ă?Ba 99ri(?eC+11/.eYE]hI1:h)Wlc3䚝V૽(߰IGm냂>m 4 ջՖݚRn"]ݪ'փ-ב5ە_ F 5Okq뉲썎[*!2dV{Iv;zJ|${B(Hr&-Uf9) @9Be*].cNʴL=2+&Ǟ=6@ ^t Whvx 0VSaI 5hj 5X D?m$=Y"Uə!,vD ˁ!_/ c#t !%M yi"; ֐"*!:r@2Bpc*OOf: 2G\o+GC l HȘ NW]'\1^XZ _$y}Ec)NLcM <=WC4x9+R]8_=qF#xX U* G LA 63 H x wN k" Qo eޕ ze ss'+Wq c&dV2$ `9 LU ªyesLT ̷ M` 1Y6;!;xiqNQ*! ^ XH o .u R  `k <$ m g W~ S m&jW J2A  IBK y _ k O' J[ _ @`D YŐ1tBapOWqmʅMC%@vBk@s\pDY |b MOP O二#sWr+si(䬁](}M%j1N=4=MAvG4s3?ӻ`0*bdPN!P"qoaKo(7R2k*SJd< 6c2dc3hWGS 9 b  CB QD ܴ>n <7[xڭ${] FJC4IIj]-JEC_--h"iƉ-2Q} W @ [B v t.K~XU9SaC uQc^b|.[&`g6i"GܒG}|et^IclZ_ɂJ[ 1-] \̨ g1)N#jOmIs6 |"}Pj.O(wIRjJ.c[;VswUO hmk{ʹO 7"}u  9 l t (S EjR f ң  B]vEU&1G :iMr(yP?T9:`dHf3gW>=LТ/^"Om @* NJSBd4KzUBAKǷ>S$}k:,sojkqa`mw%pG+biS?SY=PalKgMV^(KX\Ng^[D\ds[d 0G3[&TBͷ H6j( `; - pt LFU>#FI Q/mYf/wv,h2RȲ 9! ( zG.7%) 07" Jy/E+mZm? h 번o[8_mZBe"漫ǏGox.T?%o&G*R D.b:HRsPC˃fYu1"5.jk4ꁭ\=}?컍,Lφ_1"U:ɈL6c"o|s}aT;q Iڗ1,a 8 !t^4I%#.vKU!`"%g#Bz%:# $`c$ڋ$#%/%'Z%%?"!dY!!#$ "nԥ;q L? A0 * WBΈRBk yd #M HAMO |e n(Tnn*Yr , >h%}6Td}T[6IN8j2:`H<Xh0VbqfJu-aZy[r(4"dE-^Pېл+8ߤ@hx;cbuFE,`u\2.;Plf(Xar5.,-=m 0+%8їCXrTq ) 33ݯL%!ʼriV<ThB| PZ GK ܑ8 e  5 M S;P <b  v< ic5'pa ou )Y4#4LuHEѽ * /'}D sg* #QF ! "O>] a.wuuY0%j><   щ _  9 X \ $@T;h~'z[qCZy`CTz`Pw7yk}0>|5'OuYiF3PBQ#8m.^S/Q2;Y׏S*jBb)6 *)#V5 SOڄ')-*q_(C2"Xy?o\ # 7c"ka s4S_W(So#;ߺ"W|%? Mv Y ] Ex> V= X_<B7$Sݵ ʑ\jH:NDVM qROg%Tٛunw?#Au'^g™J'϶7xA}E^ -:牭Bl{5"aOnjW,Q::Gt)!2]h`} 7   L( |  sD T4K1$>2 L n&iRv+f*| 4zn8F~ M?dlCQF ɐ*S #L ny|B,l8snaxÚ4$}. 4B ` g ! p p  _= I 0 Y w >;mbI  \9£$=pG hJ S)x=oPJ @0pQ_K^O2r4Of mD;b?%4붲g׌bfRNA;q0t,wRΝڎ?r!e*5lDfqBrqbh#ajL D| 9 5 8A[+n"D aRQ:ϋG.1d kDՇ^\ i 1;l;k  5 3z #`}i Rlˢ@5/ƆE#s.Ɯ%qB 8lS8;5n4V"OirVΞκa6@&y(Ko]*V%EGNM/۸8liEޚY &bS4s1]Is١=BXvjǹhs ?gyk1- u4   |`8ZT> g! v a  9   / x 4_HABlXRC t M h B !+S g & 0B~ 3+ U7B$ŲraQhxKK6F'/u'aߪXz1C`RGVXOip1E\7*3FO R3sנU:sfr(i0g`I1p50 a[-]\% Rit6<5X|Sq'?"u}u X `Yf;TTW%,5K8w*!uE#". >s" ]. % :Y.) Sgv4Cl:  Z Qb u })TOccvðEV# GNxsvPzcGLcE<2s&M<99ȓd>WiiGjBfK6GT&b:zgQ`+u#q$xCY;;xSxHkK$ ]C[?K:dm~rKq01$h:_N6B|':]/ q"^J pC^ C; c9 [Ѿ [ ɠ[ ) twt$t U^1AAho?bo I5> Bqr 6;w Lt *_2?+|^Vji[g%5IU-i9 89HHU KMQN(cq{z<䆹t|ɾOdgG.:r 9cox"4a+`d{ TG X BÞS`PPWPvmhx-~hJ0i=t_ qB3@~&JpC^ (  kN n6  [i  @.ɨ\J}@~1WgS4O<BGZФ 4+~{# $6 #q"c%_!;A"D(c}E V~<T$Dg ׺[<0$U]C?i V= ?Kk#D]LHL;I85C|s5aZ"x^> _|Nٌ4fO 1 @bOIGxr4Җ)ěZc4_svtpʼnxudguR1V1X0g >cD}b;m72>7Pﳼ,R팗P&|" 50! l cQ Ӟ   G-pmMn&Cf{m^8#2c>g^! ,  Tfb 59f A;  u { Ao 7bA , I  | L#CJ&*lz\FȀL V8  .'-vDAV;J.d# Y rQk :H ` mb  VALYύ P\{ ɪ rvo6qWR$vEw^_i-!E^|{^!"i~)wKlajaYS9NL;r!e`l$}+1F4 P!~S!;'c%ݪtq1.~n!x[GyYX6bu,C64k"}X1  ޤ[ju&.^rujR'$rtt&ONO泇 CᅳyMy3P/ }z*CkNɩ0D2 _ wB2q>Fy t*p [ w(N ; ' E+ ;:R ֹv cv I^1J >Co + bk 4AuuSm ,"E"= nSo+) +v# #0"V"j_%ʸ@(7 0'H;$c%b[&IU% ]!w9\] 'v 3O}  _b\[HsbSc'eFuAPZgO_ 1빵4%ȕ6vV~s䇁ߛr3! Ht䓤+W Xܦ4I۷ߏXw]fN'u |FES頿GSp\zU뜉3T ;uCj] 3u3p6gP.ѫN9)s|DN |; 3x,.?.A}4drGrl Lcm>}ύ \ &/ VډO h {dp v P$_d"0i q$p ##}L3 cL-0  &=;w8f"0b; g~Ļc=S f ^  Q% {N   lxaP]a 6EͦB"Ju|/<&[*mB/dLlvKvl Ly60r~`pq9i^'oW7cA,MX ,Bϰbg"fF& rq K U76>cmN~#iO BD7 *MJOR BM  ʼ LjohjtFK  M] !*i$wJ# ?FujdQq pށ c  ?  O [ ͫ }qw g  RmI} ( 7G\J D|6  + 8fVJ 9u73&9 k h7$cszx,@~֐ǠrBq3 tq7~*`K87B:@+>A7^,̶㝂y䅉%XIC ص hIk,Ǭf ^_) V@ ^  U % %_AQzAh61[9 zoM(c[<DՌŽW-w G ^ !9|d!8Ȩ݈x! jN:W0+_Cl ڎFSqq)*}d _-F a_Rtjyj! P} lC& D_  g  ^ /\  L L W O@(Q_Ӿd"yK, j  \" Zx O2mERs/9w Ѫ D8v܉X x!vA\R2:vס8/&쨪RGS*FFxb#|{1?@1Z+-'0#;Z*mRVjU# @9su}-!2]Lʙsp1j'!XoD2T G?,|*}k`R.'F4GirI=NZ]~daoTD"*W0V!5EO8r:Bm @}_ 3UD:cHT&D.@Ha קF>}(t}o^e -px#x 7פKu^v?37 ;(Æ3<TV8 0K2 htl *tG @ RO  DBY X B % nOP9nO4 |!4 sW" qi ؂ p m U9Dvu%kwlƲ0DsQ )F6a`pĢ.iZ= '/cOq 8 tK[뎠ouq7BLUEQ)bej(!>OaGjjvE|}\[;{78'S KF\M T_61:EYuFUQE"cT=uQ EO } l U ! - 1b%Ng+anrބ6 'bU!v*Y) n!]\4Q4tPP W8FQ=} `K9Z]j&3 N [N ] kDT<9=t@įVN?G yR~]G ]E0qMb aWV]f2 U p a p ݶ)q*%)Vf(W-dC!_yh/ @i~;bz9<f9?DY!~}8 8tfU' W; m k :4=Gc,7dQ =p HyxvnLeo >}>pQbh%>7%CoFtZ(y.?O2\PW$H;1ޡ_v1K(6gaj\@B8:ft#rHw cbEXNkeVety f-:ʊ/C#sX{XOseu~hN6]e=e)pmfsK8f%.2 G 7oY$XUfv!ca&YꞱsLԢz3p%s "{v; ;^j^\ )]`TWW" N' a7N {@qA{5< [6 ,,n v m ck zѶ ] 6) BJ(sG4(}sO,g+c+^sT  4SX~i%i"Fg%U{%A+"~d!#"l"!WK G@ % J W j0c%9߁:)Ar S >7G%ԋ@r5tE"u@ꅊa]{fyh‘Au4FO*)s.AYo~߁嬚;)@Oūc>9gsPيQ)l:4PP'gL"er_iT2ڳum-ژkHQD(a,"+ ߅Y]ȼd]OaX&4?S^`GBt ( FZ  = ^ 'z6nd :W`s,0pT;ȹY^} :Y4G݋\ U#YtزntS@$ ʮuVxdt~EE<Ê C mhK S m) W o &" N \mm* LSo 6HH)&=,X9gXMUiXc IU ekS$%LaؖiI=Z_2EZ/H#rxЦk9q{=hU K|.AB>_TzΫ2ApNS!( 9Gg[Ũl!PUB F2ԗ?n= p?un_C q Rl O s6v x i7 ; ^M H9W#xTEj+iXw|0oLYI7_9W GDgcq=4i2+)dQ?kD hh`D !l'{o}`ءm  V $  < BB* + o&  , C qe r ۣDAnSmg P v #`J H u)TK&CUHD ; S \w pi W ! s 2 ˎ MK vN ?  y  -A 6g    9UeO^mrmId6M"9'힠G sx̷H$!h:9M(&çEBT_쥮8"LTYf4u\}]ѓSaUht9%G}, r 4.#lXPx '#!a$$5! +Q+ k8!8" jaEkOrzJS"3B^ s l i.zCFT/oo_ A2Z-~{gwDxJxqS:PŇc\f+/.?0A 'wVx ZNq;} 3FoV7XYc<\Y@w.LwWt3|;\/Na4[Kd;A}t?)%WoJ#JpihˑEe@Ui kGDhzHJ, F& ~> I |* E}*3!]#obvs@} pZ% lq ׫A VU1 8~ Dbz  V +'p<2 8i û [ y@< y=Ap=~JȩPN2.dgB<[wxW -CQZp׮6sz.2uOU=5vK]dǨ *\n~ Ee_ cdhM vq'Bf:>ר(0- 4q,Ú&*j-ւ,c%gi /Im);{uO%NAGc0aL{p(;#;_gH oM o @Oot / W  ,l +X  ^ n s3 r= s p9YjKo?.; ??D ,1wnOe.,j mrկm 5 8kGM+p(ƉB&ĸCnTY6(dp='Db`Zc%DmM[ O NbjLρ`J\MnJ<I2sm<Fmd0KsBI;L~$'YkfXQ-i -+e g ` A  & %k +tv?5P+ O 6OU-!TˁNj \A1/Es |=8 P/2=DfrY,T[C+n_-_y+H3Q ) !/fJXΤBaPv*tpDaMGSO: k,V.A0{ӂ5k.?̤YQ0BV@6u76bR  NTET5I8x pֆ;,q<=_\ ts d6N49 ]'p*6zwx  zySE,d 2 6o  kC vLj C[A.,f+: F|0' [I1Rs[],H`T;~?A=0{SQD~׏:nuPohmx 7j891grBS>> 7  lo5$w_I}X=*<{bE4̒=?e5d"F06,b>Qzj&Ec K;B: . H "@ ݇, 7 X|>Q!V!1nH6>@f<q$F)X /_=Gr ׍DIO\44"t5O>rY 38 KD wJQ&$ F^νTAXM0mj /~%71^LcGf!) m<R/S>f@ 1O4{4N"?cCaS9oͪWD -\-`&YCH"P-@c~;9@t)1T V_JoeUa-^lO 9|7^YEv3I%>ZN]j* / WE ؛\UJ, 9 G K{) S  Td (7]   . %   o&ͨ E@b Z \Ln e . 9 |j D >@ Ҹ  t i h 2 ] +Y ״҃ b 6c8 Cv #2> n~  *@ D ~,nW E A  zi iua^ ?gu ,>  oGŃtfJ|cn404F`oYtw̲ G뀙QLΏR1G_7 L]m2]DʳU11.>Jv' H5",~Bp- FZ`e'916aM  >&2ZuQ H Yך } c L % `K 9yV!=WW)x"BQ C%ӗ"r"a+U?' ʰ,M;0;u3:ބ { ia O֝Y#Fr:sJ <^?Q"r 8#  Cb~ ua nV.K>C|-],xCmKA-sLgNG j 'u&q uG3^R3 fg$+dvb &#yp CU[AI;PH9,;3!-L{vmZꠁ '3 Ef]]7ߨ FH}m`nшW7m`\QW<L'u/N*l~jGv8+{ *El' . 2 0 I > ( n"b V E <` u9=р()]y;\{ZYr%[J5.ż Η#`0&Z. &2 a 3 ^\`  ?3 AY'>HF3 0Zv!FS[(J9F_Waz^)TegT`?'@Y8!L7PJWiDY!5O쥡E:Gb5]07RUmzm3~mx5הlu_< AI CtHTX%(e%h|C @ .=Mg & *x; O SNz UK  !K N3  fn7ͺ8;XXpfl rɘGTyZ 6 H !pJ`r8  ]Q7OXtE]I):m6 -g -֜ b oZ 6KhxՁ _ W DePpDP$0= P2@` Et,Ue Y$}8:q:/MOxS`]&.8 7 7 /[v Dp=90f}W%Y{x2o;տX{- )Bf?( #e“O_ RA~]ZM'hDL @p'FUyX xD*`2}PO[YvU52#0]#!vVY{0uyf쳯1:S a9s.u F&^0L12b_s"oSN 5b !9c 6pm/1ERV0Ii h _ ]˚ ?v O9 p_|Y8,n2'/6W#FrZ sw0,B]4J"Ec5r& m%s_> *2lenh]d8/SGy R"r Ơ a -8 Ii|!e84̢/Ͱ6VxYMHkFM  'a_Z]=pN瞍{{@eug5E㩧㐾ly;F2rE8#RnHP 2卆SNW7hd=yV Rn<o::~o--鱾x\  P.,1GϺJ~"iK/-c(+qGT {wCq {l{7J d|Z^ڃSv~e02:tf8e5j}ӈU82!5 !9&P1;g. wM y\ ڨB.VV~ |H<. ʡ _ q . ^ + ~6W@;z pBr5_'&_}}h?4"k1,V &WwKp!)rf>Iko.uo1բu;νS!@|`6-씟.QJ#g!P\}JGnoז7r¾e$å&  !,XOM70M_0cixYxL=  pkJ'qCFPdxQ n: 8   ! zTL v Zч GV su: 82 c J \ ? 0 ; q < |Ǹ eYA &  ח ׍^b/P , y5{ 4^ q  EK y 7 S Rʎ | SCd Rk =T P w|   yֶ u'l b ~e<w֟nqcQIy7Mf%]y%ef9huo;60zε7vI?zC7v7tr9)d綫篴uH-p DVIogߋd 뢱4эPen+wC&k~O^1U=NCmA,rQ2ʬUW{ nVoa a mX neU4 7 1 1V ;Ie  e +*q xeZ*| o'C9*5v -4S")Q (&# !( Q *n )@&rHrцSY g1RYw ָ  b -1JeU zZ3zcCz&ARiz ao2s1rQb/5E< ZJ7~ yR9E` 5J9A*1Et5<_P쫙jpHx2,G}&av3KCI> h,GwF)WGR`fh(&GJV5Z93OdaP  L/  i  * ~Wabt)%k *͘c^ &V 1 w > F EsaQ& V 6x Lw ŝ :u ? X3 #=r l` p>S']$2tMZ$T[#"?M4N#3 TȮ7ўTHYVIl.(|yhKɛrEgHt>CznS\:*VnZ]҈%Oˑcd T<)p-}@jVlE<L!&IEl g -6 u%V5/ { |{ {z#P O |Bw />  B =V*x)}oRj4 ?m%'r]+ M+ȁ^WDpb=?!j()"5?6QK K)OPZy'0 rqF{& WR GsK1H3(Otsc9п;t & # . !m8tXG d T%ui4|U+GC( 8 _ ' >< *  tB l  2 $_ muH ^QYJl&j G?NhgG}_u NtX\ 3MtY?HޗZd&pcB|Wa'rt/G]2Q+Sr*0-AT("ˇc+‹nT1}k|.bm\Ͳ_Jx#Rÿ=]~_Y0k L\](, o?UD9[rv 1 | * W  U ZAv V F< o`O )o3B*CG}=p3y_;0FFL.N N +U%<Ƭ~JjّIdYmi>kX@?AO;Hz"}62CC Ue$ݨ<w Ti$*, Mz Ϥ Q  QDj I 8. r0 U[ Q Q r oX PUn]lz$2#T']u " bD+E  tzb[8O{"a+@*& 4نl. .U+F3R q)!nAVta{Ka/<  g$bIEn PerA  bh. &\ >QA}cB(#!Q;E+:k!m$uX{Ld=Q,SZ?Fh:="3$iy?~`Xw 5OC:Op!5Ϧ : UֲmU5Y^کT t4\P9~rp]g<k%5N^2өkCРFx1\x[ONn{0~z{_p킧z~1EHl'sMUў8VFUzY3 ax {8^/atIwb9&]'HfzQ * 7 8ih X."v1 ]#F?%j`D&F<A+ N}?shte3ɁETՏ0X- t5H$ZA%L7"i!rJJ9ý P_  6pH u )֎ i d J>H 5ԈvJvb[Ya]חKTg=u;"2 @+.7 %B8l)t ]MP#oM.傈T'mzlko2襍(*D*$k9RWMvH~z[jt?6g9R,6\AOB|W7r0r]`%D}I, >Qt*S7P$_G'3]NgnfcE22]#  2LB A 8 &$<|g!{c1Ԕ.@Si8OJUZUWGnwL:;txʼ eTZiSiQ  L q9&':r)h<9AIN   f B P} K 0 Kf,&fvtiA|QYV)^k~ xsw!x9Au4L!]JQYT&0rDQc3:MM&GSIO0'%R9gfD# z*Osfa+<Kfla !K@p K2P/&?!@& y,=DL4 @_G0m  h6MULjÝP}JCG;מj 5e>e 9X o M5 iT5 Ǚ kU= b  XI hQm I >) W f% W e J Ͻ S O  _ O< ?L#z   XO Ys v  3 Ox  `" fm K mZ&  0 ^ B.-X k  ЛD $i^ TbN&Y,Z24ÑQ(|#!{|n,|#-q 2S{x9!'`At/UAK.:s }[U狠}љ瀿 $<i_md;/T HrC9gP@?$Y{Ԕpv tt='G{_n{Z9P-F<]])}:m͌e\U :F  ZAq  "O + J '1  ( Wf,9n}IofWϴ}{c4! /Q oYHC5X@l7V1&* Be a x  S C 1&+Wa]:N]mB,E%;-x8Ż#2q0-[($yCn|o@H6 (h\xj\"<;9Lc\g#H8.aw";5r_,K5uzJS{뚖 =u~rID#xCVB$mW%#k&RdAT<|Px)n$FwGe9b$2,  $& D C :  4l { D(P6 e H% :xb8 BGA v ђi k. D B / dzof^(@fm" e ^ Fw~@ sQ k _"  S>[CVe,  aooam4kyUc]@E&Ih]K>˼,c8ߌYL?dҞ@[& 8{)]BUWw׀0txX0V+Fu@ 7q9G59'jH^%V3,PVZO~;No9 v(FK{$Z W V ? Z q k{: &+q f>8֛`DQ-\QYpFreAn,I^P=l\%K{gh.=7= fcX,`9:`~g%Be=^a]qd[xR%w>p|({LB$W_st:~WT N2 7Kk^ka!,LY ^Mi,2bD~rTbǼ:I)Zq</z }`֡\JG Th ]- $ #  E ؓ ɈD $ k okZ 8) A_`o;ֺC&x[~ hE=^EHK!N&jrKW+aJ˲om#BF2%,QjqV%2;F,H {i MgX1+ 2Y(nX2`zg5lE:^* ,f=W2ScGr[j^nYy9 \ & 559V;j<.=آ'X GS {   h"  3YJ QM = L`TO _u P^סBS[!h)k![ Q59P , eIL h}VnOm֐@[|N_U&? He 1cD*=aHc< r2ISH ٜBq8K>HNPWyZIW-4.TT01My\~euʬrmWpAm$oZ?p-B!R^+j)|_SJd~Ncq)0vdvctLM |zmR`ux$ws bu ? Ȟ   Դٱeo=3&/Ù+%nq 7Q[ ޙz}A A hsiFy  p b L1 o \O  m׎_kM C+ \pC#]IEs-$S6Cq-Y+ 2R v]Hskp'RkM^. 9 lWG}(5:+NITІZ>Lz=~']=Pv\l[p,_MHW޾Q9ol9+ 1KnL PDQvl ;F `76^ dM    \c  U  DEݬ I]l ,ib#X+6ɟ.4D'14ȞXxf&69o7wep"tM˦]4!'X]Fh%J[ ,G)I0=8rKM?~QG cl ,V KWpTeki= k;6$_{ 6@Zr jٖVTb3j=c`3.H+hv2D B5V v ީ bL!;~Ldbe *?d ׂQP(@h &A+O4PWsSVe W3hf7\86?{7 Kpo(M%ve&og[$$"\p 2/ljT] |M5~^T mWUHeq2$(-: dKvj_ }ɤiHRW Qc7X3+mxrEK /  % y v~ewY#8,*ܪ7`gu}5O}Kt[w>=u UDYC m1 CRGyCy9RB    2^ K d u k1G*NTJ}wT#6Ɂ @*dsx ʜ.%:,QߐwsQKL!\j0ogB76e,I|PuB=J(fҝ%<;)/z.sn~Jn/f@\c$APT;&QTB(S9n((<rlF67)R 'nTP\SF/!Yu׀ҡJ˦At\3JϗGW ŻO\u#8YI pa~-~\/v*Ce w[x597;J:zC ,Mvx1#(>\-X B0K ONG hjA !Q hF uo {  `4m   ?(    ̶ a U y k# ;  $7 } b PHh  ( Z~ $   g  4od aY @A  o7 Q, _Lj @ l 6 ,  }UAh o  t"W -_ \CZdz8U3 ňsK'~h7~66$aH-0-Xeאָ\,.߹uJ h 'x2fD % 8! =$~ F Uk^aBldzĄra xҢDݭ ViL`XwX σQWͺ]j5\i } 6 n Q  \BY9=}<1 oT-';@u\&?4]m&_Ri:cm">XdB(^j{!;l"<^.Y76Qq;PCK$wiTv`QY[H!za2.!?xejkG^x7RqE+d#:&j54ռ?W"'0Ws/K(PЇheq:e+3p;`^Z[g?p6 λ  ^ r #  ϊ d]W(Jsl 8U  %]=h81x"UD ֑E 0 c2 ;  |EEE e= E @"Z A  }T V;Ql!; fp ~- hr Z { 'C+7exMQam\]r9-m'==)DjQzY Ne(u9]?NwiT::Hf0Je/:}J6J^$AMޫe1mutJ E3=]\'%7BG47`X7*gDTAPe,‰\!H\ 6z Y? a  Q}+ H >d:fibdA˹1sUK1KH/{zB+Q;F%uhwD# qM<k ,q!^vM# 21"Sݯ#@r6ij|{`TNOI{}-%d @{S'~2z&vw  -ݫ"ĝ("mw: PLIpp, 1*(n tP|fB Xwe.9dW)% kU^  r?  :u a _   'M { Gπ"A?%>]R62VY0yN{9^bF4&~UQ(]G[[t"?B 0$(_?QPFQP0-K*&HL<2W X  N8!Q'vjje, Ry;uڣ bv4TK nw TI'toE+f;@AB+Qv dn_si,Nkj LK2'_ 27U+֋F%syQM1'옿jf9wl &d_6+3#CO\4ʔyԦtQ

J4ã-X,>7-Ϊ|)5# &fpRt(K Y)$  #P a W  0V Gd X`l 29  r# Hub~z[.vTe],95~ʬVQ}(j]tf΂U@+Ai 2z"r޻ftv#X)Sej : 4r${=i~Wjg`MIzt JgP` ( #6n0P rM3\# '9 g;l M`3gSdV(1N)ggݣT?;-l|A,r&$}CIypӦb},\=(tt>c2)оHyCAry E:'vρ>v^~]e|^SsxX%bIGQu;/eSq 3 ZC֦N#Kv{pHxv~3k :8eupYA U/ 5K[7i-HA 1,MD}*h,NTSv$?HݦP~};?*$ +PU ( Q X i } ӕ 1 AA i;K:X  m GG a J 5\ó,8|(OLӲ!lUı$U˹ LH 3@ sؔ D 4 % WB 95sbq|B2joG"5|F/)k#3YD.]Oc[pIX^Q~eGv4죑s(@J\#[Brvm)N43-S_K]?Vo8HjͤΣtvt.@*:-( ^5l I[3-Sx(y'4FtJ.gqIeOR8_{ ) _7n @ $mM -+ Po\o.fU pD zC%j m 2<] 7~ Qnd T~ | } l [Z2 FOz7w!l57$c"{q @Z7   Y/  U9  J 5RF[a!A]*4CDxN)gwLBoA8,4o Ui+$.t_T7"+>C-zE:j1XX_֊q~sb+ʸ|'^N(N"Vd/zdw4+QF,|[Q]DePcIz\IfsTqITF}[!>dR:%0Ouf3\( .&|ez FR v `X6D< ¾M K$ p{7* I  0B 5   ,i =? < T}+   ). r `&  |0 [dJ! t v  {m)T#" Y5Uu *f JQ 0BrM (K ԏ@I4#R3xUGg_,;c[+ьMh/FLM~ ˙;jnD EXd/cB{֛*OQMT*ȁm|Z]ag>3E&ێ4\])),2oh(=m=G%Sq9Y`Gf\ozex3ciim *1ݐSR^+yHk83_A F } ( m i  W ]U%@$= N:-L_+W)&InCnF8n  x ,r `9  b0}_aDMzɇt7lڼ<>TggfÖ64J5SU%0ww`8}0ld['o])u!k>7 R0sNb7. >{6=yjP{~XA=v:eg6opuŚ@PzH-Ш`4++W H §PI (#C"B? .8(!}k/TXoFN & c֥  $Hl z L '? o   '58 W pe? - u a ,A<^ z/Z n r@ .  fc ` r@ )a; wB I` T0 ':Yu:7HIFJ[i_2l-D>$N,QJaMsT5l,bFY HtrGu~`x4Z]XgȻ; rP .KH-V]Zhƹ0E= \8\fLj/x|^4 ݾ2 +<Gh8 LN Qg i  a S 5n7߶L #? eO|UtP  TPDFhYq ilh3S3qa&DG8~cZ0bqc@DY+$T-:Hja;MO# یNE0 fB# AK,o[Xtm^g74-P:G%IRoEaIW$EJru)W)aWZH$ *?d?b$__l9?ZT kDqD͋PY8v  {g k; C / IJ ;7qMV!% &63@9m(+ZMZ} QW $@#PQ 4  >^ BtnBQ -}eA =|}>F!s\~SYU S"t ^ 'T Q < Ųn G ` B Sl- hc 76M Z( 5QJ '|^qj u >d = > sS( cb ps J@ \v 9 G,p@X s P 4wT#8?2 /Bj Mae iu+XRH~\5]{k.t:EeS8xӲC nc2#~dSۯ };#مY<$ zlHK o`/E~Rk;#dwEkH 4uEqPI%MJ}i-<3 JEgMG${:_[$/XFM m:IIsW.`Tb)TmHVJS '')"Squ3(]| 6514pLH޶؟c 4T(#{q>zM`1dnmo Y<8yOXUQ=-Ypl8fXYX^U˂jKry@!<&ymAOdB]%4RKei>b1Cp+!gB(b8qsw4RZI"#gO@ S db `$  j+_ +x mɒ NpI4 D q+- v]%  Zv ʔ BT  > н ' @ ?   )d ͭ T) = ] O ~ V 4  8 6 _ A2 L .z(p$[%ɫOA]cS2! )Ì3XF H?q" Z{FFfmgQX.Z dh9],y12Fx[Cp}KLB'us8+-!f74 {*LOw,`= !oub[p>E|)5lVJ]RW@qq7F|7d|P4O7~"o*uڏDmTH 0 Uoyk)AX9W[|ClI&#6Ig;A, o e=Ziuo<69gxR[?&*T:zbJm d0Df k K[KjV. % < 6  sd  bqEm A< 6 ӹ y '   B r  ? ۊ /H.Ou~&ƼPA~WD?))hTE b he`U6SQ Iٮn:f;  _ 0G6r%tnr  5-aSBRCȢiIp>aZ@ .C g {y' , VV %tWK\=6r9F{zQ08x+W3P}c>,s$R0Ը<Dif-*bɌ?%YB/e}o^"-Hvg/&nX0:QM;Sߦ4EV"GVcR / FbYH_ysx>Z/P! oKu0h?mHSIJ4ӛ`S>wlkFj1R`Rtu} y GHUK4 I -I ^V mW X , ;; x * v  Z) u ! k m 3 XkY+/\kxrj3H %OI9| @?)s? e71 e(!khy  D1D |3 ٬g=(?O@vM3]SwuG3,RXo$kJ uMe DAR e<|ijr6w#!,z*q0)>^<:H,;cZ))_Yx%S{UHBS<BLJ"6  X@1/ HD#n87]3_, =FI,!.a0~gƨ3oZw|7picDf)!a'fS@C ]טվY;q#VJ1E6GD^P_gh6CVhuuF+9,ߎhj a!\VRSmrt>d+?}zug/3 uj D[x:v@)c }{%9F o4G|7{.x b# CrQg M { ]: ( 57, S |g8= M1"' 9GZa _6BӃ2yi+Ĵ^KE`~_vr:,)eu=9xaC^(?xH4Dʕ45D h Jl%>;V;a0Hb cSbgWCiyR'CKiv0f=x}S!E?~E zOA(mhM۸{WdkF1¼QqFyR*h43_1 P^  6 &  N = >*nlz?GVMIA:ijj8p b 8 Ks`7:5BkA syb|zBSN6Z_z""_UZ0 cxu5I1P@2"$?%Yk]ADۑ f"pp_VBuPRz EIn? Y!4z 0 ,A$!$zRL-\QQI@LNs\u?qLk@CA{_db1 _. ,Z W= 7 V <3Z! vL< c= ؁ X v  ٣D  Sjk Zv ͧ x> H%L U Ylp 0Y -,x3\X_tE`  /<Or6fFW=LJn^Bc#U'2}dS Y)sZ 1 X[J:kw|N- "Tu '}hVQ\s }lG†LJPZF8^K`/\Z_- nn_a}[qKg'>,@7pS;eE }ʪ ] zQ c T V ս 0r TI `( ?M ş ^+5cCy5T4ei[>4n[ cR~ENdAF_a Jǩ${iM4``@8w\,;R(Y?n9.;F#iN)9]q,(ngc S/GSW!M)UQUw.,YL(53 (h P<&Y[/8M z`yi~M<8 :[ 4: n#`P m DՅ1{bq.5$Ox'XLCx2e& ך KKJ6]I$C2 y%+,h%-nϏCF6[ i8mV-271F$;P 4yZZ]N:gtcuxJznBUx$=[D`ks"p:b/&=(~T&;G))=|&-^EFb j76>u|Ig P~D 0i mkg ҩ [t R v  /  1 v  I R Ϻ zV `|]  / z&XXu`i~^8Ph6hkW  ӪÄ 3 ;U v ǽ8V S|b (nGuF [qO42 +Q-"yD]v6,B jLYr!eY_FCG:li"/yRmbKl* dAZ%j+\B-(Q3soBg,/%F9%!`&lrHoWuafe5z1 =` W9c##R+MEqN2n-܂d?[h"C~ 'vCB(bk# G Ȁ}@,t1' ;:Y ~s La Lx 2>q 3QF {F A: q} > H_(@& U "S 9 ,C  ˎ  @ G\ = s x57 0 } <  #Z ll>[cu<` KE\ln dG4S2 vk=Ub%N20o"4d˵ 0܂luW =GVq$LT0Q?-8#k_[ei]2D#Z C4=[\|0,T$crP$[NJ]Go"0fe~O2 .:2JزDi4.5MX)w!lUvu.>e^mPS_AwOz4h~-8͢a:COgB* ;9]PNEB? 5:ovlQ t0 BK- x |~( az ml M % X #n   Kk ;4   z jT  9 OL Pz$ _]  k0*eXw("4gbyc -W#) $}#|,vm.eEg)|F)L h @1:U\2-D}kGW66^xHJi @ t kҙ+ jXg ò4_X^Vӎ'GLq`[V<hV4f,<)4SEs/sgq _4N^erӉTY_ևs-CvN/J+3yZ(@1݂J ̩u&I/30q.C\&i!%FS}Ӡ2]<^,A -HkmRӸ [Q7cϾ-[7)2 c -1!@GR2KI{0܋QYq74[{f,~YE 'N`rIڮ n,a:7({ee,6fR]1:#6=&?8c!9O T nf+Q']jY^NmƕKfCGv^S/G$^Wq˹5PPu-^KI A>6XQXE K @Z,  IwJX#Mh kX E V `  B FC PZ t4i l# b 1C? r ؊a 0iV 3T)+RX#U{mJǯqSA>\3zkZLngYX }Wۈ<24vAoJ# 2K[.~,izZ=( *Dr bbrf 'V ?5]ڭ66G~ze2-mjZ_tN%S y3;Mffz} @}24rlqvOY@lpU*^6RЁ5$`IWwJb c sԞʣ ,?  E Ԍ `w  rJgeK vj I 2$ y 1  4rJ_ K3NvvV: ҹK8`me ]^|z!n"J`=DY j +p>AqOLHA td8%RKaF;f?z)b)zxKq&A\+A*:W,nJ2vAGV&ѤI4}X(X%-ԟ2Ga`bvu'B8PR<9%TY|7$^r%g%AIyF,7S_9cZĂhRIО  K+  ʄK <^) tdB # ׳:% Nq ~D S ~l ep:a,Y[tm(T3Q]{_B tW. wy{Zu-T27*lUn:/Cta?ϓ"|jyGLCH0 rSK!j }]9.<WP,jA u&Q_@`kMAM{+me?4h>  z$;Ov@/pV.kr`>;'tJ d (nm9D~(LaH0GT}U-C1(sOCc:b}j$,794}E$%JYؽ=2. ]4-mݛ0 XEi3"oŠ*[J߇,Aaj"UtEMR=sW&6JT~"qa&i SR+ 6%V%!ESV ~;W\= (}'z{\ $fwa b5 &DS d Z w( ,C  / W ; r| Z N: p q0 S}'uU8}> O jxVwJ X -- 1 &AA k H Cin?!0$|Y Ux{e8;[,J4=*CIu!ݩhZYTy"VlDS~ˑm(aXqIH&:]*sLTZID!J"om]~{, R!*fX.]:>-D u1PuaBRό9v~$|JBJZ3#)`ifOE*4l` ۱y  XH D C @^d>Edz1cs Iz o< )N hR C0 (` T 2/3 N) O MKpfwk{m iXx]zgE|U<ݚ_Lr \~u~h,s~N,=f< ]z,#k.kvy[YSsNkJC4LTSphsp5\TRX 7Fd/o 81_iN#WTGz38_"1eA`dnxT/roXM|xl D=n\VE$@=hY~l0(".c*U}/ O\V & u z -w)fSn2'GjZsIA0@ / y DMVL="<4K ,bHu=@dSz5:G'Uջ !!\}V!9b~&@ !נP5B0^$KI^B*O)i 012,bl v+*c1Qt"##7eq9''F@.MarK SEy)^D!,@(z>K^ޅnswa(MM 5"'85".- %d 3  2 * h D#nx  h  x# qs~xw-+ZW]}"wCZ"@*՞ BR 8. uۘ"9=B p 6q =  l; n \"vJ.~{A~^3?T _<{.g@N#H5#>(G7MtQ1'7= 'Pn VtSħ7 | `no,mvWsYJi4-}l3,go rxd&6 _.-j8Ѣ!_zJA4vJraoAuu_jXiIPc53 x7%GN03~oǛS & .a4J,fc#)i".\<:9_0, s  /,56# GIM)NrD-1L{K39Q~jNU8Az  [ Bw&#% P  j  + } =u  W% E Q X G2 FY  z 6?]  x"U s= x %5kqȣyMbutʑcSxetrg~c$ W&/Bqwj%ZK«.puh9VMg8R }R l;FFhy94^4@0y?FӿyD*#%F`@cZe8ӎ R[@w65![:M%P;j} 8I-~ P0X o K7 F1 j e j  c  _x 7 |G T o q: - =A} MS' ,UMzqy=#@QxY$|  )R XXx'w@?D/6(ːy Nr7U|+{Чq "fzE 2JPV~t3ZqF3'DqNsn'-MqG /*<0v_UZZ6K0 +>B!CrfO9<}Zo.W/FT=N*jb FF{H^+Q 2O+gy8i~=Ier2}'}Zl zcH$pNiKopm$ytP5j0V\MkI2~] ܕ'~ 9 w_dvD\;&R\6,[BKi-$!qT=)YYi9-Jmv÷`105Bt=Fb"^>y<"ad[A,- hd]e8`TW&Gq{c^{#e͔Dz-q=kTQr /xC n  K d ~ n 3j; 7}$   04 O= #b0 /| -\ \Ek5lc%'Q*Z\ ~QD![[7|mIzaKKgw~$X@ s :))l#/]evB/c;q'HWusSPlE )S2i`Sm -{_E)0fcM6hpwv Dr> aWX,p[b,-31, -~6.xs1# ,fh/N )[CA T /" u%} fM  O7 "NK(10#,cZ G9e((Mxd;E(.d$XJZkp9c*c:N#R>^ɤ&^B vBZj[Mts^h jhxZOx2'p_&-4wZ"!NErεu.|#k ]9U q\wV-KVHMtKTA3! X } RI&u% | 6J ~EAn* :! T D ~D $Tk :r ӌ X # R, b1MwǂD\0!V3oŶ;I3"b.+GĽBji_x,I 6w\I(I*@kR$\$hED<0ubnXylC4"(.$>K;T:{61rɝJDfNA t`4``&;H2hmÖOH#d  }reR  J {  K> `̶ ; `b.  5Gx  T `Ӂ =!` #, &[ DzP  !Bk LO \ GdSc-Ot(z}`l]2r3%gVz1{WD8nR$B&*XT "Q)13V:TlMs';b]eq(x W1Cl>o-+2vE,Hy< $zcSi˯Uz2"A ~q0cѱmr~>^9}6K.̃xbb@8E %e\atJY/? =K}ܩ3{xpQGI"?Ens]VGw{[1c\? x2E@ \+kdChAXTnuϕ.rUdž}\c܀DVӽN%bd[>Q j_M?o`a}{  b$dXqF>=wHW  ]ZU3/ @07 ՘u:s  s ~8  R s &  & N z   H n #al G$?>n kzsWj - ! H _:Nr,$Xܪu_Wka$Gi.H/Q&myHv oT740 H n[E2+lgM}s[!]:[=Z^oZ8|:W[~Fk:VUi>cdyK8:SZv8sD>UK>Í=ȨQG+|QHB !xu8*9S+|&kb#+S/(zE=V Y0D?}#5lzaf1;=r5WJAeQ1\|2,X -orngB85,!w,,֑yJWu4T1vaJ[ѨlrN3ʨ$60 ^sYii%U PPIm IڏhBEwKEgyuc҈βc81 0IR$\v Ja_NxZU4Vs4QnKlnJ]6/i~-zyM9Ckj7ya UIIٌƕ*D>J+2dZ00 lokV 63\ZtF&0t0a1>ƔVhe Elúw6pKzNrv7 -R tMV dBj     20%0N/i^ї C NI 6a W ] t Z0Vh@!Az:_S9/OK3}:| wFSJ_mVaHxh~2I!ux*xM!b[twH>bIIl  ii u!vKbG wGH\ݰ5)L>Z)TY'm6)jnu(=LFZpIo9~[YOQf dEDjxר[%d/V~;M1UAK[Z1C,זc"y}"<+9wW%rgHWeoeiPuz<{-0SYb{KoB͉oWp̥{q= hˆqpo&vTczTZ4aq&/5d OM\7I[#`znJysɶȱ:moxs*H"dS"e#68^]M |f a s` l dP  go y?6_ b% #c[ŵq~A::'=j3 @4F)A wTL*qcQEsyi2 '*K 9~4H&BQwT&JLIf ؂]TR{#^[?}V=QfWq=y~ boڳjo*j "$rU S#kvޗćPfIqX mis^E(c|}GqO/s7p"Ha~V*c1P ; d  Q xt^  Ld ƦWz>Tw3% t*3gxum`V p]0GRp#}l{j;n,&(  |QA"C&*t5VVR3twjEwwVVQY7Fџ #ki_Xtu'tgj[V)4hfC~NUA8Od>GvJ`+I|N1g#Q:ſcE<~Q 'FooݿC0#\A4[DosM5cTCTϽFg1 D ~ n !> I :~ P @% ' h> ؟ y M& rp jfn W8  BMDm/OGW/6Nuuigfs;74YV*3%L~ )k%hBkù^J&)q Ao{ox@Krw K!a^KnEp CN pPB;O! F#@S{+tuufoz0/iW GX  `>$+20*Ҫv$=c?d ٵ?` :o js  jbc 2? o a^. @I NH ,! r+ vp}5r  OJB4ݠʛ8j1s~}xwP!A5@+|Ze*%~N&z E-3->YWk^fd|\x,.YUi=X<+7F/9i_l"*d6#=v28+ 2 M%&6P$A}`E:c`z\PPzHf!DfXlWs.W<>TE":^A& ch=;AgGLv4\+Tb>(OԪAђ=TS6y2{f/$mkTp-A Yc+z=i~#1Z)P$WTd:rE*fk8Dm*9?jTd~| $K!+x12d;NDVI\ >-PvfMER(+х0EW7rENu.jaݑY+@h fU iG 644 $a }l h K+ NM~8 ]/c & N + N d=jfC3Z p[ur= @  D # "A 1 !@ Q0`֍YDCH' <'W;k;"[AYQ{I^\(`#t2q=DSkgh7uI,_c5`J+y1~;S@H#]HƮZȇGhj&JyYT؋1P9Wnb|-rdʀ)WPQA%ooce?HU;ë~/dOfR 1N<~j5JGlmXcA*zDml0Êʞ'")`;}fu+5_ g:-\Gǃ$#oCC98bDd`P(D&-p6@T ^9[9wxK.pBO\.]=[vp-7a#3/+ m.%Nd^|%Q,hqY',H:"Uy%bg@'./vC GSzIqa54uvYށ}FPd;؎vPr) p$u6k^)r2\-9|$+^&gY]!doB17oi#.%ţ+~Zӑ(ujn!_d$7?O :"Pc0/ jWAt2KM̫ۼwmJwf L aCcJ^\-n?]kZJNr%WCBAf&0)*[ s9 &hԂK  :Q c  p 5   FG ǂ Z WW / J J ؓ -|A |L i JO ~ // % }3 y < ~ /I ;BMI aEbPHTG͠ipcR%gce-umȞlh#!?dӖr&[lrgl^o-w&qeJTg\fk.CFtZA1""&> e|h;N&5?AME&SJM!'f5BX|3Q ^j%7+,J|`@r. nXItcǽm8e +&X>fq nrv7wB(o!.ec_E^o9IHQt%<gcrOv4\ej8vlzH X<}]ǔpI]2)#i?Y$*)*HX& & T$i/_ON~/H@|fDIf^[ofCz/^<9Mg{L5RQgUv.[T2 @\2C}M]y0u8|\ܰU6~E^baZ2=Hͺf=J={z  3 * ; ڿ : w 8 7 L ^s` YT + 9 HV?E & Ild#7+[1.*_7v2@>B t@/P2|WI/Z'e4Gv]@ww9U]O~@['Pj&,$ I?}S'I¾%jAc$/c,`n M#[: Nj5jQD߈"&sRAYsǴ*o= & )}Jw+ge"5o%őь|.ϥNj>c> bGz[Nl rxiz mP {2z (|xP E  U 6 xe XBy=J5Xh9"A^>$QMu6XC=E-H5Rvx*DFmk_d+::Cw+{ISl 6C%3Y W­GExLJE_it2|lN^4ơvM~_89 X]!~P_hyz &! *M:S#O6+Q!UZjmzEYtw@X3  yB" ϓZ hQ S \c 4 bb3 ` 32 ?y  ,z bGV kc>)&_;;$bZp;2Cs*|>3k{?'qeyJ9/b -up0jYPAm#}C#APLaabWk;P;H]rG<'q֭ES+sb>S]_yn3j\c$>_n~y"λYvoIڗ>#{k,Zml8^^5,AO6@:F؜j"du\I\iA A Em .7 Fw- &   < 8 o }x )RTMf -rg']}yS# K"_}loM!Z;@qxg/Vb!=zA*P{Hf)`(Q)ՔJzZOFP-,_w l~]/x?.7($ՎD9B)۬^=I:^Xb&DCه"`?`i_4A@uX6R~.3g1t2Per݃]"T6GUPJgDpK":Ch67>{WBD-r"#L^yK.7QP7-aY&CO_W` 2Lf SaD o e 5[.eFd /O=8 ݖ˝ nߛ Ԇ ,e   ja` i 2 b(- UQ{ǧYA!so:s6="08N@2E!!Ȳ<6Kk d49n οc7B|AOrҍJ,\`OJ1B]>~Ծ)79f}5.v(}]%0xJvxb m@D^8q>YCF~sݺo^{ ~YQO*&J2 {٪ AXKj͡{HN6Ao+>X.b t O- CG Z Y E > <3jB=D y E\>5(b4!=mft 2 [ =NC ]9  %J 7Bؿ l&7 |z $ ,= %=0oHPM7BtOcDq0#UlfW&"qIs8&kEAVhf^d6QOK.S#~,Sm7a_a#%FDQK'}$%oM^@}AB5 12L .b!jFN}W11\X>U,onM>"092+,b *4-P$NhhTY+ __yp;eiiWq!8di޵" CiGD[.a[My7N[nA#6Lun(|>yT4IPW4YGQ0NjrX@R?z6)(*:y8k72d` W ޚai-MZo; Uɿ[Mt9Sek5q\F+ȟCq{M^vR<|7P֒8^}֠-!3G!+^\IW=7dBi6!*,|wdzaF^nGH5nGz?+ 5Czz ɉ+C@jD  W U  . d  2  J m d q [ Z " { d 6< 0' O *  ) M a V ye 7I Ɓ W  CipJ.&NdS:'<&! dXmM6bސw0\<Q S.5?3"K1atN՗M4%#L77;?S91dJx~{0/įJ<EV(FNnQ+ Bq/!w&VTGc!#A-g]/Q\6@V0;\h$ &/%2-w0Natvˮ_`yc B [G/m T0T  ]x k v I5 xa  |  "@ k! "_ 9 O VCeFe8l>T2bT]12@(c o3dbTf$$nU50 M R4͐@"єc@H"*TY-E=l;{x\t|4=\£_ nLg;x> VB&C5}Sr(I $_iU']}=\9&**`Hq@8@Md-BڽYGGtANQ^ MKwqGqIdWR6\8kE|b}H[[vNv'Nng  Od9 h:\Ѥx8`vU3/sۭ]S{uEL@S"v|j.ibr5&9V,uSp˜Quw.(Fk^(\/`wBqCt+OG*W'(H^k¾cb)?g3g$x12TdI-Iareq$fg(J<M!IVzo)f {6(թSC]fssUV mAav=='`F' ٞnj r `f @ 4 Z5 ZxsF?mƅؔ? d6Fu\fCz2y|!}t O#jeuW>:X=sP'EvKE>,s;p} K^yp8+z&bIz[^;0U3QvQb21ZtZɿt' c{¼%>Lragcrmvܷ@58GD%wG({T %Qh6FL rt8o~(cEi C~Z%V^UB͎Y(V':}KӰHjTAT%b,q6d Cd}/uQ_=MɁ{hW:чT2:ԣhPoLT\m3 R%'Zf\s0cR'd2dZ}N=Uk{gX,z O0\$/MW(US);Zx : ݉T?dSOSy{L]' g %aQOubGFzuE LFB}ߙU%!s:?‘5[w3b1lG=:Y!CdCD5mr A0 $xp~׷>k|YZc&"W:١VN>qW@{( "g7{02r0,X%ss^E[7',P7#o5 U<!7R}A7R™9 sS fqM.?7݃HjCb&|kNT(!F)~m7r"ÒQn~c DIk \N%-"j]"@+{%/(*IHlG(OqXH:@(]#\ y#w-nN4g&~] J qY,O,[p5%8}Vp& Z  c su kp g , t; 0 T& ?IP# +u | + +˓ P @ G4 ϼ Y L D H # з q' A9@ %q"ġ^T׆DO[2H6ato 6j((Fttxs&Tq&j_R%,c|O>bC9<֞A/25iLO8e)y1 q1²9S@{}C(/FHc+$5?)z8nq!֗&VJ?zz(ĭ\Mm|;Wևi]/4%@ #1ZF*êX-0Tp$uI%h\@N+ KpnMk=z{Vk A4eLMcfeL7v0bMWJGFEli9l5`.|3eYXzO W}} cgG2`}gA12 7C3$cQo6FK;%A 2w hu x/{  1m F 'a iVo;]05G_KnT5IwG ^<+:*WJWCƳ%2kS>,oJ>[3]~XWdr8nMʬ{GN$PkCO}[b6zE,E %anߞTABWi7~Ǯݬ<Y{%,h  2@bm[a<4F&­̎3`NN0 x3%_>NόZz% Qk!'\qxWY4_E]*lVG|h85_.t;4oh/_pڦ*aW0!#^ ";;ʰ;)7ͯGat @RSGu)Y dZ s# J1 M F GU _jI#0 + ze G Vl  #^@hf*GXw %. P .r?6p'hZ2E~snhwyu'\3>}v[ts4I $T%2~uh -x3q *bb+$` Y| T28"c%Wt"QQ;Dwں ])GI٥ZCY Meݩr 38<+SJKv\{ *[q ,=*X"L;Aeq - :cty#v @7R|zb#01,Kֱ8]/ 4UR]br ^[1N\22|@S^vOxmc J_XCLjQ v-9 cMAEg#K5.s]${*sւm@(7x _DA :nZ.`RE3uD!J+L;ah>:KD 3`UZwF|#;YXbQf[d][Y8#2beIL^X9[<iF4y?=c/BcAEFzʏw&#C6Am..vRr*K9lH" Xn!c*K%]ʿ2unD|JG dm > " $T Q * vR ^n"9) .@bS!Q= }(qVX1I'=nM@ J9BO6_3nG; ;NVRo2%68*9GY'k^Pbc= E wK5Zkib~zuXxLeEaU H_O^ny&7}~Y@   o.} " 1 i c Z ; Uh y 3I { Z C * u / d n RO - h/BLXOgT SWH499v@"?nt[i&_2<090kee  ;VemZVIP -i_RE#A$2Dm:LW`WɯX+~mBt.zT*&|N 6A`irfl YT^3. vpd_>7DHp @bH#)!R 3bZ:nbep > d8[6YiYfCkL FCg]19oKFY7Gu *r %f]r!e. :44"(2QH.E?{'@.t]ɸ%^#HyM:4RYl5yn]9~C(? U_mcO<L%֙9sڦq `n@Q H.,zu|R ?$A'æ2dtv &;=QV8&*Dx~BbՔ4c&dه%gUdTB"Q,3\YQ+#)|qIXz=b0|bb;?j"2͛Ъmr:iBoh61sT,3eD )Zsk FSlOW^{l'xar+yR@bm\X&9;=,2lC^k]X>ڪl#~"U=,1>%`.x1(l!1Q=yXloW&X׵ _PB <'dV ("D}n z.D&xX*}P<4r*O.9i 4oV՜%t)8rCS)4amz jes!0H?}6ggnE5!Z/.p@M/l;<s)KLtH4 Vȳ 2msSd8Z l#KXM ( SMBlJ2:QUMvu S]P?mQS4vg&~$eg>*M5K=1DRAa$&YrJo23ټZLt/EZ W}=[3ljMF=G{8J{ nf`lȹ.K$B?i]S5" uqsV &7 QF17IQZ؇6<&^LJUioIm}:ei8~&tt 3 S 7  ͏b  ݽigD @ 17 @a ; 5 e}u3<k)&tI?7@\HB$&L5Nj!=D56yG6su_TzGmt?`J:2 GPy]_jeA8c~.UWf"~XS \a82W6JH/0G0,?]C-kTO5B1{_Oq0N.۵Uhs2Te `J2*#Iq>o0D2E^7' h؇ГUظIr0s['L4azKX r~Yf}<Yw7زs2US+>B'݁!eD ,J\{dhE]nBiw%^ p/Fwhsnv'P6-j&qQ~Y )th]b^AbDAlz#Of3,fP0lA>9GnZw :~q=.Mv]k.c(F{5G"M8j-DX@UBnZige2fkLmwCSK5`ڹMU'h9̷ LL^&":M~ʦ|Lwy3HP% >[ClUa*Hr4 cAoO'_H*KOP3фܭKBa]gZWM "\ 1DV+z'{ݫvv7 vFY.1t`)!^cP/̪KUQJxPM</k!vCBzտ.n> o.i{˖,K6Eϧj|.f\'kj Pb`1z )l q\ǥ :^{sBz8}=5#:E[qn{l`3OOF +.5a2=l mERZuwH[{v0$'G^6-v"~pX(p>eϼ)Q&JMPɻ0=W:vdK0L"*'WPM[OR*G5Op!4`V$9yrsS&k&\Rk,)c_YY{idJbqpXn Mp U hDzB M 9 o l 0   h Gy e d2   a@ _ ; @ sS VUQ6VOdd^~fF!_H~ iA'Cw&;n%AQo5&6~J5xB4Rf7Ri@|:G`tq .QD)7U1>^^ެ~y4Dk;YZ(%bW;R=R#oR4]\bd!7qT+ZT)ko#QhM1<NQDzV-L6R1<<_(V6VP-IfSW]%x3Ev5UW)VcTjg>t(Q6NYHaZV=*j]vɛmQG93S} X~N#g/h7 ~\c3@ gIOh<.cx@TKd.&rz\z <Z Drbg |;oRU+G|9upT 6&#qX' JW 0cҬK :O F e Uk  a I 6m @, Ћi  # zcm B7 ;.qPOɔL(C^i`f3\  ϦN eO,-$UU*3lG^D-GOz 6gKqqd;KJ%}=?t? sgYNS3=S8f7OŌ=0 V! e7YrgjRz%EX^1 1$*a,BkMQm/nNTEWfDArc8LЩ@l&S 7l ܵdc k E"| M~ FW |@ + 5:_ !: cH v u DB {w %H3<H*afVZn3^h bmM2G]iwsp\1 }I c]n^% o!Kl @(~693y6axdXfrpT -ÍYsO:3c2O+QP"8F%`_8)ٸh3z~BX}ysTlBL:ƏS=2Lc_;5*<_H|~hYUGj.k/)DŽ 'q2# 9+/c6D? "}''s GNS~iUNc30}"%!+I(ǧOygmedNg55 ǃxtAm0?VN$^/d(=\Sk"+ٵKu,q_1ISL?=M@,Ъ[{3f:q4J!1\-}aFp>8KDWvR5]y){r5cM";] 4+Qi4A Y) [ C(Q]St@:x~"(MŘvZ^`dP Z~c_FM_`3>UDe#vI(c v7=#)#k{{NY0l~ {dL`vX*g,v mYfh- 5=[{Fۄ@1@n#یq>xe #u'ik_^$Q[ YA VG%/USW!i/;!,yYK&/^GQz!B>κJest^! j U 1) Bj T D  #!   el } P)kT9>Y jG4^F ?s1 8V0]ݓ^- VKEg1_bex5LqmQ'6H5zQegI.h<r `(`qoYl;/*QX -NaSqw*:zw @a}fQ +C% pR:oz[f]PXxQCGv [Of-YWhQi@`QWWSSf<<#ML+ĐK? XSTe+c`r#.U#7w{3 \;߼t^ g+ M&0 xwK$1  -:s.5a>PB=3OTa>K'(c=j3L=n27zPp{mOf~J!iO) ĸ8:vtbA6?(rl fA(1O#a4vBA>2q!:;tu\؆!KauU,tI:r&)1 MQaR}mko81|zMpxQ4Z+ń&zhcuF}rE%$HB)1) S;RUv]g ak7w9BӾ#zdad?zV6NAEIoj ;3i+ Ǒ lC] 1˴. }TVF  p!E?$ |WC{$2W*+9ۗ\y"U F7#JBx&q1u0yy/HC2+(?z}t ikߝ)՞DV7o(TdN=5MIeF.F[Ad|?p7}ĐVkSLFNVp lXDGfřm~I{0ăj= 3iߋmԚD1 Zb4I'8Xx8n-9U$y3?0  U IO 80;3 \IB  "f 3 ^r  )x / o J_(i:LJE)lz=,l/\J> 9kE5't%a{gJ"cC:Df,*""`ܪmzwLJ,`x<+#-"F4Y)7G#06 Sm|pJ t(!!ča%ҕmpK.] ض!9N>]"uZwFAyMwy:#a)CKDpL5Q7cJHcb. U;Mr.vg$py9ZՂf#=- 5`V C **@Y'YcEiͺGy@U[`gvAH,06WG*x X^iOj&(wn"mXC>Kǹ`:y\ {dKX#ZT*,NrH[aM9 h;r4ir"NJo3Lr)FmB],aZ9j.9F%zֆ'2_OxX/6,8ch!{;aQ"19@}vDQ2"Q Qzb*CUdB;/gx6(Q[;>lU#MИ$5@7?A;88F}v ]]bQB!76D!R'+tɎ7"4b `R`K+o.>*hX!p^5k   nG  մ 99 g Q W {] H x  dQY`' |3b@v$kIF  pFV-1W~ks mޑ$|MQaS}AM0UhO>DQ3״c-m]hG?]5O|#hi&^%$gFx .q,|;*h !2k +eu:\VI>d%Wl ry5xl,rÓjӣX?y_$u1t"XGeV:-׳RN+th9^\$^A O#Cq3K";h'" a{wEv[jscISn(5A(s. UM=.Go|nQ==2BS%tRaȝ+>y>SS{*-&g8bejW 5dkpZFbmDmZ~ =6xGu0;fB+_Պ B r :`l d~ L ~:. l']` %:ϜYzuȷGLW]CxV;@L=}l)ib}FGPW7itF@x:! (ZS> )~W1S\+$sz=ђlFn QPvc;Vp Nd }do)C3z!mJwDy@Ga5'(}sm/z# +Ic-~Bqm|i,١vzPP!(qEPOU!. 4JhI/SSr=HR+;x{0YB (ʟ bg H ;i aT0 p B UH l  iH DKj^ܬmLtE~=\UJSgsQ Y72 YHyeeeX- J>32nB- ~18͘lBq_WUqs^!f<6Xp9N Hҋ 3c)r'h*fD&K\KhC\gQdLX?uD Bl#נ$o$/|cK[GO>ʖ:LN BƊZP/ds~7D~{g}-M1[!{`{Ep" K5"l$@{Z( >2XVfchSPSmSd`R;#"Q(^}VX_o_\^># i;1(b_qB|^!P;h|tJ9VUlCS{ ݐ; :'MjFC7Mp +EHHX"zl'tQVUs"&|WI7 j kbâI&.Kmʐwb$&bO|#P33`L4UcVW[J<p۹}N bLSΚH|*Tj1lwiy3{IWtA\rFGdn H2ZiO\;{3dítΩ#y`J&ZK!N;OՓk#a=bu5\nY$/e0Rb[z\!; c=Ck0LfW`Z~}P/+mG|Ug#w5-yW8 AW 7J0*:$d j + - ޒ24-D F|Ew!FQt[ UM<h#So4^~1xAGA#]v!LIr6X%>U8AA,r,RV11ExV FFwYl_2+U~bOIS;$|0G-4(}|Gm>d8Z*)/U4K:DE˅@m^Pwsiv*şYLi@(%}*2a߃ q X2*BK[~(D\_bqUKqBֱUki{f2( ,r~H?"u\-)THZ?IIGnl4U:BTF [*}RG IY^Dt9oek>E^\zBog_p~@;AIVk{qJe%]jYx{S{F|!$L9۹[ 9CKAzc=A!%)8-@_tU9~,G OfIN'">H:%:-fQG&E<>@&sqG0t7AsD% lWB?>xW]:.f=m [oӑFd5;x`)@q*{tg@t"$F|P1.OYœnv‚B\Li&7A,8/bc9&f|6ŕH Lck/FSjrջ]H`z(!![uhMU6FNtf8.XWh//%O ubɹx&?=?OÑ?u=`jr[XP~yu(Y;M,mV!t\QE 9* L2XHdq]5mp\i3k LXZT! Fi%c,8}U2/݇_ti;H'j"vO<G4ESRbAʺoEH)? nF4d7HpJ1ƴ~$E@" B ( !dRK\O@$@w}Ǽ_D[gqV<|l.^+d A^%.o${Mèo}לG~4(3zxsT#& HSxZ\GL@# VT@zn]d8$>HÎEwuV=}NOF:TMXS% jmQʎx!ret,>(`+=(?cMx{T(w 80{SW5 Qn Y7w]4J& Mg((|Z 7G]-~ ~h?m0y +H665l ?*|ظ:s6vfiM\q68I2R3!mA  {_p$YX7x~[̺HZx#Ïߧ&Q,٘6U&[S" M@>@A^$w7cbj%0wd,t !V;_099" (m'!!~1*TOVk0AVx',xPjWwE~;Bޱ.MA9~5Mma.a<d:1LzXqP`Ȅ]o$( )RooPVHAQTZ-{N:wv`k PnjD cSJ?a$B}g#30<:ESR~# #$ AjUr-h#՗u9 rUJEe7L߷])$WZiKB~''_`,>Zv5tpRZ3;,X+pw{nR e_ۧW/G D !]kzvyALbz`WiQ@qHaH"(+:C GD}W~/\5N/3S:!.~,Mh+t0pNU7Im*HLb$ē3qY\sD04Q$ .R(L^Mՙlt@lb(F@H tBS|%h&VaH5Cwo:D'&eiCDgDd O\F}*4Y$_R- 3a!gX[H͹:[)j˽ {4˂R\Vs(.t(\[c )Z":uzDFPn4XܼD)1rgV GLlTR}/Z Zۅw$dDkMU'0;V-?RKViJ..j,q59S-L>ڽ;өB;O]-I^>6q[Q@[oYLZl-2n+mZ6V*V}uUr}]m:;?^3cSQ VhmǾ%B:K%  Ft(CCպD&>EA*w^r s+&f_W0I}{<EYvbWo+n4R|֝xQqe9hu@7zi?6w k > f0ePj6(b ["?îv EHy-;3s% VNMcrTk.tP c%76]aihiE%){M$uD%K5J=̞4 *uFb``bQD~@c qmOx\j11dSqrZF}$?U N[Ce~ry6|c.T0JAlΐyF"Z$7 S6 }ShR%Z`2%"gpImOn=K)aTlQe!znWC_iL*Qc$CJZ{@ $T4G klq^<= ZsJ u:I:U_#h']X`ګ5A]6/Zdy+VA߁nY;TU/,5jYmN0Y >`$6o{= ?c^tG\vUTB]sZ =N n8Af(TКoG5goc5l3^i TY )~aR cKݿq</e-:v)ybbVp2BZuUW )7:('QAIYPm#Մ1%e"K3luf]rJcvsm _ׯ1&l cSk8+ý/K. `d:)CK07I5!=7Hk9=_ b}RT 49 ja~k|H'(@:կ4a CØ$_'N@H=lG8GԑOȗP,I&]RKe4C-ĵ{iǹ rtfvP#3p[vEAci=UX@1!wn=%Z8kq֚f.$_IP10 `{%Q[Ѧ ngzr6Ca5?Ҕ:2m8" gI7m#hY/F?{yL16p+A]YK9v@{c"~^ U[r5pdf&۾e#0GnGu'k~8 zRZ(UfQ ޒ|>A?hAa5Y{K@2{ ]Lo5Ve"u,Tbl * Zorgo+?_W=:yXX6q7z` (dD)wNNlLg^ O[][ZJx#\T[X"W³nlv Z7 -o>')/z:ȄUxV=o.h{(rE OvHǯ~{Lk-^!c1oCBx>md=JvA ? 4EyT)MRN{jX>ZdUsItj.acR&[2' &1ZQ#ly?fYCOD! tjMKeVQNjYN5 -AG7c;(KBVZV$*F.pTtN0SH<)aN@$]x{ nM)6 OY2dQDT+I @ 3 F EK8 /k?\5Ή7_"}xr24<)?EG ;9@%MG u uz\iq ^}E33d@HҼvxc'Sur3ETN<)PZxxMInf|ZIe;p4Hc/QI>94MM.:ȑ@_lWtiGi|c`'go7PvW,,k"^w9/f3rWmbT&JA_mRQ!doQl`Y' )n@ dXmlQaJ;%qD 8׫ݦ i]fL&/.f}8> ^ZVomSTI?c~RB0)Im.g.y!Fx8WY5xw3!'y,w>:;KUqT3gBXF/Ok23՜{r. )+MVDp|H~ yk/7x1]{|X<qkHI4ȕHFzz.z sC?DI\{z u<<)sE&^P`})tՓZ!D$~A!Vb_Jx7z(t&'ImH'>̻@$v=ѸGg4qۻ] p r- -b[*!)dn{ [$udXs_tN(;ĔVc<:VE1"ȻiHqұkwl_ cg|I:f 1?RG>x |f 5 y&I`2FF%BTL2,mo@w8/flHV/Y~{KL!0H2sc>g[o?_ (d3_`=7jfYc|}Uڪl'U{wb0̪K0!HKV -H4LczjMD;*gXh6,D}k8i|( (Klwcyf@dlr`FF,V'j]JH'X>5ӫ6,5 Z0*(_Y%rJbҽ-*y2dg6]6El cO& ;R'f  ?͝U=>i`([xsPEު"6DNlAN5JRSQzswK%s"m %\'/NbAe&xl,&6R=~:JIP *' hK1hHqa 7=)*+:;1D &X|B: VlWm+3&ҫ҃c!̆qK9+A+.ZG,Pb!\ 18QZ76=EfftLތªm~N]Wp p3' oL {-=Z )t7_[oٛp@ 7_/cX Jt;^<xQf?4~%bQ# CALBdeNw{K5שxv7zdDoh@/` (4%V u4F\>dBgF;3ZtoE1' Eg=X k=2dn0?&(ÞõP!KY>#HVtOF)UW<4[YF^-Er?(i)4VIE.93{UL Tq:PQJV,+<[xz9(07;N}*BEt3g' SeQ4|-ve{M-tm@N K1m2ZV|$M",6 tsCr%y sU)#;* RheeG>cdo>Q4r?Q+[j!1OVnH[EuO LnEy%k/R~@ ҬUNsw҅/SNK^7Y-bV23~8י7X?"YqkgX)eS4S-r0XhpO7y8>1- h[`Kd2{ C/F`_ Df)Ǭ' M0to8j=twh$"@/_;oGΆC3c([]r|3=j&rwo'`NKboxTc9Ќ:R#o\[JHp^e$0aO%~{FSsXOS`SrJ5nd'~v|?*,A2G5y D{xޛy';sWU` Pg>zBfQCLtRy+YԢy|mA]`#i@L>w$K6ai,0<^*"HdnDKQ5 2͐~7UM#"9b  yY`3:z0"?TO??UieXZ8jdysqST>!egY$zr]P//Kquz*MݠywWbm [pC!\ m+aa"rhQQ'UFdZK@ P$!:m^  0xh SW-iVVsmgK@S?o#h7|$:6%(-Iyh"bkI]d!49{[8{{7>fVUry?Fc2נoN&.oWBE8t>.wJA%-כanoRHe}E8A!F7QWu9rJ-6D$C!7 `4۱RqKӊ.5dLڻT[im g9$ 7`% =^vӔFMmBu>$wvzEQ 8%s"w7^Cz'!("R Q#t19bXyΨ'k}uFco.0Q1 }{jF=s6On6GF H /Cin>3#y-G%0.ZRrShN<Ҝ>0vPVqeiZ}M#[܌duAZ93skF3Nbt:EhMCT[!e[rKJՂncZN 9{ '" & ҄p 2.fJsYjk1|}t#v9} /a?bSa^2pe;,5=_Tזa!Ob6>-?̧K;0Y|{_i?xrFHt)$ 3h.bF:{br0v֬ W2_І6^zkSA>FX lW_Rmgy#>.k7(ee{zP,"{Hj)vѐ064_?| V69' <T> gySsLmB ybmMx@'q7%{.#ognR$Q#ַ2d+ 9Yۉi+`]1C!N5w+a_̹ &oށA o@1;yNLGб4qӡt,9ybGc~fj mN&1{޲q@Kdr:7JخK-JWQ@:\&ĥe gjQU}Y`}xt,rL\aD,*cisy^plMvf j1(Qȿ{ TZ9 .8As]n¾+^IIʾ #A-j1-XL$Yq9RgJi(`>`Cf(%GǹNkk-zaVv${ V|FgF|~1ؽj0D< %|P.!X;tVoO8AolAf&-j!jAE1Vl?*r?JC֣3 EfX=||~X(j=RAJ`4U!viVs[IeKRG" cWԂ WPdF5 u/_q}HNY T@%!WCLu"JsVkܫ4bX r uYLfBԬ!z8))zk ;_  Jg_azkufZ1ťj#8qIz #UceO||$On8*pHS0sVu|FwIF\iG.C/lVͿiAAQn-g)_b!UϤI^}hyES&hv+lr " yW1]v5iOvySN}1;)߻ YI}]@_j9 -Ȃʾp+aM9:-]BZ!/7MF·3 -AdlB\p4[H7Vo¿,7GZ_:iݷmSCIy>hv' 6)Y6>Y&;+u =l:oVUlvx6 s@ D޶Vo5M6I0J""siGΊd-O?szbf5̂6i gPQ&r5 T'I5Z?/ iXM!wPn-z(mlb Fb kqs\M3e\>Dmt'WB$H"vg*-,b7~=SVq'4Tl'1Y 4uu |S4U+tcfG ro'^ b.\H t{L+WklPQ!6.*:-uQ1)0pu+?4ktH)̜/`<&3i>]ԏY,*Ѱ_x[c3RP+|09a(3x|M$8' L^%?9CG|.Mjk{kHS,Y,a;~eּhwy=DD3_<aHJE`!7_(~.-,t5y{k)X)0 Q(֟^>H;T}IR2xa/qj JZng'F֞~)I]!yR#r|i!a4 #'"5A[L3NMzooF&H2^n8>*q{FjgP5~Zk4;@A sU٫#5۱4Ⱥm##m0  8 Io 5ߞrIq|JI.˽#R`Slazp+H\&x8B{Np56.}u<R'X#6Ro2pPN,>TK_ER=H.ordEv*>J>B~nL>d?Vj@ s,ߋ_6x* :IS~0`n} fK4Q+??H +Q_FU;u4AY|sta!D4ȧ-^2$p`̖ E",֢Y9Ediy[^|v c P9Az)-ONOS`N_CVjQ5ݗ`.ff=F9)>+r  S*PM!NqhO{OM>2onߤ@JړX>/>C)s=^gj3B4Ef P" qR/tK 6}:9_s4PZ"FJ}@/~='jUP]K2flI+ѿrк#$y1֗PrG@3=h99)fqgT!\?k- W^Pr ox/{q9)(A kzEgq\^+'ٕczR!e?7# &Dv˭ CH pL.5Aw%P.dǂWP WS>C3B`H4Y3(w?m)Xv9*J:eZ.^"ǼX Sc\g̤`ݗQ3{ng)fEyQ|"I1L:Yif&l]W n{cFҕx~zXh!Q_97kt29L1^[td#rl=iҀ|(::r6s.-^:{iН'H|u|\2>!8+drA۱J5'ri+Q2'U1'c|zNy2 Mp%@h6'JLL}" GXbZO^hGf34$n 7R[A'~ONΛH-ʡ}όd$Z(S2' ш _;qF/Fւnq,e3;]}iSq:.RBhDO lP-c-9&/pP22CN, .P`tfQ:` ;, Td:">j9?"Jd`!:a&ZeS}sv.Iax6.ZB.܉V.5f$O;SQb} ]Ze ;3s[n =%9(yF?kv`I`n(L{u#dMF8SA+2-,4?*do;u V@ZQ+6Eeƥ]d;Z3ir,^U[ F#t}uih&kBbI3m2/aJv\=jeOR}G'mhj "KLevNQJQA-cv*`E\=9 =(~3{^jt*a.I.ɃBX&q'נ'_]7<""C,Fq`AlpJJuA5@t1*>M(5B#ZmD+.3% "eċFjq̇ YEI >y(S(_BL wbW*juv=z,h@CS :HԨ @SRE+[nD '9)u"t_DU0 ؿѷ\q~"" h<U_,7K:I/ba*(4DiuCd}sR4owNi؊g=;lr{1!Ӭ=mL<iJ6soqsIviBPpzS}PvHw 5K .*IN1TAojd&%-U^m]/NB VdjmBJ{r(fH=f0s#Cg2ZUNȏtt '۬Wk naV7H!h;Ctv,u"i0`w,Q Dxcw*a?voSi Ia;n;8 Li&oA\P.TS* `~Um,v/R8Lо7OYr\%h޿eK~< R[gD| k8v/aL)~<^l)0'u:m9lF2%kP9C0LV f]Q8p\ 9@sɆ{Xw{@p7t]u=o+FmҬz:WwrDTC_ +ap1 i58@A׿2o ah{Hp)uZ_Et "}uW-grۭrGoeB@Bx|!.Q'Zs]MS t/ү{&|8pmqp+Jt\1Fw[6/ -GB$r1JM)`OTks_{ssS$уf,Ӧh$d3ZI |YA.[tN!(ZnTj@'G6o,YZG(K`d<{iAvސ&s]27E7\ZrNf}j3 `6+)r!q5 CX+,s(@5IH#AHC4݈OFWm,HE*JNqMq "ɟ!zt=c 4l#iҤ7aߢ$CYdޠ'x|}hMJnDx7zDFXbaWv4}{8 "Pxjb"j?oDg%J"5s]+8 9sA%.JDie:8OǸ#8-^(ndB4$%jN*jgSs(sp{ ?׎-sDDq t Yg* ZNتs4{G'EezluQ1l>V$8(MWa>xxVV >=.NVPh٣vi-Bq`o4e9)KF!W-X(u: ͌$ n+fN.FoaXZn`"1<Q_μy* ep2K(`=<*{rN yKDoObhBZa?AO!Ox/;fCҸMF C|/v|#Ucaצib|M#@E K-V*&I)9@2vh3] 4$jyVsc' @x Lgd 3ERNsE-Pt)TV}.BD\9IiCkgv*^*WYORU-%ԀzCr%L`CvHq {DN&kZ*P..L)*o=t;*uP-8Ĥlczwk,oZ@27@EBq?QOcq*R`ñ\9@vg8gKPW12]H<{q@p n~prc<\w 4W:K5pvRJ+]6cHPd12^1?,&5G\d0#{vB(ӌ`&h+BJ9v."R(QtF9BS1UE{}mr&+@ۣi ӉDC#(fNM9!}M'vrMt"̝E^yDb =$b2Yvhj^.E*ѵWKnZ ^@>`s?LэB[{+@ީms.pQ6ip3tiY0TͼO}VOH[4bwKCH 0K<0p^ ʨt;<6%X~sVP&#a[4'O"^bYP\U?_=wU po׭J@W>^"$-C/Zj)9| e!3{FiǞj2PhW]&P!b']6T' I #Y\Su{#Ze?)SCJ>g#u _z9Iz$A{x"JJ*p+a`NB´snDq%-_-Age]|)^ Y\^L$0"ahTi69YxSE}Rij=UK~QLqnq%hN^ {q@~9*F/~Ag)zD7"}3:%<2 gTW'SE&\"`mrEFmY~H ۩5&C,6OտC`"9Ex*JCGܲg(_/*}/ؑ_k ޴a* )lO=lbXM6Ju3ڙo6f"(pqHa\4xOhQgT'qvB'\9W6Zh-!y_|`xu=;l|pnt]p/cq=||RWCN0$ hvIr,Z{0 )"x5l6s,.)AZvNcf7]V=, 1>Xk9jդS$,EV)y3=%1@"ͷZI$a=Rx,0/Yd`'<̗`a*ûk VoTyXiND4v5 xldN9M!9i*UO^HWY +.BS<#\9=c3AG1rP|ywvZHX >ReN06j#^aVF:J\|,ZPxRwVhR; J>}4(NbCJ@r>Hf=k(hO)tt,y/*.KlTB `!eiח՘\6j ib=n+b-!jU ;6m+2i3g=]=k| &5_'&BuUJ7YkS|uO.Olk`_,7^m9:h\  2( ^~ Re\iyUGz%BSduF1nis7 :L!S{j%q'AA > ɪ0KAe*iAyT!=KI4m1%Ƽn~+YncbOR.MCSD t iVah["߻/\/M;ȝ^^.7k/>sb\D szZF?i.XsMgDl c iS#}qBEe0&Zz4D(uLVB2kga;a*- <~7{=~aʟ<cQ *g<~lQ[ *f: p/n j.aE\bwwS4hHT<g&[Q]cheXi b1C\=y!D<Zp h iEGօ) `lO)/po( qd}$ k3 CKYve1ٞ;2= H~Е2f- OUV Wn'#`hJ~lH7wC_LSs?5|,q .@\a%|]L*}9Wk?bV p(wlDRv5SL"ѮN+uD8EUD!nwmi[mE7#@ʂg5hF@&uJ[MQ%SáNKp+n"s9?gF3-Q&p!-pv}66+XlXX̬zG!HYQ0s 7]]|d}ބNeλQܑrYLrN/hAL!P`bǸAeb,+ BvWt1$܇\>Ԯg Uˀ-){h_VZ @C3n;o3@1aI~3 `_.wO>3dT"mxiVhb ;}t B Iu{!h C{p?'X!9v&hJk q\19HT%רf"p@^m.NSvSx :ceH# ql1/JgGO>!۟0xfR"e6>r>G׏zR;n.5Pf ْ j0X"F g%pl1sO6j.3Q'NQCGd||v?(YS7P9i8Mo2 DS.~OPzfOg !ͥ3U7Uh(3H),;%3[F,qX0k"g2NʠgA<s n`-+ۻDF{N5n;mك3$`3=\=;o3Q-_z\Ed?M=gcQq 2I ~)2o`lfgpajͯy3ܾ+:#g 9ҙG.f%)61AD`)< *9G׹"0By&c3 .,˨,V'[)xztZ ,|0/9R^@*sbbZ=L?gR*)'x7̈,Fz:?D9߀%eKM?G'NMK`{cxX5HBt٘["UT#@cZ gU7!$v{^MD>cTlU{+? ] َo$Bs#5:y@qt~_yQyND;EA1<{foq>_F9x8K-/i$F A2Iug^{%;lp)j-؇{Z@=bMdPH`cwV{,gtbBW=~+=syۄ| -ϫJLy ѻuɅ`jHP9o0t<*AT33Xh)MZF`iKM4x3@\&,]0Aw[m; vYY[Woq{$1K4V 14m1 7hopu0R0AH eAǓ}H/j]ד[#Vpja&_yeLW|72nIi#kqu"Xi=r^_ ӃPh}7٩)fd<Mi->`be`t{tVQLLvrm?j/u/*CXWe q4.^kln h>enx+=p3cW{nOku80[$[4uKp;IeMT׈j<\=B ;ƅb#dYAa8>TtY `W*w[+/ѓO~7%t9FD <cRC)@ #P SMXvP{+F>_;,Eav8f>š[O^i*T I~ztQH ~Q\0vK.>{:L:^$ xEn>[& a|'Jg}-!?֣ [_nwaM6%/PI+F?Gd|7?5Fճݸ" M=~o,I BceU]&<pIrWgMOyBjRP/ ,EERƊChZbDl(PkJ[=9B_e6 6DQ:vN%1[FXݷ~ݽsq^D&;.#TS u0rfu#vԯC4 \fu*j2..h([ y,c3oxF8{$U$=Da#Wad} ry}& Tϙ {%K}5?CQ:p]9cof7M ]9~Cu\f Rn# V9vlk/͸9W-l'*Pf^ 13ch<"7f8mo$nl)G5uw\<tׁ,ɞo'*Q?wwW;^EC,3kXximU^lؓ"8t5mN M\,4xfE\,m?.$>ح)7>ZRI#:/"L_@jm Czb6Css.t ^wJ9u%'9(֏%qz:M>x% A6@6v3@O2Ya#MRt uPc9~DF5]Mm6d*;=(4Ma)ZJq5UQٶnmAp{<vBM=d4xA)ksW>}vyv]5!FcC#aIU&Inh/V[u, wq!u|r-1Y_ߏusK9:]:(s%h KG cP:B}72TP(zq&o'уak>5v.#J&,&?{>F*j-Z8)VCWxzLku1'DKT4w.64M N{TFat6a'O !v[FAP}k^U/1xf;[}OT7d0;bY.<(Di}UFR,LVuDo L>Ex1St~%ABK )Q.|ocrErU|DCCAM= 9N|\;']beۦ,YA``Q2#'H;IX.~g,DgVt~>ЃI(tK3BbQB2 A^Cڛ:}bS) *^!1B`x |_\sC!tbG/pTI[mow!T7uScFXU -B҉SOTzQɜ(qAdʙyU *$RyJ q<0oP:K WrF'>RI5+XZQ5;n6IV {]JXh9MD2ADIc}|zZ.~ УN_fX#`%Fxk 7:oY<" Wai޾b#M4l(fN\d_ 4GvNuQ7_<e4+S1^};R!3Z_ouT=V-R'pC~ Us*-v%k\p4x[j4NF4X!1%bu?`ϕtdN1bU DjpȭK[bK\xR~v[߽;cZbe[oaHzxK8b#ewgF~ÀuIN<*nu-_X;p2?F$Ks4y.)QE>oUekِ?FBommNFob (Tpq!+Y&&xLaԈ!dd; ZhD_g^& ` =%[,$ Y!p6 k?D;R(K$T^Ej?q`1^ǰP5CD6*(Sn]Ol\ wKjrf[R @ɨ FSzW&RC0 (0KS~u}DŽd3x[[>#@(rb: $J{K,A^%=dJ<XQ)H>oKjs(t0JIE(ԈfEͬy91Mɼ>5Y1U%/` QZg,'h]m>}|0,5e#g$slFF>t^:Q$u)z8NQ`qtZnN= \%( eMW?"Gv K3PUFIw&d~Mgmp 5W&g $|BݛS gfi;'!Q!>nWyH1_;Cї X9ROεW!P[նY)tar/b/VBp6U1(wO9GͰJ~G/A+(0jIJgh]|@yQOtd8*<1J$G8G[9?LΐI>)_|I" z5+1A;{y#H3Da?jU_4)JW1\q!F8Ey1Kw{]q<ӑ1;/ +¿f6Fĺj!1Q[!(f8|8:B!ye#j( !0!<^iIECLn_;A3[_1pq_c! gC1 6Kq#>c VMpB4+Fs:)$1LG?'v@SO\T>;+~q=C\wDxX(e7~e[@#L2c ^oءF?V1OL_{E}ߩv/ZOqSx&Ktb`P"s}{.:~](bs<|2?p `)2ME4NOX0t?\>T"<}N-i1Rx'J)s1 R]|0M}v6K61Ht_u CD@v|Y _$M~X|iLgy=\'f| * hiO_VO|͈9n|ǭimsbXc~p9[o3sP.(Nc̅{6=t p:߼jz<I4{&6w =4> ]Q7ŀv-~iqW/sjp s_?f}CMz d0G&D7ʧ-sʬ+/R\OSFq 0i=VA&gyug3U&{"uU{xZծ=JIfhjL^(7Y&YUfgC/,Abz){ycUP`ae(o~o  j#Vh[Ob&,X dJ|yrjT&YkDhH)Hp-]^G24~x<y bg=u6oao,3 ?/siC6(lp3:pa.o}.5S~'K SO' @_rE{7%<1LDNq#Mt3yJ 'uFyEUpk_I$˷.mp\Max5C"?{. Lj:x- sctFEJ̘w"q,8 GS{+ "19aJցo +sohg&ˈ C 1 Zg!yHDwVjF#}k:N}mK*E dP?l)#rrlY =)v0Q2* kM!'qe-f1lKS/L&4c!' a2BlL/|/@q'V #*)olk6*5N,<Wh^6oT5l,+=7oA9K`/G&XQz_^y]Da\eO~bQ^8QUlw(p:,D+N6AFlg:=|- |QR&]\e"C&NUx%\s&v5+pd /L5j]U1=7 ".'&yo>hDATy/gL~>5\43NZWa =#v!DpQFze.4`2;z/y?dsAU;H#nfAL<k { PLh:G8!8]!Y4/.:V9P\bUwX5h".&`Q*c9 T ve"5$A4 8uscY<!:XTb-,^_w~[Ub),A-{7:çS˷j59#agf&nݟSp/>pҽIaJv]:v53k.CAO#WZZ%Q>DfF9{@_e5zRJw.3܃RM^n^@Ѳ6s %jy-gvA"D}TDEZ[8KCh'Qr} :3LWhRmLE+}Q9(2#̤5yO dw"lʳlT-Hvdn Yf Lv/( Mc//\GaɩKWdt 0Kqky'!$!wI9*omr9i $DxD3KPm ܩM`Hs=K%Ӕ{"U>m!5f :IjcVq ՞NGٵ|^ft:]w?~H$"g![r5L9,0<b"`b6M) l(rLA^DJ>Cgâe]AMHDu}v,ΆVB s4Fh! [l\[3UH$HiX ~05j7gq0cȝ.>!]E1ziD΅2hpVhdJx!2wjO*ўc9bܖO|*Li;4{t=zcy{y WWb.PcExe RS {,B@R/6[b6ICNA ԉ΂-=$ I]§w!\4>7]eR4.rGzUp /}]ONcw(%Ip%߲p}EH"jh\VqMF[y˸ /dI]g7=ShtgQVs~=  Xe"^-¯gO z_@b oEbvi [k 4m:M&($fcVOu5i.$?"QT8ݝ+-'&"^(I!XtQQa^X |Aeq=Rr5a4xo3W4Bj&q?8Ev"\ZZP!1c\p{dm('B0d~.|\=^wsKUf%G;n޶K&LQ Mt%]ϡ7f`L"/w-Me<J/L7L-h eIQ"ltl,4A,s*OYdLg+ Xwdu}t~ux*F1ZshuٻJxZ?gx\|gkH}V&=a{f$~zmP i%-iJF(&}d9E-d"6\c d}#sa4ch}1NqR-5db XD25sE\*\8j[11UNl/SťswJ?,iz-RLܦ×'Oz.9eJ5{g5[UvRaVQ\!0'5qu8E p7dGJn&CD!&C_[R47}\lz go;8@i[@xqc05^EqDO9y[Fo#ZvM :AK&G:J{}0T}ɸb|^c/A1fr`qz:)0o7X (y]oiïxlwNtʥ-?)fG BC4 WR< =u^7o*K55^> <,;ffIh*KLW,d3k)ep b]Tq?2SM*A- 9F{x7%p-hq'L9g" GHnj@F,81%S275`=2?ۇ޵^hb%2 [?-fV ]Rrd;$$ CA#`/m& ), <Z51ގWW4Uy0c7YgfvϽ/,FHNVYfADwVRҾ_YgnX9|e.Qo N)K"`*irGF: 3MU(7)|XnY*\+(8)aFFF&tX@1׈LR ~3:/lzq7H% YP!8*@\h_M1EFNۈ(Qh+\QeO.XvK0c}d7Y:*u>;@ϙ=4 &Z;4 .eJ;NGM<Pơ D9Y6CEGb:nkr&H2 FO4SMDLnL*Y>">Gn{9TXO)"!/oQ Rj4ai0B ʓ??|7 \:L|Li:+DN,=F,`wY>ߧR3)tE{̪'}nxI%,S(Bc3Vf}^k~cI}a+NYfِg}6rb</S(Tx\),#_Qz\>E8|LhG5LR+яq*M}00 1)Δ[%,E8rboϿt:#B`z/#MplI>Eq 7A,6[<F,Y HdIL%\P%47.ciif;3%Gm+jeT}qh?q!p6@^|TsZ#3-(3Xq X[e.l(xfd% [B>o˥]c^.! 04F vVI/OvI}; QK!3ЖE&0lYR:l}i J\Oc kw\9Da*N7JB63Lՙ_nv?n[t|IM/)Bf/WRMs=Tbk9uc"_?m/9 ܢK]W,mm_Ol;:a<)3ռ h,8*ie~fĴ $r $|>+!YuK]VKlOr9? q~ -ѩͿ&^@0K8C*;[3M~o"hgm~ ElhT!Ha'fnQ| *.AGy*:"eVFVd;ΘFisWv@]QrzDžo^Ii&gb7[)#/d6Xa5P%D]&PvF9UE>m5XPQ2hJ]gH-U\_BLqXf* GΚ0& )qq=UR44At8v2b7 ov# Ptlr2m4?s(bw<M_`yyWAH*X-ּ6i28Quu==3D^0/ů\TǿGlG.V4fvOEt k{BMn#mU##Lp:,Sabt7+I'~?f\JE[`K]b*KV$L4w04D't &(զA:9IPK;jg8t.!,~7]o(#ooji,Oy?%Y*34 1V=F8d*H3u u3}02T?TXMX ("ɍIX8X]2dZhRN2'‡Ow:B> S'jzujL'?Fn% !A@{{ /w&5:wf8e&(vA{vmģ"[ú-I#)VD Z%&h.?O»):Gb-\jNi`S a\n{98SU~G Hwt_!n2Ċ28c^mmvCm0]YeּsQ1nRuP%~\GQM9"ԝ}()G6eq`Bmi|e/uǙ'wwslmuvoo >w7!=e(V^11=-~.l :l"opY1ʡ"@ǒ.E*jM~GحM.UF7qO/B~gh0^OL8U,vH<`r 5qK>-[pd;qheΒɒt0acK(gi\?1\zBN@č~}r#Y~-D7+:de6gbo1Šoܑ xtDL7":Vwu/V*{Ih-=#W@@:z ?Hg CxvT9ZGGx$Oo> ,GeUG.U 8.tR͓k9[~6 Vb__G'AC].akKS%$Α'qoL^7r'6=?_<=s3r3neY>e)W=$mCGo6YM:!p M[5CcBlibu<# O@zY+Fe; @Fmxq˃$M"|!ei,N}KE\l%lYD/&EUnXr_,~}=W862I3us UcWlU#xEhdqAfn3aF%2ވswiS@uBhx986AAdr}\in}jR  Xxb:#o&r^*x00Y?[sJ2;uRFEu~%,_!xso6NM|ۏ{tƂۯK,U#)u)uHIena}Pp|K#xJ$ Ӱ -mLrvG{X'҆g\ք0s?'=oOq _LR[t"D[X3RLN8c]Ǚ:2 D,kj},fb _kllHUbTǼjucbMGc|iD:DTyu)~L^Niw bpHQVm ,tY\X+~G/֢|}=gPjY-Kk\ŃPp%=nA_v4B:iPHa pWIAx:Bǥ1;K.a%`U@D.0Al  `"f7f@cyt>>7C^ZxjId41A-9B\j!"S.}8 IHZ|LX[= WDzWmOOv[]2jyU#TQ3h#NF6kx m5j} 9;W2I A'hdI)}Z JHLg0QwAIg{*j p_\X;  {E9*ܰ9vqPZWUCkW,lU?%/S/'t\%:D'Na+}8WKmxKz@'hx`.s7n5wv]8vWO4F=n""_XMo_C,I_4Y<x$lo`>J69e8bj-rp=\{mΐI$ԿݳrjXahdU`H&P#GSh4'ص+n$mHl ~5n>orGf>#K=stlCVLoM)J \GI+ i1j y) F}yMVz2y :"љlcD?5ZXb+,qc7.z Q6` j]ڗ%eU'?+Nyp"W6= Sg̡HY'p"^[3bW%`hL j;(g>tH{6; LUZi1GARcd`'aFE"oANYM'0E!xH|u 9l@ViAzz)5\ m9mHEŒb[\;t;O>$N3z-oVrF1hO@D%!}sO7>5{%8ЪD-0jybDucQ."7Gz^I7ۺ-w-feد1.M?K /l)A. _V\L ηf*u^SFJEN&s"[p҄[ƣC.qj=G9O ZY-MGAF#(3k\n@Mwmezs/AG]oQ6 gc+$}r4J)d%Fq/8O6#HB>PBjBq,"|тrM|X`\_|F( J#re 1H$ *%k9?%M VSdiLe,Kfp76RvHB`+_H'D-J!\j+eEϟI@@ 4]R֋*\jO~J,PXH40aAYrY.C *MbE^ȁZb&TSMbsX{~v6[CiL_i82(Ynm؉`שBk{!Wd5#:v@&n U4g7";Ou3^'Vez5&!N&%e Bk@%Jw;3(L/=&- E\fs !ÿp V73D[8!k @@. NB;(b%Cm'4/ Sj&Th ^E~7@wH eMt}U&D`ro-D x{ M4cycKPC{|u!,r~ tNhIqĠw[QR6xgw (FB-nYSeO(#Gaai"KX;NciHxzBu|14.O<}(f?Fifzc)go}1Yg~ pv̀<F7w tLYTbzS`H3UŸQS oFF%t8d&'? [.GmqYxCZ^22.+Oj ag(ɳr9t%HP%amV dLRVY_$[C5{&JĚݙw(7xK)Lu%h3ˊA=3^ʉv/*u&?0YgaEQ_:T CC %>=Fݛо KYّbP@j(!XMF C,H 42JDE m%{U"{i)+*gDd+06~g# \SDCy TSEz T-U* Ot?_m~'6L Q4W1wK_n $.)B3e$/H(`Ir1"v#dVRRLk9k3uj,=ij* Q*oyOCcP7 (fTNWw9+bj+;;;<d[DہGobQi2u5ufH;fZ Ou[.^Z%2~-+>w7Un48YU{I4sR^P?=\|jV92nnz0Q.;kmkLFbz[s%= GG9| HK7o`PKz((P5 3S!fyw:}_P3Ax-:Fh`P^r}-ͤaZv:ĬXY My*}Q)A4Hr#_)Q<~g>rfp>9(/ g/0+J\8sH_5| $!G? E- I]No$}vfY[B'O:ҟC [m|)C׬2h5\ґ9'+%!Y{;*MrAzGq؊XLtf@IҸ|HyzIUFGO#SI"Nݩ9qM3n -[Eg4ZOUmRϡ=PBd'~ N9,:byq:q J;Ԇ1K!> aU78"lL{{ZQ8@  +TcT@|zu6h-3ul+Ҳ>1~C[| #~EV` fU\::iN`Kp|NrsAfiuʺ@nXw`K!J|B !M'X. %g#:0 8:~'>& B9ܱQ+&Zd;]n̠f6/ j]yĪ@y8#:c/!^}JEN_",]lyLeQD B7_ ?bhS x/CJpzDQCc?KBN%1aOCU %vB`jj =EA;<ϟvwrLnR:u4[ҫêx_?| JlYLa~) eV'\gK\pe,DmqG9X#$*[yR > !-#b&&Ic߮ULQ.6; kIJIq~DkaBLdQ@ N=Kl3 9uAc0'q&(^>{g)4U'k"AJ ƕ+:?"JQfLtqRV~$\LOP_}6c5t+c&;,Υ|[{9O?3Lo:l=/cj:"=dpIzd Z-y.X=',veY)Ke6t>GtEu TUL]D Z`WsQ6w'jd1No1>/V +GRMی@8r.l6D#P t 8Q25=`2wgU-+b#:&"{aep~}U߱50TGT+*  VDbr/V,5~ea.Er'Vzr`Zpz!ClM- .gY͎{`P|l:IhDerXC{o_]W\qT9y<)Kr]bv#g1(Vsx{o PDzmgBRwq dCY#Tz&fu=QFh{s?u5=;4=Iud/eB? C*]W9+KL z2JU`QJ0 .\=k@UED< !PhTKn3&n"ZKH\ IQb[aEBXGNPq/t|äfA@52 N6"\IW+XN SK _f{}M&DRIHϓF+4_A6jj/DR'W;&?@1X3:ľDb^M2P=A_Y{jq΍j܍AS VDpyHt"3fQNaj?^Gc&tIr:'/`667ΓSRe|A /s, Bq4 NLp]nF7@zU57]TǛ'aV.u&  'oZ9W:,<4˟"Lu|m_0/B^|?ViV_ؒ z[/PR0רy vID4 ~A"C!vŬ ! %:G0fSJ|uMo6vSukF: *KOpXdQ!*-#Ce*x6oxV.rcb+>i*G\uW 6f@;q)%Pj2#G"V7i$.I U-S ]{Nf7a0 $hf6;1"^P~{Y`Xggg_4fSn+P$-=arw6S 2{2\3ъJw X I mzPW4jg[vݍ"za=9~%]^sqnW(CE?AoK3nwܡ8 ^7-YF#,8 A9OF$-Fg@u@o4mkzcH?9  i)P]Hu;9?ewDB+O6A~.eѾ֭BEZhdGLG+v$6{!KzZS\$ K)cqd9tQ\?Op+2e&%/@]fUym]WrL"gEz-nICM p$QbL&q1*)MW1*W8.2D YZ8" ,I?V{hWe 6v&C%*P );tdVSgEeb>U*!T84I+&8=NMh}'6=e@j{(z5(R}scZxGxz:;RWD;dN5kjwV_>I5u4SiK\ h,S6ZC$0|R!}IZvI G^m,m'7K7(-rHșѩcFcTPGX_P\/\( I 5]3Hjhre}-ڄ b#Wn[X+d}0b/s] S< ͻe#|Fə 1[v%yK}Sa7kg/#\A\c,U(J[^KʙiW]\Eu]9qk:qha#Pb]A*WR/˥3L@gG1~ ^Qe!(nr Kt 3 X TO6ȉ J7̩GPa{p@#44'@BrPzW[5^Hd&@q6=0U){Z= 1y-"\MKbJrT;x>d8"+C2@r]+?b|X;V0 VX |F< ^d# `iPu-[Pk35#$\h=`Q_VJ?7<fy6twtyNɁ!U ѸvoQ9\Ǿlj*{Te <2m-u1Oc }ql;6l^LZ'op3bG1 Y\79@g:*7iV!U{{z: ht>r.Iru+[݇Ցj E%ɚeo\_2{k% +t{D>]-2|~\x,0k[8*6Ty[ *L.\@Z; {zâ#I(u. -wy7(`QwٖHFw.'Av<|+GA(sX i)ʢ4nHNr )?R47@4zX]9~9Ԓ+5]]LSm#ү$ĶuU>f&' Q=e)MaYp/oʈ 0$}FVXJa_TBK* ɏ*uQ |{~n6e he@Ej>)ߧe#LĢʴy('m|T).5 H33O 4aeM'_IB(!se O 9Q5Y3~Eo^Nu85C[S+ˏL1.q]qOզa|vpRfTxm[V.etWB.@t$z]/@!"#G9aeOW{)+fR"WJr$1&n,c7AUgFG]0t\1Gt%gf-,x :5C|~V#+qc~Ikf9S^[S]b;h ;iK uN0yb4<QkqzH Q`fܔ͡ZjSgy2(ף1W]K6,#Ri%7OI/8 n8;JCNphnr#؆JH)S%g:fGQ )3Y* {~6 i9U^H@xbyDc>3qGn^4CgX"O!{ bAU 7=,R]"LKj<O8[(ǚbgQ YtpN'@ysaW}ZӦsA {f0OLTix:&u/s:7g}s$9Zk=eB:t6((3t07J*)R>hT6 R!F7?F67IHkn'.""Q RZ_WAcUv8GF x[ʷUuxBnOu.Sn N~=^?V^e̖g3>%o>J?5JCX%wO| ,=%?qG$+^+1O^E"(]1GD2cXbN8m\CwG(%WL LsbzKy.\o]OdW:|NVВ/hcJ6G[#$#y#K KWtR֒,Fj!~p~\bn҇CV2*QNu/s}Fa,&>%ZbqŃA϶W13j?C_kѶ3}AmoDK-"p t1iHnQaKBek=_0ZKb6:\;of]=t֊@'w;2u]qI' }H SF 9PS7 Kԓ(|w-d[3b32XkFbt] 1K$,#D %k V)d*9]{ejgNY$k<["-|R6.Ryb)>NQcX2d:GFU}4 }vuMh&|m b\6+cWLPm7PJm|8“a2tu]ڈc*yPƀn \:ʱhrQ5YK[n( KnI)!C6,/W75VcO&La#.kJd|TAv]${10v.sl0!|h/ggqhQNd4eX)~L/)FA6qot#DqG,% qbY<@b;grg^Ypd8jBOdPL1d)wSt lAR][wv ,H#l l~!R!'=W]?{Xg(:n2%t@0''s!PX_-o^EH8d5?^YoEK`UZT~yBU]),hQ~ӭNv<%kiקw@͸Ɇ(vo^l'u+GrӒy WZ^ܦi@(xA*?ׯS+M1$=6%Z6CJ,2]S}ewX :#o>Xu9'V8Ck`vnU}Y;l۰.NGяKth7.bnT[@w`&ڨ#BBCL%o/hI|j\4]-C n?T`BvQSxy.UX}_!v&  f9!^J O9<0p/:h, L9]2\Iy6da;hA x^Zsh; K jp*&nT{ x~geWiJu288ƃfnWQͺy<r"-?x^'P X?,Pf*"͕]TNe@|S _3aHHe%+T%Jk2Fi"r`Fqy`g!Snk;\mU)Nj, ~OOwE{i!4`Oz @bn;P ` *|!>I p: Z |G*@kfshz>|$8ocdeoIq h/<J +)d;"q'V YV)DP1)M~0n5.JF{~ŗ!x?,~2MEUiRDLT!иt%O#b¨dz8NQ;|Ie<SQ=i^%^֍NɊ[^NiY{r@mSj$nV\VSh>D p“5~?CG&rj/Os>i¾b%.007%$KU'%i8tWu?Pm2t 8}C_IL_mY\zډg%Ld\&4h5zQc4Y^}s>(Kql8 dD(}|G_rP9FIBq'ܤUHUlOރ8:@ 1p G;:72'E8AU0RY8.^}Y$j{"F5G]{&&yzs qX  ~Pl7{ޠۛ2:aTZ}eaYyLI1]et"sh%ފf3Xz4Msqb!  bcel7&`(/w`҂9PVYw T!? M6>aB`6FlLaBrէ97a(? 4K_pnӎ\L 4THZ)\)vESX2XK^l- xgXeVϗyאh1m#UiXdcqu29EKmXpYfXiHEUU`[ֈזg].Q+ag8T *)1n:-D4k!.&8œ+5O N(=3oŔ<}+ }yxiI}9G' <4!N`Wy!5ܱvm~cq/ʊڭ\՗d>yH̱hH|tLR)6a<$^=I?L@aOt>y%ATkZr"l&DSZ Y>w#! |Sl"V*jMfƄ 9g 7_V E)'.><M!rmx13;!R]`F{'q{L ڻڄ eF&DK9|<Ͼ]#6 Jk`9&n.4rF5YOs+`1wQ19eTk}KeV?|I;fϫPf|1O 3?f-<""_g0r5XG-``ϊ cUjR^.o4SsnykQD7qe?e̍uTzxZ{c)jD`$_ S8tn LfZiBQȔKb{f4{AU!q)cv2w(|N0k1}gN~Lc=ybttu dB12oEW1trjnOHA`.R:I}uP4v| zuWj?296 AgJ,ְiٽ~ gO;{5hG9`{}Jhs\r@XND$1QoӉ!x)2':B.vaU*f7X#brtP[lhzIEh+BUT)K/kNH)VB40AG&!a<ʜJR$v#'hb#\+ tI ƈ`Y_el\]cIPa2Mپd i=o[8k1`r+*coP ,c$/,B /%>~n \v'W4b~p9 |OhޒB8F4"^f]Xn'x^ M|i+!KsS(z:4&x,% '4#71My%l:w9f&BN_Rٮ;(>Q++ާE '# QZ1A} aLWsZ VjX`BeH9Vj*zv@OnQXx79ȢQ}/]AzHVF !M4 FXzy}WM^vBHWw=2>}vum͏ed!cOA tp:Ald@C+ #3 4VEK_$7'3.82">(J b$Q2?j)Wa`*/mOoxUyߗ,I91ZDIEB U%g0b,@ ^$1 mh".q^zfߧ%R\nY}7AԺR~h4FxhmVqHM']W)ҫaRwhhh$zB3t/P+Ind\ $' ,/sGyP^{a]=K7ndTWnO_&a]-aaTgOa7tlafCPZ~*s}uȮ < V,!a ]o'8[ "CHrVҦ3`O,[_a\\ .T-|h8mZN"_:f^¯kQ7FwwUw+10yr)PyJ_Jp;6PG`MdU8\MUMq2iA@wZi-slMn2Q  7pLKIMo?[WwsbK N7L!['`c M=|>-E`7N#Uv0^XLZu',#E[rHy2D|Qs K/3AjzLۧehU-~'oO4EL!( pB;gR3+S)S8#^:odhZ{ =-&$H7c5veFNu[v2\ψ0Ne;n! @"XhRQ3nƄJ]&1u=f ) k,(k |' y +,XWQLC&.B%(h{:oUF-\$:-I8swkciV}0s¶HSA. 8Ejbc95/lCciLu>zW!)U1)SyWps8T6`<kFHiEI]"pi hi\AQn\F4}GpS LhKV$F4aIY!|PLX ,^ );pv isMu>2 ]ƾMXknFm8(&}B2[mFDgQEq g}9}2ɸ> \C20B6,4I8* BjK`=}Lm,FKWʄ10pqZ/B?uÀGvIv[Y?Õ)79/LS}}Uei% M*[5m#HlDpo8(W D 3kcLPtLF/tT}zL*IEg#Gq,Ԃ<iRTP{vkWUUIϸ:^B}|q|?Y"Q:[^IvZbsLtsv`ӳAio,Kj:q&29u(VYw.?&6o$|<GJir2#8T-/EFtyuga0M7`pQrNAUgÐ-C.j:htRyfI@%~a7W½̲3Ӛb*yz'pA1)$gm0Rw~^u+d[ T/pD!?t(7'Ó\vl?Wu4BE 7ޱ 3_0tӇ ]szlyw{j"XYnlB;(|mn@&%6jxQrm?HIid)f27rS&;n2Y2I$R@[{>A2s'd!Bw%C|8v=XDRJ8v 7Or?jEm 9d`@rM6 s07r1M`m' yRKA] Ti]a u N,fa&ۊ†'xhڃ^a3q<@ Z4o d*k&cn,_O5ryәߏ&ӣ P Q{(@2"Qx {$+ 2r`fg/ j_/FM0YǃbHoq-zxV+aPRm4v*Ws eSS–I!|SvXŞT100s*ߩ!fd}Q`F\uQw\y4`PYnu2fM;*d}Q9ʰb[jypwԮb~W+4xD+{ Jr0#W4?TSMUo|fc1^)ܐ msyzaU`lLuwvۣbC7$` 3b.p#6}(7Pk{Wap/iC'IlY 6*C bxI5@!/Fza@G::d`,/PcmtQLMXDauF =B]7 } :m1(\HK2}R(HVX}B )bvganJ<OեV˾pp;IL5g9R\<lj%5i@Qd& Z8,#ouB(ƀ*DſԷ ,(^4*hOcam|3YHf|3(SvH H0xeK2B`/c>SFUP:(8z3k)/!~D`i'YBY-D:yhL9K+-,((>3(AFC+PX&g}nP+B=OB{uF|.WKWB'*Vv` "k v;a=,=SD/Vo,Gc_eշF\!nū3W&'+)_8m^O]Oa[>2RKVp'4 #@ztq:A6J|Bd ?0u ZEE'adբc+T  [Kf7id9E6$ti!g5"V9BG+ awU*q*z{~VP05H=3J۶dhjf29<499>@Y-~v QuNJG'{1@Q'BiI|h<~9zGsnieoM-{5XS~Om)y!/b)2vk;dEA|=A7z!GXJn9RCd[mIRR76gP\c"%}< 7G[ndkhSW5HhmAm=+ ;xhVR>Cti5j4]ue<{!p?kOu-K |6nSG J1}<֋=m}29,"!Rh?dyϱGŸskwSgkpyc z,>&tJ7&mw 7:Z{\}vĵCs%9bVz4Ǎ}"_7XDK2[suA `|SB,}e3DeRޮ[$;ڼ149!.Gdk]Hz` 1g\֨>5۽BG :6++Wy=V>F00 v JZ~MD1 E30/}"+!'~3bQB[E)*!uvZrY{Tok}Oz Wf.NbwI"rֿz~^x$b>,)ThjV,X{X"vqThwT RM,sm޳NX*7ݾFryY_eK_P6YGNp7$o H6] 6EIn '8_1"rdo(y/5lBmO*./C~.' z6@]ڗdNu6.Zpw&70thy!%P}X1u}-/N\3CO ;-39dW>͈ZbJܡ*ʽ.< &5F/TOa"&<Rs˦sGL+d jRS~hEg{ڌ!Bcrr%?oB6>"aF54>jMYi1x41Ia Z^D/Bo +5q#MN4۵A8mDX]$2 Oew o,!;rT6zy\s%}Ńvfu Pj3]+jla{;;VX+U>t]14 Om ~wL(fXS݄ Lvf:Zg.8cE3w{iYIa>RO,m s$*Q0:=QK`:lG?!8Ej߹A$0z,?2h°?'$yl8:(k.7 M4> ʡNR~[-t`lH|̭PDuK\dԎ0v$@P)=!US HRniG;M,<0? (/wb߹ 4<0(w(HDgXnO0d"eHR%1sQ;+IP|gnrtfd/4t&{+<VBJa6x kQBAp76ޥwr|z4A\L 5ƍ,4'9)YV "zF+m\D'Ka@wV$C 83O3:׷j^n{́2.A7oԭ z2eNS(1&1~iOf{ǒOE=ͤrIޗw@Wcn+mVS16L`$3s_\+8y2CdX@P|=UѤ]fX=TGAG]n5@>MF$697OگJiؙD! V, [ ; Ϡ ~e3 ׫f:{ j8w*/ϒC+E SvOJ+Dq,?}>ݏaKM,-DLiA{PwGysm,)6y+_ηfXY'<hUG%aãvq#!G&~uM{W6;: [>_e^>#/*"lCw,]jPAX9 Xˢyn{^Qj~=sc[;tN=*hbZsXDj<Es=iAVXd>x}1pt:NXJiD_*&<RZ s_f?4 7eR7Y>eRp-"Ev1`l+,BpwRڐ]*!mM/B,i-y'E\',tv?U74Q>vcMQؽ#: d9E.#mG#f{SV@9JQV< OCJ.1L~ڱG?&Mӥy1T1FY$H:g>VFٲ (aG)W7Fф]zl:3mV"rg9?}KBnF|^>4Dcѧ|H) A4 5 hB7yl!~Yop6+3+@@W?ܼ-8m>w''"2$R#1apn:Ov0*;yZ]j~F >tzU=Ŵ6D,֏Rs_LQFEJ%-oCoL VXNJ!J}wQ[sX33S.d8z݉q3]L5nO˷J@4J9OeqiY9d)xS7o8dOۂ RX)06Jp!>44=&^jjY! zq z~,I[d OmV 1h+/e 7m- #"%\[OP9JEb)7j|U~A[p+"fv] aqA2.Q.D#A:WfjX( 9:M} "G  FVE$W#7ttwJg|dtRkheN  0~&_t_n s}Uhn1)FT!gn{¯-Og(Y^12U&mHhmv$c1h&DXLSc1+3PfF+~ PbDܡ X$FVoȷoHsCX(vt#?v{r@їhʁ+%L>oBw I~T|2HV*P~\ۼPA`: R%}|d4_om {Oh`o1y|5ɿbRC(sCZ0۩Cq' f>'ii6d7P\a1SDZ+7@Zrb-{.'W;ȩZ/}e EwGQY}̹o/M<@ w:N Su]=}]ZL^DF0&40&R +? ߨA O Cm O0i\B]X*x2~C^H]S'S6ZIKpdoSvЁ,P2.VhAu%1g#_{1&pGJ1l)r)7{a ٱpr `sSk(- 1l1S if Ř՟:f7P[z'bs USA'WRDF$IJ]l #jF-(3&\0clrz}WG^7H|<X,=5CrvJ2v*I΂Huguk1{7O@ER{pQrOeD#S#r{l`\^TXj^X{=Yz:)NJP' sx.7)¶_-!pL|Q l*D!P>a1K @Hl( %/j=$am}9-1 "1(E&\IBY>(@alRTlwXrݘG 13|DP~xD  !GO~9K ,_Xam= ԽUOv*7EFCRIStY&X<P/ȸ*Yt"<߀a>YUgZC"7iq;{2^Vsd0 0U^/E$dPe3c 0*zU /`(}1[*T}pŠy (le+-h4wa_DaJ~ t\G~vfQ[(w]:uooP5b 0U^EU( a~/.7D?=z<ʺf~jW&X@eBhw#b3%-y'vmVGHe{ZHeJ^pWmEzV qcq#{DQ!V 3`B+jxU]Wر JY54P0 Ab  DGspoh1=7"M:ӌDDכH%?(qI@Ka`4De: d` +w*d/?@,|?I[~l UAB5 ű:>}z  ( =#))F}]^\c Q[x:ar>}T)#ək{h]P^icZcRf|z h;7'9 !XQ;}\kORZE*3Q1fomͣ@H%G_R U3@F0p |YQl5Xu?QE  c zS?M-0 7.yXv|yr*Vq\7G^A REͬn5S'^JzEaK;޺<UB̴?; OE(C#/o>]8Rh0GR1G`%sWnc<7M0ʠMU$`\])c ;"#CF6ou|z)w W!V NA8,V-=nb_&g5A(!u`u+}X$B 2@k0KMIyP>G.lA<\x{BTp2G&%x K WMdeoyf;GsK7"-|O !](|%R};چ;*g!Y3zkOtd97:ji,il3 Gp&(f%B2mFڟXE2Dim@u33 P=L4+"+&FSJ5?$8  ~2 3>& <b7ku\_%:}yg~{΀=JunMo}6]n+E.X3Gaga49vaO.z t${"*/ 2{D Z4m M(\o1Rq@:w K+&|=(cYqe\|56#;X?b0"4(j69ϸ>m9z]yۦGBzO^ WA{\.&2Wd:\3KsSGhG\TyƵT343B e>e5s4XqÉ+@bJ1hm@&Hm) ou7gyM-,G/gE:4#5# w3?SJtgKe^f@s+P)2T SP{y."ouNr:h0n#n}/unDNe#f['8_| WA7"զ2e=qqv_ҎHa\v onbA?60E I~c%:ޫt6LmD#Bw'9':"7zw_ p`.7sFhlq 6Cw]ѽx #J!B'zM J^m z&,[MVF6d]=~2$+7|]Y25|ykG;V*&D>+ A_}0"ٝE WZASPOlA_{yszv{˄,hJkC*C+=yQAu0!~@/uhDDU.%*bS`5jDiUGKtTC$CljM?eմƬ%bVlrzؗŽ&CXu.K 948L3uىO-WE=O(q@އIѰsyDy(a;FzL KqW (5MX&\a ǸS hY XC WAh9]SzkY+Osv.XU˵eo~@eբ|r%^MP8B F"o*Sǔ~G:b^0%g@7#vgd$.R(-@O\I*$6&&`nwe_bci H+kX_CѼ% vfq]wpw{ d^ZSHyN$OQP{25m/S4:eRXFͳB HTUx4U893IuZ-W:053:TcGN| 3C_!Y7WYx8 Ese-n4xopYa,%C&&R)LDYd{y-kYw d|lk.7a BG7I9:1VSC- Y~K ʚXwOM|:3g@=2\D`Ů+{*p'f3=,26r)pVBUc8v?k3w{+JkZ-I!TPy\DmV;T u!>[_ZmvdyD  /&YN^an1$H:q\Bn EȊ[2b[yߖwpoE‡4}t/eggloq\@VX Q0i#X'r2~'@ @4IB62v7i"2+e8[G RvF=*co% Օ y& *$m|(NB) :s<ybLa yc7޵ZPPxtʝ#. AsJ{*o{İ?3 KK9\6raߋ-v]}RF8Yn{7ڜ}]۷H&{$rn*Y.?Ӊc?dj:OpjChً eƈHjc3F 8'ٯL ~}a~[e2b5NTP d?E1kj/\,3psKp6 dIެ ,S.APAg+? ;:/6)b %y`p%m|@sO6 Ľ*4&;DXGg[qcrǴC~N(o,Hv5irD0WU y"W~[ \n % Fy/K,o2$CiLW"Wl5?7F3(UgbL8U0]{w}tiee``hTC)44KN |$бBI7P3h>,>OPin {fnQ/pzxۮLl$vKWSRU]fivRdHE6-/p"njUY| xfH:AvÀ~r6-W~!>4H[x I\t=4J%GFg^{MgtQP~\<3`ayC9;k"Z:.Y92^34PtaУEe*pD|a6- sJ`$x>5na[yF_*jLK2xh?]2G`"XR`ޖJNC"?Q"|p"^F g&T$>q(Nwzǀd' # eUY|CruiWFZ ' Nz4hIi7RYX=0z&%XSDaQPlV,pXm ӇG}T@F{@ 'h7IZִV(19\Z;vH7I:kYMKfo :yQ'Η8Q{_rni FL2#2:>5CdFp*&K7`sRzA3.x~ a&x?<~~:o XTTL.A}SvRm=]] 3 #k>oA`;/(~&\$&i '@_G$MT-b֥!+ 9 )_E-q6\0 m A7REH2M+j>:S>dTJMa?ƈE&Uڙ VwG!.QZtjcobR_FcZ)8Ybla_U ,amt'^ U; '-c.7Yq,W !PD] VSQk{\s+g6ӫP;!cy5::'H4h+A9+Tb!bBP\ݶcg^6׭neP#M;LDrR{~nI^t40hتlCȉS3 LdPR8+I-(#6 {m3,VY(k,fIu3X7~'=IVc {UNs.yL2Xa8e[x):-(F(}l3 k1'  ;b'(Qv.zbIpw@v|!9+ {KnvutvbId,:R#WXd\wn76z]6 {-r\ eOmY80JdO2:\.uZM7F1 S|_)Qs J&2yXed\i'5Jc_mMs~+\`[_. GDvX~np ]$7pR a)i"(4 >3btA1!HZCćc"!{2qTZbw /o}sMTFdd1@M~˖_Qt!CQ7KY[o|vqXJHy_hcOq.< N 'Ԝ,Hu84CV î$Rl=Xw 2 &08vyz? D. L= ?zV*v|;StSYEBõ0B-?R|YR@%!  &lJ'>HM2alTCx6. 1_M:<8#^yɛ6f;VifU@()N>.Jm.uE>8K\Y&jc_e{IkUSl2^LuoA -#fI^%=DGy0r+G8&N+Vo=UkG%`1+9!z'Pm(58$&=RkJ30Y> V*[SKoT LzFd!E6eaUgVcPCu3^'kHmPu-!7pz v  X\=*'Ej`o-8:IEc?AQ[ l(Roɞi}?Kn5=|F74!$#2dIMjPLca{{_>Q47a@JB_Bo5+ bDp^h*&Bhd oo+4W'SUKov>oI m!]xAVI%`! .Mz\%_Q'q4E?:9: VH2p_p mP'RB:H_\m!bC^wnsNg t% P:?p |u -2_bs)!A%KRJajpbI$\@O[u5MQ2W=n4N32+'!K\ۀY%R .uh&wK0Q-lsmO'e@G5 yGXV.& (4#]6QsH-^U8^X7KTG6Da*aHxU_DSa8}Xha:j=ׅ*J]O~`ܓeS3OntM>F=mވMfC/^e0%2Rug8Ci=~lE5fPZheZ Nnd:QibH}s+>`U&pAUzd%Up}l%?S0^CJfBl+3vw+hF,NJ&Q$ĄUI|eigrgSμRPHK&8fcJʮ*Ҿ+gr<?$$Qִ= ],c!P?Cא:(, U91yAA E1g=K;v'ɭ`#nf(;%G|{xsARe p`sl 0\\A\%rHV-I|R3n`jjtE~Gmhio j`0OT==@MBXM\lG3Z/_@u_\wz+ @;9|ZU5l n*Dg9iH#_EAD:=598IL J{)^2C0FFPUjۅHwlQF6c1 '"G% !*JEЄjt͉`ې6b q6^P)R@'=M,VWY25f|5v!)p'[)VXT7]N]ZyEi7oE$܋~Z0Y!l_;MB~Ebi{LGHOV#IbL(<ppj-:"MEsba8?0|I0'y'e_f($~`IΟ_ 4ZRjQ|YO-BH6(X$Gq_46"-~o6ei)]e@(OLjnct[)o46o>*0n!&N21e=t95^Iy8gٮ<)9o-r/Mpp̨|K2LuXN0z%/[ T [  q]yf[HX}(T)zT(Vc 0j@ U/P5")v4nwyjbhɴEp2B1Y9;'*aE&_o4HdG9fDw1N-4TxPDD( "j!N Ҵ>n؀ taQ93ݖ-ҭ1O3[\)9`iz=5yY3lBgjk+8 R*=5? JZ5DC,"A8=S!%b]fzĆ,Biyb^£R#X#fTɪ5hwmcQ+)2 nH Ou(^Yl){9ctV6W$*U*F(״5axZ$'0Iu'U,kkA?/\Uka^Fo  eב^P_Wܭp"iYNTn@:#f>3 kܵwi77.^- 5X">u]XfsBTDtDm3rTy?zTf(YbTX;R=:H7\JYdZ.emogwIT2uD8:@ 1toA.H +W*Knw^6NK+_=6L {B!Z1%j;s\]/?IZ 7 }V&rCV_% q,!inCgclmG{Ё n:0ULQo\ɚr%{bwpQ۫@s2;`fL& 4D=h}u$E ^>]u \c RNzN# t632`Ӽiߌ;}qtMQ\Q8Erwq`MT<,< 7o3A'gr/@ gB|Ew"L8X/ .WuHʮt;S|{M~0lPt_bvrajeY`-bACIZ0,wE]gn%Y2~S&hFĥ6H-gɝ)WeR,. AldzUW; 8 hHF$*%m+H@P}a/fJ|g\62g+N`gt\۞7/a6e+Ї+<2/h5h"nE8YaVѴ*`|n8miWo@Q&~ˈPvS-o P+f-m Bf%|ZZ$=Z "N!-֚V96RthX[.eXA gl"ؚMTϊ_ ! B _O,d>&c9!I.9k[tnZ֩9@<8yczmp4XGB^SWp| d9A= EceXPJhD7~s'~va#Sr81bmfVwt"T%(?q̺ro> :cUZg[ce4ga@ ,53`Ԡv1w >ζhG|rKV!?M yOo M~,b7D6dFal2#y>ܭ@rnPf9gPgQYUc ;{{< ~< gug5 Y^PaF(u`4OBvR\Bd\7zƄSh]Y2QYX=3X}kB0dau~yMẍ́iYTG0(S:U)(n*l^4]1dUKbjUyNjC|i_L|B8=1> a%<Xa%S X+ʝVg@YU{glwӔɞPnf/{ &O,GSֱhdueenv"x(DygoX1A\"k"8͞׬9}s^iJ)c;\Eh* "MY;Y& 1U1 ? \ ~SzdG17 ګ=%(AW.OFs]SWW:?XTjCx:(H3Oj_yZjxLg_(rdj}toXR:KlG3E|:n NWM(X~k*"|oxSr |}@P9aJVw&t3jSՁ`l5'@J:8Bh6W-19;& > ,"TCd*N)P+9T`"WyZ~ΖNcE:ڑ.0{yAYW8!%'xK׺c.}Q;iލs|QG{zZ%[xzV lUQvueC"V`Z+%4Įܫxbl"95M՜ pT?{-tB+ nr1ƣC0& Tvk>A;p%X$N$wW ':2)Ea +kJfw Dqg[ٶIfq?Zr$[J*;uv!':g*IĢm_́4K &. @ALMH?RXZ Q7 "l_c7pq(]8BsX}[9~ (p/L>ȯ-niEZ 6+ٷ~R @uo}:O"֞4 3.VJb3X;O 3YLAA,9Dk-axVM?weXnR$RLMyXh~)fO 3]X^@gi^a^km[_I~6*J<v)Du6RJ{og)L_?h~>]{ V  ;MTJx7mMų /nCTo!~϶K|I`7ccNJf~ty3F`ofz>K2G,I/&_9z_S|Wn;:W;2-=`P޵^ނkQK.0Wok_Zo[@D-o)]=h8-Pj$'n|HUx)0ܟ7yXW+6 &Ŗtu>`=dT3a@$0g-$'9\HNYo=yn| (wSڸLK-ibg>y`O3?Xj0 ) Ry{WƔ'37D]8h|̀N{=Sopt!5>Cc30~W(u]z}romg6[=:lp=kv IJ:k],E/2!aj s8 plDh{FL'6>f%8U1ӧ%}q_Z%0RnɺP:oĪP36*- E/67G3xC)-y38DHEH6)\/ $.pa.s^&U? >9@? J/$JN2:euD 7~vhoBbqNj Z>> #$uV!AK"9l4hNK~lv5ƛZr0SMkɓ06_S[wb-KXd=f#eXL7=_)e(bU;p|Qs6iL&}ςBoƚ$WTeD 63i|-`7 |aU_b~:6'jvzx[WD- s1ldq{|-~+lYm^5ȶ<d($ucU^C NWb+D6xDj `c>JZ4'` yH->jזwC҂ABgb[J׍;ܽ5,7331\^APapүHRFRGM$n6qQUʠSf*vj^~XTsE<$ &_4:Wρ"jr מuWwy(U Cjr r nGSqC}}NxY[(<\1 L'_JiHqHMS0Kw|M1 =3r"$Q(9+QƠ$kݘpvxfUDOڨiQ*O&:H"Naz= 1%߼d"\l]uDG`g"7[)Mb1 t ) y\rc;qIY;(p&fR02?fT:$=dE@Bb5#t3= Q,dFplǰH'^<7aTqPTBb ?e%T?U,]k{S!ݑ[ymT$y *nG_%~a 3[ LZl]\U\eLB}2l!_ 796AP9g̔ӗ!ȭY+٩]?n<O.0+(^<{,-H`MU}JOz(nze (?zWN>A'N`Red}nÒ;tN%bh9ZYUFr@xI]Pu J6-e3h)?8>O j #Q&В0BWڷfhq .12@.:d+\31g*E9HeHf\gg;GlyxԐ̉-1aDY={L[pph"I> 7G[b?ku$9Օ3G+@hxӭjœ6u F2k}BS,VK 4]{@VeB L<;e)>Z_",vk _IG&Rb7^=_{Xz T 'INm^kb Z)~7ge'Aa.Qm'/F5@3ITZ\jyp1x" vS|SEgۨM:8j ^'A_X_!J P<X[Hgn=|5!Fa{ѿwsVbEɮ*0p#7~A D{q[e0M,_7a/ .Z.؟!eb |C".4F`'~X%–Dqg,"fSJDn6>%~ZrgX;Gl<Wh+ڦjlqdsaY>3{(EcKu`~|}H\{E:=<5W-S&f/=Sy[cD1v\n@AvǾUν@ˍgK]7M\tcgRshr+|Lz yZomdW]"gׁӫ "8 z,^pQ glPрW.zlR8Bs` @{4'fEHy/J?T|^;cwwT8&zE^Y6><B}S~k/jH $~üixIhW1'Hf+HyibzB.U.(s?ظ6utBO A\<;}VTX`c7mrR<y- Mǘnқn59$JMW 9rQa?.bS> =~i 0d<"b0S z/1Z/T Skpszۚ7h" p9"ebZC,fӐ;Gĉg?s|*vTgEId,^\rY)um4PN(t Ǟ k 9h]p758.ڸIR Wo%V>*D]m4|;M%(V7yxq:,gƆKr6]c'NT9' K+"S-4fM#[Gro }Kxp\g:H(l@Ȣ@EB)6>EXeGcZ8tj\W/g["(_NJA1ʾngC@{WwbdR#xJ[Eȩ9N!xQax ?%_3A9XLrvkKK+  qPyBAi! 8@'7o$CIjRZ v\L1;kɮm ͆gRGfaB@ :~U* 7$P+;eK@Mp O\6=odF]+YB;7Lh&6ZsD 3i֦2 BoE~OJ;PX9CgC\pPfYO]UJGVN:T+YjPk;+O{bޏ-0{S ,]\h~q)0U@ԀѬa C?1^{Z8PMX!L Kgr9ޛ(,G\#q":İAJv[qEj2PAq"/f nRCӫB6H'dq 3h 5eq04`H4Gr7,?i$i8ڲMPpa`ۈLXPM?՚_<dAUHG5",kKʲMu~SpTyccI7L )AAGsKE3FҺ"TduOzTxV|[~ݙ(H̖ey5m0V>= [-$. W/  0 2AX{)0e$ B tl&=ZFun(DDEIKC 0vi"G-b20:L* վ $]bLwU9GQz{Hk TD(A(D+G/C5~ECScS]gq^xYQzrJs@q9r3p%#dDK7(k/1h/z$ W *l _v,B&*ry\O! HP!;1}#nhw>j cswYf@!YݏIxi>]uN4YD҃o0`4q`\%^eJK*aqOe>.'9~LFGX|j{z}{~8u(б0\'x`) J# .5^5-?:?-6j2;."qD &WF4;/ZҸsU[+ qkѴyô&uH>?y=!21;%C!R`!c@#vk{}<#H3}HZ 3i9jj|D;f 6\UY&[ b}A`>jX DUtJ7N]U4V.O@YjZ)VzhH)U6*Fo"y ` <~lM= ܋bCn'.T:vood7mQosM!&y@VGdFwOcc ?Y$ZSIK=E6a]7eq;:j;,h28Osx&\b^JM;#5( ,![j.yAhVv֙%z~ʅygKx0N"?Y0mGbjF ,|PNn{,}ZqBh{0u1K\s~frm``WWSO+Gf3LH*"ClOybUU:`mm~{}S(6D!>t jm$ }O%; RLPeje4bN^X+#Hr.ZP5IF;(+i,}nW}t&Zi8V4^A ,z2<`57RFO&%cAy{e;sN|/y,2COVZk~G0m`9?6݁4Zy2Mq-`e| R;D<7R1{"gvw+aL^4C n@|y.35u\cMCp}:-/(/o=MeYrh. 98eNYa%{I5.@a}hưe,wMRjp\NGu3='} T mZ137Q  nHz?"""]&)1;AZLRPW7^ WkjV&\dzKn<ps~0Vʨ>D}Or[DjzN`b$B=+#Px Yc:]@yn*Pps [ <עv!je @:O 4Ekk[>&%6>6>EItPW^w=Dvp,gI'kA3utgޤrclqXR;>Bt.P 24c`BS0#KBs/ѡ(V~nz|xN, Jkexs9̢شNqJ RtpRL9*]Զ|){k0Ia[ZQA 4t.p. B0q#*,4'H' g(]&BVĩ&0 "W+dn ʊ`?HZ"e%WBxjXn>k%Zڊ |<^yv|v-.u Y!}/o$5~0,JS+f+)(I#ȼ |$X,Eo3g2.D16}?HگJbHVYI2LN'YJ= 3R/M0lI1dU-8.7sFrW6e~tDHY O7 P/*vpXC4 W3Q` nKח*oJA%ƽ>?Yr2T3&z5Kѵc~wnlIs{Y$,'"P%JSj?fĐ_d3 ޖ>t_`iAA-;b=jx&ؼ~ HN>qhIa,"e}O >-[v@+8)DQLVWpU9G. 0jd=x"/9Kd ٣gLI 1c9cHgM^QElx }Y;|sz,Dp&_E;sia}ؚ ߺ1IuxG<  e+N$ֶGXtL[e*pQ~O3%m@I xAx^Ve-9`mHrsYU,V>;+ _ca_r<؍{ =!"m/LP73@cbHLbH>Y<3\.y$C1Ff= LNYagkGp{EtkJ_{SGvDo0dP3@kU5Y-%Ti R^^@'0%:7 m$^ G2zeUF'8Z% \%q 1{56P<DL6N #K4JcPLKtI~_@+3W 4;YQxVhgR:(~ apJ}ZhK4A!:ҧ.͍?u cUWM|Bo`::y>b OGN^/XhAlYӈu۩P! X5d_ .N`fu@|J![KS@E{E s #L.a\}D90F\4t2YXtMXh-l@q8X\6LZ%n%ǥup~J+k&wWA]#-mjIa$Zp:W CA2q!W ;)$B- Y5yK)D@zM Gb.Ep!Ds$ qF`SJ;@8&;'ES_5xijy aϏ[J4YfVRZS%qZHe6ipyφBE&>MwX#o)!EHNjEko(ṟNxs,%N~ lov2DjJvaMYdNW9FC`DVG"HG%XKh,^V6ffA yJOݖRk[f~pdtoicD] SpB~1o#ZC`&y EĥN|˞mcZŏM9r$l@!["*~Hl;YG=):;Lx?D`{Qa&cIt6Ćm|}Gu9ofuUhG\:Sq-G;%5eZ2 0W,${ ] D"-!!Xe%nuhq :,]=FP+aq-4uuW| R* L$ (l#D9{%rhcë(J]ds{)*,q}H~ZC|5.}7K fS~}U|;NQrP,jub h Y1UBNU^he"q$w$v!}v )xe$Ox(r}'atzHX/&K H|>[p7QD ..?~ZQH!ݗtnTo:6Gpz,JB[~ygPrR@'hDE<(384'\//7քCiRX^m ՜> RwWLgv +<$Ore|{̿}*R'x+dB\t& zX݇y6q/xE?i,a͌vu ';(n9?xTf!8m_Sk{h.dnn_:BVKtH{i<Z28.([xWJ`Bƅz#jNZ0 zfR>f-o K2$J|e^j6zU1nAY1ZI"O;  +{]IzJa^_9QuCVc3jnFy]L: %ti|-zGxLxֻձ˫¦ϝ}Át?gyiY H0;[ 3y.[A~,e*N+>n4CXpQ1Ohn(:Vԩ2ztJ'auVDjߟɽI7"/<ndIx(QUR[%cjkAf `6]=]^\I\'^be d!/c<gVNobx"zc~0oFYWTBCe#(m oqm hAd}a[,_6Y8RNIL2KHۇBuK?Ah`=^9U1J!A?w=Bv G4HIM<QTSƨPOOOO*M}H9DDȈD ?Ѝ1ʆ\!Q|Zq3c(Sk<6]"j5$c&?k;-`[iM613%>Fp<2':ALǥc/~Ri|!6Z(IOd,y~CWFQmYpahm9*mTOingO&hjA*k^kmpY0RzMz i=9ϴ0$o/ 40mOmώ+#y.@8%DP]&oh10p^<lzXG]Pk6UR6cMH@ X4%+6+>$Ac=(3҈U"d B$"'pugQf.0@ MKJ(Xad$am vJs~0ȃ8EkUzh_m=e`iPl>m>(kHHiSWijlJkxhod<`ykZoRfH`F?`8c2fZ+7fd fk s}}E(i|e(yn4!d_1;OE?^G/(x{XG{StYmsYBd^n-G05XzuqhUq(^8D*'N,ԑ܌q6xRb1K/{Tug3GBY4Wԭm6[x7qh]}.M;>O3 ,'%[q% e'g_ /^/;_RL^__4w{b%gkO>jdd ]UVN5FNo;2"2B&,,'C5H$@E :KY%j05>M7^tka, =k5P_e#||Ò.8*eQ s/4H`{\-h&?VTLkNuy2-.i9sBHaIpC}9,w,iɎ3>rr pȂK$w&ko`tUTDʐ0Bd6q  k0݌+gEq(C4xeGWqK AK4F&A ^m vghFb!s[ޠoO^ 8STLGlEźwJ$qU4duX:Ge5Upu_!m00(M7mG@Vcmp&(q1?qlSpc3pqGn{l,4mn‘ p5ogn]_pNs۱uUuf;qckcf_WLAu93[.)$$@"#S&*e-/7 CSP7E]*dh5gtnBgPJ]hel'm"l9wiukTe[]IJQ6DH$7qZ)< V]h/H5ht {\cI0%2"L?JԻSk-W@W^3W+DW@|?VlzR{J~@+6q)I-1z!nѴk`n!Pn3=~+*rigaZVڵNUWUyVT[Q:O5NNVM+LzGAi>Q4?RWB)F+IyOW$a!k5kwf $"1OGlwD(%a((++t(/)M$pA`jg T2d(3!Z>\6{d b.s$5%F\0xX6m;RY>A?DEF?FFE!FB/k;<2H(MS9[_8 P`[`'^X%L=:'qYlUKǽO'$|eePXJ=N-)/@`Z;3u rPT7]e@op3 a]^"+/ '+!*ȑ4ɐ;AwOMi]ßkz^u>0 (-KZ?qA05pNik;h,N̻@ ^.>'R@Dv4_y?ŷxH;cxpe+oL 5%jVo"q%qlV%~;yUiʇ1XDu.'g!S3= %̴ ߐ0kgBBIl NU.;VHr@bT\|G\:΍.w$ru&j ^RF8#& N }՛zr|\j?R$ ߆zuSdTF 9, h= { ##='Yxkb s2LgBW]yW5FTDrSvV ^ 2jd"x54DGNWѯbep@xs} U"+n5˻>5jGhNRr0U VzeW)X/3W:WA2YD[E_Bc>i:ry86*4A0H-*X'%N#8$V'0w*,$*`(g ?%#4Y2zR6S+ڿ"dkF'` k])Ne۶t8E{93ozftEaМl^e\Є\t_dd'UqkG r;w/ ~$ă<w^SI`A]Ʉ!4AHyqpxhy[5nLr>@`1J_%%3Y[Sg]@f:3Z ֨ a(@ !3eKP!s*yc3vW ?P#L+O2Z^SZi9]yknGIDtBj- 7=@in=4>.AGhN> bY'RhDz__Rz-F.- T(BEc!Y1/A5Qa^juDF%ڊ-˔3p77C2k(Q  |#Q$u; bN@_?}\TuUdg7DL0zOl|Ef@[uU\z;`z2fmUG%;81 'AB 9ԭH(>IV}_{}ąS+_I+7jkw`*:7A?Fs~M:I"ȴr#5J@` hx"brO C(#G/Ae694?wBM`BAE@i?6O> =>@C9FIILgO*dO*FLm?E0;.q\ H )4"Ĩ<.tW:xht /c& ~ 9VcpNGe*n~F p9vI!6ڒlf< uaTyCxTd{ n]Z̜lEF0' $~,Ga44{b*Aٝ]ڔ&SVe7Z*:#Iv_U`Bl+x΂ۅG}u nlyaVK_B.923 ,:K&O`X#r ԃPyٷ| (j*%Y1^?n OEcx)H6fCMU=[k_&`<k_QZ4cP qD{'6%m>З*Cn*RpˣϡM\aRu j0vҴ@X}fn{wyaRweru5t u>wZ{ e@/o2X'A.P'0 4 Z]ji`L|2uf[@& b$,#n {dD%ڈ(z{tp§!oo"s={xԓݗ"mѡi\fkbEK}*R,|;EEJ^Uw^Wfkort?vyX~ZO"Cw3EEX)GlMh*L)4tITvwM*)qy+=Q2w'06)Ak **(/.) -NU`%3rԻXF1?]&/b{(fO7s9y`'Eћ'ˁh^QM8UZa]] ZrUiN26F)>q7 1,' $N!!$ws(4-s0+1 /2*e%UU&,|9  93GFYkp-~Z x Vd ,  !$(:2m+8:_:.7#\1I(48 9Je$kA 5DUy cRv a.M>4=N_.;]h hP}q x&}ɀ1!yocTD3Y![vzeoM S2TMD^vx.Z<@ BƧ+n!-{Nʯ\@Ωu(.&y[rU|=rb#Gy+1BI4 x4Q1B+$7X xK[c3o7{X!xNW  R Y ( 9L&`7v=%O-6=BDDD4B=F7 /  (  h W[+® J,Y^isG_]L79'#MՌa\6[ UoǏ`fu<o5EYOC=/ʒlu J.G5s?h +J| t,@<#+ 5&?vHP Z Kfls 0ԐBNU!j$EL.<+A3;X`$r PA!wU6C4:RYkwaA-&NTNp׮G0 UDS;z]aoedg ZeuO2`EX3=Os6&E07)}' Xq)biyWNq6vSv6gMl4a1cc@&,v~gX^ H}I7w&q/leZK^SEH4"~ hT:)A0}8$~qjrV3C`r2&/!B2uA(*T;jO*Җ|;cM/Tqfjt0*Z6 D!Tc=as/ؚZtǨ`JT:!*}==-%zGV( 6-~'86KY`x³O{;say͇3*8MkY)OR=zϟ$= lo)W4FB=H,BEHJ>NPlvΦT!K /Ok*WGcib_U8[6)Rlj^HtO~xremimg^'evaRj[BcRF!8)-i[xMo|i6g^)g9shL_lvKp8w%Š _բn-+4x8F_.E(+dE@]oaW- Q5L|IIމLZwQbZLgD45ww,/vٮPQ">‡Xzqm{aU,JXM@7xg1,!*w ?*%+P.#_06+0Z2- : *C%M!Y =g u z4ѱ5Z ~T!$:W#>*B4CV0m+ Kg*9Q Wto=ԇW|psbzR@o-!)+38#p9+5.%dOאyϏ7~A UåBZƅtcTG <4+-8(C#,L:!Ro V!gX:#VD'Q,J73o?"92>]$ACOC??_7 -6!;52(ޯDFuO_ H2~=>u"j`tVrMEF@ž=/:9": _vLYwe0 o}uèfzVi}cIeo&}Ҧ|}~^U1L+dcxD-^*ES_tz3GcA#(k4ShqY¦s$*$8wOL`-ts=${P,269;1<C<Q<[~=IbR?Ve'B-dcE^HYU_K!J:N=5Q 1S#T^SNF,;-C pVb>u) r_L:Y)X3I 2ok- P{3 ]jՔ+Bobqy[EfWSwXB[E1-ab!'i't[['xV3 ENUZ4]L`da<|ic e gfjqn-t|׍L! *>2`n:rBnJ'/QMcX i` mis)tdKUG\9X- !`t +*{ @UVbi{HZwI2bii(oH_5&AMNOZeepxH~ ~ob΃V^I y=n1'a,(2Q/?e+a wL*"8s|( {&}Yu!_J͏z6#:͡k#l[~A` Y̢Z(.yMppټL  ;fؑ@xU8]soӣubõ$6ѾRQxj kc{z <,>OVb:t Q$׾)  RJ0 nH]5,ň!odR 1(U Vfh7zjr}Ai\^Ou>ۣ^)K{~R9)5E{>rcWMBw9L2k'%w: ^*2 ; @\Nz&-5Yh2L-`UZ[tY0 eSNK|Bϩ(9/$_|=hXh pov\.7yWiWB+3l`thY=Mq!yCvgkY7lK=?E1 x$hZC Mt@2]$Q`b qU|yfN)4Ř ~#ƕVtYT7!S![~u!XF:=,I h: 0$&Ay{[*s=j:ROB0fIzax0k;uBWN!B[)+":]IZJslZuEL^JЁus:e_W!K?6/328(] (vz0+J`Hr#zFҗŌ]zy2xmw_x6Pz?},ـ%ڄ}ωnN?ר}`|Dm)gCTqIBoY D 1uU M{}5و)pVh9in~Z!sV;cD!Gb Π7ȋynqi^hZG\tcoC~(٨hDY1hPpQ#HmmRAMn87PSjGӞ *}*+;CI\UIuzame{4ҕyн&2<BD9 B<x $4g))<18=6>I<59+ u&x7nau[=hWD!g.U]XI1 s{ Y=7Ry.Ln]Mib?P22'rnh_>X3R$N?JIb:HGGGF\ HQgK nQYrd2c#qT1H A}<;!=d)@C5FV/IyyKANQT^XA]i\fs)`hX%Da{&pFg<(q\9ICk޽>)&\L&6oAvG|pJ\KԏdIEҋ@+\:}=3-r*dg!ToCL /DSeP5}-ѕtzQ_C'l 0q BӒExA \@@$x }Zv?@zaKy8$l(M q 'r _iLJ/4Y8*9}J6_\u} dH,MJ98 $Ih57lRo8D~c<|.){@Qa"p~m+T z_K1+:IGiOPT UbRN HDAP8$,/ >T#QAi H Юo01StHӕ:yi{TYv:G 3"c&; 9RfxL+PؘKnrb/IVL|WGqEPd0EWGIJf<kO.;V]_jmsxx8--o~'~l] ;8[~cnԛTS;Q$ ΄̒+.HΙl vu)x8EsrGnTi_dho`qp]bw]X}ag/{q}|Pbr(XB<[]ϜMyBIS'*K.!$<e9U:m: S. AESgAC|lMļI%*A.R!1.U5n9z:A@DGCN>sU7[/xb%hMln9dlKf\xP_Bӟ3#s]#If7YX*uZ"z>- j6%V,+B1 0h8> yDkILN]^ODO ~oPaPDO'KL]TF=na2m|#Uzmoi8gh0mVvstbi~ML9p%*_1p :߻4R̘q֌f}xdU-,BvS&b6mGLu5{W2`vHɉP]̊p%*h2qK7W_M #Vì}ID"p{!6^4lLK;d+Hq/>'_33nO jTcDմ.D8c8w~{ zb|>rtN\Avj#+N9v *uP,/=O`.NpM}O+#L:q_KOś@2p%+&uFf `V=pEM3!n*oTsL;]&Z6rvgn /Uy wD$ZSE c[ 4~rqͩ_4$)KJ0c6<7UAEŲGExG+SC:m.W]B .H @v7fN-72 * .бb)n[Hb4׿ 2xˑ<ּl[V?h(9dq((Hעݜq:l$Ox1|_ s1Lgpq`9[SۼIA5=:e:/E<]BQ@1RE^Lg^Um`qmoutjvVv?ausrs-;w/}w)8V(a * 6ajX4t"B5q M8i)Պ{BB|16tgEmӘVf^C|V"aLK@o3K&8'/&3>]mD|F9EЁ@{9;x'1 w&Bx{ ~9?ۅى0z)fK޹c0V'T'nbYDM)1 6|N%m׍Rz&e9~N(4Zwj[_FeRG@D _p}TW7 [,8[9y$4 \Vb`oeSlߟusS(|xRNGw>m1%)<WD6<(ПrU4ZyܙUpv'HMk#[]H;1yYbImEl*!ُ(s ,Xp?(gsa:bkZaI 7$l&[1(;@(<&(D$ѭ!n2rY^.Gba[~|E x*%Mpq/6 շ4%C5dF&Y <*nN^)jB{ru}tp k!?pc_Z!N6B5+#[,}9)A cJyX¦tzfmAaߴ6WOΑLaMMo,S&^\uLi,: {'ߎ٣:#lfm*"W(v@a+U'+ *&!s  cVgGr2zQwDvGwqgyXe|?%@ _dy\^cuw^) bI@!x6N:%hSk ̓9ٚ?B_B{J"1d@O$h\hA u0ҡ@-"rW  V6-(x  m {7Tu#i6TQL8_$@{R j W2B:Sl,Sq|gbA݂sgX]׳WRPxPyShVUb\@c)lHxfum_Ml6=H0 '/ }F p$kr +RH!hbiçP55X!-n̪(wDaOOվaA6`. )'*ʖ2D?)Pvf%+ΰ:[q{ʛ *b8/7Q{jv  u*P(6CE'WajI fyn H`p|%R_*c<GLLYs+dlKr unrs}m2cVlGg6RK#G Z?*(8yԐ1r{MRo/d\ WJ<,~\;;(Cûǀej UA .PLZ 5&>:T*i-x|O ̓Ċ/xFoBe4]OWUIW\Ye^pɦhsX; 8Q+lԵb37«=P EU-۱UI6$d%?}UbȾ /_kBS U<mh |'A-}2 507$:<i@LDYH6yLfP TWXXTNEwA:Qc5.OM!<r*x ma^|rc ޖ/0}+vq67eBWMGCV5]edjqrx}g}+Cx pCdT;C,@/nx| sn*kBl]o}tYg|Pć;c&a~^I#g8evRtmk"Z2Iy0# +19<@P9 sb't,x1c5:BJMY'gvĒ=\/yG|,8=;3ItE/d&+TE9/"0KI+(Ofv!L*$37f!$>"SYRNqE;'j ɾ@^#)x39ͻr`nN[UB,9AG 3P'i<5xCUCRaOjr܂- 5v!ccRѹB4($Nܯ |C}h~RT:G !Y5c%jbùN,uʨT`#M+;x*΢ (֝BP4r^D0ӠOp*u,՞"Ip$M@QC}_$d| GmsKRӴzPpg,aB]V[Kh[w]Maho"txq)^,Giq% ]G$W~+bAMWmmxzۤju+pOke!^^URL*C9rA/a"l( bi@i/^P}'Uu,rL_ #L-7}"bMo>4^/|/4 K>KZ>j|Ӗ֐c~orEdU-QFo5%Z#4@J'TRDV':YYXwVS{7QO2O`P'P%;POOeOa~_PҘQISU9Yk`"j;?xSKixz|*:ŦIC.SLiݸ[?pjGȒ<'F={Qqc jreR| ddIfjzoque{wXIQb:9)y;qngk]Q(E0\7)$J>Ș͛J"a=HD''^Zo(½Wۧ=JތS7}Tl>n\݀Lp>^]1rI&4^ N\(sv \ϠzjSiY L&1/3CTSh},)݂$ti#>bg^`9]R`jaeklwu9OWCǤlwEwǟ#^~ $'(M'$# dީ]z@{{&1?+PoeO{~0qg\RLH?K>Dn4%\+S"~M:"TJt$oQt:cA'!?I/tp :Ba@Td@i"E+JW/O%S:WT[v_\eBl&sV z=&ڔܒoxƬ`JV]6`#rMCH%JL:PxRxnj[K.: (<\<;(P} r[a[.D"/(- 2`6:E>A-F~LmTc]f3ep3Q"zq=AS['}(S Ngrښ11r+^J7Ih3 E.VQ4 !FO}pw -4T+"L0> KUw!^-e9&kCnLPpToZl?^pg^`_pa)VjaJ_W>[0Ue"YM9B/ 4i" ToPFmmH!!$9oQ% $]}bKIڋ82y]g LV;Ge:0m)#fp6fg!&-4*3228:<@@G+E=N&IfTLYO^PRaUcVZei`egdqc{a^YҤTVOJE@+;06*1KK [h3dmFuWƖe,pwyv m&%`>OY;t%' 6#Y+Q?_UvfoM`jgRedcZb_6s[qdlWWS"KN@fIl7SCQ0G<+,4+y,.#6BRTexGdo'|IŽh;^Dhz fOR8 0=XvHǫ"zun^ԦH" 2B˭gb!pN+jn[o.K72R=.K/2de) ~o"q+-@H-^%6jF*T;$az)l.v26V9:ʚi:8?62,:%N z48 = >   d  zIT'_ ;8R'n$i#J5wqY۾ܰj ?v[_uGNj-!N=!$qi;Ǒ(}gP~h9cf! qIleޥx}̮aPD~)F<_pt.SN!tWͷj}gSRI?6/ED#e5x.Qcd$XL.4z9EQq\em;ms+y|$gًFy0ͣ5$V -Z)lF8dc . :E!M S& Y?]qV _klN_^X\[ZLY;Y|Yp1[=&]@d_aDd#hzPlps|w]|BDo l]> b"(,*$e \^X(ɐ)tY@Ȏ~,vZ _;igIO;\S9Sxb5~ptgflc.WeUHl9z+0(3R*D]ty.~:jD9Ö -"Yv. 9G?oK<: X5Lbcw>AI}(>Ul{dç Uy-h?)QwaqҐݠTAMf "mz*/Ev +2B7TPv.}grXK7@Z8*+2?S.G-O/x3\9S@rwFOcL[ RWLZ~ ]\g^L_J0_w]XwQG;glS-PD7!o%??- lLiR9! W_Y1MK}ww0uCxDWUk!k~ɐJݱ6#6*J__sd]p?~bgd F(6>D$Q[b2Cfe,bq]PyWPUG`'=23>*N"av+&twkj j X ?H\7w2|"·N4 !:"j"<)#$'+n0Xk5gF:>yCyHo[M`;PXS3VX{V\`y_e9jp#w hYZjdXHB:.ز:$ysӛ,6 t[@\>#9MSޥ ;tbTK[mDdžx@p ?Y`@DC0IN QTYO`gpx/sRY;{-..R zfsc#+ĩY?<*t/Ğ0VBI|ՒH.H}`1y#%w<wR|{eJvђsbÛLǻ\l?@X8tr, n8(x;6~Pwlfpq6|l.iͤgeb@!_,\Z!X2RbdJnA7 - !2 qC4Jz'}]MeD@ Թ˨ bЁ[5yghW E92ǕY l^UP9Q8W̯bp"KȏiϦ{PqUgZLM >> 082R#;BO T[dlq,srpl %g,`I&XP63RHL@[H'oEA?Q=T=Q=n>m @w!\C8;INQRcB_wpPf  \6VD|uTƾ߱zw %Fu\?bWQnA3Վ@*ޘt$_"u#Ϟ&+e1%17of<H_@?NA<S?d+Y;[6P ;0)gk"]GR< hrYË(t{vL X8t8YGz͏6v3kkW^sOg~D?6u-Xmg+b\]^ZiWnqUTnT9UU\-w'-}"aԊ{DH!hԣ2ܢmTU;5 S,#^Tƴ3yOc[O>o-CF&MIķϑV7`Ayj̥[Hz3հ:s).H&u\EH1d9 u "Y 8>'R-oy3ۍJ8I:< ?!@>0&;O5n7/xY( l" UA'/6: =? AD{ H"K +NO(3S;%YEv_4Rf,`glnr}zڋ^S[RRӾ?JD]*>?Rcrst)`~iwT>H*, i6)Cv@-^BA,9!7 Wp6lHŽ&٭ By f'`T^swB^1L"|?n87Q 3=47|;vBJQ<Y^.cnhJ l=Kopqkrxr qol'if4dB_RXc}OseD8ٕ-ҧ" WY 90CWrjl ;^T!4H/ ^ht&'׋31Fl7V29?6r / $$= Tjrj~j͏^ɪ:"hm!˹ufvWpIg<U0b%H&b7 ƻQ%V6Jn`vZEvD͋-*u 06`~Fhk R:S9{! g u$Uђ?z`&bJ4ELα Yq*Of?#\SseZ R+MmBKXJnKNsFR LV2Z-^b hwvnu!T{.rx:aDό{NW`XDcږo}:JQ`~5Msg\QG(=5/R1,*E,0 8CECR$e|q˘* ):[Mwf{Dk_b]gDN >/-!k-Bl#e%3#"z45Q:FkxV"6u 4IYaix(gFor\;5dMCdzD p"- 99qCJMeFWa?lVw] U*fUݫ:bִ׵M۬pyI@M|t|/m0^NS?0#R/ O|L{ 0{nq+$]fF02ZO<LG>lR,b[mb hgizh`3dש:]T}jHi:V($E"6V** `'O rl]dI6&6  ; +8r}8ߗ3/>-*J(] %#<,"7:s"E"eNj"U2!Y [v[0XSK{@2a! "$s'*-/Ø.g-i?,/R+:,#/ g2Q64< CL1U_|ibvp|utvmuogpb gn]YkYH VA3R!OJKYFbAW;;4_,7n!\NDDw>j;;:= 1CKRT~]nKg]apVO{NOGeeCBEMia[ nfˇfG>`g mR'FHh|zU`a[(.[L2&3\ 4d5"6*80:a5=}8>c;w?>0>C,;nI'7P2*Y9.Ac)n$o{G!W[ Ad!!!43G? "F<HxȑҮPXzp/ozgR^q3V+M=F= 4'Dg G) bOYBF6Λyn1e[QG;!L0@N$w $ *80DgN\UxZ+B^`۽aQ_[WyRM*Fi?8[&3=b.V*xp((y*-1]5 :U.AIIctU|d+u> .\Cb/:Mzj`!JSI "8vKc[hrLy`~4~ypidVDxGG7'Tn8Lx>j\)Nf@2.}%s n ^l@[D\InO%fX=dOu6,V7~api` ]O02>U,v_8dJ GFޟN gK͞ b@ dIk3Uv?Z'_^|)^5oYWBa/c<}yqNbT:THF]9v, sM &Jp ]ȓM.`?3'*"{OʤɩW#,rB;FO`h' L4H,> {Ps\kdP _+[=FMRZf+pz~!#)#139GC2M}bV0_x$h q{?L4|]5+W 9.zEPZzd3l sx#{}}ی|;|ykdt:[[m]K"dU<5v::8]8 :( =@aeEJI)9QLEXEbaa kx=lXe,h6?4MXh ^%`x1]D3WUMegB t5f(g= hWUmnLɖ7 |n`m4SUFS9;z,} Գ;{Hp7^&Ki66OG!Xb pk6<~x}ٰwLOa`L:+(BFS $P?Z{=eQPJ<)\A8CzF׿wa[O,} 'ws=3xrMHr7]rq]rqrrrrdrb\srscsRr7q&p/p;8"q.@qUH1poQn[Tjg_dt\ހ RҍG-b=ب 4+O$D*/)e"-)Q2>L>PMN`wyUEKcaf >.N6npv"^hp*YkIB9+L(^->7Ih [vM;cEqc( ,V7LHO;!Y/'%,;1(4-8:< = ;$6(00-(1f?5 8*<:6<>@??>4=zC:i5Z/,ND'NEn@te? UA+ EINKVT=Zw_~a#d=L g8h$iajhkmGptx z"))HsU)߶,Bi[Ru) kk#n.c8A-@L:HFMQRC[cWc3\iyamgnl(nrlwj}~iiQjknLswJ|wb\F ыҎXޜh ) F dM #f`h]v~LjSjJ]VNC>2-"9 پu}Ň>lTvR!:_$@boXo{H`g Q,E%lL(RfW>\cja#eK)ik_SnH#p,`p8[nRFiUJcdA\tU,LPlLVKL@NQ5dVC(]:gSwtqo[bu5f W G#,8O(r:; Hr+8^<XXq̚dSf.z߸wv[aw:!z~ql#S(vfHU /F_+7)(ϴ 6qLrε} -9M5E1}N8tVj`[`t^V^L[iBU7#Lh,@@k2#IumQ|2Ӗj9PŒ46O;leDzÎy@gUR7E6%+"#a}-2;L`vkN#\A:DT kF` Wi#*1Zy9_BKUz _< njCquxg7f!s+ߜ7ԣ[CO\~jWyH]`ě9h=\۴ P_& 2EQB3Q^{jjquU~@چ +Ջyi:|lr#,f9W E-/;#Q.z[(>!'d @3H]]֐.{ Yorc3iVdKjdJBg):YlN3 r-x) r's&P'((z*+Ʈ-033QS7įo;@aEKR`<\gtQtʃdT9E6r*4!),^0AVF|m"/'ih.n61@Ks)Yg"}v1<+BjD|C1=(4.(9Z [q#U([0bA8F>2DH LnzNrNnKkaE3k;_l%0&o#sLwW z%|{x)s9;lpbSVHL90;)U'QP#lw7Lh}bxg-Uow)hqZtMB@B88l1Ky+,&F# *) .!4,"""8"C#o{#k$][%O$&C'8*l-/p"97@ KWxdqyO)'{28Z|xz#RX= !#8$:%b(ps+908BuMO3f]TkDBJ{/݊ V*O^{WU~b\s"z2Pw%n+D?^{9GzmZv`oR/D;B6V3(Co?J $2u7ɲq I^kQz4mcZwT$zO^)lK-UH1Fz4,G6xIm8LM9-Ql9V9/\Q8mc>7ikE5s15{%,nc$!_6 9`֠?ğt^g$K<c9/){)qd U]Cd.>/s ;N߰:!(~/j6V<DC2:K*#zS\ d1mKu}V M04):M`>uaRqP"#,1=IT: ^$hDp!~w%(~'ڄ(&s".\([ Tڻud y5%7,4~x<K1EMu V "^gf@n{u.{"w̻W[~Nvy\or^MkNb"@Y2O%E$Y:y-  1\ 1 * p7`sPNC7Ny/,*в-)*/k7RD/:S"f) {Eΐ$D4<Gyq/Em@dMe^YW|\]>^Ebdcek5fWveBca_XPBEr8xm,= )B t[tGbf{:hX5R`n܉ Ͻ:Y(0?9T)B7JC;S?L9[P_bgQDh2NlGn>&pS3p&qr; rgqlonkMe~]-NRFC3f D ɮ(hS{Hߒ8Nzr>jaXOGrf>?5Ʀ*nCq4 tS%|/7d;OF<;Ì7U2{,s9%jzc]*ZWQV&5VW\Z>^pcg"k8o\rOuGCx d{~"0S0эɶ4"ˣKyϩBb(19=@BOCODjDtDB @:;4*.z,97 E*NFtU]L[_Vc&Qee^c`\LWOSAP MKI+iHAGXGtoG?GaECعAp?@=><&;L:9,H99#;[?ڵCInN~T.iYU{_B|d2hZ%rl$DptztƇbnѴfV_Y۹ VoR};tg0N2]`uȑ "z dlPH@+v3gg8+Up%AH",!x#(-"Y38<ù7@#PB`CϪCNCiAԹ;@9>vE R_@k.wSk֓1?C[K{q; 4h2 y @׹~oE_M|:o,&ie\UFO8I-cCy{=b6MG/n.%jI_uoalǫ%u|l[IJ7n-%*`>Rewuݻ+jvƠ..$f H|5VL~e{~y{/D C#7ppK?A^o}U)n3JE~`.Xvϋ UL #~-~5r<fBp\$GMSIRKJDI?D*<=d9.36%4L32233E4۴3Ơ21cx0c/`O%.D< ,,+)$gA r  .9E&!*n4=UE45L HPQOPMIeB% :/!mXi9z|lڍvet`Mv>D18'Aq# 6C-PK?UF%l<(d08"X@mGMAP]6BdICnAzt>8r|1ZX(@+ 1QqVm;8g2xLsbȩqtӁު"L՜"̚ gn kw# hf I+Z  [i6jq^OgCh=8:u.:{i<^X?TjDKwKCIT<$^+7$h1q<,y&">{q& 9$0|_*uY1@n:eD[QO5_Akm2{$Ɋ.: -^ . ](3830H?\M*q]ɄmשoU!U`"A4E?UhbalԝtXY{'%=se}EX(L/B[;˒6S5ԃ5w6gh9X>IDf9yIh*Mu>PP?OKF^@9o1'DS #6DhI^sSZ TΘ@'{ڊEFWJ_$s}mb\|Q1{BGz5y)y]zg}HVHXƛFcoDzH<λɷůO%#+,-.fI,wQ)%&# [Ka ~%mw,7m4a`=QFBO4X'_e=,j lUnq`nJme(kg ]cA]s UM'C;:R1l&6{z,"'D`8y[ߍHoZA B=Cdz^=D qA%[yP4pSBhO&dZZGad_}lj_se`zb Xfjbns@yKgr&eOiKt bkL 5 ؀Ww=n'dXp La=MTg-I\u@82/U-8-.kt/T0>w2)4568809K~99.m:qdb'ZtϘҺpQ{Ry6-n9gCd{Ie>NjQLr_S|GSaoQNI@B9Jc/ y$y  ;76N5ve|]|T{ C!7bMuId0f{ ƽ%,Z4g<xC8JOVTWMX,5YXYIY KYWUPm KBEw6'qzfݤ}QDm-(vfXgZ#QwJFCFxzInPd[RZh~O!yC7ؠ+ {8 44!208;CHLhOPuPNLJ$C\8*l` ԬiwSϮ٬-j-֨ *'{i?ŪIDgִx M-z :(t0Us7TX< }>=8;8?63X1O.ʓ*l&% R(-VT ȣA\ͅy ax2Q_"$NR3dLdX{{Rjoww 9J%4/@9Ek>SAa 4o|ݖp;ɕvh:1]S;2KCj:T2*<$Mm5 H  i47v^D=qfT67@^MЍuj`N}7ALi6R.;+)3$<&L i%L%&h'{!&β#)dM36v\.M/n0ѳgKh/-CVF!g2wEYْmӝO=˸>e+߽I>PPb*;tghR^Urc(nw%X}62F0$T `=icpss=pUi_?~TaHѨ </_"eaufVK0D@.e6Z[ԱUƥ̎"w3a{_Lj8|X$D;090%7)'kKR8'; P?f{M˞,߼17{uXsft)#w+ |NVw: C'1Տ{t22rzMxhqz@EĎKj`v(ee9IZj%(x8-H_X"hx̕$ۋe^հEy,QnLcceYP:J Du?:^63ƽ2u2"4T6–96a>xDUhK]X_SIZ(:ia*fj m\oFo8 o2lZhe5a9_T^U^f][ AZ2 Cb 6yH}[* WC_lNAui-T B\?_x]a@ ܎^Yߐ|y҅vHsOmf9]bTDcINTxSRVɖVYSM+})2.'na=Yl!ZrHs7/'/ 1F}W{"iӶ`j jxchfX0KI@Eu,e ƮCS2VF{xvn^ȬL٧9vx%u<EVbt@e(Rݝ;“#&Vgz89tU9@1@f4nQ"v+56fvDXPOW%I[G^K^[T]`j[2pW sRBKCм9>- 19/Smg}w޺80($[Wj9QXb#C4+20: @0ZFjK oPUOZC^`" a_@ZRWGF ;A.!pN :']5psT8w]j ^ LRF! : 0=(?"x o"5&I- 6C1Q(cxwҠӝ<ߚ;'$<ʑ-ND]jvv$4:-$ Vsez/pwAeR\aZU%qOgzKHFEDEhcH?L2P%V\mb i q[xd TSLs_,UΊz;ojRY 7H@7&Qw\U}g{Oy7{x!xwu'sE}ng6_VN+Dq;XI1L&OYg'g@{[,wl:6# 0,,ڪ/6Zww@^iMF=] 0o6d-&(zO%Cԁ_}ZHxZ;!|Te̙s/ʂ Gz^uut/w |ܪYLL$h5EUe)t0;.L^Lp܀ɏd U~~uͰkbK7[.UϥaQ0McJ`eHؕ,GUGz=J9Nw7T mZ=aqbTj]G4sV:7|- gƔKS!";.>~tkc2][4TLDC;S(m09w$[JKZ h]t}uN3BЋ?z;A߳L{2px:aO?<֭'1HKҠBWՕ6 K 6ۜ#p@qQP95r,pxV7mabWMAg5(S"@ #S %P-\2~541,& C. C@[ t5я ìk6^[+xRqOlihk r*L|739ɔ>ܡ@_@>9G>34*^!ofE!$ 2|BSGd2tc٢ w6T/3T[4Qz>U'ڰ.h48ߎ/PfqXr9`N[cN[EV<0=* pK[ˬduY< @ QШ|F(U_yo+^iD<$; :̬8;A7ۦ^4\0,Y*G#0C _wUF0\-` *vs#`17M@9Ps&bwV5]Yݹ![<LwRd[ SCu7 .6 'bh#" ?q>]DPrT#l1'Y ,rHG289(A=J Rc[vvefq }ˋhT'ԩ]]Ie(o24:ݰ>@@>ވ7;N{7m4`3eT3>I4 ?6D5q9+-=MBYHYnPnXu`4flqbvA{½~~{w'rj(`K#UDVH5C;Q.n8"s$ 2;=C\bv.ȷM"aʼ6da'!(pT:zȸ? ̯~N%>i0ޔ=:]*C]]KR}X\G`}bdah|wmX@rvBzy}V25S[`yPnM ` QP>h+YStj/uuiaJMl8օ"S @|G{@|w~7zrb(@cPJ6T&YAuz[gYC^TXMW EZp:}a.gj"t\E8ܛaNfd\R#tD83iM_cW7yQN,N|QV&]e nV"yw8@YO:fG~5$?=-j4,= '6hks19&]HGxm,U$bZnFd q);_Pxufgb}U@+~m,BNN%P4lMRbhۺ~z&{}yyQwzPd|Q}=}c+|{ dy(wuTsqoooq'Auiy~ ^h. L© ~BĤ,FL/­ɼ!5d|EsTjGca*QXOOP!F->I97D?1M+S'JW&X&W*Ua0Q\8UL-B|E~M=Z5.h.Fx(;"af xZF?*=6N!\ggqKy] U)Zx_+hq80jC6cN\VW _R!gzOpoMwMGOCbSX_f3nv;.&8ŎӰ{MsxψByҬxhV@C .$qwq]I 6#TFi<˭Jȅqq$4^;WK:ϝ*ZҖ ht}-9vn BfWd]"=T &(K1pB?:P1'e(^{qwI? vI%i (Ek 0EBNTRf>zw Rr׺8JSx' <CRf"zo"H /E;&S3@bIO`]sˆ D;f)S6AVC*MUM Y!Z.LY<W GU/NDTiRR~T{Q4UCQURxTXUS[YS^QTbUgUm5U%tTL|RROoLmGYB;M4Tu,'$9@ Zr ] 53"=+B"7<=DLQnw_ZXlEx.Bkm~6v3lH_*O>e+Ǧ&,^SبPN?ҨADT2Fm֒CY~Lѳ Ⱥcp8W4!n.lEX-pƶ}9֝Q:'Qk}vpKj cY*] W/R6NfMHMZO(T8ZcPnz]#ڷ]`)7ƪ Ÿ%g@݆Z#zrnVf`^_7cjk'vL;ƸOeLqq[2kGZblwa~nj gğX`Ǯ[-Y1qY\X`eIk!rw*|tՀ3S{ NܕjJ]l$ڂ wI|~kKe]OO0:|A'B3E%%+=<)պFx""fSa:Bǝ1"JO TzI|msj")x5:+uM"0`#r1Bט*" Rd%#3SCzTGgazj1t>pwomj,ں9vE)Qs] j~'x0Bp]YLwBox)A9oEMLQQLO$JTjC7];2)p MF" ɫ-# 7_Ib).~I&jT?~+tgwYCJ;9V'U?l-Cn{aGh3(a8S0SHEV\d"sq}m]K0 =c%(*.by3C~8{*>yKD xJw*PxTHzX`}d\l_ۇa*c%cdØpd9e~fph*_kIotY{̈́_}tUkƞ5`qfSD5^5$,Oa)./lwb2FfX1W-K%'C_=vp:L9;=r=@ӺD¤JGPtWY\bBll)u}_sxЬ ̈́5{y~x w:vv< vv(Ax2y:z>z=?y<v8~r3l. d'([!R*IA9DB4=w/0*% #Y,).$3 8; g< _AY F }Lu jQ)7UW)X%X/0Wa 4~)ĭDAi7?Qf3yu8l*JHLu(E !yG*à:7GQMZagNlo-qr\rhs˷&s ruUrp/,nrje O`xYIP%E* 7&-J'+|&NSKױgߝ!wdQ<dž(<ӅJ؇}jא+l9pXf]Bc.v ѯBF8cHALDTG_H"mpI|4HEÜ@T;q73i0. r./.3@8SAfM[y]p,Sѝb E )E b@n$1)*5@)& !x;H!3"!3x,w;2 N\7ٳ?ZAp`{OD{<~r((k>e`B\\YHVT΁BRfPK Q/SQX6N_;f5l8qUs\wDrdm3VfK\D_P_BAC0H/Q :\Qiw]wЙeL -3G5@6Me }H! %Qc.+H@TPh@x|&R8{Ik[\lu&|#ʕ]ի0>5չ# a88[C'<(!,2Tp O*7D'S8bRr˱7!dzoeaO&8' $"&H'00%w 8o^=FfX޴twȇtA`_tJ-8'݂;}{zyfxw$wpx {~?1#n'8+.,01.':Bi35ѹ!!5L|)lmD^O5A3%0 Iz"$,O5x=CNHKKYLLJH&E(@ 92/+^E#]$xӯjygn%6 E/OQ[{5djoPfpHnj e R`l$vZ2T?NKI6WpE9bB}mbAxBVF#M&#WQfbo^}Gދ? ٩/x  Uk 0{tjcQo @h.7>ttb^O= <;(;{WtWZ"Pcy zqsjnbkZhQ^g9I?f?e5if)i oxF&N`V&ɼ+\7[՚!--SB9aXzon}b'WɻMAEo >8m403F5[IBH;OI(XΈzbpvmzX.x~?w& y,Wv\k2S_QB92!/= %r6FwSe`eVlIx?߄97Y9̨q>bFP \iJ wO !bU*#1f73:<<=:W8R3N1ɺ,0B1/4Į8@)>\%EqNaYgC{v$q=f ZLNAC6^:340[&/0d>5~|pRdWI=11R&)@T$76 KL9 a lw{]L+;%NQgdf{ n}h0TC4U7]gR-x2*^XB !Ym~~܋;̝pٝi)v к)9.>~ρ }[yv!vr-pn*;opOsw*W|H>T2Cq#[/Ds,t}G0Y&y(h![FhP>|H%UC@2JAqC]GG[L0RX `Ditvqӳx'$ʄWp\+gL?733=5m:@H`P"Ya)j(ct}0ݏ~UcW2v~ulEd=[\TMF.@#w;7 543}10l01L%Y4:18<?gGsHZPR?W_\l_2|`a_\WR\K DE&X;A0*]E%0w ٢ٳ02bM di (=7ujF|ULGd9BrI~!o}wʼnӚI+؏וџ` ſ lzQtmeb\P KC'41$!|;bYHm._R<[LJOw]̉ D5+̌QƎ 7NuV!m–$@}ڟ;vϨ nw#eZNt A2F $^)7 *D`O YLb~j'&?rC6xpI}^ˁuό}ݼcs+0DEDjX`kB~O7O.:Hgda-&1i 1 E Wyc6kun m|i\c@[Q#F N;H/".QMz"mmU0|x=qK$eqXe L[>S0M !HDQAV= 5:61.oy,)`,F.,?13X5U?52Ư+=x"t 8~d{z|]^$y\b,IEZ1`$8/L^p_zzN~'ʆRnG$, n>#Pa2p2K~c܉|fbv*ؑC}*t އJhM=!h%#*w". 2}529?<@[FsMU(_?itN٢x#im~qkpWA, * qS ;<\5yJ}ذQuI`3KF6s"m&YH5z;)|E.y7wut6ts"sIsqsoYl`*iwfdc0d&e׽fnh)k|&ohtV{D`2"Eg>?miwQ;Bg `'޿Q2z;CJyP\VZ ]&]9\GOXf+TEMDl8+#a 2hE Vd2q{k>'7dHXiXzNj#MIXBی}N8L{ %1<EKMM/JkrcBi^6%J(5 !" o^I|c8K2wM zqhUh_UݑL C1n;_"4 T,J%B 7<6 1,'C#8_ "[!@%*w1ZL8O>hBPD;RE DDA=7S12,%j'>s"cs:HVr \ g*n!HQ?x7g8Nc5x/KEȯ^SCzjCv#C-*2I[?)fJSsY^g[YTcMDy ; 2\(||I  _(~(,CRScD g˺v/wtN0[{Busl4{>gcmbO]^vKT[W8MX$UQxN-LJJwKwL\[MAL6&I C0;2G' 8EHS_=fiGsZ a5O&>0/P9v#@\E3K P V~\;c'Ij6CqGyVZ.xA kB)@t;y'4/d-7|%a?qGOX\ qaPj s}ֈ, ҳ GC9l"D`H^h] Jl"@ /'<>K/YkfpQq&8Wz {1z6>xz0rg[xeNb@$2#_J_wZ cwM*qF|g PW) 4!>&GRN?R5SZPS3J@4X'An~ zxw6xy[|~>ٓL}Atkdeʙ_][X0XGZ^e 3nw`zBds Nd,Tp\kZdX]MY/UZLQ\C^9'b /0g$nv {4WߤT=(M= ta2eKZe*s$^nKκH{ѽ"l/;GHSy^iQs0Y}G:]ӓshv͜ diz] C&Dy= Ÿ;OoP]K:b( @Xi~k/yؔǜw~l/_&Q\~Az/^x wNw[y@}ueyY:Pij}ݟ͚Xk,ă+yhoe9Z QBG +>;6K/Z*zi'wV'*-1{`+?5,C+I*TQ)Y;)2b )j(Ls({&v$5! 0 d9-SVut0X{*wUs8nəga`"W/MuB 6) TAQ@':6IDBQ\z r!`: Udq9pc+pSy5^Mc w|2,Πb AM >}3+rcaP>!,0@)I i~W~!qkchZUvJEH<Z:0+&f { rk/)#xW`5DI81n%iB[P'kJ+}Xnu_ȬPLA1e$"<AA$r9vM(aoYsc6YcfW#r}ed 8|44&Iv1~^<0tE+7NbTY$c[9\P\[ [\ \$]s)^-^/w__1(a2c*4gf 6i8m<Kq?vCC|QFH JK9M[NPiS;SW\oc\_k^t5~em.2^l!"hrnyhWF o7)\ H _ }PnA* | xdO} ;b )^l !`} vrnhhbA]-sWQKxE?!:63ݶ2:11iy1d3Ph5=9+=C 'JQZdo/E{sYS۟b%̹+r#+c p,"F3 FZHq ݉V v 5DI[;k xn-'@<UkBǁȭOeRG,] oS!B*2&7997V3.2({!<(1 9k@Et)I3J2H·Bmi9B,{g S]@,' $S}ccI/R=}|pzdď~X|MjBB4Zb8Kg/]@&D7p#07Y*# b% /l= \|MX&>d.ܔd5L;?B"D[E'Dd CX@><}-:$7NBR53a3ڀ`21b1z10%2T37.6Q:iAnL\PHoZtK %[?Xz'[qz.-3Y)7%863-Q& P7g- fr.(so DA@+Mݻ޵ү5P]{62&y9n f^~XEtSgMPXSMrHJ)7YG%C?$<?(:82D8l8R8*v9$^78F6I1c2-'8 S g4F W#.z09jMC}ZLOLT?[4Xa+Rf<%j!o,"$s~&v<.y8{DD} R~_Fm߄_{kHdc5W5u:c`}cxxf7!*x4G>]HR]Ngq9|f0pUXFd&. [زG!*,Z?8(EmT0vdeuspSBN1#Ш(fA RozX h)7i!tv)Ti0+]8BP>BD5_I(LN>O=NK@H{Br;X2H( %Z}xh "B(q;.b3w8t<?"AJ@<7n.%% k,cvځX ySwoۂ-f)^YpW3QLH?FElG%KG=RIYa.j-Zsu%|ZHQ }{oxu-cs}qpqs(~y0.6z;u>A@&A\TBA @}?U3c=@M;fY9)6d3/,j(;%$ G&f+!2g*<k0=H4T5Ob6ou6*|5330iC+$avA <K_֜)yj]g|Uv#DcI3Pc#A<R(Llx&RʹdvLhfp\pRv|JIt EjyA3`? U>J>%?8?%4@(XC&GMUE}^Uhr(| hl'tHf "F:ZYS|kܹʃ"ջܽs b | 5m&A29=}F$N9UO\-exd,zmtbvB0t2 (;@ wlCPfVP|5zjb[M>#/ OYNm$i* FCs3DОqFd`×AM"8!"1vrCRO5xJ[T5@t'sB-dK,RCpQs}`si#)azXP`+Hw:@I9GY30ho.Dv*Y)*/J8d[EHUgw| A"j2H`(F+;4OLJR[ g q9yejvfυsl"&~+e{0wT6Gty;9q&@nfDm`Hk1L0kOjSjWjzZj]i`hLciekgcnhrVhv*f.{b~^YiTHdN(GUs>Ќ4~W*SXH_/ܚnc g{dq#eTXsJ?<,6 YQJ(|19d6@UdEHKgJGJ|Hv FJtBty<"w5{-%?dKȟh9H|ڴz >йˮXCMvV'ԔM}jr-hՁn`!YTيP^MJߜ}HF-ED_DFIEOuXqc;}pB{"+ۭua@ :q,?IRctS3/G`I~d-AAUgǴsyfJCmwx9fsK<}%.mq̨I{?jyp7g,\cRټHm5>ё4kyb+_!$ED*~Pv|nc ze+^P.;'vbd1nƚ4“t"|õ5txwj_S:G9+ {P*c9F;Sb_Xir zu&\*g>ӐbT*k0\1T9T1AE{"539FUJ d:pO/2z7G&`ƈ{" &WhDX#Z5:E6jSD1^]ecj l}k$g0a^XKMAAz3 $S/Iuviw~i?v\Tm)QcFY=L5^>,.$a t{ [.s^J7%?DgUM֐ڃG?vhQYDJ :R+&"k/=JlMX!eMr4B8ЊSѧ73Ux ] ~3GZnj0;uf?R b  C #t?&'t)S+o$.7*1T0569:O>>FBOFYfJdMoP{ReUȑ8Z{`h.r!}҈ҟn;վZXƮ] CݎՁ5;tAf YN^Edu> 9PE645"7::?CG٘JԆ~LtMbL:QjI?!Eu. ?7 -|"A+y*]OZat ҟd`LQ/j,E[Yku{rň{? ӣ?2XI`Cxqtd2 '߰"S,xc3Ǹ786q3- (!\?o $}(R*k*A'7!gƒ)[+mGZH6$ʠnWSoUc9<fJ#{e !ޑTIu*ij]a>SnI~^"AP9 D2:+1e$ +M%p ) >LC!'-:3/78R6TLiy~"*\P!jx{+Z%l38RT1a{peO[aRSQK/F/BU@s?x>i<Z:MJ88q6$%42F0/-S,?*_{(cL%L"8,1(.}b s ?o;''!*N3<-E`{LoS5eZ&[2_RcJeFgDhGhCLhT:f]ciaYvaacMgή=k.yj1 JB ze 'G'y͡BEv3a!I{.ktѹ}yf?#Ph=o-ٝB!5(|Z8t!l* e}4]>UIMTE_g>j7#u 0~M*&& +Fn3G?yGP)cx \y/Ş^+i=7N:]T/kovä̦l Eyw8eI{wx|u4st7r q&oKGnl'i0hj8Cg@g]I/iDQnk0XRn^q&cVugx7l&|*p1YsluvuшlrtAn h|bC \ݍT N$HCAyArCj,FYa KVQJZ=d/o!yD)d*PKq1RLoyu!mSigujigemW$sgGy64&w{}tl6Ʒ mN}~m_RHJ"?71,M)>(~(u) n*g,jb|/]2wY6Um+4hr*\!TFE/< $qj=}ϨƔD׀m]sY,5F`3[9!=#W9Z:"Ǖ5ݏFu{,rhJO\OOBU5]) w$ 72Hd?KVB` i%rU$yW4F)oZ7ozg0ήI}7%5CP,[ c $qj=p`XMuszwېܒ!1w,;"IT\b@fbRgeaד4[R9 I=R18$$K*p ɐ[ăs |xsTnicu\ iTm]AK%R@F5;G*/O#$" tT;ЬxtGs4aQu\Dc9dy2Nm/-`+TT+"Gz/b96L+>MZIT_`k0wg|;Ŷ8ܷs *O+!Gd%;QEh!I$. $#)"- O0j2y476J:I>B G{KO&T=2W>WZ#L\Y_fwc=t1i9pYzCvc2ѿrCS\d>Le wx on& )f _@[QXGW^WRYk\`d:h0kًl{ltkkZ]joIg7c3& ^oV*M[B 5S'f mojJuúiݲ]R"@H>u6q/`+4Pv'J?%P.#o# a% )(+k0R35:I6?1DTKTv]{hs{{:yu'2ݮn N.3@1RIeyp12ܺM7p6y.;DIYl~#)x&}0=UUxvmoeT"}c-&1a:8@BQB>99 2h) P ;s 1'@HKV r_XMY <+ˠ kp(W[=1$c[ )#\ygXvSkgQb{Y#mQ_JJTbCI~ݮ[{}yv\sttrqhm;[#iMc>^$.^WOG`?a0890))j#s= rQ a SYH@;91:=Bf6IP"X<_qeckVqLIw-<^}S/Q#9a # ] $}Mx:bs%na1.kF>nhKfYDef=dsWc{bbcҝeg|iylgpvu{S| )Śh|>zPZc:o O )I8GW'f3 WtM%)44KBIO,[g8s~ܔGO >ǃ|w%t&s\twue{Ijh4ɘ؝*ҏIp^R^L9%c'wU `֦!N |k*|[h9K;* nw ĥO 4Xĉ}zs8xj |bH[9TN?,IC>%9o{=4ms.l)g$ic!_ \U!X"VR%UY(U+W0[,4_08fe;Gl?sKC{FJϋON֓yQSϢT>UUT1UVWRZz_tf3p~ ؍a: S (:# UVpأlF Y G ; | 70*j3X9i(=4=B;iP7^3l7-z&h'9 ܸ &|*mtgzK[1OWQCY7!s",(c SwhD F5#&_ D2[r*WuT$)͍pznaeTG:e.g#u[P8 6.#%ۦ2s@uP؟@a\0rrɒ,gsAKoզY/ +\+LD.AnTxe\Mt؍ ^#e&)+,A)0 48=ߝFCaIOX"U"|[oq`fDf\kS oJ"rAt8w(0Mz'p~T8{u 4™Fe'_Z5_#th XwG5" P-?la.N/*u~z orcteXNHDl DF H4Ph[KhhwHÇU_P"kZqC'-T#!"+$m5=CXHZJK@JC5HcND?:P63 1//0K0g0000/13Q6:> ^DxJ{P V\`RdjgeijjjBkj~ijgVeb_\sY"UUQlLFL>-(j5-6+;E"Tqd hstU̻'ޱ© ۣi`}/?v۸._wi*~Z J9@(oVeBI%txٱڦ GqcEث~ߡZy t~yplr{if|eyfuhUrloarlxknm}q0x9U!mOum[iQ Ab+R O"/0=`JsXsfsr)m\ϣC¦Z407AQߦa~Dp*H b_,څMj2(2Θl֥*+6}d|nrah]BS"8I}>OoH4__=*ON '<(r }DӐ6}kZ/Jg(<.=h"P u]BԴϳhFKz ]ߠXǚl g$A,4v=mGzcQ7Z\Q;hKskF~qDUE%I՛ODY#dr3k/@#i)4mlt.b@Px^iss!yT.~fAUBj0M8ŅJZ[zX|zw&t 0rz7 o<Sl?j@Xh> g8:e93d)ic}a%_[X]SMF-F@LF:n5N1%. z+l(_A%sT!I\@S8z0 #*Th#|Lj 9*8b۔7Æx)kٝ8` VaO9Jw}IzmJobOVUJq^=i12u%-U4+| < \ P9#$#m " .@ Sf[y o }'0>U R"'+-"/1u_4/F7w:= rA@!E^HlK MOQzU+&Z:-a3[jQ:t%@sE9J ~NSRU"XZ([iYVRM G~A ;xa4Q.s)4&$_B%{'4+*0%6 <$?DڤKT%RWx\:iXaDYeHiH7l%dnYmPkW\f'_UpJQ>M0X!5s9bv/Eq 7 "}?vypDlEl^Ei*Ongk?sf/fee*f`fbf@fgmfgWoj{oCu%|"փߋ 'k 5"Bm3ICSc{:t-rٕ3%1jfDQ&9WsJ+Zcivݝ^ Ӥ0 gE Znظ3zҬF{"٬ǫŬĵf_ %dnqv v64;4WreX!BL?h2J$szJaLiIW2|H|م?ybnÊ)d|YoPudFZ=R>5XLW-F%A5=48?4o/ *%! &jM^O8h*W;>T/kBڂT /"o%<(*-+22c8Ja@`fJ%uVe+wSyԸ)a3Ld]|ՒU٧nz O    f  7;CZE$8*Q~Q]xEso«%luMh<dn_=Y>SOpL(Eg=45,8#UztnnngI`^ZϺTNG1A|:o2de)}\VkRQkRL TeWm\Ѩ>b–0hX[ntuAd|7T\DZ5&n[3Kҷk (".2;ޱGOT_@SC'FHNJ"KfM O PtSUBiYe^Hen- tz)X !M "z7"O#h$6%%*&_'%(<+/A/5<W(E@/IP3[6eo6pJ5{2"/7)"Z$mP|168q*w+j-]OvA es3S$B0^ u;gztyپ ;ӕ΋a3xenze\qT~ZL|Dz=\x6u^/s'qB ip pbpG qHt:wbvzN}>) Є"G1A}BS{ez6MpK5GsUA:4P/=*o$'$V#PN"~! !'"#&+.0y7k?GZPX`fgm kqVtvwyw.w9uSsGqS>pnmljg%kc]'V MQD(:71G+'~Wfu& لA?0,ȯA=*E-DeƿomuL*S`v{gWG"L8|( J qN/aצ[|ez8ygy qyi{Xc}_N]]/`ņf3nbw&ܓҟݗ~tvq2ޖP$Mr ڏT$(H/w9BJPTlVzX\YZ[\@]_1aCa$Vah`zV_]X]\^)`PeksL}SvPwܫZ` P< ^z1 ocϖHW`L<~A%oO8]M/JX&f6'q! O8)^0ARs!zEof_]V P2LwQJωHG+~F"xLF1rYFlGfIHJaJ;[\LTO[N2RHUBYWT]4e7)mMs;y~{ĆS"_ؒ6ʔ-y͒6 \y nc Y,N7sDC:Nt1XZ(eE3qC|% haJҜiҜ5@xqBj}*^rLeX!oK!m=. RaBRY@ԍG A>~M,zNjv~Jr4snhk_ hXfASqeN%fKgPIjHmGqHluK^y3Oy}T[υucGkSs؏{wOw+  a#M'ͩf*4E > ELsRV=Z-]?B_Vakbba_u]k[/ZLZ#\M _.e@m'!u#}"ִw.|~0Nǡcl/p_Ow@Po0je t^KI&47^! %$vLi]sRgG=f4w+ހ!${87x3ur! olWijeJ`LZqTNHBe=95M4 3272\ 22G,1)?0S/ j/03248z=bCUJ_:QUDYpajt(]FFD-E]]u,&Lc1B AOK"$#lzs>l{c=[NQH>r5-J'`!z[&m`VaL E>83:.)#alVr #ζA3(t܌y!pjfeӷeޭhlїry,QzIrk&f۩`5[V!REN`KITIRJjN#pU$^hteāӝ&61'RUkRm8i\| w\/ e!R\13%Y n6Hak{+MAHAgw2 u$J Q, 3;CK eSZj=a7g glm!p!t!~x!{!8~~"%$h'R,!4|`=xH:sS\l `fd!m[zQ1GMc=á2'aR,4KkOڲ-G˃P|re` M:(.!;&*j- .,("̛ Uvkj`U)jKt0A(7p8-Q#+ z Ath lo khpwgcgP i lq3wU~0!&W+ !16IS:>{zAkDHѰK+OmLTZsa8j6*wH0 ϗ0~)D m:Tm )O2JY;zC`{KvSDZv pb-k8t8A~FĉIYJxaHD&T?80';OJx9 <  *i,}1oEbTU 8G80S)hwP8/ ߶4Q72w}Fit\WmRfLJ.a+C\ =W8IR4M0:J0.F+C)r@({MJO6WQeTu@W>[`Ƭtg(nvq~E"*E4DSٲ`ks{zymlv&%Ԃ4:cOd~@d%{lx/wmrlڮg`KZHTKNGY By<N85:J3)2N\2'2v10Z/u.,ٔj*'Y}x%r#&i6"_{!\V"!PM }Do ; 4^,&P!~+D_4 8 Z[m=RN)fkpݺ­4ʬȶ*4tvmm:dkZ3P FG,>88;C23L0gT]0Z2_+8c?eIeUdcasH]XNSJMؽG?h80V ( H,`P:GFtOJ5W[-]S\Y7S0LD=977q2A.Ѫ+(&b%o~$C$$|%x't*r.p=4o7:+pM@pFqVKsO8uSwUzU} UBS,RPXLهGFB>H;{866uJ4z2*k0--L*H&" 7NC-AU@igw|L;%o Ӳ M^l )I/ O# _,4I<RCIySN(jQ"[S,LSr=R+/KO!IiB 9x4-a+[/xqܵ{®lQ]O՟C9$,2ԙ, _)ߘk(_)p?,@0М[5;BUJhRZpcԞltfvankj1 ~dnLmol5j}@ +Fh 5(91:1GC9K"YR,.X<^JOdWic{olu+t})z~Ր8v~zpv^q?kte]^yV OTG?80i.*#4$IJOJ.>EsN\D .]="-8X47 44weoth|xbM"]"dXصnTmQZOaMMPLLKpbKXK JKLM˜DPx%SCVfZA^CbfiVlnFpsua^x{&~-6EU8e.t})*WG4( i`w,VBYjp?pǝFu#llb7X_O&yEB9<3",%m q U| _d=nV8X| rپgV^UM6F4@͡:4.d([+!vy|s:myf>Q`+Z'TʤPnLKLwP{W*t`!lk#dw\ЅUObXJQFFCRA&A:@e@I$<@6L@F@VA=cCOn>G_wiL~;S݃[e%2q=~؄oxj}ϱx|smLg`"YZR-Ki;DGO>LR8Z2?a.e*|g(fM'_c%]#5VS!M*aDI;1}) !g D/xxFP& $:!&-+4"<BHAN\CSaWY[Z^`Vb}d|ee~eLda^JXR0LE"G@,;47t6~A82wK(.U)!^?%f ynRu"z~ j#9@}xRrj_S5tF18An) S a rVXA _8 }s/yIiZ~u|~zyxFx3w@wzvmubt3ZsqSsTN=sJ;t#HvFxF{GIyMDQW}^_fnwfˁnŭ@ѢG|Y[1  *(3vY;O AQmFJ&^J'6MFPW@Ri.THzUmW}WhW X,~XywY[]9` eyk\r$$zI͂T %!7y|r{m{6lU/]NɾVAV4uU'(o XyA+`G>k2!\+{$kU]OAZ}4Rt(lJgbg ^[tXmUSSRNXK'~G yC`S?..;g7m43;34k7s;VH?C(OH iL-2;PET [KX}q]bheNp}xT7žO gH|0M-¾ $f &o:4Odz4RڹF?Jjľ]g"}!v"]TU#NY]|'t,j`,8WpMaDT<>I5?-.6&.T("#6)~3 r oX+ ,M/a 1n?"γ$Ib9|h||V}3vm 2f_ZV7bSPNLJtIHdHIiKNT[d~Hnxr:Slн`fF.Bql55pazg rvT:$ 3\#:,u5>QHiR^]gqD z(]I[$#1d'"(+r.=1v:58<BIbS]ivW?\|}r[h ^qSaH</1%2 O#8{ R) 9K_;uWwwl d2 Q ?0 B,?:PnbŠhƓZ"zwmlZ`aR>Y"@ C=GGMSaZagynt{ cb<8x9 s73%/2}ClVhUk܁j֙ + (1!;C=FWYO"uXp7a&iFpw"dDBԏ;"-٢69b=c#ABQB9@=E9|4.V&"R'5* +*&}  T^3.}RƔJ\mxvQg+6HVC0b Y'"m}%q hܖ7`qYFuT$uOkKbHZESCMA>H?C\>R?=b;;70:4807-7*#7(7&8%:u&|.?6@?AJ1CPWEMeHtM'SYwahp:fw~`$#?+b7Ҩ AHn#OS!VV\Ud 8SO^+K;G LB[=)j8w3".)%}#"mc4?-{ "ѹ$r5&[C''"@'&6$!y{smhc^ZZWBT Q= O N L|KJJJ I<H<tFC>=S93-{'7J!26V1sXhtT W%0.7N|(AksJkTue]`BeA]@l[q[Iv]cya{"g{7nryv;vdq0sl_f_^VXP?H^?66-# D IP d?4W%ϟ-XE}GrDhEM_:V eOHB<>$;s9899go;y=!@&D*5I. N0)S'2pXn3]4c)7i@:p >LxCGJ 8LHLvJKuh\HtZCMJ=@4M5)*7+!2 >_X_('rBro^g9^d\WێRKP=}OuPoMSGjMWCfV\ccb^afh_:o_v^~__bHa bd{fhyijk(mjnbo32r"ul{#ҌT*\ 3~_A#l*1D7+<=BFTT{ܝv#su'rnq>qL)s}u^{yy,~xxVy-z{||y}e΂b̯@p ҺZgeU/7#U2m@AN_[!i{uݮH{O٘k9/< šec(ݖp:>Lҋ]Ln~}w+ApXh9aY?QJѺBݻ&<n6fy1,̧'2"O׊8!xog\`Y:#RKSEx?D9ٰ40!-i)&U#VǵL|Vv(qx lBg{Wc ^RZkUQWMKZ-I_HHKOiV_%ky^x|*iX0F[_.?~@q|R{c`zszU|]ė‰Χ(7pزti}ǭ>HΥ{.%_2t=G1Pg~+Wvc\ o_Lg>a_O`EY\S VLL*FA> 56'f-z/#  vPC$De}~9AƯOy[jNM Ֆ!R*ɞ3ߢ<mCLJI>P6T0Xǿ4[]K_ab{c ceWaH^S$Z WU9P&J5END|@RY;`6Gn0zM*Dž#֏QΘe 77ݬ^=MՌrcTC&3S^#Go" obi]ЗU]UNƐDf~yyptTi{oCc`jd^eZWaX]Wp[@XY)ZEX]WbWhX5pZx](`dhmDs[Gyu Urd ^&''~1:0CKD9RXVYZ ZY-Wk>0VPTa#S)sQ^hP$CON OIPPymRNU:Y]b hvotv}g MngڮTvDvŻ9Uʱê>ɡ~pwcyVgJS=>/-)!2 6kS/ @o{]0thMm=Hi.Ff"!dc c/c;dd)ef9gi>ijjjk2mLosw|/ )*M;Oke{הz10ɚLNk)rAvX_o4ل1ݘUwO7V /C;Xz$mk\N\chfp<ѩ!ޤ#)7{<AhvRkv`f/TX*GJ9>,41,D%R Cy+b]HDE` q õӰ[.˧@>ΚKJՑR"\=d_\"S~i.ә˙9:Cq#nN~a ~@L߃gQFu0d  zV]pOP&AS:trdcSSe?K6 2EN;~l#oYUO(+9bIT`ClKx#t܄gcYXL?d3/'F'< 4?2K{ӻV~'@pMbLTjF8 +@k|HJQ^mx/hi;þ0ȵ{~rh;|_WR}P'pJcfFVACKkA@@%7Ax.C&tG8 +LQW]d(l s |w i ǔkmdģ8S,c`$+A64=qI(Wg0yD'Ţb%¹Q+;1o7>aD6KOQkhWC\wb6ggYl^qu~w}!]$ *^-.;Z-+Q^'""o .FSF n -xuz\p?`#O<bE)AX/T"}*(r8i>b|]nYCbVWHW;VM6V7EBW=DY7\U2t_-Qc*og(gkx&n%8q+%rK%'t&[u'v)'xu,y/{49}9~@SIa&T~)`d~m}|}}כZ~~O)_ׄ.w[ (P50AK@S'ZB_bdcdTbS_XZ4UQ:PG J-D):>E940-k+*&@*+.-|0i}5<DLX)V_=hp$w|tpfltYLe@8r5{m*v nd XH6p#( cL4 uۂpmx:g pbUh `a^,\ _Xg`OUbSeS jZToUtWT{!Z>\wB`dZ%h{lݡpޥuz^gׅbҒ@PZ Cj4Mo="Oc2m:BVdQ_Qimsz4Ԇ?R ϤJn%+29@HLKPW^hd.v8ikCmxapXtOvHxzBvy<xO8v4\r1k/ cU.ZX,4L^+?')1&:$!, mt @T9Zv٬+7” Î:v }={ ! yB*Vw2v(8uP<ht>#t?t@uc?w=z;}.950)\!4] x(BI5y  *75!V?H Q5XO^əoc gxj\lZlc@kbheia\OX+SNwJP{F 1C'@.>v3<7;;:<;<;:e<7"=A3=.G=W(!<B"90<6_N1+h X#n LTj,6\< ź6>{W>Pepہ~|{|}p}C ·El6YY}e$h3AO[g=r[{*{)]ykd!݀<=yT)p5geA^wKUTzLt[Ca6<g@5Tk.Xn(oD#oBpmShBT`UoH H:*G$ FJ)HHRҽؾ;$*;dW8Y q&*-d.#.Og.Y-+)d'B$bO / 5N $ ;1>aKX "-KI45*Q»"Y U3P7ͭfˮܔC5߈ۃac}_{zz5{ZL|@}8,p8.C׆"LMSYy]madڞghiihdUv_XQIA92i.J,>&gM!C\]vjxA?{ܝM qPTVzA u%`)=/84dzY9=_?#@-A<A|@w)?o<g9_R5WJ/P'SI*B8: #38* !~-> ZʹK;6Qtf!?Z]O>F;>71|1-ŬK)UD&0$W#"#%'5+1!7Qd?!HhQ\R!izBwoڗȼ9KA{ 3E>VRftZV$/lHJ*%03$%JU5EZV)f=tU_Q|֡9w=r`)n j(fļbܻ_\%YV@SS<N<IrCdL<W4NJ*g>Z 3 "*8 ^"jQ H]x}{ޮ4«Xww[ u[igJI *fU\-ɧk̳,-°ߩ.1fj -x!|%zu(ny&*x*w*w)x'3y%o{ ~ƃ1ԉ}R<nQaMSh:7,SqiQvTKi$+U8kUK),8GyWg*mwRn}t+8s ^k |:<۫?$+ǘ3D&<DYtMgVg[_OhDq5:x!0j&$pkvǔ4_K>.`h;XypeZODW8M,W!8G ? C|$c|p 0l)9IGƷMA^ 5Zx|Am{bzY)|5P~HBjF>ro;9 C9טl9A):e;F$=yv?[[BEINSS YUabjt~KBť!ӵE][>{V@*?tThh{0^ AXB#8 )1/ 5<D\N>PXdkc&oG{zi-gW'{0ו]MqxRqֳjħmbLZPAw}Fd:7R2.@U .gorn9E u|kdN^=ZWU TTT~UVn?W^XY,[\EX_Bb4eLipmrxԴ7-ԈQ_RgިۗǏ#m{˄/N K~{a?z&?yx.x4@y9z=>{,A|\C3iD1DB?;M61,&A!z?v G~ )S16"$<:%)p;p.:3885<2?4/AY,B *\Bo(@"'=C& 9&}3&:-)&p,h 0,P6.<C IK DSb[dumw;݀ȑPoN0וא3A΄)Z}~t5 j^PW5Cf5$'u cB p!)l/5k{;@],ERIkLN>CP$PPXP֫]OMGKYGB3i(ST RO[LJp^Otl2$- N5S<BcHM^aRl VXB0Z%Z6Z/5YW7VTTNRvPS 0ONpNOh"P&rQI(eR(YS'6T$T T,bTR PwLWFg@$8/Jz%QIoj%#*_7D5N*FjƢ$UuSsӒ2FmX_sC#):H,<@2(bZ2;{DL@cRW[t^Taba `"\!xX,SH7MrAFJ@R[9oY2_-Ze(j:$n*!@rtsZq;k dY;NjA 4 &Ce  BTܷc>Ȧ#m¥x|Dósɿ! R']+.U//c-+)z'"%R]"^ |Xz g!%)'2;4DMVx_gDnty }0owiiAXnP{nu6NoSg]ZSG_:-  Rw?Y8j8im 8!oľ ]β Hǭ=`0ܰ|D,zBw0?utXuWw Tz"h}D%0;\DۊnLM"R-VY#[\]^E^L^1g\ YFTfkNG-%AEo: #4j.a/*&,_$;"+I!V!d"q#~M%I&'(-(fy('z''(E*-rn1z5p9Y=@>B1\CaD EjEcEXC9A=8 X0={&tmqe F\NQD!7-( ]FBv(NkNcFxxʏj^TTEsKvC\=ݡ7˦2.7*#'],%:#!n!"-$&'qQ+{06N>WFGQp]{jx6χɗyw]M. %Y*"7 CMV~5_?pf]lq !v%xu#Gzo0z=xK!vTYsbfrovrk}gce`^4x](]zl]E^˸^_`YaBaR`ēH^@Z|IV_qgPfoI`]nATk8CM.G$$0B>e<:-: 9 |9878X7D6-?6!&6*6 6s53G0,&n%}0 6r%Xs$9zofaו', O~ Ixr41n\Oj|geeV "e*!e6!fk gghhi.kmQ q$ w} e 2zbU^(պh\W.`t tS8:{Bv>vcvi1P5_+h:J\Y8\ixoTA r)['<Ft 3߿.& ض}'/ 79[?HP|Yq cg\l^uMV#NU]G @-:i5j0+_&!&gafLy 4dʱ;|u0~ymLa.UI?(5Z+}" { *%Mk/,]"{Lqa4iΑa˂[s.X@egVWxV KX?Z5^,b&|g Zlqx-x\ #%e2),ѷ0Y5:@IG P,Y cmy ʣ?-N5!c+4EVf v=)2Q<ӞFPmZc m1av;l,<G0uN]eZ:GA!`+Ơ\@_ōJ|u'qcdQV@;G06t!#%/"f~ un2j+bgfe fghAjklQmmɸnpqsVv_x~+|}^Jċ ~>y6ouƭqn~UljKiohFh i-j bm~p(t w&l{*~-:h01o21L;0 `-)[$k G{( z W s").1< 2%1%+/|0N,l5d(9B$<P ??7?:B>c;1715,VW&3$ {+53:b=lGQ 8\ f yq17|Ć5א(i)MVai"͚Co#w k ^ P; C= e5 (H : ;RwH9 IV" $P%16&&''&%*# !0SZ =S*#eHE,G.86bk̺qbPˤa_gzDq2ib\yX:VUkWZ_e]l?s {R}3 Ӥz ln|.({ Z xs +(l7 GV|f_vNC x *e*!&'--38~>iDzJ|QGX8_Agekn9tK%z͑}fughB[O!EX~;wz{1t;(l1b=.VB H8(# 6|RѤRiy@zm_a]2WMJF/Q@?<*:ұ :;_>YC7rHMSS X]b67gp.knrEAw{ǀdϑf ;* F|!JP G&k3F?LW){bi>l^t~|-PTiHK> B `ʅo#}f*Wzi0w5vB:nu=u?'v@wq?;x<Yy6Dz/zl'zKy^w sTmUf]^S +Gv9*p9 "T;d(9A)A }!(@,}G6P?n4H˜CO\jTdWMXWUvRrO`KZF A:=;3*>8";~ [ ӫn# I%G*nkI `ay"'H-158:;Q :9:^6p2/"*&&)]#+ R.x0E23Y2 V1 B./!)Q"#8##5# !]3 TPhd FRzcOD|w[1:jJJu6xq<C^;H;_H !sԱ Fy(8i1[%:1dBȤITP VN\2aNehjWl{0mkmmkifKbs\&rU2M>9E|H|<Q3Y*"a"gm.rSv. y| |y ws^meE&]bG}OWoJ_f^lqx_u&x[{Ҿe}L}d}{{&fy+vR.rcmlgc`XOE;x1'H¿Jug.gd3_NУ=gZv.€N|Rx?_v!u+d3(  7R2yph,cj`oN^Օ6]c\\~\ts]Zm^g'aocd`?i _n]u)]{\\ڈ~]/^j `b/d#h:mr9D2$+yk#dqilb\XTCRNPOxNOLmKzIDZGfE7C BrNA?=:*605')G }q "@ XZj¸]n ?n\ghyP0q&ia;TZLSN`SJ,G_ D C}A@}>s=P<M=Q?C H OMXLbLm_w"ҋ]-5H[&"i 4F<6$dl8bZ[/m(ml+5 (eB8]G7WfCufh:t:t+RN(mj 6D^=Woi":(9.4);@A[.HNU'ZzK`&u-eoijmdp^JsW0u9P|vGbÁnm%~xO G]O<8.G:}˻Ѻ!*ҳͰܭQ\9lަ̥zuœbo2-}kI|VZnqI,e9W*fI$:)*~ @HXB8t+paCUzJ۫=Z}zvCtrV}p'zo"&o|oypvsr\vsozljiϋLh.hhҡiݩj=m׹ptWy|wݒxkAo^61\@p ##<'%) ++&*-(Z5]&<~#Cw @JwOS}VVW%X,5W7?UPRNM#J*F3B=?H<gT9_M8j7us8}9' <a>s@ABfBʿA`?=8:741.֬+bX($Dr!ufxX#K=1l& H m +  5 O S  46w8wIxI0?Vz$_*zZdzqEtK t}vpkԱg~eŠPdwedhl|br?zx uqwnemmT,pͤs:x(~҃|uD!y=@ nۻqh"}&_* -.B/$0 1 *3"4@06=(9J;W?dVB}qE}cIM8R+W\3]m$cRinɹswm{~~ſ5@>Rg*Wudq\Y5}Fum}fv`"npZd9T:XMJF;e?+|7{/ %c[`κ-ٱ6<(z)woiɞe AcȡbTqd§Ngj~n<rιuнwy{| 9~! !Ss=FXp+ʬ"tT%JMOx*5% /[7>TvE0_KPeUYtC]&_ aba$`t-_R5_<k^A=^lF^JO`Lb#Ne3NiLmRIbqDt<wK4y*{ {{'z wLs le^[;QE8 u+D}9L`FgzI`m/ D7&S$p,_3)9ܶ~>|ARCԯ8DfD}CB-Aժ>ʪ;7*2/-'f"Űó@4"# xv'%{+ k<!1%^q'q(Y>('d%zW#5!HG.XMJ!4)$P& *(u)>*V**TC(%; 3 uƬI+>G sHg-i1:{r]YjS_`|d *z&+.P5=CINiSJVY[D=]A^d^SI^(\2Yj<U FPO KVE]>Ic8g@3k.in* p'dpS%Eo9#sl(!ga9X*ODc: M/$/h U1)L%$U\4Ԙ 25"I'",y/1?3334w332i2 1ji/,l($WX&,iE3 9?]3F9L?RX^!b(ghKjOlmhljg[c<^}YZbSTL+Dݺ:1Ƽ&ɽRG ׼w`[ 80~v dpjof db c{fݲks'}Չ̗( ~1Je}6|`|g~ EV->O ^kDw^w}կ>zoWzQBV^r]ߛl'Yڊ׈&$2P>JI؁^U~Z`j`t?~3}{&w8tszn>j febã^[.XlTwP^JD=6#/Ƀ'+}z7xu*sokE@gaZ֢uR-HփB=u0f6#YMeC':A\4O/F,R*Bl)?K)P)*w,^o 0h4Id:`nB^K\T[B^[gZwpv[]xv\]`Ib$fk3pu|CȲŶ<+sam#OlK+$V--;.5Jb<WBe.HXqL}PiSԓVMjX#YصXxWBTQO/LIAHUHG6rGvHJf%Lb'8X0AO(F?9 40K-:*e'$ 8P Uw9f %S8z=7wV:u,]{^Wr>i`eXIQLKE@>n= ;H98US887m77,7(8:>)DJL@U=_i5t^~A#fil1ܹiL`yd & S;>n\|$j YL+<Mn^vOo !Fs_~38^ Y U ] ! %r^*l.2s95aB8N;fp>ADٹHYKOcTDY:^cۀgykq$ohq_sUuJuI?5u43p@]xz' |+ݞ").4;vA~HN;V ]eM(m76vDQ^ݓHkvQaA0ߨ|e(J$ @DtU)5e?dyȴ Bn}~8iwT,p>@*g,\PC (6B'6 g5qzUgd0~}h|+|h}}yZ~^6~FW}-{ y;=P9z6l4.E1ޗ9.*F;'x#l_ S{mFrW: .[$A= (fNumNyZbUU޿|_+ϰkޭDsݽ [\sTe*x҈ztm)ud`B_ y1v 0'/6d<sBAXG)KJ OQT%'Vr/TX:ZD]O_ZbbdBemIhvlk"nHr\Pvzť}F@ʖyǘ̱Ι^өcaԟ ^3}rh]ETz-K^rCh;]05Q)/D):6#p&?2o xǕ`nh+xڱqJmtjiWj|+l9tnlOqAgKt+cw`l{}` b},esi@n#s`w|8U ˊXAӯ 8.QwiU}5gg :~ #I+g1+ 7]<sAh/Eq=H]JL RN!%>Of*OO0sN7L>JlEvHK[FPDTCX8CNZCY[E,[KHYKV1PwRTxLYE?^]<Yb2e(h4jDi;ggd^W OF<K2&?qh"j4hg0!9&i*,g-_-R,r*|&"8$ * 6vz)'RDp\vS /hIg qG <qLqo; V u u3 X  Q@^c 6 !ir$D& (V(V'%!ZSgvIWWwT,:&P5ba . p 0s ![bJTa%9iEsz O >e+"A[$OB&C'/)~*\*E*N )(@&8$a#y ).05: >jB9EF^GFDKA<&6H/$'-xG .P@H%G-$_ L "Ph4-k $:6G>#!V%)E?-/6111m1"$1 0 /uM/.G-s+S")@%^&'#) +V-.%/:0T13 4 6$ 9:$#<8<;):N8c5a1o-(!#->4]TM8G%nǴi}?|s3k&c61]wYX`U?TVU[b:lt8yZ3Ŷ5U" %#3@sK^U;]ejoH9suw>wR@w9 v5t!r6p n7 mm4ncUop%rf tB%hw*7zP0e}#6À;IANFJ1?O$?SшVk:ZU/]_|a4y"cuIcr&bHo_k\gXtcT^aPVYrLSH NEGCqAEBh:A2A)HB\B@CC@BL@@>V:<35.{G'Ԏt ip` XRMzI*Fv`C@ȩ>r=4=ג=֍?PCGۄM$R_XW]MbفgFk̄Fo3s-vyӑ}ʛqȅ[~U9QY]6iX 3d N2C^T"c&3r_*]b-/1a3̭432c41W/9-4F,+X+`,w.047!<R@RDYGJ>LM-N5|LqJ+hG2_CW ?O9I|4D.QA(>:"<>;908v 521/<,($!1 t c $ a)cBB,um. s ]8&C+}Jtnld]l#WnQ@LHFD*DDzEFGI JJKMRP$pT Z`ih rθl{3̄ݯʖU~[ި>4Xܽ}x|lT$5 ;r*, t(19J[k!P{{GИIq*@@!@Rz#(-93V8m)=lAzEHKN[lPQy8R]R:*RIQҩPʣON1N MMHMN:N^~OyyQP;tPYnhPgO_OVMLqL@J4H(&F7Cx? :^4`-9d%Z f$pQ}s 6h\QE%A9p-N" _DPW~d{y53sm!i,f=7VecCYePf^i%n;m}qNv7{+9>rh W+b8 a&,y 4;C$&L-\U6I_@jfJufT؂R^gpXy 0DGFQMfB6 [8(T҇}E (yuqiWn$k>Gi'gd;bC^Z9oU{[OGH4@!c6!+B. %o[Ӵ;", js{t=nU:h!bN(^gYkUۓ IPV Q\`c$beO-2f62f@eIdRcZdb'aa8f_i5_k0_l`|kNbif#gkcBs_]|YSMGΨAP<624/,3+Bj*F))B)((:(''('yX&%L#!od](^L?:)e  TYT|F{bR)H1ҝr%#ב~sD5D`?"N]tc7nCe}z wthqAhnkDiakh6^hil/q"x)Ú;7AmhI*26r<@Y+IL QNWQ]G Wb-Jfi8l"gnS(Kp-rc2 t6!v;Jx>|z7B|+E GyJM Q8T'X\`dgvXik5llljƦi]fGcC%_Z4T,^MJhF}|p?s8:j{2_,HT'G#9: + _)7  4/˒Cu}ot9m*gWc``a۪cmgjmn_=r>vyi}ŽDwΆ8kE^j̧[%ݣ&~f%#ʶ%Acg4Cu;m v\n / !#'T-*'3#7';+?.qD0I2Ot4)V(5\ 5cD4i35o1sO0wi/Yy&/vz/6z0x3`u!6p:j>cC [HQMlGQ<Ux1{X% Zu.Z(XhiVRpNGIzC=6.&37&I J7{_<<:XgT2%t S9-4'{L`^|["{\8Rf]$WO^$'Z" nB 6hIP8, " R!! z &8*(.~1R3w4 42k 0,P($' Z<*n n ]Bl  \  ;!ff^ 4DC-o,e<3DT]]8KhڪvG2Z)0{ * :@/<y! #$?%W&^$%N*w$0"5 p:Y>BLE]GH HG:EOAf=>70|0[$))!~ s}DyV u0^t Nk F& }c0Tj !C"b|#j#]$-M$r$$ o$ $ j# ?"  iC*kHl3ZL$ JpmuA 'rLs8]D ~*;*W~WS=BD )8;!M_m o%~*" /2g68:B<<<y;e:8T~7t6a5 6679B<:?xBNE}H}J LŖMMrLxJnGeD\?kT:>M,5CG_/iB;)n>":7 4a1E,7(Z"Uw13tZwa;'5G':Y F]5~|vnnEg`,[VQRNKIJH.HZIΠKhNO[SW\{2aeimDqsq !7B|YNx{tplOhc\UU MXCT8, TG|Ln,!:VplՋuVzq] hW]!ySwH7H>H3")|%2E Er4>S;Mzy >Q%d/;:ߺE)Q^lziO]ؤBB ,:O F d ' 0Yi85AuvJ;T^i"u(2 .ґ4|;±B#IP*Vr[5`6#d 'gBBijtj} j$i'g)d*`*#\D)W&Q#LuHhhD-@-=m3;>97S6WN5L31P/j+ V'(A"8,`PhzzԺ Cw(neM]yU'N^GpAW; 6ŵ"1޶,4($W$e%!ֻ5[[4[tF!5$J'+wB/389b>߽AD"JAQfYbl=w ~ X˹bNtR]g 4uyAs)95AMQ Wy aj>qvc{|%~g-z5`>fGOZW}^{cygwjulGtmsmft mvk#{iiYgI4dEU`ԛ[mVQLGBIF>V:0#6}2$.20+J'9'#}@p5 S5_{\l;\fDLx;p'+9 #7]ϳ4 ɥe;ڮ{`ѻ׿|CyMvtIr%qErsztavy#S|ÑiCaNuz"%;߉-gP̀Xw}_zwvuvyq~(Єzz~(R=ò&??QW[5e+7 zB L U^ Xejk_p!ft%w(z+(}.023k473w3܏210v0j00L23v5QH78C9:?9<997l52ȵr/`+&5!3.ʆ | r<fZMX@1I!M0]ƪSw`sgM\i=SBBK (EA>C==?@ CEhHoKN tRmVZ9_c&Jh~laqvz?˅jpcF;ZxQjoB Ci\ Q[ #". 8BJRORG!TY#_&xf'-m()t)m{);)['%NI#Ij p&mڬ0ūwOˣ!ܕ& `*G~.x 2zm4a6?U;7H6;5/y2" /*#m&f!"b "KT[WIQ-t  "/F8=@:\b9hI#_T`@F ҫӭe)7Ѳ L2A Ww{m6@B((y!x % wDM {!# (M,/ k24p4 43b2R0S-*.w'h #i )u #9D'V* a.q185*>82:j<c==;(9591h+$P2? 0,G(=|97ebe )  0T_g"  } v [N e H UwEZKrj  b( eni* "/#'%9+(/I+2-B5/L7182m9239291:9[/8,"8(@7A#64b213 J/-=$, '+v*j>*)(?h'c%!7~9DV bEThy hӼT;$j lʙucy}Cqxt9rsuz|{Wqb;0bonl v B'h^/6;4Q@Cw F@ HlHGeFC@a->;r9z8B-8989(;<o>@BDG/JKNDQ+Ue X"5ZI%['Y\)<\+}[3-XZ .YA.W-{Vt,U[*Tw'T#lTOT27T$TiTS ZR P{}LmG@8W/ $Y  M  [ Kx=W|V`x+usLrq=qwq8Yr^s~Nv3yy| Q%iSw B-rB+,50|dEmďXoԜ"]nm]]iK@*>}6QAK: T} \`|d4lsV{߂ Km\GȣmX֫#Y(y.6K3ŔO82<q@w#DG}nFvGpHnj}Gd"F_3D!\AY-?W <V86V4U0T,S(QQ%zO "AL\HEC>82+$ Q U /;f|%Z>EҸ DuvG|tm-f_`ZUQq#OMLLS,MAMwFNNO?pPɹQ2TbWZ[OahowdS23[6, _X,4<;" Cq#'+U-dx02"5j )78 (9,8@:HP:X%:h9w9ƅ`90W99_: :ǿ;c<T==b==r=@=b<9;:+9R7652u/Ar,el(#JKiΞC ^c1\zrjybxYWP~F;40V#"3 FsxR>N/[JiRc  L c Z%j+18?A`GWdOW5;amzkmvH$"&+Ω.2581:]<cM==c1=>(<r:8=5y1`k-)$S nA\6xA /fHsyh=VCY0 .o PxZƪF6+^{)Ov qflFg1b<^ZcV`]S$P6MJHGE;DBa@> =;::{-;<>AEJ4IMZSeYJ9`~gp|y#KxP,7f5[8yn X!!O,H7AKvT!z\(chElm.qg't!v)\x1y9z@{Fa|K|P}=SUkW_XDYZ 8ZYsXյlVտS-P+MoI[EA=;D:s6e30-c*R*'r# KwcL~$m ZB %H5@#A\_Y'&x߸~wܳq|lgJ.c#^Z<WSPN6BMMNHPGSrW&\yb} iov{| x9bP\PyҊ_ԉ4K %N ^'T{VP2a3# K  'e Pw*5@KT]d[dkg!q#u&Dy({+}-~/ 23415d442܇S0z!-[)`7% ߎC49R }--m  6 ׋&$~Tvfo hFb[TMFU>=6,!q> U=^/Ҩa\@u+3j_V[O9J8HPFjGI M$QtU7Z-i_\cdhionvsE}x}i?  o \4f Ш$H'*,$g-׳-'K-+) '# VCs` < J< !h 8, 6 s?#HB@PWe_fjm} u&|2:9 erJb@*(Cj`Ės4 z' n1bU I</# fLI 0-   *O2F.b_4I9ldz)zg_`0TKALA^~ԥ 9׹679;8*_ y3 /D-!!%3i)+ZG--(-$,++W0)4v'8%m:";O <j;F[:*81u6A 3##0&,o*)d.6%A2}!5 )9<[>=@AXWBQ Bd@z?-<n8 3 p._ 6(_ ! *t ed#)"D; ƿKbf\l*$(&^s-&Dz+ J[qh:_ H#|V%%^$!P 6p 1 fT~`i<6U JJT!2#(\%+',A*+, #/*Y20F57d8 >;C>HALOD8O7FPGQ3HQHQ GdPDOAN={MR8~dD'@r&%B%*C[%C%DC'B( @"*=+/9o-4//0v*92D%44^ 69<@XDH K N<,Q'S<T~U WlX7YFZ>]\|^`)cvfm1iaklB$ljf7`XO2E9T-u>  pB^G8 ^wLcEsz rEKsS)%NԒ~*v _ MZ!H1$ %%p%HI$z"> ߸oS= k |"[+4;CCkJ Q Xf` 5hn p w K ԍ\3q 7 @1Ҙ@$ӑ*06̃;~v?wGB@qCvjzDcC)]BJWE@eRt=N(:5Lf6J'2\Jr-Jd(&K&#KKK8rJ H ElBd>9d3-Q' 3b} '8|4j˾$# ʗ # Cz+uojkgDecPbib=cӢcJ ec]f"guiDAlvo6ru&z CƄɟ6^@Ǚ;`>Jc ,uE{S1,%#.eh6=D8RK.QV /[_* aTc$$9e=2f@@qfMfZf$gfrgK}{g$h>hiej^kk˲#l@lֺkdtkji2hgIe;c`E]YT5N!G?6,|f"BuQm, Meo]UNWGE@&9n1~*!ۻ6?x35wF.ߔsb^[Ooʼn\يڶ^'Ғz"‘v!m=e=N] VTOJENBDBCnEtJkPWL_GGhWquz܃ =}c$.L  bp!A|"(/Z5u<_BBHONS~X&\)^B`aa/aao`?'/_0]9q\D2[EOZ [XgW,sT~`R=\OÔLYZHaD@=;361j-,n&tX *8; >Y!Ypo`] tStcR A?;/y UI3ڽ {#\%(^ +Y/ 2:*<639_<<yD?KBREYH^K=dNhQl>U5piXr`[Tt^qu``#v%bv3c.wlcwbxay^`z([zWp{]R{bM{EH|0Cn|J>}9}L5~1,(#}ztw2 rm8hKb\q1WQN4LF![A;($68/,( M ~pV]01I+*gvAngc> w*,,e , 7x*i5BZ-/ 4R G'|.e5<CIO<UZX U` e0hkqvAR|Gā͆L=(p'ry}qPh_%U)K-A-118242F )`! o>>#&X()Y0)|(? (l&%O$ "`$!&()!*R *")&a(H*&N/$4t":` @F!KcP@TVZWOXWjVITpQ)MJEW@x:"o4$ -'$*l-0a2)4N553e5N4;2MZ0)-E+a(<&c#!^K:x m TT2SbR_@#?]$$XD3<&-Sx_ ba.RN&~"(n-x^38 >ICPH' Lp P|SyU-'VUtTEgR.OhIMJMHF CQABG?<:. 7w4?1F.I,;*'%%# $7 !ID%l=fD %0˸hV ZBS!jv&-+{/b3Ă6{9)< =L> *>9u=c<? ;|9M8u786575K5"553 4$4(51,b5/6F172M8292;0<.>.,e@)A'C%LCr$B\#@">!@:!5!k0~!*!$ ""Y$&e)! k,5/$25+85M: <-x=>?cf@kAXBD5GJ`NNJR!VpYj[\2[$XدCTQMxE!;<1/&0)1-B -K-wu gaQ2"է¨K[7Vyyf]}ӢNFWRS i2" E%M2*?.*1135S7879T;`A<Z=6>@$ARAAA A\/@"?*=>3-<:s:"B8HW6WO3U 1[.$b*gh'nh$t{!zmPq/݋5h!?$(#-*}P1w5q8rk9d:I^:WE9~Q6K3DFx/A*>%< H<#<> @]C-EPH5J 0KLkKJH)FyB>ua:5S1+v& ~ `sLֺïfΒ{xu o%>kgueKcbbbI@b~bd#eg`iS lUfnLp$~sչvcGzܺ~S$՘1ҩC"A.\(O2C;DL%TZaf`0ko q|s t}-t{:t^GsSq_p@k&oumvlB!kiږzPMJIGE_?~g8Cy0s'mCh by E]SXS OKGnCP>9 3Dl-ǮS&ˠX[ RL:;l;G~W{,zThyyzI|gTf9vЅ)yzjoeduZFQHAr:[45j1&/04'2(6;)SC'L!V"`kcw(Ozr C &}(/:{7 ?&H\PRX_gf m r9w{l ~i'$3+w2C:CMlV`=jLt9}}ynu~qĕkCf`xZPSLE=44+#μk61 #9ݰ8HZg|nf`\Q.B2:# -By5vǾϭ4r]zʕ+t@d\(dTrсC~L{RykvAsp müVioeQaP^"[Y]Y&XDYH[x]D`cgl"_rx!A2™6U T A x 2)R4!?&nJ+,mT:23]8d?;jGcnNqVrq^9sesl]rVsLqx#pe}+onno_6qSsdw|Z}Mx@s_l(%f^WƴmPTIB<5/)F#CwI>& \XwiL[oK<8+u? a im!˨WV[S?{u^pli_f8da_l]2\ZbY҆X[XWYӀ[1_\ckHiowv}_ Cc1uBlSߛdZ?XIOj b2V  &#32'?*J.T<3]7f'<n@vUE}JNىSkY&^ cg l/pswy{|F|V|#zyAxvT}vs{pBz-lyh4xcww^vsYuSt/MsTFq*?o7kZ0h(tcv!@^!_XQ J-TC;V4V,$c}r h18Jc٭u3m}|3q$rgOd^VPBlKH߿GIKܳOUnU[bTjqyhڇ_Еחɚɦ lk?4rJ+W>,%k:!R,$7&"'w#)8 W*jx+y,G-T -'@. ..45._<.gC.3J9.P-V,\+b"*gs(m&r$yx"f~ 5R. T "$$E'+/ҏ94h8<v@lDUbFWHMI9DxJ';_J2Ie+H%FWC@)<IV772t,& Q/ R fQ d 8\txHV^a,{["]7F`b3e"i?los:svx*xQ;x$uq.l?e\gS7_I>{j3|'gK'J B5O5O}^& =]wbISNجa r+ $3( ,h}/z2"y>5x7`y9O{t;Z~=qU>r?Íf@/AAȥA!NAY@>7J=c;Y9:7 52N0]-*!()(%1I"9AI8Q9Y`F fknZ!qd%1s)s.s3|r 8p;n> lG@6i@Of2@}cy>`;^8)]3y\m.\(]o"_jGbe {b( _i-w\:YGVS'Tb_QiVOsL9{J`G+EB>N;™76X41H-**&(%v#K! YW{9)uEn hb|\V/3QwLiG9Cpb?Y;684 17-`)-$MۨݣfUE͕@v!`_#\)͢n"L^r]k߄V}Xvplhf_fgj?ou0}\ۙڭ(Q ^13|T-6HtY V%B+# 1*8>B#E\K@QV[s`1dIh/ k n/qCrtW"t)t 0'tN7r>pElL2i@SdY*`_Z3eAUiOm,HDq@t8|v0x(zLb|z} +e~{6x%slCd[R~G_<0J#%&nN([x~bm&cO:;BETAyk@>ZԷy.ѾO!lp֪<˙QʔL:wbXhB (}<+KG1nUH;RU8uPB5NN2_L.J*H&GP"EB@>b'; 73 .y)#bb  !<> ݦ5Ȓ,;ZUPx9\qkPg4dic,ce55im}sLz|KА|0VmrF0>/zptL< z]Du ` (N'#A+3;<DLT \b[hmSrv:;{c~փ Ћ F t7 ( z\q*h]S_gH>gi4 +!#D";"! ]   D  A  D-  pg F .Z:~St]Ic3ӎ"{v& rnlkkm=6o}$ruz z~Ffs"uU,8Zre9'N ]a".*qc0F58;=(??x ;@/@0@S?Y@W@gA5CtEH-FM^RyX_ g n wv}+s/+4FՔ` 2 M|+zrCi{_S^ LJ @y%"v[xD_f ĩ  ! ˋ; ?n@HKUr\c ^p ģҩ(MI5Gu1F$g |E){3j `$(F+ -0.%?/+I/~1.6o.:-=-J?-?.?/.>2;588 5<0A;+F%iL1RXs];c0iOdn $smIwz^}JV=Ukvu}y* un SgS^tTH<^0$|I LcD ]eR82? :ß3ږf[#53 %jGSwy@|?DجW oD%+:1]6ԥ:>CAZDPFuGH-hIAlIHE=H_G FE!kE-E7DADJDRVCYrB`IAe?Xj=n;dr9uX7ux15z$3{11m|Y/{-Nz+wG*t(o&jI$}ei!_ Zq;D?U;740S-*E(w%B"d ^˦bao  o  +|nSAYMFU ;Ę܍``WD-&=Z`"׿Ew0vC=rIq Fr %f)/s49g;?[DI[MQ8+TVEXpHYY Y sYXy{WLU $S)P/:N_4WK9dH>\EGC%BG>?K:qN>6@Qf1S-,EV&X *[]`ec fehj1j(jhaeaC\VNCG4?F7/O' A5&wU A 4KA j;sDS+Cj,h,XKC^'j16dTה1s~wrn'xkQZi[hh7iHlHo$Ntsy.Q7Nқ(PjD2;nC3 @goM$ +!1(9.j@]3H6O{9W;w_>=f>mt@snBxD}GKOHgTY4_}ezXlv2s^r8z%mGkg6ba<['!U'OLI|Cۦ=R7j{18C+ؤ$g7+ ,?% ~>vmud4ZN5B16n(S lo)} gNQ%g(Tƹ(,K*{ MyUQwv[VuJu/u@wTy|w^L,~Ǚik,ɫ)7ݭ0< ~ڬ91@/ڹſ}8x.V @fB".r: E%O&+Xq0`5g;m8@wsDE\xJ|NR܃VdZ ]`Lbdpf)g{i_vipgjpkhj fi`ih*\RfWcS_?P[LVjIQ*FLB]F?@0<:844.0(,"t(8 $?8 " /AcT*V] JJzBg"(UŹh5g%6MȁC߂R 1D#[Z E֩۵$]sB@1=\Ay8BN4B0aA--@c+>)<D(:`'L7&4&~0t&,T&(&%%[!%#'."qv{F C ] }f f/˨(5;P|Npucoj?{gF(e2c)cKdjfBhkost+x6}xzUmޭ;åaZ,k& M;. X$*/B3o527#99%:+;a0;3=6>8@8C8G-8@L^7Q\6W&5^3e1]m/t-{}+{*)&֍$4"pF r=-t 9'}v2oLfd\cQHlE8 +bgsp;]+.c%$*PAG \ 8AʠEJ_Pʏoi<ߊ H\͝J ul>zȝk2+LTXdLC7brBc|!  ,~ 8{(CMWai`7qP%xNT~WrC%|P  YX~xqiBbZ-S M{FaA |< O8^4w+20.W-,+* )](U&A$G!wH' +Br;vXfY0/G+j* R/z'X"N!Ҳ$am's)n*4+w*),(%$E# T-xYev |$aNLdU$+'^E-T?RNO\R/  !exJh"|,|Vk" h&=,3c90?LEPK?~Q*.W-\lae.iIdkAlk~iHe?a[UNF>&_7(0Yf)<?#U'_15CZ/*)R 8j" ^NtvN $i h Ty<+$"M =2'݊gN6)k L40GUxN[N BO( #&bs('L)$z)U*)) /(3'5M'7)'8'8( 8a*6,24!0&13b-^8(7=#xBHMS;Y"^d>1m>f=5y<:f8l63`1.N,$n*u-;(^6%>l#E LOVRTW[}_beh/jkblkbiZf9a\VUPx[J4D9d>"940- c+6)<(%.(''R''Z''L''@&Q&&&&&D%,B$#x!Rq _AW~[o8 N0Vm}!ܷ:%ݤQԠf9}ѝJQvA|iVõ]3'i3j)D }21 (`M b`$`r'R*5",-./ 0*;00 /3S/`.z -i,+*")'(,w'1%5 $8!;c>@)CEq3H%K YN Q TWYT ZS 2Z nX eUIQPL`FZu@9_k3H-&>f!nv=U kP [ " 0 Ry  f -'U?LZ> l *PRDP(s^VmM}A_di|Xz2zB{q~ %97?ٷ \#()GFD.Zn tQA m@"4'#-(4+j:j.A0G"39NJ5ETs7Y9^<a>dnAezDNfGeKdObT_XZ\>]*XbcSfNkxHpBu<|y6}09*+j$8 ;& ă |xt&n}Kib[S1VJ?:4'_6 xj\<G#V%rdRۥ~Se4 ҡ6("kR/hӪ@߮]\ Ŷl[^pb{8n3ж5$UcSQa: Og qd"H,6>FFhM!R%W(:\,_0 c5ve:9g6=g@g|DBfGcJ`AMX[OUQOSIUD W>W9W5V 1\U-S*2Py(L&HZ%eDP$?p#:"5!0 + <& *  D6f&Q4  N7.sgjQBm7$XE=vl_G-HʶXLԮpa\isò1Ƕl`NҽSZU1D a\sHM4 CRCzU |\  u !c+e8!4$_\&{V(4!*s&J+'+ ,O/Q,2A,B6,Q9+W<q+?-+B*F*}J*SN*Q*HU-+W+YB,Z-Z:.Z/X{1Wk30U>5S6P7N75L7I6GB5E03C0CB-@*?B&>."=<jE<;7; f:A9 875O3/+l&8 ,[Z Y]aXa\Pu1a w\o*ixeb/a&ayLbLsd)vg8k*o\uty7Ws0W)Stl`meq fu& FB8"' k$FW&'&)-+3,8.<!1?4A7CD<CnA D4GCvMCTBZAa?yh>n;tG9z6$4}1g.J+ (ߍU& $:*" zysxlHd:[PrhE{9C-!>_ 8.H%-V : M YoCz*!V%Ԩ|4ekəg`ڛߠX&v4>I>ӯί{}7+M>gjVR;/Ty]?Ze .$/';EPY`gsmr$ru/x,y xk7wL0t*o*jtc"[%SE(K*~C*w;*3b), '&#!  uYq/ <*tq#c CYR <M/C K`Uf4 :&> X{M!#}|pL7<'f5 K0f.u1>Em $;tz MYLŶ#ʹH t}>T> E ^CX_H Q N$,+1/8>$DKQrVH[[_|bdfe,escbaq__[WSEOJFEC66@=<:&:9A999;V98u8c7 652/=,'u"B]S>B ` Yj9@{Y@Z| w4teq qGqr' tVwz}@~>>CtъU ?zN1{SkI X7eo\* - YE ""&9$*&O-Z)Z/,0x0&140:/?-E*KP'PRX#Y_;f?qm*Ut0 E{)(̈%cJg#MÛܘ7M<_"vke_2#RD5b'j ;0m˽ aNŮg rM>}JnW Vǘ>:ϘVVdF^#MJʳKl \ #%]'\( ()((w(= ('67'"&*M&2%@: %tAQ$Hv#N"3SP"W\"v["^'$a%c!(3e*e-,e1ic}4P`7[;V='pR:x5M1,'ח"#̞Iljw fD/X ^ s&:sHTktmeDU(E4?J$u[\- U!}RvfQn,،ZHn޿r.7p2}{6#{G${̺{Ļ|M4>=C=<;;;s: 99[9F988D7;6f42NS0 r- I* &# Ju" (C-389 {?PDGIOMPSVX+ZK\]^k_*`G`jaEbwcadLdSdd5{cKbca__7^O-\YDV%7SENIED: >p70r)N!9yb0:UI9 ׂ"Kw"m"-d!\?WQBS6POlO P| VRTW9h[z_dCKi*G)NP=(YL& c$Qlw!/u} ˚ov FKbBlаI'ЧLޙՐizm/ {`i wR-DV5'${  Kf?`Oh.Эu[RoЙtVm. Ԃ}2{&9zOzf{R}Tɂۅ׈j 8wT 3ZKT6۩[ɼW|^Wobqa=FXsS%/9XCKO>S.Y_i cgj6Xmn$!o)+ln1lq8i(?UeE`KZPgSnUgLXPE@[h>?\7[10Z,VWf(S %N"I!Dr!=!7"1#*$$%&8&& %@$7#e" !aM?c1K%qe C@~FE ?/:m,nj/*?B@ ygkhrzHQ 7|$d= Lx#* 17=AѶ EiGIIrIѡHyFm{D}A=I):=6b2.)+''$!-g@0> 5n c'&-92QI8 =.AGDFzHAI^JJK[^KyK)9L MINPHRTSWY[R]c^^^^^`]\?[HYVS7OJDE?jZ9:2b+$$ > n %)-0F3y4q54 3?;0 ,5(kZ# ̓|. |eq4ˏ/ג{2ՙo¡kTBu>0QV1Q}VaC{1fs_ S a x!\(@.0`8u@^IQjZb8 k6s<{4:T>$y\9ceNX/|rTf$ YNLU=dG/!| %z(S*++++:*(&$m"BJǴM:1*Ik x  <=Tˌ[ϊ:†R;'ӈ%IDN_:ER԰0)(A@4=nyguW y$@`+ 29b@GNjTTZe_cgj m oqr4 r&Hq-ni4j:&e AL^FMVaKhM_OCuR:T0kUi&U@SP. MhH&B<5-%@G9W =u7_ip"]9Q4Qpu{ܵ)rx4%n{nWp8: LbGUu M&3/'8/OUp =@ l3ZLp x`<& ,{3s:I@FVLFPT'W|XXWjVgTQ NOcKG2DZ@=?:78+5i2g/,>)o %!l8O $(mG,Sm0qM47Q\:/< ==BJ<y:876}30.+T)r'k&?%b%RQ& ''\(:)q*+8,t-"U./}/s/Ȭ-/i-Zi+(#\f@ 7q3 Hxxr!q~ n\$x&x(zrG)md)j )\ic(ip'k3&m$p"et;!@x6|<\]J+_+koK\CR7n#) HW ##*#%1'8x(R?G)E])OL(Rm'CY% `\#'g nv}b  ]]N;+ųG}PZ4HARaVĖV};2n ]L9&uW; tءG{ +q,}wvvpk0].[KY3{X.WV;V{U:U1UU WʹY[ɲ:_c GFQvIZ bj?r#x'~|,ov1o6B<AȔG6MR&X,^mc#:hqloÁrz{ttQt?n6sgp?al9[ hU1bP[L`TILFyDC <7A3>d+;#}875Gz1-c)Y%!5) ,Le/{&)&[ SlCHsnEE` t!WI2ln e/#>Mu/6ZlN0{i=e   '/K.7=jBv/GnqJ|L˴UNKOO4OӻFO?DN-L^KIGDGB@T>;*9^56O2Ca/, +~'R#"U%,23:DB hI`P}MW }]cah }lLpsv;xEyM,{,| }}~{'$[oTA*BN%;G}{xumr!nidE^RW#PHN~@70-=" x.zkIG#X& f(I}f)oR)Gc2(bX&$O #GiA="};C: :L:P2ADHMRnXS^]Ud3YjWp`v|I{j6hc_>#+B{Et A/ Sm}'81<GR]fhnr9{}kSڜ .ժް gI  ˿ ` ! g[ ߾ i! F{c){} p#1c]&9U=(G@)8D)*@(<&Z#X7>s w `ayʻP@ j 3^Zڑ|~_Bs]nv*&܋x 2)asӔ%8$ϜQ/d#'j.E 6Q(l2l<2EMSvYw^bb CfThj{k#&k+iI3f;bB]I]WO[PYUHY@\8^0M_J)^]"\0}YaU~PJD* >> 7 g/C ~'s } ] B#  I W i G 7AN'C0Z dѼe7GT m7 [vy!l/UD;p EuN6 ^v Y&l6/p q}#ng 6 f S'.,5~<}BxHeM5wQTV5WˢW}VTQHNgJ"^E4@: z5/[0ɢ+@'M#źW:)> !]ayX(L[ P5#I2(u,Z03R6l8F: ?<=%i?`AdB>EGJM`LQTC~WgY[ ]U]E2^P^p1^]q ][<1Z>WTcQL*GXbB<q6=/h( p #'!'k-O25ah89-h985Q2-J)1$-΀@aX @dB?rKƍ1s@ gҾTDPHR& d 9| Z!8 %,2D:0B+J!_RZB bij rry6??V )[9%:*M5)çw8{r{+~ sne% WHo 9(#!`#X$#Z"= ~FvC b Vp#~2|{z9ycx[x,xGyz}.̃Ì9eAtsUWUvo)tbzVn H/G#+_)2b 9?4FRMS/XZ |` 9ftk#p#Ot x#<{)}08c?%G~NzVu2]Socgi^n)UOrJt?u4u*tpl e\^UEDLA7G+^ e[PPz[a.a32n˦ޣܡi3$4|Ŷ}ʼvNY<|#p0q}.%?d'D :0Yn 5` &a!5)?1U9BA HOzU '[B_<0b;c{dcbk`]%Z4VRNNvJXFwB>w;X?8#5_2 .+uB( $ YX|i!Y %)-)1N46184:l ;o;f;4;[:98n77}6'6c,66C1778U^99в9H9k9Ji9*9A8@g8˨7ͩk664"2:.*a/& .8 0 Z!T&,1^4IS6Bw7o6pi5d25b0$a,a(8c$eK il ptgy .~e KogJKSsX1ҿmrfhAh |I |4!@)"0A%+8W'h?(F)M*T)\)c (>k&r%z" ' ϱB# RT=6"~רɛ>̈<|}o `,Q@?/6 YF>}ծ =]#@|xus=/r&q{p*poLo&o"o߸nնSn .nln!oʲJpMqdsu4.xz|bt*" l|Fl`<0s/P,EF*h;(g0&~%$"w 6MZ=R} : wmYoܬէqCB~ؤ4ĥw<+$uv;OʺZ>?nD(q^jQ-ƿf$x,@ y">-;X88B>KJSFZ(`dh )kLlm0m_m`l jh_eb_7]ZsX`Vy_TGORPWM JT!G!C>94#u/c'g*+s%`0 4D9Vj= FAD$ 'Hg;K NPR6TuVl#X'Y[1\D^e`Qazcoeef.gPgg gخf5d*cb«S`Wa^h\eY*VaRNQIDli>H 801(  L[ " e&6+=|.lj0y0$0 v-l*e &_ [YX XY[E^ia#e/ji*n?sKx[}MSP1՟K@ׯ^3VO,}*w tL0b+!##$.%8c&CO&9N%iXj$b"j6!Ts{mfRďǟdަlv86xY.gs<"g|&q?*eF-Y/L0?+1(2`0$.+h '#{Li$ bD8ME!Pk٣~Xm\ɞm{b7R&bYf)IAcPS^] Y?fbRonJmuB{y:1m)Q!ځ!|S Kw`q[j7b%ZQ,8H8>A 4)@ s!jk}s+ ( }Um$մĴ 5`ʹPXپqԿf$*w|DFqJ^4hb} kfK]9?DA[^!/~"@#]~# #g !_-#`,52 >>7FdMSXc\v_.aa`ݿ _0b\Y0UPYKܽFA|<7z3O/z,*)T&u#i |\5N s#m} To v/ofxQs$0BZ!$o($,04,N82;xq=?-=@g ADAAɼBZAh}A@#?E!=:S70&4v07t,k(I1#ec ] VJ&p.'52;t@ C)bEEȻDBg?n;ҥ6R1Y,z& ok>5 Lgˮk:)*87 \xRTH|Xk78 #%d( g ~5~1w@ {E!}o(0 7 ?GCOV]#dkWrx/8 f_͑#F̕4e/ȔnI|a|esi^] QDV]7)w[()H;X+ m[893ܭvf1U3Ċ&=r-7#Xɉ=R"w!"Whwл/,X. P{KNfv%m,K4Y ; bCJ2Q X&^+d,2j8n:@rGvOxmWx_xfumnrQtm*zgaYQ_kImA8}1x)q#i{`uV`LKA5),za `a5ݯ 2 aۜ}Tifj_Pjt2GC (O | \   e"XeKR?T(%I"~%(l+J-/r1 234&5,]53^5\;5Cm4JA3oR~1Y$/`J,f)l% r!4wT@|2:r Ғ5b 7eTjoq~[|rDgqt[2 yNV @ 2I $ QiE7ؿ? JN|Ⱦe߹5ݸ*dXl-V]LvԺvU€]S&b-Q*<4>}1*;M&Y " e c#+ 4%;* C0I15Pr:U?([E`JLdRMhYdk`mgo`noteozrnPlDŽj (heFa%^tZԂW}Sw;Q q-OpiMAaLXGLiOKE{K;J1I'C,GaKMROQQQQQON LISG?FD DwCCBA"@+&?)=+=;-=8/411r3G-n5Z)u7S%{91!t;Q= ?@B C( D] Fe G.GkH6HPIHIrJZKWLNOQgRQS3SXSRzAAgqwUůUNk N5z!?ȏOW]wsDv9"],^CG(~Is h "Y*>1s7~ <AF^I;$ML+1NK3.O#;9OBONJLQIXF^ Cc?Pg:i`6j1j-,h)e@&`#t[!TU }N G!>"d6$Y-g%$&?'''''&.%V$G#%!O)6|~ %߿8ɹٹ$T}hNIIlufx0(3+ME[!WJ<'uF(EA\  z#/*2o8?`iEsJzNolQaGSTSRPLNUKGODoL@ <703/p,)5~'%r#)"K <  _[Ep;  bO`Rh]M"2"&+K/R3w6#9&<۾=7>?sL@Z@@pU@~?׾>{<k:G8rs5^2/i+q'#AV. .{y!J& )W*u++s)'̻%!V2dU  @^ QB[$սf A(* O W 5p^w!-Xi!v"l`## $0#X#\" !p\ ,%x,3:?bA G QNdTKZ3` ejn>Urt/xv>wh4w_v"t:3r"nije^W3O'GB>45+"d   }q?A gX zkFF;C/׻oZ{qݠtH9(g5w9Ϛ֛W\<ګVU n bwl"Y)[0]"s7Z%>>T(DU+Kh.P1.V4[8n_k<"c@fEhI%iNieSg3Xe\cb9a4^eJYDhSjMkAGdk}@i9f2b!,t]&W OsG=>5G,"/Zq;Bl $pGvy&'DŬ`pүLײ\bֵN&Ӹmpm#Au 9;OwW+c0a$t3M$NC<,_I&6^ K[ ?`&Z/47o?pEvKOffSVWXfYsfYYBX&WU SQO*NgLK J#BJ&I])(I+OH-"G/E 1C/2@2={3\:3j6323t-73(|2X#w1(0.,x + 9)d'%#!\P G #%')P+k-d.N0˫#1ƪ1&m2s21t0j.O,)+% `\p~Vj {ܷX /ӑ"Ɖ1@&S y - .n ڻuzaya\~BC[$7,}m_Ac[]YB&J&,G1Z6:<7?@A}BBA A?z>F=gg<;<<H=w=>>o> = =<' B:74)~1-)%G!#CT" /%%(+,-0~3068B;=O?B6F3Kk3OSVqY[g]V_``xHaa a7a"`d_][7Y*VR:N+IMLC,<t5,Y#y4"K2S"'q*,-@-Y,|*>(%Z!JtF6i IsWFt+xߠpulj\ 3YL AM*ۨ848ƷY1->sr! n1O:&.+7?FM7U[ jbhhTn#sxP}P„{pH^ P;b }Oxr kzdc}A[R9pJDB:Y35,z&   \ o~NZ!fs.6!2HI%nk"SuFo$YW.W۔hIҢl4U.Z{DId Z; < _ ' ,1S67:r=!?~&A+B0B@6dB;2A@s?EC=J:N7Q4SY1T-T*mRq'O$K"MG!Ae!;!4#p-$%z&IO()G L+J,0,g--5-XC-,u+6)'D%a" =PvAA eK|oR~lU!P²U*z)& P_ѾS]^ 5R#&\.$wr 8iTd 'K/+7LE?GlOTW_ekcorvtuutaSs5qynFkgfc__OZu_VvR7NKFH FC`?x}<840*% :*Hy7NSb ) :&qa#n@(r,0n"3`579m;<ŗS>Uo??>@@@w@?>=';9r6x33/].+<&  N=y  d%}#Z&q8(k.)X)(1'G&%f$N4" 8Ah_hE AJ V"7%'s)w+, !.r///o10.P0q000l1&1 21l1 0s/\,.,\+G)Z(&o $o"[ %,3~O:@4G rM, rSJYCB^"bf jl{nopoF\nY'l i e/`ZL_T;MdvF>]6.(&{! &z32G%U,nVL ӫȣy%+ݜ|WjГ;Y=$יZMwǮDHLaiH0\5/T:j4[ %,%4d;($Bo*mI0P07ZV=;\CaOJIfP&jV m]n\coi,oomukx{~g+c ,^vXzRCK+E >7]e0H*d$z smk-bY/PFj;10(4OqW[j'RA EN9oͰCjm/sOJoOgAIGؒD/ɦm h4ÕhBlx@.:roHVM9Q UIW Ye[f\=\\\5[s[%Z~Y?Yd!zY#Z&[^([*\},i]0.]/]0]y1\1J[ 2+Y1eV71S0 Ov.Js,E*q@':$Q5$"/)GF$%g1FfG aL%PU)ru"7&C),.2*1=l3p5$7˾n869c9a8n7ν5K30-),:y'" ;+>)H|F..eOγ6۫oXfve@'x' br#[!|cXͨuv&eP˾/sV\eL0 Km C[ HO (!0;88@H8PdW"^6}dkj^puu: k{ !."<""`Q###˚+$5u$$r%KK&No'(*B,.w1~nU3dO5Z6O[7D7,95-3c";1-n )6v% *@tzZW /*vIC!@"E]9 ܓ#ց05|AvZrmQj$ge/ee=fiܿAlAp5uz tݼ:]v(0uUREeW `EQ#s*0Q7c=C6IJN> KSjW0[ 9^n'`.nb5c<JdCgdJcPbVaCZ^Y][D_;X`pT_P^L]IXZFVDS,C|NAxI@ D,@X>]?8|>2=B-v<O(];$7:_ 8E76,41e/k,o)< P% )!=lmsd O#AOFPfOx,b>nRrLOFw[`u\Q?h/1#c%frk>=~cC+~@eDe#jSy (f#v(h,/13~44b4ZU31A/7,D*A&#!/<&?DRB04n^+ wv q pX#(d-=2K`8$>1#DgjlnLoDpqSq7uqTpaoJmkh(4da_YjS^CKiBM8<-c"   A4H #%='Y`'&Ȫ%#ә>!t.|ϊJ[† y 2AE=D'p%6/%Y*ooje Pabe38Gy)L2G K>Nm%-4:AHGPM:6SX]^ciimr-vzu~n@P'$6O{ $D{4wrKk+e]UMgE=6j.T( "5  <i*6,bu1.<ƼH_qFUh_T=0hGL-Tn0pGi\ . #'\.L5b;x @ E^IMCOQ,R"R\&Q*P-M1yJ5Fv9{B ==E@8B3D.Ep(UE"DUA4>5;6 i1a q+$\k  38X[UY^#P hgafN(k%hk[h .o 6$oVr{(^0Mj z+\W=z,  Hv 5%Z)'.s 4X P9>8CDHKNmP(Q,QaQ9P*mNXK}H]EPSA<g83q7/*&}#S Ri*| t& zGi_cw5;c)y`4,im ƹM̴ زO%G)%-g1k4< 7K94;<=S>QN?m?7?>=o<b:!*88.51-)z$4 P s? $4 &Z'''&&W %"J =bI 2+ RUl y >Sh  DY \!"#%N&n'U(((H(K'&b$#u! ) ?&B%,3 :ZA,GMCSpX!]Ha7d. g j k l?Em(mclrjQhbVeNamw\VPIwB: 2)!7oME@E( KJoetͿΥJftInu0Ӹ/;!;h7΁j.,-c{[\ϓh\fr?L]Ysi]k-nJy\8  L*_3;P%D.KXMS TZ&`%-Kg"30m8r|>wC|HtMQRUeY]m`-dd5h{lvopsyjOwczf\ }T~L DF~<R|5Hy-Cu#'Sp[!jcp\RThKB^90&ETe   ~ k vnP ( O$1| (й˷HI7uȜםrtXNqض?10" {'}ZW^z KpB*X+`! )[!]1!=8h!1> 7C\GJMMV3OHkPPPjP@!O"VN_$M%KH'J(I)I*I+rJ&,bK,yL,M,N^,O+kP*P)Pg(LP&$Oi$gM!*KHEbB`? < 8 c52.G*Y&!C@a" 6C )Qv>!S%/\*M|.>2f5}8:< =>r>=_<o:7Q471,'x!T :snxAY +8aKti<83jOhX@_lGob qGŴ\n5Zݿ4|1Z# z%' VEs[Uk ! ##T$,v%y5&O>'F(_O)XW*^+e,]lM.fr/w1}^3Ձ 5(678ې~9 :\:k:'9:9W9g88ڐ8l9KM:~;x<p>h @_?AxVALABj@8M>.P;$7z 3- (b!- duC3/L*ңs-6xЌ<Լ́|Gwssol7mSkGYjHjkܳlzo'suw1|ܱ^ފѱOLgh~z5rAj~n 5P$y+729T? #EzpJOS$ZVS+X1Z}8 \7?\E]L\R[YZv^XcUfRi-Oaj@Kj=GibC h?se< b~:]8X7sS5M4gG35A/3;b2F51/0 +/&.E#w-8 &,*@)+a'Fy%~e#!Q  5a 0b8*qKSz-fR,[{hk"R%H-}T*T>}a-15%ryVB}-A12[ p) rE Dd*JH&<&) H%rgSaF| < hgeX6 >+&.s=h `XhBa N4  r D''.n5<D $LtjSFZ `MMfYko/hsjv xdz{bB|S|Z{z:^y@wgtp k $f >_x RW<zNkD:/$Yu"X$Y& '&%5$!!zT= rdј_=MқLcҞ?SFw٢j=DBge@oE#g^;#v]te '"rz R"&-8[5|<MCIS PUI[`?fjKos=Tv x z{]|{ z\xv!sX%p(l),g.b0\1 V,2FO1=H\0AAi.:+(4(4.$(. W#1ESqn  _p] i;h%^S!B;VLޥPp|"3Cbʏ͑˔hϘCQ#tݼ]6=Gl2%!0)071<` BkF)JEM'O/ lQ$JR'?R+FQ.eO2L5CI9LGeSC>U:63/,h*( &$ M"} {d%!K O #w8YKo7)G1.4P(=]{ :ϰj K%m*5R/\36:Ѳ<,?]ABCfTDqDC%B@>:62-))#\%n  %s'/H@ 0| &5t3r5/M n <Aa7y z"2$u%,'Uo)+(],Z----, ,*) (5't% #! ' d.g5 <6BG1L"QTW9Z] \V]^8^^B]\[/WX T P L- F AB ; 5 /< #) k"l  z @x4z%[ !ga׾5ʵʾp{J$<X!ףҮɠiCf6ɷ|Lq1CѽpW&>q{EWNONqi~-YSy I) r2;EHCJ$R+Xe2(_8eL?j`Eo'KstPxU{ Z$~-^fa~=em~hJ|k9yojus qvAl(zgworkrave-1.10.50/frontend/common/share/sounds/bells/soundtheme0000644000175100001710000000075214221624107023351 0ustar00gdm00000000000000[general] description=Bells author=Pieter De Decker [rest_break_started] file=rest-break-started.wav [rest_break_ended] file=rest-break-ended.wav [micro_break_started] file=micro-break-started.wav [micro_break_ended] file=micro-break-ended.wav [break_ignored] file=break-ignored.wav [break_prelude] file=break-prelude.wav [daily_limit] file=daily-limit.wav [exercise_ended] file=exercise-ended.wav [exercise_step] file=exercise-step.wav [exercises_ended] file=exercises-ended.wav workrave-1.10.50/frontend/common/share/sounds/bells/Makefile.am0000644000175100001710000000056614221624107023312 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = soundsbasedir = $(datadir)/sounds/workrave soundsdir = $(soundsbasedir)/bells sounds_DATA = $(wildcard $(srcdir)/*.wav) soundtheme EXTRA_DIST = ${sounds_DATA} workrave-1.10.50/frontend/common/share/sounds/bells/break-ignored.wav0000644000175100001710000126240014221624107024504 0ustar00gdm00000000000000RIFFdWAVEfmt D bextZREAPER2020-09-0820-28-55junkJdata b//CC~~]]))__BB,,}}>>66ZZzz""==RReeqq{{~~{{xxvvvvwwyy{{zzwwppbbLL//  ||DDFFXX\\&&]]++YY,,00?? EEHHVVmm>>  33``  ! ! 4 4 @ @ DDAA66!!GGff  SSiiggNN##VVmm66OOSSII7 7   ~~^^;;qq>>//ffGGbb556611..rrTTuuOO??BBVVzz::mmTT00''33RR||zzJJvv$$33((vv//22nnT T A A 1 1   bbwwJJDDZZ""P$P$&&((** - -6/6/k1k13355S8S8::)=)=??#B#BDDFFIIJJLLNNDPDPQQESESTTUUVV+W+WWWWW,W,W^V^VUUFSFSQQZNZNLKLKGG3D3D7@7@;;F7F7>2>2,,&& b b  ϨϨDDuupkqkyayaWWNN]F]F>>)6)6..L'L'I I  00 NN&&^0^0m:m:DDcNcNbWbW'_'_eekk\q\qpvpv{{ZZ wwmm}g}gffdfdfee\\//yyvsvs!!#x#x44  hphp''ޅޅbb|| l l%%]F ]F [ [     < < TT* * ޏޏ""xx&&XXppooWUWUZZee  ! ! N N `7`7P-O-88nn%S%SuYuY]]ҠҠ0 u>  --ss``;;@@ii}}DD  JJѣѣD7D7 KKdd0U0UZZճճ\o\oQQOObxbxMMrGrG.Q .Q   UE UE !7 !7 ppW%W%55 6 6DsDs<<66YDYD||Z]Z]LLqq ^^ww , ,DD ]]@@F F !! ww}}aappp%p%88IIH[H[CC,,NNuBuB'3'3vv00}<}<DD[[ii00 n n>> 1 1 j j ffߔߔ{3{3ee((^^ɑɑ))@t@t**&&捒捒hhhhhqhq%%+8+8tuCCCCu%u%..$$>>'n'n{{vjvjuuppSS!!TT})})g{g{ssgg``d d \\$=%=::XW{{zz>>jj::cc 8 8ii''jj"" ~ ~۱۱44 8d8dQQ88  QQoocc__UUw-w-"q"q//33DUDU#s#sȓȓSSD!D!r#s#\%\%G'G'h'h'6k'6k'{&{&<%<%>H#>H#W!W!66HH11""{{  {{kkJJUU>>m0 m0 )6 )6 OOȈȈdd!(!(--.%.%yy((GG;;aaÑÑSSOO xoxoTMSMH&H&LLMM22ee9]9]vv????:k:kjj%!%!rr՝՝@@c c ttD{D{66hhb&b&&&lldTdTE9E999cc@_@_\\VFVFޢޢ;;vv11KKuuVVӞӞwwQQ**QQ==rro o iixx @ @KKhh....$$''55 99ޛޛddaNbNijפפmmiioo|}""%%mSmS(#(#B1B1WbWb:\:\JJfUfU4:4:YY??UUii.k.kppppAA#B#B77P@P@7 7 X X @ @ 8 7 , , A A ..FwFwyy..` ` K K į į . . :) :) t t ,T ,T Io Io     M M ++CC$$  E>F>>>((8$8$]]KK6O6Onn>J=J.. !!;";"nh"nh"Lv"Lv"""""u"u"""##$$ȱ%ȱ%''t*t*B,B,T.T.T /T /{.{...g,g,**R(R(>%>%4#4#F F QQHH88||""xx55YlYl4<4<  2 2 S S  l l w w 0 0   ]]OO{{q9q9''/y/y$$``**oo!!GG66"">>xQyQ$$]]ëëww 00ww!!88qLqLAA<<66;;XX1r1rii 7 7m1m1{{D8D8팙쌙TTii겄鲄B;B;iipp88@@ ffƈƈ33nnRTRT<>GG\J\Jqq99YuYuJUJUTT跔緔ccIIffyy22RR't'tqL">L" ! !o o xwڔڔ˯˯yy,,* * C C . .   ##@@  } } DD''}d}d  $$%%++<V>==HH>>{{FYFY::I-I-AAhhڱڱftftMMݶD߶DԒԒ11TrTr}}**塟䡟22 &&BxBxRRkkuuݬܬ))++8888 d d..L L aaWWccO"O"NNYYY Y J J   O O OvOvvvɚɚ99;;  x x     ; ; * * ' ' h h g g ``QQ& & \\LLbb N NNNYYPP:p :p x"x"r$r$|%|%&&{'{'''''''m(m(2(2(y(y(#)#)o*o*r,r,E/E/|1{1 4 4B5B59696H5H55533T1T1:/:/ۆ,ۆ,))''$$##""9O"9O"!!/ / NNKK"" vv]]߳߳LL<4<4ZZ:D :D [:[:I[I[D8D8_C_C~~VVYY77>>((5[5[%&$$YYngngqq))OOӝӝ[[}7}7a a Z Z .$.$klyySS]]^^  :-:-枈瞈VV11ffyy @ @Y]Y]??FoFoee剏扏[[겭겭nnDnDn.).)鶭鶭22__εεQQsCsCWWCC"8"8'!'!\\hhZZh`h`hhWW+4*4އՙՙݘcܘckAkA۵8ڵ8ڏmِmٶ!ٷ!חחهڇܽD߽Dhh``00bsbs,,--,,JlJlWWTT}}99dd-1-1 `~`~88##RRKKoo}:}:ywywAA$$??KKG G ffNNGG33RRSTST   i iw,w,  77ɠɠPPPP**1 1   krkr!w!wMMXXHAHA  >$>$ևև< < __խխ[[/!/!""6$6$ $ $=%=%>GGُُ;5;5HlHl\\cc댇鋇yy="="oojjyy€€66ooppxPwPqq""ssppj#j#E/E/,,TT렙衙WW55!!qq )A)A22ߎ߾?޿?  ۞ڞ+u+uzz01ff[[~D~D##廓仓55߳೐  77onNN**]]::~uu6?6?@@ZZFFii\\aaaa!!VVќќ~~oo$$ll++LLA A DcDc  }}j'j'RRp+p+iillccDWDWOlOlZ Z (!(!""##E#E#%h#%h###r#r#:#:#O$O$3%3%T&T&))++¼.¼.'1'1ʼn2ʼn2}3}3+2+211//&-&-h+h+*()(%%(3#(3#E!E!  ttUU&&nnZZ ' '//eeL-L-     Z Z aadd{&{&NNV V   00''vv44LL<<&&||55wwFnFnabff!!77))>>0r0r00;;qqkkmm55X(X(  ::MM))s|s|ێێقڂ^8^8LL??kkBBF*F*eehhlElEMMOmOmpoBB\\5J5J ;;`?`?F\F\\=\=II}}//uU>XXggytytffttii44딓ꔓCZCZ鎀莀PP AAꈘ수앺nnff++SS;6;6&Q%Q쉯ꉯ0<0C>C66 5 522{{̳̳vvKKAA …&&,,pp{{ccg g щ ҉ ttrGrG66BjBje e ڐ ڐ 6R 6R s}s}''SS aajjmmڸڸBBj+j+gggg/x/xV!V!5"5"C#C#{#{#########$$$$L%L%}'}'**,,!/!/8181U53U53|s3|s322t1t1ں/ں/ p- p-**''@$@$U7"U7"c] c] CC@,@,ZZ--iimmzz u~ v~   jM jM 7o 7o ggttv^v^`z`zWW{{    q q OOee  {{``VV{|XX,,LLӦӦ""6l6lOOvviixxyyLLCCWWaaPP""))JJlk{{//IIFG88»»PP[[((..-'-'``GVGVwwP P .."";;IPIPBBMM((77@@>@>@''zz뭰뭰zz/Z/Z{{+%*%rrnn""MMǼǼss00EE잟[[޳޳dd}}tt[8[8>>~~,g,g5?5?..oInI@Auu11HHMM?@;;11ggffs9s9""UAUAⲢ㲢FF罗齗\\ww3_3_,,**XX~Z~Z}o}oYY44&G &G L L W W wwZDZDll  2B2B-{-{'r'r$5$5e* e* n n w w VFVF !oo= = 014w4wByBy((VV  ttii  88X X v"v"X#X###d#d###^$^$&$$&$$O$O$ѱ$ѱ$%%C'C'r)r)zU,{U,Q/Q/1133r.4r.43322',1',1//j,j,s)s)b&b&N#N#j!j!w x 9E9E " "II//  [ [ + * }}??NND9D9G G ml]]d2d2;;ccggmmQ.Q.))))SSUU\\(j(j**BBAA ÜÜiiR R ||'' 3|3|ddꮒ鯒ll66]]YYZ\Z\xbxb{{ k k믱鯱[;[;__@V@V:Q:Q긊븊LLsKsKۣۣ:: !+!+K[K[h%h%XXCC r r턄힊ꝊEEabTTq^q^bb  66ⶰධd߶d338!8!ܺrۺrbUbU ܮݭKK 11ٟٟzz6699睁杁12``TTxxኄ⊄LLAjAjththӰӰr>r>솃톃GG//kk%A%Akkww{{))ۚۚ8>ffdd--ppLL  ""ZIZI   ! !O"O"B#B#?v#>v#Z#Z#֝#֝#@#?#*#*#-$-$$$(&(&B(B( + +a.a.00 3 344)4)4 _3 _311y/y/{-{-**}'}'ǂ$ǂ$ " "8U 8U ]]OOkbkb66yuyuPP+K+Klld d ~  M M : : RRKKNNJJMuMuQ Q ` ` !J!JٰٰXtXtnn#R#R((  )) 77't'tMMdd——$$  c!c!wwqqEE>>hhv4v4mmGG__SSIIEE i i mKmK1i1i**[H[H 讵讵CCpp쏽 VVDD , ,../ / mm꼄뼄''!U!UhAhA33ccMM몍몍kkFF\\''h)h)WhWhff{{ m3m3RRYrYrQQyyCACA߾ߠޠCCEEee[[Z[QQB;B;[`[`L]L] uu''囶㜶ppPPGGwwp~p~//PKPK閁ꖁIHIHdd͖͖AA}}||Y: Y: f f i i 77"X"X``b>b>332W2WwVwV4|4|''++M M _ _ A A K K '';;>>9922TTq&q&uuСС[{ \{ !!""""""/#/###=#=#y#y###+%+%i&i&D)E),,//-2,2Z3Z3 4 4h3h3kV2kV200#8.#8.o+o+ V( V(7%7%3y"3y"n n N0N011rSrSh h <<))$$ĤĤ++ D D ;: ;: p p 66\\$$`6a6* * Q Q 9<9<::M=M=N$N$YYgg88424244e?e?YY99pp=-=-AA^^gg(a(a  ??ќќEE%% OO8V8VeeFFqqwwee魤譤)),+9:?:?:ccjjrDrD裏32{{,S,S$$xx't'tTT}}jj::BBNNՈՈssjj((ʿ˿HIQVQVSvTvnnZZ޺ߺ0!0<<W߻WS-U-<?Z6\6vxۚܙH=H=C3C3gjgjccLJ" EBBBʇLJ c\e^==$$CCTTLL@8 jj q5j5; ;  P P ZZh e ==KvGv`{\{LL5/~ll"RRkvgv>;|[ _ l~ p~ |$| o&{&UUL[RGcGbb !klvvj7jȞdttg%%1Q !!">"y"y"""T"v"F"h"*"M"H #j #m#m#OG$rG$)%K%8(!8(6+7+b.b.+1+133t3333227171F/V/f,f,UX)cX)"&"&M'#V'# 55[[44}CzC33SLujd>U>vd ,+% r M v N ^Wt)toN _^aa w 5 [  \[7(*) ^ REEbub)(.~.943[II;rqQrrzD jc-7-,y,<<FFzo[o?' wn3.DEq-|-))9 R l(lPKqKDD :LLa C,{,>(z(X%edeEﻘۛ"AAJ[Jvv[Tt..pOiooi鵔C`)VrVVjjL)>JCߘލΤݦܘۨۘ>-''m\MM垷猷 A)G/愇j,8أ⭣EERRR3PO(꿝zp ' AOO p "KFہ"]k_^,5,0"  2 # gDҘl/f.1|?>i%i  iC;C37qNM"OqNdGt   8 5oCovl =<}j̞&P#nn9։!K mK |!r|!\""P"Q"b"6c"ov"*w"-""""(#-#R#p#+ %a %&'''Y))2-4-;0<02>2k3;34|4_3a3 11/0~--**Z')]':$<$3!!K˺7t!Ҩna1|~ʚkqsm=@#&-20aUd $ [ J ^ ` ^?hA/.&0a8D:vlCn~v [w z a d -uzx!r    uy ;n  9 A :l t PY\7FA(Z@Js7@NTF^LOs_bj\Zb*n0 ߉13zs] B[I5!uv^SdBd+츋l/dhqCb(V5[ψWZܴ)w7ݪݦ9߄߻wRQz"䬼 >nB⢶ޚ_v ݰHۨ+f~ʶՄ # wףׂfQڴݹWF%ӃU{犫ߧ뙴븺K끅'DBVw>RUI0DkKȌ.nE/<gv:'`gXRg*sJT̮.:,azM77 x ] Ro|B&+ ]Iu' 1# #5$=$|<%v%d$I$H"" s?"4G+̑l1O t\Np%Vt86=P6 1M mh& P$b($"''*++/.611Ȋ3Z3 335220˂0Ƥ-Ht-*v)b&G&>""=\t"L_lO!Z`  UHo4=.? {- n d ߒ r o 2iJ|>ޔ+_~PK: LZtN"e>N:骩3 r`m[콝6hwLSͳ"B6^왇L 9`p엝Cs (> d Z3 q .;  D , ^t7>*F;nK;zg~ k1$>B0,yҹ4`amvJu:J 3m&N w 8N  *  > I c ?xaǞix`x) $[1$uE46w|>3}vD&1 q((7+]EUcȭ-k9A\1?!YV E ! G =- H : 9 ˚NpFcO'rN$AtCVC()v'|!pqht<gBA[: X ) YJ O#oC {<LZv59Ld@*Kn\3>K |t_c {1UUH^({oNPLe%=":-Sm',zO4X]7h7U~d]*,\6 GC<~2@5;iX[Qd\Y zJ uxd,pÊK<\E>g'K8^mJ?`YL>ׯ4,dz M.No-StD}`F4Pw &GXH= 7iLR5Qc5Wܡcn" zGC%!c+f5"ix0B{ΉX̗ <+O̾ꜟҺ唨Li,`" [ޝ4FN0:kk% G  B**_.ѕ=6٧J;ތިWm\c;L쒗: Q0 m3Uj[s8il"kxocv.Kء#nQ&ws v(pyF7,4S&WbY9dKZ*xͬ$}|:U0ZcC::D\`JEB=V82k ՁɄg%~*y p[wM9ZDm>&K*/y9AE/x-rMyNVb=e$v]O{CQrt;kӾb16)Q BbHJGB>PQ6` |w L,^>MѨ'ЪDP! P 5 v a0Y@dHg(Q,NG%Yy G1H /(_يC5 l6 }1 ' ' ' W% U P k  щ  . $ > i% k? "Q ] '   y  N`*p qg\G$&|9ˀ $ i K!`=1c3ҤekVn[l.//d  , 'lqj=nEft}gT\9GV8-sH :#nl'=QT8˞mqq0'3T(? ٦bW>Yl + *i,(,џ<;}w2Kĺjm]Vy)7P5T:;vũӷ C) $ A VJ3*5*`$n X# !pi2}mD k>2TS܄ܘ|*}؈:׿bُz4ާtHw8j#zcI﹝v 6MU隚LJY묢lȺzVhhQlXuP/R7 iR~~!5/ey$bc//  e6%Uh7 @d. !F;~ki>Q'9KR8x(#h1FUx:2o~l  {08^+*wL#wh 6 `2Imz \ L=  bQN MPMhjj5 @ Q Wm | S ; T ` h [ : "Yh}URC#)$ *, T < ? | J & _ ˓ W X *( */  %gEAJau" KH|/&UEa H{ 4,^  ?X>YG`"3Mxo!x.;]W M3 )ΟQS=NJ@3S6ibK3U_ 'R=칧쳫a/ԆKeq` ;m@ǔ_wY&ᔏ;䐦ܹ^Zr7~iC$1l]$ lc}o$``**e% ;нW{FuWlH.-NT1r'J6Wۺ}8Pq _}<qRU݂-vƭe=ᅉp ⹝UዼAf<kZc9ܦ=3P`L*ަlYޥb xV!ya=[Uv %#Alḭ"0۪޽XU0.ZgXi`Q),TZ]<,v"Aζ^ KuFse/DHj0}=gFZ/Xs%jGƛIW&UqY \f&{vl%4^a?7n}p+$+ UR PMp4 * *AT{<(^x8˄R>B 1'Du<+Bv"$d&p(5)=+(9*|,B7*Ŋ,S)ߺ+.'eT*&(#.&p"$ x#ҋ SB#!Dh$3$/&g';*+-G6.0~0;3\1Z41k4(1Û3\/2m- 0"+՝-(8++h&($g+'1#$y&>y$&%>''.M)(y*Y)U+V)8+[(<&*uq&&(H#\%t C"&f[>$+ KV6\uLdK6oSuv;Cd  _u Zged^Wf}/{"MxC"x&7-Fquu/9# ; =+ _y _b)Yڊr9mכ<y=z7ͼltKN@/UM =Xz8UP `{FRU'B;⁏,IXjއvީz:ݭݭZ-"ݧ+ݱl7 qI#JLp,W?-4"Y[%D!H 뗊R*G7v:pH"⁌ï߇`p`|vIihrE-P7?kOۑݍ k-㦓eT*vkqr7$qM7k9kh34}/0ͩ,&."+,,*aW,+,v+;-Fy+,*\8,1)y*')%&ߺ#ĵ$!"#( u!](P W e !X"L6#;$(&w((g)w%+8c,g-.%./a.h/,:-)*!%&e/!!ϔYΎ DvvR ( `P*J%@h^{7̮WG+O;# NF^ 1q (L?:}Sg4@Ք9+;h(Wt~1nAgCG 3~$<븍,KPl.T"3 dMs2TeFK`Ԃߝ eGdߟi-9Of .9硔J%w)*&bM5HC~f m嶸=.Lbt.yQC"fgR"a:oTCԼVў7ѡRԊխ 0ҬUCפib{zsFpX$ I)h%Eb7 *""x9c}.bHJ5<#hG|GꈙꗖEDWKPhvޑMpܵ(IIikءfޔ{bF۴_6?۵ޑJZH9Q7mp[B|/[ FW_o.VI9Ύat9ɼᆨpLN1޳=5ۯjٌr˼) Aԅ@+5Ղ&Aٗ:$z~1kG7q9#}K1죺^^3clGȘS.$vY7\yaE* > 
  • _YRR >ܓ''(IHZ'{sHSvnRX%z jhz 8[  y . !^} NubT N  @ R Dc 27 2 MO<\[-F%x~Ppu6gkXC|si&t.!1A빨ecR캾#@TN L}fV5j#!^,]m%w|si-XU49|lu ;! 4d ~ _H f )o&  y< C  Q $ d ` k 9 L >58 :kQeXel·l0Zlr={Lt[牤G(o]`>JAAH"j3d Gy ,m ˜m5VPo 8+}.qL- #>FK UCH ! Us YM~K  oT )0'k)sH\Rk>@Rt4zlT1|˽|b}ZCj:wb4j 'Ka'䛂b+WvvAm겥7 e0'$k&Y aU _\9 *v@sfnS(O6By*RY]$j[ŇQSoW'?m["/M!z oBt&U :l'* K < w 9=$!&2*_%nhL)$zȂ5,tu-#_0 yv W Xz I b  T n J +a nh W7gH/CCq4SZOUX RJBXcV,U#D.#)ټ2cE&AohLhR}593uXyG _;a ڗ "} ne * 1 ey Xq;AeQ ;$1 ל qZcQ&  K'(K Ȃ 3,7 =G (,=C F<=@jg_H@wS)vZEŢ톒L:dh{mRSa<(j $8zR3Ԩp/&^nl z k_JXZ%8o1K-s< $lƺrsD%[ _ f-)Ku7=~S ٹs}=UU~[&|g*qA.tzPU}m6#'Fp7 MT-SHOwl|7qw3vc]gε<8-^dO{˶;0bVf  J+X-S EMq  ,V%qt C3 ,:XV #2Offaao1%-TA SZ1NN-$~`8(*vW Nf ee b2w`tT ZW-=?Z+,6,"Gzi>wF w 3/ty  ( w[ z I C3 b]' N0 O} 0\ IC"h І } W |[ @~0 %k5  nf * l)'s~|xhv"duAI\[! NJxP-C J{Yz/Ha )Oa` `"R5K+[&V3ZJ!?eD@ T= 4 } jCk W UI '  =h 1] d B X: d;G RtsH %: 1P qb pyS@ƙ̣Q<-n Gb`9N? &l arYW1 <-F M= OyB~5J$  - jq o8i4? RI}M  ˹![ -$]f\}v@De8rm~ۭHyqd[&fR|s>K aDPyR eH"A$R>(g@}>,x{4[ AwlZvCLA: .e  ur< KC /vS Q  Zs_ SPo?+M]Qk Ty1l/.ȏ _] = s 'xDv tXd\4qzmpTFfxQ= |$2WL\G^ \ KWS @2v#$R G~? <#}c!.c`NTWB,ȇ6?&Ck k V!8"âG$%$R3*#]w`B{K]G_ @ 4k q K }>  ) _ P @8A {q Ew ßR)e!PlY][n`L1 3?@,Y#i|J݇3֊)>sY;U8>#k2ߴFZ1m Q Yj t/Xz fk`J50 ifD'1B  {`3Dϻ{j.+[GuiH wxGh+5{MANu-/#܏ uS * S1'43+mkv}(u [ { t) 1C:JO ~Aݿ6HEv* aXv(qMcY W-+4d2*8JZy$%hVW W0踑uvR }w>dahC(7}uxs ER 툱0R*c%u0٭]?Xل fIlPW$Dg2Oan S m ^` , j; >k ;*f HS q; - }!, h ." C  =M,!CE$j˻ A8p9p L"g]*PgV>k/_- X,]S,6,`C4] Ek(τ9  o SL bU e"G ?B4,Dܕ^5xe<yU [ e g9m  6Y յǤ nQ S~* ٬\ ّ ` Q  dRF΋5$]%o @ %N VAe $(><6 Wd$ɐ \ /O>yh,ýf@ Ofx Uq}Nv_pp^` 8 J B `* !r < QO]l2@g dh,pyV!uRm;;&t[Fs;(%]꼰q4VqGKqrȯ6#aa9YǷ ʁrFc>s~1J ]0G  Lrr v y f>[Caŕ\ [ # 8x Z c } P c6 @[vGZ.G3J28l gF:0Bpծ#6p5B+}t 9SNe_)v-0`sb>Fr\ɠ}{_vBwqY{fw}qvx!"cxޙG=P-̪\.M/Dh2:i 6 v_VIBm@}`ߛ e3qk7 vj  aި od5 4O R7 E R =Vj W$m huer+W-N&Ixr9j7CRB% m"믳i3Ib'y/f#b{H ]=ɔIyJcb0Aoe$}i\ Yg5 GG.  q D M%_ U ,3aL>g vR6`XI}!"J%u3 @F @B )9 Tx, f{  %I /! H DV3p8> .UuĴ-hyYSw]b9љJys\Qv3>.pfO%pGEL jim   . q- Qb dn y 7a N IB:Fo%o\! w dHOe4O'NpU HS% I h GdΑ!2BW+r\l&G=s3gywg3lB% 5csar ѿ쒡wIs># dTz _(4W+ 69 %q!#OaxCAHQz4Q9w { 6= ~D h^ }MTNAڥ/0bdvA *XJ? ϏOEg!In5olxa+ d|xM >n3umG-덦3Y.~꒳SB9| ' $Bx2P4vQS};4bG9FrB$ ,R @NEF  Vm.I*jSVmo*1 &-o?>9AkL 9 _ ^ a O[||#Mh>F̲$z 8qu[Os-#qU Zk> OH 9 N eGعw Mېkd/1K- TX K =A  6z. %J S" _]t O B >vU  I !^ ČM r = FN aT ! sF ~ w BvgRR.-dm4I<2f0|phe;OyPuGo̐XoE:AVɦUN_)N # 9 EA ) 0> ;jLG* += ` Tt  w $ .Htm^Ey}y0ɏ sB i>y\-x:Jn2N s rpxNNJ}G [N:>`w> cM0rht}.g5|%P).[|= 5 J ! :T u5y $$y27 ghN8C]iv n (&2 `1G-eޥ_z%J04 pe4_U(&!~CEaDZ/'JEFd_L2x|("]"Kfyi$b>>` _y)v -g.|.#Ij 4V;05#i_pv`Mn#KJ 1ma! B& lγ < S n ֳ P q,˴ t Ml x ` X ǿHH / % r)) /c9y#C%8dy9ȡiALSrn֞ʬBX@ an CW͉* 9g @ :} t  % WcJ ٗ _L } GRg VfF{8/ ^ F)z F J |DYI<;a1{=O.}.Q@" Szn(X JDzF-g(z%q@ &~;>tY8{/aq<JfZqj) P T "o(AV!xr{zBP7 j Z;i  DY %w C[ O NGpΨ[ d } Z eE e7 I  y@ +LN- 4y`'U1 \^_HYOZ2D"Ħ$p7,]<5:T TC70MbO; 8] 0\4U"V\_- U Հ wPj 1@ { s@ IV\u[ɶuC87! &Z~ C2[<@+ϭ\P1qyҽ&p)IW='=PMnJ?F$]w 8H-\1C=lPq|' x Ev0JIP.ԏg*lu-Dq}O9'1AxpZ9K1&Z ]AʂoQW,^t$B]`u   8.PiZVGU s e.*),H gCSt7% r  >= '{) ] ,DVTijP+;.^#(> Ҿj-q!b.̧gmm  JYd8h4W0W ]80 ?/"" NfV  {7R'o1 c .$s99B_BT30_|`JБ  'b)L$  . 8 YyG WgjX8 ߴ/21 =XbԸ(:Qx\u#Q}b4 %K{QO+u#m.mW|G6[S,=2r#&w K *N@R,MZJu Ua %}c?]K>VHL);Fo@4ܬH= $rdmWKJ.QGstKPZ9#8 _y BtP س Bf] +Zn4jsCkW=W31X:1N{ J 7R sh }z W:_ ;U6* FIdh{1GORL;5)0!VESpfzE'4Ŵdx%¦i"OfcQvfnGx4=Ax|1sJ6(=+pyΆ4/Nn"ӣx[ C:yeF /˨8I83[fa03K06Q]7_r5)aJ(H==77KEVPO}z<q zuwCU5ߐcs ON W K % HLJV;^qp+tA@r9QS:w9}o9l~ Yy MM, R R0LQEάqT13ZU1p^RDܨsM2;  T ;) "q m 4 G # 8#  ^Ç bh'? ,)"<mrOnJ9 ynp` QBQJN9,O.ULbzV+*[e|T S0h*lQˠ-[""M[`e `ڗ `  |^SKyq\b3&  1I S<Y D. ^ hhI q _U [q: Rr M!fm ~ G ^  [B q˫jh * I.>Msi o}04_~=xf1b) 6~Uԓ'elYhBn3HF/Rtr%\n'ۅ&B?.4:OYd"5/`U A0 /#"W) aN9 A^S m/0  HDW D 1 4m=M)W3.O beC j 3:.ZvZXlhvu`KǪ*CIg!풌/f+aӱ8u: HlS T9RѺ5iSi_&A*-#tR{Mk[R`ݒiiv ߕz7l'nNX|h n:{*TCuvv@ b$7j/n@J {u,! m}t+{ _}gsf:͋ u ` `G~!)i<K:2]xc3PS.]M(e^n'x4*&R?jahmruGTHM$Y0u;Jj"mBE=$ ?D.[."b-ai0V%]c|1<{ wv V\ j gt [s w e  .i xsx<c T=! DNuABi:,4J:3t_[l+L`P_#hd|V9qUd( fzLp08Z8*o9v}m@l+4/( GQjx+or {Y/NG4:C[i+R>DJ;*M2$\4 7+D}k&`HPZ1T=9~(0V?SLEp\v 8$|%PlFqV x} VH4gػ$6S JC[^rAz|.ف5 ,5ݳ,0i|Q<,3EAHm5ndjF!65큡L{8u饉#_)q꯼/xvkg0a[s3@;#3/ Gk91ek5FIw^j=bwƥpN295GCQ\Wfo<_f pUG տ{P dY ̧ c [ ,S R lrl U s   S: OE   3= :eW>s` + Pz)  c$:wf v $g7 !Z1  oe, j p]' ow !@ V 5 "N k  L q  V -= e 0 r|q   A] ?< H ie 7L bnF<&WzzJj oK&(c ? x>W`Փt;gpR?7d?~QdlpsHY  O?x-L Ean3(-=Hs̳+.Ш^$u 5.pO2xڣ,$ 1,2d|L{t%3]cSgN^LPr4;>7uV3^#+@Ao/}kb$#ո cs\GN=G} '@%u {~LZH*zO>z1Ħ9l/2nVY_I$W{7TΞ-4ځK ipV`j" {fy_vu:/Pu3wvyKbI^*$Fz+W4jIü6RQ8ư ?j5Z=Etn!KX1xD8*֛2GmmG7=ԦfY:[OSJ9ɲC7s0go$ #87$EK@6XQ[-, Ro<hti%G0eIy(z:[w&mz{%J;&t%Rّm|f4/2+r` t [! z s9 JJ_ h L- Y I U  OY }v F v  b 2 Av6HTj |   d GR H/+{h{Rd =n<, b/ę891=@ˋůUAyYDX=|MM' o q}!'nYW]sOUwz/ $1xwD"#UUܙ3 !V ,& Eo @ s1% T wv 0 K ] *XO'$|\drKs/AWx[' hupvZnXLE-t/ZiX7fy_ oDb}_"/p6tEL&+T2:o&z2RbhB BL(=!\DUF_46_D 8 CVccDj-R"R!"m-jDB,}CiK3b>p1JC>lz+K7z c k9kRTKE Hy!h֥lRH֮IKTPT~xAD<$CO:J0̲4[Q6+$zCl6`Ș | gbnGyblں&Rz5RN&KfD*?&9%҅{zl j+3 5 4ù _ `S  &b `{ V ? M 3 ] NN . Cz  B F ӓ Yu~ ,"ZslRG4T+! }H@5U M  |E2GGuS+ lf +*~cwyF ^#r:sM!:OX> FB6BnU }GS+T w@cek( D Nݏ S ^qzȅ=}ئ2DB*u% @Z|=&X>je j4R!'Z$ijmmC_n"V5e Q*6x N2> bQ tyO%[+UvR ]|  , dB;t ħ  u ] 5_ Y[k R& KfkeX, gf=f '. j] Aryďۄ5H"ܽ:><Z@bx"1L=+`>J{?cr18glO`Ltk$hD PdE?M hρ;_N jf0K`3X4 . $`@NhYBFVu4}g3"D+g } (c  [. R2U ?Q;5a?l0xH/Tz4Aorӫ&+>/0WdJ8uw> 0+Z'bh,< 8Kt]lUH]Mx-jT^Y^Yiy@t4=x_-a  )=/  K U?`bU  aou  Ϸf "J = f }fT # D÷ H>ItY cjF!Ph_@qmv72$%?vr7Pm%﫲5}C ~N+8*z\ έ^C WpjX9jr59&k5푢] ~#APKyR_T 09Ry :#p. w2դ>d2wNϛ֘o\L )({Q}+3nh|r"8i[Nzoi#iNs\(<6h#$\+BkyFF}8$e+~ S \% QbN d<:Y;jԖv6Tn u r < )$ X X66WiEh+d 4O^ } *Y 'v  ּ(|`s#X Si7wadz*o7 + Ն 5`  k iw 3 u ˳ ʕ J ו ) z V 8@|~b“>Ww[Ь6o^|XЀJEfLȧ=”{YDq{yLZII`loʗ9J{`"hKNq0FFr~}aY'_?9a\g.a^.hNgE|PgT"8\$7l%14FiY*\OB%0D{n.i Җ_h5_,pLwӞ3}QewZ9IFHOywR#D_w}AxV6L/  ePK-y1vrBG!s e= +OP@Q|"=C5+LɞYOL̈}y#D0a5@hpC?-L,MVC2S{ a1-S`j 5 kFV 6O1nC6i|NP6d< 23KR;ygGv:.oky= \: A7TQ\  1mb Y&LF  < ~ a bZ ek# E6< :~   \ v ^| q 0 6C p w  n O , 8  r ȑ M J l . XQg>j-rrU7lyAYA{{Ng5pmn>AD1QM5v}^x\>q98HH~A7H6fK!84ֈfAfZ5E!/1ўH iݮ_y[|h;e%^"0tF<P&u#3ճZ|{maO )!roV]D8CTƜ:F!"ԙ3/,_9{&0ˡV.QE()Kp+Mkȭ'@5āIvZ%zIO$(%&QE ) G@>E]OV&H4,MOo,Sk2n@^`kSq1 ug5(w'7KΑ-?8i^@eSS($\/;!bP$X'2 *C$qE쏸fqGk\E' qq !tz|O_)^n1X*|6. %Yrii@Ag\|Sob[pJK.*)n]ߦ  ` 90?hU3@ud),7Y<KB_rAzQ<"POau`ӶõIi|D&vغf)}vx6Q'W;?SoL%vooTQ~\r 5Ҭ1$]l*kۥ ZvY!.WiV4gPq 6g"\aTR;[Hy}Yo vE+&Yy;8$iS-}zHk|vr\xU Sq~zC~lgqSF; >,; eda} xSf#/ (? hmwtwt3 K!é/fY _Qsb!-y%}{} {W^:F91BBXo[XMlͻ ~B  y7x? %rJ`k WdW^ `c2 [ c |"( _ a 6\K W xae5hS%x  >* JT OO - 1- $J *-f R ]T _  _0   J ۓ !M(c <+ wTDb %A1n:FB4XR JhSd1D6ue_^r$#qh779&ضsbif7 d &(Gpا'L+½q+(5dAQ4H)7qAhK[_ 8uO (RIFoy$S ,;ef,K3<~rE< `ǧU: XDb#gϊ$5J ,EcoT[N-ܴw k  U l Yord0| Bwp6X#O%!!=S #d`'(!syB.:W1tl] VZ7do/!"9SL7K9ꆍg8 ͏/7 z_|:tD?RɃ@,;'JbJ7VwN9d_+`*:&G8 zSkdh %0\C[GI|' vn}9XA\ Dj=B>9zc%v"\e3C=|BPjϝcxn^yg2 kY0R ^ X  u ptz v r%'u0i /i {6E 6zWrVl1e0gEvC^I_X)NXUS `A;IpIۮT f j   N  _% !. Enu$m?RL [odm Sk0(W^ji]S>f޸ˁ|t \O 8=]s=9C0YG^hjiL{ݒnHUMrߘ- :w N nh2 n tJ \^=sؗ\ `t3Rm-m;&K& -bWDS 8fGc` (4q.TJQa+mDstq{w%GXD[ϣ}nc)߃pTYHIqS$[%}h ? {&T:-P>p__,9Z"a_Y @2Kz9EyTpM[0}@7lW_9[XZNeڐ_xY&s[I>U4l?LuIZJ{ @H }uOwP<1pHx(@U=uKfFQpj`+2~WOUfb-q0=LZ ֦WhQ.2EPDij;|@z9.GvvzPpޞJ;}{) @A "Tv +WJ(jL)|>5͜8Esh},"/%0F JR ; " .0 s 1 $ ICp (P Yg ȋ;7$t q }R' %?- =xeR4M^|d?B|/} 6: [ s X\   Y 2V + D, q'A 3 1TNs j[A Zc̲q+rD)\\݉-9~DL#o1?N_)7A>Rjv$ur=ؐ\>L>F"PVBU5]:DA:\2&,69O5 ȉ}Bmmb]ƪI?y// \ L9T=xJP=l%"nN)Rl*sR.[/6BV2ςa{^^G-DJu3_8\F^G2M+ `{Ohҗ!9'R0w_U{~qXr?<8 ZKLD(?EnnKD(T99b `GPOOHU0 \Z`bcO]׿n|O !'*n 5;ׄ ًJ[%@;g/Qױ9j.;̵A 2* )G&6R MKAJ\=Z*Q9n\TP}wKXh|6a\m_Y2uaGS,0 dKp؂u| K! Au?{P(Km)VD0zzȎ|O2Y=^GP/=[ҽڌTix S  / ~z pV l Z `c RZXU {: v `p5=cWQ 2P Q b m5VӣhD9P7QxE`$3Fm5MJX/)u$V|0!jM )0sMn|J>Y,Z0,' {:FiYDtPbh B nf w "E V 9 X rs m N m S Ĭ ^ ȡ  "C x l G2%Y ' хe \} ] W ã+5Ѥ/6{?eLDRlתO>*\?@Q,!g4okt[ߢC5qKtwJ3VMIEݺnSv} ^j?fD\-o3\0<[6.WÓWjYe K#?jnAQ S ,D3'?zǮc`=q K"n *m7fgh hooؒ$R-T CXܫV`ZuTu7EwC=)B\(umE9PS>Q0q!|Ʀf~zmouO,^}OYpZbC;{ 1> s ֓ B!3 +".L4Dm$maUvZ>c(W&iQ`-yf _Wl{(= TcwHeLGBe&kXP)~i3қ,u3)nnTw\}m+P f 7:u 5 +uSP8ugxeޘb  bwL+.mk h Is8  r bcP ? k&; k Bqpo+~qmhnu6qzߋ88,T3x^$0&Etd Kt>b8`ڍKsc/lx MUa1,L}Tqm$- ɓpI g' h• >NF /x $ i AX!MCt?gl@( " R !9d e M n.JXw7AK]2*A#  ! QocfcgJbÑ^%]a*UStBCy 5(Xąl_-tN2A_oM +sܔ6wB3K^T|Tbb29'vo:gÏ X)mf*q:zomR!aX}iqa0%|w8Kj eUNM_ŋ\q-ލO1 {p! Ҥ6qj?dzU.|W}Qb.5`Z!'=BZ aton.ou.]>,ʋKlʗjEfz`$=oc11Ag^ 4aAFJixTXUNT6dx7)D &zEN׬:f#TY)zY{Ȭ!սK}T*6>7_'oQi6s-(UEcMOFqzHgyφn2*T7> !>G_ K : C L  Z s3y{>O^w/Qg { "S  Zq2 pd_  m Iz8 A c~ L H~o% 1 P}&B gby!2 1(_tk%Q06W[C@YcAmjoWL?Ee34:;=Kd˭'XͩSr}uA0e ~ hxvhr@VjlEPwWh҇y'h+IU%a(zF< F ԅ  +ӡ Jq(W.jSc"-]M-, h|]r(wGo ƞm|z=PJ? Pe -|/H}YZTimLoWla5r+ d c' H3 x#q Blg &s ~  B 0us Z& >} !o J^J a YU ! '/ @J0uB9R}LTW\729J 5[05W붸z r4$HTA7&u]햟Xӽz'-z n8bIs~ˌ[F Sp˗C06K?pI o#ghc/Rh{N>i~r}@ B +> W )it myk3~Ds|B Ct0Ӭ|=G!G]4ITҫC]i5$#)AlAT95,N֭e"`.Aѱ;8O}pGeG X.Lʤ"B¨;A[ ;dJm|t&Wv  ?ka[a_s!Lۓ024)*Uk_PJ! hUmO+I+Ara{Le.dK[hie82EQ^ Nn_sZY %[RC#_30M2:@9Q`,  ҈ 2u{!EehF d\fpQ"_el;YRs]fvj NYz8iA[Bx"E;4s7Rh_TlL2"WAqlU.E #N `()\NVpq{q6<Mw#> )3ǃ$HeU'́uUϗqW<]?tJuB{hsא ?WBӦ! y1GRTE;T`13mn?pF½7vH~~޳#E>]%#Mh  ]:G?]ZN r T fB ) Vv <  c/ . %7[ 9b U #  KR 0C O{#px?yc\ۖr eO"4 C @ԏ]{k83BlME/k]LckL[ ٥nͱ̎6tiRܲ 1&|{5#K'!trG 8)uOgH@q T d4  )V "Z U Sl u*WeYZ B }kw ]/Q#V0/ '?F; I&i8L=}^=(HQ6ϒ 9VfL{Smq/eHB0Ke@ ` &  g? ? P Mo <ת \ 3 /# ɷ) 8U%Q:vnrT]G,0R[vtu0(ޓ˩3w$@<0nAG16 (n`O7<x>:5,g7i%PkORl6T > ߴv T! Q ymQo ) `2 V< 4 S k7`z< 9\H  o +"n m°{hh¡x ߌDEp;+7l1c7 RgvA:ӄYW"wEvms3%Hkjn3͖#RB3-ә{ 2o~&΢3Д4yE%8W+r2vެNHZIM?#L0U6"8:CeckC!;1+9)-=8K+'U*0 2W_htVz [Ek nxHQ!4=]Y@YhC"^" k N # H q I3  - l U o O+S'] ً$A,*-qeL] "R\(K{)IGV P"P2yTdJ)1Ml3a*gr;i?|A `&@9, xHy vН a  `(}W:ہފV{RLb + F!]V Hv$ k h '>p#ao^SQ9! cDsRog%KI{VpG`#w`՝B's`5 OXh'b8J|=`yXY{*[4<2R3Sf,n 9Si/xUXgҢ$fH, R~ 4  "l% 57Y5 ;4i cL YC 8{xfȲWv-n6kO~agQжB"Ǡ!ְ՚8xf#1& $!9TDJE <%Aev$8T;0!*lK'sY`z>s ,S( )qe- V H,*Ò=#8/E]]?IQU&/9[C?Q@s zF) Qm - Tl,qjixyJ6DkY^tq8{ZVSY 'i0vj|N?O !T.hISjد H#QÎ_*V9q{LxHk 34km;vݮ"]G-$1K gyBn (^nC 4[q  |>g E.4… o uO @ ,}a] p}70c3p:C\fsdWP] #0`Cqw2hH9J@G ?tJ\Mbz@.=7'|C )o;,u#?GN]9~ X$9=i^\{"Ber.jA\ɢ12(:< -`"4|W&@ܻmQdOam60 )TzWO)8m4  zG;d߮S:2/}UHcVPlZDۖd/u A]  ܝN/,y9:l:O27,n D,I\XGIMVsFZWiXQT+@TA8l6c21Rc=-+\8[:Up?7I7EjEl g@= - ru{i !۝   TO qY  97 =R 7 *x #  . n Tn  M ~ jK Q Km x) `# =s* k )e ;3 J |\ S O@ ѣ ?9{ u<ˋmG76{SS5V)au9V`]_%*] *_#c^.7v3cm"w',rDEq' ]A US#m )K <c \ @%gMgv&2VN`bQ5J  X' T FH s h= y Lrm^ci@֒x&DAsJx rxZݢK2."Z,[] -Y Va%Yg,kU<S1 X30 307}Es0]ׅ*}%I[[k;'hS%] QA7\p `\U jK5s'Sϐ>A֝*R]FDY|%#2^\J_~h[m~G~*~(wLX5MUTi&ۗ]Hq!hZ(^1 3HC27auY|Aw~NMBcikSHxC=6Z&#FLXzg(C6d2ܧ0 ^ q mJ ' g K 5 8 g  n2wNoO~ ','k UEU3Ts7X4,X_%R' e=&~;ffQT^\}zL${JoKMv@x @S,p0XUܔft3g8ez5; & D279dUfZ5FgBۦ } *y  N Qm 9bo r(_ 0 ff  #V* n - %D *B @ H B eN0wH(9A?nz7"Sd;Q!)sokVC/D"QA}%/~ v+z2>^ zv`.M VGy ?s--VqME # k t g u O _  X ` & { D50k ܒ!My#mgS'n#(%!W/yșpeLrVb|*@•*0<%Sn_Ǥ2j; xPC%JB5B1Xt-7 4M[8iHRV?Kc` ?9Iˌ[Tpt?1`JCufQ/Ԓ hvk_h 5=E}CJ%ZPi3g?RXf͘ϴ| 0=)Ӫ[BAa%@S Vt>nVW:<`%=6yuy[jI@ 2:7«{.uP$~tx "O9ۿ9TeJ8 M " sp283^nCo7f;qN+=?,b:EzSiP<B%}L. PZ>o_~fh!p)JQxX"PS`._>uIQv<Hs5 g+ WDخ !& rT Q (  &(&&[4I@*h :'8 L^ _! 8 d& 9k = 4 <=S Q  ) 4m $ ? + Ŝ > $ _? G9IRheF=I̶`=tD$^Y@*'\10&FZM$-V6<{b B57eVj3-B &82r@k7u$ ̫ʡ rFhS:_667f5"%5WDymZ61k6%Ur4qv.`5.K!*^^ZۜƙB0ME$A5.,c /SNOvSȳjg"`PsHVrMaGI}1"|e^,oPK?8ӄ5:TzY,ߧt9|\VmU3K? 1KuPz2HGfBF d bL tƹ &?4 ,~ 7 w?e>% - l   [ ̡ k  E & $ AIS Y jT ^H !X ! - E {," Yc n {  qX |vC+l' V7Vz uʿʵ/^c Ѝ9&о46Z7)/`!>7:Dp1mOp}ot177p$F:Ґ$n]ryTehݦ.~1 3X&:(I> `,4CJ:;WxzOe;i{\ Ex9,GBT/^XoO#'mh'BKB" M.w?uj=в4!X(7Ni?BJ]=K$kaag1vW^|-iؔ*udKX1*`^xUJ.V6 P_c]+U4 U߼AdOV+NII',dL\sLbf]n xX4]c^Ak/J35:eK[p`VAqjbEHur#Tjb'[\oU1(sFNn u !k?Q\Mߕy zHBfIo^)j67zb7\mvQ=z>-3&ǎp< z!CJ.G=LzTxdYr-ؽ`~=e |"Hg%W߂I*U10ih dJ v&-1"$.)Mnj 9X/f 8?{  / 2  3 $ j #  'mhz zH b BN Z  j |  V% p  ~r/Q  {C{aV3o~jhC:P7'u R,1ɒ$,,7=o|)0s]B[(bsnibU*,qZv֘X4y=;K?q =^0CI+d7-@ tC<$_`C2*lUQ "2mwkeS!|O.\6 ]ߓ,J+y{#_jImXf-W}wP)L /\#{uvb gv]moxf;9O1'[5,r1ZџZH~w"9@X%sX{ Va2ƴ}\5 W_lcqt L <`yb% d^rU#vR&W `n;MT$7Cu :cJ?J$8 i!tX3wNηrN"Ppn~=ڊdA 69aX%Zm(sl1A 276 *;|֛SxDۨM !k"Ωbce%DE[Ҥ"",Ɉ}Z ;ckV2^ C0KԚ8_.Fw2ed5/:MsBY\ 'aD [Qx}"Iv*e%%X8');  6 ) wTL rg S / BU":qIp62E=0-18,xh)3$ IiNxRp^pSqsrGJ\CQPT=Fَ!EEW[q/'@PaKOͅH.\ Y2+MJx(lGL34p7k U 9` f 8 R&JKb~( g( OP! ֥ J8 : | % ɑ   Ηխj1+qi@#CO8ޕ3G'iT6O4?y E+0{Q|mX5P-CωW?+M&1QFQ{uBK:@!/cqx=?#}-a[xSDfz iTQO1Di X<"ǩdkNWdn#1QHʈ5}eQYh9!d*ҡb.(%4`%>G>ywFKmDå ^koQUo <} (Gm2YW:O|PzXAcJqL 2F&;2&_7fhW7@ۨK2c|fP'!qh(0Q{ŧ]u5t!Ct #|0!ow#bQGF_k` l߃#*(tAWl _ 2{ x O+ \ ^ W= 6  3=l J) l( k7< µ . B" aR [ i%a:"b(;~T3P c5 *sY  /8;hvTPRMC9t!~v<@$";2D]EhB t8st   B  MKPy y I *[8Yr,5f L/+&2(ƋRHv< <5*2Wo#q$XOp7ʕFk3A7r1ѺRbtV jb0Qx)WCu(s5G1XTB6~RYKx%D hN0l2 4s~~=&{-r+`7Rct ~TftOq .GfL (Xx^Xb{x@oˋ>H~B%gh%*Zk 5(P2VUoւfh=Kk?ZUy)@Pw3(z%=bVBA Ń$X-p:uKFc^0Y[k",753Gj $PAhcg!ynb,@T~_3j'.DC @@הӐ-[V2 6!Gk"d)VHh4b?>ixys^s ]Pn,;zD0Gٵ E |@  ssB}-n ;^Tn/(ee>>L)ry) ?5s ֟ X x a ~3_@ hGbnX'f:k&T_o_e_0"/;]η>{#FJԠ | ZGRnI _goGfoi$+; B0ٸ8I}zOAg!cIzw= ]izr~y zie)Y#xfWR z3 kF opr 'H OximYs2sIQF Ets] a\Nsrq0 3PxQ/ؔK0NEEoo- ԜZӬarM})  `DݐHDHaHQдK4Cek,\AU'C\KJ2S_ ` -1 '}"#z*N`AflX8%@"& g,9KUzM'ucs lJoHGy9XA<H&#s15304(UnPč*Cq/B=puHhl\՛Bk:wy '#AKwAVhƭcjjN.prnciM $[t>K{g\b+3 `<{K@s2M0%V$@5A5%7| 11«LB 3A^/>/V\`R(+ ~#RNgT~Ћ*`it=SOMOZJt[^9Rj!CԙJ,&Nk3Ӎ(Uި 2o%$s/u\;h͒ϥVc`M BfhIJZ#qm"qj O;K;<(hu?š2B6d6'_{ha4%%.!} ;Yˋ]pa[9.;L?0<H4 `5v>qɉ);tyXfeE ,> QK5R7Cg9<)Ul_n7`H^6tk!c2Q?i?<ےj6%O.G@&$RjI'(5~rʦ?ph}&#ptRJ~8m!mPiYUE9 }kycS?1 o 'K E`تP=9-cdYa!d|, ,dS(-cEQ׫)\zsKmS0v&*-;pQIpw=>YW?D+#d Į&dyuPsG E~8H wbTW?o:S>./TMA=7oizdыUt6ר OKA]χQ ޢ/I`^e )+?wR*fV[?@ -E"*&>-݆F۪pLJ-C1sh{$ˑ!67~E t Su{ZGfK=wߣ:JY(KOsa< !\JkP)SA6PxH'. v :&  G  y#vQ1Q2IV.i^\0vG2VVP/lR l#qT:++k/8B6vUpDkTPk+O]n9=#;"NRu0&}"k)M)vw"@&yrNqvnV`RX~jxNxf}N3:^,Nk,  d Z |Ҳx&#:I" cT/k2cllDVRl~V(%*VALi5& 1oTA7q Y9DdP-?{K!L[^qhPx`U 71E \K Б6[\;j!+xvp$G6uJ #yK $ ? ) 4 ' ;O  H w f"v -c {2ORVccVs:P`!S7$sCvYmtodZ8SG]GTtH)V$dкTm҈d= Б%lKrJĈ$~Cbyg9!kG [:WE+Sڂ 3.%"@,y r}0gM_I _IhDv6os]sT+A]qTs8gy\&|jm|)AA';3e"W;;{J@У|Wo!f c)Dj@pev%1ijn;8 w&l qI['?7AÆiG_wTA4rw|<)!!i  5bi_ /&qyG1;]`H{0 HYnJzfRdv ĊI?=Xr5j^xw>\$ StS3UwLC~ M#aV=US j1^AW+ .f(1:Xq;0[g8lMHKռsqqlߣ9S  PECAõխ} |05I?(m2d3<v/?\qi}^;ݶ:L9>@@kH'1fs.]Y5L,khSz2}kAZotPYFӏ|$)#B$94RN`(o$G>YhP/m`])O3H`S*I  V b3!XF_=b͠X3X_ [^GTrE>Sj],[z[T?Ȯ%BU'S=l J]۲mґV)rx9djkȓ ,z(.X6m~&60oT:X `P+5ʽՓ%T7&4 `"g :N"B:5uz[8bjqz-^)!)hNv"L"2X0Q[[ٰ-l=*M2-xh'hjWKP9:li %Eh&KiG*OOX,O7|ikD$ Z$PaMb`ZdGtENr:\px#5R)4SZ0*) U WK( Þ(!GWDTC bg4=.$p1Ier4|NdžvKh֒ϛS__L&D@7$7qw>pmz;S2k!Pf6>U!O*G2ٓ2+ o'c9k8Se1Q^هJHg X 8y " w ?   XX\C{9$lI5`MKsk}~dKd :/GaV ]t4#Z\d7MqJCpM`0=d9vS.suӾB$#TzP.ͦǬ6/7 C!9>_{n1Bo`UhJzw5U@2@2C}zJZIGTcwwh@b Y|B  C |3*-9Tvk0/c\s2 P˦( e`TvM:xn)Vw{;?f|Rg)27fuvBkhN1- 1 Šl8M eYnBѧV+00P 7%e2 2?c@4j ;Vy  y#sDw''] 5r`;@ |SC>l*U +nFaGvuKOSD%#*@z+YuM4sLygd:\2kZ%rOp_N`~wpd8pQMb n-E2uM'm["}I:omft  /Ҧ '~' RT` a< R bL]Sfj.} \t]9E 82 Ub Su V<Pa%ek o&)Sk c ejP|Rfu7e[JRm=O^HsLʭjKE,,W:5oHK[6oz8oiߛwxG̑b_.MEgrTxh?3 a@O}jH m!5nTol2/[ 4+ E$!@m 8ЧL06:zQ39:/&|jx! 7h?[xDfk~pOIbZz^2O!,"Ks; 4nr Z;P=+t88/Boidx9~ZAp0C(m;1X*1rbZ7j .$?hQflz[D(g5&~>1}..esR^|Fn*K5hiM9K= >f1W1_!mXO[c߫cFa%]947]f;Z(Lv=pc0 Z"UY"6$1EV=C W  Muh uWz57{ TvzB(BhU`!!]H  S NQ~  `B <  $% C߲2t7]j7VB K\I+{.D1ɾnl,_xd,G\Ymiޫp[h `(p#s֡9V[E_7(z Kjiָ'`/T,3JVj0߻t ^j~x|nMZ^@e jR%hmQ` ˠ?G7jd+Az 4TYqs9ߕaH=TKoKv4cAK~Jd JxBX@A@uȪ WIm OwŘkCџ+;՝ac5 |kRnGДC7cmJhyþ58.vrcsg1ekcSAT?V(Bn.vc Qz\ {G$&0dHa,hO_ ~v.u:ֵG zpQ3  T)| S1?jgO}:1f~s&R4ͥɓ9J74͑ˁ5qŃuf2Z^kPDjq/Q vAj&b$(ʆ7p@+RWkGV8dyh6K\e'd^4XSfvO!lBkzu)N++Hgi-q"> cQ`,T[&YyP* jjh6cZj'=>d)*Iu>lthkRz M0ܫ&5L˃b Έk]=|+F<g9:&%N4aԝC u-$Vu 1 RI O7 ڼm a Frc3iJC@N\{")Q6үdm%/-ߺNbCO8lcg_9] hTGI&K}wyJ  B]6fi`wP"7VP_QELA{: C{Y1a gQC,p*?%t V H& /s0fR$jdb8!l* y@eZ\d&V%Wmq=^w(_eFP'SU+Y\.L. PK| 5Yn!(dXʀL_t/SD![&;& ~cSJUgi> vdd&E+_"k#Bi+-X 7gn\"BVB*%X/Hf A|YFe|_ H.=  D y L g ,Mv`$I=b\VfU{9X0]F%uL7F y!a77]5YEXz)9DY#?0Usj1ijT k7?mGDDs\ K̑{d-?' ]bTE=lve$w.uL*Fnwzj$f׮ѧ7Fb`^oC}9f@'|lJ "p}^#WN-'c/цFk  OeYMLpd&S!!TDg. 'p"$}Xg#< x)?4xZiw@33hx.OL\?]~FϨpyV orݡ88s [.ٞ)O?D _(ojf:٨0a֗*#9v;2U 7 l gM \PT *)؈P 9 5 @ )8 O{ f" z / n $i TPs " $|:?-V]\-W@w,@DUߚ(6A l0*;BN5.\;@qQHZ6i3. wYm|ToO:q"]L4d?3tn(r ou@SK/32U4# _IDgCu*ձBF|i/)Fo^? 4Un Wcn78sJs Jxԧj(6]S;xxOh6 3<[:/-)Q:km[|kvoYHJ*)cЙba;: #9y*?5%$50 A;L]37eP3Iu=T@؈UV)8zn5:o]]/tKyK,$vA\)UXw[bI\fr6rY n=lRov]ƈ2/Ua!N*WabZsln w!ZT?(]q5 HuXmcZIs3&+P'Uj>B`"poOS +Gq,d9w]7c}ėdKx#E7T{Pǫsա9`uCM̃U=m&8z<TH[j) 7[WZ~ sAFNiMM6_jB`tp~= -VqUw/uZ)GU7.ݞTtvPG4e5.m?Eh66n_?0 nI e N ٤ d Y7 8 7 у; F- c  ^[. * m & @   " ;< $}-CyGa/2*STvL1h@tYB.H <Eyձ9eK#_xw߱E%Hvb|Lw*XhyIMhB%y_\jgi$ܦMP=[utc}k$!{*h1k UGeAX@LQ/9J`{tC%Fd"1A{Io&k*VeiI+\G 5[f}~n1Vac~B԰8bIoZn='!3Gz9ln Q)+c1zϲFeI$b_$K&5. uwCKla$sd)pc{5c"~^ظwims ԣ<>~2΢'bGz׉2Ex|&$ydg ?*Ri4GgTu(&)7@}Nz_>$V!;;\TAkZ!BGP:ũ)-gY!ʠvT#X7*<`$}nٷql.bn 8ed'boʹJfH E+_ E1ac ZB 9 1 Iu |1 L @` E yBlr-G x-W.{j/4ecv!)` Sqiķxr{EX٢Kr[qF‡m>DxK+; 4O<%GE z[BE)$J[a  *'ƀAlpy'{GJq5m55L0 _ 1Q  2 W i !  ;K Ĵ 1 $N +  A E \IMb`8%\pLF/N\@ݙr,, ^Xs=B >Q-56>C&Âu<,DT*RgBS$n3{olh*}y%$@yWt"[E&|ޫ+T#1u{Gb h^ ZA , '  _H |_ gOR -e+_єt8Ewz x o%&<`83!LgȩJl$(<`jm>X›w((5f{pIc(.M"-VTC,XQuztZG-mb2J%/4{t'5*HNY\\S enٲ~Gߋ7 a 2 "ρ "a83{8 F]>_S[+ۭb3weANю|N*"463E$l2v@HK),nȉH\%~O"t4$psWu wdcm0k8E_:7ECgF/19&#5K 14GIj۲\x$A+_ގސ ;dW $-b 8 Ȼ ( (^*ߗW-\(mlXQhpT#Bi  \/u)oEhw#,!K3 k3J 4lk*2rub+^&Y CdG30F(z9oP;AY9j ؕj_zCee'?[i d&=.ӯeuusUQnQ1!- :  d x s; 9F  7( B OWu,g$T@tfGf/Y[<!r..iD,~v(UF,Vo: F4=he<&c]~3T@sO?1LGXTޜ}&yOGJF{b"RN  ,Lnepx 5-7.rvj*fƚ9$JX^ Z cALfq%3h?h%Q[5t'Ay6/^B9+._j&b/)uSE2v$ 7|)^:Xfmdl$+e׃#(pN.i!~ƒ=\8\,0T8GF9k$ ҽ'M1fӞI B5?3IBnULLܯk+*26. !A,LN|l-#dQU9h~ QH[2a֢Ё.Sbn/SF@8PLJC=sQK1cd>.Q8o5'ѢY Y#w߳-UwR!6+K\KVQf OmNP)d ٸ 5E\ jk ! Μ/yZF gtWf!ZI h!}|]FD&v^kOz&&vIQsjhS{"SٟLz90-8 t4 l_N,Ykx!8Ƒ8zZ@ :@>z LPq rn d [" n nd: #r)D sM R   @ ;7 ?  H $ r O  s< n Z[ B\ H ah)cװRM.gJO0J7bz-6e=:{)$?q39[+\%EMD'0MsCf>$nώy7#3>c:9DuG"Wao6{`Go;cV#iRQN*WfaN~lR/!0b9_f@9C[aJG]!Cl>r =K8=q%%&CN`\}TgDw:+Qy5z) 2CoKOQuB,xo`C5L<.oy RDh;E28(C%}uL}Ok]Y}NZ@z(R5m:L8z|vc -k84Cer;p#bl`cNfOVw~PVK\=  a 6'Z9   w0 5v   R 5 6 ? l 7 { Ŷ qoeX>K3JH%('xK+=D3RZ#mfc|6*٥(!;M"-`SeE1g1Us* FA3I-])9V+8~1.< laϦN05:e(~ >HvjIbN![,4 M%~Kl.-˞~RJD@OXlNV[%}O |Ϯj}ezKSs<ڙb8*XTuodq>v{\Fŷ$BCLzoSlIuHa1 t9)[D[`q#¦UU%҅C[EB#ߺJ^7ߖ/5=Ͼ<7#U{fB"Pa]>@2#:r&7z[j[n@Uel!liO"|l5UBߵLZߏ3Ha{K*K\[9 N)[2f {3N߽'jd*L2Y )Ď~J=#[n4pF?n" G;_Qofco.e1j.> Hyk_ m `oG > ]k m 3&~pW<N-ݐ{-Qv4@7-K  Fc8=m\) Y9f|i}.(>Ce"GAOOk҂iN+ADyE6ܻK-w*Y:yfm+eig:%"J-e|6]Zw >~ǘ1D4,? 6MC q~ 1_t Ϩ  3 q ] N ' jZ gI #G 6E_G{^ nM]U`uCdqޅUk=@`j ;29~oB_+jN=_ \!e!&u4F JkQ\JBZ4]AjC9!3}8Q o&  -Y`yьx[ #+)YG# &{,0 [)- W 31VJxD@'2'N, #YCBaog_f - {BK`fa$"0Wc_:gN Exȇ޶z:ָ .Q|kezrbaJ2%$M-=SI`d |o] <+ Qufg7;a:Hg`\^Wϰ"SH!4G2p.e1. 0+,kYuֵ-&*{isNfX)iS&V]w# -pzv5K}63;{_YuAf 4ZzV$opV`n?qJ86M8o8Q9t]KvR 5VlJjO:{_4N Ee ( )2d e 0M_ fl]u!PCx[16|nu+w]lWK+?i2! X-]Yb(4AxP?&yٸ$S1G`{4]z0Rh.1I}\qWY|FDNkgioBukCa1] ϶'o ϟ h  *  O M6 9  B F6ӗCd3GE1E^6~_BfbmCץ E#Q>.&}-}\M8nZD&NqlAV7o{f|/'^d7 m6qvyOWlˌtFii S_ɕ5 B9U[e_Ic L,lJ t]P \2 CB _2x7q[1sE-%  V3%._ezB)6@/n4[=UV жt3&/#nr&(*v4xȩ0`[G(]yұu$"{,BRhkYסD=Ugp,+izo,EW+`|#CZ$vg$ `dY56z\*+wm2}Y"}/^Ib3q^: Gr/R {@lְgڭvW(dE[B<(D=In Ґ0K{0ˠiV|8 BNK&']o^ =&wӘ(pԘ{@+F!iRLM X4~D9ѧnngNՔWrTA^fKp w$c  @p-'S\F-8jI}̪7ziڻa<<7^.$=$_=kT:`|0YGǝ?fpTZ|W5Gb::Lh[ B2O@&rTNŭ)rI[&n\?j>5(q2;"\V5  "\ N W [%%  v 70 ( o u w3 Ψw ye˟,d]Q(#9z:&Q*2ʁBpZNh0aH<?N)*L :g9 If-Zhj8@^)^y?e!ERΆp]MBndv*]W+[-|l( r IsİMBO%Z{0Xz>C[>FD;K*i2sj):dQDA,ȯ7=wC|fF-fg]A; kE;/T loeh^h"q_~7Zú%Dt~<.IPl;LYfY>RVH(4mhY5Z.VS\5Nlh`BHL"`#Ox*EXo,t|%-}LW%jӃ{vng"L_xR:oyfRO"DaS26$ftn$Ȳ!gjLjJ}HD͌}NU6@hrHGt|KP<>@Te_ 'ze|1v[ӈ1z)&~@12$Yvl/NdVr]p B ]3QbXJ-+:^?Up*hw-KHvsc7s{B_t]_+Qqz|Z>h:wa#B n.M)UuGXۏ X|ZL.[}tT;nF# _h $L]I% g; v]t$lWUj;wm 9߁̒~=h=X-Cr5Ov+bRh8-{2]*1[d AobyCv/Ù)wi[$DF$Eg.QC/OwOzK֑)E)c~r\3vL`&!a'}l.,uhc+cj)`~BlC]CJ w'"%fpO~GO.O՞OUQp1+h%@f^?`']cBd},# trV~x]0yUuE) ܝab-mHeD$&~LwspBQ_!vs>GOmaRUyJE;f+e1:ixIo5|53swTb#Wb&Wڮrw Z lqc' 2? : ]  i j ŝ X;  * a I [#ry Шa Xf,  r$d%TNn c7_iOV2,+m9J\rGg;MSU" 0 gη۠ t:F~hR$OtnldDDyRJU;0,iN|N\u*z'U'@YXNe?Zoܹ[qvs%OWtV 6TMf3̉9OH= AKa u}:25yQTc Z}R[5N $2#Vo= ^ײ#}1^ÔtSyfO7s.|p"}QC{Ze%I^+ԂWP&*=sJ 5.bv_Qd8,]"-4Jł .XM0 xC~+ݸOH/  15xTtJP;v(`i&N|axti Y8Fc.h0;ªh~)$Pv:4D8A n|h[A9){DG `EQN1zd/Aj@2մ;xAui<6d8  Ն *#̋ڼEzL8==HoNOc:n2 ƑϮGo ڜodQr#> $C&~͋~Ϯ B6'L0o^K"S~d"9.4<{qxw2NBT)zs'KNߑ&:M+,c *+#):e9}xM[4:f 1R&8-}X?>uzXzeEQqH5d:XZmz&( _wH\ # K[ [     .8 Jntu{?oUA 3X@H5e"SmSnDMj2,6*z!fJ7YocD"B3e~zE{'s\a[;(W|)'GHU;Qy%H; Pko2*]UgJz=W^ .?F>p]լ8;A=Lr-jXj Đ6e7WȌu(Iwa?u&j -7W<#+D}SE{08oD?^!3,Rr[j2)fN!>dZ{RU9J?,!L$ $@8BsZ6 } Ǿݍu3 qp 8StiN_ U.C|X3qv?nstwU?`Gz@.sKF_u;wC$/E0ritp4B%"6 "T@3/o4mL@ ԍhwDX.':0r}`ŇfgVZmd.Xo$8HKxݎeF)[u@k{v2xB%5ҍK +]#soC<H^Jfjm)yoZY8W Lk +CO=%)=J&D@oe un:Ӯx T7Kt)g[AI*-o'brp24y"X]B .Xy]-\!fkzT#دZ%7e_vڨQJIՉ1EK{]@@{1S*lvZ>b}  Q. UoW4gs~18WtE)'g*it,xQMd~sV V$ erab<qd^(+T@o!+z>yc~r܇;A3mHB3.BKtQك v \a1oUv?![-A<,6/.+d#j#L&Rxb "Qj40oUQɓ6U16(;'rZ\5o`O#>eg{n$7d&we@ ?3(Lld ThKArZ{ aR=@ĖM;/o'%X1l }.p0(y!jU/hNG[7+f@b=SjOA zQOaCt8GUDW;Dt&2Ey5U$N=%ˆ ͊/FE$}>R=s O0zLpO&cZ'^HcKK[c3*XP_\A;CXG#l(#iJ6[II,Z)"$c3QqRh6p^] B5pj>Y[]6>@)$&^!ژ{^!sJ yBe~-:60HHy״x?x+{Q!?=5dA3NtUgBQUvpDC(_ziNgu,h::7U#C# bW,Q";u5&V=l'joi {-XMxpE1B8O$OGB5,.g>(Wm!F"ybw zj*SDI4%WiC(EpNc J+,jX 2e.؄R|1xMbi^ XFH_GbwT3NR܄/cr9e8zpmlfh/D޸r"` 0eI <6pg5rFhqsb%E6}XB-\m3:8=|NNc +$ mY Y4o \ɂ MJ =}N |  V w Փ E ܈ O  tg_ B |u 'Cސ }{  iXhs`k",3_Z59C4K >xR-@o  ]/%9SK7ۅ?ĊN(vq'ҫ|i{QxM`xi) /XIω6 {t4GvAU0kKA m63GKK0+7UmC0+-,P 8C MtEUP%mf~,d#A}f[v"?|O%>]]}rhq|6Fs`Pi~"E8m?wmU%^dL Z'RWb[ 2\ѦJ .pW]C,zRx2zH;8Xa3;ztn3b#BxjQ4emp p/Or?kwdBPIUs6s!TtzE`!}}c^;' U=qwa)V\pg'>!H[CK1[L >4=V8[gBհWftr4f03yeIXEu7X*3ĶQx (p7( ;Av8yE9gDrnYvYHY*q"~o"kc[S!1U!xJW֢3?bT9T1!b!w q  :"muzq*0U#d9y/=D¿ATaC. aQF}''&0P% L=2C n(S,%l'\P3W@Ğ0v 9jp,s3]Yl gO7(B`! $![AOZ+3mLN{}Z!E_TD|>PU`0:7m`T`Y,v`7->8>-QWrG8ڸQMZ+ELOj-Zwh1bn tZa\ {B-.5BO ?cP#.=)N2CK N9vcC}~^4KQL'RtEA\/<) Yu0y^ b#/kO?LJR jL"1H% qw3]kJS yWHp N0$]::@'Pfi MZMqGUڡA~fH0whA;TeBi2voK$]٣-e@?7Rx?paGk8< &aʎ zu_phk0خL1/Y>,"R*Xc!8Nr#qLBwOƘx5&L 0˹MPxkgu`Cb:>~Z!C%^ilLrz_MvAF RirU97cp?;m}sG:G=\`k;@q1CALd ^f,\Hw2ţE)g/cpDhD:* 1fȠV w0zpUi]<We75}!G (iz9U0Yl%'j  DQm:h./SbXJr=s<C@N&tc!^vČ)cd^w* <д43D5c>%x[PHl{D5j_3to2KuSF/pK1ZI!T}Dp>Tc K!]dAb6[Us.H5J(t(PYfy+ H?-1u˯Z0  B[pAe%Ţ (eJQ4cR\'{ &2?I Y`_|=5UW?8Z4&!A,9t6"&zCP e<| v']?4L}T JVYsAj;`<q\YrS-+8հ+BzNOZ?dRiCr4X:n44B@'NC?yW2 ѹqifnzrCUiTsoc"=He+Ufi,@zYM̍k8,H~\2buN?~_,CZ+5H)J$$f7QyR`F)DFHF"_*i$9OFA>Os.HO_`\>w@M^KKX`+IM1h9yvGB #m>TPB[o.i#bZ2#'+;eSJQEy ~t+J4lq1M,D|Vq u)Hd3vvc"W) rN%' g&(uD5Ŀ*oSZ~ CO MO() ~47;?^+t>e}lef6z4LUm1kj93(3ߕ }wk}Y5VFi2>OqZ:a+NH= B<^@?Y) Im*+8 Uh.hq^/-UЯ}!Hh\9Mz6;%%/ $%Ety[{ fKL &ǖ[<04L Mfv+_qP> m\w"7z24h&Gϋ6)M thqegυS`2 +0P j&R։NxboPWMhDa|neppLqXZ]=F&vVo&I@/<W)k,l|5YE 3i@r"4sh+`%|=KRA$bIٗV׵8-Qn+pra?OzHHbŸEx!67\3$RF|leH13vgF ro84=;T_yT`\wP<ˣ`("ͷhEC;{'.ׁE,D[}Òo /hB[y8>BD–],M  V uu 6Mu HKE,WP  Ob@8HF2jYz8 5A WI?vF2ZM{֣h5BV%+={,XB"of9;Xg1WMd9 ^p`v6C,6/e[6H29Ѵ6jjq ZKeyk7!p e>=AnHT?WJu,rҋ Ss&gqMSU-YhQ՚)Xl:JOY<7x!b2D&ITǟ23uG<"\P۞Yv1jZ-ry?V:[Ceu3 3&vWe l/> h&/ʇFFX4E~(j;Wf)x"y.ˠa[3D/; A^k{$ +n` zFUO(@[Ten?8ܰfJ2|5^e7)Y0IReY:%b9>d"ږLl>/F!kvJ1zj=+ŦIFǿ IkrAx~9/gHrx:XB-NTRD!2"G~%bw:Zzo@\'h;H p4K>OXwBNyFPTLozEUcLwmO163 k`9R"` j',$0SHY^oH'\sy#1v^Lhlî|koK-/C$\]$AvA_c4SLͶExr!fFvyR^Ͻc"%4[puOod~5@uAA^HSQ5"nuHQDٍ x, hbvEZ;I&B4L\)#yu>NJ+lr!0N"" 5^H=!dXdG aKX*mW@M#cOOBA9aGl{5,ӝ|\sCwAR%\afhWk" :F8{ d$k~=T #UГ9yc0YBhpĚ]| zүaNbUoOs]T``Q[%m\߈y&Rwf? Z}`Kə}5RP^»H5` s L?&!es72 5"4g;[.X_q?2Lo\PC-zHvpG#Gŵ.OCg L&`YB%+Nڭ!  {\@ltiJ<9iV(JN>FR^E}3&W{8*[޺lUbfHmS_4'qqiΎXfש(Z&cP~ZlFMNXWr9kr)$whn@(q */~e3Q(v%-jN=EjI)`j8x-O6+SIH@q>iMQ=XX 8PU=5SbO/W r !cuxbY_Q2Rl؍<EQi'0/EVYQ&7aC 3\QJĎ~lef>%# {zE  G(;HGܡ9e1S3̶Mu_lSXeǮ'+x,sq|H/"f`6Pikgt#*  Y cO-nI kTl{PsS(lrQ)PlZ1M׉^v60@I|#F.q-}m02vz}/aa~&m@b$o sWҀVA+utQavxCA]\U0o w])7H uSX PRUfͺ"(#Vf^rs0v$aoܨNvn$>Xa {4SM5N%g&b>`&;Rߩ:l lJuo+IW 2,,$('|LQwʋ:NR Oq)8/t#GΉ*Q@K̶ X q;K| Ӱ7cs ղ+1a;pQ=9aLewQ'HrB m\^MVMhO[ukw.f5$Xy33{-bzI L6*^y vSGLB ]sG+ȍF#FW HrNtCol(Yv4nGovDp1((uXTm`B(,RVG=!adO(%@x{r.=z+Je%7Ql&NC91MH7u"(l# z~BYr8Y̺`XFu ge!J*@G֪bT)#K QUkSS:mc؆68 l. Īl&J)P Ёe:[LL(?U a;%φEICJڹn<MIk>Rq.8:!| HhiD]\ >}# ~o r q 3F@ tn W wKo %Sw=(?5 Usc}V, & q~E>+0 ]u' g;}\*"3s:<Dt#'!HS`%=l4)&(aI3 A}\&^eoXQD1g&dSEЬ0VaU1{A!m/ǐ?(BCcoj* Y xA(o4OhPt[PߪʌI&/cƤv$XQ<! ] g[.B\%sG5=PI[.-RlbqU\ۼ"!6dt|URDV8β9*K{,mIWVcҕue0`5Ys)^6UttxImh3Gusbs>LYoK<8,[2[x;nԹ'i9^2WpJ|r)&m9(njoh`!'kQN %(Z<#8dfM`jaW7Q!"QJ  Y'K0x/sBiذ0?* LjQ<>-p5w*H[&xvGY҄_oD `zc L i/i ^3#a?5  h\@!/*/> }~aMܞ "uCB44m"Z1"l(%KWyjCY$L"rURk_b,m *J҃6[k`xgk}(<~wB̶JZG%B^.^vlfj?lJHWp8UkOAy% sK=uzoLaPAP)`'qKe!Hj@3u h^!KuO!-_4.B}|vH ʮ-r<{wee4@M?DMz,i;gInwޛ6>A0X\H?([^\I4w*uTE #he:W +&*'NiJj9E6blL[P:7<|~y(Y)[yU D^w) U^wM@yM:FF b"Qwd ('q^6.rY4AQ"OOy1/TQ?R#:$%_*׼ڴŇʏLn*J"  []0LúĤ'4DK4F$!*mC7G"tm;0s 02lz< >aboi77 /= $S q Ȃ\: =t Tٯ*UIw"n,TgxZ>X Urd2sm7+[# -EuM039'q}nB{8HI{"a">@.lHsE%t&.tr)`_0g,׋raju0_yhAO+IQ6= c 1 G  _G &y^xiN3NwПH(&=d*nu |a6Jׁ/ 7eB tn3~sN uzUl4 Z2`!#`rQ? `db bn~P'y` ZRo0͂}֭ӊ˅#H1y3An\F*-?ymGW<*#&8%\#" B~)h)ĖzT^Tgz=v:q %dOD EL/}D](4P"yn9-;hHYL@: &N՗D&N{,[ڪiC٪+dE?(9ݑvz`U)w~b(+4 "$d4Pў#H! C#YWthYn  x?~J)Wb&b l $ :?IPK@ b&~?fU%#+LD%/+>A&  E1(!!1X؊j)%6XJC~Z=YD=&)z\!p"=T.x'mC.yUFZCaM@Ie7{0nĆF)etrc|8 |rV9 ,si+\:/4KN"b)4$9!EME uni1¥˰T;+/ZkX-+qg8!%ZOi\N*e~iQ{ ['" ԤoCTq Et'Wt4l-)Fzv!{=0uqZ@V\$7l%uz}I9Sshܟr:o$3,f$ֽBu`t'v/_[f~=EC}({Rv[|8-D0*|!  Apm3/F%3ȴEUn.4xae  Fb>Jm9H"93$D.$Ub]f8-O5={ot J3h:6Ua!Z3sKrF T}%*j'1Ќ;"\ 0V1[eX:Q2" wlogjK t[TxvXZ ]W+9C[H-#5=9~zNwTP($ ^jvz:˞lܚ:9EdfY;z1_Hz*] yfPs M|Řf),@Xwx9:9kI[m1H?DS:Q/f:N"`j%F;wy[cMϔ|+Uwy-=M<'z$17KM{ݮT7X{$?*U""JpXvXMCr/H!@rJ4&sVBU#^azqF aRl.$Job3w*CIчocFZ$R*ikRFzMn!ȵ|r+'! Ki[s Hy.i1v' #nueP}Vi4/1x&XiO>gJr\I^LH0Zun>DaB%ӮòlD{  38O|8k4 `X#J8ޠ ;_X96;7 , nA /h>9eI#V[B6M)r\>D/Hlv)VW# '\˪ l}lV`03kkY$ `MӋu-PoLlߖ}>n8)p)h=GZdr[M]zjC;&8 0*4:gF8jc}ڃFFٴSUa! 5`= ['We`z^(;ȣ6 &{8|82*G~K[P@cafX'`&2L}Bmsy hhɄۄvRŸQy *3}% xBK GW6VfDbX_Iv7b7SC  ,t`&kX iM J> Wb<eiH4:!]C5i$?XT>L+/N=ogZIBx!"(WOe֎MA?(5zCt :%#RQc>?v 4ܽhqaB\EVQQZzz1Bf{25D#7 i?OA!LZs%_{_Eg="{U`8wщ pSNaK gJ82V>Oja v\#=;4m #cMr?[gw4zB8qU./b)qٖb^C?e07X4b_y MdR7[K+ nlo:k |`PkZX"T}c("am} +OcL hk-J~-q({T>S)wFIeɪmw zYف_,8B-!lZP(LsJxhVG~^ksmJphX.,^_yѿh$k7bJ&= wܬb0 AY̪H+OrJg!p#[3uxӮ&>LTs@m"5(pלIdM\E#B~v/:5TdHTfPis6ٸVn2),h&DJ2lT4XL?Ha]NدJZ: ײ"O9D@*47= AyV(7svKl|{N0j'ΏREO#6TUM`H+hq 2/$gb 4ĉaq!Zzc.{BUFg}xeKY I}][y_U z  f kzSVK= \eN^x TFe?baC5DŢ%$k5P2+a5r!v|ő0W~~p6)TA@b 8DopdOY?@YTy@Q'XA|J  F J.; 6! cp-D13Oc ~z~y7p6IjtrQQɣ`b4>ZgN%4àobGsmqiRpm$Ĉai9]5I&w%'tuI-$3~O&tIHbcRnY{oB4x% 06i)Lþį) x6G5H_'!_/ba3@jK+zRec k(u ˁbY^@$=`Y41aH.?E$TE?|{l/fH܄%K"@h#6Yt5DxVS"XyMzydGm4|zƒ`6|Bb  >HC=HHAi^tD$EhUkxI%Z6-ݪu6I1b,=, G pP #By-ūig:X=0oiЍmfL|?|b4Q3ل]T YrgE6qe {J|1uDv+[3S-3(XjԵ]n741s?#,.X! N><@M!!6Ǔe<|2@z?rZ,-L]u£i,0TZc|nSIaH}=Z&6PWxS7ȹI(b^x0fSc +aIF*-\oJloѳKCG\ x@Xy5d*|hT< 8DGͺ !GiBO^6j.A"f#1DY9M9j6tHe9WvGD`Ǖ'aQّ2YYV2*2{eb Y%`yxg*9ͻf;M~AJ#|;@"#2s/O782yD-Btm js4xdm/6Σw@Q%*jgmZEFx(|ެPLcFOkB u 1IO6[1J}.}H;( QaJcrZp-*oa>Y9B2>CB@MA U,0)RΎo81 88(<n9mDc*k/*&yejz7ǬtK Qwݵق'xfaѥS3|ݺlKq??Sۀ\x Ls?(^Pb؀Ut}4^O^ǠJf y: b7WaH ;i<S<Y!6|ܓ w'k`3e9_pZ<I{-0%{Gj8p#*(|<˫&}ys%Q/;OpbV \1 z|7 UE aUڱK$& s H tMCδ*g:ӃSZ8V4 UK&P'ł ֓d$@ErhSz#";r+5>c&%K.ok>F(ZpFI1ͭV L^M{ -H"/ < |Pw'yȍn" /j[UzA\!Z+ Hɒ}o@-lX^/sOJ\lPgr6A\=2n@sc7H4ԐϿH,Kz͡\P n{i1B_:e'_>d!;{;P4zy}q N F))8eG6pOG8xi FZD>5Et7q6Hz +?s%v~"u? |~mfjp=UNx(-w/EE}7t~ Oҭl drWTk~nՏVYz5~P)"Zxz" n3Q'7aF@P>V# 1w\~cx@LSI4+0<Y?}T@Au@qk?fswx#Kw/a)^k7 10b1˯GN@ۀ\/Tx bֿAai-zO=F 'm{UGGixdLMtֳ8H w4# mP?:}!DeYҧ/Y:aV^|J{Pirg<r!O-kS%L5G_ Ӷ*^  V % R(C> Jt z $ dnW+$}WA&#8R 0 .I`HS|v^9 cXwWY] t 2euٮAom%ajPt8F5Zx  ]T AurDp {E-[<:f4 TaB suV%BiPYqNd$^d7O/OqrZP^) z:6\A'L* Ce>D\ dbޤ/ ?|F2f65B~c}F[hjevM)@lK)ac|4tJj^CLzj՟fǬM.G}d6|dg2HeU_, k 0|fjZ} ]g M,!m9x{ Ya=D#CAM@)G_S`dx!9fW'5jZ12S5o?JPtV}6Q]fx"< :hXh>q>2lJ* &QFe oej".8ZvDX"}o0Sq֌3Nc( 2c&Ϝ$uB` ڈ0iwXxZU_1z@T}<*f7-JΝ& ]7\hVa#< |{_ϱN`Ij  et U y{ = 7p X|# @O v0BR iAI}`'*rEf XU+x$6/V}mŽ]6Gv_Is#&Q!4fƢ4-ہry+l<]ӣ5+DO}[?l+qI$h_B-^m82l]o#ljWd#߻}fQ-iVSLV5Uַ593(35/S (hk=JL8UUU*^9.ibOus7heÕ{ /p}$/.-#c Vdsc,^NJ% Ao2ޗVa(%T\qyk#2sf'7jo@ 4X1K')2Jg_˸(lL#hS;I ®)V ;d@?T@D u]k {Z*G=_d_(>lHbou%cL:8'So= ̈́lRN4K[ K/} n|լ{g &s->"tWm`PQ g3&/aY4`s#mdz!=b3kQy,oZH%?~D@hDvc(s+[U#x'JgK:6Sx!_ EpN'PhL,ai*"Pk,g$~A$Z@Kٙh3A;S?nQc<,V{l^#*:1 4LbE4 OO$%(LU?X& ̉jO6Ks!8cxV7 vu|Du26pRSy4{k]KӴj[c`u$|P*^ \5?#б Y +\/i~T_!}2 ݀[ 0K$ x"r_$/3bSX," LPwxl"b8sR "F Bbzaޭe֗l@`rg:B+6{N{zn.t5Yk6<x.l@#94AYOA+ލ@%]ݮMp PH5"JsJ' hSsp5't~sA5zY^.`70SfUR^\('>&$1Qu3m iS5.,_5~X\9 |kAy@]l?4~ gn|5 CM&<9[VϠjSX\x6E܍lh^lR*l?Wg t_9&o dc,cK@6{٫yWF,^ 4rXV_@Ea'!VY.c6J AKH/=  f\V\tϚjՒmWu$I@3hAM2$6(Lv3AC&λߖySĬ2Ep&KRKh\ +|X_o 6s;Jf%',Sii ?}OLp@vmB{)%}iP:@6{C)`L,#*q'( ϳ|E٭3Z_IӲo#;{sMX,3u[Y [Ij5|+J]Ӥ3dWw+JP͡j"%[̹y xi|zk0unhIjt϶ٽ(2U}^`:_ZOBb4KDVNA#"$6zl*Rn}+d g="hKJ+XBO^]s@%tVJMdZ5goz7<`kAu~SQ$h3Rt.YfTaN:~rol%n<3]51% by׊1PAL!nc(\zDNlK>Kj-^Ӽz&$ _`W3X+u (2c&o\+Md`4HBh%ptXa.KEGwUR"s_9^(PUb,.ƼU:rD 8x"{ghp*i&E!G_Τ[n8X k-; 7DciF $"a.PF%Ĉ;9B/LLd'9N>>!YN*_k;{</l Zx dsbh)`f^> >"#-rCȆƟbkf2];i4LT7 l_0#/{i@A4MGpT>n+-Mldt m +$#<{/GB o*HF6!RtXE ?mBHa|3мB%פ_v%nF=o$g!tF-$U1"Widw1v,kO|MM)=6V yecgjiPuZ Ci@3H,%V WzQ qf{|g/jt.Imмհ e<:d ǑCVTL&}(f"#=MNS S%C1h#O[8d.π.WZ{^AAR`gm@/o__~gL8dz"'E@9DM^G79L5yJ]meAɯG"&C.70hjKl|ݹϯ )k05-J[g>{ 0<MՁA, <o{VKaW\rzeS9gK ev y>mQ5C g;ɮ`P{&0jk^_qG+c"jf#%6|8,ʗryt/\~Y'xfnqS T1G߾IoG%t&8yTM!Lr~ZvNO4|zg,jpdV@:e,fs-.;qOU{@UETIdOI[ `V#wr3:LQ3^0*]ݣ!i 9xO?.)Li;mU`4Nk,o:0a;O%SQ(rn8 iL2d5Q+_nXc4dm,wuücj~@nizF{PLH e>Xl{Ot+6D(>Fx<YEe ۨNv@P}.Y=UA8[/H7DV#B]~\ͩmtp< 62_>b/Ok'\ߠl0OG3oUyK963L c|d[1~$!C-ul`OiGtGXWV":U2yU\S,Ziz, a#oi]Jsh^V  xǭggh*),gX*"SlI7 Oamonq72f>;g5%Xpx&$rAHq1pTdHq hsF>]HBA^NRb&!.@p^ ccLe^Rbas&oH'T;f~\ ~|m*0i5YHJ O /] eX%vJU`C`8Y&_$ AG%4J L !~rPuJϪc:7w !\,OFQ#S6$1"K6'z?[xV'/@\r"HdM}pq8Q/~/ZJ]Q1GBǥ\lɢwD)}l>$ccBq <=&9i.m~iw\GC&*oo(-[&V'*w-;eb>hMt3[@y3S\:{"FrZH"'m3Nf,Bb@Z&#Ie*~9ebn6hbWFwskl(]X;U#Rsf)II3rc\C;H8kSNaB1b9@^|`]ӥ%!dj*W KL)*ur'ޥutRnoZdx0T}$zZp+~ iK!p-^ x vi_E X{FoshE.U4p{]h[`q*]p y-# Gߪ¹V*a.1YMW]>48.@shPRNPb+, Yl{EH {ł{=ĵg`s1i=6#~3QR/ș~0a@x+7{t*†IKȷݺC5MlXAOJ#4VJ[owc).\Q}pЛ:^[)TKy'*'%E,z e#: dgjy L(/y>F24,)xVMap)q{ OF{z`7;V>l+ UD ,bZX*|cZ[ܡe'$@0OzC54 O_c1|):u$$|U" 2 %,>qu@TxPq&Q}dly_9Rt`Yvq:0wBf)n~nqUHD3ycD*& {*nB-2GYhJ{Ô.-!49N@i~b#QJtgCPUX-9* OFkXw4ZPOC%vFat>_edtX;VY2;s56{GOO!=;k5Ҕ8E.1ai3-5gG;:b0jglGA؝%R!AݛrabO[I8,)?pX|$k>xAˣ1[7+'v4‚RsU[~-Z͊=IIuѹ!~2 :'us)PL2cWM`j=ښBafZ8O"1oM%~3;s(3} t .brmZJo>R#B>Y3$3~^P]fxP>w{;b-Z57Ml >TQ3dL[Y02}kr "=BZ\&cRP6e/!H~OXEf29dsq^T,[-L[EePt&B_%|dRq |F&ipV, lMsH J|gH___>i%vi2gMBX@iAYsJ ̻ (:GYtS,g]N ^}(fl 7sCM;{#{;z:.-Ъu3OU}nlO{JzlA20`x`yo7]qblb=uP؂4Y*&|15xZJ#.Vu3 "0Qou݇P5eG- EQ]1V2R$G@Keįh.vv_q ,Qwq2&O{Y@qOzy)AL<4vt}p D4^9^ۼOv!  85dJ@m N2*OI_ZAM>/9_@ C@T_LM>Ry=͖sTDQc *y@-CFkB-AjQ wY_*`AxzSuP~d~l6b}G٤ "&NE}QFr pt޳ 9>/ syE4LWыmʩxQWO!FMA32o :D lh8Pyuj/'=v{m)qxla"׎YEf1l4Б+ozf`ilfcǂMI$?@!2_aK-uDh:K\:u|`Տgg6|ƪ_j%qr,6P"7`ݼl`Cjq#^Z%Ϋ`~.t0y6))r/3Ӕgfޏ(w!(ƈ(tiXWTZHb;<4FCQI*o n[&DQ^R%AF?p9c*sr=q#iv&F8Cs^/g&N+>VfV[)wFXdWlU3xVf>/.^RC7q+TM`&w8mDFnAtt2׻w$N(h.Ej:\&lw oR{k"eT"JvU;g">@Sݝ1g  E%V: 0Vg>-\Nik~es}&4H`a$xmB#@sGzMuj$C,gBwOFii-G308DMcyZO,*<u22yGfreOhؔő\1X~q r}MyAK @}H8KrKe"!QNCzЉY pz)L|&O,c[[iE]%*'I:+u`l*X =˒7" kD1b!UgqlD$+f5:)|=0.  /Mqr aE?T-n'AF %W rJZ>6oOzKA\_&@nQK-MJ~vb^9Bdc9<<7tF./x!1B },w$;*TBԠ &BR]Ab4u+tTm*~YA19I!=uR0w3=[O I_)Q@,&ǁPao8rYHA DSV;E"^20;;! CZUzfKm6UQ,i\M%ýq(w+J/ R!{+] BdCoޑa6R>B4R!$HsG=Rij%& 9tGHq+z;4uêZ.?w^ZE3= gx-ٹEVIFs4+NK ܪ7x@'#5:U $&E0;u: s|$|d{QʽR:5pc<wWGnesA. ՠob}ΑA4Y0>TLA{)i&(Qlk^42>$U; +uizFki"w?uRAf3A=nLXA3cjyZ+N G  %*<ԅݗڣGw J[l,w1g-CNW|v'FQcP#5#A Hl#xB%0V3]kɕZXfx _Y*VTK j/CDhbt\|Kp~</9'?a;I,yBl>S-#m)as.pz2bµn8-]U$bǑo8Tǫm(kK}S)riv7|c+;f-: _vͼRk,!&aL' 96=F5SwQb )٣gDqctsz9:6brrv~@2 "XDb: J9nvWl: )v-E>3/x{ƶ1k*3faBc O0=<%}XL-hцص|tD%[$0Lxc/c֨I9L?Ap ;,. Bq~\+ ֳBOP )\R u`[/.IN/sz:}S1sh݂i Au7ԧ@WRoGޘ`N1XdTN'0gzZF8*9p2sL^S5Kt\bJS$|8c3*[aZ3̠JfnW_,VmI'r*/XYR i~@<^*CNY??:9]qFk b[5b|m<![PL%?92kH +AZgVl=@ris,Fs913@/sk,a-٧iJJ0k!t|-=4*Yç>Ŗ~91'KDBnd:A {][ > 0#KE)@bdDQ3+n]p6 f,` S`,-H{3! A5K3l3Fn-3\V2tgFeTlW 6? F%wovQgU;4`xv2P p[*b\ݥ#IO;]Eyy͇R4g'NES"3!IjSp'ρ7uObCH5[+'tzw ']9/?SeƸG7"*]SrN_\ֿEph._[R>%="zl,20oe^P$9Q+j& 8ZOzE293f\E$[D5jzG+eEyY, Ի#"c+YkV'3Gr{A}qW˗{|ů  \ J2l:Ob \w9?}7{wB˨&v9sb!"x@q/ӊ3<Qm\o>9}&| X~^K G){FTU#sK{dz&'9Gg/&A ePGơc-VyTES=a|Epi]jexx=<Y( +'da< e"39n`6xH< *8 m>K98Lo:*RDUju\C xabq V$ ĹpD XU+g !I! W2oDp?A\7o=1wkܘ4ؙ?$D2S\C )D^;MBpq$"~rE"!F{2r-\ \zz@`^f@`:;~g<2gG8MK&9VךV8s$> Bޤk]C0+D vx<]+n@A܄w,'JO?,,eN8L\b|>azlGz˂1ؠU5f݈7:eQ>K1ƭ#!x~]<(q`ǰ<] 07 Ir$]~ CH78)Pl>x;m[62;C:pcG> rP/rubb6eO*K%p(br n;B:̈Bw14:wDt KYHF>Abv(d t} D_VS$EF?϶aUY{V+]_@%^ksn}R(<Q 0!?^yQN'@[8BmMjF}3 Ae1V-j9U)`{tHR!$Pj#k ŝP>S#sLvl)"!]V\d""# &@vIhj&Pn}{Yc ZnD'SgUkL'J-j+̲fZʻ[IO yg/PJƉ;,q ӈx('/u5dn@<6w2o8Sc `*f'T ‚M4A=iP[M) -"8Kp+TˁT$x>gug W JxoR6´@`tt9"& =`:P/Z!FJ?hl]RD1yS.}bs+Fw=-Cv|SуhnPytk` 3|)݂q?c#8&I<jrcw1>9 cf6X:DdMUD>k:UCh*|0&PMiib1pY)i2Q:XY] $(X98ERK=fodk`A~4 {<"c]wN-Hpr ,2-bF OJˈnSgsK8=r9@gJMON8~?%( ?~ /@i^7:L/)|p|<.*S1Ea f-eh]:'&K#G00BX{^zz0٦7 XjU kreU3ĄIXvC PgT7"F7*;Z4v XS,-Pumi$F^"Hs*X/9qD+%Sx(#խ|=U.wv)f4{wŏ__ Qyx١wM`0Hc2mS/v(6Hm; ~leYd! &U2^ q zI[?/mPQi~ո7X]Ta`C9(0eВ0'-Gԇ8t\cc)b2;o 2kUF tyE(UWs{ >^ƣfjZA/fj,sbg /MvogbC)y++$c#>AvsL.i[Uc oG gL}e?DcFD_b O {f+(cT{(_{N(\~]CUG.!Y!h XƯTk;uMpvbs0yN>3[ `$_4DIT{7ZhQ>QāBWOp|Ui{t>˧_ )fTmCfQK%C[hx?*wk3`M c[lrROc|oYJޖp$s?Hq'|vm%.lF+l4SJeF-u<kw&P(!iYN.1 MU3i,r>Cq#&CVW}wC &f=YU]ބ-xJ4\ Ps8ZB(vh?nU#{%jضMU;p@%.:)nF:>u.{c^jDi_ƻ \%+@  }TC V=4XBBZ96%1HGgb _r_x #zC)%ܟjPgM$>hVkzY|\ U.0p v/osR3G_8+]z>Ktm!br ~ pD7a&Y-j݇ll7;M#v.pc(cѩ+:gi1=gAkw)b<'ݢ%4|0tL,0-vpgyN `v+XW9-}KhXJIC-SfWPXSsXv)ZZ r$y.JI]-Z}5\u5S=77Z/'lg d(YRSy"PU9k-i"7m*uDն.,r;~rsV;[\l5heKHkșigeeOX{G%8ȰD yq EYIl ud FH+0^YM>iy wDWoaXcx[̊ NG;L ^Bw~RQ9U+0+"=s ^":CDM$}_V*2܃Ǧck(C(&v]*~p auc])\zn&)pkT3m"v ()8>y">Lv?4L!2V3D*z@ 973 ~^c͹U%+a!ԑѩ$46rgVD!Dt62?%O^oucI_NK/,7be'B/X&U7qfusDz>E<7COe=;V-Qx"-1q8>|Jy6WTX=M:&I{Uj4YYXG֮Kx3{"f9BuǸ_&`]́Iy4hY"fOqKP MѳӚ/q!R y><y`s6i-^=>Ӝp8P3\2`.Hun9$S1j. wA0 TnktEx:U<#isq!i?3W9A;mDN6Aſk6~/O'v:cnH_v8R] ##Dvum_- (gfqŮ\̦(OkbD/E*βh=;&Fp+fr :n;}-'wS5Qf.n1 S2,a'PH/vY}cs:XIM qDWHflkv\p޸D).O(4s;n >Z1]A_\It]9[_yp[M7Kۗ1;<BvwG^B J6^(tS(peI;Xh6|{,Uyům72A+`i}h7l(_ۿqX2"'! t.U^{%v! "pMP˖?Z'kL!Zb)O TV^Q?t<WѦM+_#\;EPXuo~mVUV#]Ibʇ t".$PPM4 (^ST7n2up|,TŁ `; jmN{4p?Fjuezx*W4we}(T]WhaEwJ>[cbo7`_xU!L5+pR_o~{X kp0fTw7oq@Aa[BMWb @b;e }sayZ:l9aiUFGo><O. Ƣgۊ"f%ReςCj)9WWULr] XUCHTS} hvFyi³jfs׽`<إj4nDamnfMlegO_g(Ԣ{MGI>"8xc>9Lw8yj UVI4 LmmmJcOJigs[Z (Wj}Cu߲հdqSO E9,#LդDg$3.>KC(Hz/)1Qd:8F{}sϤ(78ф  KȖ9w2>J$gd$:T93"E 'G;)?xdUHkdgA]\^|Vi {m65~eGv [m {B3yo>8T{/{4F&ivNA GAJ QJ.I\ S#z EYaj70,;pYJ!sykN37T~ _FL]HJpn)(`k$:<HްMMt*-"5)5vEz bMNYΘu=T[y~cCGőb5}} % iCStsUf}4O·1Ќ O@]}:ӃaPݹs)2C6:2j +P R'B? <Fd(SmC#X4JXx\x<]x~`)/JG\Ik>g`Yu i­j5x-= [j9[8|mbJN!FH* yMsJN1; Gap!U][V2 2#]4 FIʼn 6BSR "C§]*wM~edP kߵidM2Z[2|z;ty sHSySk&7ZF|qA5: Jzi6 M/{)o0u*ľ+\JNhUpH%B-?!^+ fSg%uP6>V^^t;qOKv*@R0sMYYL/RxSҾ{2@cY`adK_g->BB P `m4HT\:m{q\5a#*^YRHgQMxYQL%_n'1ȵspfn5tThR wqZror0~Ծ{[7w=k6R`hHL-BMbXyhgujBE,@cRgrc. P¯'1o"z8'Loth3sޫ7Ma8f  ^S ,[&Ofr(FLq QW bdSGDt7*EBƱ@K.{}"ߙvpx̦8G2t>:l-h|<@ K;#  v6ޠ!s aH!L .SlP e@!6^f_L,av A DfSa8ҜDFI^}ɦ5'O>yaK9wwAg=qjP.'7GvFS.yb ul Xc!]Z<u \ږ(& KLY?y}H%p#cƮWO˞^\)JݚoDRO 7\PxIpUҟ߯Bc]IUŬQ8Ul[L3o;cV J%h{pp~~e UGm ]vKF=\,ZHeG"SbtxoSIg $=VӜؐ"g:"7%d%3Z^AIa;sS[%+D\(j?\r,*5$ʀT k'D."/q@|\;.WIztoG-R?F\K'xXb &Z,~q6.iIwEXC0 %@M#|rlD $fGL:9bC 1o0:m_ ,&]]hh̨Wi7Ap%O8$&XO1vk=A(c}f#BF9:q;!N8=xwtzy҂2K6Q<-J[=y]+M0m6N%I&0!GP:! 5jx_TKA%`Q`PP:@wYq?~kM.[??EZoU^oԘdZhQ5=Na) 5T]0pj= S&<t+UXd8Fc0ؿ`yOkR%R]sKlHD`w= ʸtR2CZ8aJxv*P&Enx$S [Ry}i uho*n5sk !KڼlW#%u^(w; xɡɋm=2K`m &ak0Սc\A-VIbExgcxyXULF, :ʼTGG0jQueZ>:A4p 8lGmCGkY!B,h\bb̈alI b]XJn.FXpc+*0NAmU+8I4\vC[ix,J%YR$?rϻuW;~eP/8P/7UKmR`Vl|zP\i0]`"0m?,QnLxK2sQ( tc \zw~\_ g<N$[4T,+A[ eCg@spAoQxR9" =*Pc7 r"PE!™} REw23rq+C]Xj9A SY_p-+#/o g]cmRj Fm4,L+IL1M2KkrG. Z=_:qZ<^=ch&K9%vPLNfCNY\ ,[g/"]TV*4nZMV\&`j[ ",'pI]i\k#5pYcRQ4ߩRȚ~Qu)EH|8Qp(?3/PV,Z4SYptGR,KWL}@k'KGQ6m*G/H|ASU;) a]/[<UyI;A$:""sV5sq=R–rIa@&tgeB^e"F [|ɛW 8@Zt!(M &VM5-clVnJWa!J1 jHV,2F׷oyJ"x~4fK[k;P: ,| :vk& &Ǹ`wǛנأxfS&FUs58e8j{'I"FX77 y#+#4 foPYO=7V{ua]?<""kX. vO>lS9FI_)1m0 $=ji4yVA&c\L\3O_Зt yHI HHTQ/bk@ {gVDNFd)SsQ\O Nz,/EPxIDY7 1 ?7 !S0 b!M%9J'yȶ5C.Y^,6@KM| m <LTAlKO>(A)bz"=G<ٰ|Ʋ?kr+bdXdT!Jyop)aZjFnzQW@!JOŠ ~49`jMQ` :LO6aD @w.C(b/ZS:E6w/N?=oYjl4}F==OZ.;FuRoįYŒRV !bT;PlZ -o'O(k!MWdrshg>\Wm H˪KL*7lxG9;t _.BۓnxXƀJRq4]K:8iwDKl*qN*e}*8>֜f2[Uxl=  lz O[ܺ``O)]fA;fQRs9Z9 uUDC#$9̀r,e Ds3@/)0W+ EV -I6 !eL.ySˋP&4 2{&J  ђ#XѵDxIDQz5"9wbc\r`n')|&rȪMH͒T(,3'nةlE IʋW9RqcW)I[$=S99Zʥ: r(<ZDbsQ?tzj6'Kik ,e+z " hAzSL0i^ iR8a..}Xe˦F0,ru6|2T)2J#ۃ 0j-,8ю=Nή8 [~]Q]1u<u* IuWFsWg>W#RO"8$]UҴ1y{5J@p  JZFD Y;m.g7FRyb [He ;#&&O^6Qi;G(*"hL9fh3@kd2dob,'whg|Q7uKi] CEV[qmyh#z+@o؈fס2Ti*Jn$ $kRḿs}Td E,L'Lq7N~86ԏ"[5YP(k#3 A9Zƒ$;-`nyʎL(a-83P< 8 Gt*,ic9tviYeia=yԟܖg\A8z&b5{mvZ0g*_)b _X^{{dYI/]F-='- s^1HdtW aWn2+KF ]B Rc ߹;J,:y, gFv%Qim-BkY#_ 2ӿlx̄mDF_*O> hKa)p7N?fkArFA>  #;liK_ F0^^(Ka Oϗrl~S<>vdEA(kh(v;(Tfhc?!oHpL!14&B7F:L S. =4CB[CDvQ6* s7d:d$rc&ed1Uz-(?K!B o,Ro =EAnx4 * ~'O^xr\rV7s{s~R< \>moJ#H" `X #ɖ 2%5 p,e96%=(,̷wv]6h*( ~g7O'l}\NdA&Uxkmr:M)u 7I;yl_uWF^A8; jX Nrw!1 ޴!]`T=8h3nnReI f$&GU:@7R t(-8AQ6NC.jzLp=nSPhߡ"Ӑ5@s7NQ@>ko9/'(?=;V:TwH"rT1]dc ~t C {0jz9 gMQ* Ft^4Bq>_!ͨEbm<& X{ zc2LU:4_wrzʤy+^lm@a %VxUc.x4Ħ&geIlU Jvx(ƌ?B<<wGuLX)$!w"՗ǃ5a@8yJJz-g=8qFai2\& tI[ }#txV(h,$/•϶ BZ Y@{ E P{iYf%:gXQyv?rR#y|}.?f^+Cx&]+'ea1IQS;x`R ȱiI}` dUm}x@+L  !7KC@;"̚JyDh=zr>} [ēm1̹9}5/Z T ahK-sW8*+cXYm:pmabDg:.j3e~S4*]>! >I:t~C5n mYJIa~%f1K!W |[+"N#Thxw+ڧ2<z E#ȓ Z˔w>; 5vY&/*'|9~QND3\i-6Uhq\ чg+%A8LkPiev~n olK#-4;7"]D2 EBg V9a[0G")Nk*L.CYg-]ez؋  .e"W{@n%%l&`.|$\95[wQogU[Vuec)puP4XKbm\20R9εr&6Wb]_J@q]isdHes,˥ d!mƗ `/ \Fg8ԉV.FTD,im٬^6 k "CVTvT<%n:^7?՚ZCT~̘+RbN0ݣ5|aMf{Ƶrlw\_vq%|dJL yf؁<xl`B<$X>Vh- tV3t-;`ZC I&, 2),E;Y=#@k9Fښ>n]KtKTWt pOy}{]hQgZK lW:8Y9qu8=̎.74K{s7KHDb{$rY'+N{>oEI^pBE3S-ebmsoo33yK {yƪcSg Nt&%tj׌&&&ԣJU~zwfi2yt*dy;kD @cw  G70Dzh^0)`ѷ.em6rYvZ B=`3#S-bف`N.DB#F i6"lvUd_K%"q%`=&7?v{Ȩ5V&v^[x(9 7[z'q/=t=Hm'YJ9L7W>#%n Vf09C3%V0xFa Bc(/,Yuƈa)Ne`N1:ǙaXVpKip|@?<íg7b=ǒ'%--/!DE `,"p{aۓPZkBՃ1`$F8_7R((`I ݢ. lڦ{A@E(2;N  1KA?5E7 ?BԥKt_ڛFG%^D%֧-TMt/x}~!Z`Q*s0c3>[hˌ"OgAj#p6wSIx;pr`Hnw<In!+H>Ŭ@05vRF. |a%c!3F;-SD 0%pl<sW?,'xE0FDs@5 2mS=fn7-x45;~5zO||l*=.,=T$f\Y1O[D30n~ɐSAuVWR2w]2%o@zj1C:?Vp=N#08pt'hL'bWLsd"]nIm#pm30B.KIA]lp-SEU KŪ\,#O]Gc\?ϼ9s]g5y BK\RS]B[~`+=9yx ޡ2;NʋP+f 'A/3RH(h_a L3+ian^˝]EiW><9? eN՟0ce(kRa TȠ2e!HlN[̫I`G SQL_DU$fQu&cKӑܭ{X"ߌqvd"v 4F>ȱ\mbTEo2L@zyז;RgyD  @W(/v a!5b{U{P'&ߟ2bc1gk#h]7jW>(fx 4X_Vd*b KorzXcS!O09}p)ȸ emۂg0> n<GVuB}D/2¬gD,ZGd{]%hMnEmd[7RJ ~` $ggA>16 Vm$ɫIg&$3VMh|/SG ,rn6Vyٶow*m/B[&n~K&](/Wx BCmL'nctCsd +}w`A,\wjS6(H yfA>E+<KR nUh:tfTTaxԆ$ɽ>ajk5v/[K?^x_!zk6`(e%&SA+ei.m8D:'1d)7g$GU sXS {7w|&j>ZB:6X%R<@ ,}?.[s nΦik9]V)@<#rQnr3V]puK0>->2d{d7V߁`>ZJ I@ɔ11}-9!a%Evi%ҞY2ͮ'pn~ Q]cf'e NgS% >#B8dgKf0%( 0^f-p.ʊߴtCl89[I%+&/2^w@g_.7lfJaG9Zߵ"QTR2Qv_uNOmkճpl*_Ѳ^&SY6L1~mO[{Zl7bT:4s@mrsNƯrj)tI RSkp>dL/Yzp,5ezl_b-!Aw\\, g/ƻF {X?_2Xl?ٷ0|Έky3WQ}'9} ?wX!>^aH*~o'N#V,&[oo sJg8OZ. N8\PC"%*Nd3aM8Q/3^DH5;?]0wp`;t%V&S*7fY0 ='_0G$?9uMw-. Uos-SUGO&֍^\{dTwp҉}x9,C@S.zMi70,pTo8|yjN3 3Dd2qVKrxTGKfJILȾ_Q`PYC[u:cJw{ g BXPpmS~}47RpypTԎ}x[ U"9F%jrX1t+/xu,Q<4d;5<!k%R}ilf"(ziƈgOQ9Ϲ}hk$t`c{nDYLh. mpXk :,oU!?-1Z +Q<P& p'7ONnuByGCi*jK/iZwn2tG%B;SF(@\!Fnb*^d3L]čxYz;99A#DmxKUJkg jkk|@SF 8,k} B%PEzry^S"85 FxAO3^O-DT{$9Npc#Į$TLK1vY'v\F>Vk[AuIon.2gNEXT9( 3ؚXuDA0 =F[^BP^vCd̃ڤo˭ GD$: / $ 5~5Y>`~W LPLm) L F)m^~BL9Xa_jʁA[jz'=gX`P4't6WF>OQi/PE!ia0:s[~ֵ8tkZDcf/Ye` hy7xQB~hGV \u;'Vd7$IZ1}gΔgXr/ou'F%Sn)o]23P.-g#K {L2'4q>Te,}K!Uo g !iX>BDDFyAT::Ao-?K%Gy >!wWxnQy >I(*gB!h2#\R}*>Aia-' w9u#wHqrz1nq}wʰB 1n@2ft]*b z\JkC] p`Ţt*U.Fc$^w6ߠ .lHpgbw=-s ' $`13YY*4S4%C$|!~)rwγȺ t-G0>ņuDJ_ECj$udk$fzq4F U 9LAQ4!879SjY/Fet$s*Z6PVd&8{.hE/ZnaF~W/7_nau>`p9+ >G:'hyI)a.ekq@a@iú/x"Hٔ7wj#Yt#WdWs/V*tUZNZ}Q7MȐJ=E[< :8ֲ2.ckWH^M3N_%l)C72N)!e8DY- MtqЏfW1#XT+gT"%8! +%/i Wj=gێe^+&| [yz P S5oo֮qjY8@7$Ok{xqar1^x & =7sfH`{gBBA"*|#8ȯ_{6ju_}?]<0CGLc]ՍrQP{SPOw@o51'N0}b. ?"T<-C^ \%XHC%FTvtMv{;jXD\&cC܆%Pcm#OIRPqS>Zpm;9] vPH tHi8Qu[ohsw E|Whg~7YB[bECM+xta[,+M('%Er}apL2WpP#)^_3|Y]|\1י=ԝ"q,Z_McU$K=9ڃ%Ir#7 ~%hg5cnZGgIfs;Rw*7kY7{Qˇ FXs=bAu pR e+1ka” UV~q+~ <7=$;#a2E01~ayQ^&h\mgJDvkPdrEΞĪ}CJHdNw^1\/_K \6u&hBH* @fbE§1%^QWAr*r(S'Zm ۘi ?,&{8!#k=z)8YO:L'h,OW  V?]ƷrXeYw Lh 272SE1"IBXqbOoDV=OA@#UT /qe0@Ӗs?u 2V[rB(rWѦY|HTvFȴ Hvy;d& NS Nް6,stG"HvCeUr ʞ90,'đMOlI>&A15|zVKF]?( qidJV0d w$}sJXoRFBMh@"j}T/p.Kfex<`@EN6N!R/F1R .0QaUy5u<8A.g&D?UAM?A>D]!PZC>}jޘ(&`Wy?[I$;Q}6Kb0Xf1< mXmHE FRw R:LnfBR!s:G VlGQ/BR*#j+V @Y{1oS2]1G_1Rr%}lf KfAk=0zY7*c0g?2YD.% TZ#wic?H,XyߵJ88qaj?-rM(vRu'ş-f;v0A6uRP{9s2U YLjY ~(\YoFa6{o3˷7v[c 2pTs Ipvy=q"L8=`S"ikM+w,Xv500j<.R/@p-(qi,?r3w\(z% @f9FD5Us kkW?e/ZJ0L#A6;j\jyEtEE!-Ť,EhmX-}5&[(J ܩLN@)s { 5Mox%{.D4YS.M LybPZZWNM2^vYm>$ tN_?(f8~|P+=H__gq4L:j˙Ͱ"P\P+)Qk(V>Vq%LH6,7`2ahe̒'8s[f\'1xQ.E   |eRb$=)[=Yt%;IqAg,x!` U\wWÃL=P}Iq*˦C)(z5Sed|\}/ryU^Pmmt2L)c6\<(`}dgiQj@.S ;} O}wJEAbs$ \z.rHZ'-#(c`EW֛}79 3eWbo|H|BÆpx~q$JMqi"a<#vxfrH>Z%ny\nk*W!z.a Ig{-OU]`"BMͽ>$GsA ;fLjvzIhF$ *1C c^L`3G%;"pT3q)R9|PD ߃SC@Hr+O' 4 c?K}~=O:iUpC.9 Σ049ZMQ RhUgR1;=Jc4#1?T g1/>njAPI1 wº9l!K& <+I'hl56)7wXmIN@ {/r@;:ݐ>t`ڕ?Π}r.Y _/Ur|{ZAcǨjh1'UsVnLllmi9͛Dr4xɮ1l>hl5_PLO`A+{ j<ίAvEZI jwSvUy|mU`"nIgz Y"b$ױhQO{hfV63ӰaeP}GzEI&% \c>\d lf}yӊ<j:Wǒ=d*NVFJnW@ra_0cy Q1+ /CDbLr+ =,FƘWvhvtghL]PG,ONe{p#Na͹Oc "U|Kr!(/YYxI| t{eJ'<\ =&!l/'C*Oo0l  +kB\A_\NRk"NZdAY*l2bcEOS<%$VƯtɧWhs% \x-[ pC  iO"rzQBi2X &~e%_tiWi{vZôylYM"lTo9&S2ʵ<tVH"bzhGjlY{a[;2D~#z.cuhj 3B;l\|ۻo")`=@ *`v6YC `%%~&GGPaKtE73{x0~&?>*XkoV2e!Z<U@z%|$v'_8=PouIx6 ]{!ܭ%k(>8Ɠ>lvBg0 Z Sz!rK, 2U h*| Ga8!A^DuM6.6JuDB?v7oEơ(ݨH"|[hU֓=|W]rlYU:M@mӐyz67M$ؕd <5}L1A}ZoX[ n̸Z`Q=QH^UFAq ͓.]@<c9cVܷ\m'VsVM_LmjR*+.IPv!U9/q$u,y.d( 9:# rX&!M>TI) ڈ5}/M7NkZQ>vQQ=5~*B[ hVeggclf^ukPjUMO(K* \F-ubni8v5!sUd`H z6]$zt je{#j*1K4[l]؜۷IlH$/OOrV[8z?MBP( fu7֔ї+;zfX1 '}{ZQ^y+X;4>i<0Se h~oG32adda;af+SmP5 `)z O> 6navn~ː~w{`R_F2y96/;S tGRׯrct?{pk[3O4f8t+Ͳ1f&y}znG_9h&oAT_ R N cՃz2tނ6"p{Z$8W[EyFNjupWT;C'bn˺M4X$q,Ss pi.,F3D9_ 3zݍG/G?]Tx}lz|s?aAji\ygmQQsD%$koOn#coA6f x_Ţ֬vm+ipza00>XV_/ۛ0^~mFYF(0 vk %ddK3rV۷Rz`3G[no )hϫ0p!ƆW&ao15wQs{V]mđFɪW OR0+(L=Rā*2-sGc /w#fJi5)-4jۀ=7tf?L01 >{d @HbGmknED'z$}X0D4$pBoOHfo(`FOE%?f-(J2O4K@fF!]a{NcxGC4+oTJBda77xAYYk#|xqgkMJf`BNT':;Aw"hdTmhn4äbeK3*DtS%hqg2n(nk"BN{ES?1H/$@}U;*]8.F2-ϠtXeF|]|phwxm)rikd4)*9* fT S,We nV'QI$@z-3/s2^qi#,5O"1AbIhYUK(u_|[f@N@ <' F`Z8F#pgiun -bd0];(\$#Xx*I'Di3c)tg s$6D>1Y/76_3ȡO%1M-#05Dm<iiV2yPNM@}09Kycyhu S7i>t7cû@1=0A)^"9# &H ws rĢ Ch%S!mrW^y)'QsD ͧ>4 rLCD)opξI X1??!.m &V4y:(}J@klB/"mTnQ%d,HaG [/kpZԋ{c&kB3%_+qƣ0~:3c3V%j&PK4i1w`{"az IDCC.'K!9Uew9q @ScJLGbSȅ62 FW: $5/ A)nՠ\/ HJ?4Ө2kW>gV;zp%Ka&dift@[-j%+?L;b`c;m@ ILepr Ea$_x pϞfٜPxdMLzwD]LJQ S{\ sVI1l.*xYorY[U 8)Gj`JW %,&NH7@@OntgVrsa̵͈& jV2 BoJni|;m vh9k_HA~L3EdYr&Lq+3qQSplNw XmmwX=01ݧٱ`ZOdc4"Vw|k4r( qJp<_t$NjZjzIS`!j0 ekg@X7ӌs<9rf+<i .]oBw g&Г"|J<h3Fi${#Af~i]!Lp090`#~$]+c{"wXh4$K2 $'SiopU"Q >TvZh<<[Otc$zVDIs|eiS3Ի #vnpisksdp]LrWLM;ty+E0+$=_ fCp܋bq7m%\ ;#B~1\Ǟ.m;dw;Fh&l #rb\RExFThYX$)6Oo.sZybD?'0MXBu74E2/M C@ؒ Ղ h(RizAԜDO)}DU4!298nUVyyCJ~i;/z_sAB  JRyB#{PD$1)D-H\`;h*QpO=<+{{OIhqNyr'h}r}iUa?)v Fg:ӴI)X=@7v[L' 6bbamHS}yئ]n aWp@ wvNqm#*jnB}Xt3\COK;a`lazE!%*fjL?AV h7,v<E7dCyC <('lP]Q}B]U4o Q;#6dYRDUy)eUYYFMkpY,ET}~t+}@S)oXpVџ95$%CNwxa}g-5PRT)I+LOg}%t0 ~f!.0־B?^}, @p_c.\xHuS)%h0(ev?7i^:c=:lP)$ZG3Dԍ&<N+DxC){(cS [AK*kN'3KH^Nm-mJ:ECpnDJy&hVI+YrEt`=bD_{F5d =,xn*.9N3?;~c.|)(U2/N-N b+)W14lk2y{1^)U); " >sCcg@Eet98/p 2"r1gO/;1б6 ]xaYD!.g6M"n RvrnLe#R4TJKE+mXfH?a iZ;BppUL*dž%:k|lHz؅Dw`xOS 7J+ ."NQ/>;`RUJ@b:jl63n?Mb@*(Xrzh {( %GluG'p{ #zhs IO$?Aj%nSYz%]W,mQT C:%I|yTG֭? )Cy)c}-&7DOnژu ;cWk=&YTRK#@&|.gۆ]J0jJ05US^Sw_gaE>:Z &25BcF<:YK?+N^tm EsXPQBa79+ S,NiVSIUFuJYQ:9Y|  AhZ`s1wHO k[irb9Io/NCRb0=> Ed5<Arx 6q({5~>zoLBE <@::{,3'2T ^[ ~1\I(/}B[rv8^h@ӜH3/O=NB*]AfK\d.-l:ֱ]p"2,g|Ry5ah]]>_Q;ME2q"I=lt?uJ5ûU^2Ȟ!xTw-(&l !W>/3qA ڎuqC dч(Ecg;XikNhہ2 gwȿ7DmV'n mT4Z~ ٪Y#=v)_#@ۊpVIZ#6q+R(F\`,mVdǞ߿0:\ /Y&'e#m)viqbP=ND*)R+A ="Mcqm nj%H!>  H Q65L2ϱȘpn}|3 P~̧ YkT0H3a=.e|]Ww<46|ԇ6F˩cAp~&cqohve\vf<o\b,Z`'g"np.&Y}q"gtc.(6\HqyzBB8( ^; Vk-Rl{s,=0j-܎+GKnZUP9"+0}BsG7; 0V?}jT^.?j^**,k!0$45atud^9OTƞڜjE&%Z 9:\:+! EW6K_G$|qVov,'Hph!̯Rf>6zQB+Y?saoo/$6BܿOd0ؑ$4&M<[\lO #"(S9aV)vHeÃ1q^UhBBy/`YHTOp\gcg%ֺFjtT6n$1ƶo(R^GLܧ[L΀U:WRA7vI"Z F\La-%l%(I+-/ԂBnVD/:[9;Hl$[<Y3TfէyU_{dZ{n&,;E5 Nui]c-r k<@M /?7r`&)6vdBȍLjSn4g Wԉlz?Dn OIp&w-%]ؾs~ro\giZ'@WG0/6:*$0Fk/Z}0/!v QjW%C&HJ72ªJʖX|"p|t5-waT^NIDbf6!eP %'јf!m*a=FtAG :o 6emu7Sq#E *| G]s^53!,6n9EgHcB)s%S;3)FV$CeH42K%hDh'2Wk'{b"E -A9^|a}{sVrn&fcbOf7'\= izlC%8z=?h&`{4mT* z^ /[(On̕IuU^O{&̲s7._wS] y;r2 p0Lo*o"MFe?H p6( >9JR&;]M_aD{&!~4w8YL`syufc%j~iq.nX@C7.cU8ocM5t"#w*Qڛ&?,{kW3Vw2XAk]xiN 2 %D)kR]uwmk0 G)Pq'Xk:(KR]YkW֫nw֞uefhΕc?x.AHB`~Ռ)֒njġXzl::BZZ?n))$G_b`^VQ)WEb# 6_,sʸ}!|1Pnu"hݶ_%Έ^i}]pdZDD23C3_PS-&=w6O"=%]ftA)o `b8$+%#1j>J:y]x7O;E֒W<P5b5b,' F>z^}xSX C8~6%4N-QF bHIy\}! deq@lnv8|EZYρl M4@OD>PFkM1-S|8e4'kfEo^J"Q}NhGleP-:j6]p|t n}٧ tI[o4 ?8Lrz<sH G3&U&D{d Gbd`pFmd,2`֌?k>Qkm:rjpbE=[B8^4b^.QcO2ZqGD G,;u/e}!ªCBo\EjLx&^2ܝpFPhqx8WR{l3"grMqxk&^;#$- v@- x=_]OE#Բ  &O? <VpC4lwpEwz0or{8w3P.D N9JE5Ow)CWS@p~7\9".;&M9#5#+(21b}E|_PHR_plz [q~juE}#ݽ=ذS @[zkh$S /"~TQOm˘Z]6 Y%Iv1݋T$#01=>*R"r]Q `yBp Pz.`8܂/_2/}?rfaI@CF˵~l)?s!kԐD}m+bsrFX6{%i /9"#zX>@~ u5;٫o ,&^,=;tA1[ˍACAaw{~_<;`#Sbk~„C$Nxf! Gey'3R6oL\v{"2߯j_o?ٍV[lFL/qGXӘf2bjTh^H-K/ MEEu%sYCbPS4n5?߬3 tQl#̀Awtɐ42a\j$,e`;  F^N7*znРڀ#|lΉj0ziݜho]T][WQfg{s'OҜ8hFF#Z'=s;aryr]pIį^7`$/z||mFwx ge@H&b.)&Xo&lY Ujh}yÕcysrּtyvA|3ValC^8Š+޿uMP:= iµ-~Py- 2``L ̵eAZ]elb*l ,|U'tml(Uc+Lˊ>V}`g fhX;]9)>hgvͲЖ`f[=p{<i XK_A2t v@} B,1 19&HGNo߽U#E3{ 2` z% lQH7|N!/ ueMe+n`4R3~Ǿ  < T"6lLeDtUM1,&9@>I߾UH`6i3xe= &#oW,45:. >4U".M \ F%J|. r\ze|דxy|j]neBP-Z^ 6X"@GS[OoH2,ѐJNJFxUW/2f4x;&?<R9+\^~2)/ Gyg|wqQI9AyW:h8XY a T kJ v&mJ]B&Ӭqx.$R"%}C_`zN)Kd4PG5ET;qlfk'QPZ >o͚\L &F[y>NwN e <( J I~iB0bkuS7E/:AK-V!Q\9 L*Ex*>HZ]h]coK;6!27(~ 5$0y*V7GozQq[Q3b}6tfvI5ɩ;!F!37)aX% <=7m̬Juѓ# Tn Ӈo3/6Thks{z>^I4POPg=?3X62@ IP /51Nk+fuqdnf r?T,cVNA('Ea"Z>'jlD]|JrCZq;FO4CnYYIA.,M~V  n*Q=f s ={ 2@"O[T-O}v4lY1GT& okX3x$)B G;`[}H54Wlg}b<vVA,xL<_5dcWWZGqsCNßqީ*ȃ;kpX8awT#۹\  VziyCyéDi1*+H0]jkRA\u0j5^n.bs |scGm>h,ix$لq}Re'GzSdi3j^o$=66=:pP6{:uyq#H+Z?o qwD>mBт7G1Z e|MF p;HoFS`ю5aPaU:af4&v3p,1&r'61>VO1d );x/ACP&YnsR ?vg[w6Nf(=C |X/J\#~!$"2B$/*=p 7ko,;CA/xm0qA}6@; (!N Vl%O{Vz$w|eMwa(~ݭ wLK޷t >{9ng4MXJW,`z$M*#xIpR_n<C> a(j~,,d>y[rj{ #XPbnS/<D)3 /_4 ^NKsuVa0i_OC': G %Ux;<iY$(2,y ?0TKX?MWm8*:B&+b?{<]OfȂKjJ)X _J.TI>s\f_iǡI zA*gUA6,.$ 76llC(&]U[g^7 %}di1 ^Po7:0PD~K|5rS#nid pF}=q(SKLa^km:vxud?yQoז}x"4c,M1/e?t0T*Qdifnsk pA>UGy5Rd49ߥ2otߩVXt` s0xgVa0Zj;A|4!^E v0(izqG#8"q 3߆l05`TEKL-AWh%s/Π]HJCC=1kYY{E$v#u8{ME 6g#15KA"; ;E']m+iqc[d:MLA-[jTҏE"u_*%z /-#E2NgS,np+* JO9T]j?u)iO_h`:?l9{d vjg^{WWS@+ 7!J7  ӽgTy2Q4%^v#\0f0\*A؆3aE&_(ܪ:uWQ IPMMAԢte;(PvAn\>6$L6%v_ .,}@*$<-UF)rO0ǘv0 / @Gd*N'_7qk +Z׍$I@l=^~Fb>/H-c]+;U͍gs~}ϋQ_ r_3SlP >=7#Hitq܋W-:vz v.[uzJq@"T7>2N|m\ "C&5C_{khG?h 51YU:0FK$a*89Uoj8nj't(aͿ5Y]y~iJQm$QqemUb2 0eS eBoe4:SG[x}}qeEj!mO=r/؁g1.kF8ܻc*Z+JszR?nă&{#sL'/W#+KOHfKJ%a$_P7}4 ,}m5$ZyŶtc"'#+T3eQyp>}-z}?qLg\;f-iC6]mK5z+mM \ٹ=6c y\dSNn!2(},zEY rl͌[(w>oU4_&XKN^ks|dn5bcy $fE@h5Ե$Ne,5}Ms f)տkcܤAWG)ݣz*87V,Ka̗  t+BoMhݿgHgi'=orIQ\1& -s?43 R'o;.eF or&cs8PLlKe~[%T<B@y:.+F LA[@Q_& rH-P?o8J7HNU{#IrVE< eE AG7T G '\    d6z|?FQ<7   {9yHj:3zQ9!#((XR6-_|O͏r/iM-jUY.eZ& "/iN?:TD#c-EߨNΐwyho4|Vc`= #·jA> rǺ5X{-gdTqZ7S> boj|cs,AghBgraiFOn0K8 ZAQvvr}"dz]%ggR@x}Я>vL|inV6.1$_~p"RjWZsTx9 Y]i:xs?h*z~[x5f(g & bݡXEbp|i~ia^rā|WrV9 `<?lN`+p7wE~w8W#!r27U ʂ@ccmZ<_:cQ1qguUlg lp˛ ޙ!XOO]| bFaf!T1ntvtegy$eO{܆t:r;dN:vU t6'tGYcYS;aPntJeXLU_0qd~VMW;~,c7 X5?;!8.6fH$/@ 1"Ti0(<@7*L-SVa"a8T5MViF7#m+5=8ƴ*8]_|W5efzETBQ<+4N}Q6q/>pXeXYZdlJY Ix B>#PTx7lsar~nɖucϗ/%uޮW9 ֭ ~ϙAP?2yZ&3~0wv;}fLG.&~,u6rP7zc\tP^YSKaG^yTg{X_P@${(UN9,UE5Z( @QVo2̖m!*cF@WP7y)3>G6.5G;uitVxN*W!W#ī}:dON=JVVz$NF]Q,2R1iG77E-uA<@RUɦxJ\6(2L/l( 5v ch) uHρGOJd#Sm _bpclXkLF$)({S I{N_XPV#U^ y7Lf{v[qݻD˄|aZ4TNd`^5nHiwokwyd ovq.b[\G'|'}5# DRV;TG]0<Zo-'A9}='*H h/tu2:x\9_/DԶςj}kDsx~uybV P!(CS/t>xi=srbo*ҒL! !lT;#:o X tprq5PqN#m 0\g\='&cyn}hsBx^F*+/{R"ڱ7AVw:e\V4Y_&[ P:JBIARtl^P p&} !ϵ':|a{Hh? X9hi 1c~<!1An>;'*s-!̺*߽9JRY-b0k`/t"J#xV J)x+zF SvQ^ X`+mlC"n}om}YzPue\4HMG1=7# x$CE Jtk>:%|&#*(D pO;{%ҕ[\N?!.}r[+|R1;IFwm [ u |"x>BK^]غ ~n,9SPw@%$V&!Sf)2HKZN[rZ{Hq5:RhJKsY>zJd<{_|r]Il|ܕܥԴu:"DNn=uG3&"d@2Pg ,9ΡxUiAr2As;3(W' (icpٶ){]l6d'Sq9vO#VF$ =gH.,rI5?XKVS90$%"a=,p[X=|3؅'Џ+7J7MT"'3%M<8Yh_v1,i!fPy-֤Y:;lUDc^%n:s0{<nO5Dkgl13`PS f + #,=s" *Pw ,^vOei88:c\_>:90L'7 3"f:]`8i. ދomf+T$l- : !}nfnbtݗ,B4b4%k@wֻ_ c^5xsYn#nWFyݿl~t:^14u|2X$}K&FF-hI995%w%.)C]%J)>^5n.8/' Ȏ!߃+b{U5V;3/2MÐkow]2gΤ`Ǝ?Nq$F34"w +S'ΡwՉcv`LhY-4)Dݗ%l]$OA$aK`1'*t+:{-mB:sks7S\' !%.׉iIg;"}/#2R+dx;Hn* T9}R<.eȉ|w8%p kd,I;J?&=Qb7f G8[x2'!6%)+}q ^Iw]Wlّ%U))n0T"vR\.rݧ(Ch1n5LqU=SReIhWсkspsYKsh-}xjśSּxug6y{-$- >82`gsAyY+z"\ ;(kmDDY]bkr}Qmh^ggEOe"~בӻ}ٗyhkIa`9&=H39v5?68=|n SH+*2Yp ~g:1vC^TGpAU Sq#~q|sR{]B}3v<fBX=Meqkb1ZD@]'Fۚ s3LCGu=N8`^CPVXFW Ҿ]^oE_>^'qsipW5L(5YPfVeClL#t `ffGBQ ,Ah3z:[ V` x)7+7/uf@Jic\isbY?|j"[ ߶ʑ}Gj7n5V8K Pi7:$U+> LM'@/)Bh8dbSN?tA*falwk"Wg1 E7 oƲV>?2<'R8Rbhi'>i!>UZ~[yǀWzt,LlLW3 -4(3K.n xxc~QQ_w2,xzHBD\xR e(oHma baQ6B1~$B.R% q=m[l6cSgG(٫wXx<2# _$R"#tX ZNJZJm Z!ԱDsInEjOXw>[c7 4]-P zf`oNH\s*H/$v+)F Yf,dOYJ`Rq,mVv)P,UWŽY!L*x ?s[Tl^M'{LL/]Zdm`TU-baW"<h 1fB>M|ߩ3t(E^KZ"*;/Rp>Fcj4|dHphѧ\PnYm,NkA f8@Ͽ(MƧU,b.&CЮ_f?\{/L7Ts<#a N`:B\)<4WO~tk} j%fb ioe7'J$<=A_!OX5j;FP)0A%QQ~g1܌3Z }':,] ' H},t4E;U.R= 10&o"B_qd`.vnP'y*U{,*TM||)0~ jslM>d U(yRZ^ݧ[opo>֯ "l',Գ-vY8ݥ!W630X %:i`g yEyz7 G691i6A0Wf O($"L'77*;Ḫ&IP_A#m=/91p#}8F@FVF4 XCYv{>VufmߵMAˮ8{2 |X!:׺F=O1O6F1)h>|' {M'ʭY|RCX24 O7SecZ|UQn^U]F:;qAK9C@w0L#%-$:o;Fzu5mQ,wo m"|22jS4g_{nj{')(5K3iet=x4}\GOoUSOQW 1/$RQ5r+} Bxv\vo{@xSeS\] fk;w5Ct.fnp,g=6kTpUcRP2R9_(yvOrX0UQ:WoNe9h'q @|Bw7l+DSo._bq[IHXHX LyXb|Y/{MFooE%|k|m<{CJcO OUzi?AiUغAf)CQ @QȴKOTXa= j<--0HLI}k^٢"џq ](7kIh >z]u.t\v/v|i/c[7eWxS_v« H]# 0/!kڸQҟlb K^''T=e2̬BmHԖ4T,wu5{`BMV>A#:FVReR4PS+" nZM99% p)HL+csB.P #vJ#?o G-p )e9WHOCUjhP^}MC՜wP͸z#?IQ`vϝk  )TG3q6ON2lAT[^x>;~-PY!q!"=j!9R=/(j3׸ oϔ]BnY7>fzԝ>\z-{syq;ys'XٹH@/~DvcU?@P(ml_;DPxqhtgI-Uzcnxpr0pvH E'OA4,;B=2` GenE(@CÙfPhXroRf%[vF[+U7V+ @5 /I E;W0K#\a|s[0HHrP/F̙w'wux?B pr/F٫Uw85QFLls&rMkxl\qMtJeFspKkh8_h*gt-nhP|Q6qM.@{-_L z$<ʱ=LBl z_H PPN)%~>`Vzۿaw R1or9BDU'-mS;w{>L=@58;sl6G7 xx| b\I?+zMv / >^ 8L dp(+" % -2N3%ql_7tx jSt&2h4O17<0#3<(RvS LT FI4_[ C'`.^-=L9Oh$>[ c/(?H]`  e+b&80/aIe_6$j`UMu^.\c6iEs3_5_~?5p7jb=V_+q Os!+97&YEu]uaeWFL@:06!+ ) 2`L=Hk<ԻǍݟ؜ǘ6̑1z7`QBE06~ r]#3` 'BjY'n j|irShFiAR9.+okpIo{jy[Bc_s1PƗRj Hwkh#/odMYY4AU,&s AQYO,c#UP$=tN7Y;riRSJ#'1(`K̝w˓k .4!l<  )/`z@ \6{tX+67`;sw.˜o @5~X*/5aH=:q5͐H8Y`w[aR_F A%HXWhYiKD%' 66d{G*<47Y@5WkNy'`  DCP ~!n&'h4XD̓O'mĻ\c=4NiäTn> '~/e~Rl5-ag)\o.YyG\J&T7p>.0E+'6%!7J0 2A4@cIt_(n$WSGPMM )]F)9|E68jB7:۞k2UyEdjq jw}."'5aIBmeUpN!N[5\$>XOiUv$?8" BEWp]¦ TfaC{igc (H"LN4$^mU&;:F>LANC[BWqpYf{`}n{?A rcbݔu~vlǎ4V}@{e-i(;/70/@(S'M1vZ8t;71 o2 ,8&w6wc{J{stB?8KXRV VڍUW\aaCY!IwAi#: &lb,:bڍ8;[47K-æf-%2mcO1v.M! .Y;r:`%Mg &u]=+4. 2& j?V_h~wN I^ZB#˦%Dwle&#q2hNoй\~#! 1HlXz'>u^jbUM04 7 hEoPE7C?X3p<?:8]<iFJIP A:N<)X3y0rqoB, ;ӎsjzhI'Xjw=,#G3J>8m46Qd^DՏ:}%e J12(#"*N%*7_=fGFW|Ickf%!OQ7j>8azVnb*_C`O\c!s3VdO%dP L& 2C~-qi*ybY> lh[J`e+V\.UbD4m9LiP3h`(S_'$0-;p>yCR ]"b*]K,ToBrSZ RqMn9N69"ҋZ0t  ޿FʩnD]`~x: Gt8Wor)^D_DBO&z g&WCE5pmW[;S{Z iNnxnsaHe |o@cd"k{&ihE{~32~$zm p H[-{B4;H>B#HkeNr#MPÓU[!S\ M?66H@/}&#5RZr@4mlOc4n &+W>p\0tI~`GJ==Ѹ%-e1Ļ vF;ncHS{ lL"':6Yi$SCVM,[cI)b:DoK΁^`y 8:C },y#*9F=PK[mvҿmw vtxI܏F;&6g&(=j$3^vUzt3EiAcHƀhbXUId?!b 5%qk >JH 2 ^9b0Wv b[t2oA) !/n9;v0M'Uk#yc @G4iD~_|W݋=:{bz)vR0!"0&h r!p}\Aߨ8 qpK/KM4^KhfLjھEҰ6<^xFzxf/RW/xSYv fjH67./v1-2_J>O_^VULqYDcY>2:-nI(R 2(6L`B7+F)T Gr6HiY3jf "lh5wd4qɢW$P|S*aDx@[+5 ;FeTW: p,36C61`0/30&% S;r iS9P#C/@44m29Q>UN\"TćK'8Jp{W>{q$}m%nVT1<3ocеђ,vvq(kwW5W>2 !50; 9O:29>)8|-t^vmݴ/>cGZr4< Cn:Et%ICoYwb2zaMl"vh^̉!G3y'G\mwDZ7>(. 0 VetmuԺC4d  /=j6On^Jz rAO;)MLBfb82nӤP!٦?7`bk~|&8sVCOiX)YR9:429n!jF+UL_pG#",4R*I1O)Hg6G}mB;}3 w!2>=:\s~h>qah>$FKpx1%9).%f<Pbl=rpvV(0{m.yKCX_E > (?9H+{U FZ.rF֎͔sQ}}{.A~5rtOhU{m7]-9a`vz V::!~+$mO]W@P-3?:>$eY7w=b˾Hg,, `HJy CD2zL_*OlS,a!se N%n-s(H-ruas\f $Y:!TUw'gV{;(sM! "H߬ a+^K(`WuHl7-huhz N=4wNQĎ]d5bQ5F5 %RLZN;ki>Ww<<2 H˳GwbEa[A# ^Vx7{ԆQxPh(_^h8[mn_9AYg2]kxcJ#GB2EybNMɽì,l.~6\I"7%#J3h9*B?36ٞ%mB”kOi 8:"! #9Wcj,w-<n3/#ȽB ̣ QM>AalɖxȘ̇vAΦ paljoUͶ/͍DxRb_vD'eS'"7 ~%sA54L>_*&761DXMVNQ+Dr38?=<k"2e\E=?u]S/ ]S8R"pCVzc9U(r_Ȋ}(y4b:kK<17'n6s>mA+VRlGjrpY^6cF>rD9m 6(-4@NU bZ, \TBGO>: CFC JULiL}KˣPVfY ZUY :^kh( lCi[{p{Ir 7Rrlb`TZnf6~х]ƣB'O 7 =}@R| !i >H~1i#V@i"ڍ]b8psf/~ny( {5o?QhLJux^m|roT+ޚIHm,@ #>VrmŊ }RC-&]ENcx1zԳBd9_}AwWckWc\Zc]zo@'xi}`ѐщ۫w2vS~x8htРezN\)0+ hڷNݖ &žm͐WH=v3|["jB#/5+/$Z;i5hE1@%'.nl҉rh`t^]aCSEmVPG}BP,<#0 #:t.W<ik)N .Z,(& b;LZx"6=ONXdor-[\2%N@``y}8y$vb<*tTvfe)FvuJP<>Y"BfIRqFpCPl@efRf{mpow# ~ [q+/&4BۜQWf f4(I9m 0P6~ w& Y+jr 8[#1A(-M U@&z'Cq v||Qfn['oوeQZm.-L&&xPUX5X93)7=ftJ]\SuI8<xYylj>H n8{n8La=aЧ_(_lm1r2-"K6dqA4"t,=Z0=so/dJzT*!_IɣKع* ̴+4 ]v5zbybқyxQ&_`bh3z~Y%!_+EJ;e 4Lv+'E'֭0 3; x<5r#,Dk`Q;2jO&3xA@u=s6/u^1c;JKBKU ORag:sg%t5[-ACx+ $u7 (8PHiEP}PJ1Qw/#$o'4I"A"+F,g%y1?#Y21k o(#/C00,f+#Q36A?+QP 88}Y@5rNlq{I.r5vi4]4[QdCp{4w7/x,!hZ&I[?<\u-KС<)-"bc!e"$$?'%uS.uG"ajdtSHH#s ֿHxvU/, !}ag$@\=wZB\Z#.>j_&{YA *BzsOfr L>) t}FbcB-SN wla&GhS mI>NpXca&I|" +9xHTW74{!3 YR?3x~;Y(A}cs 7Rg.#.i"6$%=:!Z_af6q #a4']S2~ԁb/xUmkQYi=JWA!^Nh.xL|Nk,z٧*YS5Aacb=Y02bZUuOMNTNgAd>?Mhr¢BVy:&#D8wNsn-Ñsф*LgDžfG't/y_PszA.л=VPG#1tf_YrSHCo/ C9ɝOm,'`]hnpecTQD:>&@ 575J$^"r  h4Pj6l{)haOV+8;O#K c/Ą9/?eB3%& (0|,V0U},he#'196n/Im1Cr-$~x Qu gUNE$D2jr@NgiU N@\?^rapYF.("(~ףQ; 7 [{+K"fw+>`7;JD<0=qIT^S6F r Fur@,̈ʿ[,iS\l,%|VBu^HW7 +&6;QI\9ԞD 4Me%T6i{Oْ~n>Y %tMAC|@^<+qR<ΜKTȡ .lvOje!&f lnja|-c`OX_IP1hF j6%& @U)`4sD5]yvBkdWy@7=2r 1*зx?W 9rjqCU?a>BMH)_@QON,srA#E!CP(\3.(2='T.w;qJ7gD<3?"uIrWY)PY4 * ACvT"a,h4Yz @EN2VPkZTLF;O+&.iA 2PpG-F>4am =M; 25تkJNXR\$[dWPb)moq%n0ca;~_e$ a)U#6#(" N@ @D-n< PjJ3¯?GTFf27^-t|Z+&xdVh eo#e_I^bvvmQlkmlmraG[5BSK j z^+&s^TKcn\>.+p>O), g[~l!*v( l,d4 b4BfvWor\ zkR|=x#p8h^=CPw@#{0f)*.a\5m;'wFDX~jmCKYOmp qU6WLC[d4y|F)SF6]8B %EBF_}JZl- ).-/F?PPiO|Dq9z#;=r<Hj;;GK:fB}I||%ŴO!6 CTV%D:̃Cl;K07u(7aJ?9JJٗ L_qV)Oh3_Bߑ gd%)Cx}JfROԪf=~0f&tbx1IkXa\hrIwN5*@W) T8R |e]a;j ն#.ݠQ9"=cD9aB$3%+U%I6Vc ;Ad(28Kr*c5#{t<*ٲ}7mYcLrYնbOѠLDm;7jE}UhY7Fov=6,c&%ظ&v)a'$c{" 7lQXrmtLKS wtn*-N{[`JHM<1k'd!>%0790i%{+a BR$yFJ[#<6JJ3'Ob(i2\"BS&I/jĉH<~gHSF4Fz,PNORorI?Pu;9FQe[4<c&]ml~a/ Z#(a78˭GǰP|/VȰpUSOXcaz^o}z`r!׈ 8JVܛEv<02x!>>M!sm&YC3#"( /c8L5g-u[|ͱ|ՠVܑdy2IjJZĿLkFm1CA~<S02{ [IewD>XCٞFa7h)uxB;kwM5`aY$xWkoHS0 QڷP0`$3v`P:&p;dI[J:wNUvX4VJODf3|c{t'F 8ڳ%(6A+5Xbm jqѫ}8e+s?ofd `CY3pS_lP-\ny̼|}Lzq a3P@E3p_%gP87Y˴R<}c(;Nz9rmEP<.'!Gvg(NY:TVs S}&q?Z=Vui|'} lZEMsPFW^[Z.S D}W _gfx ј :3,VoNg f^+B7OG\6~VŰM01;d<p:@VJl>P SSRRз`Kpχ{oS)z5~k߬,Z"rfs6bMN :ge&(zjk`t]5_RUEJ6*:*$ uQW(;,yOD[gdip|u g/$VtHGqEF .C8!#8qTt;6@*0#%r2X535.٤&}E\ =2/v]Z2 سI)1U$ĶֺY#J2!Ĉ^k13&vsjee_20hb,jqwv7Ek*ŃSh1J2t &,7=I`)}"\~:mb@[A]^[(V0O Ho@XK1P|g=KZ 4b '/E\g]r- X !I83c"8Q^@hYj~E&l G,LamSGh9[z O^,!\Ba*F ,a2i1,2 ,:M>Ya?&$;!6@AO"Y7_OVGGDAΠ>y?R?;*140v16K?GA9}|:c}6kJ64;S#59'1@],a)+P'`Doe:M+ KtjhsjE_kFQhI0_C:R>tNCM1OdH ^0?Mmd.xK#!f۸|Į'U,~i/sqx܄لkK9Y[w3 (/K޸LS"*%![U4o'@ W#/.8FwFeXx&tcv\ ړ[SkY},PR,P5[i߶#LPE4$|$44",Z bRc؎w\OC3(X("u&>8S&O4Gp@oPh9c7ʳ:gp4"t jSlg%i?EbVVYmKEKnN.NENO)XY.HeVgg9c=W $POIMHJ?P6O8[s=?:!2,.#0B"sJc7 _=lޒANu#%SF3;_oH\ј7qi`@RCrp3_+[Tr&xJm:a % kƼIHk_| Ow5>Kvk5s 4tj5U8C@'6O*acQ y ))~}!~&pd(^[`Y8jlh`c`6iTXvszfx-zz3'&.2NZ1~,~]$ǀD&t-عz?/OKA3 FW()lCv`&eVv!c=o@<{>.\ 5y-Ptf r{3qKoߜq{׃j&/|PpbZ?SAG,{d\(Q. HF^v["7~LIT7V6ToNLUHe[|],;\\\"^*j Mw|%ހ@v,Y`Kuʖi'N k88!&];=2LOP{VO`ku.x2{0օNl}.a&j>0D=K8RV3*Wu X$Z4W;L><j?(oF$LL2J]DB!D^?E5E{&9~$n9d[ZS IX=P5"08"+A#Zʭ#sajenTc ^Kˇ6,#ϗ% Q;p L,584s1n;0h,bK)G\)X.=^ Aec5XQdsr`Xܢ)WeZ\]Y*WS?P_U6fhkkx@g}3ZxRApNbPOpS7GQQ2SP\4j|4VLD_ЁuL=hZgAx!KZN+5{i|0ͮ>`[Ҍc=SW\.ױ4F{Os ky_«J2{#s[e9`WNI9m&Kq_ZIT>Jq4 F*DI'V)l$Y͵ul#z@&a 13ER`IP}QJ_C'>x]<i<2 7]2.\G.R#3*a5/352<0L1._2h,l9!Mgcqec2^Q.$Aqm7XB/C&_1ujLe2xrE8loonMxdxl0n+cdRW@Ku/D"!D(9KLS[kgfvj^ڦ[vGb$TcON&GR?dmK\ XPa<e}b:xeSRmuu~Bs ,HecpJD& `JnU4׹k I ~6o?Qs4g9T*,.De]  cWҵF#$V+`)5Lsqv{N;RZxk"]VqyT*5ULUa-OqUK&TK M1R~PK5Iu  Gb,rF4R1Alvu3&^&"Gff+B]F{$e i%)=N&OL||ݿLc]h4?0*@xD(W N"q< Z^G3AK"w99l ]4X |y`tdGnFHgJXg7Eln }mLDcXTR^MH5?1Az)-$=#L%!V6bYR YYZZsY*UOMMP~Z67f]p-G~Kө4l&GCkߋ4<%C)zL}?=TܧAwRim#]ŤwT) *zb4iG$tuÙ߀8iqyTwEx:9$w6+*v5tpw~x{ Dp,c?\OVPLHi)ص~N2|VCv?/&?#[.6w"7* ~'@( `UU |)XN$q_E(FO.3+o=MZ]kiGr?w{@^Eq33s >I.UT<1eoH]e&D3{cޥܓ+Oq&fJ]SI֔=4b.%#ɄGwA3h P@612X*/*08EWwixlɰ/o?$( }"%0';=F[X.m~ 2!8R=_Yv:r\:&|p1? 5;Dt(PC]f o|g'qnűAkIsMvED]7wY8o.bvqqB[ipTcXHNND̡=Ţ?=lI=mz=_X9 2~H+fv#rHngdhebhl8k/fctb Jhm+o;rNucp~|J8/c{ #/ 8@{P0fYgm5 c=c 9o+S!3- -Vܮ9Œ2"?5N\uhC{&u2rtdvMw$s@"mYkfrlVpTt;vsyz"=p6RURl^ͳةJSXt (qiHVhr!Ӊ[-ȥS4: ALWT` i#r~x~ ɢR¦)J& .Ի_3w41+.AW+d]% PKUyYl?:G)ssg_\QO2C6\9[1w,y${ ӲxpҠJ̷ ߥ|9W>OӉ+3%|pgGc]LW~P*I@8JX4M#p&O1OÔ_JIƥL<S]jUdXirX}2 8&([@S\zN4kFz6PNeAs{}|_Wya+/p9?cVH}T\XOFl5<y83*#7Z>bұxVH:Gp Hcb 7 "f>Be0e"/~`՜C&ϨzBpi8ZNNՃ?t[.aerVNmIZC<,400ƀ.t,l'=f dNkBwvl i6\9t$:cM`0r"n3u QP| *I$j7-+6<z>rHER T<+RBN,TKbPpW#zJ]!~bL}exmQtFx,q mZg%_LjXBRܐM2IBP?;|H5lz/& s7 $,ݎlMS0# #٠+}*h׿xTUA&2#GEI Ѿ/H}өʚԇj! h'ك:`~y=yk{~|_zxc$x..|t8dCJSr_~o'΁~5}w[4rp!q&oDl ah{fLfQ5c[QHFB,ChC{C<@>D`ACC=O3D*׽": /_cZ8b@|ټyuWo:ˣ&pՑW~Cv jʹ^R$I{Ci;m{0h>#Pg8! ȌX=.vomNtkS:) 'K; -/KPH\uxB2'.2|4I9a ]?FLO"5O$Qz(U-W14@Z1;lV@EN:ES:\r6bb/f'_gf $gd_ #T'C.S2el9HC|PwgSrA/* {}qYeU6[TTuNIKA)8h19u-kq-LT.< ."0~ 049?8@_=}9w6\7V 87w77:Q(+@8BaEC>N)BSAUE6UJQ'Q,JWAE^65iZ1vw50Є2Ð19cdB0PdI|Zn˲Y*|O",E<2y3v0+^!O؟ ȡҤP͝țpB%yiVp+g:]P2IA2s&v_"F' PعƕbDs{Re2E{V:8w4TkH A0bѯx%v#!ؗ)v`[ex2X%M Cq:3]0zR38@DKXTi6}ft r/0%0>w;FR `do|G)![3ԋg?AN^wq$ 3(OZ@/kAh-( # g- z j 0 ; )Z {n I[vWai]LP)?/n Ϸ  h9jVCC3$tӋB r[E'.1;<]Zů՟6$T+|"}qvNkrjnndku e4~[֊DS+LFB=g`863n6'\8+:J8I5 VL5i`7i?p LwW |dGrt&qU{64 )mI h7}zsQ 1s0"*x3>~K8XFwYa/qoeng o^hshwagQ|LbE~\3WSf~Qz{LsDg=W?7D5,T5Q31r/ëy/92n+4T3X=/++-("_b ' wT""##v!Q/ |d%*.g3>:cCUNYX'cA:p^e~|ћpʸVRdejr.K= IxS*3;^Ih^sot~}يЉL`=4%{+pGa,#z>?,OϞhaLsFKZujJz<xV<ev1!lڃ|un8f8\QD!7t'=#s)Tn̆xye,mSmauAU^.Is?97=/&( BCS/ .ڭx=F&ox6jI_<]vTpH$>4~/P+&`#-!~1"(/wr7au>{$E0XO_oajd_udxkdp fh|l"oqUuS,{<݁GFO͋oPЏM|:G=61ʯ!I#dt8߿H:g2iуq,X;?hгϞYp.AzDwd['ehnMR$A*2t''NfV:Ix>*t5,!vln va oKVS9, hcm"'} -|BeYp W%\ơS21y %BA3i.8 K-?'D\v7$ 1 pbP k|$z+p36f87}6 7W6{r4vt1 n.'h.c=0`T/[p,T%J>0B | F_$?tn!UClv•sr'6wHj'}x\rn.mmP|q&8sI4ks=t{BvDh}EzC?qn< ::1=LA0MGMT=\d˭jATn oa-mJiaU07Ed/E9_<~)ajGr1   x> - )2w3fwQ Yq7#k.ڄ7l@S]I;YSM'Da+o {'$#*.>UѥlUЃs}Ng-9o 9|OT;'?8\G#bRX,Zr9KaJg`_nDy$sԓv{`U9)30@͚KyR}TQGFJ?2D&}EVC %`-X7 u B bOrHdev(Zeo@s & WJװ>I RAi)#r993;}upnnpY5t\zdˏȝجü,5 ` a!6L xb)Gw0$ 5kT9`=7B\`HdI]GC9+>C:[64s1@,(:z&'L8&Q$"!R#g%&?%4"@k <Eo:"BG.=/1}qj`gO3ML< lA&}yrg`eXcVKIAP>83.*$5#}4]i_8!6yJ'`k,F3_0>4 H+Q UU(UKSR4Q'My4XKeA KNL"[@PSf1Sn-UrYqs^)rg9nqgz],RBH,SAd>˪>kA7>IYTߪcu7ۇ0|K=g}FQwDrDp.nYlhecRdQ|UcftbR^BAlV1-M6&B\l8/`- $&éKK_FEt}h]|R]WJ@A"%p6 )tw52MRk#AYJ<37/uL4}|[~( À}c7zxzAyQy zF}7TtSRдh.K üH"G7J[0j{- 41&0#q(,-+B1Y96qLBXJMOQRT$ VUU[VrYa-\)[PWRwMIDe>p7f 0bY,]+<m*z)C&\#" N^yL{ n c|Y9PGA=':c8FJ5f(2.Lm+f'!<ѻ m/0nm/S?   y/DvXlk'4C%eS!a[oAQdOa,D } \1>DIS ]3HgGnXZ#vjkPzƉՇwXVUޔ Eo[nC++ =%#;*K+w+Hw*&U l Cw APڵ1ZR}xblC xٺ~޳cj!qѧX'BZ622(#8%&w(j. ^4]QR%bcB.lp4yT=GaTkb̜und xD rەT(&@Y0oàѣ4a ٌ"6at'g.Z1M0h?/4P.+$-# ,**C/F 382y:\82655R3&1[+e#s0r\G3W  s;3%2&ʼCT-?ѕ*SLdeyqojhXgfJ;giJmw'uAmc܍ZoQ8JFFrHJ3rKMQW a_Iehldp !ux5Qx)kuY5AqC`mlSkYdGitfcnbfcf fdb2 b1Le*ipnZ}s$Ew/}B MY!gԊ%~wBph`ZTWSO$Hv?pY8"90*$ueQ` i1+ x/c#iciSA%WykZ'Ja9,!+ pis$jd/dd#isQQ$@(/ ׍Fnk,wBzqjZeaf_ :\k:YTwX'-Y 2b[>]QMy^^_.rVbeejnq*v% {HjMYv!ƕ^m'F};Yhgm2&{ʪPȲ4о);1o9AoJR{Z|`fhQ-r=z*ւ}>; aXBΞyfȻ"^o'zUC !_ %Cj F""6XL d)Tz}B!i&.8Uz@i-H&NS'Zy_'b7pdHcTZ[dne߃|f~Yf%mdobce6hWjqi j n ~t%}^.CXWWbDBC|Cӿjɽ6ӑ{h@g0iL,^ tlmܚMZ2bqޟ۝ x~z>v:nd#`]{WofUNR51O&?N)POoSWb,XwyU7QFMIOsE!=_6R101sMU.j/(F-p) 3#0a$ Q Q+=k1Oo=`kZ $3>DD[A> 1 2mS;-g[AD zHO- X &Mwpq:"Q.<r|$o(y%*m$+}l.kv2\[?7M;BH?9FU6O70Z9Xdcҟ=$ m&:ߥ> %zn8J [ilc}kތ_ϗSDBn2ibH! H#®/C=8L YqckrhCy˟|}yrJl'g(b٢~^eNXڒR$NyJlGG^CN;R>3L/ *u$k!{r/Tۊam Pn 3b7)}[qϻȊ%qf#f\U TLa3B&6{+En#e_3N{kOyZe/+ ʜ[YX87Uni Tڒ]puaVfyZOEGB uC HS`yDo7~ J9!N"i/! 6 ɬ"&Ґ*|yS.^/>4 !;KCLYQTXO\cjL otv{jǐtEzЪsp: S&Go)L?}G#V20:AM MPiU|_˙!j t^`}DGjk%i{v,C9;IZ~l\~M> )2<yI7SZJ`9env|}&z3uWq~mxiqdQj^8b[Z&[*TZKZ @W62T"RRQ;P uK>GE>CAr>;Yc1UE%_IUs? 6rm."%t~ ּ[^ Î 8B~׼wnq#jk4id^f`SD;8Ľ,us"1y 5 6jx35GWemtz5||{!y{WgїglbKngfv#54FT?_eeEme`pX6nL<<L&SeOy8&E*i-W14T77«V5V44.57s4i0-o*,YTB,+4e,*+/6 x@RZ2GB@JA*DL+L;M DMH ID>G84G'B0+u*,#z)"9 }e{ q -7  Tn͐ŔLOc~NrL+Hc"b9v+j|ͦnk's3ښٜ^(٪M?$c- < <;3:,Y<څ?DzG9q)GeGXGTJH9I%FB@=?,HA ?7-vy g(i\SJB<;8899<9ԓ7p7,@8|7t06`j4^Z2DU4Lq9qAL@x4I"S`kq~yY  %k{;fpFPfodR_wZ+=WRUP$PgRU-UjQ5KO4CDM ?hu:Ã4"-̲2% | w!lL$, Z&8w(.(8C$Qq]k|f~<up߹i1!caMcI3#jݔNfY^\aa=bWc~bCtaai`^`Sc[HJg;0i8+jk(tn#tt`Dzq)2gRMvnםiwim7uǙޓxnÉ׀FyXsmd 7h4_`*W5eQ8?LFIiK)GLAIq=F;nEd:G;M9eU3N_b,m#4ۖ7I 1l!d&!9MF M)7OLE~$99'<*?qpM`Uzz>'*$Սʪap \{Dfy'^פ\ϠgģfKؖW6T%794Є zsw wt+q%k[d_ [ 'WkQjJ C(@_ DEMVP|_f4p)R}Êځ1su]ixb``FdsKj/tnC62r DLa+&]7 AnJcQJ+9V6WBYM>] Zc&hmksy{PY-dT&< R eMr?*{}|LxntnP_DMC9&w*g.wz ;$j(#,'-+`o)rB'Rr(G+v,,R/,,ϫ.d14y$3;Y37?3PB46j>8%a8s5Z0cl-Fu*o&l Tl^nr pzʁŒq0X)f {an`xTUJYC)w?شu>B|M\Up`@}/{fw<rCXk(qerbwn_\XSPCN|M>6LwH,tD=BYBUD$E 8!FKG`KxP NW>[Ǹ2]o_/Y0$${B| z#t 0AkPW_~lN%v o,^39{rV%~'0jT:ZDN*LDP=T9pX :@^[hR3J(4D=6c R,@ $Wk@۵6b'qW,2> tv]j ]$N>J>Xh)sN'ĭL?OO$~3p?djIYyPNqWZGg`BkAGz?#:3U,Y&s!35kBV) vbv5?50j.mľjB -)eV5S\AOM.W+]cSzktu~ΗljwF`ǴEz% fR]^'t7$b!FTUJe=FsD'!FĊ;KlR@\KeIjlq1%utvuyqhl_e'UcoM=G`xC(Af0%C7H?iTFdNwS`UPwVWMX?Y~*oVJ.RiiNMO $RZSTUXr2_]c!fgufd)g8jTJam\o(pXpqu5By.|{{yaz}GɁ{OH\B$hYYqCzl3D^"GOAL4AI( d{<^g/IC.p|HGP #ujaunXcGOAEp;)2I(,{ ح*ML#DL4 ϧW$s>4ڑEd@WxBih|X(UK=.x X:TaqRq@/WATiBϚHQQqS;%%خ"?JzU"?R6ݭ~ PLw{آ3+8j=" xc I., $I).#8l{'E^PQ9Dj\3.cHSj-Ery?^ieͅc8M HfH}b v2pm) k,g#eR-fiqV1xn} xAyZW\$B {c#|vo2iepdG`z] fYgUUW[O"U_'#a/c@9hHGnWtiy@}zv5|}ľ؀ǃ~~b|zdz{c|U}1qbًWRDHԋf>y?iOZšKEs>y1,'m) )'>ok(ʸ7J(i}MfxM2sumqc7xYDNzDz:. ypIj_)geda&c 'cKc-~cܗ{b_~A]q[ g[^^UaKfmdDϤ v^(ʧ~iisC%@)=.4N:Br{bH;lJX0NB~R*Z&fJp]|B#(Ԍ5{dlefa YsSQR5 TF"W\2[ `IBe>@jmmkga rYH'O>D :Z 4x0bN15d\? xMa.Fy`Z2IRVn&Z޾X18>Ho,6(P= Ulo+!W-*Je1:T$EcJNHV*[G'_/gP2q0<}_) E3+rU B ?)2YB |Ou[Fpfdl rah ~c\QԌC8y2|Ŏ$i Tc3Cl##=FjH҂{kt1(n͇e[ZKX8:T*ΊM {]drpiya]"[ͧVSՄWR.r.T}_XmN`=zki+,xb-'tdmk Ûn5IY[yjnxXeAaz_\oX%RsKFB<E6.ix*-)(*P +,-.cD4 <GoSU]% h1wP Ke<Ҧt Hz5q` N_6:"&.9GUܗOb_zo^}iE/ +Xjg,}. ;n?֦yu΢C~wr5g7[؉QaILKN4tUÅ_mxxmqWj`!SD+5'X/F$Zj|w O-/6ْؓ *ęͿXsc;},GßNb|dŔG`ЌII}a"|K}xoq^ZiN%?3+>'&C%$"$g)#1 8<=Y;:?)<X=>"?^@?;kGQl[dmjʨnntXyw@~o`k|!jx$lftq|nuw.g}[>hM Y?/1Iv#U}Pt/j`LX~bQKGGK\~TnsbfCsYMVKe<10 #L;7gS8n]o\XOl} qph_UaE'ZOD<,]4P;-J('Zjt| ڏUö=ub?|pQ$ -A8GU5`3ajtXÎmAtwEiYI9%(8&SJ\7n„U3!:՞5 @x of):_0xW\7P>KFFOIB+W=\=7cI2Sl.vk*P'ۋX$4"^9$)(0ټ9 ME*gSudSw(k%d ̵K*@<0Mlj\xk|yx|urtl{<5\)XV~ B4MQEmPG2o}Uz w{q(VmjbknoK+tLyPBJðp[Eq??LU*[ (GGi7 f:s$Y:X h'4YaB BN%U ]fmt ursyqfVnll^hC`$WrLWB=;kz2'T(&+6 qVcBvW N G4FnpIrR_(q][u$6 $a;kNo_rkbt#Q{Ad7/)#HӠZk <QISW$YZ-JC7kUd3q|yD~j}xHodWJ;+c 9G-#űj@Cng<\8rGQ04~;(I l h!R#&m>6+(+-,!,+_.z346]7757Ұ;%>@^AAB/3GyJfKmKvHGHءH#HAD>m <L97R4 ,9'%%1; FPr[igu !"J"ݺ!8 +' ;1Ov`Cgo{6zۃ`ÃX߀J{si_VFPJEOB?$?@@0@?2<z9~3?)b`4k ׏ ۂru}lQ {.| 'M6݋۫\ޓDvavۅjl^.TمRI:5~*hv'l_IOdIGPB.WAl]CIdIgl0Qv\WW]wdlvJ~~#BU)a0~^N֬s%/ȝ&J/6!Q+77cF@Ru]Q9jx\ʗ jR Ϲ q$8z>a;FD)0 '2Gз!B3Մo^OnD/<278_ 7K8I;;=/?m?K=93v+g"ZuzO?F= @O9/&rC y%k5GYfm:{$q3Y3: %#k&24?MZgtE7˧Oīd {^ir nE$* ~.wk3Dq9km>)e?]?T'>wJ=L>>80`= 9 4. q+)֡(:'f"'8J'w/,5/1Q0*M$As M Ԍy1~hsۓ+fU~eVei4EUL39E!&5${ y~)}auok-~D]Uwl:ZުqHi4~b y nS DE(6LGS\!u DB-7?Rd pua}x2u&wg} ͭX-szU}{Ibءv0DQ vd["~})#/'2G59K4{<T>Tt <61-+*(' )-Sp5$O=(,QCZ42I=NzIU4W^`gefyDm:tz|G;3"ãudh U1cFlU,@g,)`bb&du/s5:؋iAHw4QkoXw]>\_M_t;'d'ip=vyg}ɫȁkhJxR`qH _29 4]ԓPr|ɫvn eA|rYniPVHdDA2*;~"r3+'[%O=#> W1s>Ce (6E&~Tлcoxz:Mao)bgX2PH@:6I76%l4/x(&v"/(>7C[r}{Dab־%cI}mf^dR{6ICK?={o?CGJRlZ[bfHhJk ke gH W^OF<z$w?b Xy~g"M/$8;&pD`M{YMePo"kv'y2|=OHPhVhVW| T'yKMv0Cu5u%&ttOtmyGЌ+h9/ɺa!`>']:~XT.| 4j#k+C.̙/.x-,*B-.O3ɑs:_CF8Vicakn,".z-n^5c7Y5N.C#e<vB8 7e8"7hY41F1V.R-n,z($ג" 6E ~:u[hbsX2uEF4/DQ4ltxn`%K/8Q'θ 07a9]nj2yqh7]VT>NwXJ{qIm2GjDBhFZ :%<,=5@KT ]cg#i`e\UO|#={(|~RUA؞|G nT'|7}`14gs ,0JYBHı,"ͤ ',҇4z}@oPPhddxbesjOnu#SxlBm)8 Zz-T$'b,;2Cj9=@{$GMDMQV_'cKrC7&;=#YV]v³ G P 2=rD3FCb;` c0 ! V9^:"X%+*ɲK0=589N88̦8Ǩ6_j2W(SbMp!s\XC%X&bE;ƨ҉kP=8ǻ$7չ]ȲAͮaI_!62`vmd˨]\ZT|Q}ZQ0qFR fS\STSeO8UMV{MuXPXUV\>VveWoYzI\ͅ \OYiVޡTlSROƹJbG,FOtJZN$R%U\W=Zr_^bc #c@aL:a!b(ba,z_.u[?.KW+V(UM$U6*UyRa:QJR@TbqWWUSSQPcMZH-AHZ:p3F-%4PvJ?w!`vJQi4Q Hoo")O``5,)DBڿJ[߲9tFr{y|s-Y&²ms 8R7?Q_hh|DF,֦3اb!&0`@ʱ^Qλbwr7&Վ^B;´!Yպv'}%B"4HBקnֳGuʽ@jd#cT0fDl&s{@|=.jW{|+klV[=J :,k$ƆlkT{ $A 3 *x8'!&)-459^=>>:4Yr+Ea' @N<.e,$`o$G vR ZH  c iS ( */a Fh&\:)pBvlB֠:p36j0$$z]h zO'h y8'FIdYgs?}H"Z$M' ( &{'}S)wO.vr4l7f@:ba>=D]XA.ZHOXOVRTTXRmUPV9MYImZ#DX\<TE3=O('L:JH#GzEPEJBQlXx^OaԺdܶhVlo*oڶ9kAgC[da_kN[VcS$sR>TRVʈJX2[ai\ug'g.h*P+aC:Zo( +|`t,t*s"d66H WL!g;vVvt8r.ߤcJ;aI+tHp$ƒ ,E!/<9;CH@IUIHEZ|?75'\ u$8Y91uG.u>lQ x9'h   @ EEMXVz Fwn[jc;a\z/Zi'Y[XQXL[KM`MSd]#hlg}e4c/W`Q[SG9, !Y+ &W 0 |Cd }f!6$<#[3%%C(T*dd)0r% }jڄub ЂymQ`QA08:8/V6$/ h 1: ;  "m}t_c Ql>g+%mB>D!S'&Ae:'~$z:vroԴXmglHnrPw]2Z,va#FDxcd wX'2O"=47GQj[cd^mbwGo, ^$&4g&H$r[T$kN#x C πypf[RR1J C[?<y;" >M&PB[*H,mN*T&X !\\$Z YRD2(}eRJ3v- 8M&gS.=۷yqgvu`|^V aMh>rvy }Z$( )٠ZGd~ȥ{˳6tmenX^#WSmuV[bioxu# [&@8\Xy͔Z ;ř9pdRzq9Vh]=V;R|Rf WZբH^bgfok|xz~x{C~DžOx8Ց #:pzrl6f^q_W_oPJNp6Q!V J]~b5hqH{mbx1 }Y$ CQ\: {W& =/6&<H6?CG$LZSmZl _ܒ!c֤vi pIRv3{I~DRv[V# 1̮@jO^}n} 1-ZW][wsAſY׵ϰki7c6)'(JvRgmT>&œU 'e~Wwt~ufxcQ"|?}/{~(#* xYb R} vIohE_=TH;1++F%}B"ch"U)%pE-9:10F2.,Rx.2\2eI;oVHMxX}kyE~p}O{¾ymwGrlfc` K_-]]6bZiu%x0?*A`X%oڄFIڥ´vPɊ~Tr h^^tX`WL{X:[(^4a e=6jmo&l^fb_ ,WNM"B>2- Ou?F}i`˰`D*A")LPx !=hi9ko*1A{rBDly w){\3@vcr+P=*[#j8LOf~{Xj7IpZ u6&/S9 E&bQ.Z5a>6fGpiP!m][n{emnUivvLaD|gYKRlJBM9|.u&nc! g^U?XL1#C{: 1# (X^ 1,/nE̦#VըJxTi rY^JK='9J4O(E. )~ I$k{ k$_ @ #Kh3~:ydqjewcEdd~hxpѲz5;m--`0f% 4? HtO9U Y[H^aeDf/mQv':ÏKp]tn}/1Mo+ǝ DZon\~I<`rɒNbWz&o-c\XBOHD7:DZF/KySbn]fhc+tG% BL[S´DE|1lXЅB{+v>x|-ni c thEmH E^.9Bzx!HItpS6PfJM@G@8/ %,5 S<,??=8G"1)"M/ V L'3'D)Zs^&++Ȭ-00 ,@( 'CTZm }iO g 9 v#2RAOkm`9qGtRaPs#?I!~/@:}@vsBi@ _8S,JDe B }DLFINMQ^Xvp]H`_RV_G[1>DV16OD/El(S7d!%%UzZ7R:c&}zuapHk0Hgd\|b$_YPFM=1%FUΨ)© תϫѬg{r~}E° ,$ǚM }F"0s?\zL|Yw1espZq|ptmz?ËӔɹ)X fj2g=. S& J"u.98AnF=IiJGK_J uGAd:d3|>/B, g)'m&s(g.]7hVBQLHPVQ``Ujk\u2eU}o{Wg?Xi7~ j8Vy5ۨJ?GO,(E`''L3<`DLR$UA|VS\?V1rVÃCZɐ.^KSbxgmx'תLخϮlyM['3X<]2&D^GSI[[>LmKA}F"@Ȑ,;*6uT2C-J'q$^$HO)A22:*DMW!fbBlq5tr*ohwBkSqcnkX}eJy]9R/*_E4 T $yA߭ciHb)( g||%uX`;S={ j*Z,[IJ8y:+p!g\Q}RG+#='a4.,7W'M?$Ea$J&_LU,N4P@PN[NZ]I=lBz<e8709~)ة!* ݺFb$)b1 ;E.OWD\>`WdfegTvd^btXQTJJB8..%I`wl "&w+l-`.S,pF@)8%}+o!s\{-kpe,uջl7ffaY}__ `Yqbxd~gzil2>n pOqImqV)qpɖ\pݓp9qs\w~X :Dl6B?KH9XRSg]xtk6z.yL+V}m=]*5 ?QzL_#iUnnpjaUHE]4j[!:c=yMdѭr.~iU^Ask-'S+7.^s|v*eWDNHE@eFINTU$[aod[gGf 5c"v^V+MUtB8d1.%>j o!|*#6%zFZ'X'mY%n+ 7'8Os pEZ vJi+z73AJ Q"X)Q_2c;reEd1N@aU]\[Z_TaNa[G_@[?]5C8+I /O4T VV T=R`iNI|Y@@5*dA N.SxnYf)_XS)PMjLbLL^L1MEOBGR|UGX[g$^eaQdQJgjntJt|HQ"&<@7)ER3*QM]gi_t7a~9jBDZTX  ]Q$~B0d>+MM [9j5dyBz)ŕIvh0#H1y҂Vk}w]hOPZTCW<6e &Zs1 {C\@q(1 {M ] >qcŝy0|}kK\zR7L-IIK'NT~z\}dQknq"tkFuwu#q%i`{X~##Q1JF;B@:gB5@3;65=,D#MQnXd s/ ߠè4!)05 _929ݐ5ˆ-Q}"!xjuu<ww%zʱG~DoΆ \jDIj8}*xrih [nNW@}2/$*|wPxO3j{"]*QFA<ԗ.3*@$ ˂{~ vxmDbU"K'$B+720,4e 9N?G ?Q\i#v7lY v'S,5/N37w : R>5>[I>[I@l,Cy|HȊNvR X2^O2hu!X6t+WAVHj]z}j5cK|`v l!^${&'Fh,9)5y@AoN}e[\gUptOKЌ;IGqFEEKECԔ_@'9/xh#oh(8_MT'JKxB6>e=nj=Z=Iv>/JEK"^Q3 XOF^Zboe? hjosGv$x:y| Bg".K9~`F2R_k4vJ#'(F1G]6:?ʮDJ6OϡS`Y{bZnt~}u0amDe@]9UNIGx?*7i.$2}mS1c,jOxL6M B-asm _v8GrOIK>ٮ*oK@}yuSzl}f\\czb׊e8lwwɠͥ@lۡ͟қ1ЄgB<}O1whWp6[RjZ0d8W!_Q^MJ'b1Cg;=Lo8fw6h7!; AJPwV?dus>b3ȼD?KZ+D#Ð~\iVSP =S'œOԣHb Uj0EO@q' !zFRkKZyH)5|$pdU9}" q,u;>T w >&FrTo@_RJUD:?|<;N=8OC\HsLFOMQUUZ] ^F"]9ZQXh*V~QL6EU]?81@FPP[f iTt|vׄz  r%@y, 2 %6L8Y86Ȏ>3r.3(e"ΎeN #ƭ̲vPsz-Iϓ&!| p_aRA 1 Ї>W`Z!9}gW/x|O&yn/aAU1gG}8uf'HkTa; YKRNI#EưBj@AtDքE'}EvDoqqCwmBjY@h:6f2pc(_!,\XNSdNeIaDVA?OO@8BGwUfVG$8JA*OK 3B T&Sb*B,nh-,t)Q!c/Ww#Zg zbeLi7y%VB ҷ خ],#Ϛ/Q;w=F3dxOP%W&==\)^^[j[Xp/TJOKGDqCZDzGI=N4WKOcsy5N̳BX"Ͼ!aj0U$;#~BrF*lHuiHgGhDj@oL=y;9Ɛp9h:C=B HOjoW^dijn pnp,lǚf^T7Ho:4*:ziPΆ|bryi`ǥ XANJD8 9N}+Uoba3;VM|C:3.6$.~,/d/c.jM,A)'$܆df l!aZIPK )jLY_٢O/T)# 4NMEWmjz{ä׋"v$q׵GH{,?r HDҺ) #z3|CfqSc~r%05:'BAE)Jۧ+P,UZq_7dWhm҇xuw`pգi|c(/`I]\\] e^; aX&d"g (i*i1,bg,b=.J[/BQ/C.3:.M""/3{:4hAKI#;R)\Rit$v<ފ^7R * łNx"XnH+d1Z)5P6F4<[2.704-)5u,7+:,J?{/GJ5 Q=[HdQVjemxp2&rr"ohbF` V(N; FL<`X[3`+zd&Df&f)Bf-Zd3b\;_E^S._rb*apidN|ni4px2yǡܜ|n/PjwNJAuƁ]]]mhXCO-whVSRB| hzn`>QO@//<lq|3 gxɰzrh "bΫ] [bZ2Z\z{ ^m_^`lMa;&bk-c 8er)g 'i[jl]orvxzzb~9<ʒLp1!*4(i$ +08nAQLX=c0kHt|lyMɊ6Ʃ\1Un}[xLHt5vs"vk{p/grG1L߭mܦ — ͉ vg]xmd m_c\'[6[[ q^]c.j9\q$v9&?x|;FySylv1rjPd_T~>H=1d$ "f% ([ 0*,Mh05$g<-D5AN7:Y3=g@w[BA{j>8ȼ1x+Mx%KQ  c%l}lO^tQ9Fg"M<{)3/-5r* 9(1:Z(5&,$*"!m&|-:mq3J̬IunCbnPQ@1z%yYQ  s+%,Yoy1:]5H859%:; e;:RQ9}89:O&=@XDI QiZefrQ*s8F]܍ \&M1:TC~K=RW\afmusy}}KCy+d&\}rxNsooQjd]U&9N1Fg=I?6H&7N,S!UWYqZ-X<W~Up W&[6"aT[fS/lr-{҆}r{fy+wʦvswڳyyf{!}ʺ~4;g`~ׯ{=wtsJ1sͪ[uxyLJacX.sEe pZ smf m~j!fE٩.D\5Z +$!7|\EU+d)qG|L&_7TK+_qd̦֜j I(өߧ'ՑcxueeK ssa |ߗfph%PfgkA/L4Ku.i?<z]I6OT=>4]-dFi\mP'qrAFsPrpB5o!m)jf' daKaV!be&dA)e(fG'ShW%is!;j[h:e`![DTBiLB>7)94 zz d0#*0‘p34uV5g 5IZF4L0=o) .!/]hJ2 T/sz :| p|Rwrm i 4fob:^XZV=bU4V:X5]bish}#ӠJktxBɽκctI!j,5ڭc!W<7}0Q)c!-/ }#/=wK/Xbk9Msoz gpG7~* 1|u#psjSfh\.h|g'hjmtw}s[qqxt*_y'ՋbZzlme`BQ?,/K1x>kHLHSZbzX/_F] st<mT8q_vhO?43N* ">&*"G)R0J8"BzJ P;S 5S+Q4,O2=JrCB?G8 H-EFw%B=F6M-cq!r6 "(3?ITyj`_l]x| r\iaZՖIRÓH =X@2|%v q 6lkgc'b}fl~Wsfzyπ yΐoYgUMa[ݡ6W5SQgPTOLN|NqPQhT_bYuX2_LPeI_k{F.rE"y$HJ†K+MPLTWX޲[X\\;]="^Q_B]2Z ZVR|QC)Q4P!@hPCLP+YNSf{ZuvcK[m-twyx5/Jʷu93qha^a,): j#w2CMTbfqIdJ7ζ yH+Ӄ{rSI`_LVV9Q&s )"e/b;seFNFV];ced`[`UMGDw8-p#dO,x4Ymq/H, 2"T7^HLg`twH UG_8>4un;i=hʽ7k^oty12}*!S^ 1?́Wzf rZQj_`}UnH9;0S '(&"q\U#P-|)7|@jJaZ:UK|_?Fix5Io',q#\rp1m g^R^F ;1'*"FhP,9n""#: (x.+&4Rn::iAֱE5HqF,B<ϋF5*͂ |zx#wѼouJsNqǙo:?nl&kQklzot.%||Hv}pi aUGG9z+d Di%30:|D?MUf]dnmCu g}/ 5x4cf*jϝ OdV! )Ӟ3N>ShH4Tpa&oh|%݇ NyיEspl/e\˸RмG=4#,%04y8#x,5?>mFKL L#M&vN'aM(J( F'A>'4?'>#)L>,>x05>Q6}?->B)HFSKvaNpvPfROTKU(UQJsB91./1;B2'TA3d /r~z]_xz]`MWV( VH3]YFZYjZyHq͘y87FfR>zpfN\RIAG@;#q6Gp31#0&/Y'j.`&_,$(7!#,P]Y+|iJ#W,6G68?H.`I&PU"TL 5TQ UO #Jn%C_'4:S(,'&# 2U\ 3:okzr^0T WB*/B8EO9SrR`om. yƅ~hzoJgu_$$\\]ڭ"_ aOcglqG)vxW{2~UɁ3ƀ|#xZtOqVGo`mjIj|mQs+||Hڎ0 ߴTt@h{\P'D7*w6CU w )ky!S'/:|E?{PvJZcͅ!n+}|xhun0hQbo]͗X%SNOJ~E#JA>ߡ=>Q@̣C\HuN!V0_h(os~c#>uS3<߶k`9 4*j3(=hGDR^Cifu1zLe^k^"f]}=.t pخ%J*ՈH^|yt`u[p4|ibaCWؾJ'<,n ʛ@ٹV՛E ~kBT[{LGYA82ȱ]/-N-./d/|U/jl-\*MH'?"2%~5M#[$jf2S< 'V7Gc+WfsKwɀfHXkIhazKnZ/cj;WzQI5: * \JTk7X>uܱ.5dۦ(t6qEZZTMczqyln:pbDWhNE>8 ]42ן37<B9xDIlQ_YT aJZgAk9o3eqM-s(s$r po{kfscr Y_&[V;kS-[Q QSWa[hy3ab&hLpV8x%qE]aKׅV xc3mbOWWMRB+a8p.&EM .t?fsKi  ".e$6mUI[em@ɨnO]UtQQ8tKcp Zhsi %f/O]:tEP\Pf?ow~`|&!Q!V+/(<HTfwbzpCu^noAib/$\KUO1J4D^%?94.)s$|%2)?QK 3VZ y`jwux~T͎(=՟pĢ5GY; TJ'u1=OIrVmdr)*'oJL{=Tw3 1H%%/̬+;MGHT an |N.{ j]$TyE}=z7x!PyY}>>V5ɗ1fpzir-jc^0XTPnL\GtA8a:#2=' ӴbǻrHN$K x2bVN$<`+4WW=% !+d65#WRj'kw}zzhh| ~&}u!pW};l{jy4lufpBovdo~W\kJ)</!̱F: |REW8|? &dRmvEK>g&p?y=],RߥKe R!AEMe'urzoe\TMlF?os8yv0)( _:KA:& ,29> BCEDFH I%I'H7qFGEOTE>EDCaDF3zIjL.NNdPsRT/V_T @HCDF3KR%[^e}p|~UBZVq"ŽBiK,wjK^hRRH!%@(9u+u3-/G.+]. )-&z+}#(y%i## %i'*sL. 4<@D%M7UK^cgy;rm{c׃S\=+WΎ]TڒSrU&Y]\b~+hm)rw2|nЩbX/ =ۮNq53iK"3C lD' CUeSDvu=\"+Ĵ2]:uAuISD]Lf-o wj'61;DL}Sv{Yڱm^yb[egc7ihjEjiah[fxc-)`1\XA T"%P})J-TD!2<6C4x:$*<p?B^FIGKLNFOYhQSSrS|oRAsbQjQc Q]NtXcKSE`O?K|9F_2A*<S!'6.&+ W% m|PMf2Jdv, شI*4V=syEDcmzIbLZNS=OMNZHLDK)C;ICHCRGCG@yG>H:aK9O6U2\-cc'l us~=| oFHc- ~rzeW(G|7e]' N%,& n 3K|MH?5iys aL&[7 !|\ \ et yl*aQ~YSm P'NMM{MON]NT0MB~KNvHNoE.kAj_=zj8al4 n0o -r;+v*/{+-19B!}%OMz`]3w!ms}lz]f1)`ز[W2jUvISRS7 VE\.!a*f3l;r>D{L(V8`.k`wFْqw6} -O' z9m_  4 _P#'-7 4`:yA6HM= QTS UWZYK.YXX/Y@\5n^_RQa zbdhbhnjjIlS-lQj?Bjitg)etn`ZlUPcKF@m;v7m4G1H-(/$L \~s F u&5ODFQv^MjLt}} EcqUh?#qPUtz\ K(8ܬRGMU`7!jquD^wvWs n'g _қVLB'90v(V!LiLgk:ng&qW8$wyj`TI4QTq S L| |3rYjbc\X$DXY`]|aBsDK+RZZb/jyrrr|L:b?B̷IMEnm86dVok-׳XڵVٚ-2̎"c~xm~Ȍystyjo^gP_@X. R&LHG|6GgG1LFLDBl2A[[!?HL<?h65%/.D')u' ~% <$u"en| 8 nlkaՓbpo|t{^}+шIxԡmb VXI"%?5[+Y"y0gN{ha*&6J-e2 68:/':419C4EQ._'k_ w` <0S ݊{sF(js2b;Q\D.WJSOR`TQWRXT$WUS1WM*XaH~XBW<=tV7SO2P.AKb.lE/Q>255K,8f!=cDO LmTV^$fmftv{n(Yr[ $}<{.z$}{*D17VJ>>DbKSϦ\gr7JRFuR) b))8nG'W@ g w 4Xc M(+2S:BAgHKN@tU"f\n1ua?3eLgW2jal2joqRqcvr.ztz|Kw}{<~~N>}y|zy|y=6zj{~5@RaU h~{w ~FnzNcxVtH;r :kq*Xqq qos nl ki+gNzb]ZVPJBJp9/!&B8b јԎ-oy n`dZ*RK:GF|,ITNFVs`ly! axԸ/G/?S'Pئ*Hx>1Nh+ *gd+[ *8KMo~&9TAxj x^S JM,C =850 j,+&w i*hS54^*{3ghvV\F9m-$`U ,4+l1 5 ? Sy$5Odqo  e ao%',4x1@,5UM8Y<f?rB}DTFINSQZYZ`8f.nvHM>$K E%43?*oK^U=d]ch9l mmksi)fPvb]^6Y`U/QzO;N4OAPQS|UVWVSQO=FH?3&gWy] U:G2͞٫7N՝{yy{~~uj__SḢq>pG4g){B dtwkb &XB rNEnc<4!*0A.u)0Zt5=Ip.W4|gydX»վ>֟ǏƊ؈YE\’C.T Ʀw/WK.Z  D&k3?IE{QTt;WlY~eX^TCZMXCV38Uw*VWW FZ2_Tdhkmnank9efD'^6TTǩJr&?"3ޜ(ޕڌmˁm tme}U CT0y}- * /@ ; x F * LĪkdH;% < ǹ,o90n= 3l ^# %1'B(S(dt(t0)C,^18/A+IS=_4k~y |jv'ܦ6-FVe>tFAL qz9)+] o%9,z4?$=E8MSSY7`eD$jlmn;oMo{IomfdlZklյ%mܩm-EmؒlmmByouRoXtnu#lx[it}f+d9`;D[U2PK#THDCAk?4>6,?@:BnCzC@vDs*G/t]IwjK~NLɈKsKeKеJIFB'>U/; i8,W6g64`=4AF6C: DyACVIFAP>X/<Ha$:i:r]<$zBA~HR^ڄlu|րi.}-azGxuys%qYqps>kwZ!|L{w†ľ8Y^Fd4$m{Ч ̧ף ÅFO{)?q:mgC=]NRS}$K{Dm@t=mZ;G?:P#:< @ CDpDfC-Ays>p9j2e*aD^VZ& WTOJ*C:n1.&z &vg2Sq l0Hk+6i 8]m DD,6u(@G NpSGW$RZ` [\~b^s&`/c^8&h@mI~tR|Zaҏff#i)kl,ml&kL8ihi0kRmio^&r&v|Ip5xoߞJɜc ׎IΆU{zBssiQm_gUycEK^6AYl7U.KRx%PO'MKDH*E:CAq>: 86#1$-%)&%% $R"  mGZK!(=V2@>8MN]ow\(8iLl3%be ME! ! '/":52H9Wg\yT.`t,C fzXQ e zO r Gm:j )ijlBortus0n۪ h`#^Җ Q,@؇. ,2:}w#}}#  T}tuzTjuCcp{_k^c`+[HcPg`DjI9m.Ep$q3q ojd\S,Hx=)2l 6("('.2y 6)9%6p9VD7 TL4~d0Vup.C-,r)'&|&).3:4BLqDXd1o"zhЎo xa) )A 4=.E4LvQY\TRrUOTVR Nš%H@8$0)#@t:3%ol7!q@ \3 B/5{)ΌUȍxh5r —B֗%ƕTb`{#M>tQgf | {!+37tEʹS Ycsyεb \% .7@H!$ID(sS/]8qhC@rN-{$\jGx[<~kiBɹz&'OpoFt&iM^ TjMGCA`@=? ?=:+(6.$P iymrUm>&+?|> ?,D4&yXphz^U aN_ IGIG{HŵJ٧0NlRӍW\|z`Fyc2y7dl|d}epda.]#YAUhQNKKnGEoDEIyMR~X/Oajjn:u"*ܴ͇f'_P9nf}DŽ%}itvtpm_ l kkpkLmÃ-prsVauNR:vD(v39uf/ds'{ox!i w`DUxJ> N2$YLoT$gMD'(;1{6pfg_?Z X'Yb[97_c h~nTutujzn^&SH@:G51!/a.0c247:L#>sBDGTK|O&_RA8UIYZ]j`zmc,feh̠lq0wJ}\gEudè^b+:5nI#Xegqo{q" @ ƍa%#a5)x.pqj4j9bl?]D~XH$VLUM{V(OXWP\P_DO?dLg4IiEjiBf?Qb?<i[8R4IFC2803)/&"/.,<,+=+)f#'f#X\e{4Sd:a \/+x]gH 9P-BS=W~j|Z&Ȫ-FyuCyԥQR?ie5TZ$c(])i(Q&yK#7\A. h 5~Xmv U/lֈ'ez=m yb"?Y#Q!LcGAuC ?;618+&T#ܛ:P6[ zm!vڤ6rb5n5j~0gwdKrbo^Ko@Y}p]RrJvBy9w}h0`*%o+9 ڍ;ؓAdirjel (S5AM #$W@&B`*hU/^p41x:@AHbQU[fop{?|דe1`tOp="6#!Y!6T* 20: CKT]f`Qniv~!aRN #T"|:ҦߧdJ u_5aL8s$Yc _IFaK.Jno_ ]gDP8=|v6z&9XK}Zs.gQp#9vxxvrmg`XZU%R_RVT4 XN$ `>'i']t &XL#+ ֬9ZV"UwFc^N7T! mpfTFC]Ϳ7%:ݔ{YhIWxtFe7TW*JAi-l(XTDgX93rn?ɔo ]K9n))a /ߙQ;> o[ Sq+`}6@\I4RZa8uhnt{a,Hʥ$ү _#H,(3m8v?YC`IxQhZGeJoy ]+Jݙ9Md?cSv ^!!O'Vf- 2P7-.:G=a@yXDGJ LVpPU)\!4dFfltd~`M*-: 1OCkTpdq(| ZgCx nm^pNI<)]* ^K(}Fq<bwb\^9kxjK#]P>RE;+:0t(P_"_Kd8!'[ {2b($@; =I&y.5:Յ=x(?k>^ <T@8J73C-?[(=#f= >?Cd"H_(bM0Q;WTQHdUHVU eTt4RdNyHǜBw;h=61b.k+L]*g+g.4 ;{BKT_l2wҵϊ` ̚eߥkͩѳ#Ҩ6uxfKqXeJ:W=M1&qYG yue|Cӳҥv{mWUbPuXpP&KJVUF)D2 ERGLhQb#W(^-Wd+3Sj>82o<r@tDuItJNQsRqVnLZlo^\kc|k#imnq=tAxiy{@X;G.? iworkrave-1.10.50/frontend/common/share/sounds/bells/rest-break-started.wav0000644000175100001710000151707014221624107025504 0ustar00gdm00000000000000RIFF0WAVEfmt D bextZREAPER2020-09-0820-26-21junkJdataXh='+7?¯)K7JY-@C0p}R@֛>A.N7ܝ8fc Z 'v"[ 2L xR@l7 -B5~ + ^Cq6îc!eV tvP^ Es0!K Y)*" Z!C. yW`xE07@>mnC#w.͆h{v8 D\ZiKqk\;D^:&{k2! * 2D j¡Yž֏xZ5rCDKVV`#fUjpꡦ.! %t@G 8zcw- q=Xߣ"#QKA,!F79 81#I>" zTOz8"I=us/NVԧy153OvhLurlΠ{N6]r>e ~^c|XE' )H+ U"*y E<&<;3![Pnbw[lLR+z< K u(w9T5q0/-  y5/h ] P%!,)n!; {yH^f4H -  x=\E8oNya2.0r0 8IF RQ K eZi]wUu J]+ xVD~ LK )~` 疁WM  5*~Xr|/S RWMK;;V\0<ḟX6ބaKLe!\b` g Ep-/upxQT;K tP}J),8Җu䝘B>&17K#ThgLA&< +>+<#)U&5A$`6 :1}Gz]c)ro mYx{wr5{L`V@,r" 8,ä 83C 88ɝ6 5@2~ #/q [+G *4'rc \% $ "f kW  7  M B _ !mb*60Ƭu362/9A+K'l~"AUlyY2@! lr vn F ;O4 p8 "q1x|0|{XKN9 ׇm &T #^& 9p3~+ pKC j;Rmܸ~N #EVt(:N^*M =Gz?) ?T9]l?3 'FC2,kE܈AzUۻa]عf w5GUeʛʰ%W3&4ғްڽCw _(U+Xړ<ր)lҌm݈G T#]t\Wī;?z2õJ@{hnUL3₿Z0"2,3)!J$Cuۑ,۽kEsܐYi~4AT*_+R("ٔ峲+^lEXuDf:: vaPZ7'w1 rﻛ) JhKEA{W b1IQ9*F][qLIcO(}]{{1XqBoJZq%H%/g :5 X7C 7 5 Z3&h 0h@ -B >)P ' ( ' ׭& u$ &A nw  Xv -  T5#rt+/?R37L96\[3t3!/+N'f#YF!F1 !Q> Ɠ>Wk2r(nx Ee g:4-J,[$k&P#O C{ *cM h < {w2Հ+gYUu\cx/ A X Ʈ ( k m %$JRb+)w= a x# >HxbTsY(ZJG.hs5yԌB<ݷ/ :p 5G:{c` >읣|-c߻uO*i܌#y'DHw֣v bTƣΩbR56͂;ߤx/ `i5,qwM'ogvZqz8IvXs ۩ م$(367۞BLO䮹%6{)+ť1Ԋ3OyY,/~[Yy\K*I8AY|n:=)&+#!% H + 2 Rt B{ 5r > Rb8hC=FS bv ;ΩeeΜq=ehj5ۗ< );ѓ,=VvhѤn_bOݡ_[sNi:7~ng4:9Fawrr;?[䴽dޢZ]⤿sEoE1EPva DT x3+@X}yM@/lkF"n.gQ$`)Tw; <Wctc!Pb$@,#o)q"lb! ) BBTC.xN;H3J>!}33AhWMV '&/>/5> c7 6 4M v1 d /.#+` >\'2 e$=_ 4/$ # I!e Lq1Arkeb B ~9- # %&,?1 t2d0{J-pJv*?!'ܐ#,Y*u>W> nɵs 2  ô S 5 UW jbvI{ttמBxS.[B {?|v;d`:z??fu v (; d9zHpeWoL 8W>_T & Xob  n ՀerJFs$SfSA78qfYx\_Ұ_ :bۋ{-%ZniIhaSO'f]n:%V٫lTkYlk\f4-XњX%Czs6ؿ S۴@7=| ,7烠]#a1+U-eK1Y';`)Eaä M J_+IJNlZsgS2 #U)3tiP yQyxF˪d' 7h{ת<Om!*R :t- u Z5 ,S#>*b /9/U-2=+5R)N43&%"[p (ݓ<qV_E+8 {} K5 3j )#m&l(*:~-?.p+8p)w"Q' )$$I!|h'' . L! ˞ Y V  z5 # e> y/qf w_Q1@k4Ly EX9&HPҲ ?#j?dhxG k'~ EB2(=-HuFh 3 sx+8`?.,kha^y A|_J ~yF#퐨54^t\Z-  [0zهb.۹  X:I۷'Js/9M ͖AO@ʉbt݇6ݗuԝ[(Vw2Ԛ5. /G_!J/<60-RCB2Ǖu틆~F.k1Z }0 .+ )^%=!}ν5 zrW*$p4)elP W \#O)OƷ+H*#V(/ &E#H9YYŀ  Y(U mr ]* dGqUHv9 g k 3Ed{K 5| pMuO_>OT~5O cҵ " T j =pb/m(C扡j{#[LE V y+? +Z0wR;v/΀ĒY2ۗnU}I>jdП:bLԡ01dЎLUb@e晲 )l L0ު,=nz3צ-ժ% #Ck;G:HL`]fپV+aWG8"N/m7*>76 W=5d 37Qhv +5hj͜8دZ] 1`^MFe?G +Aq~V.. eX@ A PG|* B&^Q^mP;j9WpBSf!t3%A\, Z C1 ߋ21 0p b.0: n},e\,)ZFW%wY"UK!n"E | #Q !9 ')gpv0,^W< 5#rS*~.t/>d.+1l+-%(v͌$x%DnzxVvue-n g  /gU;!% :0 ~ % tL :2pjhMFg\ܻ!&0 ҂j/}9{wCfa G iyn`@t;ֳWm% _[{$DQS"V8jɓN Jp 7_5; (" S-*zڡ2&s/1hOElنL UtSWc$8S.F@@B8g{6:}ܳRHݟ+?ܴ$@)w`%KZ[++,|P O;)o-|탃犙Dm̹Fz+釁\.}B_Z+9瘪ϗ舯v쏘St, B>aX9͑/ )Wl38?E{;:,#gט[ #'-2sT*j Ԭ']ӳNJnG +~G_6   *-E;sZI3tAnPH)pnlM`!nI}25#,8x;LJE$*C p-' Wy-^b * +Uqy(/H&r"~a.Nl9i'>k?Vl"t?8%ǛzF8!R ;'b-*C)X~& s#. ;LVI #Q @"Ԏ   xxaɐQn;?}Tg_*Du z v!ԳE;>]u %a4KL\+ ]L 6D3 ' [ +-' K J wqz(_u ;z< ! /)[F5 Ŧ}# k $8qYyM>̑l*m$6ӑKzW0GR^N bee,T듵B 6^|q~@zri6ܙxa܁U`;7]ևVvSi\'ъWax֭ hTuA,m'-uYINZ!YqddLN-u*Rݰy띔 PHg`9芢_D*\Teguq8I]h5ng^;T{(vĥn(g| .cPUVj? N:+q J. yb F"> U#u"EX ! kuv%*e CLPN|7*Y>YAS֋yz4W#0A!+ E/-:Z/1IČ/:3--W I+v ( &;#N##s$ $$" mz>Pdx!$ oX(+,Yh-#+9Z'ת+$"at4@w|9Y y = -{L%U,/~>!~Pc {AyWS{!kK (`aN   - gW jmI Z `I C9x\DygHyC ] H"=kzgl ^ UqOK`<>aRL3NIJ ykN:ֳ5@dz+Prf%쬸 ">?VvDGyeKߎ'2Ke)+ٷGՃl)XYaqKճ>!H|m<>@A-u1$2 c^ pt 8ꁟi'Kq02$\Rt흯OX5--X]'ov|J!b|`&R&,\wNB[ߪSb>ֶaWe8Y v͑md54ƯSyX]BTC#} ]q?(jaNa?L@@&Y z0A "Ti(z, {,g ) [(.z &z$]q"4K 2! 4l U'Eypg#\] =k }&oc(/'u p$wx.!AhVq+  I! P Ri@U|Λ,ei h JLͭD4 M/! `<V y3&*| "e T ] 6 uԀ *ɴ VkMn4 9$pKs- x#A ta ~_ M >6(!3A4&qY^><.ՖV-tYp3=%%b(,]븞# =Nh)^崶1/59q߁OHk =ލDՉyEԺ_([2FHXTI>yLD'&a1b(3{KAI콫q-OP6/MzK밧qD_\f_蹃钺ԀNZ1XsB1҄(WG[V376WJ 2q:)DjZc "+1^VV!Nw $sz XT voM*J\cApj?Й1!ˎt+H'F)+a +'+M -< , &++l J*غ X( &?y#! ! _e + BVd9'{x lD $ b'?/M(& S"wCf NfpTZs9dHC- [, `4 B#|M]9K18k+s d!  !Krm\ ` e@V<(%(g |}y 8d }I{ D_md|KJR攘S@%Tb` p7 |_Hp$p 3e$ c xm1 E\{݄FZbޜ)*Ֆ1njfJ7_'‘ܣ,^fb"꘳j[NEh?OLUoi2TF}uNݴvy/}eܗӷ[y6פ಑MF/5e%K(8E:=t;1oX LIK)}&B\Cd~鬍<my,-}4oc-%!Zy 07 zm*%CxS^SFĞ쿖$}S%Z )D7@1ӥ7(HuPq]jܧ{&h Ǚh x EW߄ک"s D: \'*,+_ *~ ) |(N & #dܹ ə\>c/Mk9Y\.w|@dk$~BX=N F#q {%v%"ţ uj##3) j W~ \ p  5 lYA!R:ȧjT{zm_]dkc 9_-#, "Ap Jj[ 7 j@ * }V*beJb/Sr2ES8赥ͫho_r \B #j e} oQ= /2> H{1 9 R 2J0Sz݊DO+Q-u/Ԋao=ӑ wO_RW ]uX_,2 +9]:#sSx҄2NVCNKG :U0HT͓PӲ :ii qT>3 ^,fZ?Pcs7o>xk ~ qZ ܜ kޥr)~DD[K`%G E3M2ƅI? 5D0=Gy6 z _# eh0hFvK0G5,W,-C$Cp dVtِ#E(+z+ * A) ' $| 4Z!\.̖$z70hA݄nÝgh7cϣg)'ܗROz "=K$Js-#8]ۮC t$ & 5:4:D  KqGJKBM O# k2 0'Y ^7A,crܴdHjƚVj: 5 nIUCU=!q W 5 Z qC2 >XukI)=߮$ڥv Lj2k1؇!7ۧTi 8 n췾b!p#|幈l*yCydmOO1xQO|AIܷT~G f!#ώ>J[`2hRjt>(Gn5_Ik3I疚Q3J];i˝t[^ Lj J 9 ( )a"ن=s˭cm~ W5/!x1JCw3 5tB%W9Wk !+ dT ~(fs&gƺׁz"K!rJL Z&,*4o,g+F),7rE(X|%( !a˭l үd?[2b܋*O*RAD$,R!YW WH\#G*$i"5@ 4 9Ĉ  , svh / En  ,D]]\J&6n t{ <DZ'@|& "։}kٖ  h  0 ޮ3'l%Caht,V/ pQoB@IA= B URj002 Tʡ[h5V %36 ה֞E'AnĆ&"ɒSJ6i7j0TJY ꍮfQ2T.Z+K,q"3 ݛ ںEjX=E\۸pb4yk{,['N9#|FVMsgx:/ai7;RbQx~bɪ_ͧ.wy>de?0bK,]J !| 0 >9 ~ݾ!c_IyUme3. ZBr9G NVG'R|zunYrgz9` N!/_ # [U4z=BQ{)sa2h;Ӭ1F+Dnx'"%F+\(]N+z7+u\)'x`%ѕ+"7JSZuCUIR#!3DOJW[*_)'_@ #+("/U {J  d k)q '! fg Y6 E$ۙ#bYģIPe;-\ V/ ӥ' %z߉ 2j~ HR . =u b^ wPIiK]BVrN2k5Ϯg-3i3 wC-uAi,]L W >//c.\úWZH!%y=?|2 K`cٜ[u}T qgtlq9N?o3AuD}PXh%I{{uHΑcٍsA E 8p $m :U Ѯ'l-+P*<oBWQF 8K48*j{ +jTJDuLuc!X/!ul kV1(cTݚUxTbxJBv&5hvܶ p7$t-%dj)+3)P#'"%R"~]O&pz[% a:nyZZ/K[ G0eUzQ !L"S Dvq2;  a( 33[WXL  ? SeUi[2p?r?[Q VK @a2v\ orPs DDY O- >p y^&h \w S ~Q$A`΀=E% MW/kMn]m@ {Q| k4I1YGDgހ€ڳ iqThEO{-sg^$0w C9rh]| N:P+{:tv`܋?e*Cj]G@Z]9f/p 7gIO'Aj!a;zA* M#Ob\!q~;B1& @7]$d}Y qb ${J o~2 lPZN Q h T& _5ѻRIS ]004 !4 !)gCIa1rk 3{ K`bW,|h ] /C @j4-If8 we^J=S/'MV_ w k y_ ާyt Zk3Š Zڼ uunP1^D81]9 C14€$;;(\m)C(%&]g$I1"bf֠_XH.ؘG 5wbJ? z` ` T+c}J5  ?!2  1#A Wb X crz[E> "  @7j^Mc [@(mtk6$B C SA 4 ~`ig' eA X0Hp8+;~'΋ҠRQ~ N Z?/ci" ; }X/Ь7kkQ* Hi չ& Rzn+t$i<ړ?Ke0bQ>;i缍Ct A# 2e ꠯ Z x_)/}9"yWw& #Y)%j Rt XQHط pw35,x?NH֏"a;c'B_V"֡8 m8-L} LpT Iڴ x { .oUwZ%IR ဳ*#NmY{fٻPv q>$ͅ5T"8)ypHAHI5^x)hcw.DZP PS\e#"0-Z0$;~z:45LNw @ c` N =Y =vc  z^CP4[  ")*k8q?ZOheQx5j :3 aJ:#nV$?#5"H'!53/Gì.a]7p l*D1~/eK0jS"5e'%o+N,)(W*T)(H4(%JN"KhM2t 56yyxM&ܰ e×cHV{m{|#Y"Vg*0"ZE9:t  >Uj.d,W 4 HE e#lSW#/ykM+)NiП>xp8r~ * T e'B# a 0^e Z"c^Djr;ϝ䵆㱼D$lp; -۩ *,!"i E  iN {<{VyD6s0LGܮ@Lml!{Յ՘Eא8ھCWE L끹 c아 fP o c|*7KLKIb3<\͟@') ې/MJU9ZcHW4LT'yl6# ]K}\T҂@ CBLjJ:z sa m1m5,1IRl r5-jzs)3;v  M!rs'st^fp ҳ Lp | UYz a4 'hk)FaL 0!Hge LjXa3ίG !Y$}$%4#)."TL 36 L<>n` g@gMtF_?-Bj2{73%%d*9 4-˞','%+m)&??"CGP5HM"w\fɝ96AVİz(?sLaB = "D p̒PN|p.! ; ] E Zx 4 L n+urstS un Z 9mPǴ^~DUE,IٝėӂL<?E<⎎Hդ ,|J \  n: 䖺#/$nHn'GZ 8רilܥ8T9J:B&9%"u,q L9sM k O& /-e{{K?[X@ wQ\C/R%~|:6`qY4Q)]:'X V6w:=Qs eDb CcD O{ k Ξ!: 12M= X *6|61 c:b$U-%a1$r#XBkA"lH ػ4[G|-MEr@x=_xi\*X,tr6O)"u&r)k-d.(-3*l($-!i&OE:uR A LcSrY5O"b]|"P #v ]tPw}& H=  * >[dڤ+~Zhd9BI> =*  ' I^7S 9s : D X&\0X.9P!9 L_=s- å/Hw k7PjbZ6rn V 詤~ܐP"BWZ>K^,hۑW:#eӦcO\8+N%=%T꘎ 4[5Lwii+ 8) | ,L[mEh.b0c ]1(ӈ(ْ$8<ځW#.}A +ى D YE \ UD Ì# 9Y`|c"uPFq=/6g؟NqdIz4 f.N-i Xd sB x :!2 G & 7H G %bme mU..G "%%'w0$1"Sf!H d46G~M4F[oZZM2VvdGs]WI!J'k,~3/)T.B+!)-%&g";&e86N/ք(v q7|Өzv,3`'j\Si R $ ^ N E> ]劀 BW4 y߯e ;*0{ᇸDhTr-.ك,FS1a5cox➸:[ #8 qm m ;^ M4SŽLƃ/xJ)st%jb7$뿾]ɞQβ |g>ww,}n R f 0h ʦ} /b-~ *MiKR [cM gUy q{f P$&Ӡ%5?q$V#:F"Aq=!'d_q L9 Α BkW5r NSk=&,$Dty*Z.sD=P/|-oD*6(pu#%}8$"zPt/p,-V ~AʫX0wr+l\!c=!'܍o(Y%=X&o / Qz v'n9Zxʖ3b'qo8"'`[ ~m ? CIA"~^q2UۃwC>LAPhԬ3}mp8wS)YW~q . O% : < jw(g3v  ͧ\ b6b4BGԥ-|$;U"ԃP}v+-p G- ꉿ Fm f Ϝ y lJ&"O/!i fX`TjDT  P z'dw,ط.F .%z+Ps):k'~T$!oALe]f|_ J:P-U 6@-ix 1cg! `.(hzH7,H5(Uc iǙ y>w]$6Ԁ|*g|2 Q6_C>y6x\ތz_7 /%R |\eQjR`vO<e$;ݎ':z;9q,xS  z8 =29 v q 䤝9R%]}߭-ߕOxwn-S , 3DR ߒ~82  v=j _u ɽ}Z \atCe {$:(9 _a7R K)t iDX -'[*>*sP)ٹ)^0e'/$K!aN X~ LAbFmCJ 0uwi S1';-g`/$/"t-6,8X*;&LC#by |$\  eB0N7Iղ4 ?D |MQ!I`#SD"5NʼneS<l(yb2 . bXI `9EznRyuA$V7nBt)VETdcrIR6jwa%r2!݄7?u׻ځI2܋G+RD]'mR}0oA9দժO0 "= w0ktCv8/9e,tبow P f]꒨ e pRk v& R Lo*R\a ߿ A X8m"ڨaև|h>_"Ns\wt؂ pC m ) y T  x j= Q YD/x*Wq|)[XRf^h}R} `v3u[akHHG\b))j(8_i#c /=w 9 M 2h %%7S*gTk,W+Q*|4(t%W"4 `D/j!p!` 17cDp̢r]CN5 yrW$߾K+јZ0r 1'0Q/tp-2W+[E(h$3DD!DgȮ;+Fp|\Sw'/ @ m,naI )=) #9#9 ibHOڽJEA Mcc]Fw+$cP':(wT(fKK>  D>+d5Q3w//.lk@hST㈩UqoeY3q #ݹt k7=Nڶ]q<-Ki'ySݥ>}{Vܿ_B܍Tmp.|ޓֶь8_πw1ksΒ=Ԁ*49C ''z  X4* ؕ \ w@4</1 ޔ Hr(fZ o ,،!ʊ>ؙb6%Mxj 8 XA Qj c Y`P έ׺zwUq23׀nS Nͅ loYQjC7ޯ1_p#~V*,' f1KLYH ri aK޽"l4#)H[-:,a,*y|)%q'K$q1">3L !q7#,"R؆Tf:.I^D -/V (cK.1q0?|.j%7)-*K~k'ni#~<s0(#H SaLh: ;j;>~tX;'"g##K{!`cW{  dL J A*@'Btbi5/\[Z8:zmZ_(NQ;eʛ$@j3_}DspЮ-=Qcϴb-U4KPQ#HE6?0}:^T0 jƠ{8R O:6,za {C2ivXIMK[zTBZG+d }E2 Q  Z O/m$߿2@ ߛ^Qb V Qg-56o%'oe| g p \8 *O;nxafGA7 |szQBVwk (Y%6M-D%Ymkan:.`s=}DIsHfaj7~{E Y L = ;r I]'A;,eq-s2+HY'*G"(99&V;$ s"*`p"u>#K#]!zY˰b|<tD%1,,I0"2@g09J1.I:{,&( b$HSl "1ALv yRȘw: 2L {_?G&_&o:"!DYA[R{Kk 5 @(U I:9AnH.^pfz=?M!s$L4};@mdHM,PkxoGi~qA9sj)ٵ6&7YF]qݰ/t:;+|G(S\/!܂Ek{ܓc=F[Ն!%Ш$_͹5͓gA*L-Ԃ"'[܊Gq/ = ]sXt <1& de ^' ~Hpx6h-Ow"c!I*1)MB!la=5BoO?ar > Bi+ Y ,j [   nfש2bm2OBVt @~(ZHlz_3G $Nn A K^ l kuVGmv$k~*s-d!N-y++?*Q%(&I9u%'##V$ECIJ""2ń~x!kHYz! )-Uo/c.2]B1,/{/-Jp\*r&o"y+hmW{VSYq4^1 lM !\C?%&ƁZ17=!jvTCIjDxV% Lq :wJ,it? ŗ~WNxWhsGB%]K[| >8rUW{%, [;}8 ;[zT|7! IA$^൝%u͙iss{v&GErv c57?;Ds!/0܎3g;XAͧ@Fz(-غ%chL7~k YaAm z鎥 J ^ N! ᒝ Ǒ<$ &0PO;`E4pH8w#(}a rv  1 Es K^ N G /p(X(s 5Z>d6u?bj>PoGb bm53HD V)%bSNdf(6~ MZ8 c? R! ?C9W.1w /_'^q+~k-$`,%,*+o*@ v)\'NO%<#[#]" 8ĒptlA#4a~ %Y,s0<2Q0PΔ-iND"+']i#LJL(!؍pSueVEAusd8 o/~K5$BI>?,q1'Y3N++! R>iK =5S;m&J 3#8I>u2I2:PyGz\I&I~IV|1aor1'9y2ARDD؈nNlKۍᚾGvtoȄLiUrXE{8cR?S~Xځp_*,0Mkϝ*&N]Ѡ`P(,o۽w`k>{ꑳ # p aq n ރb]{}«U#(C0exd=w  ꘹ P { să & aQQ EM G]18GdO^qTt̙I8SYyX*`D1kx&vm gUV^4' tB??u99'P0>V;gU9NTw}U6f >@a j#R0;W?;?;[V:<d@M?I9OK /?t+V^hHX.9q!,(< v!$ H 2~2 +C%D9R:e]=h}%a 3 ܑ ݤ[R5 S3l' AZC#y7ӗP1c⫁׫ Q/ )!ȟ$CUcU֩ȆKW<JU vLSK,] Fv 1yO>TϺfvR0,$f 1JB/ 3mA$/`kpκk\~LPZLD F& bw%!8#%իJO (*\NZW\p &zir] p]p2@Ԭ3Z )g 3=z8p>P!qYNuW Uxe*Lnh 6[s%''j ;t (ș J l s9\f.pНꡔX1  tf nV.m_;l6-a1o$Ǐ~ğjS  IՌ E{&1D@Bx -p!!"!&l!1 v,kj5^d ĹO 3|>>`@('j1{Tx#!oAK^'\6m{̃%g4qdWe52)XkA '{HCx~As[j?DkϮPNܱ)oAfH^ ˎ` M,n  W oQ ?@-}㺽  )Mw6ω\]XSVU,̨9#G  PJI&uV_ 3ڹcnSkzBA?(xm &]?> u1c 2Xr;{Ekvv.钎S6 ?mY=z3X<P.+$sdr8 oPGR.(&Y]cR wq fm=Kv'樘'RV2 L: o=.Z6<2Ĥ7@34꒿-V'D&%~$Q0P%!'7uKkT-4kV,OZ"51@~{JhLrGt(q@*; A2gt)`#O!nd#[ !juxf f "g[.Q*~3SDB7  5a /;;)}i *yWS(K :M)Ld'e#Kg\Ba 9k$lZ f8KX6Y;dN25g`? R= g 1xq ε UM 0 " Pw Ɔ! * Q O,ֵj ȑ3 D7sn/r;\M6=зqo3 1= >X HJvK|`{݈V$۽ 7lgҼj,7w!˕͆e\"_3E ==nUWxvhyi^LL Ɨ vHȪ1LD*#Sl)K0g 9A#C(aG FLoNABE@p>N%rQ8w20/X"/0`d .y ++j?2(;*8GwCOymmW&,]8]1 Y)SZ^MCgmEFLB? ~=cF;25)-D='q$C &O)g 0V9i?o=8Lt S) Q$JB3C71 < 1j'b/A!Q !'$v!klsUo_le )? l F`!u!Vg 2z W \CHp܈k$bR-Їb(̞TǡE!z{ޡ<㝃Lg4 l ⒧ k 2 !:u9ɜZ(q&9Rm3=E­I䇮v7}qk˨;5&tvrl+]Q_KMHĩ4]amx\a rr>W6/ }^o_c޿&侖<+[U=bΪDԡ4t\"<Ʌw;eJSɫo($g Z6/Io9I}1vf)%7Tk n`$֛W&oSR]72i m0*$,,/3o-a)gN$/fE?H "J%&'!?.,)2*7{V|;D@ IQqP-+R;YPtLdJM2F{@j:Q7oi8&fN7\b^4ъ}00462^>aruG: N U4' GY{dYM^T3V>N RHr ˌA [x`  SY"Hk}}| q4 'w`YV+15οzPH9é,[+"wܐl} x OS u> _   ȌFvãn|xBEnL 2=b=B7ϱ¯4cRdK<;ʢՃԦrӢӎѩ7N2~ŧƊ>>*$mч ~ )*欸Nc >(nu%;g L6_W e.D|EpizTm Ec!$ TM"6t  sg97puyz{z.{ 91#\:"=8.HȜ!p=?&6c-N6a9?4 E sE jA^ 5 <r4G.YU,(,dDM093V54^5}5658=O:E<AN .I%?O4/OqLeHMD#v ?K ~6lf.N)b)V& " cL@_;%΍I*~n sfd-}=;nhutNԉ_[VzFdȩN>b1$76J ɒჵvۣ@?dAqȳ$dٞ#07Iِ5^n_ݮfe )֥>pݱTSȴ@ sҥjCG+ з,2lƉtÑi ".埃}S0HILձ};=ܖH`⹇fg ru 20bFܚ1nLCz:їs%\X0w+P53${zkRYDMB vi HV;No )qroifv Dc hd.-M **c.Y-] jW( j%-߀#-!!m#McU3*_ @00d !- ߁() (N [+5 /=`5V Sf={BwEIHHYERCoF<&{5Y/-,cO$/ 0s!a1MZO0 o/qD0v0#3J8( ?ʹPD) VD Ay >O9:&a3N((9 {C : zPC l l v(Ac ^7o #V(!l,,.n*.%m4;J E V6~ML0J˞MP?L Jt f  3=̨« F)8E  )̡c[^\&ʬuٖz3)?sj$i^\1:hz~nCppG& `y ׬q4יTH툃&qw֜ g39Cqq2iG { "^m Еu u {a,- &5sM)nu%1 ,,x 7v. /  { L ƌ F 7ɒv+ք / jH J^ ;R#(K+YD)E"\t48dd W" ( X*>+/"  iiU# {<#3sBm rO09 ?BK$ o  Q 0< , uh 9b 7+P9+py|}[&&xaSAQxȩZvdl92G\L~lGCh4c9 ھ4^-3JQ3Oϋ@kӫ2d&] 3.o0ZN*FWt납qq*"1YjС/HɱظG7Dم0\D*`_81_ﳲ.^znc\ъ DDٙ܃rޔ![3KmhS, \ _ " uSD \l ' 8fZ|s$+ N,# ( 5 zgi, u6 xZ[ GcH p֭h(Z8ީ$f+Vz cYbP} E N]i \Bd .a"[#ʝ#$`%t!$*Y#Gr!kkZpTP ϻ exa2> زpLLta5oU x 76 [Ӌ&3_#ۺ$޶"Y{/m ?[Qݮf(© B>;:{6ZJ]\: 2b{ [ y$w+H- *`u t q-3V9!?}_oHB|?ƌ.( q! %DSZWS(1s.]졹q@畐(Ur[fHQhpDS7F4O [v<KDh^T褏MU 雷|Vݐay9BJ lUAP':5WQ7nb h`W[m8f9qYG繒|T<v૓ RK-+ ~oz@GP?+k?"3# W di"<} 1`9]TKVil~[=28 %<jB.S;o[J QF0 _~ 9ik=)-zyds%9H/*Gݷ  u9I@˪RLyv(8کVV3 = n |Rh|H|X]@}o9v +SfI>R\\8 = Ϲ N xZ k. "0~ < ]~ ӂ^ TJ8_kg3 6q o8 gisowu6Z ympsZ}!C#r.{xf-S,fFD6IU鴪FT@sWc_k{  /7ƻD\F"^0HoS4쉅H q&6"`\TJ6쀤x_ ;Hv.)QY>Es21xu$t TGTf W W5j;% ʈ'Q+<+>'(zp$qq t{eYiZ6 očf䲡m &y$w}r)D33ڽq+"r=TU)ɅaO",C1o:YKeX(R 7 }bqO|`b Q$[ bϑ)S\KM^J` >l"`*n`4=]@4._]/k3(C a>$\ p59"YAZ< 5DՏ\SJH ] v| Bcf@ +]8%߯$GG,Lv0Q5`0~,В*i(o# SǠTK-n#z +w. HB !{4-`o'ZP.n4B|:97.!5V0rCA+b%Z<bpO'e?e =jv7۳Jjz; 94qziJ2& m'B"d94Q9T"{[i69j0 ㌘@ӨMb\xyPh G9&oAߍ'ڊ}"0\6d;k7K { ;H9 帤 (bA U 5&~qDڴH*B^E1nj%nټR:DH@ =7W[RImq=H E FC @ #8^1|+vN)5V&)K&*"(T D$-[*/.k5o }:uV G? Ae R=B 79.1P *6$|/uW |oF@@< I5z2 !?L 75L p$ ˚ dF naK'XE%_ 'I߶D<.0_Dg/s\G x $g\uuTg >"sx0G| L8#p; Z͉"ؑ |ߊ/9q|ݫ֎ׄ kC()6_<ۮKd|7; wTA,qS%L- Xd TK O 攜 CNl -/ W S  b'QtZ*"=.>S,б֎0Bb7-VOCw~Z^# e Ìrm-ΪM* kfPce5  rDYň/!(;M(1i m) &p", GW1c%e(dAz']#AEp6"Y#u=&~j\*{048ȱb?@i/=:88sA1 v*&au$u%{'e(;(4'&qv''_5'eS*N/+:5u3 86+C2OF.s )oLk\*m^ZRd:G/M :X8Xj V-U}-5x'Z .tl&Tz8?lalƸ>+GbdX~ꔼ%gHV_`G?mAv'j7bNqedj%S*+ʻM '״_>Y#gi8!%^Dѹ]9^A?XmJdBZ@t֮UC!_|K+ru =נڍJWèw/n-!;UC=gW=H|6&:wSR*k\yjV3($, 3![f$)n92? ;K@n@z!<ɝ5t/ + J) ) cA+ s+Q=*O' s&) $ic $& &$l*yR/F0'b-,M)i-$6'6: @ < 2VcDc-68  }(P/* ߥ ]C@  }_I 8@e펰)U拜w?o8uPi* }EDq(h>_P Ul x, W B 4= UƩ Xu>~;!Q]$O E/ZeK" e'jG*Hi+v-w-7+&#{"+e!P^ \UM*8|>?*f8 2 P&\6-Թ/BK0/C3-8;#,,,+[*r)*D 'm"P\:x>KeiTb:]r$ "s''5%%$"H" lPxbj[$"DY9qFT ur#zҵG F?X #`!H1` gqC g: lw!C @vO4 1 ] d D 4 H>k#)] Pg! UD >K >q.w)?= ;'HOn=FjQM XGHukY>QndI(f\ x|,6d_xIߓ5X}t8%jhc>3/g̀Jd+uS:-BvJT,+n +MyҦ =x9tP!~r%}q%%@n=<`w` z  E  .o  D20K8U ǐ#fxeA&?&  !  * H)tT4'ѳU5 h /t ) SuU OHDTx >I,taC  K<Ufh`K>;*|gc QK. u'  Q!( +FG<4nHB,N cF +7}|xz@ 6 ú뚖Go9 lXg瞚yBQDRf}s9@2x4lj_[Nd!VidDug,[s4fޛ +|ju .] c XcYU UXs uTu<]3_kfs$~J魁~r ?M$DYc3F R ' wL .]{if%5M|Vv?R$F)x(A;%N!;Ld{MM|S\ {'Tҫ+a5 bbO M &'`%Dy!]j_pV5A U] z lzzͼ 7)]5/ x|y]Ob &`I0/ņs®}eJ QxĺJD $}M % O!fM"Al!DN,n=j50@M[k ϙ7_锤'NTәIL a{C%+o??Z4&  qAH:c. qgb/}"$04J SPY}'{<;=BnHopE2+AW#Z l X< 6L"39΁y,HZ>A:B! Q ﶩ !71d//\_;q-_j2R l~yh5߸i@LW$|J`XKK ybKODf|Hrz&sj|Pe H5,{,F L(b;45Ӗ oqY3cP"> ͽ YKM /pS 5b믴 :sxM#ކN.jᇈ]DKpD{(tdv3|t9Zo$K|rwk:6uX̻Wnu#B"m 1 eNtF#ENKnOn ]~3 rV޲1"Ձ9ט2أu5* Wgbe{\vI $j튶F^XqQG X0\M3Klb L Uk!<ScZFPi3y4.F(8>vAn^F iU7B+c5h}q[ wlV* (1 `# B<O 6G<Q.JWMCA(g :=| e.?w' l+x |*JG 'j!3#GT1w-ËMN#y**Rb,e n c!ލ2"Z$&m#gY-2`Fù1w. /{, qm)YPf_#tMDJJR $u;H뇺Z#UkSW]E#$"6 &f)4Y(3#V1v)p9#| <sKEkv1 70PG Y'LY^  s IU N fT $9q`je5I_q陒ᡉ#qܮvVr@OoߟGcD ɕ2.J@$V _$| 1SI2 Z":2wؑ. aI . "$ QZSC:X#rL&9Rttр|=@ g{?O B>@n cG O*V M xz Tu $M_ 5&q!5$QaX7#$ZeۙL Ұf !  ggq|#x %b# CR _@6T-F 0a$%""]T1#F9b %'G1-$U/\-PE[(O #Ju@ezq.&Oe-uְ* ,"A{5Δ4I}-6UF J hd'tL: %)㿟v{/0zz32II}YI~upA'zxd2w 2n=j{?H @' ؽW-1όt 5a4o?˫Eyo#ބ9;(@^^X ϟ٩̢jӨ o蘼Glä3 ÇRJ }>\v '6ຄZ#[cjJקEһ6Wk Z2Ѵ)/f[:vm&E,= (WJ\VXm 4~uVYu3\ s" #aA@FKꇕU>)Zr( ?-LA)_ :  :+K7.4i6 = T { ?p &i'| 8pn}"eˆ'q)\K)+G)!+`p,A$.nR/vv0:0 -B1)Ҟ 1%q!{% &(-!x y4>.\:RL ;"%8W.4l1 0/ca 8-z,IYs.83 iJ4) 81&R +&15b&_&'lU0*Ÿ1! 7}t8)5 =.2?(b !: $Sjl8Pd#lPHTnZ~}@9N&4Y @g^ >gOp0s P9-9|m,n3yI4)`Na,.<6B F |GY"g.˓ s흡uLa1VM6GjYB.{M5^ʑx(VCDSif2n@ F,Z ?7 0|ϯ㊧kߎ Ŀ1Ϳ4e?yЬm'G4Ĵ*;fƫ{~HlIzEl`diO: .Ȣ (Uao_%K2NUmؔ;gXlG9='{OMh0ۂ # ai  { xBj F2wZzvpcVCCѩl=_ >h !#|%tN (L'v$% U!c S r Fz[|;ȃ6>8@reEJ!/ S(( , - +, + ,C,dp,wo+M+>k.1)8]%{7 M kSiy:I%)< )s 4i&<!J} Sn;2XoqQ i^`Og0whdg l^?Se!h_Gsr :KQWy x*e-i舿;% a!"y]Be%4U;݉")cv&&v5[Ϳ0 η褄#L)iS}99FP\هyQԬ0ZjZ7?FƬꠈ.b74{}<$u4#p-+S vsT๟IO9(JQy16ry>i0җU#}n@f. %6l8ZVQT [A MX}k}x&vKjzf2D9!4ʓdv>Jf 8%k}' ?a ',% KE!$! 1s i8 QUnGLpXW! {,Cc4f*I7=89 t9dhc7jb3_p3/K/.?+ %& #!(Bk!1"h# A%O )(i1k14%2[4l17/y/rE.L, 7*a) &M"YrM=NQ ((&f g v +%b #)u Z6Z+9RNT nv fH/ ʰ;g { CU;vKx7gg kѦ;a* ]k /VZXmv 9\xht cP庲v7 ﵵ~~ F (0)! Dݧ& Zt*pDWMS$Taמ_=3݈oNb#ylF-U;$%I'>GV ׻h#K0@ɜSTY Y}|a߁"ZrrYBP4 DAbl$^_vﻅ좚IiF*%2r&09bݯIJewO,ʯ%v1vEW  6pV  /0ՁMT 뫢|c@f1.ML&&X +c+x(U)p3' $Ai =HckAy! x + ̝#dq$q 'T l& %$ <$y BMiɒ-|o!Wz1k XBVTIj0~MKBj$"7sҀi ǒ a O  ( x O c8 q* [ A'J7=Yqw.| A;Pf`||l+.vctUЕdZ]OR!gQRYIJ w!HSكlM YG 1u O <7YdY)\|141_-+U) %H !;p V4pP$AVnT= ׳5[a0(]  Z% "T -vsf)y G 7<j8D`# @v$ N W`=Q]mUDL$PO,}nW=64GkfK&m|08iq&F*pnYmlJ͎3]#/Vg   -VX7䍼w%m50B |p[f+il5c _ E }2;N {myzM dr.dqMs XIS.N:7(n$`-a %HK>t¿d vt i '9/~kh!I3>?$5 ]DlٯlZDuo&jC B",I=?Ff YdQK1JO ->:`" n -ƼJ ~橖L 3v ݇.XhFL ޻R,5f`~hFl_zpgxe7b V3%>Soݛ c,{g.4|t Cl: !$$A y >)G  j2 _ >t.=ǩ(<W[oMigUq:Ymcbj)- '*ŀu3X4]dx~n^"'+|F w i mK WߩF W fe% tn%aRz{Ϣr}gY:Eu$ TpnUaIrgWs6 dKc>2w^: C duE d& . h$f͕a;I0 )<#w d@ A52S b  + %uf&GF#/5 BG$̓MMZB Bu^<:_A & T`z%T}h+-s/+|i(: $ݙaN;uhm)W |d M'ć 0:rJ aͰN p /%$pD !eT5 qkX[q hѰg~QGPsEk7^I62;{< K{ȉjtWK/}{ 3}f#ݖPF:`)7,FƫJnxy(0}< CFď NvuI [AbM$ VY -. 4:纔 (G 8J7)2 ]GY gv*׉eٛ۳"Y j.W/a>r1LEx 3hkDq2k Ɵ)IBOsD (j\,3>yӀV%\M~}0({ \ o/0j)M3 w ` Wk P-9UQ?  CSI> m}"H IE rR  K dC {A= ^k& > ¿ .!J+S!m+$r>#q*8#GMTD8BSq=w^~8iO y !cjW&N*V (>#+[x-C 0;v Ov ن2ˤ =q- t |] ~vkFf*l+/=F"q0 2HRqUnV:ob H,hܬ'ŭiv+hE@I2*ۘ*DbcZDj5[] o^uUG}:b|ڤͯ*W㣒|L!TR~nTXf]z~Ӭ|K~!EŎ>O ָH,U1_Qy˴>ƍېB)[JDwøA | '+}xAZ2 E\r Frz ,%"!̭ޖ I' [r0/.:X.҂f5އS G3l٧)9Tu~B_--wIA|5(c!GyEXnTmFV{ Z1]0 r@IS'(%! H"Zf/kP+ "'.Da>uo_ ,.ihZd ^ ;(M.8w1180l/w#0a 1% o!2 K1 1l \"1 Ko. *(%!f#h"C6$g(=b.i{5 7I 5{ 62}.3n+(&&k~'r,*)/-+JxS%0}r9͸14 dco]!Y)@+)p."͑ ȧ-v2 $, ߔJl :mg Y^ H]0wVR\PUm_P"Z ' F' iVO_ri%?w@A剟.%>y~J*=R; CK#&8~)gxhm0z|@LrUasyx:XlO{<Ȕ=ZN:yԱTI0),Jy  s麺 N/N~-Oؓ? Tՙ_X%ҹf$.' uL<&R' Ab!>&V t. I q5p4ֈ귅 Bg4,hAE)UӝF`6 R _HP`H xætfN`*{֯ a xg c3  " : yl^ #$_w} c)Xt.%021~2<g0" ţ, 'n`6%[f%c$jIA D8`w8,H}@v *'-X/FM.S,x,k,=7C+^_)O(T&s"]z>L+duj(-dͱs5]ܔM] io B RE tl a#|p]f,Nx~Q:0x 3:Dlq8Qn3/(0EAQ,xrthbJRgshܯnP-qf7F-[ufa!eÂ֟d!~R꺘` Aio$t&]юآG|އ;O%gв%ƒPTiWĎiƫt9d%$!>udcU D:|ꁑzf v+mDI`vthNCP> ޝ5_Tm扢 ޭ r;!96x}3bR?/B6*.ž( s)` d)N Ii'8D \#O@ VG W "#)~ NU4E=# Aa8ECzEB˰AZ>`9 4c U3 93$0 -0s -*̚#o!G w]rļ$"dkz)Q <0 A1f j/ :-Z -+_+(%!cTEZ<$0 rғ)'veLXhL  KZbq| U -_FKރ!&Hz\VzfѰ:7 4cC=b̂jx\ߧ}q"LWؖ*8غj )^5u#jxS]Ԫ5 s0^E;Aߋtfeb=+&aU{̔6)Ut+tВj5Ь oϺD[~dԠk lh2-cT%pHlT4ݭًϽܳP`; ]&VQ NVЎ4c!7)h |C d5z jo̡WCS _S2NjkFJ  q'Z }+* t+) ;) p&g_#=$&L'tCKŹ#E* erg\zr=gCd*6]; ;}) 7[3Y?/)X$+x! .!W Nߜ T~Y rA2vC ^X(@5,b, (*ړ6'7#h8 k@#zWy2`߉9:==eeh7l삯+ĕ=A^  ~Y$(r&nNPJ9W\4-@BbJYg+epWAa%y*j \*l ' "jxE|"a BM&sY8 J6(YR)l=p4R <ڗ!?՗>; MR7 37,'3c$&?&v$īq,5R@'t+G|s"/ }9=<;~(%5CD1p m, ;$x.kP**V'w'm  iK.|l A] <y.:dZ"x2{ * 2>aX 3 ~x!9NR@E *" %rdW9,uHD] څX" W= t(K,zTv* 93'^eݙN j (v쒆  YB E] C u] X Q x fܛ B.9n䤤-Be<ط3@]k gL(ME tz vAFw.^bgc㺩i㏰U[,7 etkp"4ۡ#d;ALrX_<aKwKA:arh}# Cv](By]48U0 -Ǒd?J?H7v~K_ [Ho j7[ɾBC@ \F46F>&")J˟(N,$Mg m6F4d*hDXuQת0 dG< v:] Ƅj QN([li9&, '{%hO> tȠc =0j(oW8GÏ:OmQHkOdf ob?|$-&8 vKE2Ψ:0}]#3. 'j';et>n߱(5$XBX3ݦq@4VzmaFLZ'}df9o!䶝 RK\Z O:h 5V(1  =V KY Y w :( EF G~mqr^M?^ O&$-t}3gSt /U5 /I (D D 0D Q Go+ ;|D 0(סu\KK-+%q {?x;RYYOG@N IH; M 8hl} Bce#%l"Sj/-5ݸc"(DO,{s_ 47k/W0>1/X_#:)T.q .~%-!)@%}ql&;ܙaspoW |n7&]%C!])W'!)'"*0+-%0 gnAju|aGc%Cc^TG`Xcl  %(!#,Q5 Z@ ?c-j#l1\mt-[>fwUʼn$QuC $)og-]xaA" b 7C 몼  >T D~r ҩ|:W׀}h:9/ㆣ wJ JyR>'3b>8xZۭS %bB~g(]! #O C྿ G d[U)%Xjuti9  ǭ64_Y\3 UG _Vky| Iw M1Tw  N 32 x^_wjN 8`Moz2Lm(q" z%3Y(Aqnj0*TN` ٹ/"+؏Ѡ] HJ%y#ehx Y< x  {^HP;%cئ%8%!#D Na r2\f mn 3hH匛Z9 B nNZٲ¸lr<~ POJ]wKZHC좭䜆6怅k8$OM9Ҏ"3^\zd57ym ;ۘ[A$I Ԅh,|$b*3v&<ɒ%%@@?sR\b׬Eԏ;OeZT]-ѬeX#%yG p=VSD"{ |7 $f [mF'Ʊ 9 ^ !~߃ ÚD2HHm0KEjr ^); ,Z&)&`_KNLJhfQ)}t@*"3B( IO _^zb!mSa_A_ A10!L.BE m}2_Јv '  R  ?0 9v%w^*F7I+i2) *d +;n e+ *| 'I)l(z&wc"j~Y$n7k,H "H_*Q(O/ RUE/lw,t(4$ >Q2nDPsdxt~+>^S . $K #WB+b6K׍oq` Ԋ5Zd -Т@ϴ_\Ӿ`ٳ/r﯇&[ bʐ) * Kz  IYj !0 BWJ m_b ښUעty4 "x0 \X]Go6 M2z(SBWrL?)]`% |"%-/hY3(Jfh; _$x$ !f\3it0 y!y_ % ? * h ) "n 5 ėT Cm K&1 -@o{j0O816N1{*p0 0k, |' #7hx# "1"ƫX}kU~qw#r ’<0]PmL x B'PlcKvzst#0j6ӧPee|#Ae2=G3hjHnNd$Ƃ6%rN"b}@2H8Ҡ䃷20ԱߘFvz=Bˠ:9(b,W>&~Y(nJMWNs3RD6ΰbOsr7B|ċ饅<1,h8d9ĩ{˺tIwԍe |ڳ0Oߠ]/;h?;WanΜC5td +k݋ ?$ė}-n)ttr3qFe w +\2Xo V3&A3bap4ti:!1vLR+Ⱦ5!}=F#=k) Fet FqT2pO3B +ՅE(>VI8 ˞o-r)#[ }+l+l`)?Q/%),>""B(,C63_.W(.dK%j ?6Ċ"7mLVU-5^3}S5.4$1*s([*ɷwdDeŹq `L.4X4>Q 8C &^) C%{&T33J)0&υ%-6NMD6 O)[S@>O0 bF& 2fv'zI u+!Q@l3\C{*GRAR5.(eMh U&P!Z&.^" rp)l _2#h#@ )  ~yek{~3XUاkߘ|l'U٪w  U:.!W zTbns+pa-һGܾ Zz +gSFҞ83 V蜝њ([yf!Xʺȵn.0'͐5^.ㆲn+ܦAvѦ$QԪ,MϨ0IĎ[;(:znH&AUwj!c$1KD¤'z8&o  B c @z!F% -uD5h 6~D 2c8:0y346+>mޘJГ e9R7P> ;K۫ >Co g;j8[l:_y;y[ 5,CZ$ V  Ul4} uW M < )5њE>S V% :`؄FAD/hʑ+)Ռ=FƠ\YڸD=ttanm[(F%ot% GjuYk((vOlYi]&)ݴ;Iř ኣO}'S}ņ!7RDĹBPᢄw[tv-ݘ: ެpЕDK b V4⓲㇌ᯍ䊪<+u8a}^ャT5MMyqIo%-< C^"f l@ʾYmw ^.k9OCY(J\}Gd?P-|6-*s$e`"&UoF'ԁV"$Rw2p% ?0@- Mw-R{VPÜԂKpC7-K-(XY~Y N z{ ]LC#&,>p%TPCJ`tI*YDctm[k { -)@ x|[C=L5n/e{4*w}VV ]ްwl]ܗ,=ϼz *@3 6Tk3+nLTgea\ -eݴ۞D҈ԏ:tԸ(ʲYaӪl,A ->a 4X ; ]y,b9:3'SOUqf5 ~֩՘  rmW t^C <W vy 51"o4l$Q. D30*$AZ!d pw~`f@8`su\ry 'I2/:%?<q7|%2-&Wx! "C<r  N=  &cz 'Js4&x0K51,@%$:XNx5*`:s˗]^Uvu+!BAvD p"2"=/@1=X?zjId . ^- l  mz /s rmN٬&Fѿ#QFnE΅Eö9սhJVރg^淹+^ү_f6eu'H$9Q6ԁM[1F0[m? IDli N໼jRBQZVܠܧQ @ V v;@  p/)jܮ_'Jb ⴢ,ߏߝvg*D 6p6)(!(07~ 8nTƤؤ MٕNhSi6A\}"j.7O52;H;7,"eK쪫 0t=ǡ'7~[:@<@ٖJ?iWn&"R]]$t[$>U$NZ"(C'r8@ܹ16)#-Ts>C3)]P>eMMq 9=W U!"P:T ljߖz;{aE5ysn@+'g~d5PvЩn 5*W#_<,׼f D f($d3 ؄ x pƵN3.>>ږ|ų?'8[YfYgFC$0Ӊ - G\ڨo ܞ{}tւ+lKG/:jN&1#H7 뜀F4&Z醺U/(ꪬL}1SAeI( p:V%wocG)KkE lTkѼS dߡ-碫SYsa#0H"91871qa=-H'() $Dwr RA fp*OӀ,T.w4^+&D:T`QTK zhsخGIʢ# TUkT-# Bc~ kﮌOj1YrKb{$ٲSNf^]뜺L2ZfZ|b)Զ$*Ϣ˃i G"1p/tt[؜C%РHTłbmm„WČ)U 1C d. 0&Q탧ZTJh(tl, 2- BIz6FLޠ#]cK$QP`s dG V 9SCogEKr: * **X l4. v*P* &ZK TN6fa<}̲%h7h|D~ )dN^%)O{&I'=$uA!ʔ9 Y-#y&5&"_\XhosUԷ $<1+O:k0 7q=ls Bm C <}G) v!a{ G }UI#cE"'$9"L`!<ɕ - $ / 4% S4y 7y q6?~FsJNTW[kPXVgU^m/O$^DS >?ZBA=s{7%~ 65=/YJG Z f:iWe,_tYԲlN7B? 7?]};S1.)<)ܡ+ ?2"J? Co ?3:=E5C +U 4 "c X3 OdkǓ ;r1`{>SJ@SG:F)1Df_u1S# T((X4djNm_# &3Tf77i8w$96$O-A%~B}B5 M K g k Ĥ -IKf1.{E kF 8Z  _u  0M mv% {N pI#_>5'GJݖ֏%&6w+&\/K+ { e B~ Y@Q$(:oKaDHҽy#uDCF7{0 d:&R,"َO u'-{y La]NiFRl 4 H^A !g{q2ݡL7)#n # U/R5m534c1+){;o [A=TƋ.#u1@ KR]5M'MDY:CS11Zs% o nD 2O "g&|#&V %D 5g%o\#5.*!a"-#7 !o;l)696#S (eY+63u*h'?]$$%EhUb׿4X?1ե# 8Mު*g# j3% ֛'5K$ѳ /LcI,SA'ߺ Y@ N/ Ty[\ i{mC # {R b^ R (Lk([W;h> l Ӝ ;Sa2i[T2*_k;74P( &$,f+*`#k.g! 7l:7 lՎDOzшv0^rQ^n#LAx+Y"~'?%|-m26yS"$H@lYո7@z &8Ϥ'G8қ\O'NC1(W<` m_+ߋEP1M޻אC'Zn؟>~܏!擕8N!"b9K~d`^'/'owwhg ,;V |6 ɜZ"ƚ["˾M=8xGҪ0w"샭<нDڹXkH r yr[A]]Ư%֣AF{Y  ]\IRGM1$L?P  -P/c8l LK]@~%Q$+WK)9M*new++8,:i4oi977' Q:RJAY{K&T$-KW1& Q&#L&}F $i@!5=">Z>X`=d@fI.9Y#f_I,oX1)pI2Kh.X^U+xV*(FIu$ϐCW4B5?OY6y~.b,.:w5C%A F~Iw$Hu&CKG9)E+>q)8 6n%%.!Պ$K0}x0N ) }4#{ipghӑSUo ; v[? , 1  P 6$ 3и]Ϭ PgffMI _"A Һ؈:y#jWQR7FG)+۳$bi#}ݝ]*A!ϝ3Q+H6Ie?Vx Cވ2z{5ǔ˯=FX0غZ0`?j2Kُv# тT9c]\*~ 2aD"( jǢ?L46L>џqec8r~߱eMqrPTK . ,Gy XhM[W k)2" Ԫ073 B*#Rc!xuJsq n} pP |EW|?',\G(S~$,"> ON  m&L=Y@cl3G`6 _ :zAR \܄+:~LVu 1C^6a /e {Y< ih[g.~5a|R+ >XfInp `ڥ _L)}GrujK̿3,/΅ h U= V M fcZ Cw c l#ɃE~'`3*G[T\ fMa'ZpNUZ켝vnjcؼt޵NKqӴ>@C09gjܸW蕉! 5C.|؈&#!U{:55 ?b\ya4f;j.92'ap 2Q أ8f"  `tGCO { 8 PXS1 q1宇 }(63g561RC-=&J2d\&O t)/g lT'}rr|Hc5#ec-kn W ,T 3 KGSA}RH Y)!/e+w9b*PLA=Jt'? F/޴|Vei٪0EGsKˠRؾ^B%NJQDBVCLi݂ݜE,V]2)3Q /MWh Gq.kzN;E6.*viۡW [¦G 1LCR t]z  xaK PQpL[ ]$X ()0J{7{q82ɥ-P );%'T#r#V"1?G ta % C .2?<8RId!;N *% I}#NA E:N2H)wx&|"zH l̔ Z.C'lA//,"<.$-$/-ݢ&Y)n%%b#]!C"П% C*<=a ô "c(pa) e$?FyRd1 5IO#B&~%jd'U1W+Q,D?7'4!"2ZЁ L,ϫ߃!f Nϱ 4ͩ_L .G c Těc#Y"`tP3CǫP !Mpߧjܴ~%/]a0r,A GI]n| VĢ}+|jHplkbOGR QksZiMYJ7x&ޫc~}W"u B#{ %Lj< !2"qY+ClC M٧!",wcFl2IѦ Z46|V" 4a5t>,Z!#(Rs0{k+c"v5˳ CKoRG GW]qs܅CqufVDox0؊ ոәmO!wvJ!Z^ݩ%fC'&gqg~ @ߔ˳j.㓑,Ґ4lP+RֆlB\_'\4 -dqC Ó[(fMp򠋹p|"0#aTn8P}>4 Nݴ$Ҳ&pT0W3N9e )Tw # ۆ "߾!Ӓ&4(!' )?(dЋ*Eq5w*Xx)')# Gz x!NER%FH"3,..3|1Xv3+A.B&7(IF$$K$!5&( l/ #R5%9p)>w.D4zI27.PQ';YM>[DpRp6l44a!O9N\A"P\+tf`2fd(5b1;\ -IV)iN$FDkk @ r;5i4(Z.Rh ,y d, /AKܺ69;|4/ .w,IH( +J%edO y: : ևLl FL8 6&T-z^5t,R잠>ﱩ,,=쪄ms+ wk;xcQVX\K:qݜ2J TMYKSȡQfq hhƲls@m[Nٱk0د,afJȏ\_GHȖ4qŘܨDГ(O*xǝ T ihsR!hghAZ̚W-IwbC~W)w ^c̣HeSYGNy1&pc3^C([|/ 4.JE FhtbO32S К Om .D)m1#,*:3|p|2WV+Cj r%k  C`i8v )} ,*+J55\ u "khI!aID6 %a : h#k !_KrnH) !hN‹HV&O$"3P =Abu ĝ 60L)w%t+xI CNm+RXۢêU]"+^LcUB (viB1{ ǤTS% =9縞_!ϰ/ڠepBk 2\qJOԉ8Vc WxWR+m{Vkh!Z$(Ex:-{ꋝnO03 {gS0 K#;u1sZV</TRy !k;&=t+^)S='*t|%ؿT l턯p]̀~ I Ck e%2O5Y0{*ۺ×%bNC3 c9 9 N~ h!j6'z(^}8+ 'yT^Oc>z^/YI!8Gf5lG0g$4q 9 Na ># BLc _d$ g 햺 չ Wb2 ]`U#Q ԚG md\3(&͜ ʨ- F8Cf+$EkH/t5,2a+wYl&w C!gdo>"n#K^i!+4>#'-(&F hh& 0% ^ #1C= V iD7L. ;Jv;s{$UxfM#` I _& ^N_ nk}J*h!W%/G ,5 1^.BK' ("\nG i3"Iڊߝ0;N#~ F+!,Bq'Jww!fuU^ 0stޜ' ՟ ngґ!!ؘ_98AZ}V_qQ݅GӖۿ@RR/ٍ$6tT5ivX|IO5GFpT0eT6ӄG̽v˄,ʓɈBvgEπ*,B eӴ!ۨ &Wk겳ᧂ[,HZYr-q͆c+FǙēy:[pOأxfِq)Ȏ4-2Sly9IᾘLww>C^Q6ٟB_nfh `O=Ro[|S\VLA@( ~ +yQ SB/$E)q,[.,+)''c[$r$x *"4%!`'"T'"+m$ J2o(iI9-8@20eH4:TJ@ -p!}3'l1X&h.*D$:,Yj#)!_>&p`"ܚ" W>hrt J 01) f 7#%nT 袓~n}zhM` '3 l)窦$߄wՎU-Pd^%ٮVAk&Iܲ)c&R锯?hwB]ە#^ixxхaȷć ۗeƯ)_e:u֖oH鏋0ߢA# kH8g53N dL ś|[ṚP }{zP13CXEVRܼ k۾8޷UzH|eDZ+qo0v AB= *Yd_}*<3 *8m5c q#$%t<!R\g\{~V 7P *ꂭ iI5<4O#F8ě"s =Y;o əO I^*V[+i|I)=mJfhB5M7c +g3} ӂ]v*PTD Zivv4 = >=_lP&XjF 65 tc Wfe?!UTooH|f J_1;@#kP(px#&OH!{@}Jr64c{ z -_1 j} d! hEgC a"  "MW 6v! H.!R0IV4j `paz@  n gt\eH,"@n]*`N4\k NMPlw \< @@ sy!PO J)=/C/ 5=Z?q932-oE3&9#.xKG!^ֽ۶}z[vdL2,[,<DB¯)M%rrPywY7l P8wx;6  'q8 H7Iм|w:51gTz^-.G!a dq zF4iUCZczIq41+`ժޞ ,k Q5tV{9EWc& #j.GnOR fQv){ - 9=H zOB| χ f Y;V W5 ' cJ<S]r!']Z{Xj_y߼! ݨ f,"#b9`ܲIn 5o-S8 ch5tzqUCWRx G|}8YҠY$8L+A-Om3C4 S&*^"" em&"E _{@7\Y'Q_rYէ!TE ''麧l9:~:'d/ >S Giקɾ {=Hq5cqRԬݛOPMȁ^NZ:̝/ic:b-ۣF߿E;UE3 EgP~ǵwaŲxtn{&eA[(SE̊T꼵W ]G rz2  c ASW(1F-""ۧ9u!V7=0 N YG` +'""0C%+!n"&O kGØS/E<3R$!-h.$7!i@]'?IB-5Mt/ @J4-E*xA(IhЉt3tAՅ<{CA\WYHT .{ 4FBT0 AG1Qxq: Kzx$.b7[q Ld "~$S^/_茣 U5ʒ yݥd'0:  :eR.p 9PM=! &t 9I$U ePn7scd4Uy ?dAUݥdj깑8Bm/ e-,{~/# +T&:: 8_7B pKJ`[F_`> =xFC `.M ?1[ U7cEV?$vdh N- YK{R6 6|h,+,t%%踱*gwQ͇/сnОQOWXl$دk}ET MM`4V+NX\v\&D !R ~TAd ]ym|( @ ;p r} w"j =8?# (` {.0X+ R&/ !{,3cDNS"m wB<G zR= 7+4`z71b>0Z<;/v71H) f  56933JINb$&U ,"1r{j'm$  [oQ ${ 7qC n  fÜvkg# q 3Jʗ7@d F2 uI 1 YaVuJ ?έh/#-+z n Dލ Ws==קvF  ".$! w3"ZFK徲 P b wSd \e>(e)ICm>|ڸap Tzhf o**   dgQv5<# 8sO 0*e<CtOsu a'IL%B,w y,'!*]jjBnM&<u # np BVh dgKSW&!UXgzg09s UL&qu'mp4:MacOWkhݽzJg?zԌyv@΂Cm|d-Ҿ4ٱ)햑j =^yԫ׭~$OcԄJi<ʙmǁI "۸1Ѫy3ElNߑl 2W_0F'e-ʦ}-=ÄE?tr w)B= ^tG ?Lp BF̲0Z ɽ FĚ # m+ G ]#M XPI. "7A %f c&m 'dr(S*/),l*&d$?u6&S(U, ]h-M)3D@/6we-Ɏ4sS) 01$_+%K!!g'Z#ɂ'* )O*m%-H,d.'+˙3/-=ך2mPD6J9[QǓ,i&6 ,#4"jƒ5U6BR/S"0[)/v6o5y0Pz E,0%ס!  WGb]tu߱n"?nhLm ,"#tHA '* !_ cG^m|h~˂o(1-| 3  y;B;*zF.2./"6l[n{\~ L6 x P+`%9p|= 2 ]v<ڊt' VQ8l:  $%ol;؉qգ8(d#{<ZMT Lt{hF+f~:ֶ Ux9 O 'a9v5iW' S6:$O?i9%z( 01 ` ͤ+ `p XNJL -+vX!>ͻ(-YD)ܠS" p^ #A I 2: Rf&H ꫯZ -i3!f{`!]Uzi 赛4TPi - (&rTEٯL*Z؂WqҀ[0QfьT<_"֕|n̝( FِL̛*J](e7JȒ3~r6|]ȆEgS3h#ϳ1(Zw}˜*^?a)80 f,.-Һ)x*bx&P$"V"!.%_":%"$!?($V3*>j1G6kN9K}P:oKp7$eEgF4[@[1:U.:T-.φ} o`[]bPPl얶]qG RA*~Uc[[{ -$=EKѠt\m8OvJCWԠp2(S-H%^csLreh/@:,72X w $gbuZ`#5&צ]8%>2_"U!V?B-S FY $D˧{[Ns.X fxUO).nU4g,43<=  ́l`'mV3m䬁ѭgqʃW;2c/_lM簜:p(U\lrR Z6X$qޏbT_J`7)_JR|(.rCCh'j'돰T-͋VZrHXS@4߽Uz˶ݶGҡH q$ɿj{ mI = "Dn'a#< krTM'tK>v [m:U.O]'C]lM &i ?ti FX c07DM0H|Mg0.]O AJ [l  #L/=6Bk=*6?5B;E$5[/+&@ B"@0*"jlMܗQ-qIh'p6! 1Z?zL@nqD9=V 9 1)#k!5h$^l;sJ)j55&& ƻp 4`$B9%9jO5<, ŋ| ZU@-&޵gU< ɘ'4ܭv$7%\0zNEHecG݂L@e-[+eLՇ,%J-,B} %5}]ue& ( ~p! 8@8 ,!HL> R+ Q!KP orvS%kLS&hZKaf]O8)-L & (<1!O6>#K!CV/M Y #  $e S hB"L**rZ/1#-'Z!/& =1%P6p{?{v:尦t?? #a!|a]s⟕z?)ᄼ6)^%gMPk|D*澉K:CMNՠ6D1H˅ڧzͱ" In9;͏7JSނR碦>VRu|MXC]=b!:@7 v{"F^¿4T>6˟wIZsJSvMvKsz42NQFo?aE W! 8\>ha~P8U}&Q; :LkIJ1u~!րz+i"0s#%/L$+"%0Y] ]4<Dc(7ć68B#JM(yPP*K (DqD%>Cr!r5u/$0T,e2% p!w%aIW,_e:3Q-AkfAq?X<6W 1NhϽ-'>- ![àptyS'XJf"Q :N#x< 6 +>͂ ^_չl|1NekzT{[ K FƯ*.M9C9NiT= /f83vc V`5|R]DV\{xRNԧ֛ xE2'NJ1)C@lq/.p5|iA._n#ӳϨ,[A ڟ:*Oڀ (RC dQ$ّ )Š`O'I $_X $ !2Y4 Y I:3wYTJR9g ̭dMI#ɚ-H j4&_ 93 ګ- wx'V OeE@oC <|%o-4.+iN- c+ G(k7 "v `Xc _Qsi6)y;cr3:ƍ@[' rQ ~t`&Ts7sc:\t'Ln}>JNrkbgR_Gch7v94pV'̽`cNmKGG{ƫ- [cPp<e ՛,7Dh@\~r۵CB&;  h.8 9,i  꺪is $7M4 u(:bgf@#.=[qXqsi 8-e9 y_q&eu(&;%i!):(G&,7j!5+lPXIi'H{3w u "&O1Ӥ :\S=I8iB3y-0=c&*#9 {$<!YQ _ut2q?5; # \08i6Ÿ6 ;4x!(1b\)98J  ņB¬ _K 3Gi)J)!=7S~[  SpqÑH]euyC z^+wU`w/]WQ\ eU:*R=8p/nC/;BI%B9&c8fAR`20l[[] .M d5۲ xCy،&k1(JH֒S /`/ U' e  a 8, d2hhx#=u7츙*jE lu *L @[w% a c}  pe!u96 a[ U i* z 0>لxVȴ:l$*+["(P%qg\ *sOV?,# bV |XZ5i"Zk } ? C u'Mf q n طa!qM J!p{/g7_!$Š&/. ",*2.07@.4/˺-,,-3)+V(O++J,޺,w ,Je*~*-t*o64.C2M/7kV{:uLXʒ:AS 7IM43"F2F;L0S4/.4./1P+*('[|%)Z%0UX'۸;E*JU9H,]뫭 }  Lπ fiwC`DKVǐWID R1Uc d| o+dM"7#" D3 t~#/nj A v (w'4u 5.}46[  ؔ]F!Z)" t!%L9S܄Ԏn Rʔ)ekMHT/.-|UWuB>h%r%wڌקAߟRU^ӍApӭl8Ҹbv`i~_ټ:ɀ Ɉǻ AX#.E pMjU@Ce\  ֨D~SzQzc&)!V[4 r8 U\65h30/&9"W ,-##N2!ҙ-" @)3}#l4&MC*JN.upQM0LuX/ fFa-A#+;Cu'>7O$"79N$b8'#W1F2"X,A !,#!.>"Kx6C$ B(lIF+RH m+3iF++HCD*ERQZWh }o>UF3G{gZ{<KGR h= ߯m/٧q*|`>2#bMK~uV=*a#?˹[ ޥ!صj؋,Pܾ;Tiw2 k~vtSSd!RNS~1~EJ}o0cE }Zf /M]TUmKMre:+pik^N, ̈́,( $}$ݪ&%7L"2f @0ǁup2k%.3`AAeObf#9$ \ VMO,**fg=A***s5^PqMSgb>ѱD` #ܳ;Da,d'f c\?S-k^7[ڰ qK^tA]3oq숍f͟ HދR),4]5!&䳙KDybW\ظa=dYك:jy$8U!|4 [s u}_=DGFB# ! س  #ӛp/ ^dSfayX X PH nYqo[ lBsL b l_!*.N"ۧ-!v*=(C(E{=#o!_W!6_^.8!"|,3h9!C$F6%>"R7( K0bH&nO ?F irMeT ؄ Gw' } %Co#2]6o53+u0U/3[޽* _Z#6)DRzK -I>5;9ˏ m?I\Yxݑ=kCd IRmnO3)MW9lE/\[ \孳R̙^˧ɱυQۢ:YLldvQ{Xg1 W__ܢ:zY2ߚ|NNR,UDğo7Inp,=;KonB@&A'HT)}ύHM?!V_G4 K7H`$N}  [P  _x] {5-s-+ ^m1NEۚm6.A?m ۦ[蚊l 4FjN!ݟ7w~ݷ[(u݂Is;bZ];.QAnAߍnܝ @55$$(*~Eٜ׭X&oգ˂Y%֜#@O7rWe°0cd,1ӫ^]rjV[ZQ@+嵉0#K_9R/@j&1m^cW D(BF R3H { N g  wT = H BX  .fL"B)7w2 ֑4!s0' ~6-3)E8/^"61O F/cmUu W.xh#=,.)@YI-LS/'UG-BAR+pfNd)Qn"m<0" 0 6>^  FDT{9=>\  SX#c 2*P9% .@x-8p&m Ղ W7S+p p x6AQ vB="e/'Qs@ e"Y#%x/(Z`WJMvLd>wm3n B찏uk!ՙf"KwlOW~-z~U/pFjM.*s uNJz{)W [ N %d Z < $ . f X5 3 t3~|#Yw#&"av# 'FqfUOIl0O x/ o[b 1U Ҕ 91x4 V % ,,ɂ*"j'&@˭"s UP CT ơon0q f= W"w0 }W> du\jZ.G}t)<*C zE*l{J^L_W%UKU<%$xiSj:S5K`yLޚ&Hx,T=P(M-E i1@5DmiM@"lV U  H_\~Fc3wMpb0ӌj6 ,@֝r+s\HH {RA> k>p' 8 / "/ 5y4 1y{ ~K)F1(!! L Q 6kI]Og=A]S~,X5F ^5ݲ V.$ z B|Q( ]WIjés0flD}-=MDإݘr+gڍQWTFG?6oc}hl8q9ᶾٜ؈իtNL-˪)uZ6\c^Ё֠L|ƍcsRptߑYO t:ܾ܈rWF۾Y!9ٖ=N.տ9/q@㐞y ꣘[L5.?\ E.7|!o>4/@LR78cwn6Bᷧn[W7㰡TءzYꋐ "9tY}#]" K  p(AGjbAAõ94@+oZ. %?b6lroL pONv.Pog \z*L%$k O?%8V\7QFY i .FÇSz N#7$K[ _am}*Q/4^B*UKNsh\!̟ 3? fB.]SE='jI@KY䄝R#"O ' &**hS ́#sA|K ԶCX~PV(p095 5h %f^Q \P G  $ r  K:aLSQk0r è 1 F > e|L29 ++'' 'w #Mt&I.)#0@$+F"% "'!!5 WRBc o [dnV+;C [72&V  1  p%@ .3'/r:-9.~6tq-[4,+1u++)()%y'Z!D%r#Ej #c r $$U&`-q*H2,Ź/U7+},4)x+ H(0*'%U'&%Kg&"ő$'!r= < !H(^"uB+X#u%/%d K&5 q& j ^ >1 z #4% Э#&GP u V h7 Ļ ] DbxF3c A Gzde J tMGxﻡ4*yc窸컽ru+v Sf)9,,5+ /I)('X!K!#Qw/^,my(ut& rp}!Uj%x"JM4DKhL @' K@j^I YW z j d&:gh8TFVIqv/O[I? aXrp'w $.b)% yjt{箟e +NߓDaJyQHzm7\p^CEnFIk嫰^Hp-9քgY;[t[ x_;o5i(|/gjn]M-UuR?B9PPqI">DmRXg B k\_vp TW1MM Yo5P(Z%g+͇2,"=p & j#"U_  8%W>S"Xx+Dz*Z "P PtTzhn  z f @ &  / ă@a! L_sI S a,bn\^=&)leIn $m=jlm'3!_-jOK&8z,{Q޸3\u5^*~o\awڷ ^Xq尃76ޜ'Zِ qJ*۹r+%&nಓ {6 Z9p"D"<[>Qe:U :Va0\s i~3RDO89yQ`(fE&1= 0/[ 0:gm8 JJ *3 S[O .FYx a|49#P)t(0+-(+Z)D)Q%ؑ'Qs &X%-B#ڣ"Gt!s l;8,l<P \ $".$b#ܴ4#x#r.#U!L${VK}&- p "Pwu%.ErKR`k 3  h<]qByGvV! 0 - c9p&{9\dNuaO/A41|SmWȽM䅶肌L ;ACP_ DA^-i_픍|u`A--Ev;+Cv Z=75J;(z`:Xs+t@ݭ3#vfn=NWXK"TuTr  t?]Cs)UCkʫ/oI cJӹr 3,k4T![V^`k7  Wj(7~  do &Sn | 4 L;TEQv5~is(  vPy ! [!V 6- ]Ş-`?IWͷOzkm6<R^z/8?]+rK?)sߔ\κ)Ց?eu)!v! c# X%fGmu-o7+f]It!C3J|-vJeY'wQ PVG vv\ ӠZ D L S'M 0D 0 V X <rF&7!L)"X%m ! 5L6i6 P  ͜cB#EP)#%0i(i.1z(,0Q&M.K%\+<"K'l #d#a^RE)ȾA"8Q O5[$&!}v E5*8yM&fntl LTa"J 1O *}T7 $Lج`ACӢOUimV3F) JbH >Cvj#D%[(Vt^NYa35|.#Q,) U_V1N*x~ И(9x;}lkai?I$>KlR={^rxꡲ!֯L1dysxvrn.2N|Ac/S/`IQ&SK&o5 ,Ф [$ɓ39U. *Us *O> h 7lsyRE$% L!u9lM HF.1B 10T/뱒 QlQN_a = ;~~ ?X@+&o= @s`\OimgCRXf(/"t<6$/Y82e9^!稫*U޳2?8t).(q'uΞ E&b ]ьq׎`d2:ӈ/ݭ~۷٧K  nVD㷏 ߤaCi $ێnx6ogٺX7NزO ]b/莱,Үl|{2 Gv.btM;/6\ N)Jcj3v( {_2OkV&we} %ZQ م ҫU!R Y{%Y$"$A$"m$l a#&"m!=H"}"~ H X#35o>)1:zq(i8p&w6fP$4L[#+3"3 bw0L9!+&$Yn#7$5u'.tX*mG(tQ$ 0 C rDY h:L Cs= {~% ߫ͻk)8 jkEE!o?* rgd`K1& SVjb%w] d_dryq 㪙 L߰(jKhR .A" v\Zy4ȴ ?}% ( z, Jx | ީ Hc.8R /$d@=B%62Թ\[4K*LmrܐEshaRJPI] ‡ 1 "zvs>jQ ՌEwwcf,: ! ,~yR8 .sCCxYDP*D' ś^vn P/9'?ZdKy0I,FMY 6EqV@>s$E\ ~ 4E=2Lp2] >Ja بfJ!VUT9/8[7>RN)-X[7Us* T&[q DM{A*K7ڈMi&Uk`?[߲A7\CZ7s&Y9WQ^nINh: Iu Y) =i S > # KI aŕ ۻY !0 e 2;ʥ qXZ~--Z8>e9z:K {kŷ  4p;0@ %}$%sA$ &]6!$SqB"cIl֣&bG /1\ju *õ 2% o *ܿ[9Cd=%)J~0Y?H]6N81,z.!CoxK/h GE  s _Gwpj{@6W\_U)'G![D e%Ѓ .UDž?3Xuc~ cq.2QCK|a?~W$.}  Y\ύ^-F%x!"!ܪ]IG0c_&C (4i;n s%,!003K/S_,J/' p"3& 7# BgwSf§L^: )eXt4!]!ǬZ %-]!9./  1 vA+  4;A _ $( .cT_elwW&셩& oj="fA% b% ĕw:rMMfژKՋ07 q8H2i/W7㭯tXUQݷo؜Կշ0OعUʉ*`ٴν}ɼпȦ1r*GM=/M",(l Q&!HJ[c<lFթٜIu#V0^WLnt q#{I 61D v1  n N\S ] A U\396ac`y L =L0 M#L!,(+^"#:f/q"D1 i23 0S-FGO*xԱ&l"87 g!܇K#+j%a'BH+Rߧ-A66,lR+I ,,+%=S,#Q6-+[Y(yu%B$)}$x%Pk( (0&"XW Oەmvo VA+'V *%y*s# >P)= ? %%.h:쩂!)^(ENwsrPx.T Dhoaq6?>bRK$];NqcL5h2mc FH'.ḙoe~7;hl`<\>#PVZ4F?'&2Bլ >Rusfx+Fڻ%~kCI/JvMM{nFrBu9a}"ꗕ=:Dd%'(s&F]~&@OQ k)GSi葉K͝xT_KRy͢@YvW|TPlHsM> 5ZRapmq^g94Fiz@d7(ea T[K塾w-lId`\T%~=>]+7{LQ,4j 9w k"vCu0脧A ޾gMܠߡޙFDr@A4l jd bLH^b%_i,Ma$/ 'g.-&,$)#+%!CQ!f  }k!b-[>%+|:"d(hf*],.J ,.)y-a9'G,x"]*#(n{&9<"ujKl<ޓtE @ #!X+%1"MEzQҲZZs3JP m(  p  t H3m ӈ ).[A@/Rg?fOX qr Sq;dMɛ~+iNo 43@h{ޠaGޔZ|,Yꨭuţ3Sp ȕI]s-X3F#& Q"_( uy b.^Y"<39JE6($h$/|uNC藒:AԄ]S6'-,@&]G1lžnRj? w o:D h E H m c 6_ m%ҕ jh RjNj'lu!Eb"Z&"א T 7 b)$$Xn7oR+ʥK c u\G5*xzҹ]s7izTAycA~ e Tɏ 4C ^! ^F#6NQ+M/~^'F&v;U%߶P`[A_< `Ā4Dc e$_ $ݾ% /v2ySsI0oo`c&!f <]wVa3}Kl M~9 N /l+AveLRX_E^  ^r_Nw wC8nY)H`=[aFz֥  ݓ w 4 ¡zXt[x9*dd6<`(7~an>Ykc  Q#mkVZ/u.b̐S 6'+Rl5 u8V0XLs W<\ , "$ / &jE6NCNa &zLr#@cWp%j(lSD}AS0;Zj)yc )]ly<y(IRR@wy C3rx?)6i T\6[ulG+<1ڌ콋/).} jVy zO\WGٖ<1PDm$EYo`Yq+S/ͨ#vZ;@WLc |#&W,*ih@j F10#EUA=9)iX& Qp3p&/{A;}= eZP| "~ ktw ! wE);% G. X+%1_% !'! a P++3 _P,_Pk$ $f8 4r c&jN ެ*M53 f L  iQ vN Q E? ȶ\27  +eJBHYR@>j: ̰ TeqTmxAs @  C5 Un}F6ј/UdC$p%M H0Q Qe@w%!k2û)u5pφknH])^ 因\3a{X'%Uh8V픑U-w4YoK\֥|Md_FL?6wpH"Ҙ(#<] UrJ [ o /+M- M4$EMl  #/ c!w 33 tprߓd, ic"U0d b? G@sqfݒ2F0n_J0 5 b$% S Qlׅ =En 6b xT\6FCBT[RAw 30+8~sn VFyr0I&ck'Cv27}PR32J  G+隥:HwK_j)@䒐W^BQhd*TVP )kIվwWդP[v\;jqnߢAW \j(~䭖{2be AS1  dR6G-UM 95`:zV>1mmcLK:bFdQF+., MSJmEI"`BT @1X[8ap*X+I0  6 C ǽqH<#VV '!)e#N*}$F*"i(H"&%Ʊ q%ǔ#-#&L)?R-<vB02 l-0 -=F*(''v'$Q(rDC'!6"$Ч^"76"é#5 %}b)M*&)P&qB"N %N}0j"n" p; @2D8X3̋.  vu_L'>*pγJ0k]O7"^un /\%%e&y7HC@yw!~LP$]ֈP(!t'O'{v*þj gx9HmJ{AeܣL糘Bn 6gq(M Nj1p?73<4~goz{aA-SG|bS 5%.}DOYz|>zk6DƘ_mJg&8[*%Z:RpTpI94N3\rG@)d 6r;8I&i43CJ AVhiQ_R|E" @ {y c^e ~g!i00dGbI1GZ̄}[cM$V[F W ~z V a  {M uG_'Y{dKlzz :>e M{ ®8 \ T&S\+R [sXrB_:R'= ! R AA7mn`_~jen6Oh}'*,yG  *i{)S̵   $Y y Z3֏ G=\!Jd" ؝ 3g_AE\G B \!p3MvN9yF .#_P'k(zy(5a`(%>t"yfD '%\/NH 3 #!I 4  4l5DWPx CA q&u Vic Z.Z %CY~koW[Ay/. l_c:Ks .xc eN GLroE wup˷M1}lOL ~:/( ? MjG;\uN<> 0|sJchPY.E2hUl6]fJۆH Uc%"y_-()B䢛>藹 G Ϥ!/`9wN1uj&0gIg 2~ i?]PI|@IT F Y My  cV 4   428lPAB5fO5 NkD= ~O O^ bH XQKơ 5*i ' j Llg[_cS H q.  d X/tK . b~w\]| f+9QUbI뷼Y.VenPDX=;*W&C3lfL|̞ X9˒wׯz۶ک $Ovs;Hk*嫦0B1nU摽]̍ӖY;kd ]q>rNs& @(j"VW&{?8kF ߃;ޤD9?+=Ie5q$E>%NxjEk` atDQiyf9B %@7 *1C&#gMP XURećW E^S QKCͽN!  9"6H!z p UT<)X?V)\ &3îl%}Oy)](<&~w%"n3"nJr$&%$:$$Tw#w"=##/&|%.'["(r&&7$a`"Œ*_!w 65y /g 2Q.#ɭb$4"&l"} 1Fi1[DhA H z o nW:JvxV8{E   ڿ L *LZo`L#Mo,5ckm;vvFBQUt:)El풚- )t^J-%PK*z~M!#2Xv;@O:b '6^ I;e7Y/8>NxP;T>X9.~JQAKB.po cOA"C{z`^'I9dL'$U:軫gn0'lB"URXj4Q}t$^BC BBQd6ROM:4ovT)] s Er@p̍Ѡ>Gk}y G>Orm (gRG{ {ܳ Jv{MV5Wt } !?XAlO=-"jn\4@){ $ Wc [7 =|yi usAS-܏)x{[N"89T!t(=t,*}$Ϩuc ] Srh7Q' DvC 4&N|)&eQ~"8c4JDK)NZ ^g A { h)F-rH2<c<t i'"O?!?Ȼ Fq NIQ n*! %Bb +4m 7".t/F ڐ!4r *LRh ccE gc`v3Hvg`]7i AN(ڷ_=8 ^ Y"'[ 'qX:lkm\] ?>kyLu!V 6T}1qcuQ^IiPihqtuSvUa{(q%w|]m7{oW |F3:.<+3e}8uq6qr=^c#bW;*Y뇞j R8%$Sd2;.Aǚm[y/j4rh QF^< (LpUCT 7 3t^[gxg 7 :9ñD#9p B 2 Ĵ ~:eL!^T4{UB:M=c3i-&DU ; P5ǕK0SG>v&;it~ea`d :v" L;fIK=,>|IWUY/wc1늂'DG%o#,? c/h ^uU8VL~RD Ҳ =  uSxcXUva6 ?p # g  <k T HSV:S7Vfo,5\xIzygm8yA{>U.)71I"U n8 ܰL3KQ7--]TyE)H~) Aei7rmn )j+V3qI54UߘN\ fV>NrwS{6|;F/n"~2[*9Ŋj#>:>_x, {;-w{<Q*O'ۭ˼ 4^ xok [^f3&.7AdxZ *w Oe z_ϲ[Iwm_*:- dG` D - C ?'j d\G9 7 ) ZrӃ:V3,9& 3Aɓ}}P-<:Y& U*l 7#Y (Rc>-x)gI/8 @ Of  _m^`ͧ|;9vBy9_r؞dy `9 [ wAR_eVWj,,fd^.'> ɐ* ܁ַ G ,~/L0r l%:xW[W n]V)ioKz^l wϳ$48|E%UeT-O=뉒5T@薁ie]hOk\a$bM馥kM|,czɖh&w9qL콒jx]'kG LVDyKlVꪉem"0 _k368]#! %$#8c-h,D(+Y>td +'+D=:6LWS}]x25H'r:C̰e,Ԇ> ''rd9}f\X+2Y7]l?\5d`' xZrW]T7S`S#\L9ś NVta}$hyA4?A i)ؐq ;Dp _棥IiX k Ag8ap] >׈##Gx CZŐU85A/- : XM]m/7  ψq1BO{Ja)a<:c,U˯0GaY{R ;=R!N 5o:.rfyWvaM wb!@"(,#5W:#v^#YV$!&$&:"ف%#!Hp]`s 1 tp@c 4*D_VT ƕPٚ;} C PT`h YP rDp fX |l{_}d#Hdq5^q:SjcN* >KlioXP}j0MZ>]#["͠%tkA}P6j! mRﴈ"GHJXc{M:퉊>6x'}hD{=!b)꼇sxKqv.r꣟ 훎IJ"iH(&$m``j3掦qa:3xcfy*Ln$:LPkrK'H !7?XlFC6@uE@E%р-e]iUƴr/f" x7U+ =3 !w_mcjCAOoKi50>f6 8p8P" ;kL0*  GJI3?;CjzMR6b}Uݳ³;ڃ׹%`M-k|i S} c~PP˺x[^yX { 5 8|Fk3X؍qxvmL- n>zfz-2k7  Jt8Wۼt8@8J|j`fa. H$ [s O :  a kT.xnG:Rd̉ݱ L / ]  A}UG 3 aT h5j  0b%)g WE mF oZ UBT , nS sq.:cxM"M W$db)  _Nd,1x [ I W9 JgoWc<wɴB;f;[@@wFmEmRUW ; No z] "A Іw;fD/[.^PEyDzS_컿6Q4Q.J mF(}qz/=< &i'\B@{T0 %kJ 7p"Q^^tH,3wRt>tnrYD 8j9d;gt%+# n+Mr $p|5<yXTZ_ C7 _6T$,5\h"J PMŚBBqQS@Nm4!;͟; ̠Uͼ V  u@ܼFY_4- A ) c nB = Y , ~ MtQ. @eAΰ |: ٨Oe.'  ЧtE.GblxFJ_3 'H *P Wn e bȍxsZKb 3L zw!p vTkHcwmtc4嘊jm?ogRTfP>w ه\r6JPWT ZK~u޷fFl Eiu ra(DJz֏R9k無mNN |?МhV EAYFbw]_YiN /6 EBl ? r[ ʮ +@= R Յ a,w. ?JWHi[a!,p$V3&%+qDD,]Mn(,`X$!"r*—BTk}7 w b s /]J!#&M%r!o qf 2  8eJL ~wV?D3V:zDu@[.!4uw7u;SP/2 ѧ=g:E[+KiD :hز$z已L*sݧ2M5!GX7i7p4aSud貝ۯPKAݳbњM8a-4 MxWn( (R/IK_uϩ |6b*9чT(n L=<>q,f+\}g?Se PR+mkGĘ(k2 6$ }<7T]ݪQ^\ H X mSSY Wu> 6S2I\kVۀ\.cDB&NW 5 gw   ɶ,q-(.!lU'XL7Q< nU)*Yb_iu1xcv&w)YTmu-;t/7 y XS b "SFY_e6 #c B$,S>=K7Ffx1(( " !>!A S^D . W @?1 UBV ʌ`L S ķ=+F[ - pf0 / L`><)/ ba~a2p- r  (A K"P yLVg9 k/)6I@'_ ]Pq]3 fiv;q "Djt!q:N #' Pl x|[ >W ܛ` B ph ]!WhHkN 8<@ur7hs.5I zRr O(lqW^X?3޹*\>Xy=r~US\j*WlmO..RLArﵾ톈yuyWfh]VN켗27KF99~#V=&gۡ꧋au#R-3mo-8@x Hܛ}4 g:Qh e` =5 cT])+6x[(pY@35OdJmϲ̒oW-^7UX@ y ϛ $"6h!OhN. %8 ֲ" ;EU P zDjT' 4xuh3 lTeыMgOZU I ǩ:.25eSi$]tX0Z7E֦2_c_,]BNKCT!'QIhO*gB$罔$SZ%5ODG3u^J E0C{A8Gjb. ~ee\왐?躦荢 oQvu&/ NJ~Rv B~A 5\hE! @g6N-,^,Z4TbO 9ͩ<9V̥l Wƙ /  v $ + I  t c D iC Fʉ"% tk>:D7G9 =Q|7U\s21$&޸5#:5un *} )hagxF? <Qa'z$vD%{3#Hw(PKr I=A X , -# Ӗr#Kl> /I  , 4?'(0˚NA|n U'Ѻx;bĝL !Ҋs; S%?|!!KPކ$U&w@FCa(P&Y@呚*Ү4 #e4B4w[#EҜ_P>ӌ(ٯI1Fm"pv`3d+c4.Q m@8.''bbs\Z)gC.=lb4`) _[Y <4g'dPa3ҏW6~7+t= >L/uA|];8#&Qb-$4+˘^^TX<^/E;*&))ӭP -n?lId[+0rB[vI30 hPNlPsFЌn2JF*@OtP 4o#D0Eiq>8vg`*)( 23 ƑFuiQ5Q^T: jO1$|`h@cg( Y 2V> L  i ]6 '4 UO\eʗ 9  on ] s &O -5 zY3 Eh  ^ n g4: ջxx(0   v| ? `a 8/ B>_\xshG `> N?i x ]G  &h_2*=ѯqST mCSk{&B?]:F5/Uf# g}6\XA^IʸQ&1^wGѾDll:ꏃo|NwP ݮu`o*+|n|e pD zQ)\J ~\%td썝ݮyYyK ՘gv$pqoiF$-yE , GM R ' HE {'N< "s 'ۗSt*:iggU (c]bcE0mo.q| )k gԪIQ:}aBG 21wXDaL-G׾[ E` H fA  Ey <;>\kfW QH N#H G 4q e=  ~ F߉q@7d:].&T`BXoD\A;`J ck<"*ߙHڸfWMdxUoH!1K7)Q\=&gj}4@ii:8t-bl0*P3cKllW,^\D N u= B HcV>(vT  = Ô ϴ Y d ~ v h !' ^} BrAuNꐱQMm)M/gU/D]_.T=u㩅㕡^⭩QzxS6e̚KJ"4|g KW}%5mfYG5LPqg D:W5@u7#\st~Bt+bT>BEQvp|}IwBM l:wv,&hs)O=`Vk*T+|+7:yU90 Fw oF-̳&3 ݾf`rK(wkxɎ Q-+,%en'9z׼ R L=HvHrF,"kg "q &s&4J|AOF *n ؍Jm3T>&y΂x˸}B\`wKoIJv; y $ot2?aPcÁh"J?B:7}dS£-kv)0A uu 46 5/śJ3AHd-ۄj(_aBoIYn8lHd_uh%& ,{: Y%. i=Dz\`0i *TE: k  y ֡30e )  O !r dc _1g # a  T '"d;MpQ2 ? j" + c ] @e 0ZP?>G))]&{ frH?bG W) t|13@ ]<6334 mt ki m. yF < 5 <  HnraOw)G笟\R"#R,h"L 'M `ד,Y fG V $}q%VP>$SkRrS&"1|S $Al*#+*8)^;-^َ5j1c ^X ^Fp'1f/j ]E HQ _ #<Fq!.e:?)Q$_ v /sA8蓮]ݦd7 ^X #te% 4.(# R ekf+^q -Tqn^ TY>#nr=D7B d; ,TIAR R#BO}v}{~sHxP9(eNꍑ8#?%fD=yRx]W]p<j[W(7b6MiN:3,\}os 嗽6<'<`DZ|}-uݝۅZݪMpY) vӕ¾nmhqd/܇:*&<^p[_|1A ~L^8TLy$u ,=̘(p鵫*6 b C j4 G*F?">  j]  tp]V)1+,՞l)v3 tUVgO"bC5#Lb.`C~^ݷhCM%O:*^O*'%u?#l"#1:w($ ! t! 7x&< %+ĺ.uf335*ŧ2DL-f<( #! M!o s j 8*?!~H^jJ:$)!)8&Zi#vn,dC~:6xNV ~0  J: yEY ^  Fb Q-%z O ] u5g7 ٌ+"o ip SG JJN~v%q#l獢Y1+d-㾉yC-Ƨ84ae@s $iـAF$f7揳7gmoܮN-{Y.GgN90| SO]kMIa?>_g}ci^iG D"o#Za.0--BQh hbhIW?ar$ HR-U4s.U1hi0>^Ғ'AFX *e'` Ig  &hllwd<Q|:+zmH8 mY.4Tj>):LLj ? G ]uJ:zKW  (2 F*ay ¯C-Ձ [e  Ϟ&sZk1 X.^L0{~O^$Ei " Xߡar =>bN5Tn S0. .0ȂjX9l286th|bS\IOe n [ : uN ؂~x ԓ ] 0a!n^8 Um o  bqW4  Lh ?$, T ]^mi }5 MB` xjjr&$S'WGg 0oHDz$ wg Gz Eo ^x P R ߣ S By9  Elph & Ȼ/G ? ȭ[Gl5)WEH)Hh#y $~\jDrLJo} GR?Tg@d繂/K<[G!0a{ x#F lƞcgDbgVq)SҵXw=b 04v7%S1龘 R<*]왦CzIzuCKp C yY< >Wem <>ԛ,{霴EMk|{=2 -m#xz-Z."/&IT}[rQaIY2PWװ X ($= w z  ؗޔEYm`!,a\R! 5 #|;j{xz.g9tȹ}>Z=w6v   f-.Y-ZqXVr :Yr/cS:1n:2 qJb x^x.Bd@O`.1NE1˒TJ2橦Wy7yPa wCMJ'`%ڗ436ڤ7?O`q8/t3Gwn ꩤӮ盷jpdz{֗ "W~o;{n}]FRZ *X\gwy ߒ r {'Se iUt /wfFW_. " MPˮ  \ ګ cpoM!Mh Z]  5Iv w `߉A`+:o nss '  8nl ! ǝ ~<{ - 6@% FkHl [ ym  4,`f՘5.cA Pk7  E :v 2Q pUVh_ 8 syڄ 5XX 7 9 >^ NO' oBB ;` ‹V,/T 7* :L@ ĠNLCY ^QIj ת @1E닰Ҥk"¯,ǥύ; 4 wUC0  n"5a/3M Bk>9;So8 Qy]0 !&/S㰙:;lb.ɿ`T0Ye1bB ;v6KkJi>O.lRh%.LW~v3®w ]9ʀ{N:ӽSO]K+V4nd1(נUFԢbÊ~5yA5eơ z*Xqmbcx xa;D dqQ iE= ,pcE9=h[R5 I^ G b g#]*AΛ(.ꅯ)(NeC )s" DER~H![@D*W;i_}%/"wh.Bd\07+kMh)2tu_ٴOPe&/$:'fL:Tk[2jll)`f) 4!7+C)7[ILp Pm&:P ǫIf/r#qJ7}bVx(JXo!M |*{"$+h$a&"D_fgG} lP\ѢCV&oL'Lk P F!e[&+(;$+ !'Kon& Sw$ = Mh B$ ]3 . "1 `{#9g'Gx[&S >Ȥ F_ IA v }4 H rAVZBt) D /X _ 0 Wn }f guu.3e[(QZF얓*Kz` ־ =`#08Um #Yxl\[L)9TlG>ue ^%OlDstcf{a+vADrXFpʶ]&̚c  Ba|;N5k!EI{MOfxWG{/W&+.7! Q. {,/1h1sbiQ^fWJ%b> 6+M1 2 G pƓ ox.D? e4'H gm֖g+s%AD_O <8Z W[ӾKN͂;{mxfi"j>×s(MyoDjH;Ir HrކX ͨMXHO])dJ%!  +iqhz"5y= ҡa n-1_06'[W5>0]FpDO:6{uQsJoK`>e24,' LOJL ecCD+`S=UeT\vp r ln sF.78 H[|gĸ"W| M E'D+>['m$&Q{#;e q XuM /"*9 M7 AW"P&iz ;u`˒/[8!Uq9  UcwkD?le~v%u mgb1dS3{\ 'O p jW;+ ,n L  Ň" #*  `BH S w@ )o&Vy(zBD"J8K[t0AS= @Q{5S1-%&Py,6pӓI: z㰓<(Dt^ެFvӢAIpt D4+8Α-.Ywu⽄k%&^MܜelTwל쿞ٵy'9RX|Cj,B"HrM  '4x aFa|1Qw8 S7nq+|nAvn$CN)=t7r(EP3.qQ '|)2Ѭ1ZV$L-rq}v-Wg:t\9 RWT v \ {V :G- E&T Ea xi TXR- L K W^| \5 r? XU ):Ҏt~;djx4sJ5qN 26 P' z .YEN7;7Ś^b dE|x<ZA%tö/kz>OAU,r# V]7GK on甗;i%yn S=걍% Q 8GA+"A!$^wpq7D[q<;bByq7uZEiR؄t|7 8ƈkVz@?( ,  : ~'\ |JR X" =z gu @+ch_ kIJd"F8I=l <b <["&j ̿XJ&XElM >Q`Ŝx  #Gfs":1 XD? d .Q =ZW GLJ ] iq mkOCuiÿ ReN78f5^,^hfeB RB T n m& 1s ofݙHVkyc.)2gfm#$ #R p % +9  }I Q1  JUÙpKA] # k U= n^8? m֔cqef^A  , 'f F5Mt i!בWg/Y6U{0} % 'j:F;|ėSOwR 0P>:)A (X],G <*tw{:\Jb{ ~n r1_Lßq:*P*  =Y} m*!ܿ9ƗG>C?.iuQX qVSvw@,f#!9Fb0=jT6* 3 ( w140.S\?Kp3<b|" Ltօ.Љf +OP}3 ww iWx JAVK5ǫ`qBY+a{ ʂUQ_ ] G .bU T5 bO>"<hyc0Zs <9q,2m  V&\WB9 K ^ i pb>(D 2|GIt. g e. QUSW c !j3 % ='( j ` ~ 7f Br jV% p  2$ z M/` І7|2IX_tw  \\gy 0@ @ 9.n b*Rd ~M \"4:RQ1$ 0w#A%a0hi  ; b&B"m%/ O  ^/Ǘ F >#=b(c ,y+<>{Lª;TTI$-sUy# jMơc#L,nu\qSk>")bh7ll`/6 p[l,r;Y4l?ܡQ'*GX̷o y +j fG xL=  'IB O n?-$u&$?Ikw 5Ihqp ȲuyCn)1!}&"L%)`cg#9})jM; a74{ ϼ̑ y̨-J4DnO[DEeWp ] LJu eҦIh]U@ q yd ۓlx ' 3e $iּqS{U@d}I#<9ՆU!S 6(5#7h+}P+aa%lYXh Tf sm8wyp [mT0o]7v"F[s@fh Hd$0vZjc nfX}WKL쯢Vz'2kXR5<)~g0_[nZG7%9RZVm3w-0S3`aYk?T=ccUvgۇh U]}ST'9(9\~} iIVq|! zw J% ZY8. I%4{Lci(#2,]P*ЁQsIU$D|8dLӷe=e"rw]e^c7LA-2}\muD]q*aի k\o SHhIZ*:p Y$L ѦJ Lj) 7t$MsdhI wp 8L{QLd?lWTw#if! ::  [ pY?[5$ /M   yKĨ+Tք Hl (w } )`b>Q: we\ustlX_$ ya f G82 & ZL  Q": "eXK)H(MtPpx@] @ $H ; N@vJ,SNŵ f\kš{5< pe"[n۬_j%?>sb C YY Q|BW}k _ShDa9sVVEGSF$A3Z HaK4mS*K;uC 9c_ \4 Y A B (T7fS('vΌA! ,ow  5\r;?]4w - } :2 B;{ 2uBXtaUk#iDIP D-g d b 8o4xmoMnv: D.9Hk c KK/yx\EOz:Oˡ4:]L5ydjkbpl +kzM% !5Pﱓ` j]&)kap1Vf.'  b l3 Hjh$8j;oR;}![rle66D}3<][ATD Z  ( G"x`v:aZ,bL?p*Њ l0R7/=G0SsRga P| x`-  Z w SD,2'dM }58 p L ^ xaV'[cz{[ >uT S  Ho:N/YG;'6 ^2{3ЎXR җ \%$.pGn4x c :Hy Ϥ 0p5( zm9Fjvi@,oIk?IavƽcDϘ=+1m΍W2gOZ۠}jmjM\!IQ:N lu/n2ASN8=5~L )Meff!}6fe_)a}0W&{uR΍T#Z]ofƬveEYHK "9^`1o|W72&(wFZt0ڨ.A")bjdAZ+6B+!HQ pH)>F?Ourf28c? Z!u=4:<a(CPori QK1O͟zx"Jw'FTN*nnxY]D%A1!ey$@T׵ǙUC"R;2sbO9$[S_UZ^72'<tQ =>L3%sR z:?%+&"F=PH>["K%0VGn5WIKQ&y ~ 8VVp 7ڰ EA(  1 . CF)Q_C|^FOH Pyc ɯC@LAqdH3X)tzXc qXu`wݼSg=w;EvJhrm*X Y2 p wo|{&WzR4 V ?'nԏJ[+Ml u Ҿ C l d +8C E+ 2.{_F6QTX)4nI<i+8 C M| @E L, .ekv,TO*&cLOr#O"deh3im;7G*9+DO׼* LhS[ Pl 5`_'{]|NQeL[^{O'U+ӤHhz+ "[?22? Sщi( Acm?3o,e yS!Xdp9eM K* W | 6TR ΗB̭IVt&2    +jcfqLX p}$[ nv Z$c 4jLkMA* ߋb OF !TfHڒ;ckGM&ǘ6S}^  #? Lv*+;Cl#;4hIw`Ϋ5s<:,7ni9 9)*E*7{` b&Bq 7I 9P~TN<.fjgyȯ D\} PN{ E Q) m~b $ (w.Q 9UChl,iH b@JPޣ i %Jx ԩz  U N\^ ],"yC:Vs@ 4  K >  6;  ${5 *Y L t5   y |hhf2]L nK>(.?_2+;m2#p }sE9sWOAkCWB>25 ͖ } G' y5WN(%WqZYsZ L/m $Q/B؇WSZw~odwÐPW!}Hy2ɋU{EH<y ?>NOZ)Pk3|*0v|AʩB H\-L 3#&t:S 6GW ń>ELsEC|s'9*ںhP jvW1|Tü=NB{?ZBCZnC76jAIWD+~q<|8b JTA} FIfj ϱ<CPw~2Z-!@?ciz 9ȶLbd2\Jja _Кn?VPH ; p,|,^'0P(#K $:qHڬ~ kkLDwI~'?)W9ldi `$ ƒ./`(FM84 a*Z7@JI[g adMRp}e5Dv7[ -A ޢgdL4EE+f{O4 Fv 0LeeٶK_.`_vul'iS| bb22r  T.w+@<0Ѫϴ[d u7 !.1  ^s Ƴ:mVQtE&A -aI> M v$by;7)lqm5_7Ew8 8 )UgGH>Q}  w_D99asX'@ =X@&<o{ %.,#bAxC~b] U\Ҭsrg7_J˞ؾ[|^/Q ;1dr7C&hHyDJAymY84U t<^HC&쁰3[7Fϟh=DcȼF}7!hx;?< [w uv~Z~:okRlvyE kI  X VoUgHe,Tw"+L, 5 0 uFVޱHȄ kY;X4"W73+ ڦ&' Ip<`6g ![X  w`q3spBfP7Vwغ 9w 4z /W. T֏ݑRx^;U;  &GZV\H0 a@,~+uL1wxChJ;zW1#IM[1N^gV=^tC&4i4 Af؜bG c$8b<Y7l<+jXF4!jUVIVKM%Huls ,l⊼7p^jܐg̒ rNy:bo?i,;*x 3tjYGG\\R۩ XnjzmR_o&-_vB /ZYtQ&9dm*oesgnjKZWhOԗ.m7@KIZv{}$c%ʓFSVU"WME6T$D5w{6 7eXX?n!i *˚Ce-{StPU]e+?2-hGpƶQd/$B X(@qgU(O} 9?xDwG[MwU1>48s94|7TVH+Hٷs R.u %?r-@-u8]tw:BB XmS f 3L z I ;h  aC iKA>V |O C YQ[_7M!8d|V9srOT9Ph *Lc `x .a Ui"?8/2!T}  ~AX  ʇ zҏ A k2\_  ~ SňM5:1 vSn:(gn86'@ r`0 aYMX%+vh |:8(KrJQث &)BFaYĔr5B4Ksbvd RtKgzeC[ӣO,#lkNzdt}ZKq]O,^SSWH;X5"+%%}k-  9 aV Hp۳oǃYSx^cOyri [3 5HS ^Ih_^mՙ8ؚrA* 6p6Fv@ Y *o {A#gFN >!n(p=''u=r:&q #T \ MKڎTg!,/Pvu$|IO I ?KAK"7gM,gP, Gf^' o)H6p8@fT.5M/\di2y7b=ޫ[n+MojLN&@?('I_-?,YjP\<%/;46Arqol &,7  h  V# U   . ӷ1z-Ry%k 3c1 k$%:ɼ7P2b E034 | l!R 33\  NN D *a P0 F o } z" D E/! :X y$?p |  c a s$ o,X  PR # a= MOybKm])F: T  2` ^ʩ+EV~lD\ [j3 ,j7B2$sf*=b+MRa al j|[Ȉ/7I2N5X}RM}~A p_}J\U:[1o~KE#:]5t)=fQGf%`/o}`p=Xu&'|Ev_ipQ1h&"7ecޟţ 0\1J#&fX|\h[T#dq S:%&s!2D|_0MO{nb2a"~|7#ZIjMU11[wmj(S9 4)\;LF*)KAíF^9[;/ +j7 D=6%ˏP3QCXJvgWM7_6v'@h`dԤ{ZVtN"~.>isQ W7"rVH~0jE1 Ѻr 7@|-ZrƜh׺*[ (P_2t< ʒc)N\[Xrss28 \,&N)Cz-,<H&Y !ٻu\fћvQKa.K`N$qHtl!`̓ }c7e AFRp)" )= SaG ]wU~z&{m < ' ? u yq +z]E?|7fBNr ` 0h )[qSi  L8 7f0(JlP?M"9_rI74l wE AJTejÎ7 !4W v$VqZ ~<˨ 2ƒEF_gC_CQvj-#<{ H'6ݘ:0h--m+ѳ sCk;K4+=t^jRp $pat#aqK54d*/@T|U>Y{f~g?f7a/37V|*ǡέ 2^!͓ >V&L+4 j; u5w=4asH(=Sc]Pg +~965N~y+j5iy)P< J h4 q= ń/ t aiCwID y PJ IZ j) $/-(!uH oV R f,0#6\tY (i@95۬mB S9JM[/;χV%MmH-ph8\e53SҲ1wA%o11Q{H$ q?1X5PEIF 'k0Vb( #e$eM`Z'T /o-V v0W+ph0<횟CI. ` a ub&:uuD k DdzR?_ *= kY 5> M x R~ -U _ }  l p&&k K zҡ P\ܡow` ! >af ;d -? EENlp3Y+Vo-:C/(UsR{C|a=P#63?:-VV3T ot1ԳGKm3`b= }D9f KTW ײ3qiXiXV+ Uzggmt?8;60}țiD4f0o*^W{4,@ULH pqulKG$NlqvN64ً;<>}z~%/m>s{Ki]ng̗v>a @Ot`5Ը2=`=$'Ev/ūkn98Q@5x;4U>$R%waVYv\fXK48" ^5IR$(aN-Yh2O S;@&  yh i(J9 4; Y 7 g E 9gCyhBiG. g о  U>z 7G X R ~? O = e<y Қ -z1 5_ &k U>'V3/`Nd@Lj\]-a, *|I)3e mW] dFN5=Wo S˻qEls] "Wlnc=7(bSP:Ơ ]j}9/M˧ wMw)QB-Bu$#ﵯ6wq_j<S(!u; }W3`R9Q87iU&Rk @:c? 0oK/D1?QuU9XF'wޡ.Ͷua: #nU Fx'WCUq]e=s=Q [ < + @*k<^ GmFMYO]fSAEY p K|LpE AOg ) hLӳ0^8|\rnk  s laQ `,ҽN%rANCQG;\WWa42}[ zYZ6:,WD`f=fW`cy}-O&]  $B @3O?)g{: &_eG5PH8qlfb#OQ3OrjGgjLx#ALW~}a})R]HK,&W )D 8 $ |  ~3 %Z0 Rrmp>s<3U C wRx3w $6 h 8ѭ Lf ' #$ [ R +I< r 0 1 zc)7ud: A^jRf!^i  "3%L '* U%~e3#r)"i 93lVZB' H ,XB0EkW/e,o ;7asȋB>x ^( VdK OMmar?u5,H;[eot;~jrCfн\eB~O|'^;, h@Mo'{N# , -qLI5 l-K Gtk"ecaܠz>O ?d FpG>7r`.>WhO;kxbQPUF5HyI׵V 5"輈P( h?P&E>HOlO RR[}Opv<2UT)JxaBĘnS0Y˞GtȦÚ ck$s~ASD8\=~xr;VE;e=oTa<*!vP{BVN^{E1WI}e a= ` p+ +@  ?h w0V1v'/OtYX g s]/$E g ؅  5*_Em4U07ZO_\9JBD {2T (R #BoYkg83ܷ m l5qٮR~Mr _;$zxe›-W*)ee ~Uۤm`]az A 3"ʒ/u]COS+͉:xaWmKmihFI\N qld1'M]ԛMn^(]!Y|(fN[?8`Y^V!=gkcfBitHYC3fKBF\9w?t*YF11F>?, b(kpx*0o}!5fkO\PF`N,,xAb{p< NL+[ T 88 m tq , d9\  ZrJCM?6iga`Լ4իH9]g5, L0 HnMC2leb o$$>nm{^ 4 (݉*+_D 00K]?e,v3(RnȫX ~ P q 7>п67S e0kl[OH ݸS$1w A6SEPpkÝe[s&A>YE&LV =GjAY^ w7>S[yJ4G=Cަ;;yI"\7\(V g ;v\,i W^myE s ^v! D Zs=6Dxa'8\5)gEV{W)Hv=a;jn&Ң޻#RJU_}OeL\ u;ҿY=QA۩ *"QL4%[z@Sb<6}̽OL?k5:X쥝|#~o/ohNs_@LTweG -R;,<?TKQRh3GTnY FfeJ`|[W*D dr6D$s< [ r HW S. {O WyY1j G_ ,R  *C$!  b m#)> ,Fq A t @SGC7";B!Sp8\{ 7@Y M NQDAyS5]E7bf[!Yn֨+f_k' hn{5lILb6] $V3G?x-r: IVּkXjUW%ZC]{Ft o'";}Yop1r|cw5m`lKPFK(W8@ 뉸!Or}c7F%B?!* A^-xi`z|BtV'U?#E3:H2[a& N ] \e h v _ )4 K 5 20 s ' Z= >g 7 PJ l  ¨ |   V0  p à E $ I\ r=w DL1Zv44q  @ լۃ H>I@ C_4sz w":W!-3zO, 5  d^' φfUt2 ,.JJĮz9XE LFS0th!Q%R6"l r{W6m/,YQThSDk nP KF[v՟H9Pj ,;bBltKN)uuCUc 1o2tM^dpGtl%}81g->0z? aAMVR;ˎ 574NK&tV]t}1I?glN[&qornd<Hcp`(]24I'J Y2ڹ l^o8zN2UQʴӸX3d'"#O$  gfG. 3 $ HDtвU:%M@ ё #Yb}wy*07c]by0ʛbTW9 OP| H?Lpl,> #I1ThٟV=vJ<OT8P+pLR`q4N K.QoH9uGƈ ApsT G^`U3$#Cl27t~G7:<B91"F o f ! H6ǕJ:e`ujX ٜ >Us > gwFwlpB1?I+'HțIg.F0 5n =w  м5 }D'#{NIHRp3URn ;a 6 k <_OǪk9sWjFT)15='HB<;hzm'tH{ w!j,dnOLR]9sq"T(!c&b&9ZM y25ֿ~s uߧ?T W` L%a rM_HvGb5?x'bHH`,vj>]l 6Vk "=iPxN>fOKR (]+0z d1uIL2?htc!dd'+ ?b vo +{ Sw#  OaQ^rm  .e3 lD׆ l!=P6>sXi,h+eY9_-R=Iw  F !ڝeD~; Yg|  5+؇F9-j 5)_kuxc^ $ A=h&$3kQIKg^՞/'(\h#KQqT{F|5Mfs#j !,\JF5 Nrz69R&<%k$N?Uw!B`!ʩ$,'b:R#KFa:[kS+rR% o*aczr<ѣ;xc:1(6gO=Eh? f -d (zm(0 t^ %\- w  w 3 s   ;չS  }  I E ~ " 7/  gw 4 I | vX . 76=A]z   BH  D jz #IKg6  $dV.M ~ y \ cL   C3  _ <2mA;ju/G}3?LzMN F` Q]@bu1h%P*9^.EJ;ve=BpAhP Rg=3+_Epkm>jQ7E%KAQN0\|wW )Pힼ)g|ﶡUlg.(V#)y`pI5K,7YtȞ/T>h u~>„X% CtZ`ca|U.N' ~Nw}Cނd*:y<Iw{ԹiPU+*aQQE<UkS-Ff4&(3_rj|8 |ߞWOjZ87ZSXQ(yB1« GZ_hDonػbxާ^aҪl=6#[qkY0H ]TyUfl^hZ4 5s{F`pL(/tNx!==&ț8:-+>B1#~'UF7j/[H WP^ ~5P/s L6y  ~Y ':IYt(uvb85?h 5Q h lq,]53|Og .Lji!L f] I:  k6 *zN2:?Ÿw A * |" 7 ~s  # !I -]Ju+~O\s.x } )nKhZ+P z W! j'  L ސl_[׉(SWro7uE3% CFց6|_*zJDCZ/O.K4- 4  )g}lpR\E Կ.AcZJ?|EIvUq?%YPw^Wbve"(z-6Bl)`*@$#~^ڭ ?D)/7q .fP7M5B9b#3# 1  Smpz<1 $@ ;(YIrNpvcz)eYE6n:@<MKaFFWF.\  Y  ^Sf 6< &LjTm 64jJwkLHx TIPM%uBa9zkn&e)T^|Q*J -7$!$ &+i@i~3[u[iEx#ǬqR]z.+p1y9zwX5L3d1215 !ʡ]%L"j#pI[Oy.2u=zD1] ú`| g.cvm( ".[x+3RskFbYBlp<AOKk@We̞OC >  ޜ x( Ջ   Dr' ,E Hw pe 2^ [ v LVAONtpN 0  aj ; F]  YRa? 5  ' #^RI c R2 L j_ t[# _( yz! Lv0PmhZ, n*6@H7_Zd}b^W`;ce[EPo!cZG߂=Vc&Q9"u\Hu Kj3$~(J2Oi_#I}dM*}9js+5 Z?Jf9B{v9 n4$a]Z|,%'NЯFѪ1#bIQ3NvOW:<3TPJ@@"MAOA}Jy)*Ĩ$rCN1!J32E(f|bMXw,P4 Myl { 5"z$|F>{]3`jB!nkx~>8:oQ:wol3`s(e ]y;fj;& bz1ӽo+9 60oG}u-T9}cz~>X6Je/B,s1jN#`)XBg @xz2 B,BӮͼoad:/3tDz&)ff= 9_hH4)Yv%|K,<vEΑew 6w۩~\;gm? k/Y'P* %O  C ^$ Q xy y )$w =zPyv0)Y^JJ : %( W&׌F; zh ;}X3|J %# z L h  4kgi I  3|xU2@skQ,2O2B U   C _ E  KqgU==_5̈́ߖIZ]Vo$ߤ!&*DGQO\ #X,#$S|}8x>7uL%sqSd"vOO7UtY^VA(&رXG6Į18%9jPNWW$"5P80}.^s\C  M oIClЖA_r| ym7,ONsGdf6X 6Y/ V~O6  ,^\Lg HI !ɑ0M1y6UW #nL(GFPiV"s j^ t>nqO,Xk}CB(8w'vd=n8dAalGyI;7 D6L>Ӛ[f:G)0ufE(-?/'O0d9[c)%[kwUibm^kGu'J"Vs;n"S6x\PHc9x մ; P-')=N<][GZ|=8TmE|h^jUbK|pC~?-r42#I}< 7$*].NTnqd",nF9y5Mq(a?>gwzf"| y<'dJ_i4 Ǎ:#c\{B:.iR?FI j,XX][SoVh{|o\A]_76]Va;VoYGexTGf1DZC\AP>@Xb~ar9%LDBy zeo ]^=Yk?,Ď gq =: n 79D   X`بS+p5i`nPd~T;{4$M"r?"Uvi Z.;HXct,xoT^x&F]3OC;pm! /)U=LɚgNA2|?ʄ0W*\"OJ8 "z]Oz'h)R4"W >4],hbEf^YG7Loq<*x*owfTjLYP \o,<Z?yܐ7 ^>/ÐG6#q4|B7-m.hYu?pq 52[ IŎn/ qua )6Ғ_v* &V8dqdqz+,Uml!]OcD!Rb z\ i*f} +ǦEeg*"xY!3 Nt$aw rNAkg+ Qm1M*CRҐ ~cpAAtuFؙFHq&,~vSeeӤbMy d  k ;  <L M -  u{ @ W * | \XS Xj&bl9 V Qv; s3Mw'.U B A X A >ۥ BWb"~]FV  _F <  p;H ^~e\+- && MB Gd%gB4LX ; /3o>i9ϘogQL: b 9z^hYq6='lo%$3J+QE+L~D˺1JKzxM*1צex Q|P-ZK=Nu&,L`\u6J"#m߄~+}{uK@?uZo[^$}X(L7821V* U^\tX@}}͘ȬOtLX/x+i )"Ws)~`9AncȞ;S9< s /N T X hK{^&b P4 d$N\y` N'  K ~ L.}Nk a ( ^BQ?2#%^ne~G.)Jp J T ^> +w Y * ^,{]{1'T> i $. yu g ـU ̴1c.|qogZ_LF7z5;aH 1=H, Yztq t.Zzqi3Ƚ:uj.Jog%|5N'7qLv={}yTE`}<+znG!P5nl08dm+u>a6"tub}t\:Um&9v0wM| q4\V$0]aJKcAi.Cr Â3'QtPZJJg&nyabO+tAg"7ؘg  F D / o f ! lop ^_ zRBrT7R@g-M0  z '6 ^ ,ѝZgo%~bbM9=sB$q-QC كNF9\)hY ui k M80Mc@(b&@AC~Wp$Z%JoHqI<%/bn@ +7Qhw'oL,770omuT7S| #}t>O{ vg{ X %^ 7<DF z % Z b-  A`p 0 D+A3  ! Sbs D) ڥN R f RI- ǛK";u :_CW4ACq7oYjަ6ZE_u&|uըQ!Pp-im 5;SA&#jNE }Ys-I#~Tm[]bT:o0,Hڇҁyl'Z FJ2P@. -?5Q!:fi,3هB ~ n" ([ w  :bmO kSmP 5e'˶wZeHe)G޸pM6WsɁiE}602"&VdfQ>UM(Xyv^,GI9y[ DT f ;a ^ W7 VTk Z(;V4=U>eɸCafN0z Bokf+TgHa^;bTnkd"Z Hq;q;^:_2\S.Qj~uXrgrUI#Q h | PE"{V {n5e %-?v NcvS}x9Ex d|_t t;g !l(FR tD6u]o41P\%e}pR_لnN-j6_AY W5]ݬ[  |A%blw,6t_7`\F[AY^7;76lVZC/k&pDigO<F6N$U~]]pGNEBr@Iv<'7gwZrmk <{qg5g=$dLƨOJD}k=JW-,so3) wCAe:X)IY5ke"i1;c07o 0)ZD'P3 T,WG|G7&hq5̭QiDcTVmy8;p\'N*Ds3H@<b7)u^}b1m#GPkCpO,%=oT$->euKWX47MZq9 rJ H|дbV`^d|ғ +I  * R=  O v-n< ܈n Ebw  X>\DHk, I-o lEɺ(7 `{^]xC x_g2ۧ~ {" R g o { 5 p) f a2j hr,wd|̓%I fMT  < f:{3ǢO,O'v*\@ݢLt>Ϟ<<sBLʮy_DS'XX V.Tu[H(Nz,~ zGLt0TBMc%oevIW:Cv./4S@6=. b.QR8EoU M2{HմD$M;JJuQR6a4{C0|t4@rZNBA8.~%eNC$` nh=^|\COư d{4I<58E *WF1729rU`VwyD![gYkyQOvE1V4 " i}C,ZEyO;+M?%J@LC;meܪ< Sh"LD,̧[(z'="U]`#P:9qzI#H~ o ; u % iv 9B D `X1y*VAMR{|$ YJ 1 ,.[Q hX +ۤgqAKp zo >  3,,5@yˤJg'#'z{^A O1S lU ~ Z 8M # x \  . Oe$?΋q|h[!^I1 W)`dBVWIfx;1J ׏r 29 ' tei+# *7*mRJ8wSBaI[\=F`A lr+pj9\%WKHM;/EiAXqPSDqGOt*zl~lMK!^0^԰r3IBen$]s>_S{ !@;mtȗԖXf$K8/ek  m_- +j<tMN3ˡy3\Θ h ON~ !jJn"hje&'$X ?~0^DH~`H܃9S7:/G0!G*8\MRrY 7y`2bl 7ńSXa ^C?L ukT 9i `[ ^T wL^ 7 QYY x}U ,mqL'O>4 M \=: ΄ ,jh |1Et>,BJ y hķ zh xB+i 3L  [ <L sI V :M +8 *R w! y| U  rJ *j y] ""v= ~'Y_3`7\"#bq<;uc.iUS '`#u#yU4peC! ~E@3EOSO.0XV+h 3tU+uP w g]z (sL8`G2+;A0XY|pt&$`8ڳGSwa*=)q"bS5?_EG X51ӊv/k~NS^d?:GJ%8T/@5r,g+>W4o0De%+yhRZ\͆lS,yPʌ%`$x`l"43NgyNA]&CH#irEz<1amϢϒLYc]Iw0)jIsVf]a<&!@W_~hk>V@ֹ.u4idn-gm'6r,PрZE,(BVEQ1JxgoPy2&D&aBQyJw!Gel?qmĆFQH3hJv|yRgJ~6 $nR0b1st0%%l\:kq <+hO%+J'HRc[{k"#Z `TM"cF^X;V|FU@,hHn>ycqN7hn@(ec:l~RHy2wk.u`UKAT=b {1.Y;r ݝ $GbAis"*X.Sz;+/pvRB+!1Y*54Q`R1i:X[c4pq@NaE1[ƻf7Sw9bW5ā leiQH c3UdZ#h( (P_ 0lba E" 5m~Lh>sU?Vy+] 1X'j ;-onz f ~UG / ] .9 " *  h|ChDGVEon=ReZ2{9I/ƅ 2ߥ~֑$f >=u_z0PWRF B'jO&6I[~?F7o55-Mq}.nPdeXkwqFy(?x7Jug9N_ pmOԤ + C[׃uҴ1oqRbxNEc`vS&T4J;yE*C*?NK4A B##wn V̡۩o"(C~&vEq_A5a#T[!1+|} 0s'O?fR[t[m>puV!bZ7jrLݑraAMdRSwR֕TvKrcכWBpez~;c3q me{]`+<D&HrYR:E%&y%d -p=Je cpB?)'5>h j6yX[Jɨ.MM]G&EjY8e<+sA6ook-$! n;C1Hp-HOM"Ͷ:f0 A1B/ccN_/m~9AD`j6/l/4ns&|ێOE]_SN2ĽeX.&lgZ+3t|+)dWZk-_h .r1/ C(o%3F9^ٍzzAEzr"CrU*|.D}HBmkav Q B6f'IkVf1|Oq-1~8$-ѧ.M#54Ny5עKSlu;M)0ʞEAzUϒm!lWVN_p2&ffem 4q/%y{k8yMH6)Zuw=sM2S%@j$z_c.zJ^q7evRW5emUTzfѽtAap[fJqDxx+%1oHv2M>8kl)b+?<o2d%?sxM$ګȫyAj:<-`}U8f, z8\[6tHV8]G'[Ÿ,:MPauKL5S>y=Nu>)9ek2Lb WJYO\v LuTn2Y#(!(^cjTs;g^5VTX.ON',8ܶ'r x5Cl `97~7l 1e Ru{Xu&]l6v9Dyq_%2թ/77+av| z֭ M_eM<Fr  q\(j,8%~o;8n^N~Jx@ffxx P ( nci  & S  & j~ ` E nv4Xe n * ) =N xz J| G  *_  υ @ x p u UgmA>t ji/;,Ķزu>re*U<) dp >F.#bcC?(>KL2[Mt}WTb\*2jv">0l6eLP}0"cUB@͟Zi%xJjXj($L,RIz b*?R =z('7/tXTcA+,tLzR.1[;AMa$>l2@h؁4(VNf yzap,VDݻ*c8gһJ ("c<0m81\BQQ  ;ċ<=EOsLautiEz' IAB7@&sI&L1-|\hGK+ p:3zĊި~|*hFM+BJBh|^v}WCha@`uw~bntr6)7G{U@bX"1zQ]<80Qk|K"9I8f`bQp<I)>1Mz*r\Eo Jޞ/)$.x=\.9F S$~\[Y:JHˌ=L`֕]VՊbrr/uڗ-yjm/*ix,*+c scFl.->\U).v`ٵd./48Z5]eeZMZW2iNIEѺBwм{"$?R-UWW8uy-L..=e"26).x(v"!ʽo0~vxo&LNl )2Ɂ"1hư{,,4:2j-ǥ2g2v1!1K1Xab{fV#65\"^Q!e:3= U>x\CͨN?|ap7<S./gd)QX2/o;k]n:o %);P>UT"o}rF*2Nv81i; MR(@<2p^bjq{M_i \.`{a.@0 -|SC,bv80@15fgg|^4i=VGuaM[-/yDۄ'$X 'A[7`&M*0VVYX?6ev{uY CrPd>*st¡Rtm|Ջz!# qpcOtOA%ox=$RUkn|rSC:IP|1K$5 )PUManm\qIb*q;4*}pT .J <'H' ~+5'ѯ`B:l5*Hr[$5VӀ@nRee(#9)}O x\j_0%5q`PPU<]Z"Y:Yg?c%yYJv<Upyc1ZA|"x>+? hX5^PG$P=q\uuOY Aw1q(.TQAk?__dYN2r t@7\ Uw-d!f4Yfw+-v#I}j߉rt$#{:OGvjO*`7 C ֦ isK~#BAKj#zazWtb8l-Ec͋JswxNVcE2(Sq*dzg>({m )H۸xN3O3Jtop\zk/f%<qH 2c >IlAU}MR!U/wD q.$u5$9PV\5ChU m*$@mqmA<8 %zCyT;M3;T~H{xfMz: ZT .g^@[]"e}JI)]cth!',D8d|(U4qZS%-VTvJ9h]O z*RjfnLru='2tocKY,jRb N'8E Ç9Pm}=Rmz/uas872+,$Q qxѠI< IUk__;%k@Ia'Kz L;|.L+@hW0n9Rdh a&xA3 k-:b%nYb9c8f4{a8Fu x+T:$|ahRP=d5 QٗKLZk[!^/֚)h1 R)>|?/K, ,a/]hG?g dXrPamHS_nP.G n  d\ys0lh?$D+ETHA$xEZ) 5h1b1NyU )!%D;p]Kxn :Yч750l-lM?t#[edr1U n1aD6pU07+w2~dl"dR n:I,>H hz  e26. 1 bR'6liu۸N0m gW  G,>vc#JSkv%A@JzW.{j[p ]+?yhY Nq .(Rqrt*,~:,]w{az3!Qcb=^B\s#+W5t(:"NG^?L^Hx8~ @Ҡ69 e@lm c|ds">q|> xPch^jCXO866NH{e>R.!,mTzNpGB}j{~Aw6Ad.PI!}VJy1A+9:a` ]}̂~kia cLGeA<c4[t4lpV3PfX0YT*R)O-h>a16- xQ,B$~`KOs9^as"#^6}~^J"S"yvJ-5zn%6^`$tF\c|Wћ> OZjz1Z.}{ٝGc; @Biwb4|O }5߯kmJ|L)yKw3ތr{Y_Of*,h7&.YuPiXls<F;  X$^ULqd@3JU@VMaWd@.m9g~qV`5PD#8DN(q_yhE_Zw!rbir-mbx"?a)E\*cC/4sDl@zL2AlwNu[wk4APAdNX=WaZ6UL9m{Vnr{NJj J\}}}~НO1o]-L1#H&%-q2?LnaV^7}8Z'd|sGy=o~ E9K4 ",*+[ J=>^Tz(p΁p34ˇp1}LF4C2VUnɒ^*zgT#0q1jClÿlCVl6Z^% w͚d՟]I#8(b@D0H }}0}Rgx|"bVoIY8MBy_eM: C FvwSJҐ- *{w;>-vg8i7EP_TaUO-SѪwzpN~;D| 5K TcwXed„U=wd҈|(ZFW1w}sAnJA7ڠq/HXgiN8TW%!,lreH~ZkԸUh+#|"b puiK #j]9gU\"qiV]U،ؤn~oGOM/ r"uF 2NaI,،@sҏeJ]r$3!_:Lm) k'MGHw @7ihr s<*J  0~Wh! whh]&Z;Vl2nb?<׌I_zz6hhYtsV;kZ//hQZ%8q/4&~#d#"z|T=z+l 1] e5\ hzt@7k]7oIF,MhW5u7CE3^Cőc(sr,)m[r\&,Z) u[%y)maɺU,1<\c`kB>JY- o''_=ZNUG # w"OoEwhbs,k WǘGp#in6(,lύ4FC=pBD6Jn$]1QR4 L8$fz&He12unt8]%xK ksZǘSfMl4\6S gU8l!4WMCwXI{8}\N2_1]S&`U$`y*+pd0@OЁ6n͜b2  3EKSb_\@jM'rj]sU,j|s.A,l֣ (=-Mh3RiQ|n]8I'H )}n U3SkOrU+זA o$^7XT=I_<% ~+ )Vm6XԎUvrBkls[X$il"Tufv= G' 3[^1 PRZIKTozEGVGC0x bf-GL$4Nk4SO,?ߘaڔ?qS-l@2 hl7$1m(nKdFG6"ucqZ%~v^<p(7Oڻ.U+/s`rc>y '"S@4ϵo[CPz%]Kdkg)% ^Z) ugi_8!q#Jq,# 44/% |=) 3YL 8"wa'uz%կ=}]Oe2WR>c Ym,h? Cjc?t ǻӦoEWAwy0w#av? \00%ow.q (ER! rp6JzA0S^c8Ji_VG9CGYY,ci 2y[`5:8IB(>9\V6pMKdIowwwwvVVl2-QdkZZ'xQ,+]75g;tUYi];[;Gw\bsp`T KΉ}~FQdqK'hSX-OmG}Wd{tdJn _#]G;^bPC%zlVu56Em`.-!e,qέ'܁jz,vx'Gljn&-g:P@hapLG]B$?@,8-'N<-7EzL/<IocOF2\+ܳLp =8em;`Q=af)Ga2[s|e<>e};kd 08/y[Cs5Xs:~^*@Ҥ7-];ł/JmzKiҥ!oyrj'O.i{K}Qk-.m/ )N%gM(.LRzD"DofU~NdseJw,)3(fK['"e0[Qgpqv 2SM5"ΠMgL;]s9tdhI h4ucD}y"fPmVel:l,0\@)r@/Y 1- P?W)Qm1qԋ1o̚_V LJv-:g\-YA2'3iEL>l=#=1x'kFFXåm"XcAo,qSrpu%Ǻ_ AYq$,|d;iKiQg .r.ڭ U<ms-x2okvy=w6JS]|<I}Ց̒G6ԾC-vaqԂpY# : "{^M{F1ގs1ABEeug}w:5p4Y#V8dI>sf]P@G8GeXڨ.*  O!s3nʙu;&-.*FxNLOPwecLq(AO*d 4:(F))(#v!/1Ru@&YQ/# > r2gwрC6ra#'cu9?ul[`.?R2='b~9jV F5wnM  |>՝JL=¾qwJmfJ R) k4 1 7 -gL n  ?MpgekL@'MC{!/2E=Z/h/ ";(27m6mkUP$7ett~EAZB.Mh\tU%yolI;m$!btwa V==U>q0m14yڇ@uf[e6M7'5Lq5n"tXDSՔ0Nt(͉%ҿ]_\4]y[y#WEЊ_9|;[)#*-#lk${R6Qq(@-je5i0qj-"XJGJY4_ Z,?S<IO(zP.QKwT=}yqB63<[5wuM`-M"eBrg8pYjP]gHDzBqt% Lj"]|Mw=2l-f16hy":33xnXN69?Tw!ud<Cqч`+c>@G5> Her/4/M/A}Ttj)!My7e8$/W5[Hsj91+\ap6 N+C`R&"f7)ldOa1am- O~'K%Z 6 /vEF 9eI:s&l]Ě_KT@e6VX1\}$VW)GWr4S4,ԹXqh^S`K|z5m=n; $J`kIZ sk*kb(2LQ.{;xQ(R<Ijdi[eTy49QDYEokڿ Nbv5GVGidq4>xx>cQ, }c-+ۍ:N|I%fIj(CgtsZx<t<k EWa],Il2Sg:?H~9x/!R-iª? fi(/v#(\l)%tw͌/M4;/LFf!!ZI t)<2ɠih?8jLn[t'ȼ||.VǝBHfηT,p2:tX9ݟl_DYBo RfH_4%ZRV$|֋.B0vVbr< QKѧ4201!A#3e yoQp'0iT3 AA`IQ'H_`!r`PwEy [yzu'>wK)/[)M<>E9i!6,7A_Nx1C 83|*'̈_"m8]i! SަBtFq&!σ/-`^ J%tŗ!<;W5ޫ=΀/w;NSz V}VC3 i@=4lj{ O&e |V3 6;   1IRzi:R/Oߝ: BpDx_"6YzHpBFJ32nHU# z  EDw ok8(|NjPc>R9To>rH<|Oh:;lp[)K ѓO.Fy;&Esl_ՓMq^i#Cs54` #nOHCYD<2ٙMyLHP>C)4{Lkj|F"` ;*DWp|C[_gI%!"$9 k2/ Ei)(m{0>> 3\3 4zۄrYv$|M-qS+QmrJ5}?^Bm[+x0\ a&P9x;Mvl$\<ê ۀC@/mDqYEm90\sepU_# A^XH`Ce,iQ0>9$Qf:[g?8eAAM:"^^zDbR-V@kT*LRUX+be/_m.'% F0ĩi@2GeQ$LIo4sy{n`&sxQoLX,2Z^M]-U-V?]7Z/s= PXzDEb4x#W{Z&- L|F W/>fdo=9b!hR~ KAm!TqcE%(n'b\5 *|ey!KYW qHqiF7sFo$g 9y͕U4z#xz0,6݉'IkPnͩ{vIS{9) GU" 8 :"uMZfR0jHN( 0GS$Li +L_إuN^_I &l v&5j j^>71hEnXݭzT;*QWeUR3)?~1\3!3O%َ#aYT-eRGAxh'Ro8 w|/\=J3w: 58XR {Q'KtCiF\d FZ~kCʭv0aTuЖn5!7}*PJ:CCo9Ԭ_ߊO}/d_ d<.7j@OT 63"p2ҝ-4.aNvTU=S'B0LEKD^<9iדj]_ZlP] }x|NU7 &K#h1/ _Bi3R(a[\ @FJTUXj9 QKrt8}>H*A( (-f"auvw  DROP$j=֑m}MΪyH LSX%'d XJ]1Fv[l*~qjРqgbr2JI&%<ho)6Qi|W"Vr=0u%&'L% |1YT6&7p+ >TS0z &]!$Uw. 'o`~ӎ&Z ;۔8cU1SuDLrr(M@hvA/Em/z]< la5<0l̈́voi[UaAq϶.EL?MR-BQɁ#dа8<}J4n\;.+o)C:hH|} 2 Ezu?:xd43g*}$`\ SJ9&HzXi"@r(:&ڱ =u2˪tnq,v0*kz]u=>֫{3QPHIbv6 mOy XD nq>LSUx %{ * _PG}|mm{2lj@P`S! a2wT[R8.|@"56b6TCD~w@iR['r+-NOK3BuLOc&ly#)gl]r/]x?|MM!i |yGw8U$[;q[q}bIׯXc+;\C+!h*9)CEPS%kWG*feX E9[hw{/4#4tQziGX%̺*-;mi#Ri(CAem5o qew;{=b]ٹ;[XA.,  qs951.<$ (m#\dGa2 DUѯ'6O^j+puM ]{gm]Gx"+G+8g(r){]e2q1q:cy7(2C~6iD7V;Gn`92*6Ld8E\>V 4nIwR {~O1aUi:ϹR{h9.3әڟƾ_'J.: i(eTi"O9  MH_iAI[8 zJN,WbF%4`5/xY0D;y !1a`Y>r:8-ƽJ6.ckSF.B0.Y i ^A(;sۓ1c"P3R%Dk|3a !}7%=(\"pek S,`Ogm#{ucv>*'7Yqo6}S.:4I*teW7(SJSJ[v6rzUKz</CMEf B8uU(Ծ׆$j]]&\s[372 W[^i)Y`22J -8I<C[$i=>G+6eF,j.L°CJ7<Ilp2)j\E[[VI\[mC݊m&)}G}/D^,~V0ϝ=VuMN1i.c^sV1h?'QDoVOJNwqab(C=.ƿp%@]aK<_Lv+`+UV- czp0]:-ҵ^2Ue%'*h4z t86Glt g ,#Qɸw|log"ΫIPhl83R ;XuuH:ZvES F+3K7'nm!Z><ćxZ>Y\ i# {Q]pR*leFʌ]qR5d"\ We)\ \IT7OlOKNEq_x{35| U->֣)`nmABVYQ?#jQ{@WXJ,3#m/`N),ƍo eHPHn 2f}5"'KvcПrw%!zIw<ݮďm1^d4# 6Mk'>goG8'\OC/Ĥ,|klb":~4VkdcRkd4uX>WZ"?O 8uNU&{"-{dh"zfBc2R0y "`i 6 ne ~?rӒYH+[$_TH_Ug#4@Wf qk PNr+ 5x>1^2=ЌC~:]Db&:]n]lejPSR!l u-x Z_9H&ESOJC#) ݪ98;@3Jm 08Q!} d$ay4.0py?|R j~hB[]+7|#t /QwLҠ;  ?61(2;oIdҔ &%d5q +l,4Tr"C{I?/:eiP6`g&g}6lPcw}YDrJ!u85dG-<\ު"VsvP}.|,tOKӤ!lryE@SrcTO#O/Τr5y\u8iҭO5GNjIJdf)^XFhb "@%XrcFPQhBxަ#gS& Hvʊ8#Gs8bYpdDݟ'mnJHW cKe}֭LPt9/IHâ-#w73$-Z;xPW~@Mxl-iSw169Y͉Ndc@y"Tkx^:e<$j9#a~Pj?:)u]`\tK@C-GZ>S3IVtA7&&<B` ~3pO|AM|u$۟'V}$_i^,Ta>)w0tw@@ [|r.W.|b3 't"mA,#HsZLaEO m2v/iq`ax0mRJZ+54FL ~iE~h[^x F_S,,0 C=@2@&y%N; ,_ 2u,ё`}n7 1$lZ}Cb/=*-d~S_VVߦ:68(:};> &)||2~$R;+ D8g;H>NK"&jbEXHC;K*p4?`C*^[`xť#ۇ@cn0RZy 2ЕI+6z J2Rjz?4'/U@=&z]~EhD#4# 8v-b3` 1HQ su&0׋9W&j Fh~^/BOX -(*qIhhP3p9*WnPV l^%'RCd3;֎zyB>SwOL5+sѹDH3Ԡ+4,fЊbx&.T 14(C&J#8JR=|b0,&v  ,.D'%QpIaf8|CIl$'Vs1${}*H`X-q1+O5xHQw y$\,Fy3T8]"tPg9&_Z8>z_ϰoHSJGoBA?XW[cS`ARZtRlEXcarܟ!&%m! D3% tHָ:Vm(#sCO&#Roq[[3{Yg AusńR:DL"ˡ 5fS~2h\c&=l]X1hf1(9bմI SO M" x  yKIkYn& L&%k[4T 1LE BވAc[r1_Y2\us\r:`\6l*-O4E(pܭd7zI'IWQ߽ϧSk9Sjۋ;$u9wTfH&"y`mHI%<<6u^gH+|m/p3usD/!Ə{K|)Dl:.M Dͽ!xYYPje-կaމۧYUFCOWc1Y iEAn,o{c+t>ʝn~= b:wlN3)4&zlzfTo6!.'1G@GTJls EF #gSNW_v4LnrkyJSY-jMۜ<mS'Q( :boֶ p`Uvc9< $kxj1EnIGHfCKVw [Y9Pm ac/ ^  p]ZXhP߲{5U+!32!MJG / [G}^ T&wj6\)|-6k;$fdsZU| I1):Qlq28$ @F9u^ 6J!\c@[`>+d*W!JZC'. !NKEKX%Z9`~I`xg95c47t, >RD'QfF9*33A;jY/i~&7Hh+fpOT|PCYP6mJAM&u^7bcݵM֩o2BPf 6vC0p$Q8"ҚEK+B*%.)B;!`96LoWtSL1L}z >"ՅyL8FnV!BRh1VŠ,0'9b6e׵OTƋ19,l4-kuxEECEk"wzS 'gOd8v:٥ߖt9-Ha#ηJJ%R}fǧ>$k9^?Ue5"`_ocqWaeC [V@P6aòw}3zVi =Xփ-'W$ac)pBoZ  #[oV0ˢl`s 8SltH:#5s;p|pv>0s C@b}!U׍ N6},.\I0ڲc hp :8N"/bIz 4{s{8eC`SW Ñ (#s<d(3/L8IAS&31B'~kLV8Fќ=;Be{J   B̙~h5$XE03N9p}i* uӒ0 Y 6vU;XHd69֯lWZ?wF!,I4#,AdgXu(S{o]+A $ ζMNoFD}MF!]S0 n5NSQ]0xDl"Yi)gKKcNsm*Zю_ ~O h(BnJ]'^9.<9Uj jdXc#1oT(ymkmN*8dZy#&6$eP&q&G4,+&$ *\J]x7gW,r˙|>h[WTU\&Ȥ&nk̹j|xwhHr2f|pUq4fMzb~ib5ҹMA9IЕaV#9M:}DzZB7U qo ؀5Gp!&<Ee͎vOή"|aW=fx,s2wQ؍g` 3hF6s8!mP x<\^'P^,ukxǜ<[bS>U4nZ;eu-\7Dx 'YiI1Ck,^ :6JW +hkګ:SmJV [MD&vHO3uEFa,Ŀ4q Ds.H[YlS45J_ve!O;(Il&\ <*7ddCO+p n#Il|>S&4s 86MC]*2QhaeN%hKW!K:E:`ze{iUNs[g"0P0S)F-!`?[)U1x93J.Lt[#l‡l49DAl*v\d& vqzl~i}D(1iƨ AI'0 8?ݫ65Imk ftmRrES}LRaGPz&ʿ֗4]4V B,TTnP::ҝЌFYxI9d n bK- <*>>_JKجgK7xs[ZtI+WzGE kWo i[?mkL[$"V}&#F-!'@^\OzBAOat_nhY>@ 1 SFjN2Ma"eVd :Y o/zB5µߨ@oh 4a&6f`f| Ӱ"I ?l&eQ=U(1J:N&kdh|Д6Xxd*jb X.#_ m$ƏYRd-7&Fli~IW5\=JoUAyiV4mtAX3FcoaTm5d(18{8KIZ&:7QuP!:^icP}%QT*@r>mW*h[ !T1 8PbiW9tT|n $f#?!Rp42['3v=g~h=IJ%qrjH~1:Jt@?UsB= cylnwIw'|N?S_>X6Q܏/G6u@gdQ,Qxp(;8JE\"u.5A{T3HbP vB '[]d%)p$5mArUJB9sc33_``dJ/6%U-3)6=* frhh/2ob&@fyF;bX  VFYnkR`ۭ^9=aN8sGM] f-N've W_2߅_h:1o:}N5#0"9 "~zz=ʟ))3`<#l*,4wXN7SH4}d %w=M8sBeE=W55^nzk $XAr8gma@S 6z{RL@ #ZDZ-f"܅q 3t>yG_ˁNs2cSEn|?tIOO}y lIiIzn˴Td's."U>D\}lڅo%lR6(y=׍luQB(1!Yd,`ooA^wz`vjQb11e_`v'*tV.vgr_q2V |KMtH\?[=Ev!:[Afb5^Zcr}R@VinUSF;E4 Y+O0ߞ^;0ʁE&T#?t\O] ?ۓ93]B)cl$\ Ў a/az}PK>fuRMHz.^IYEbi1L k2'3> l$?^iE1:^RMb?S!b"t>!{ASSZO0zEU7MlH" g+Ҭ *sdpBJkl^DT@t4f8_u7="/f84#A-=:Npg n'|8DA8p*!M55d c]a}byUKWBH$#a{ ./ܻxQ9)?^"o*Ӊ0zlkC_^2 Qg}b^WŻ ޓW>RXRr}W1nMae 5@euZdwxdJF16HZt6G Tk_ f;g]M~R kdFsZxl9Em A52i2Xx y:{vEJw8Y:<O^[xX8ce bvwamɪ`b2yDZG_>(bWz| $wK4u΅ #bMoWloo $ | h#6wI3&d8Z#[:G.PfqgbvJz`'e&%(} v8dw}?:7X CCP7sckX X]]hXv dnZ}g "LYG S:ZY02sY2YPQbd?^ٹAPyAp^v9%$E<^wq/Ij!y3S]#]e kRR#ԍ.hq.}y{t7@)-E;WM L̆v_~J݇b83.a[5jTnWVCF<|Dhnh,+K4L] h?H\_2_:EksZs_7Z~n#rBbc B#|RYG7.3U@Ul dJ|b8[qNVjBsj _2̮99s63bA%pB%1ѶyJlo4e߷RŞICs7N3P:{H +%.:_FZQUOr4"p]_Q7CM2q\JJ<Eex UGI*x71!"b]ڛre LTAb87b"F[U_VmsL Z8In#8ESog`U #lf@*P;)\/C>]Y|V[^[wZY-3[zmJ)cu'($x}Q}.=W`=R8k'). e8wxt6m/}! fWKn,01Ki(J,wha? re*6]ONkUhr"6kmnJ[|@`Hp({[}$;'F-GnyG%{sLJBu=L+nLo|gYw{[GysD/ D#KWk: Ds[' +st8J = @6~H01 0PTE=\qh.MK>2pTZqzpdvSkIŸnY# 3q~D?dL+6QI1E v.AB@HX`$4PaHb_cIp)etGk7GqvJt. sŁ$݌NW8 M~lfsXe;tN.{Kb#z|4HowTLzXwAD~r#gZlJ\SSiG ;vzTDKެ"{pWa4h_,F ۼ^Z9$Zb%>y$x}125EGBK PcT(b -#f"bg`|7 ;l]]_`ynR~Q% ~mYPw5`W[~-Alk2/dϵnZ$mt+E@LOVq9VB|6yUsqG'i#d,ȹM@$6#ܬ2 #Qsl4$w \XRc ID{G \)QNJ k\Dc2v'a^uvsl]QnzLů4}\6RD<1"n .gi|Svդh\ 85p :z #"aBm_8qEbkf= uq8sR[H 2?"zoxOkSfuR@MkcogD]r^C}5h/q85`rP2 :Ol/qMntHVR <.~2dbՠy6 :gOZش`yЦIAc{ _(@d3d'kwĒq:/n6=j5S+8TW,uGIH}?$/n*xtM(P3BvA%5:V~|,F-$Cgm_;t`xw`9OE$IPYenY9eT)HGWb-~#gi%D qFH@I?TStF]V;WvtAj5]e,^et2<'k\gQbMc~6WPGH{F A/G68 v[<=&u}qW֍ < 4\<| +0|z^ĩv^x1 ݘaiΊa aϯi9~r*yB-iYH.{?x{A e8yϨ_5ls$8=v~-Ba"k٠|܃#,R.`v#LxCD/I 7B4@}6k/';$D6o7~@]Xt`&  8u PѐZqL_5d0FY|z/u<"v5do[~:4@EsrDݥw_Qw&!]@-l5=w;5x O$5205~_Cu2yWvH/\D~u` EX>LX4GAb U֏qJBOoS!=X7Qy|ZcqM.ـ`qYcm/:vS<fr\$;{^\jZx ?$F=ܤ?-o6g@*|-qKz0DC"K2@3]l}G0|myB-Pu$6Cyjha\x9,yT) \J:f_/yxj|'V|$/Rdf=w"@y|<PiFsUtp-3u6 T-OXl&Z)gP#\$Kay|dfxE/Qmfj.|C|',eC  Mm,U/)w!İ f klZme( -  1 Y_e`-yqc4HI]eXo oU ]"c:ܭq^pzQ le^x\] +x$)A%pDsAML@>tԧ~qgOmtX2E)0,zm>`-`B#:vq І3;Cވq8jRvn ^aH ;B{G]QMp e`  ]a"$ LGhPfwG&.wkuXv+Cq)-jg9k 2,w@ԕa|( +Fvsdd ԥ3\[bN2 :,T=?i)uJn68Mj4#r `>CUa"c~J|^gOIf}ek=A$-v(-O&C(uVqOxe(pK',5D1چWWuei)*y.S\C7~)=`ďHL)ZJ'ϐ6\L94:<3~w=LDo=&X0ȵN5%mD }~ zG9+4 Hz!"[[m4rOe+SElWDNMfj<(M[Bw])GQGAQua)~WLkۨvTn+J~"7oCA,ZiZ*(ijZNa2k1uU\Zw)|@iPRѱl5uRO-;kG6)Vz;]-+kպq-`W'ײz3=pY$%~GHfi#`!.~>@nlB(L *)N7N6VR0d6arf9jE 1xz1@UUiM6oNV"e4syILj*.o3Ka%6KwIF `˰@` ĚL5m~]IFQBjMlrE[`<$h7xlyT#I;0Px @g5CgC<">&4GR qW%x9 B?HRr i@A-W9v}C Gy$E>" mU!<2~Kvh;.X3NfsNxhb[gebLP]5k ;@G3_3=$RAEK[QA:520ׂ>rz7°VM@]}FPnh%RBMl7U'28~{(vs^J{, -rXm;sRsX9H20pB[,"΅ty6sAe+v]k*@Sto3uplwq#G{Pj_uF_X2bJn9F>8O0ULW} /.*i 7/.)ϴMfJ*kV;=S@LN2pբZ8hy!}t`)bW88HO=$b6FI&^MNURQ<^Ъ5[s,`z\JC]|]PW>ԭgu"VG%y'Q 7=}F=I7`sO] Kn;kGj.)?nM*=Z[kFwyT|!Fl5#uz(%c.3w?P'hbr21y'F?8>u#1dc.2xʩD_ORlxGqHɳd8B5Wɣ9SRY{rs EZi UlN<+Tr~TG<Wg"fgC9 {ܒYq*4hjy{I! &pr*bx\[+5<]G'sM| 1Q ]Ys q0F85n(z 32(f3Tflz7ωߜ1=wwr?QX;BeҖ-<`/3t߻+"7gN,a&u}E|%s7)(BHsVuȄ5<%_&+#C=iG5f[r5ϑ&}es^,^M2CCYV̵E+ 4{ ,НGY7s&|bvgdIq1JIeoV݀|3Jdcu/ىTeRjdN<-fxH*ro]%n+9\рYO}HBoZcѝ)0%d&z! vw_۟cp[D+( 2&(ЁsO-r .FtTiޓFq\ SJp(_%a=%cpT>dsc?-G_F*QIS<*Oj/H& T nFC j.n9 uLdwQdBBezsPaT Sf#D[(v1CEkPLgUHj7ZKTL{A.Rmp T_bz)Mm\ڏǵ 7`>M }<]m1fKbŮ'1q4. wvhtk,+W?1u7N{]oCwVC.?US"ݮ ) OF9Z{,> ߈$/ߍVtZL{fnngr&Xo'9t0mu7O1}r ݄{Dx&AIi9 uA~{onei3]g!pTi,_\7z!: yEt( Fs$5x BOvel#L{zfЃDRAM !En9BӠIBGCl&wxXb)U;9y3":<ҚGi[3E9:JG7QGLigS?18N1;Q[KktCCcx~ۆ@FA'U@fEkwӗgKA7@ (VΥZ|mE[4jXCܜ(l*xBpŇد~lAx 5hB.GGȤhz|?P:HL]Qy9yS{&AW5|pT>U: ASlVY$sC~ n7ĹD |Peh!_C271PDj8~nqx; _z'M<4[,:)gFL+.3(5^x,yf9Qe~#N@T6VR%U9 =U/yu4>DgHesYhAx{ +  <_2KymsQ`UaFKipW1vߑK@ԤCJ!V؞E-n_f# Av) tq4p7 ODt2# >2IU8d[9 `SSg@9GMBtb$v bМfr1Y#"1X E;>DGyl<׶yOg_<ݘG,>'+wH?n`qjnG?=Po]}IF\Ս6ʇOii--!6pF^#=E)En@M$**sY `b\1t:FDF&SR4b9}m^1* +u-ɓ\=ng9)na>b ~kF\;q05837%9k)^TS ys^h׈OIlMC?q ` Rg9l|\tԅlON0tƟPOT}4s vZd6u SZGE0B|2"qjoq1D.gwj/z&jg KYS~\lpy4;u?@  N/7ɰX Fj'cfQb,_'xoSGqW PywhAZbUt>Nug*|z^6HaKz 4 _[tKW%zmT[Af~CCoV(Lup?|Ak/@'C5W6 w_/J:(:yCTP*Nakhc$ތ]M+n7rO`/6T46{r1:|K,7]i0#'p6b#Y$E?ï!x]9*9()zm0&L)>Lia!EAYaNä9g2L[iX$t+9I0e7;oO\x?jIQ!zvOכ"mzK7}tVH#Q04d+ZG&E^VX5Y G\DWb{= mb:/"uw@ǸuBzp'C<7kMQ'2=E)oqp{$yZGIe kl`{(ߠn3#sS&[wf8,<?h5FґC!rW*IHluL6(V;=]{7;Bp$A*K?+ $c|JZHovjߗ^pbyvH mNI@Nu6G(5-~}2F:U7:(k<ޣB t\TK؋Y"2Nٝe$`)0PcPbP&ݟ~^lCYG..)rc! H$FgL$0%<#+TQ ME#9 WT;=|zFl"7 ~i)}qpc5 (r? #U| 0*Bi"YQv~iTFGe=ʣst>Xe sNyՁ8AMF.[kAA `#67sAtv.HQ`a:_ dR@c"Y8ˎ|NYĭ_g85li d#fSO:|<ܼ)S#OtHI|B9<<>E5`O(+U#ԣ#Wt#lrXade" 5F<#QBO% gsR&L"J2Idĉľj8{V |;F߳ | u">uXt,pT"?WG]?k`#lu \mV@v$W.Aa4bog}.|00plB v$Zc36 (&OFĐZ4TCXIrNddzB>qCJZʏK{wELmkBYfnu՞jP%h RHPg$:rF!cpW G1P>cdwgXckQ5)c)VR#yspbzX1r_gY "=xo${jPuajF*H] 4 JЊlF.^r"8a0;,ynf*" Ac-H*6zSC15D=j4pƢ^3̐eA!VW1J!6I UEզpg2CS-g!,NXƖy vFi* O=Z"m{L51L5s47@_;u*}Pߏ\. k֫:r20~uMb4c9P)F38Dn-M4 K}n L!N-Vd5 YwA@}H>lw"^hĭ,$_zhlDMWKޒ ',V*uV)zEaLWPj-Hmm%cα1;Bsl|l^ZaBFQY> B.+/޳+U=CcxMֶ}lu:Obp-r=Ķ rAsEuIi ISeg!a]:XEXf?}{0^yD:WO}R]$(~KCܟq>AB)7=n]*o)HPFS$3Lp1qK$tWf!:Ryp5X>RsrP3x-Vf7׻ydk̙:i@}hfLj3aA_-ҜL P0>yV7[57XM8$S΃.aP\s>N!ĝ)IeTt2f=K UI5,c i/W 0s |>>n=<quRM\l:8sy4Lm1MEI(7Y ~?l( *$j}bWQ^P/}eF*:c,=x:Oql[?$k؁O_v]j3XF+ '}i#\ղX>ڿ# UNHRd! hg>C\b"^ 3\U}Ŭ@XQe<q2 !*ԲZ ?p}SC< 7CQ5'#.6koi<# Oh֒I8Mx̬Z4$<¾kH4\<Spե(elGFcN7$+ E}KY'g;%g3.g!Zʮ!خ> g{#G-CߓdS;)1]L`TcnlvdkiV\S }ڑjR:p~S ^`|$r<DYQN)`2S9VnۯͩX#0iri7#WJDwUZ3exBzv;/`!J Dzҍ5}_]6>_Hj0(x(r:;y  + om~pz<$ԃ )tg[P|L^٩_9jVG#mT1z^?+ctJ-׿<d.wƿUKN4%(QdPz:s߶91+SAh &uP 6ovd,r~Au]a&] x@]12dF6mrnF=>{<ϟM>#Yp\97.w3O)W{p* AX% =h 0:$@nsV~lskQT_gfߩ{dn@iR`yb,Jcԉn9CsQwin-jLC*Hk{?CQ.>zB!o&:oP. y$Xi$J}I?E I|bv]Ban5(qCMFmcI7Fn(˜I@[[X3434HqVpoT/H]c8O\w$,жBk &:_*F}e)mf1_I.H+HS͆vfdBw`BOK{0GRY9S\^]Y>fAEfS&WHsj!lt/+^/'43A*BfV&3Qa ~rp;{n n}T+XxVNvr|4n!?hYh=0q E^ Št2 1 |1mny2/C7QZ5}+kp.$GK*  nx}L7m8Ymu wFE&K _] QbKm;B \<'Υ3sdgO6hVwbP!6ARUd5X Hv`[cG` ~\/cߠ#=c qVF%ra y v{p]AYoEh] _L*w͑oOJ[)D HS&&6ǿ> ,WX?NClmxO$QTBt"ҜTS~8u2_h@j; X_1in}!rAjdm*Uu#& $nS!\Wpg@Y zn3~ -{no[q\PC@|˔AS3A-[9S[;!BJv>^,;N(1Ge* ^;x$_o$[ yR?;Pp,o-9#|4BKsB^M' 8r%k+|Ht3~=|bJ ;y-{+3@ 7PK$\w: Oh @zW#$~cUw<D1;}jHh soB0rnVnI$T$X=-R|P3+w$TXV=9$H 8]K}hVXk1?mCS  78gT]]c4NXi n^S95C:] ^ B_Y.0 yGlQ|h#A_x{xbOvn@N~Ue:6%Vre}K@ &;Wzk|4 =}x j^R} Kbu}#;GACesz08|ZTmTBU'@mNU<.i%iQ ~K A <eEP:\~yAf%jEjbfhe$e:JRVUMKXRQMӾu6en 7 I^g/I?`xFjfB@ }8r5cniI{.0[0*m'cP=Ǧu6axA `:Tk z5|ul)C[;6Ws7}|~]\|"0sA-] z`hyE 0T@#4|#.I$A", Oӊ ib_x BY^ W/kk g6|,&ߓ1{ ?4GB`:NH[@/+P&izk-?$=tH 5^vJ.${ G M[.Kkj?b$J'{!mK+Su4|zk~D93+ 8o9;xyF`0 Lƺ-܆s(?1.cBdQE=5k=erC8py%]LaL<)UCLj;cveK\b:c?&1Hz5(ݓo,b'ǣQ='CYQ/WK`rz Wb3xzu[@Pn[;&E\X6_"D_Bd[WqyN{8uByxFx&.IGsfޕо ICGqMj. % -,L\;Eź RF3f}9?n|:}<-ym.nǏ`!H<+49Jdaf*SJjRtۍ$_Q˾u)>4OS:o4shVi}zO<~DsgjF 7i=&Zr'vgFJ?bEg[1V5E=11WC 0e}čmf!xc l<^lxXi[ `-gP Tni`.ZO5imoőNP65B2}s} ]0(:wbz+T7b#]L-''k eAiscrB2WAz;Qqx-x N[,QPelb̉ѝP^sYz{qOp(+Pi)TY kSt{Bb$-WA 342r&_#es Z COرvUm:rN=OoQIQrPk;}9 Ktn ܉&cC6BX~vO84k;BӀd"z~hGz`y' i8DclW9X.M7K|:}' ( ?Tq@j ^@ZOr*Q7>|f,ngPp5a8%huZCEq# jJGedK.pMzb( ;uw!3JbD_wfCO1[,,LAz>,^E0J/[yls4rllfpaZE<D? gr+:Hcf#\p$( J`b7~6AB""h=%N?m  nJcÜ]zO*W)%_U{K+zr9RR1\hC[q!V1=ĐR8W;j\a2c*wrFQ.(Js~`I+*O' 3\5F)`!N&K#$ "L@TF* H[;9XYQeIdN 3"9 CC}7 C/~,Zv0*sMaާ}Ji@ܫW;;'9(S$`9Q:^#d7y)*'D ETxkB/hGbɬ#dj؏y%U ka6h0xx-qMi*mg"̈́IVY'lU|mU.62Gؼexp;tHZ Zd'bHwS|2\e_r&w`ZBaqZw< Z?PqZlmF 1- D{So13C`g>[Tre~{>- Q k_5qm|t ײ%c}zvP,7t 7. /UVv t27?ƩК70<7B1P?+8h{{_=2B}Vze!&pݬ?LG6Lo[ 4<9w4HN hqәXyGX""bn=Y,?gM׹ZJ"B}|*66"]-slk2v7ŧ%InvpN [ p)^TGb^qU 5h*(3K،,Ztcr_-5k@vpzO5NV/%fgkLS^B,Q`yly4HLyQBk0`H:|W?b+G%s9JaŒi:L-pe^FC+D>xf#nj|%#7}\z/)%3 n5݃ݳ8 NL7h1Lzw$΂(EC6CIW^d1 V'ҽ/٤'r.ll1qAgwBDZvҨhlKX1*w ouQ+tn'4[xItq'&.=SHbJآ_6o 3Q_4f80K 1r\)޿ j kKr 1e.eFX4j*dYS,[{_B}ƈ*dH}wnYCk5g}N/uNIIƗo1/y74g+v3 l= vحtjPak/-Z  2=O]4M6!k3Fn p};{VVMv8()e~MҠ*y7]WD- ] a'S/F|+%aT('=N ңi=/>PH!ZfP/Ⱥ>A_uKy)+?vBjNvk~RyM fi $X;e"՗;I3yA94l% }$> -!eO ٠|< sH"].osZPHn3q|YWsoLE 0:claE_[YoUxbMȿor|d$8gU6?a;6pl/DU /u%y Om&YUo|xEl[:o{a~:FZkjC J:e }NPm.[0WIj=Bo?XH Ox({uyt\s"cgNNu@%9Ŭ2Fl^nJ1I'qm8{ha((zM$<{PP '8<:sZD eh*Fjg8Qt5j5AB&Br4SHؾLX}d-xT7%mv i &B&CON]^Љ].\\YMJ%(ڄ)n?/jU  9s,d(:jӑy'Gxpt:pk*f]=U0 r<2 uz:u"4emh Lc_GSZ(."&|4qw}8>/0e;m|&0;]%!qbUp^d0D.! Y8(Lvf (klKG3 *u$FY^ZKV݊F6C%BM[ 9J<)JݍZ|U Sb z.}bGc`~6[I2Z][pfiFj7R ?*j1OKX| mC^<|/[g g)OG90 .E}vHZpmSKT05ua=y'#"@ tREMb'?|LPH^;5LX?i#^NJdSFZ2ɪI[$42F!DPvpPu0Jä)}ѣ9F%}W.626kUV8^~ZɬY#n@vsl3uH,p8q4um-I:A5g2dEV"#b $\w*o7BS6)DU_'hF8I98s5Y+i.@c;41e=Ggh,MlS fgDc%%,]6K8e}:{T|Nw.gH03beM/#S=,˰6)~t<Sv}\g;d/zĦZ7x7r"'(t,; DngEF90  f %4  FӃmeB&͌@_~q>M >@EkU8 OJʏQOH26Nmng* b+)-O\>.mR yɼ}}~?x<{ C^/ͫkPuURHM),W;}s H2KDbga<\8o9;!_cu$SaBSN@'Qhc6νmJov e\kx,#@`9<!/.Mcќp&9"Њ\. X6zzD7K`3uS;5tr+1b'K7R 3~acOHlZt H["*aVY" /?AG&dn@.+){(3GCSD W eG@tkJ| [5rQ{&o;O}?RhH3$EITng|HrX?\5s&E58tZW+2!Swq>t-DR6I+IlvWypf%lrWYYDT)1Hd!zg_&.".dutxt(CR_sH>a4rLlvb4x!yH3?~je%?l8gKxZrzLf.H^'Rj#uTH)1UR ^bWli ?YEOV}#q61matL}:N3q<wlp $Df׵+2N874@t1^:4$l1h{~hW~t[m[ D9u\bO?2R@q˩Ssgd=>D;H$]2%10LlD OTu _cW( /d_]nU3Qpek*[f9KKgO4G-8>O 99h8st %ScE98վ)# '6A4OHH~a\JLJ 8 ׮T{ [G1ѻ363~ QvpG?zc%h#{'F[CZA:UO{y_ Te3oW(Q4eE*R^#4{ ;FZ߾8U+]eN%,8 R$U0<%0!6eWf*_|sDPiS5 ¹{nZpPsRwe49n=@c~)hPѫQ| 6zgk #@J8#ҫ|J,6FLT5 Λ" eNp6 }6[ DM- tBi\ N:16I1 W<\s[ mb[28(ˡ7tr ~'}2=}5KWDl\x5y6:NCt|6v4BmbS-L9%z/Ҍ"1O# tI4XBN9r,MRtOd+JdpS%Sxƹ#·u |B_(T,fFG"BgOV6~ePZiNHq0RC]*` 3rF8[۾ ezd1>2 gAq1{Hyd s&9HvQY\b! @XQ cNOj3~ɌP:uSI`u?:Gm] g ܺ%bcoQB mZ4UdrF*U*:%6+ ",[}-5 "͓Џc-kA$6.MoAܛmR+ bL1L6\zOUu2l1oa-lJ,Zu=SJy CW" g+22w.)26o+YŕTJxT_;6)1G~??;cBXNb3$fz"ȎܐȞHYq8QCi6@revKeSd8(XVsW;7_ -#o?1b/Nmű{$N!CJJR$jz;NEbB^^{DK9Q44l<hHX$kuy1e $7+9h_w dkqU&Yw:WsOx e _3A-Y1Z}Ii93GcDuwF TzLai+65+WGx BhJ[k'hK"ӛi1^8uפօcECd O2,pyy-H]46y8u|Ed X-9b*]2s8%M=SdF;NU bzɥ7a m<#y ;G nv*i.Hzs,Zc~\S@8NhS'f4mx\r11ug&-2bT W/^\+pӀ`v]qrTw-JfALZ%cEl{6T*"[a $'!p6MS..^8d<J+k.b::=@$jrJt  H/vZ([VUd}%wt*hwuZ n9VVSiyv3Q]@L$Tx)*W~MKv0ב=U/l~K(~{A<Sq,4'"!m$1#r5B/y9ɻUu!=}O]G {"]Gtu!uPZg2KxZ q z5>`_=$πɇ-;.e`bx(vxPv,aK]z}3..UG)($2s,:|b21(Zf;HV[7L,<#-pi}C. (91٪{֣J"p@ $~ [fA3u8m4"0ucA#Ͱj0j6:.X\" Y.{x2jcgzPV'<GXE_Xl"`PIV7;AaI*]3*LX Ņb!W[WFq\UXU+&}>wv{zqXЌ1|*  HkO1Bo($`^QBE8N՚nr*IQ5ZN=KEމk$)6p@b%3bt7!h,d ~8} D7]!x-%=RYXؤSʴ$ZA!ZֆlfX6VJ;Z8DZ(`Q= p9LG: )5x"ÿm7"Rͪ'o|  ̇-G$)B]y!H<6݅r%m:{ѼN =1qug!  >3[XI.^F k9SfW,+Y4pVaY tcϲc=ʲr]h>;ѽRB^] wVs?jEnQ-B=p@9>:_ @y \7:@?-1m4gY)wNqX]0_Gm7Wj'~xb?>))6AܗAc" E0k.b\L6\X(gtȃ!W^8R$2NEUc7~K[Lz=(:yL!7B gh cVWwn]AJ h df=-tzr^73Mt0b;-/[S&.~u9L=&/WHT ?OlhBEp}Yr( M [|7L͓G*D,dݟ MF{"]x-SG, F>`#sCF;6:I{ ~j% hr ?5Q R}cPf\[x`*1~2dN.bY,>+bHsê+0~ZɁn[M{1Y8)9qS ެʯ8[+w<ɡ0sISn\!4Rf9.H țoTh@s.3[ S8kV:q͛0 -W^9a@4 8.1%_8^\is4#B,>1\z7%?i3EW5I \q%>y[r(Q< "t y^/e~4&S2~'35}- _a#MڽLO]{Hd[<w(͍[W*(S:(a%&e-Mn˟ )! l*8cUU6>A|E?_)i[iY|uJY8> O{h` v 5Ɛ0Oizc|ty+rg5!)H#v!3a#`G=J6MV$Y֏A^Tv1DO|pުlͤD><|y?xPU&wBl !u%I>. !pc,4F\ [ g T#/:BJ6xWְ-\ȎRvO{?<C/_R?iUPAf77f PVOk,g9i~Y=ܫ8`15_KU,wTS80 - `*^\6[U|y,@e:;r+@%@g(?NS\WzR= :qWW8# 'F0TZ+ Xd<f 4;K)Va@xpW)Efv -563 8nm9Ú&tnx<ʰ{;ܑsIyyI'!Ha\ rQUxeLeřM]V}tC]Q ,]eO/a4`bGm(RM!'Dݎ=~ $D-HN-pT3~$PIőۆM'DN4J36X-`Sma}ysSdW EG}#emb`;oڣS #]kA|:( {vԃc9W A ^0mfguqCx:A (d:-6586`}G{5"Wf f}uA9zeYKb'1/YAD0FNonv9¸{u@w! vjx7NRr@t:A<6yE8:BX^m=xE}V}! ]5h^SF8+L4`a(RJX.P5Pea[yy~\8:iUe_/$}I0:,g_kOnjX7ah;OHm^SU(?l[:>$LqK f^W0T0 UqZz1pFmL<. ot%vVT{Hiv];Z3$/gipݚdbNwK):#b4}6sc+s߬,X#PAk-P= -&g,t~299دrBcp90=09`Dh$'+%ka#D+O!d&@q~P]HLd/^n&CAclOePAm:Iu^G\3j7' <+YDxp B!`  Hp'p׸pRf@s6^+SR˭kD^9̠U 9E!pJĉ)]ILGxR.^eBkqg.zd9eggoG? O,)U)JAf2;Bks-5O6gvx/8ux Ԍcm&y,MfT,Q@3v0#S'K?n% u{~vBPY 9wxX %;_o>#}{8H^%I&qa+/ PB[^ra;fdJn'47a DFJ8 y#%ȹhБ$5L#}m] *'Ihn'qgm}t2Wr(d&y0nu!'~RU>WKM]mY>:Ot[A={iDAFN`g9DY YZ S=6hCp@=RlU8_(7g5(fr4#H3V4u|@"C;Q#?&"3:1Lf#J @Ϊ3/I(hrN&8#AdSx4@Lqa^88k<iRVC(]l8o ;zo7K"Ebov[ O.|a2C p-x([mpH],ecjVkAWeQWW$8X6 0Jqˋfm3@u7 HkWU&oՈ|0fP^'EQj18Pɗ*oձ=Iߙx;iOZp { ek)z~';>MTFIɒb)ln_H @3[,b3s T ,ƧNmkHwB/SJ|4k?X,IM2!k{В9T|ӕKiTZ~e܏XliYzr6GJ>Pi~3:Id)V\$h|#`~Q"N|FwY!>qpG aGBHr-~! /8,pB,\}8$t0Nn'l.یv CWr' X ))& zMKn"8a/ $[8K 31*Y_ `#kxϫ:w"wԸIFzQM-a2][]7t1_`] `m#dC{!!)f*FNZ(([UXq4dgd SRB1KNweE[3YBpMz+?q|] D:Z6\Jj? d<k2;*H^zI<v:7{q˴ 6"X^ -2],dop#5 Qثeum  _}Frm" lfht-sH :<l?1 D{rYJf-%QXxK-!s{b~RatC"ױ }gHp@6HJLH5VԩR K-K)qa3FlQ|)+YDdf2xS\C:;'2d '`H"2bcKO<@HJE72f4TQH؄qQoEY=nH[ChX$J:5Tpg `%ڈ8NC;"A#UlIQ_&hrJ߮Z<R4,!1;J[f@nkQTpcjlR|_*}iv Q oQs0UeSPʌV.1?;\m4 $yXCU(Vl7h-ҙҶ hQz C3ئ(/-&qev,]rBwB'_ 68 ׋=Qn/vRv=yLX. ؈ӋlA:Ls;_e{o}Aw5v*tS%`r<eB9ctΌr.ejp.qR:H@;=MP%϶hQe!/6*utH:1̩MJI"νS~tO"5׻wN .>k+77D!.SYbxu:) p4q.b#O >l( }TqE)2Cxn#w; Y%" 7]=a0kکL {o&o!"O+&~WcWx6I % A~7 l5n{+v2'M^k],KK oFDք 1 ' ,%2fq3gPů t.A,x2yD8Z122bWP] , ˌ,B;QqC_#6)CS1,PxruAM@5@z'X9'kBKlop;b07>y-\cZ;Cd/S}b2ofZ4Ak$n%2R(8dMQPyxG]f[¿a0~,џ>CV m yw('6`?q/NFD~37([ a֜ObwSIG+:aT6B{%}%^̎xhU~TBged(7 rr=<<svY3 [%m1&ӎnRQoESYVu`o4'csxicWm1LH7z! 7@8+`qFÙgVuu83uF +LR ng߲Yě!Jfbi@+="M' T1,߱]K _R HП(;D=:Z(uMrSaL 7uU><gtJ+{lu a'}O%7uQRa B)Z )rTFJSnd5Gq*Yh16k/̱DY5LH%DdjiSl(Q`xyCGdD^ ݢDRm>lBuD4c,5^'>MSfւ×_TJ8!';=t`<dʕg_BgF{|0k]rpu1QvQ3m;Y}jyWm;\VH$\oEcIz"fϸaCm'Z)X*S9ݒJ-~Mmȴm0!;#wV4և8i:Vnt6G^@at /wiE}Nv]4+?x%<Ԧ,=x!KoŁv6K4Kd))k uh+:)=QIspqh1NE J3`O  4B; d^SH"(S0 B.q/,-)22K#g.a%-\RDQҘ cGs}=nZeewc~}gy|!ԧLgY۬RK`H"v.~qabp,PCA!%Ge2ϚvѮ`=09)BbٓnBT0]f<D[gáoS45si(r-tfe9mP'LE%(BPOqXbx3D6j)sN*:@$[w1r~$4_"{ J+~L/.,ױ `v@ZXT'}4Fw:Gx A^Kxw:xcr5zn zSjYn8 B5dqIWSnնQn=fe/k1TBs{V|> 0SXwI%h%L h{`Bpl(7WHpY[0m*7Cr&za5uE?/Rl1H{",!n?:Y8[ :\'3wgh/ݥOa3;.d?Mh]  t3b}E-E4t(>=lSs\qY^H)K\tfZQ-q*,Ttr`MY= 7{26Q jV)9)\{M5=`<KI!a*!Vk^z9 {_[>EG *-o{sMv" /dIWyC]XJvfmKA٪hY/w>XHI(ef%_$ClaLmJ?+>/K|*+2'_]GYnZ7D~;<9W*:oS f+rh}dh*~ /\=X ]5̓]weW0B BB:= Ypi-hq2d;C+bOjȬUA'иgN)}j}G2=ʦrrjIT:IK{V1š0#8T v `!Π(I|q|c$!gWٔztr}&s1#,Le>[2,T{Qxz=[yE>SVT@;52\7=?W]f {xZ}bܞ̶ x<% ď=G~OjG=nZk)E@ѹ$yf }Ȕ &Xe7c.~(,t~ '5x}=i*nx>[Zf_IU\$SbՓdcR>`g:l RXыu[B$,7?z6Q)3$ .S][0w /) n#Ý$e1{\[-jɷ^.2pJ}jf}A{eY5 I YR:4!EaxBS*66WNm?5s( "=AICi#11'6+_!3 lW>PrFwBoiS*~>F4)>u_m=!"X I-ph#?Dj1 c&o)`vVEwU&-$SL~ G) P ].)EXQ4b'{+y7}b\M'zSpTjyZ6;b-~|cJ}{P0 xZ3Lg~,;0klBm?"af2;|;ȫڹ`z+ٚJ6N=I 9]y JmGñ{4a\"Nu\8q$Ή}bL@NTMZl>O44H&=:g[M g%bP 9) uj3AJD#PiL t3P8>O5I, HWLmC2iNB$U}MѷP($ -a]QHO0; &U \S2WH_5KX 3u8]6cW XTt;zv<bsA@_ZM | m [j>$r{x7jVHu)A;PyUs{~)ڄwA`9%Ak@HF}`X~|PFlpkzсGmDK)*s'!c (&:_Yu)THԹЄV <(i +qI SA4s"xR;H Fy1EX#_zb,FQ},9 z%aZ^BPmI<.D (t 4=>A)_8|D Hd!/ #_$cIGXF &&7]C}M-^ jrLhWzĖin ؎AJSD`d^-b|x[4Ul3bf\yE,kHcoGHa,F[e%;hRzX8xi@,p VwA[AVc8 fz1!veAJU: #j}Bܬwvcg{:3ĺ?Zoz3=X_l%ILڎ.<Q6JŁsduIW\w]~JzSB7%HH!(I.QMd&]qAL$X+C&g05&pbjc)N &"zr.dn5318ՙ*@8+f7,.\Rܝi5 datoWXd&! >/zƔ?}_,poc~=`/*sbC)g2<<ns~}mA+ұżz{t&0pTX[r!l{|{c=ӡN^{Zo4y>Űw,F=tlNZF 1=ELY$L D+M* AJ92 u`6Vw@ݣB'pBz;H3{ Ch $k{ g/ Sf?22!naojըRԔz^xJI@ l   z#w_ T~#7?C5سu2--N%&>q8<>aE2"j!C1? HR#Hfk;|"Qg".1 ~kW Y:QKH+|vRV^Tm4hjΜ$Ԭt Fps|)tojLl,p_rucV)TXUd.ELLdq9vex ~Ϫ>^+j$4 AzwS}ϙEE38ZrtY3Ma{G'KK :%(c71A?^Mk|@ysaMy`tBm¢emu:KGFgB5 PC0>[|@p3~S`/ ddIca^V -IDRB;34PCTOis^z* Ű-"ՊeTJd_Y;oҀudS!$47\(rG` S={* gK1"j&B9f+z~\ˈ)Iԝgl#ȇ.W})=W@|oFr ~/t*zlHe  khmf~9<{oq@s\wp:adBɟ&\>Q{V?U>K5xOKx\)DGO,5rbx{7R{"^}M&+ob9b&RF/<7#F1m%/+1Y*&^-ŗyĢbz(c=3ۀR'l]Ii.o_ %FEg gN!z'>aY1/X"sr(v'g# lG,g #{x$8H( Tmw+Sy*,`Jw8Ub'~}b:I}hhޱ<GW>hgt$^<.LJ9ib :8{ c I>1EtW{CGu0i.uqV`NE-AOW!]k )*n7A\;kYQ,wa\YZ%P[!}<|0^/2>+}؅Da OErw6<?7NRLu=r5 û'Њ^SB&9`;:7:-b(N|zHh#oO,i58< QdL4aJ[Z7 ڻ#!2>7%¾@Pc4|]vXh+VTM(%mohYm-!(y~H!GrA;T@UT z?J\Z3S^^RoXXGl$6z |]z8I~8xl&Tpo%2Neh{OTfhat΋ݜ9o!4)# ]SxG"-8,o+ 9lա8kyHRJ@I M;LQ=F?<: Rrq C| [+b"qu3$}x~qYڑi:%;[%D5 :I:+U^Yj2"@OpgB<bgha$K\JLlH|!{P }@ih_o,^vhJC{RTtrW"c#-qfdBK,8t7x9:.qHu;bjwTdt5@MVV+1 7K#x pX ,oNq3?S(o q2x(Jx"E%@ODC.\(t>D99{`I}~Z@}BІ N{q+cjaA4Tbb#NM|*q* d6* a*_- B' l*'LkoPIHT>!z* w};eڈUhc$̎q6Us7)"2sV V &9A8cL.@aƱ\ 6{,PHH})!W7Jixr\eo|JH!j'/kyLlavEaF3QcñOs C"|>hee[^,z+QQL5C^L?3C6Br?(ZtW5Ϳ""}B%3.Mه' S ?F%Bx0d!{mQk A85dB.blPR:F0`!E& lgTB4aVy~U@P[vMVl-cR'2(h% r%5 cv_<#,^?%{".y!|HG6|i.znwLdDEO8 $a+rM[:~Z[^p wQCD'e lYZ3{=i7@ԢrhV5z4SI>O][QTWba,} 0PLbdd$ %rGÂ-DeQ}>)nr 5"<VD.9p |gšm7Qq :3_* iI3B K)e0cKR|ϻgAG]%sqs%iT,xCauZlW]fIXI YI} &"[F>teARNK.6+SetV !  G48#h4i>_FOS&d=hjHP<%8zGB&*8C(P.FV7lyDFU2sU.\Tm`w5OUcҁcl7n9QKeʽ`}66[I;M L!+TmMjquV6g8Fpۯ$<G%zRr ."WAڪWfqqg;F h[~~W*[&T=f:6U`*H&G5p!eօHUJnV W', KrO}#S*?p\&oidN{#.?= д1OJ:džYy̓Y}ѕhKF6mE  48k;`Or$fy#y[A#%qjT*_Zb9W4 T;,O[Qyc֒$L~ 1x 1DfVUl6\}+| 5W=iAQ]t G]9fP\;l tScVc=2^yak H|eJɁrجб:PLdHZgyExh>T&>)Ms~djڡYRb 1^.Y`Y-Ƽ> #W*)N L&$?A~@Ğխ|qm.WE3!X\)`+OO7=L|q~xfZu wTQ>3b0 "1 f]o!9?lIgNRt[Jj~ow>qQo `luޭr ~1\\}łb|zo@BSI|ZZ OD oNq,}dDѸ /Tӣ%;@[w{9Bk5$ EGgVeI&tYbob_93k&BbQ~ GSCCc.9Q[&.hJatKߠ[4" U٤jo~ŀFy؆0 v &%I i|+t7z-1FMUF9lcwH|M qz*e9kqg;jZXYds|1[FaM0#p ; ~Lvcm!\V?9n2jcO :^5j.=s;V<UEXv~dpRr[z݀G'q:sNwm_kxD}_v)sb~fωEh0:cuQXTp2hGJo_۷* Dht1FW?=YID\MPe|dƜ!lu:YZ@W^ ҝi Ԟݸ&SaT+^;\LKf+ ׶i{9^~fb~19%B !q!FC6qX~nػ]xWFI 8vTVCFx4fGuM(E5 RrǿH{D ֌_xVt*A #$Tbg8 T\bhŇB  dTp hj>oɞq۾CbU6 U \k4ۙgD[#2Vߪ3ll\})Ci"{_4;-N*T&;<9 PM,njR+#A7ÓXbӐo (`7BvCCL<0Qq'=~O'@ڴjAF iCYPYaxy~@Y  ,UY\u"޵}cMY 1i `# !gTKC[XAQKc_z<]'hrI@8rV]/LD "-3M%g\¾~e.aPF]`D]r%G )DHNhpYYi-;٧/? U\5?6HISGAe%tOj4:aܦ:Sf,H7EDL<URbly^xrAk#UBHn*aVcNP(2Y '|x1<H !8ZCrQy^v&{ǫceեw| S.s(07|yN!ڿ8+~Xf1\L{= f"F#@XYO^f=9 w$S66U0&D8E6O:bQSpM8N|%Ujm|<pKVFI;5) *Nb'03W4VYsL~7&in70Uu+7^ 3 [10vWxٙW"QCP>w/sTj".^._b1l#miqj zUargf0]cBGAp#YYCLuIBcJ*I#h.Ϯ[ "B,>C<MC*Lc},Ơțo[vA_z{~1BeZ~qnn+9l_nS?[V9.Zc]=ݸP2L?ypmЧ-HHrj}(P^668<\H=8\&^g~G5:/ Om!X+Ba72uW2oq}ى՝&C'J1ߨћ]1n58N }]78Έt30 Zi"v1Ea!wc3]r4<j$jZ#bt~,%2L3%: 25$3A7PIOSAQM-KI:eII_ʈy~t';X5 HJf0e&Pg 0< Wͣ'kmG6B6k '!D,^p6ԛ4*n8k? œ-;IqVnsC2wM"u(&0'-]8;\%mv[BPBd;!nKCe3{K!?T=b}uivyZXB50d!+f$]FH΋ rbXT;%K R+_Gc%fQ187Ma.0;ل|3\A 863Q+iU5FNnCzR) 0 5mNQ)UDccN A\i6' + ݧ?03Ylc~taQk#WGIj?2zԢnܺtB bWNB lbI=Qy"#rn_/oP%#[QMR{ɐpބFaaH lpU.֭Hq65{gaW$QCIrM{^aFf%l* }"K+5ODX8ZlXn= S?Ucc::.-,7Ofq`FApt&U "ӗu0eTH=ECZܭkp6rhVR/+J3C\-6|u0%۪Vy)sarA]` ys\ w/ @ ~bS%zK41=<-6|5FyV^_h.pl6m]yuh Q3B#@D+}Y; 77A5^HHr ;dRf?z2c"YRFn AH6FmZB!& 7#R$1=kMbpd΍DÔyʢ ׎KwFQW+Y|nMEd*%{#F=("Z}Zo7|'ۜc${EtfoozD`9,B4^3Km%[Ns< *|~cQ3*_ibc8AK+N8$a&%N+z@"0-*HNRI_ K_Q;>~(Nq+py9 (?;Qu.B7/k"Y y(HH$~=jE-]:",o|Id^WhɵO\9ŸG\_Mz˭#h?nɴH"Vv5bň]^r`mm؃G} !yXDhB_Lmc?)N^)5{c+$Pt<X/JE" 1.4^Dy>_H9d@~%+a,AGZum +}0')NVV6TVm̭w6Iuj|[[0G-z"l\m\ܫVFY` [DLkZMbr)Ed@*c.l6Bi?$y U) J$ @_}E[FȷC {hE<hޝb~Xmsd;{*+-8!&3>ҝFIA>5:sD EdA2ϋbVu \O9&\7+*C8EM@d9w0ܦCwNw nost/c{ ]xdBYxZpmz]xp8/i_IA\>IO>: .$k *2,pgGPX%dla;ATߦ}p[YװJθ_\9Ӵ zȫ%);*k!%p E \NSހuQc?I;>>qv>yQzlXK/#lBpm S-U-eO+4JҮdZUj c7Y}|UYO-_:3mˮśa]b~rftS>DT+sL6lnBEED=ȋ|hnM;I%Cr .{qQ2>CA!Pt1'bHzeBzSLWv?m:HS39W[^6רT_  h@;yd Y\G# P ͥ eswK(w'_u#T~lb e Ep#>U9fi}6fKYI7Ow S?n_5"4 |;}K+djo4PC5'  B>ԊpKav>+>,n;ۏM_]hsR%ݧrYS N$o=;zD(hWi /!74CO.Ti^G]RS8 qبI3gjK.=1O'v-'I,l a+|PARԞqYOф ?2ud*@b qD3:{ו={(i^Pav~)*G'C?]Baj|Ex8q{ޘjf˗>} ~B+]1stfhwKTo,+}Q>1Ѓ@ET<E$%\4/ $^Mʿ '2_F=t&Փm)V%Ah&vMg%Sr$|"u[A`oSHN@[xf{SomtszuىF+0"<bmJG o8D ׽<g< F ƍj(t@sXgIs/$_ƶ܌`7Jqw<CDqp ngޛ&؞jqHF #T XT ,} )E2XDb{[!\G*o@#J% BKoߪ,ET)Q@za=kV]+CAZ]oq{[oO+/Id-h*J <@ϟ/ >9aPuR *0+.FJ{b_zl*iyD\VN$>'&6YJ BI 20 w 0(cFiDPj\xLn<tb=|b`5z C!SFISjvxHk92Uפas:# S*-v2DW `"t=A}ci}wszaq`UQɴ NNҠRP~JZZP956bspz^]yxť+ Z wu$7"u dIo-Ӽ(y^fѾb1Dd_bD]lYcY[B:}fKk{B0@)9]@i(}.I:% &1L< n>YbvxAdC1 jZ0p|=q.y֖=(t1O_Sr' 5;I*\P+I2/׹2pkgdjrx]~Ӫ6-o[5w o KvZu*M i&?7 R"@D'd Q}}pwic}a"]VW%TO%OA YPhGu~|Wzo0i:f>^>1R:C01## '+.723$5{;D KSZ\\}\:$!c27:gqBp\"FDD%}8oJ |wnv00چJОIf~=-wgV >*FcU2,wA[=LG`Oi~m|J\ң Y ,4831&u?;DE6Eɹ@ɛ0Gzm]u:D%' *D۵N3)`R uf*r"@70G)UW+OM|7?oNI bMOp Qc 5"BB ;lP;)z1p; {CR0Z[79 '*.+8s?%>C3DAIKo]R;&YX_lfTl4hD%WX;1BmQe;]&X$ Q1y B"NWs=tXo `dduV})[Z?g+Sm(A5Kep K#TYX3?VIêxn5.WoM޶ɣٷ'K+ g/nȸ ,ۺa]~ƕ"vxbza<ђ=Azc Ft$8x#$,NjrČ1Hq?a;t6"%GI̜U@ ,GqBp0˾%WuBWw8K ! ugS5k)(L9JyOWmh 4|TH&=>OiNŠ#i5n `Pq55&~RQCRArh({IHriP_@/B0jN'myh~5fMs.ŽK$\6B9IJ{KTIU}=S)AUWP@>. r '2= N~[jhKz(lBqp7sjE҄Ѽ Nclnonh\a"X ~qnQ;?:T3d o 4{df=k8f'8#R!,mE"e[n|<L{ N]@9 erR@@n9l$ y!6B/nrn(<r#5)?#)s'}kg$M5 (x-B;qżZM'W3r'By/ֽBRP^fZkfd3,PK"Wxڮ` <^fǐowC>sN+j~pNRV%`jQSU4966:K_P`um8q4q$w d}8CHS[K\sNR0#D#[>RX\v44gMXH1p6(&d/C`b57B߯W6WEq'ӱ!T%\fA 69v7FY~r7ʌ]ߦ s3w$dm_{VP|@϶4' Y`<#4F"A8Z- l(8;}o\jHD3.q2 .U *K++j12. )+"%;lMsbo#u}(f!ynyg`6)@i"6|*}FfP7h$FDz@$B/չuOy`GT==/[9SgzD8Q#I F*cj:s\@t=j-^NU?nQPJH=(ܟ Z@j`kU+IƫOΩhaцpx^[xT(4iJpcr;y.tM~\1J/`mJ`H!XeY-ܷutj0DnovxMj8ra &6/`)w/QYLN IRb)91O0tY&6{[qk;p!lVf"+5%9E]"FlEk$n5-PM3k 0DcJBFEX!v*% TW~kӨh+?#5SDpj,z+ c%;MP! H=b5%r/n+{|["6,*X~|\`G;= ^!A_tw&cu;oi+V6 P TWc{H|dJ}AV>h$aW5._FOcpjX4qXD$"9pH};=pAO0h97,ʂ(z74t?oxeS?.7æCfRc ` p)~}$kPG2q^x\yH@VBjbDxDIFHS|lJ̖^;Y+b!I%!Idڱ3|pJ!eWT+`AJ&FNR!Sfz[ؗkڏZ*Bo"^Y&f}>3v=tJ:aHlN Ad96 Fa oZjt;H3IEUkvXr7*jg/V=%*ZdJ->@Д:}xN|QEO>7> RDv$vGc@H,_|!]2+]@((/Ku֣ґ&^g>{B*m!it2[gu>gQ12t  ~ȺA}(Q[>d$x wN|obA/g" E  T8#R-;'mg~SHb&+'X~Ӻ pOrdVZxZQSzW/Q`-Ti]Pwm„ۣ*8EM*I2/X(JC^}&S_&SRDVTd'{6Edf@gy7x#Q{mu |c}[GA|'A- a Cw"%C'%"@`|OYS w^74 W35Vah&:jPDo /D$'>H3a`C/qy(ur{baS8D=&I!UlF~Ui>,YAMmipoD8w:Sw*#zIt|;Ybd2 %sgWVDva F=<zDFZ|znN[hzN_H?-{pnQeB\WYKd xےϱ?p`{ * as">-o< |;*D(JA+p#c>J|z[JHeo]m7ZvY 6%%B$E!y",%ӲU#ՙdr4^B)qspd6#Zcn=8frfecXe$oYaM> UbR3 =}-_ S=;0k[dbZ$T qd Yy%r!(Hc(SWXgwD*HCy.c-QBT)3aIB\-db Zn1S7G4صd?UA*H{l_o[f]~!5%D[8y#D=Y#_8kr-bQW6w/74_D_ j ,3T;]I^nr:ztfR+_?Aw4}0/0,A'Zt ϕr T-$ P;%%5VK|T bO)MC)Y9@6@4),jf@y!B|4oqkv'<,;>ɣJ S_jyYpkDl*a=`YQN)DYAB:84.<0P+x&]wRg!^{3 N_j%f _}?jqk)AwP<x%EI[ŋmHuT{]ofvD{t]J}HqzWwԀ{~0\U'~8I9\k=ncULG+y>k~t}k_E\(h@s*S`"PoEYuwYHcU+=6xeu>p _a]&i p7VZ}i+}Vh /^5gsdGYY`VLB] s*X3 25(09%>O7 ',${)W6,@;FJ[@K}K/PMSf OwDȀO9^~10!h6/'>}8aIFWRģ] k+mgſ}Y  -jHY[YJ7.lNTY9x'&8~X݃{+qLv- 8R[*#>bC;yjgtrs%`kRާI!CDPzfVAKC a.pf@i8#3mN8V@T0u%.v &? bbX9R__^^ LF 2V%1!EcmO3eG7K_3Yo|u=I^:y;Wwo *[cGB39p ʼ6U!AjlSvG M,8bCX_,VZ b9q\AOU4{O^b)ĔM҇<a^x|x%2 nN|"{8U7xG&|$G3azP@Is4<)9{vwo9`d ]aBr $Vɨ!AyXd$AOS9%xvs6.['},Fl P,}Z%Ͼd:҈D" ~l#~H,JI=r4`z'IETɵRí>L!یQ~]zVD&'E W&Z4Q4S?,%& *65-CrOUSLٴHkJPLZqe $TnPJv#cf7pˑ,s/qkomd#(yPD0P "F@'x~܀|#67_9y%EI`}qqTswsbWc]DDwrە; Ûy"{@xSEFQ^P%0%M%7)4-A -'$!Ƕ: a55 ; \ Mj:xdC1amQ{u;Ϟѓu^N u)EBɷh[ %;,c%=!)87WE9[F8F9S#7w pE)2 }~ !5@B`AbGX o'p މ$4v 6aZ,IpW1 #?`H*L0jV\`xBt*VAQ11Yey)'aY#x+$& yKHG߰mf#>ԃ{F W7 79HU}n~t=.W{{zogCcZ*lIŌ.$ wMaMƙE|\MPgaYxuQ"Q܌^JtŌ I ‚=c#C)*7 L @% OHxJ./E]6\qnGw{f6Ls5ATь'U=#*zsKA0 K(j#9;Ur2 #Zp)NCqŝcm`g#Cv"B?<fJR7Z-BavZҮDo&) , GQ vr$ukD|__smno(i pcRe~nc v"-wd1l3V#,;}'" 1U%rE "8@V^;5it/jw4d(UF_ #nqdgYvyL_'{=أ!I*D4w ! /p<SŜv6P)u> ev\|"e߻@}m&{.3o*: [HK:gHlh6W MP@d~Wn\3wM;nΑ#QaB hBq;~h/yi {n:u{?Ls=J # #Q/ؿy m ;0S*f:s,sgkO+A,e5 2M 4dr>zJ{4qp]za~]GURlRV^nhBlbaJR,}7[}u#G35jV#6=o/8n\7~қ+ E"ٛ }u8UjU!;CX**dA%m^) NjpEW[XT6N>ro* ? )8]ڈ <Um&fq7K,tBZzcq;t\ doml5W?:~!0-K ^ٷ {VVW4+mzIw!99JeHwՓ+$|"osRWQVr.d )T;]rFT,:B@YRuc7_u$ATxTea%H-+mB)$̽F0. 2 ,+(#nzi;~I|wB|umz^QGQ*E*K:TzYt ^fpj9|5$yzKHym#XshMYSRi';)[n|@ΗZcmzjp h\:R LJOlY\&my|pumzlږlRorJrrew5Hiq8haRf&}fe$dKgJsԊJ8|rm_r9ɲYkM ,Qï85|eh7b˳o`!U *:-?0%Jf MjDAv.PO#7F?1bi%oPh } |$u$G'T+2`oC=JVSejecqPO6.{Q=  '248R5v $^P:h @"dg[\Y?J] 81 -9%VWI8rn0cָsַ(?|sp+jJkpuGYk1..ёͿͱP3u=e %FmvݬbHX\0m)ͨU2AJ. K C3IE޸5`JKL7.(b!Dwl̔eo 7W7 sЀqcPd].`NpiwmvBAo™׌Tie/nOym0TB8 %4bP 53`NEvlmn(ʦ8ۼYO[w7abc Mj&<:Ko) Y& Q>Q>v``jlBafhK>@01uDO#xOg}Ū3 IQ%/=OPdm8tCxQ,qP`FfmLlH6-+"5;h}$\5bMym ny6]}CTMJuzLI&GOKzsuT!~ij6Q"3fxMu&]Lb&\}dM@d<i=9,BIjѩ$O!zͪ8M'.6 F18P9B&=,KqVjP2^q zUkm`-u\6^Le.=oT~2[q\VPa!ugoi ={29cEv&qI`xjOXVE5$k,GZ( 8FR Vp4S",^ ` #^18LMPokErN׈oKofy%D9i//<8=+gob 7uZA)7s2R|9u=\:/7-iC:'?s" RR"@" ? lQC4j: )#(=)+ 1G165_-o H^ i$Q*,,, 1?UAl|1&fWkY!aK%LO+cp"`0 UN4KLUX@pa@FPо;n!"!%)"_$HF 1k5yy9i>sfTaoBAOHa'q4l|%,:։@,8*0\2lXIˮJjTFg3M5+?GD8ud70=@H\~x(:S=#Y^I,&44bY9d>Fq31li,so9!S4tx:O #Z&,*&(o #  wR9rl1qtKWxD8JdYz<KzMGʑd2{*[m7\ s);* ^kdZ"+-b %ut9)[%6${%i5 N';iS7g;I6*| Fe] +1L(!*'3Z*I3s)*c & VBA >bwJH?ֈ>tHL[w\D}PeE`<%VxR4J$7##m0H48cS~`W>aWrOHO6F"Ne{Cp %u Q^ ~)#8u6C)8I&sN AW9g }^OèfEhp|~N.Z<,+g[1J%+Bab܅S4*DM^cJx-/~iaN70`oV].IP0Q*8p&h8ER)ZYޚLz2T"1WfNL.PH$3tHANf_gsW(%Bl? *MT(jNpUFtnA[GW6CqDĬ`b={Hq. jc; _{E3RPcr* Q/Z.Ҷաy]8pSVC:5!1G-`+/ < Rw o [ίTh#%?#CjGM ɏ o8Py(72&/")'n3mG,^u%A#;htQ-/  5|U +q?Uҍlď‡mG]~{5uhe~PO656u }Q9!1G^fub'9l =l0Ip*AQ_S 8%h+I*ے*+#؏Qx~_S#eU)?DA-e=_ }4ۍ[|x1ZϨ=7>E_(zQ:nk2޻~&%MxDknahg_ƟQ;*r^^PKQ3O*>Ud[D`/Hc}Hngeaqz=1J)4b- `̯ll[4UHhJgWpmѠػ`y 61@gEQS4N#\5'] RT@)6eto\f7a:XQpw?ܡTݮ(h;168My2I$pFU!bV -OR 1k2Jc&wUĄf n/n*0T)6$f%E4si K9pecMJ̜xrBfaukN ڗW$K' s|B`v}jiGXS!Yaf|\$.% %,:%94W/G"Zl#v]{rr/aEu FKS։t3o=(LQPwTRtI5ܣc|Ö5TxvXM{}3qh`&\bP{w];K*(uJ `k&i*_S!S@ F 7#Ÿj K>uӻu|L{~.3s73U NE Y;%k4U cIQEINSs&OdC_z5`zF)ՠN;sĬo4GX3R: .N$F*)F&#!jM`mys$ W b]*oR% 1|V! o WE2y^3ub xft ʗް*P7%<:k ~2/+& T"xN|.#9XyD D0;f0 M%vr s_idteRGD, =p)Bü9'>(iB\z+/D',LG~@zt݂\S0 Zm9/?"*&L7SL] NSEIb-ПKzo]OS]xϴQ7E5 7+ Z@  u { t}s|ƏILBZ]Gg21 FX,`,W#@><{fK"n?],WV[Lh }c!AD^Fp=*xv"o< [K[;6?gy4XX=afm?ep' 7 \YigZ RhM6LNWYh-ܛDDnrTnUDaBȳ-ϯ%֩+ħ=HXx@2`|6d{ݎɲx=i%eei2r|\Z Hv JySP|h\ZN?W jf$}L31zCvRrzYbp(R'tA./Xi&\&P*4)l:L&eRD4v7FH`#.G`et~z}U%r `,E"R}9nAAľV&ض"3xPu4SPúcfqF}  w [886K/ \ӳdPȸ4N+H3;Z3NCK=T)P!A `) ! ,іח] `r>śd'b+Ut kւE8oM%ah|8FDah3-.B~S`lIw| ~ s<_aMJL1e. a!jF$481HfJv>h^) Ӝ}_{@Ga9]8 1A3(Ryi|81I.3fRiΒnnUKRocv Q֩`gAƻm]$@wWIm\iU_MeQrC^dGq^^cChogd:dkz@-A&gیGqP'.&vJv N+!BU2i2$AcQ U=]z%Z#nω@_ z31_ ѷ%&1cʔ'V0l\I"/8u]n6@ $c -"j@ NpmQI7^U(TG(7S}xZ+1>+?P/V K9 ߨu^U,Zߢi "@d) :D"D+$Fo$; $GĂ(̈ݤWF@J$/V=F'IR'Xn Y YWO~A3A+*)n1<EKlLNS\5i,$t77{9}1K|wql:g^Vd$Tީ`Y|eryVx|2DrIjYa\"[OUh3Ns HD :L35RE@R/gbilsy &؇ =:MXsvN`_cD`(OV5E2(E 1T/4qL\et]| *oK4gyxhsRz1;9k&sRX46\"5.OKl :=7sNpc?wvq/bfuEQDY-97kLCH% iO7!aN,b57s;>U=:|6{g3N/5*!"UD+st_'Ihnr2ҡp:ORQ/`a[W1?b *??״p47HC$h)6G[^<iZsOrFz}zwKq_[:9nwbp 6)L>_`FQq7] `OZjE#R# fEKs?8. * ) $e6,]sC}Y$rj%u|PYjEMǏ.s -%D+KZmdOHRs}:^{Q^N-Ox`kZZXCW"+ZTP#LQSXEd3m$xm'e,u[8TNU-oT^jZ&t`r)wfbTx]@TkX0J;' (q2;B}0UkfhTx5wNd}h+NDŽ+9'aV_B3sɩͶEh +B,V?fNo3YmG^]_B] V/J6K$~h_cp%wcvWZ"y)6+)",e+3 &.xO^k`LWwwR\|3Usb}yn&#O;>xI7JU7;<8d^Nh;x{hgfa]az\`mc$]^q%Y1VӗXE`_lxKcLlZqKX.>Av+f}&^t.l[ ?XO VeXV X^SlP[T+`g pE| dxi3ll]P2@Fc\;]=3.0/Q4T]+iXtzxrTt6i [QYSn^rtk#xvkd2nZ1Zy_лdZfgiCp7~>3[yldhVjhQ[H<[P-#p%8Oi.P\"CNdŮU5}l֭,@TH5zV_ne"mn`uanMhr`XvSPJA}6+#jz%. <J[o̕ECb]zkd#dgf?`T4F;09> HESe_k w؁{ocugZUQMF.Ft_: n-<2$D%6{5]P:+n72L4"W=jVA.0"@#}732Oيt'_ʹfO8%Y q~~\rqnSV: 2i):! #%0C\pzg6:T^B5@Rַ&zM~Z0eB>Q +G rCEL,mV!`/(kGbvje_G\0>5u`xh.xb_[R̫FȮ:4 8VIvV_w Mpbxywshnvhb_LQ_jaemokolfa^[FPIKGMSU_[]^]ܱq]_ʚb?aգ[_R{I}Cd@S BvD1EC?f<O;(>G)E.KȲROי&T\D|g{sxt=DjFH_ VQP#N1CA71.m&2nĨRwV'wq<Wu=O\cdYbb#U"A({x;h"N"JgϽ 6 *$]C-zVc)lZmng|0U; ų,Nu yvelr]e~cfdCxjhv̸nU I[d4 `Mrn؆Ǜ`ց75lNYKeDGUo 5)ǯDQ[m|eʁ>pFSm/# ~MsMrVy2ЁŇg5rVp{VT j!%;9I3QYN,b>e$_h˕޺qAc_lsQ&I+%y[ '6Bs"[ D%' %")! +JA*]U EѰ& C  a?< &H7 |E$b+1μ,9ƸBBغ5JmMK%Fh>Y4*"W'/+D}5m -xbC Yd^6nM~_̟Igd[QxIpA8,DW>V>f E}>'GGE^|mt%uv\qgb[OM3AOB4 &!u ޣ;0.M cuK =Ð}}$e G) Öv`YUdMU]LWnP=}af| 9TK҄lzL(I xe\)^eq%!#f.C:AlN:U.0XNT%E'M:hRDܡ:.3x31=OEVkD, "w27M34!*o4m rOͼ=mg9 >FQL[!dikatAj|M~ x~SkX1Ey6/40m+3\>N!]fjqwsڊXÖw)x-nM)5&LsI - /; /m[? Bar='/`6`1D ΟJ% BN. EoR*EU,Nf>@vJ-NiI8J: !:+̘̘֬H7'JeMx ԄՇ.q@#>^,LL5R=3:16'*j 8n[<Yg2q F+]7/cSync*tE\zD^/;CH 1*#!LCte_ze`yV e'.C)) E}M#1@)N=\^W%iUtvC32MoExQ\bIJL96.y+A+)+q-=-4B0&;53?>@LC`Mv`tĤ-yrzWm6^hMR<C/>*G+Z^45sBmQ ZLj\5YYT=_loxE|t~d)SQ:@,5 23O7T:[r:q7I0*I%g"r&ddu6~~ k}dg%p-`}H0P+!+JQ X +?aCs+u*ϛˊbPih[QAE{GzTmfxшi&}٥ oΉ]w:t3^_KQWFI/RKQkwT`kes)zϹI}}CeL+e{$qj)ubDYoIS\aTTZebZ|`s k_viyy%F>-sDUHۏ)y`)k<c d o9ޅ-"K hm~y#V;DC6k<~0"c.}F}oTQ6Bn#_c*#" /i-GA;OU=Le^nom!2hS^XO**=s}'ciC Qu@ H$u:VXK%X^fykmm " .iԶP1m@g_9qL;|>G?[-Lr]po"}[˅fiJΌهsuAr7_^EI/`6)$ 'v,.*.;..N_.^(0l1"w0w+Ϗ$ #&-v8u?DB{qBjA_?UW=R/<T 7YC-b$!gt^ ީnh1[`fm{Wztt tJ){<u>L֖-VVշI4vZ3Cξx {ݔ{Zg•s~9P^ " $@d%C6u<_ers^1I68c"4cfBXYcU[:fug˶YHh|Jx/ZK5% E D5G%X7V}1KΛ\UlM ~X96)֪ǟyT9r1Y!rC3 , *|L+*'/57#I=@bI}RM\ș=i5Hyχya=Gx|.a0F *-/t %0_8# )vld;adIjDr*@{f .9_}t} fW?ёrm:$NԻK3;Ls0)c/On+kͭ ˮ^eT  bO!(,/MY-.$'1F [vAks(t)m`|SFH?::&7:E?=_8J_qX}hބvlّvtiAk[mM?020 &{oj [sup+s`P{x(}iҿns !2STMnNd}GSt](yk=;dU[~LyI4Rx.i֌P&@D_gw'(%J>ј:.yoێ<)zle=NeP*ioH>PPXX_ ccd0%`- W2,IJ7:f;.5<'d7"d-v~  T >!c&6?JWi qspQu ww+u6nAb>NR[f@Gc-`Q 8tG))~h<<Wжkcz }/uA_JB]J)"?])$E=P֤7y׿e;Ygi#b UGFu}2`L Z97i1ɔ|Ɛ<Ӕ0 pq7{x@7sjx] I>C9;CҝSjai3ư'bhgqϬHmre9?b:8gAq cԐ+}Fvb +{>̋2MLXr>Z;@N%sB{LÙL*c. ΥUMlr,1jTfiiArSI,Ho;U\yi7[x=$˼qd(V:`N0`n{&\uM=yWf%UFX:O2,m+;/N6(> ,G'R^|n֓;OO4ׂ8l`YHLlKE>E!dKsW%uj+*F&c! W0Zp3SK/Iqɖ mmSu@a@ig]elJ v9Ylv.fB˲Tix6?%[ j?l0fEa[TMX~@SPi2i;!f)zRnEj+qـ +űV3CIFL;0*:G~~atd!rU̎*Q uS l  3  &9$> <9QBbz&x9vvy}<߅Rm!]f 8a~c&vLib=6+:&FX[re^~aҴ*1)- hl\Rm}]ڼ-%R}΁zqg`ajn{#-9hTD`bQChe= g)^Ow<c p'9*iPi,J~F_tQJҌCYy|Zw~tsrGmo m1ksf%~c Le?mcyI(Q/KCl'~F Q }c0gRoHj|qu }.wGeyFn k(1{$];:e<'2^?BVHgHx̙lÐj(qQ~B0uG4HK}fxls{1y;{|/y\t:o,dl1lCl-lmsj~2KRGJ=O@G64,{@l"c"^ػ]ɷ@`޾hFt}-/0":x>nj=i4i{$yk[ jDdv\HV UmU[fr "zV7b{IvWl^b^Y)YP{ME==.;!BO6_o-|J +yj BkYF#11DXg fh \D%?DEi@4J|[flC 0uD,St UiD p ZN0٫Pgrs1m6b#TBr*\h ^ UsD [} B*=B;.  +Z1nBIXGG+&@9L5D#)H]"B o0] ]++;NݬwK&3ir&à6Jj#/ 1)R %)ѰP˷kB[*vx C\Q*zG _ZK7(EkL \q'oN V3P),ſWA\>ȥyiQ]pT/>M_G=DUCEFѹQj7cĥOuIÆI!9nX B&0j#@I2,>=nQre&x4D#LwR&cidV~LNN;.J'O_ |F-CJW?g pfvEy}0ւ'f9=hy|uu>g{w W~H:? Ӱ__pm9_Al~.%$Ö/YE?_!xkR}WZ]^)W9j[V]] Pmg=4GVdc߻nTy]R}x}Ξpg`UN?ۃ&5"0-'* 4((+1@7Z*zØG=Ĺxk2iYϐBvjSZBY1Δ'Q}'3HRcl 7Uxf K^޻cvw{75gD cgL%6BcJO"oT4VOGQWF{h7z}*ʕj"b'kl1{n&)[{_-F1D4i])ds"؂+"+7XFאV hwqЂZV%Du}1m X@ f+E6#@c&dh/yP6 8Z87520145a|3 d0L*<O!2C//J3;-&H2#[8rnc /?3HMrdbtUx=HCl8RP$)~vwǎ~;{ԅ2+E]="o'v$qb6b>M:B9M->)  VT+;<MK;XFcoP {^$)چ ./2q0[Y/E+3& ("1!J)N U#5)(#5.(@e6G?MMUnabwrwLyWǎm{|cdJOx6A*8&1*,U9+JQ.mB4&;DPMw5Ul\6EefnظvDytqx:Lq*rh.` ])_ub(bS6^CVQM_YD,o=U81T)!Y0t"O*5v@@o_JL/R~?V5Z6/\,!Z -O}0;9#K CdeAҧ#O @}u`r (#t03y'2=/wG+J(S' &V^"jyEf UM[NStf 'O6B[˳nSyyrliq_-VJq9 $0t}\bUIv3-$L#-4.?R<mJ'[Uor_L;#)43HX&* >Pc.iw* $(!(0A 9=.7@(tΤg-/ӈj!z}Oq5g`o^,}ajgiv%24[wY@|.*!}wtenhPd 4b~)c%3j>wrLX _`qY̓yKtl8S$$=- c)_.];"Oh|IU -8 &q2?OJPq*R|h*Qi%QsShU?dVdRXHs78t(5r>v;R&F8PM~bTs$?~ 0ќ1?-lmI{ۤ.rf]YxYPXCYP\d9q8uAXި[hBcڑ;Ftg[RP8Y kb?ߴ&\`M^¢@]wCd$WWQ8QʤWYe y"'_O2%:IZ0dBpb#AQ4V]|vzNlx$ByU5uNJ =Yzc\%jZ.jsbtTuA%+\+B q"l0b @R%f3z;e;3.2_$yߔU ~lupfWJc*>:S9M~:=aA\t:Qj|˪Y״4[l?vruY\IJSC B:B?BCDQ\HdqNQzUÍ\dkCrߥyǟՑ"}Pd"yEvH&Sh]@XY Zh^g$"bI1_:V?JB@C<=F<J#>J:?G?BA:FD:,J>JSP[aucJVbH`(+^[85Wٷ"OE$=7! T2' ,(d& `#* >YTg.qjrl</K}q[Ej &h, /mq ,x]ǟ:#/=J~O)I:<Y)r? iz uxMw9Vk)X"0$+ G4>< A>Z4e&"S+0?{0y,,()%:%$" | !5$)-A/- & fp~!! #y$. 4{0[%@o#-f0s>9{IMoGOc<%1<*?O%e]d$&fhcR|[M;Q&W."g`tK  cq+i3z8E873F*2 vd^}t^RExy[\4e&ow-7A+SszMX<D%* : KVQ+7:wJV^>emnpJmDdVID3)',;7BI-J:Q6=Z99c#4k.s)i|g\rƍxzj [Q%JF;$@E6EC~GG}LCU: b08o&z(=Zzjh U2;% E ,#|V1PmIU%Yp3^<1W5C@DfF,D=\13EY\^5g(NecM agbLRhn,'ɔǍb,Ndg M"R75<Ӑʀjz|m|ktńb n?ʽkGrY*uJx5H.@ \9qjٳ Ͽ##Ye9y$>no' XHq jhOx w ~vՍx|u9V zJH//P@!4%,.`-<'|'}Y9 0bSjtWέJt#-ye`{\;,"X!"X1"o5PP "=d$c Ưr)xKn9ĥ= f/ t; W@\0R%\{I"/B/YOuoǁ'QV "/;}DIjtHCh;Ab3ao"cf%ijikJmq= qwk}.Eȍu\Eq̞1~(vnhlZNC36K23 {69<?CEGGI%XH.DM3=x325/,:'A! k%"cFm#4?%y&qlHNH\V|tzuNYgsf^U[8_efp]c$P^ Ώgb'Q'/%\> ի2 !f %*7.$w0-j&`p@ҭ̥1Q K) B(  k $5b$\vvZYS.]\W{KcLF,SCj؟I̩. _ 5<^H y$*u&)/U2d x.:&z c(,{r 9/V3EW`1f\M8K ft$,0<8=L@3DH5KjHGSo>DX /)ZZUTK=+ P %IPB! Z ViXldDkVF7+!o$k %D#mtaE. _ -=HLGH@F;99i6 0@'p7٪%V5QG[~p&~4M5av=pczQA@}1zr%]<C}V*[e ,BJ[ tщ"&*;]RjZʚ]oqHaޭyTQzIJ{@,[t:A6616*; -&F7RE_Wlk!{wl8ZkRv?64rW1=m-3Pb7ak=fgE(oPw[+d%kHqttynkCeYttI^5lI$9W11wU6!:.; i; <=bAJT`i_4hj cS! <N,32ge2-%ܷxxgubl2LBE Fz>/$3T@lolsNT 00/@*N.Zchg`,U)BI@:17#55 q4:5l:rB%MwX ck sbwvnpddQ8m! bl +E<6I,MAF Y8r&)3Wb γ^„c? MF"38~Oxhr&5-%?zDCHELtOL_F0H]9.$ EDA1S05 Sc';93-:w>@(vBX?-6-(SRWHdݣuZw(uOx~U-^};DlG~MHt8B r^LNfEFS!\D/K4A]NOmVrTL_VE @o=%<7c*,&w  9'8H 1UC[RUW`mIRn5y2t`JZ62%[:Th!/ /j@G0TS>?fCKbyP*LX?(/s?VNw/Z!B./~!!(9o.P-?jKWSȘaT(DL9<&Q#Jp?^Mq@K=:4"9&;V@QFJOX>dto x{%{xpri7`@pZVPe/JF%GgE5C@D?H@'CF:IwBF(T<*J[oɀ%v7penml?ki,j($o1w:"=/8Dl-~(A=\F߮Y*2'>؜9*xhc]W)V]Y ibp*i]=Fpkx8ocїBx`p#mlWoEZtz]fR٪FIkգU,CW{v~3rۥjfi}Tms@rpvuy}P}8pzCmD[˩I[9G+ XAv Qxbf3WT GOu]Lg5LMhPqbVq\4|acڂeyFffgM>iY4Zh?d ]oNt29#8  t1#$O1>'QK.U1Z+WeN4B@2z[ bO Xx--=>CMY[nlulxo}[}{|(teZQ|@?UV-xdg}Qq B?5!n,k%K'6&6&w#((M&->5?vMZ^(rx y܉|l_PU$RP*OOlRXkpcrpl}x_?.Px{Zy}M}w9'PY?Ut 6C֙Aמo>T{vpg~cd 3ipy׀jM >@ҶȎ,(r^gy^dV Lx e@c1"n]a y-u:U Ca:HKJؠ[Ei:C,~ 4;ia/LҼJ{Hv/r n Dm<m+o49s36w`-=} ÐJUvntoS]p5Q+JUJScJy2(%9M_QmRNs(upf0Xr9E`&1RH?B ?[ ?}D>Oq]d#Dk&v)^6-DW2267~E6t/e$vS*@c/yh$bMy9di. C%0"=-J9TCXF{[A_\3YmSLCH!H"L#R7WXZKUYTU PQM4W9HaWlw`6s`tUqBn)m$oa7 -D!W @FXmSEchQjFF!R$_#ipsE /wI{~Cv3}|E},SV;dzrU m,Fn uGQbYĘ2;_a+eW Q"U) +*%\7 1]:%aOHs% "'i${gtB o%3+F;.=-R)$Y$.o  *45!?&}JQ)S)T\'dj'4l#Th^XtOG<O{(9&T@R/hB2W3Hl Z$M}-|s1`LQt;JnLeU c rIq\6E.ЙM[{tRoCV\YcNFT(A<6z%1w.Pz2w>IQ|g{Œ:}"nzZkEB0A~<ZhQ YyPiM+N)T`o~dRƚ}e@@VXzn9gNjgk^rx}TB~|ͿA|ijg|Ȫ,}קp~~}v{xtq;om,jEecpd`gTVlSp1MuIx{}xnYd߆*`Ka!~ fpl^rKxw;Z}.a'(N0Q= Mϔ@_fnҍ{~t~et3USgEFV2jm(nЏojbQWJv9;g*UAs/:#Iv!e* 7PD7,4O? V/P[Zb^h&]o XtO7vEt:m0*b(T$SF+$59[&.)'*%+(-A3~3>BOH)[WBclhjo{z[ˊÛ$Z gڪ|Ky|ʡإi7ߠ+bPǩugܽS7ֳcV.QohJ~v nr t dz IAƟۻg&J_#ջ}dZCx9%v*y[.~0 .m( 5ş r=#@a!QV/`+8gAFHPFd?4[0& fy[: @T$(i,F132.R'91C-C$\+ 96pE#U +*c0-k4mN9#l<g=;`:U03*I&) <~/'&h! * !m`$, />V(O~5^bCWhP!mYm[j\Vd6I\5OTr$N wKL)QdAWw\C`bdjw#=u1?ĉ$I=PsUtCV.R eKzAmw8u2Fs1o1m2m(3n4p6vqo<qFq:U3vd}sbƄ\^vNlc|]mZ~~Yܙ\(c=blw4fǸƠ ̼U>T W=5mlLZDks+\J7S-9]qx*-PjM|N |wC ,ڹibRn\=  ')@2db& Ir2|ehdc@Q@gFsF8NfZjy|\NaXѤ$|Gev>[foY\O:KkH~> C9>v:_==AKCK-JWPaKVh\1lelpkd}DeZogL@:/e'~n@\ZLR?`5fH/Pd,,ne/ 6@(M0^1pd+ qm|}"lXF~$:U3o35{8<AE~J@Qz XK\L\F VlJC:(W1+in3B}v#tkw~ i'EȐ,z~< ϢiϬ\32d@EDW5@59N.1)#*$^6'#4:4D77S'B^8caWA O^GnFQ|‡?Ȑ ˋnywLsb+R@..r3)iSY)34[AM\W[lYP#B{W2{ z rDt$w-^4_bf0l*Rj4'7C23&~%x&vALzW8I9GML&g})yYy {r~dĐ$J(z  ( 6q($T3nb:D; 46,;V p˾kD2lDP_S`M=y'V̯z|/\&P1"dCB2WLjCz-C&֎!.2@:KDžBOyK1m?*b;,XQ*MM{S??`^q~Zs ')0v44q)/1{#rxlh}ghFkp#zMؓ~kΦ#Shy,t46r0d#V[LEHJn5R[uf.vhG*o[3F Y oa[XRlQģTvY{`PhoHjxD }Xqɣ*Ne8-Q~xBHqȅDml=o7rv},y;f/6He{M_xt tE~tX"uĈLv x[Jx]vramI~he^CeV filHp_uj}|Ő{n[*̦'ơz?",&w3s7i9e'92g6m2Av*S#]iG8")<K18Ǝ7@0dG΅NVvF]rj1a]aQ _|GVAHA 7xH$nR\ddj3^omL[[|gFroepX$gtLOU"A]=r7,#1 1-8]2CaNyW%]pa_"\2W@iQKwJSzB{W8X,pVnOLD O89+De!o)#-9 FQ*#YYL(^'wb"dFg.i xjhb1[qPBO5K*`$b$N(1?bQab>RrݐgGA{/jZ{Ls?Es7ya6@^;ESc@sw\lePݑ4NeyΖjY#|?H\s9l0g.d91d8h>@lHqNwRT+%Z:`+ng kli,/`1Ny6whm\R{KIavJNRUV`X\+c\2fj0p's~q]Hnjk^iijk5j&Xey^XSDNGd?::>DD KO.QOEJcD?so:4-c%9 4 "%{'I[(Y s*:/6@@JSwY1t\']^_)>bciR`^LYO&!)F!M o7Yk`XWonoZ %$)+E._(0y-+&H|Y72.cE/-^1A'>M21&T6W7rU[6pO4EO372k&1)1/ .,*+*L'9"`w #!C,+9C48`YBTkHrvIxF\qBb@hPA=D.H%K!L YOC#mS)\XM2]<bIeWjfqWszsyvjr[FJ~9z.zN,"~1L:GlTI_z\hWrnjrbrZaqSnOj1P/eS6]XK.zQ1#NSaRP O(M2N3<oPGPSM],Hc?ac`5[(L39 .#H l $zo.1k/)# EL {kB*[ h3CNCRM7B 4%' + bm+UE+X@ ܫ22xEgtW ekRhC`S4E s6v&JpY6HƁ g||G~qT ̠)3<zDGjiD\<i0.3n*|o$ ̚6|ѕ58}n69cY\"\6bpm {4G 4Y/F!HKD# 9@{!\<6Jxsк_-UެXͲ{b 7W?#h4>Ú(SjMP#UL*!;g $i 1_ܮ70+u<E!}0@~.89k ҘO̕]0r~9i#:SiiM}z)|\&s$hE_ШZu] dXSnyǣEŋCIz.Swе;w;z7ȇܫEgК}[z٢ 9!,ѤsHdC6=88v'V:psʕ\s.La(VA4| p!7u91; ׋7R>'΢S-].8X,*'b5$Vvpo”uBnIx!Uv2ocC?r P!JWsdX$BT^LB6)2zuhW H @ =M@Fm"OY/X= aJgBTjXlVnMHq@@r2]p''~l wf2_XS)PNM'J0.F:LAUC=N<>\c?i5EsKxPPvORnO cG]WY;.OM-(L"MNkO )OORW5(7^O3%f=qo`GozN,Q}Lhl?*E;Gzssi"b&^Y"ZUBRUQZS U&XYZ6V\A_lc)Kgijg\cC^7ZWIURխM!J!HڶH/H GiEB?7@9XDJ5R;WXKPTrKhA76+=C Ĥ& -9[!;52ۢBK#*,;V+$($<gؿ`($ǮG&TUx?2G $C c*//).K+%gY qͪ Qkio@Qc ]`h wGi/~=˩E"FB;.2^'~ħ_ ^uA^Ld[C\AfE[IMU]c'Ke8zl8HrRmxCVA}RJ &@5w-m'`#T ]KE< B!RC"Ey# I$O'vZ.h7y@݋FRGA6`*ƩR &} (n"aH!Y<*UEfWm`|nN`dUƮ;~%j)N+( Dg~q R<r@^k[ ?]Mca  `x8 %5q  EVn&u/'4U\7H72F)mbP3mie 2C[Tajj co=ipol>c\>WXI:Hl-gv#a$!"j)0'8?IFNU]cej`Hmj4LcQY1PpI\ECUB BqBSElKEU du=υyRFx?s_M[=25m37HAMD[0h!vU<]q1EtQjCa̛,[X)Z˩R_e̵n>IyRlȋyPx~wjT\OD<0u;=BJURbo t}=%p>*")p# |?i T?0i( %G)8)g02:8:?BGIvN.RT<[Y%dZ)kVmBMnj@ b1{X#QOP8GR!SR$Q+Q 1*R6T::W@<\=ca#>7hD<p7z.r!:`؃{q9h]tOl@Y0# z5!$1b'= D F XC:'-C!##P"!q#$P$f=!c#C'(E '!G Yzc:X(>=/aP21y$/2,=?d)0HI$MrQ8RNeH?2y"2O_ 1T=_\C/CP> 83X//(w+8.$/,vE# 8FUg_#*,)Q), )4yt<BfGOGd@44"4Nf: [N N i `$@)X*%]i} s6m#kkMm rxǁ!] C-7:585)yt ssu|1xrz/}o~}z lxa)Qy2}:ф3ABr<]0Y!ݑZ%P³x) k.ƱMNdz!)eOAM )*}MYH (T[1`f!T" MqB| Il ; :-j\BW=RS(6`W ܇* ŅOO.o|wrnl4k3jzfѻC`lXGQ&Jhe)mx < 4"0uM=\G{PW$^cc)+f¸c~/[ENzK@4D-1,"08HDO>ZNcxh "l1qyƁϋք*zcoohgls){ra k#*Hs,j+(ӹ <3VxvpHn5s })2Δ:BLFMU{#^evBjBi*bGX,DN]cF+B!}nA!y@wL>yt:f~51Z0ƕ150<֭PF8P2Z%:d]l?po)l hc6baRa`E+^ϳ[uZv\;(^}_`NcfcAikjnkTl k$jgefhi2ga3W@ M C"<62 1D4xy;^F/TIZbT*nuu XwM'Lt-nj3g6_7V6VM8 C); 8?,B!$A6:I N1'% t(3G>HlS_R+n|KNHiΙՏBkr VDJ[;;cEx*U&gy=(]^:HI {dhYXNHG7FI-OV_Wg6owesp B ÅGxj]iQrHAAw:J68 g6:(A5L0@uXEdmE.o>:w3y&vwdoSc_ TUG @s>oAKGqNUJ"]3-f6dor>rwhBO}QAi~:y.0oq"bTJ HSBA E0 N Zfdq5yl' D&,14فT3z,An"aFT I@DBi A?| = :;/A_KnVWcm tvtog?\PGhBwBFLLSGYZ_qdjypJt`smVc^U#F \7%+ k v /${V*Y!~&-r4Ժ:=a;t5<,R!A %0] R+"(+n 'ŰQ&::;+7M  gޛ5o{9w>|U[& 39 > ; 8440U5w6]5IW2\k- )'*Q.m3k8*= A&EG HGW6D="e60R>-3)$ 8PQg`>Ox:4"ԝ#R)(u"yjV Q8"& r <eCc5>.*::H RR jYYNhcgTS }V{6Vv  lJ {2 67l7 @ +L|W &gXVFͣ d| b O&q ^N8t)Ib!|0u Fu|m= }΢k, ""^PpNԎ0sik=ij2nszƁ`Cyp$y).j;477h27#*{ ZK~}vz۸J."',<15b9Q<&=1>@~E4M_SVoV*RLF0?r: 5z1oo004;;2CIhLJ&D:>%8O4//+S3'##z k !_&e."8+C@M!XW`dId_aZ]5['&] _K^Y&*Q2(FP"=K8L6o9?GOI0X/a j-qGu|v/-tp` gmg^ISo>G d<7538}sCRbDPq'}݆U#LC+~o"bwpXP#$J$D!?:Z73 7;DPQ^ia q?v&w4rR?1hGFYIHI%9pE, >o$37&) 6")=*P2d7~:sB@IDL@GMGKDZF0<\=.;2&l)B*Mc g%>(Do+v/7#AzI*cNLEZ8(ZokI/ĺm/:$s/8S?2BO?!7w,xz .IZ!L*&S28S}=fAӤBx!@8%/%y֥ҪAǰ=#X%+o17^a? EKuQX`jhSVmYmi YaVkJ>60.\/~3<uFH٤VbUnޞx}mBN2]|w6tUjyaϼI\[`Git`|-BDgk2?XzvBkg_|V'QJPzStYasj=ryx")|d}Yk}H}P}}\|رtvk7^GO@7)6-0ў--0f7xeA`M?Y9cj5nmLrgH]yO>w+0 ȣhf~o$+xb1Ke5Z6a3ĺ,i#;˙cNZ~5?=8z BI:6u G? ;5&0SHg,̉*zIGJ|"|maD$Ot ٶb}(|@|iV9/^(Xz/}Lh2 1L( DU\H Xfޅ/O&s#tiS1GB4ry[E,bb/;,CE,7Dn/AR=8e:2%*   '^/@j_Q`BnhxQN~~XuzslRmf_cXNPHB8@:BzHR{_l7ys ͜u+vG-yvseo1clHkmgtp~VT 3v H*ٺ16-61á)\d\ $F2%7 a}+K$3,(63Ï:ԑBڒJ QS PאG:,׀U\},&+݋'C1<IHNSُT[r]χJ[S\|G{tk9k+a!XRRPPTOM}oKpnH#;E.B?f> ?\""?#>!#?#B$F$XI%I'G*#D.Aw3/?V8;=?<9="4b=>,=!?@ @6=w4',i ~ b {&>1:=2@E@m9h,P3WE1IG_=.@YȲA̦k g(xZdk\W˾l~! l͞tן$Ϸ.Ϭ3uQBgY9MhlN9AG5ݵ`L ՙxҔnpeΨ\"]Fykxof!d%/"<η xMvg'1 9]i'A xѫrQw 5kT/ sB n<|zEknao5 BF b +4lW@o$ TE<K oZrNn!2# 3n gM{ @ 7kB/'a?<{ % Fk*9% (rUze`T$I6FRZ[T&FT2Q(y~Kd % ;Y .|<GeNwOKD:;V/"9 ,^1 8Z>!`-*;/vHURUgR\JX?3-Y'OP~a'Y6HcE>R \`9^-UF4p Me-8 Z H&+04651-%("[pL ^}&,+K/0194F8Y\?tEHF8O@ 6y+{[!'F+-,.)!9&U+[#G8!F R]yf_lmi@`uRWC(6-+3%./08*:C@&N7BQWA_=g8o3uu,,y$xhsjG)^PC8q1.)z.71*D6O<XB.^F_J]IQXYQbGh= i0b#VK\E M3."d %55$ B>L!S/~W=2VJjN1U@s\0n^7X K6sy*f[Z a-*:DLPP*P@!UJNr@As4(gX-A /aSrw"4[I*"5>߫5FFK6OR_QM$4F.>27h2 1,U*"E$i !,8 BDRM&FS1U:Ts@OzCF=C<;A3E>(-):'4#. (%.&*i1hb85>&D.H5Mj<8SAXE[G[SFV;AM:AY561-60%/@000&o0P31B5Q{<^D7hyLmRJoVDl%XdYXIY#IW6T#NRQn R T WXY V(_Sa1P9PWA*THYM)`P:fOTjLlGk?h@50c-*[ ]TLp\D/<l4##-&.(*$0":"kD,$ N4( U.W3T8M5; D<8=-r>$E= 962;#v0H.7/;-H*Q$Xvo]T_vJ\ToJ!>^l1'F$#' >.C8DCnNI ZSdmus Dugrkc%Z*P-EP :R ." :M$B*"1t7?}I[R>WVN/Bɞ1ə{ WTF}LdvD3 y)ߓ<5( ]ſ)QL:&F]5ݽ.h߱umٽ̰oTkܶT@oEn=YF]Fȸ,Ƹ{O{v"{o.l%Sg[ƫd_ωTu~g9&8y`g\KY2ShDΝb4Y8{wuKLsonlmSl 7o[82>h<7 0&CdrL"*g32;aBVGJS JiG@#D8).-$8,'$*= ) ^v~ y ?^z%)34C;Tz@edCWuC?6ڌ*~] uka XPF.MLLLM{P_Uw;]3gpAw$xw+sj^cRE 7y)m5qz7&1;>EVM Tx Z# \iX.?PJCz6 Y+ 9$!r#((b->3y9p>lAM`CCC9A=28(146'W R  +6MBrP aq d uvuiS_k"V]OLL TOCRnVoZ"M^)b6~hnrrKmHe]aV STY]|AbOfc kep9u5{r7bhSzri^TnSJ^DA5@@k?@ :B9EJ4NFNDG[<-l.$b>(| @7pn7 KAJ *϶ۦc%Pґ^Ùt|r V oc6qK7 kYi1!P$-,7lG  [V m LB)U\%G6n/N1 !AG&'le%\0| f.+4F[|c(tK tqa;Nf" ? eWG*4 h<%>8yv,` W fE fioa P &  F yosz=< 9N $%'Pz'W&#v% #Iz"s ! ([ }[Z d.so !&'C,- ,*%o(2$&=#F!No UQZ%]VZ S!PHR"<0"u2!."Y/%*5Z*W=0F6qNK;U>\A_D`F#_EZBS>K9&C490.Q.w , w,`,]-"06@< KU )^.]c>e Qe`najZJlQeIX]@G9d3B41Y1030K04@<0FQt5[ \be$d-fa$1[/T(:M)GxB|? >y?tn@@?<=F=@: F !LN Qp:UhURP4OVJ FA<96.6i=6A6ht5g306-W-080k@jGJeJgH>D=4, %&" yK!,4-9f;9Q4$)*0e5~81: `:YL83u+q$ZA F3 5 a%N) P,?,(Ŀ##xXla'e^i2r9HԻc^u\n D*Hk*Mv>E]+I.7. k^0m _%6]+Du07z>4%0+'6("".Cߖ!A/# 8h%Uk{ <6a3!tn GZEPɨ }BP|61 ˕j^H.0 @Fky  鹒wrbS}\7'g`! Sĺ*qvײU]HFDVݵF =y Gw54v\kkg1yԳ=ԸBfΪJVч,ں e} $.7]c^ۊUq05ս"tt+x3JHsD);1u8U5663jvu-< ,'/ ŵ3# ;&D3mGvD?A4; rB G@VH4yD(J= Zb6 z,$*#[b/h]?3g91 WOg , br:#Yu.s bMtL<+x ܲ81E`S h;|rX=$tG  4hI3f^hLُ\ EGahY7B$搚<ψPgt]kn,vg}^16U阈fu י-K{ <4X_lޛs%y}t{ UjA؃ iZdLo Ft h `$)X C 5GF B#YH*u09 t?#o>w@#:9 4օ.jd( &6${-`AQ 3Lh'-@&n +,%O*:% &$""v!?Z F :" $"|$V)$p%t'7)i"c-#/S--C(i%#  JipxR#-B۠}ߡ Ft|u ) )ɴ(ȟ>;Ƹ OA'WxKj|O&ӂ%ѸWsE;E; Ա.ɯ)JWtæ2Aus}*ϻƹľG"_1`) ~\%5ضq2 >Dڼr͸݊#3ODbaXJWNi7v׎SIrԗSjHҎbe䊔!:KJ|b  ƳPܓQ  ny c{fL\!nL(d$/-08;B/V.{F2:DH4@WH~<z6\>3A3QfV1V-tT,Po. A1.7 HErtGYA 9 #0i &y]c i;D} ,!omG:~( + ;e ڙ\2dz[d2oNq{CN(y#>=%# n: $L& A j;*A6tD/w_Nmv\%P~W!~XJ&*R\9~@"\' Η^v$A9dq!4d<yS.h(.p+%p$L;as%n+$#q*#S& "u!Ú!Zo! m22!A"S",$@p(y&O(ַ,c#(T/J-z(!{ $6F^vVq3NQy[sobkVRQ8Iڡթ bX ~U~r $}$"SųmoL;XCw Բw$=OYq.T󏢳* M:6)(|銡ZpلT5*p~Fyj; fCG/yGQ}ۅ `ٮ]ombhĢ?-Ԗ׾D # 4X RnX*Յ⊢nTVGH XѤWgϡ? ;=ԖTyYpmWlܯ%vddnݾdQHQ&i-|- @7AEGCM]?:nD5QdB2qi1n=/[*S)q F+T.|b5O=XqgA_ z>Ǽs:L{6HXJ2z a0v2 "2I/g/>3s6<{ ٳCeg|D=B4a +!_4mInqkf@z~m^Փ 3 Z ;\2R6'.A1A#J,3S`)nL "5Cϳ ߈ Lݩںxd%`pE!՚+ۻu44kpB`fqeM5ރqrU}dbH\ ' d Tw- G΀ B]:"n:ZtxGgJ}zN ERzpQ_ ho + ùc@#:)g0j9`$M@"'G ?Q3&c9"43h0b.LP7(iR%:(#/Qcdz^@%%W|VS*}&,][+"+A*dq""% Κ /rbjn1J,Q)0<\X" %?ڔ(>`,Mx"/O.qC)xJ ($u7_jaqǫݲ » +.J qUM]f!I`ۂU֏#W &:ZJÚ 1-^ I _ άNPM,Md󓅵PZ޳:XmM᩶M߬y;9z3<50;j/;-S(b1H'*d .z4s5;P[7Z3|g/!.F //P-~GR.O&2;6:4 uY@.@8d0 (RЪoI4[ @9bS)#W-ޫ c 5#O0*Uq HoO OA Ef 4$Yj/2#1(P ψf;bce1ڠe.vTCӁ C/{=o[L,PS17RU2E߲f@`v2"~P@ UH/$ = nTn }Ya1k S#~ql jfCGkEDC&Q#}pmZIp?Ma<" hu n6|p$|*pkw1Ի:&@_*@/?y(S:$4 .^U)(9@%ס"xfMs=ؠ<$ ΄n&+ +4#S5) #$ <&/n n^\tqc)9nk3#7^N'jn,i p10j.Y)X P$(f,_e $ڧ{ r. $ e/ ߄n-T(Oc Z8ѻ ~>yfGƠ.F AHTjO vז ձx HϩuydVk '-g5(& hBޭ;VAr{ﭬӠ[K#7E\/<Kb[e;#LϽ~N݌}CK 방 pDߥ 3yccwr8uON Ԋ7#r ݃,f"ݒIދ ZHaIh#p.b"(&(*mhV5g`x@\WҵBWZ1@ɀ=A8 2@.j+`5&|*%O;z* -m:.3D6D96J"B6r7%Tf[3y<,%+1n/c:..GC++$'R/hP4;t9kI ; AH8+b ̮2@-[%TS(!hcB7U ]zRP0^=%Auo`}U.[ ECzmUr k>ۢl*b[ tm2Fiß |"to޲;١E!ԨվsߕI1sw?e Ɂ粹 k~;u+@3S3\3/%hsaryrePJ Jnwx Y  $Ald a  ۝yOs%K!c > ^_ MQ:|B[@"+z&mO!&>>+ 1p:%Lo>)<):P(5S$-?+'.$\!H(*׵%\!n[%-(["%_"!# ^Ye0}=py4iH)AT( o ${]*pʟ.z\-q)) $եjR[].;h/y /S *2oz`ۻVc1 $sC0)^` 0j ~˅ʟ<*K8ɂ #ant %ך( mԐ MIo !N}-ƻ{fT3 Hnu2u@勪$O*E{rytr&)ďnxD'jú \ǖJaXk F~Y§R[)ݖ6gv8E튉aL*L$Sn߶}ܮۈq5.ӫ#ܭr:*% )ߞI 6⯞ri .ݜx-dB/bV b!WL&o,^6!>?.='4;b^5* <*F9(N4]%,61 t' &>NB%#.lpFOO6?J 8./3L%|O5'\\ %De!"@ >zQJ@@$!R B)t w"{(5,E,+i~C(d$Bn=';ftY W9ݒoEY1n  b",l  k~{a{qZȤsɢ/? u3Cԕd!׿ Ԧ Xg]t˰Ku^SgT1NRT;:Ǣ[YIx롟dA]8ur!{IŸ{E ;˙hsͫ[מ徟UUv9I"Y'E==i\It*<߷^IٱՉkP:IYJ/Wl2 j iT\36DP4.2  !u&,,_:5QW=U'W>8 <:W9+45c., ,-R(+ %#Q%r7&K.()L.h4@56~:31z".-+RM+.y,W*Z(P)9K*&+%0Pr53d v-ǯ' F2^bME0 H^edhJqjQN:^rev"W 9a6Of~'>MiXI@#M /j J %S]HJ yۖ׀֟AG؄9£t @|- v e_ -~%̴H)SЧ~ A ]~;A| (>ȶ *}M e@ R)ړ Mr ' Cl%ag~z v GAm8+b-E<И7EK!!,!C$RF)u ..4no"v!X'/*_(%n5![3xpLu@OEg|X ΑO۸ڱwߞ ʴܘc b[ bmH' u&Bʮ*ʊɵYg\Ƨ0A*2?nt,> a}{ӡ բ Xҹ ͵RNK4F?;hB }`cꉃXb>-sKD[6@ܵ ô]/ß|c^V&Q ȏTR7_;漤ې燦lu얢y`/icyW:S/.~P ^{_S#=P.}A\i:5a1NڸR0d ! h|( (!߷dr0 AnU"㕡#nY)XO/0`8 ?R@CM>g .f9 $1m^ 9*O A7Z #- ( x!/@7H ;`9ÀO?IMD?#2-."wP$:$wi(F)'-zY1b;7{!@e>(nC[+BqAY(>Q%H^:W!13:I-k* Y&TI -7|N[!2#"(=n+)EK'L$ZcAQC_. 1:G־"=UitϠ#."' %5!w+lф%U ]R׆xMk! En:ډW l ( Ұx qeǤoƱop%(upLώ VS$f /){V_+ 3䵢a(kCGnpFa*٬LCmzH˸ӿ 4Vi=Kk67z/=ʂyʨ#&tn78!&Ji.2pWkFcA1@e'i*j닛ޚ\7( ;a|| c;;H;* P5S rg\ 10&謟+{?hW1u2w:BfD",qb0M+35y[3.`( T ʄ`Q$g"1y)?XVy .~w+s t" ؚ#猙++J}-\ K Q4̦ y;h+<괥ᄳDٹl qzEP[ѐ.bם"63U'Bp=@H D~o* Ig 13 KG#H nV6 uEǐ |^AuF.Ui ,u1 Oԯ wWI:2j% P%tF !1"xG"Uj D!&Z=!b!,#7d)2&)% ){>!+3ve-m2`;!!tFC'DF)FO&bC";=X"t5ew%/*+PI(B#y V iY${*:.%.Q+q]A$8@"l`-9\onfHbVӈug"v$1e<Vq5!9+H 3fT !WuD.Ӄ19ٽ~ u ${ڏD BZ *ªŽkÊ.sb[x\u8I SO bP&Ў̉ b9=P|y|#-,`n:IsE(Rp9v?.&#YAo'C1YCREN)Y׷,(qVg6^EW7Ty*xTOVuF/~G⻛NM b0@h #XVꉺ+KF+SUrt礣"_&&+2v*<$EQYHՒGYB:;{5=D2/k+IO(h:n'(YCl,v4I];I:>6E<Y8527^-abF+k*6钄)'Wg'8g'k*1*go/H@Q4q 4z/Uj(|K zP;v?( nM@*S6K >"m|pgxlR?v%lF#@"W#=>K&(uo)|g+n.3|4Sr<!EZq$!Ja<&eI %gE{"ɒ>:~6(ox0\,}(u#K1l -z? Zf6&<zD-05~K$/zc"o*C.$2 NyJz hMF JP&_!fc3wfnR)u'^eK^ν  2 BtEE שJK,> S ܢ FMڊ :w MXɭ]ԗÓoVN*lh|;Af2^Z  | iz ZŬyԼZ׵2f0ئ'Wz W6o,{.ti2VuZkx^qy̘!%Lw4c<M9mys)d5C`7N;oz?T\4] X"[j\&G),OVX4V>.HGEIz/|G\ߘB~;%e5Ñ-1oi/V6+"fx($g'w )c7.S5d<+2= 3:5/!8+)券)ue淥'$C3$?B%ׇk(9B$.7#4j4.X'?݂WNW z?ȟC^9'ad/lwmm+d'$#;$Gu;7JP@C%-Ձ5rvq>P<Q+A3zYh;dKE[NB˰k˛Jhժ.v~9PfmY)Jp=Dr}u CB2, 9h8nzƄ;I8>I<0Ju.UX vL8% 55VĒ+9 L}v ,^$oZ''0Z%S#j{$ K''_ ) |)iJ+#j0H6/?OH#}Lk$XK#p.F! 8?A'77}61-) jJ$2 ?!S Z! }#/ $(;.ӧ t0mu.:28)Fp#W Px g up *e Fy| `f^lboRI6I WH%7b b X xA! wXA^vC վOoM1#-eVىި u wD Ժ xD\78G&}d%= w,LX-# ))ifC eA%X.hO3ܾ ̧?^L*7d{/[â2sUVsd J63DzW+Obw)Ӛ5fl TAS b Vo0u%9= (o}]:14."܀bQh^ɡcG )*ZNFiZ=6XԹX=>Lq"a='t.96X?s-GWI@GGUBw;Z!N5%1Bo/,TV)W) g*+\ت. 4fO9 s8: }7c3]yo.q)+'&D&P$r!0C"."a$Ow8([ Ic.3--3`-}%uM(!C s2Z1M:Hy|fXSe"qe];xO%u;pF⣼wOkgaAI׬5E֣I".۴4-Gi 'b,'0͍]EyLQq;撙lCssL Wb*˭'u% n 5Q6-' #f(aM>JPz!.[=!38\7@)I* OM]"IK@!FA"@8a1)/k.]*ˢ&2 )$l #P G$[= ]' ,)/!(-R-)XG#U,R2Y bo +z $jjH $0yc= UB Hb7kZv?TjA;ִ fWy&( LZNC62؂5wN Ԑ]-S)ǿqq[SٿڎI /C}ǿgAκ) =ҺS~CKU˸~ xLĢ ʻ'MM˰TezKȨzGԬ[NP"rQ,4^GE:ğSX& 5?Am"˗@oxRm ^Na( ,G'g6[ok naFН :(;M7-WvEt\v&gv"a7 +$gS9)//D6?hG-yI6G8NBrw;$&591=+a0p-*Ԗ)#Gi*E,>1%G7!ֆ8e'6!,2"w,3g&D;$##_#". k8!{#z4V'pN-OG21:+]4#;iE 뱽!wmӶ@Gh粒1kQp$x~\,PtZ^gS*1MrQE NLԞ ⮆8<+Bπ̡k7gz]vAKs]%*+ו⛘!a}l,͘ozW nig So ,-Qj58q z;f0  VxO eE  %JRJ|v1 !j(;h{*c!)E'<%W %v8{}(+t-1i0g491sLAVI  N?L 9G" Az8z.3 0o܏-a ( %p$#t"e% @+ .2J- (X{"+0Pw  G?Uf`tn} __z ò2GQ-+/p=^O ܄QEY,dzHUҏH6[a_+A=qCC}]MHݐ=ۈ57ݜsQAŒx <uͮј $Xv D,s  buշq1 Z@ҩ{ѩA$! 7douc|]X@~m l†Rq(ˍk~7iѼGTkׂ|ew w9~qi Re6u\OWki>2t|qt}D~ D 5.Hf niPIu*Fp _#;T$g(ϸ'/4e@6>uFKJ{"G]7A\G;$%6=3 %2`}.8F[`)%'v'N) ꖗ.r5;7Sv°3a> .)#G!?!X("0s ;KQ JYq"y'7%{܃+{ȥ0L9/\L' &Yvh( h8杣yeJ@Y!I !cuX?_3UZ60H3 q d \D!uQ I}ߐK◡پ}@sБ6D -<\FiQY92ӉUy7 }4˰varղ״ Ჵ{`d0,WJ u[䚊}Nͬ2z'' Foy6 NKur;WƆqyV  L0 ) V q GWS h ! W  G#;Y*Tg'O+7)~T(u&X&+N֮.v_M/0.o5I:OA{-qJO M",oH5BsĮ;R5JX2?//e o(Q@X#+!IF."B%+ @l/9 G, N& A s?o_jIp/M N   B BI E I V[ 9מ12g@[?FWSbT49σ-M$xm5y||׆BuKo˜ME:+p":pXYf - X9ޭѩ |EЇ KX2VEDpj8O '3CdVw,?)3]^]MbKZ1ŤĪ t1ͳ8W\jҸ&.n,~ߘH?]U UXl)x` gku@U ca8+7U,={Yp ]oxӚ9pSo&!SL#1;^$jo](X(|.e>_5<~w> e5GIeF^Bk=7[ 35"n1Tm,(l&HI $F$b{';;- a3̗4q3D0|y[+J﫮&4">D yZ!,% 3C :!#G.~a(@u,ؿ]+V#ǜf"rk8\X8G^S㵺YZ ʄh`U`%}= gZsXqN*?S5-r$ QA<x"EZxO}Kv? kڜ҅sy8j6Ѱai?0 MiѨtB9WB(Q1 4s琑Q.B֎%T}(v @z  9aT GtSB[w{ C{ #*{ "   d \j$>*~+*Гl*֋d)ʘ)NH,J/|/B|1%%6.;-лBLO}KJ8PM|>OmDJ)EQv>ly8P7J72ſ #- f&J!{!"P?":g%{*> -C *V\ $ ^gr6'=l+xoʄ -! E gZ I4(7pc0|gRo}K!J7r r.X4!\zc ؃$"+0WpWBqsga!V#<uUoΰ4 7 _Ѐ ,x7eXbE^7qRe )OW=`Bwei}%&c'ѤO:dž8ʚ#/lpyd||q `~C r&%ƒM c !& 35=:%Gz!a[ Djw"WE<Ttt+ ,N/N 1">"e# !'GQ[.4>3> 0G_J?_7c1[?.)e#Q|!1#XRc%Zc*^ 00&qt-~)%h!/ɍ 8u;E״?a)2k db$ڮ(~'!dlyT.W4fÄX俶`a⼾ flk셐>]HJCo&]K:qKhdj@{Bvhۑ6JP犖&ڔ4^XC0jܹ/{^ZV3=̍lBk0tҋJ'cH|!/ x_vr3=2i 6 6$}oO;cd{T {52E I"w 4 u? (w @ K# +2--E-oo,6,+a A]*vT --/S~0f1u6IH46v 1˯ , ;A&%E!+?!:!3#X~( ;+ )| 5%H }UGaTQoTw+v<5iJnc{ Mvm 1ppa"z-OЈIӱ'^ <дUDf=9F&otֽ| NH *{4 7o,0׼qvzp-2u% C TSp_ŊZ{"x Bkh$VAb~nG+:Jf,y1d~Y^l(;Hy|.xbҥ w.> 4` 7 `n  O\O'1tQN +` A j&) Ĝ )L'06f; ˆ֫:3J% dXK)[ SY0!h="]&R-4?6Xx>qH,0LI*SD}7<>G3u:*.*+z&K!| H!KWo& ,/Nŗ,5))$ J2xNXU&#DL_  Z&0k&o!*2p|( t8޼wb[8yr፼倻⡹顢s[uSu{! m+m(T ݻ, ܴԦٍ@>N#!?'n/@m'0I:<뗉X[:r%5ѩbbb`ιeΔt=V&EU-io*.; ]L+e :~>xeFXe F6" X OjSIuW U,=3p[P zBߢ!, S XB~ LБh{%:m7-b"h/(/-$F+}k* ]- &)0q 0Va2 l.37; =zHeEy9OUT_oM2F{^<+ 0p494 .0% Q,1//&R={A!p{|= 0w![D'+ m* %xS!d8Su2P8d  O 7X &WP(]iB=r%2|q* $ᡸi U7nͩϮՑ8LE~n N3ȎDR X-=uOIF2 Ms1֞f %x[ aIYv0>Ay}곓i[ r.+ɪgke x5 X2\4sPCUi  -K 8Rmg B4<ÚNl|ԯ  " ȏd Rn   Vv *y )  3? T n 1 |Ym5Ŵ]N K!/g&PDD-^5\?I5 KY mGO@t9N0<+|)[\]$`zζ2  \$+Lf.֜+, '0D"!#Exmid푻3c;ŗAP#VAyZE%|JEC&l^ I"H<w3%{-yᗔQM=AOH䳘KH~ Gs#]RN_XަANFcUw&7sؼZc)c9Z)zIXAz&`|J1kCuR<׀Sȧ-ΣvHM\e@l-0D &{/q5x/|b[] Ͽ\638o!(n u&0  {U!tJ!9gcr8f/ 2{ P $6 z ! #_* | ~H('V:z!00,!K/v-H*Z* 5.<%0;E /0 Z3r =9>; ?MG~QOW5VsR‚K&Dkx;3 d3 -0+g7$:=#+  ќ( ,S O*&!P{5UUm,u  [ v a'f<cKť0 O SMTH3y Oph؎O;/2ε~FѰklK׸ئ=asDǬ ut;PKKuMxДlBVLNܫޏ}YDگg/=BN@FyC8Idv"?@qqݥ4jELב^xC%8x?կJݹtP36*7v(!:<>!RBPB+c_8AS ; c 9+#"8p > m? Iu  OfG ͢ 9ڜ ­Y)pb/x0h/$.Z!C+}J?* o'd^tWƝ/D-] 7 = \ IS͆ d˂ ؂άL ӧ_ ~ Nٿ 0`{ CX,u[z}#? = (_j%\( 2 z 3 W^ JJq :@2`#LLtwO6   %"~ &7v Z*7 G/- 7( ?X &A M= Q7З _/a%T~ + pC5mO<br<@pS\v&Q' #?:Fn{U%TZV#J!աR($f 4 96;4yxe3ubhG3f⢰7(sR߮k>e[tXװ p\W樽Fja :I~떐ܠ%>,s9)i]xH[/ڦK]<ԗ(0fڴ)뢦T]3tbkÛ@P찬>10{tfd,e`e (mw % $r"!/~oZ Z E2 W w(d  ^=( K~ iv($'/r*02Yɓ/2`.}L,,)c1}~4[C4]^5Zr8"<VBK5sP@MG?905-9| * &Xx !-,g{^;Vv& oS'{*{'7"PUɿhE $.r#J9 E [6z: :wf>?Q aqs٢7hlp } #Zqd 4/pس-dF ψ,!K9g(GYwoȳ(oƹ5uIƣɞBO}LbK} x0=GI/saJi}eP<츷*k!fx7 $& M1 Ù R!u hZA ~( U PU٬ 1 |ᛱ Ky2Ƙ%p^8r7H,u:-²YuQƬD6ӞuI Xm 3IP]Ϝt<yO~i(#ǣ%!T%*.]x3v;ccqGE}&wS(ET|W#(9h30j(! ʡhIon ޙ9_ޛPwW5u 1 <9c7]X݃e;<`X=_x浝IgP!#ﶂ7<#{d?,ZߎOtҫpBBAh\x&]4_K9:Y g9{7$3I~' cjo[ 5?Eg@ $X #- k<tuJw ryu m, I/wl  Z K : 8'&p@.x,/ 1)/ /--hi1P2#0tF1+R5e :t@OI[DLCIZCN;r3G`;,@ v)ڹ -& < E #NigG$p1' $e4̑LZ3DR Ф Z  { D—8qDSڇ^ v4qX+xKwMӈ{ҕm7Ԉj{#uz 65_ʲfxʞ#4ȁ|A"2 r"9߂(ݣ^Aن}AQ8p5^dx۽̺/ٖFd?<^5g<l7Ef}6Qk1fZ1EۨvقJ Zh ^\ sN c8Mݤ Lys.rNtJ\)R|Q~EXlTv6dg;_CsRAPpNsƢ/- =TYW{m!>'(/*8(636r2!E-+<\& h) T u!t$4)~F0}ԙ >3k.4I7_ i xs Js4N :)-۫K;e!>x(r搆=VsY2 1eݛzݟ7Z#*jV0a-tOj!1R*7 Qz.jߪ2 bJ W> ?rOHyⲱ\:^LޅG볷Q<7ھ37r߮Uy mBQv]mY|IB[̈́@#^7; bC $[ ##O "jZb p b~ ^  X^   u bw u?'ަ-ֿ/HD)0 07w-Gd,1i=.jB.qv<.00n3#8*><#Eg G{%E!!g@Dj:ߜ28wT,d)݉ V$ W -k 3o^WlE\!S *$ G"9^aGHhf&!=9  8΄m̀>&}ѣő8Tޓkm㢇Ǥ܉YP[Ӝ̱g0]G] ?K0(PB0.%RcOe=lp,S@OB&ي(܈:~ݖcr 0 Hg?P#'G(PGv'`p#iM0R\Cx Xs4w'X\*l< i"2IGJ͙5S/  o_W 0 v&IjUTX&- /-Mg)@D#\xUGE r zK  5 ^ 4>g 3H~wMeg=h`w )d\ I } Ln-:c ^ O"Si iac((fJC5f|YTnEscN#ޔ#k/S_඗Dߋ!]/F`U}GٸOرG|.Kg܁Xr7尤DM 91dȕlj CNU#ob]Vv#=w@61ߴLdBeV4c{9t]HI? NHzq0$8yRV t_B lk 2 - e%3$%]@J#>vW6 }l  ] o 5 aF?O$;1)ލ."K/D-=( z+V(Q')l\*~*Sl+b-4k1^7!x Ď?M"C#A!=m7'f/ ) i&"!؅[ zBJV )- QO Y > l#" UCL 34ܤt ny4F ˄_$ ͢ sڳr lˠ8" wQ]P$E9߁xEK׷Bڒz3qO}=KٳF^agw&LQvϴ$dA8Q+-y٬- g38 Zv&ܺ0զs$˻4̙^)Ħٓ;vutw$R %Z@l?J[Ї?64(RX@7 Fd4eFx :{kv$m 29k %tu[Y<1k' "c,@@ I 0HN :(oܽ I"{zh@#$p$+%"-$*-!?[&s >(5?Q3_Q i z<3l_9 ^Ê ty zp c  lca z;B ~ ho ] ,2f%>WxeH R :. SE Ew"@{h`7 A ?rfFINf]%E禁؀:iff4@nd.Ph0~D.艈磹̦CZ7 GdG} ߐCk%T>OkW%BkV2:7yإخ W 7?m٤j f5K4ioTpm ޏIZxRT4>ᖕ}m'?0+ y{gGt-gUgDOL~ipl i ;"VЖ!EX0wQS K wD  1* z` yB> ur s1:"*^'7(M'"%Čf"X ! C#|#I|#7D`j%˕tH)N-$ 2JL$98(1=*G<#(7 g$1\ o*u#4,׆B9=  ʛ8 o -Q0? r$$8e%>e UhrN gxD4 ~E|  k +Q u #VT  yJB=w~2ِsʬ(~MXSP iYF k]YWs!P !/W qg F? & = xp @w I.  M <F[B_ BL%.9&k_aY%WVb#.&^ QR%b "i"+as"#c$ (i+J1"7':u&+g9-*~4,'n.z$^B'p!kv"D<۽ / kp$ O9'#`m` :e a[O #R X  s o jX Er2) S̳{W onXMQ̃ `P.wԹr09Q0W'iM| LE'TΫV("y9$wn;l6b9_3_z}ڈ>E_圂ˇy9lW΢}-G``̘ηő鄤ؚF},qsV7Jޏ&>mY*V{{㭐f;eıI.0 k:'c[6]ܺ Ti5'\4}S'P6"ql<u!FT"R|l"Jk!Ħ &O2c M . - !t#E%w)/!Ա.f":0%c/ z, o'D~<"pZ W ytOHC # GH_" k'L (`> ؽnr ?gLتelLox?k(eoo$ [HqAWBtx mĊ ~f zAlE }tv%"kDڰّqޛ%АA"6vԶ옊FA  @FV1X5-$h&PWx\O urgj/2!lt  в u b+  Ҏ^w ] Jb*/4x N i %]a 7 #T#2{"k* `xRʞS>#K "<"lZ#u&z)ocJƄ&A$,ǚ  'Xg5603΂^ #ES!dJ"i1N"j!{2"m"*"!6 "5$[&km*T~.0"cv/6A.@ +,c^-' Ed#[ . 6 Ҩ;U|n_ ܻ >#F OiQdl 'E  6D /{#5[tj'g9 C[+oG NԸф{OBzчJ5cU2vUKo+*NS:gwrp,ܹnyڹuA.AFg  ^K!֥" B!}.O|ɟ@$#1GsPGYrwD$}~ cC;0b@ -XrKH+$IǁEm j *n% =0 3 C  .N 6h*Mk%~2"k. .= 0 "U6i L%! ~ E(())>B5 rof!_=j!p u"9F$b' }+A!0%)3xn(j1(.&*W%Φ$q" LDNM7 }'Vu}|v s;( m5 Wf a `; ;+o $ QZWw @%>U !E  ؐ wʆ8$ǹbz>38Rzm=dz6sff# {rH &?`ޣ*ݦN,4rf^DNhvTKN)A ݝܽb/rۣ.4a Mt-ldqڵUۆ[Q(K<ϼ[V!pnd= t -W|s $XiX*sZŵ  AYd:%_ 31ih%pM? L t8 ˽:  >Y%qc\m: * |+8=_:v &(C V*r`J 9|!%!Ь!+#i% j)!.18%M1'6%0gd'zO-pF%n5)"#QV#38KBa$L?T.qD;sg V*^Z p e?W UFlw/ߖ ;L Nv  poRƀL_a_=\w~2K`6I cw3/?45y#r{+TݘzipLߗޔW߿7hL猈{k뙅RY듣WA+_#;*m ,18X ޳6oݯՙZ 4@ p:hqjp)d(6vY>QSi)R 0 U6 N _Y*6߃ H= q Jh?/ ВV1s׶l tz!H"Yɵ! m WQe#:!A $Jr$$*!&l u' m (`,v60# 1a=r/c-g)s &Ԗ %k/%Q #3% 9v&Z 1  [ rrX" C  rY  GI&g C?W e r 7 /@I 6 Vm/  AP;#FZgyRճiM |+^7 DP箐J6/ކb?rew'+elO;Ƌ݀PXCSWj:/. F#dg5ȳ㵣Lq+Eޛ6Aي&٤A5Odɖ@[XN ܁]wl @b+M *6_;E0 D_Pv TV J9"&h\P$شV z q k 2HT q"t *@ \1_| |¸  [p8'9ozJ2ϭS- X"y%M"Ti+/%. 'c->'+% '4|"u!̻{C&<_3|D$.bȭ(]^2^{5 b]  "y3 c@2H@4J 0[MRJ k7 'UB7B> uApEN,e&laD sC1xޅ_&_}Rfە"4ߣƥx凯ൣ3䲃1x[eҹА]8 -kۢ :ۜU۲W\۱3qԅ3ݎDclM/yF~%:*X$:^䷣A$8OZJcnwf<剉}G"z.X: 179-!#-;+a R Uw+.Bt+ #"p\#AV%#|l")  ""$tP4%l'F) +ދB/h2؆k20 t. +vP+ 2'L+x%ǾV$lԃ#Vn!RF BglԚ$? ~ ۵W |L` ]:.]hKM  <O g4 >u a Z ׺ xt >u`1f ~ ];6=UK~j{7 l":NoQ'W2 聄1chO!kmYQqxYZQ֕I;\ݱmobݦXyq.]:/n根c(XL9%Aؤ5$<ףָ5{͏aߗ䜞;"i KUr4_@2d5fj z"^;LeO w 3pU T\ žCR z a* EW Qv &O e).``)D_p(,+e^7Hf+?M#' #n )'ַ+)L*>'W'R%3#b"uTl9)ҧE/?,' +O oH U5`A^P%0 yh ( kK Eq )*wRu"հFz&k] T;H fpZl?uA1=;#E*אZv埵nن>莙_KO,#EMツ*ob>V1itHښwx]έٝ@[/b,b2GF5)h@8/eܩH۟X;_ݏڮגM׬}#6clzbԳd1f%cYK*}K9 1_(YvHWnJa%Dr*`;\ < ;{ C EJ 5] $f3Hou ""."9"!j:|! "V$"5Z#p]%x)1 ~b,Of0~44${2-o/) Z,sN(”> &$0x"I I= n!+<Gr"]"U $<^ U%u} NT$) O`KeKvh, y)Dl7 '2 5R Uk mg n'HvOȿw \er Ҋ/WY`D C^F\E@U?t\"AN툲00d֞蕇ٿI~%vX#E[oXZXq GOƥAz~~?UVor٭ًoثV۱7'X)r:nJwڡ#g5lHda\h 笷硦-ה ۢ K4W-ab!9jEV_bIA ?E 'e P2@ ЇJdj<;<8G["S;#§)GU j#!(%o+?`('**ot';E'$#;!cJ%^0|ʉ<NSPJtmA1)ϴUl,W >; C- / % \ G/;p Q{pU  ũ[ r#4VzTk(F앜PpreL@HPca8猈JXi_C/{ fyݒE:m vLt='7c<7 BpW[XE9UoW>xӝglԣ>!oߋ߄Nk/6J.G,QAij#[{K|_Hނ~HHZol w,?=a8 j F  To  M} @H X r{xy/* !ܛP!Dξ  /5d X"K"Kv,!"[#R%' ^u)X.b2^32Os8/ D+uh'Q$'em#d!!t qR6sG 5$J 2'C && $¢ I:tZ?/'B;?)b%[sn Ck U= <  "jj X _"h ::t2hc~;20shz-塀 z~9 a2 蜔_nv̈́INYSaq|ⲫ%l_M pGqq^>b$E<[ޒ,vCT5-Y*hPi^V1WE  kF1ytU.X|Y{:e"(7 6k C< e %Fl\1'6z 4 0N102 M~=R<w}"e"4a W2#QY(!G+$|)̌$')"e#nKd;$ I_Rlk#Lh/>KmtN:҇[D 1; X 3 j [+ 'NyzD&| * <2WX/\'e Ȃb Nzm<ȜHx%8Lez+{+F㨼g8wFzq0Vsw߭~囹޹<ݔxݥޖ鋶UXA9% 簃!塆mҏ-f-ݮp ܡ[C׼d>ׯ"P J㍨衖&@췪PR▊9bSmjue纷V&Egj~$ %Sh UGFػ ѝ9/!c!+" |#ut=& \*q. B0?~3/0-o. '+{')8o$^&"#s OQ<S^XA}t!3b%L*&%o#Ȅ$v-`4"rU2:Lllr $F.! *Z &kT?w5yRՋWq#o8 PI ;yP}\RrTz{D?}OQ OA/KK]8r/d=Oo~D-B]3KۭOvK#lF]鬫4 .趹ttg btABu?$E㕐MNO^Vv+"d &6gM.ର }6'O#؏L׮_!4P&Q.]mT XRDe4X 4TG5;yCn  [TB9ۺiS m ~ )oS ˑҜ i=!p& ,~_bw鑿 o#n ۞ Hu݉okag>$^ 9J>]lN !"n$? g'#+ f,Y,Hp +$ `)JQd&|.e$-"2.$kdGgq9"ZX4$lw$M/#J}!gyŸaV_G6q]X׶i T,<Ϊk<[4 :N  ֭4=n*b@q7xR*1[Et?gk K-Lh tW9Tߧe]|H w  ۙ_ #%;J '[Pl`C\(IR(y]NR)|!"݋. ܀BD^'䩯7#$$;d9$*}ؓ"s 11aO$~uZ^1HԿ.=P{`oW oJJ ; ~VC D% 1{d:1%#6H- 0E As   d Ϝ3pDFp53sM!!Pz&j{Jm)eD:'lks% =!BKs1j>D7ta`5W J r (p R m#E=i_NO}e _ l  lch/ !fA RC+ mGQOrI A7 &y x9b ~9xI3|죻X33JKg쫺~m .C] xgfWq\Rz<( SO{qW?g(7vN T݂s<^A_ߡ?&,7Kq b:ꢨeq@\/z9T8529WZb%ZGt[SNA:J5vglibj眱* G^{] F T!c/fcl"jx_9{%'u!:{9$~ Ʒ'`k*=*ǵm * @) '.%7J}$y#{6!"Ks v(ڈ$F`2ҙ!P@""|!y t@)BySNyfmDR[J qA9vca yk + Txp";gܨTjo'pkQUKMR4oh+Vbz8/U!1HK`(< M3| zh" #o SD/s]r!wou*dgdއZ)(|lF9D7&!-jN&漱&u8 P;̞~HMG" qm[ qhsyYoRļ=A$ۦ V -: iLh8$̢z?xpG .J , >t  Z Ai%tk(|'05%B+,"}}E u ҚR" ; i KB O S ( A 3AH y 0 G b 0 6KȆ  yR Qs&°vf,S Rr FE\C?{Sdl~EhL%\9à>H6B 聯HI 7#^p$6蚉m訔i齵B4*KwRQi.O]&  k]BOݝA㮟*R.$B.sفQ uT}*h jlNti[c!c7$ 'g[҃(e'+ /q&* K$W"8!/)O!8$Īp1x;LsA9V gJUHS*XP/o. G98-I u2 NG_fDO} } Q9KŔ3m l)j}gpEveU[7Zj%aAC8 _ATBvEe,:Ha#e& q| u XgI, 'jPa) otLXY t5S"lp?^Yͭ磵樨Zz0#j NZ].Z m N&.cqH%<a '.59}g :o 2_YV ' ٤=0=T3ͯpM],2یX ^W"8 T*: 9J =\%#D(j("&,j"!o#x{  "K   ' 2 bI D Zs Sxa  $S,w s ] cs* lg+w z;   % !U 9>>+}Oӎ uE_"lJZS}9eM҃VLdAӏUE|}T5gIyөF86 Frz<6 L^fiǡ{(5dVWRf̤!V%z#ֱ4<դYGْ`fZc`mtTRNτb\YgsY*}pqR,ɹ%h-res^WqM RGmb 윃(e 'Pe  KaDo_o~~ZR(? `" $p%w %Y $bofF"ثL|$d)pS9wF1~L 4 ayƩA΄1U}u>CM>,6jvvAHH9DO ciaN\,CSͽ+ ; F & 0'0JR<0`J\ 8N>d 4xVcw)9}.# wy]9 Rƒ5 !& b`OW}nL C| zD?7浕6}jlxҭMg@H "6# ~ꁅ4Ex $ \C؄2Zp=O"j~jgW![IFQ 8~.xMV[+N G kIB?uTZ@;C[YvC/Nt$ 5 M 8#&8-)3(@,&?~{"r-۔ k5a AX `X X}O   "Ѹ_ c֒־}j7s*2}E-ALE 1'ݑYfVZ# &7N$MD.N[%I+^ԧvPO_n~AfEZhvaOr5iBжDX~CZ+ob:xE1' _^pо]alr@ LJnƤU9P:%rkbXn @t3nqZҹh:  F"9{#V ;4# 4"!'wDuQ6R++IU8+tNYg20#q pߪ4nh9+#scvb Z`_Fu]G2M5.Y 35A f:xN@!f-pA6I_CT++̫#}c3\f#1wuJKQq%/I/62# !5[ikXq O]dʔR{E2xXM9Y  sahcV(>N^=A뢐 $hN+Q}u~ IHo5dT5[=hLk\L`h Ù "JmS4J4 Gw\Vb\PJ6zjeR;DvbB[NCjRa.[IaY! & )S*N( DzV% n!y ? 7d LAG saX ;j lJ Q.bp Ι\. 2x G_l`ȟ-{yi){ G*`y P^: g>-rp~"y@YT` Xv0!| , mK 2+YQ 'BiM: 2Sp2.EMXm1Q짒=gLulQ6Kun;,S}9@"(74Be;8aE eٗDCxVڑ냣\r̚h"v 7lfA[߰=ݻt#޶ݫ)A+WnjjCpBxI%<x<޲S H>jdU(#߽7#l  l{׵J-Mg/.Ty]3KAc%  q \ !ԋ F d?zS?c|Up^{HGϗNs-P&]+A $yEuM,v^#Nx9YtQ F X ڂ w$e ĥ1 OM1 Ec6Ay&2ZO.aZYK)kV $x,UCL.V1 RE\O 0!= 5jD |XIk\%=bvybI3u m,OV߉-R%mb=Xd x@Uzd=*Эz0%%' +d  H \ϑ rO- wqwA7y[2TphPfx dgX Nǧ[!&)/ ($t E%( F"& TA!()!dGg`iFw1a~"L=s^> QhXw ov4w5RzCFUhwN +g y/wxzΫt3$\WBo^\%`;Jw7(V\yY"LBt2 -!oqyܾ Xj\`ݔkە~g:Q}_ (_ ua Z". ѫ/ h1x9ѰGlj~*V^+pq D  0d 9 ^"mQ 5! K,)dVe{e͌tms~#A4Tn Q ]( @z7Y3W"{W'5*D(R|1%-"B RPpN?{a\ loj/>ٔ/k~xdt́cCT,z;/ˌv9*(kdJp>MJOy *fޯk \I,`.{{1TknUJS= X>kl}a;S^J6K(=l"r-۩fpuFȃY8a|3oa>ߪ`sG$k]֤$/팽ԪY֐ڿ9<672sq{&*QS ]?:u6V &0KbjDꉠ {S,tg<H 6Ih-Kx5b_ౌ_&HteL f ]_ > } ݙ_guZD:>Ix*G J_2oi  >LRpH /Xqy?$qSSN]y )M D!yF U 0W)H5  GyXHxxV =I  ~#9ksTu1VL@RJYqt'8!Rr5}}ۣg Q^ Yr( @Q ,r~Op N`W E^:h&s/N͈=:VSWч80#elmMn7 kVx\''Hv%x%q V% d 1Y Kӵ 6ұI"4c"Fb?Y="Ts]"A;`Q+![&nm)͝=(FR%"&}mc  yh_c#kT5$n(s@Lk~{FDI5ǟ!f-f7y̝D-NTOQ\`{c >w:ZԈ',HWj71#]xw"[f IgF7*oCyda9 k+j `l-M~=zn^Wp Sߥxjyql@1OI LRRИdNDl>~i:~I؏".jړTڧ Wܛ{ ntR⛺oj綇V:u7!7,謰oI>*uᷟz8UQ5 |uT}X $% }u 9r s KW BgJ  {~CqN?AaҼ0n` ) 2}A|!fE@)jh,PgOco h7Jx H7 ) wې6oQz lK` b=y8t] AT\ H d >4@  h (h#% `Yw<*z << V" l~18ŅGIqIRx31,|ju2 0 CH1hbwƇ.m^cz G-}q($4 "+ djYuאce i|6F-c#%V]Pq:oNg,r^-jHlX%F\ p Cbo35˖K=@#]Rw[[l i pE U2gI-;Rj6_ B [THvB'&S1b^x:)ewǥ%g5BMWl!&(); )>&yz$bo EG^M>T5Y}-)EP&_F }iS-c/9 E8pYq(1atjqE~@q80-]'j.٧Cs Ef|;|e*kJ!0K{36$O -DM of\ƿ畯"hQF$)t/Դb:J0oai7A%l$ҩTZ+IEC&F~'6[ٲ0 r׾jP3ُz٫!IrdD*I|\M EscV%j̪ tTG3{!CC6ߞCE)!s~u7CRb6: d| S ?  : vjӣ$9ڕ8z d*<N+,v8& Ox߬ h)rN;M;K9t M}  O, דn)B 7 fri 5% u,\<?pDs(kW~ N*SݕGn> d " e tg U &t6p=‘:e/_xmP:^ա"B =D*˻+~O3 U;  !be]t+Z'mFo5kAp>{1%5Z)X*{ 9+Z;4 ’ 87ho.+pBsc  nÞ _?OO &Z]$ o kCO&LM]\E!mly3?[Oa!81'**$*]%(, &_\!i'n~6GdvJ6{p<{xIGXatx9_TuiaH-8Hn5v[0:s,.s \,&u<6DSE1Ϳxn{4ߩJV-)I5f7Vq3}NDZo%.@Y DK;? й!87D8Y 6)r0 e۶M_Og0Q+;ԤYFڟdnrkc8ZNaֆF؇%#8 "5&NCWv?YT @7zYR=&}t݀XJj4 W5١DzPۓ aEͬ|r Xȣu].0fhO;R/77| xl |M tE 1 hG 6xKg WD JC:zek~4? Ym]-"/@Az:J }C ; x)X ~V m q_ 8K @  Xs c@o %/d7pۦl _ +=8fR |} ?G ""t uW ` ) 5'dfXB O>X Sr] h>eR_]f fy iW5pQOocWB( Fs0A36-] 1 ٶ7( ]'&}qxUqCe9-f# RH usnkSV&'rzI Vb 7 <}vj %; J%t/uDHVj n[HJL[ nӃ!Xǯ'A"+ 6+y(V%c .7%x!0W1oi;1[W2was5#^i]SB !&*o<I, OfDDyG l@m?f[`%o _{~Y2Po" 1j~ء;xFrT _~/}=fSԽ4"W}-Gi V p~Sxٍ޿o5vw>8H PC V)n Ӄ g  *' }E 9m U w  ^ j^!lt0/7J=l# $ '&? v~g _2 #q M Ӄ @6g3nb-NB36,<sY iK<Lk7v' ar  gXh )3rq#L'$~<& m3-9xCA;TZC=vwm ,][O;ڡ[4 ސPg /O l0!{YG,S Y7Tsm`blSWDe}~z-'~'Ra*3"N(Ѿ+ *]<'{r$t|l ˓PS4"1wDY&n38QBIG.kҜ`h$ 9} *fO p6V, 6n! PsO7Ks!v3Eb*߱=@ 93m \= o' =  ik ^w-Q  #% d l y'?-f*3ϐ%A z$ ֱ'N[/sF\iLa= \ DTk }& n c J‰  hd:>v%,8P @& 7- R "l~9,}.&#gE|cMa$!,n[5`Kw5wlNuqTcqvBO3iJuT O 6+GV+wwuhSe: 6: "~ IxHGe{; e"+<ɍ0s:CG\nnIaB)UXRN"N3'P)-(Ld&МP$V /j0e(@ V)8p/[(JEuJGOQ)_x>]9cUq.M6dY`*<ՂAby  Xr $LNaߑFY1=Dh[ɹ%ise5m>^>J۵gdP+F 먌nۗT#%]uׯ.VFSyS) X0EV8D1"[ApeX)׆^=Մ.TZ+ |`Q7C_ 4NpHh>U~ a ڴݼf (ݵ@[笝UD0_Jg΂︡_&ek[^ ò D~ a "t07 s A_&Ym4Ÿ! ##~Q; !#\  Ӻ RU W : ap Q i ` @ [vYhS<5c6M-)wW59$ Ie\d WO|23OR>b _ %T?Bosd o8 = :A lh &<<"dCV:odmw T$ ˷2 ?wH O&`>Vz mZOsIc=4 S' Ѧӝ 'Jt N "&]BmxL"> ~]O|up ۏ{ " r^K  ٨q y qIi  `X Jp <:% G ʆRtP0r ^ Qp4t2.4Do"raFg!Qzze<yL$2eiAJS  ` q ?*'m&w%II \ >+ <>ڼ0o:/y'?}#-J+PE?:y`#xŴ$^bE}dD8w1_i6Z=s5wXD {V S#DO c'v I$& +} < \ &d^M۲r6:êyS+)bW0=S&TP+# 1$p$[{'&$s=" }/Os?ӾX,ze2&<[ml+Vq:Ǫj(Dr# \&?(]_ <q3ŚeaLŲoHN> ޑ]]C" D{DTnoέ(%S!&*+LQTEp~9*1qyvYڋ]U2 L_Pf&3^psj|iyf?'e~.ه;֢ӆz?It/01|jJl۲9\ڲ1c-Xt־OkO_Rc>9h/bak?<]G5$BrPSV%a,5:[=<駂\'{oP7IHv/FNc5f\M h ] k @i/ t}q"*OO-3KReA9Lxr 'Fwp w A wQ.Z f D PM @ ; ]. oת ;lE2&={:B F Z@{ -cy)y@s XiA?y[u\~hAW K G ` n 6Ge T"  |h @*۷MeHPawZkx+("+/Q2:}N%^$ [V\Z} }ȯ418BE2> K&T( q' 0j SC X \@N$.\O 9 `E(Xo'diWU N!UcUW7f #u=&x{%)# !YOx]w|*^a<37jD(A#.CsN;WbOC;<cL8a\ 4*$e68<MMnPCNnQ' y2!16&H$v@R5=(y؎9ѳL+q6J4%ŴQv<&}o=Wu1xgf65^zYI8QL^(Je!w[{j8fM'/6#K)gڢw ۂAdڤ$2ieo}pYZg<;a^7ܒތb7%7& է T 5Y( ]%  F? e2 n6ʭ*O/nwIg~C   w d  8 Y =D } " M_  Z cNyf)es{z/ѥ2 2 Tg8-o`M.=ZOIekc+liG/>y+W0AZ$P- \` 69   ~ # F ʁm VRD14-rtD(L'8$9~aŴkx ba0z+_G~>{.Huvp ҕEc=wK D u @;/ ,J 1I%L)0 : C>g.F_RvX:x O΅YQA &طU?};>"Fw?%Tc%{h#.4"jS2EQy8d"<>r%. ~Z 2yz1 Rnk%{3&hPh$ c8Vkuظ)C}7PG,!+C{ c7(:1!yبu0m8/Er;t<\P'3J>!{CCpE&QK T$Pl##E 2MW7LS"jnغHS7y< N W _Z H[` 39g,YP t{QBb3Am{Q8 X 4G \ OA i )   q Yˑ z 3 M69 s3/_!W>r7i6cZ d aQ9OE<4yWI1O%n _ h5| <:pJiyn>!{cQ .t : Y5 mV B? ʻ  E*L͞AFz}@l D-g9~a5.) (>Ix~k 1*gXlkrӴr% N̳vĞLa 5O8: q 0~ $`0 #&7|YF) :b ~{4AN,qu|#_Jy:1B%0G+ Or_NlU&!I$Z#}(z"t{ 5u-C B0Qe-F%\#< V3Sf_! o;* F 7 _&HAK |"5 k 9l0q׫UA9<<>sNuR=@$Q }*͓%X #Ni{DDy"Qzl `7"n諉Bm混;}w-f PFث1RnwA>& ܞjݵ ]W]-bܗ}.FкܬހZL'*XR炔i%ä[J! [ɶ01}fuTS^^#,Ha3GEf`_Guݼ;ٟ6D2+ y! -s >" D 3 ՛ ~ h) @u VB2  SpHȷ2ȁ "aZPR   6I B6 ~ > K 5 w? E V98z{I@\|X|  *Xh~b\ az\Ons:ܔ Ul Yb4{ &~u U(DLOvp#l[*E=s  v1$OA8fTNI\_&qCw:iA\=CqU&= / 4 I+ * (J 6A P _ I< ! Tfي 0 )/c E;, 6~ w-b> @ e  å iK] q i 3%J l/uUjM{J7 /;E A?X#Xe:5fgqnn@n13$`y}01z-}֭t.ݴo! M\j)NK-F)a:5.R n2 t]@KXdE;E A(.FXn?~?9_=;A8Og3&/.5JQ!\+\l"<7&Ր ?@@2vdjr}Q q j }~ rpq7m] < ry}w-y~k\M"gU2X6E\c)rB!7T'!g0(som<@52I" y@U$4T߸zAt`Jk/柀VXbw0TZX4_koAyp&ڂؖu+4윊hEd{ í̐`L߬!o t_ޡ *gN>@UbqYJXE3QtK^;S-xz#spZHF:$T`+DYk8 :KN!^6xi?eLIY2l%-ii'L5L @ ȥ i Au K G -  H ;A v  Fd &5n7XM  u>cG ɉȓ 9b /h 64 |,} 9' p "67 50jWE[] lC 8} (jNXW0o`zG<L^rysbtZOu/hp~d_:^NTpi<S4nfRdxk;1tc< Wb YyE:>s a(8H]^hkPQ BaOZ(w/8lX;'QL>E ;:M&fT:Ir- ]2H P,;.VNq%hF #jH [ = ?_H W, YEd H>M0==Ef)eT_].&Zs_{L#J4,7r5tbC*FՒz^#?bf-t@AKS f8H|Hy\k l݆ !| nP    5 {q EP HM)h=aup=%f*V,)$j t~D[Pf9BN>*TWs ft 檪)VKn轌`Q2GAꏿ]B{iUn C݄GzI\*ڌfۖY>SJa%$ڹVwCox/r ߸ybaTA4守0aO]5*7'`3t윰KJHAs;'2   | X Ve i R R J* Y( = ! .ZX UOr f TEL :N WPUt ]: * P? ש Qhy {  7y ҏ^e A s7 j [G.\qL tS7%H  aK>$g&u}_FthZ-S/l=-TxxfOYj* B<b~gM;( fsP%wr ' /OQJLnfG@3n (6C5]WFiQTVL#h0e=KB=_ޭ Bpx#0 Y k$. T1* sb S x J Tn X 3} Q& QEyU+4jvsLt4 3:Ut4R(bIYT5:%X82fk\or%ix<&uCT?> W67.[V#\3 ) l Qm.  Gn"(o$B< e _ >frtZ;^j7p?NLTT d^8/Bc: -hJo/6 \M\3X=Tt.Zs:JQ{6/ߣ7Zq)H(Ʌ%IycG l'/ DSYh/A⪉ kpL㹜挠{m0yXcSEsC8 +K샪f6cgVX5i_\@%B#4>Sbwy='nmf$6z g +dl>IB T2T U x f l 9 ! $] JeK k ~^A | K vV *  = 8| ƌ V @ 5  %C x iBO NA r r P E86WuGIF u  _Wzp$ Sy;$7Ϻ[\3I3D/Ugf]Nd)xkޗS`tvShlJ[FAa0, Hl\F Dt N̢OY9V?*~X1.W38oz4YdxIb}&z Si.gg. ߉ +*j$BYiFbg " /H  7I F Yޜ e8_ xp"8 z$""y*/Ëx?k}dg jt*ct8&(J\Vo*RM+"WB4d5&]I_l \ i j_ 6QF[3z $" ݨ ; U6ԠkYL*T[O. TJ /M<WOiG'GJ1=NHMXat>t Db8 cc"!ޔaJ xmn`<8 '뀒'yVb_/H蛥*PdN/vxHAĖ'nx-7b6l &4``,/ xZ**W8B[ᗀ^LHȻ91H^j 0bF!'j>1!DG]]Xso_,l,ou)qhabP+^-;Ԍ@A>b M 93tԍ 7E nzh{[b(}F\feqLpCdЌ { P 6 1 J X F # )^ $6  ї{ 3m `t CW 6.8 @ I  I }; &  -  { R  *b 15 uA ?i KW J :P?MSBU^cVntx}+պjD}WSں =ϩ_N|h ,^1!v7-InGˠE"yY6 $]q 50 9[@DBPA"' a6Q8ԩzDks~ nV;=WCL ŀ$ al*1:2;Jf y-7 _V ArV t\ 7a9 H}L .7 bŤ(nGCslX,{NS^jd=Nn$+(XJvYDKDYM  pK,uSl W>+K=sLZ=k݁R'.7~B`%'h H1@ n ec 8e{ G u% Mc (v 3W [3 & DlDu@6qE;{dWn; lawTt.3^h?mQ_R* M82-i88~ǦrPZ_G ׶y O2S)^B9V{W`! 6) h Bm tK# iH1C ,٩" l |`(4D"_7n-NYv.Tѓ_[.4}8R~p1Sk. 2V1T2UKY̦+MD~2;[͚+&io#(vu݇>)=kᇑo/h Lb[YS2߷H [,e k H p#A b ̶8 EB! h5gط4 w~3 ^D Z@ )r 6oASe;<Χ XS"O 2!K1FVgYu2g "_Y~by[{~hF4q9$Xw d>͘M=w/N'aˀ SqJVmUa M= i )w L*cAk'bL%[: =.(m4F/ -g'\&U*tL :` YK O= ( 4U 1 { d*|űLƩ }l}_>$Jc63#pL )'8mj^8 k@pY,L2+bk8J?| Vk[ R(]6M`NQ;xOh16 ,j/ t Y1` S##s T ҍ AɹFy=beqzu7f8:d"ˎgՇYC4awxm@_\0h[lM]e6j t7 *CAbkߑy iT^91I>2A 77i`ļؑIB-ތ㦘_56/㤻`6 Dzx r#\Z=`lz=P2O1>! MiY 43#xdRpˣg1k={l ;gY m_bs'>yKL{nUe[XMc/cIo D `c- P  `Q >FXaZvf+prl4Ì Y = iN IN[ '{ ' ~ W ƞ}C  C`< w0 OA( VN X5 j :&~5;ܥ _E1 {QM%q7jߟs=E9'M{&o( B ~Pxa>m%7S; {JJ(9u9 tf!Wh+]gTvH C& xv i'O @|l a  ' >?vͽ=p#Eۧ@?s>z^ @k57#n$^J3 bF ;@' }sX $#p M e& } h[<b`¡sD"2XA%|1j[~?!1j|L`Nf$U:4"*D<)̏v Iif &%q4V9c9Z9 oSzT U _A :Z+-46 +18ì Իh yKWY HCnuE>+m`\/ȧi\xndOqLr)&>˦P,r;u%؆D޶*|`RV_{5aFNR$ 9sL < ۣf|ܿ @wXg+E㓥=^&P Pe9gXΛi"Q2xcS]F]fl2q)jZ4%Z\`:x#*f7 |%g 8U>pX8:.}/pQ$M1sKI ? M eRB ~ h6 %x T DF p #  n T b e F*  \ ɯA ) S& Q,v J !qz`ӳ4dI|ɜ B I (X?_үb4[:=>}L|7"n20IlQQ̸D SN2p!4ɠl[foQLέ;jwRw6|GW<f$ lc N + 0g ><  3 yJ OgԴsAwd|'@D5~Fw}^8 e 7e+0?&\ _i2qI 6 ^f  Zt "R`OY}BN({@)0(RR6ZKwHN+B/dp! -U4f:mTFIўyy|#F4H)O#%N_=i0_bBBa E :b I ~%* @uK+yb?"o ) ?1TTim\nTB0XY,g7x‡)Խ]$ET(8j LI+㎋t~ɳ#e.Lr)h}n{5\K|o2?<˕[ۮCk>ې|ܮpDjjo`~/Lρ9 c*u4@(+!Rk9aZ|m-^Nvr|6H zƂx jo=B4}RaCթ ˪no/_1<[ ^?fm/]( Ԇ I (~JkNEs_w1_ R^# c sk * ;  ŕ H+ g u  $ }d lM \(|N 6, o="yH(\~ux  -!JWE Pb=%=Me)0oۦHbK*7^($2]\&U29UY4}:^^IYlrPWMuU< \T;{ >~;! R -T + m[ 9x f fV 9 I( T^ Zt/F]#o\u) Vja t7+pD<FZ֤g  C:r 5 ,! [Ǐ B biO&@.vLc|mDU5̭IX'vfe'RU *{4ۜv1>%fKeZy!cNT T\u@G * N\j ۞ "c 9WWQ MrHgI:/ Yhj4!>iEn{{AaI@{PȷWv청YWuVO0>丯>Q`L%>G1$.艑] `C2iET<Aܢ0,61>a޲0]gX⼪G+TG 䱯\jTNP x\g_wZ+:xBLq V~G#ePh#y6h9  D9 rt*?D&C63p$Ɛֱo lQC$rX,gv 'iu8# XSĎZ YZ[ g.o @Q EM[F&< x H&b }k8 X Ә {  v & E @ Q 9 !  % | P @ Z % $W ~G GkoJ| * gr }(y&Fe c*` hZu2&v"o#I"~#5TbtY#ys~c\g(8=[fNsX QԠj rL $A O5 4 2 > 8 F7  vE c mױ<TGU' C,o 2Ml ׅDJ+aSD?FVUmA sVr %YAO`6jr'>]*sM;@DZc] LfR:+s  ÊSd?1kVt@z1lB dS 5|zME,T$ ? ! d`K oU~ \g) ۋ crEzTC>geT PJ}2p[=oU!S,noxQӑy'f$A#A>Xߦ Bo;&$hkg\& Sl-۰H+:*bᶇTuင=g^Ei0 㚣9kaO`26hΔZy8-/+,] ?fp(O>tC$Y_}+smo/ٴBZCb$so7Y7\u1g \|Y @KS} jg ]E ? c @]6zBn VM  ) 7+ n JҮ I5^ ~~ qR ]  P Ru E ^ ! c ɞϤ S u :e uhWh ,' w;}q\Qn4+oo ZiK{yl^Hg A%ǫm 9JfL=AHIE`- # Y07eFum % 2%w DK )N cU `IO ? 0 A" T {Zԉ { B/AoD@SY> 0T"IBeWMwwOytH g)YtХ#4q"%0@ OXko]N M4uF=^SfaT!jk!?`:JރL<%ʴ/ty@]oݸL!4&U@k_FD]pОx:,B?揭EHD!m3E58 D{Ec:)faT@;D{ -݊mܯor 2:?WF;P9మ|?g6N-/8{-~3; d9+c}x/[t\f*u~yyda1g,8XPnĪTЂn ! 7δ* ԹS \"t?  3oe m%?]ӡ4iR | aLmr 2 L c| |,  OB`}o3 D > C m Q l r ` ^e * % J[j H>^   Cc 2% R V0  uGAu)wp ӱqf:m?Bf^pV)$DD46IygY'X*,i EAc cjf Ў  ua vf < F2] M 5p8 [K й_  o. ) %q  Qkm=&GhkUevgh>\vClkY c=?:<E0t/WB ̟<@t3qQ&Q٩eUi ~^dMW8%#- HO ; ns %0-Ne(m`bc~  r ۻ I)Cz3e1= _d S96pbQ<=\ZD+e2[ Y \,Y Vhy+\W *BF"lS}|.شR!mjD{f@u%mPg`>dXuiPv HHh>e 7%Y_6jd(z;nNn9(^⛜≖ZY~QZ%H^v4`%fu&]cuYeRFp0m qxqH(:ʑHqRhY4 C8]Knd'D-Y,mLWlC>EIY 7 [lޜ+IwXFGd- ̩ O #ϝ!JX&,D_ [ L \.P[  S:   ~{ <u.8<TtI  ; M ;h k  ܦ . Yf D 2 BM l b w^ E _\ ݬ N +~ Bg J; 9jb 9 BT>P  m>Q}DUN5fl_g+|aZB6 g =^Y  ! jE9 | K ~ v: iF 6i\ B Zx% Z  Xy f; y" 1  % DӬEWb+Z3DGXOGK- qa^|Tsv4Mq6((b#+>_uqz +"oǴ<3%!D> |1B{d8-qdMQs\ 28 ?" { 0egϴy" 3 ̽&P cd$1'wW<^uLx][x:$,e{ A Z%=^l%3U;螄$Mijuw4껏D逼(Q`f|6_ߦ}%FᇷCZ}4pJ`=qAU( h$` EyHWb~-ܸ(o(9 6TҊ"Amg@- fdbIXI0AZ{DWnBG_ =”%ԒLE.h D9fydYu!|d/ {nt3yczv }4L6q3 /1_ 7xK0 lI_$j:GV ' : I0a C@ . <.N zp D ZIg#WdG \2 \8 z{ X7 < E u; y ,Z  v@1  r^ d>  fy ?U!= . | 2E fv  T X Y = iF T [/ .nx7Pc߄]& +~]=lFaܲ |} %'U  t'~ y M1 z YP Ŵ 1(M  ?&4 | q ٳ8 p ?   Oi zHW gE $lO2OTl8`#TF99AY|8A@BJEص uv-9 L3M/M]5b=R/lg[G]be_ Xwkx*B6U=v$Iv8 wѓ v ev$ AIWo  ӏnnT84!4D7!1cj.[(m{WJ+q"pwiJ I1~Z=et]O!:?`Tp跘:ۙ_8[7uRYM:(K&3CGDVqu:C(@;jnhfRn I5}uR9}f| ۖ9L^Q5U4Sf,1 f??o+Ev ;[@T3],_W{W]/jrH~oSr.|HO(&@^da[ΈˋC5]a27&:Rk 7eH.L {#r +jQ*TJ>6  4o A$K DBdE ;<N bi jߑ  Fe q  &~Qb[IPJjT  * qj!2 C s[)S zp0:bոdCDj$ = l9   l {$ c q f r 1O>W I8 N8* ^ Bc G1a`  Ko~ % Dl g 7  ( lP A 3o"" i}8 ]Z T% $" Gc9 #8 `i Y yR J @ dh R 0ް g# k tTҢ͟d.(,w{q2NJs Fb"#(L*l[H 9zL 2" 1H"yTi1(|)wiaUGyt=^ݗB Wmm n 5DRyA T>v N^ 2^LD;ָ}X=T"}QCQ*w%J8GJbcT|9Jo5CiwL_Xn惪8,V'QsY,K)XE&gr,ej࿄Vy0nq|%O)7{U*ӤY.1eC8ܥnW۲1ωAxDy <Ҍ!.6i(]$#VNgdl2m)5Y*Ǫug!aBt|N5H4'=N;@qG2(9e=@)CaYjkHzaD|:rLA;>Q$LO 3c/ N.z[+6+T'Տ|^f2fL=iw $Sk t3J. K 3!Li!3! 5 WT wOc 5 [  },M r  MneD=2GXp  BT 78 %d !& Vr>>3?`SPk>]OԦ=g%Z.  I v Fy e ?sK t1 ]< Ie D *>j U! ܫ 1,; gւ !e  y Y ? H _ z= #ً Af oi # r :_ '@' /O C  ?J (  b n ) s ' :j # #y 55Kj&Iu|v+,zPP9g,jW.~Bnyb8P@%\Zp5gs[~(pYy<q b9bR*8} a/S9!:t gD 5D > . XH3.!~ J]#  +h Eς \,6WUi'CS?q m2({ Kl_C 3; Z % [e 0(Dg^ߢ(x}>JHw Vi<X`A'6jLlpKgrr ; a aj t< ?v, /G cj   ϶\O |  5vl ) VY yQj FD! ~ E ~ z| d{c ^w H Y  8Y Vj N a| | tr w w oA  ) $1 ]d G7*  %b P& 7s4~,I~c|PuOGN:an.^[F$RVyJʨo>8 Dx1 Tl`Y)4vi$)# 9n{   s .!q h' (  C( 4/Nbl*1%gt+\^QXF-K ("TVZb|Rrr"Ε d>! QC 溢e|-f`bl ;Ù(˥]@_ϤG|t"qW82MjtAqZ[d$A2 v:-ߌ/;޼C|nQ_x&zKIܠh2 PMVTyuK;CvT~~&ZTgx)Ol,3q̍I-um{sFsd;ptzMQ@&Pn 7LpM)'FwZ _!&vP6XKuyBXiC T |<=/N 0vl2 5/ Ov zafBC7Em:=}- !P ٜW sf X] v<c:552ȿD,!νTzr /d) hV  V G -M9S1kdZt7/Yrn 80yJGER6y 2   ة = k ~ {R $Uy Mbc f  AC7 E3l 6=D -% 'p  n('B jb G 9 ׍ = L [ 8 % h  4 u w aa P #c 7e m A )   [o nw| s ]2 T6$8?u g?ʟ9&6A@ 8,'tȖ%c_uB.|vW z\KTL FQR"g!+ -'A _r$4BL)As w hJ;0x&&T͸KMqNbϢLvv}0E_m;Y}F灹eM9YkY(UCnxTl(&H}.Qrg%._q'b|z=W { \j!JEP HᘒRd$YL^v=6'P3-AGRZO;Dy§Zv D c%wPn#q|b-IW 3IW 5R/vJ9*CX HR/ #c} bΎߒ.srsv #;oG\ink .0v" H#t.ŋk4"1` G ߪ v #`#g\A=B@WtC<Y Ie q Hu v<sxscyV;WIrpqی;8 [ U d?*#X˗R=_>Ozz5^>>Y>+uCsN_} V_ړ-t ژ | Be ; Tw L  # f @: g   V{H 2 WsK *(  0B { 0v p i$ H R 9 c p P + { w  F [ U M Wd  h 8# t # %#9 ʾ= o  s Jc <;̊ j(D^gI %T}GjYWkM&JFa{w/_N)>qda/v@+ofg/_-#_ `H}}z 84 *`U~;K  "1q0?qr'D-2bp0HҹW!ky ZE/4_p, O`r26gxw >XR4O|+a% uNNECW=ōOgvO1\uT]tP%eNh%#t.{U|n.[yw X@3;C9]7PXȤd`" { + P-O> X=jxJm _' 63 Pptb^ )CdN@W6 &x3 2` G> r  dru11}nNXrZKH#.hh  8 ‰/dU#`VO!]csvȜnn ;l][٭  I:}[?9qC4izD ܴ &H i h~<  { +  BQ| ~( A o ' 6 ɼl } r s?Q r[ o#  3 P C G  % t - I * R L " ' ( Td<  T ynd F    * s O .jP"Eor)e'qt7)0f@yMuw= ך/UH  t $  M p z 1 p )  w > 6 J f N kv (H PD FU ϸx qU \s }>  kC Em 4 G\%:`EUQ v48f!TAw y\[B[Tx,p*jb'zEC(cL/I7E, & sC |tP e?vl?V,]\x#l?a`F$<23jSt\j-$>f|f t*)RƓF+G'?*qB2zR4[]4TF&NQ#'0XI)}-䘸-Ъ[ $JR><0_5}ucΚCJSC\j: - 7OeJ[ 6oRG;kA7$6J_<Di=NuO.fbl>NJ-jaxt  wC;H 9 `x @ 1cR9;XcL!1 VKH^raQ%ZT[/ 19vIyTY.O'vp|]E[unI Vr 8};AD  i=Fm9Z,>ݏ߼T}\42 Ʋ\RSz{=06H%YeT4[$OH$ /2 P;  45 *nR ( yswQtw9p H wOW ~* ޔ  > ? w \ M~ D # L 6 . 6 q E 0IOe 5 Q , Ji I, gu  @r tz Kv^ / 0 j h TEP #" /Us %.X ~[y na,S$C*|,8o]krPchq'57sheұ$KT ϶ H -G?T P3n@mP/R5o  :KeD [y7]cxI![iM1 L Blx ,u.V Da4)=X}bI dBg v W湘Ad'XfYD{'!` ԉ{/C .{LG"J*xF jve|Bb ߳H,-k=~U$mky #)b$WRw6Ԉf)r[ yP' P:f{7/j0%JAay~m3$glKeWF*w؃$~G 8! b r kv J oeE J?=G)cg3fVB&l]WÏc@R\=T\RP|v#7%Z\Ka_\_wNy`2ZLĽ4$ ObB4|Z]O!_\LUp#T^`tC:eq G*h,k't&0IHL3/; ,d | Ya ?# =5+K%=f9_c}vji]  1 ] v k թ .^ q F : A T " F D 6 D. e rE" P3b [ |! Ev 4_ @  , =\ RR f 0 n+z  P0H#vhv9b=Y%|)_0; r'xlаf`w Z 1>e%-h?j @1 ]Qb}"g&aCgT ^'n,v-41ApTsq_hp@>cQ&w%5%0(왎[i΋24~C] QQ3Vw^VKwBQsQ)s*ƪR]" xmsuQ튈uEml1먰oNoimEB!\5 营5p{dUN;MUr `NxGaRBu3}mۥ'z18gz13hIJj[Eʧ<(W۞D! CV)$k6SX1|Xjz?cx nT }X ' = i)/6ս/>{#`r._4 )MKf>PVTurjA2fU%gm|۽tF GulaPNC|{9sGxee,`:2]fpIc'Uwa ɕ`~[|#\EI=ƣ%Ea3LdVy+ \)O:^wPQR1kGay}߹%=]de!O poyT|ap.Z3wp*USmrSezQ`r& 3 a -: N u y D 8 m  j n ~   ' }~Psy  .Q Ef) y   c UK \ ;V ; N W   ̻E *% M  4k 8g %< 5 &  ) p2 N !  Կ> t 0* ) U /&| 5I8h90ЌչwwW3@j#S[M~U_zuزŕ[^p^/V0DeR,YE v[.E@pЏt?BJ}0L/vIdbA 3_o?siZqTonOwyhyc제퉀Mē)}z=O>ՓxOp?kbXjH;Q7`JF(Z`߱z 5\i2=&YwaJ"v%\S%^cW WĥdGv%Kc:,@k0&\%&tn[I%ykZVt+= $q-%={8W\0&!au9< *C z>s 2U_b׌Z}h}XSf9#|}'jlۀZMGK%TFZV'4*T[lYD[Xs&t5B uMŸ4Ãat/_t[r| =U΂1ܕiܳY9\G.$E|v},`_M]"pO_DZW !Nb˅!TwKWz):IJG3Z–~miaJFvZ;  }bu _ VKC"Q <+c mh = " f l 8  $  s B So f e]|\1!ixI i 5  &  K .  ` & -2 _ s  S 5t <( 0 9&  ! 8   ` W v m N ՘  k X2 rϿiW:Ϧdh$&"Sn`+(f,-]`{ǢЎ\-jb'>zfXaL#[QD#'~)55V^Au3`GXbBCeaDo$vZ8I\_OdLL\vCY&+l7DHWP3.lg+>^H;4  qf("tfzXQ(wkc2fgL_?3-1Vʺ{zfk \Iz MdJ-7O %8wX7]5`n#ALUFt0nu\S4f+2Pb ZOt[T&#p^- | g 8  s = { T + =*-RgҙN YA  Ϛ bQ 9[ ن 1 m ' >; % ]   o 6x h/ ' ;" Y *  l a d m ,F '> L zr  7b   T h  .  gS  T K] A BaHٲCe4BzCN@@ȍZ2 b&4#xh%DZ"/PW;9~L%XKg6*OygZ3T/W( Hda\w*2L҄]=Ic\d9t.u/Y@EMőۺ[?bjT(gc֐%Vptwc=:8[qRϭnZBL^2c`eX?9{+aQ=2yC-=\XW scCWk^\%suHf3oKUd]{Jj@|;B3‘Sh:e][5`!@+t'']ng$iE2Ew[v!xy\̻K( .PI~2̯x18U|ABlcK4rHF,Ngzw;V/ZpB mR~Sv EZRyj |(=SD`:7д1>g:xo։(J.1zA;C688UBdroS tCD&N% 7l"O:`UDfxM9P+ψj`iEw\)s =jD)iH4/t@7-` M  l R 1e s)  5 o ӻ 28qx<5kn` ~ , E & ͢   p k ]`  U < x ^ b x ] P @ % V 5 E JD \ ; " \cp ou Kd vj Q  ٳ Y ] q8(ђdR֠sX~T|K#7UBEQf> |w Q4Y_Zi\ faS ,aK7I;V\ DOA9'`X.T5sTR1Xגt ~ Eī@2 qcBQg씛T_ f";< X\*]7J7m) 46}ϠY% :O dT[K#MBR1SscR[|{N- MLLt_NC[li0ZBťڛN6lQJ>wGK)fx^Y:OT+`o m̓/cl2Tl,@Qg $vl1 Z-Ccvon K@+pR5.pKB: :pGC +ivK,3gJYnu 8 E)^InŹZz k6<vg;E},N`~\Tjn|FZGR)(&sv>D*gWs"$`q!2-3&n̽U(Dq!aڨfFBl ,J*x1an3\i&,;}FrRtBe`* c 4 - ,  /J C % 0 / 1~ a^ / /k #Q ` VD   3 ͑ " '/ ` v L : ~ ;=  @ [    ft n ԂC @/ ۡ s&Ȱ Ix b< &l y l@ +- J|P 4)!RysaR%*`\8Z: . vW%ym ub9^6:jN> ڑf˓xL:o |}OǨdyT*hS}! >w.3#$4MJtPrj!Dzy q'y_;pZQ1NY|%&a杖ˠ?!/F ;yH  pWpӷyynG2YFvP* 6',fO!~|'!P slR Sv XLr/7$+L5:=_cB/0ۄ7g$!=4{S*cqJx`+~eMs0|66P I jNX  P4\&<KRvd@/ϥ) d H l# ^ ̕ 4 Va W Rp  MF #P  ։ O I e h l  M -&J O [8 ? ?I k'~Q lz  ^ 6Y o5 ob * g!)N[ ]|iz-> {yQ  k '@ڨ<\P~iB&W5݃8^Ok\&Ҕ%AM2Xb!66MNdirkX)LjEP72Rl[c"bc^zJ2/HaK^?kE;^n{[!IZO|6f =ia` @ruG~7J'}%Md\pKR_ϔz:1l۹{f?Ua]w]o2 XkB 8TDlMBek $+Bz`UuB׹$> f `Z* {:I E\ O &wEmJX</duU6(37;In,$4T yyshTDL` BQkyy$JK jiM(G:y-2Juxzm%dUCB,D4C/x ~6*["&m?+k`Gw+o5MKe0_!k@)*hmvouv9c8cQc*)) bY]isrc.!mYQzen2uK_LuRΣe b <  X  = b V! t F w k Ej \5 sw " <  S$ 1'  p  ]`'  DJE g 0 -7 ~X (a Y gO  P ?*ޮ1xLvEe ZT p p nSe%n\M6RG15]o[0Eڏnm;O:H:V8p>pV-/Ls8;88VmQ(c5il)HBW){ʐYg!~8O>ͥspr\.pU>^cHO!1i0B> EsJtE(> .G3љ *NǢ? f50)1w9TE?mηę%ofBOh[1S3piP\-E̠~bZm1KjqAVW)a"R{ @aU#a/+{.B*@9tbK#.SCNl:5nCX%7 dIl7uSOJ2 qK_/RR۽;L)dhxQ)ZPݻ-pnw&=vӲtA}V>_)HwBb*w 6pUo~QDnI{&*gwȼ `6,6x6ݽL)y{@focl^N;s_.PЕ.UjO S  .m Ƀ pU  w ( c # ! /  L  ,< Kg. ե* cP @ MbQ @  ; TN  t* i >@ 6 ٧ '  ܏0 WaA-wb g ~ f ^bQ5 f}A _& tw9R5cTL?[Fz0fUt-SgfH|k@3M)#R:Ut,Z@ewgxRLC%-sP-^ o'yG7CA"C̱~bghNwhCﮓڃ#-3>о)ŭcѹ)[^ZnP4(x켟 1x˽h&K*iəvskM+TH6/l.?F7c{b_v\6bd6zpXFƽ z3%"et`FaC /bn,1y-h=EypN\ycDo.NWXd4NWkn /9Ol @/]0]5** W N!HFCY rPr!F\ LNOBojI[S %=O)wf#$g&` Qe`jTK2SjrZZ>FL^h  ^  ~ |  T| X p ) Ǿ ^@ V [2  |s Mr s[ f   eJ > e W @& m) ׻\ aA ]ǭ w !<  ! yS { T3  Է{y SL IKF @"n1 gt"u@7.zF7 ۯ/uXS4kqq' %3an -8oLsr.(&#Tp "kLJ̐7Cc |x`7,rZ|n4?Bg#(6jق̣P+ OnGbF0LZvi}`D5 VE _;[.BcMI4u< 6W,]n^{6tv)f+ q Rϊ 20  ߬ $Bx  MT 1 B# L U  %; sq 3=j N x  tH |jz c ݟ g (S#% Uj JIe Gb2):t>l^ \N1";7}}7U6Yx@Xgw/nE syܰ]A [fW[/J]>&o}."smRho]q`[@pIeHL!vfG}^͂ $+ w#YES6CH<`{GYG: <]&4j?n G|\O:q{Mog >_ps`7jz~#B]YZnl_oR fʨQBs6e]\7-M 7#$Iage(zC;5=Z=l20NTBkUf0/9ezNxl C7ȹmlr׋ 8" XPqtفpŊ~7eiMI$v![jE}8IEwϓ0%R%/9My0,p"bM^0S>D bT%a8hj ,Ep=b@3܃)d}z/ =pUTC~Ez\aCD\ ߟ NN' fͩRhsW1^ts<s[-׭-_QAO+ISaG/NHD& mWA  k ;8o  _ zM nBM`#.N.iEP++RRͫ E 1Xu >  UO . *"  b a @  is3  R  }[} 8  S% ?  ~ 6]hN(DgE~4Le!,8 V-  D(^ir9cMCCumKl|V^7C&[S#L=iө~cM*F[J zx !!*Vlvc \7<^`tbZHhx0>=Z*_j,?W~Wpf066"]&h=!MogY[pO*al qR`*\v_JN~nI%ow! #f6m\X~V_M)U.w7[/0 ]`%@7FPTFDR]<)Dj0IY),~ml\t  EvXժ"pW1{Ź_SM8 _!W"z O y@][BOyGZc-b>e(0vy],U}z ZWfEWx&&N9-E#z)nӆy"t2? (~-?Vq~66>#Č;?7* P| |T  X8 `?%DH s^<i@C3}[$ smpVXLq1T)?jMODod5ݮ*%s h  S  < ) T&*lO%k", /gXm>$& O-} [+ cQ u"" `! 6%/ %pT 7 ޾w ET  e9F x/ m 0 : y  Y ݴ q G F|`7*Ot+A:IWqӲy?qD+QB[X@]irbVY_~5?G ܕ&l{ނb<Df/ w'$@W)  N^T:WxoAu/\PWa"#"l~[>bD-KBk6cW.[-*M+k'MSv~opۥct˯" v0 9 cpNyрK8Y hN 4U&@Xyr! 95MOvp,\9W(g!ĕEmB/_*)) BߎP3[#5A {:N 7CSkHp=oW3MltP\:IVnE#3<)ܛ,>3]rKEl }(ou_2CCr)$e +jS9oY?'aTR9 6*x ؈$7{<c>í<Lh&dHHkY F3WY:/(=nr1:oO^|ccfv]2#Ȟ\-^ڜx&/0VteJP"bd;Y"S9Uߕ B8"v:qa-o=?Q1 5߹Z S_~<ӂ '# S ;{ cid |w[#oI_z~e)]L:Xy !L>Y:!#ڕ3ޣ;%9 %`   6ial Ew[;Cy1C&*}LBWhCʤS̩  &%&TKݗ6a-.  *ͺ ] \- V%4 JQ`1%82wr$>Pkqvտjڶ. me*yUM$mMeBneT:B$ACwΝӄv0F ,ZA sP _T +O 0  l!~bG%3>iP/ FR͈vEp|wo:3o\HQ":M:tD\ i?.}q3] QH\e@&%\ eY 7V:Kayjl c(yD@m$ۄ-WPG,^V*y~^( ^sȡq/xVN2.g.CN [_izs Fls23n4Q %PU8N1#iBUK nGb9N;7Pv9S.}}_TDF!5M&7Ot*Xy[E \^C;&Ix|FSMb~V)܄Ӌ40uUw#~'{CrjtuE|:؜Pd&muTaRm`}E\ yR֯p~  l`Xρh"i!EO UQT.ӆ1rWzP^;6fY E, = or e TO;5WzVORy1=n6fy-JtvI0"rϼVS>n\2yza%w~  S, k X 6O@VX5 eB@7R .LAt.E&hZ$T(V,w{_.<RQ-k)la  H/Nbw$CR@l!f-Z#{0ŝ=/t I=L?PwRum=&nK&VqaLV >7%D*8Rw cci9&x~dcd? -2s/ջv$6WZH]?OO#W4'DSFw=<xa~$i!vzJ2"-Uv0WclXtl5fK J͛$Sj>2NaB*_~1MP>0̓\IRso?{&F.lV%'qJ j[|C7aC5lH4ARPAq%a `BhH fJrgIDq=f4f[6Yy60K {hr$]^WOc9&()s?{/ƪ7YQu?1n*3ܰ~ cCdR XU}8bQlƢ$#+4 2M|Mɒ)#uHt˞}|1ɀ <J*&U#cdszJ/Zr0`B͆u( A6 5|n g /&P } g 62B0rs-Ԥk:5`!/:Be9*Ll|I[UhW2 p3 Qj͹  7 0U S&1Bx0 ~~lX0_1/]40WLRFz h L9+oScy|meWW;j!zߎMUBY=s=q.yjݻgdZruvY w|,ζ%Vh&<zX)53wv'{VWLa$<M&Q9-\n)cl_(\g5p8 @|upRXp(M<؃mdLȔ^.ds |r:L-I6\pZ r_jHty qP Dw@]CT '7=*Yȑe9*'ix+nd$,#'HBB({ t5$fg( ~YKOqGo8w6?tow[}Y0 /-O}_ 0v:oVo#4 2N? M9c&zn\k8 !$C͓+p_$ ̸f$t6s1'ЦNLMb?^"555, څyEJ/.SWOзWvi D?,'X2fAUoCIoK' ~m F. 4:;Gn( FfH  F , rE «b b'lEJot 84@@ňM"j<:L#ISM6iʘV4Mb +z9h\ c#R +T f@ g/w (mu g0_#5>|3[߮C!_s6hC J,}S d@;(3-, YnDi>@$pMl(N"`={uy nюug/$c2!F$l:Uh.NL_WpE/d]$KttPam>N̕wuQB5zlDMVK^!,KjuVH }C[dI=&W&E2<;2WC9~jWYߺJSI{/*nDe}VSlTp\U< LCRF_S/w'{tA}MV%w}s!7wi3ICO jFKg5Ӳ'FC9>Rf3b0'[`kQ<p#C;sW^u-"y !RDm\ߚH# Bx1jP2n[ I# U ^ޣdRO56e< @JՌ^Q&e?>6}(>|`OjyYoJKpߛ1,sz'rvr"] [MКbB<|3D7DMfo -&ю ,MOw_=|_Ua%¹j*&|,5O!0iS|v| h )^ r  5Bi [ =f<O@\ }o[kB|LM3s*- b Wo0`F#jAYOR ( kj c NZa -( B5e=hRrc|UII)|V47c`!{Bfnq{w/zB`o,DH<dWz]l~WPi  ׹/ ް_W{tK^F7RaO%]P{[tfkfcm@si{RO.1@sz`znm>J o\ݿD4i,&8$K\P%+?)=ݑ. d17AU,tSnGDY:?CʘtRx6_o`(u\?`}/e+)8YE$s]@!sRnL NrA{Q|hǘJVvl&f@MO@uz57E$+&^WCW?|1_v~PT;VaL!Kdop6}w G9I \IY&r_tf~{N$VYp[15#x'fwPėIsH#Y5e7p%ۄO[(My.iZEfhr$W VvBT`Jt,sW%?=yhv}v\G&NmN }wri'=Rբ:\v-M ;Xۥ6JSc2  P. 8Q9ZШ^%.!:O&&Г S|' vHV "f}F x:re1X]rXr'˰=hyx ^ g/9wKpE+ol[ %9divK(bYq/ |g/Tsy\&J&xőRL Y,zJH )4in8pak~LVV$zْU=,\\q,VzF\Q#iw*c^.*sH*VvDkE!&D~fw#Ea<sL!(kK nykD0 ؟ r~H | D S  ؗ A ڣ0 x Th<%.Nͼ@ &,KA 6  ? B^JTL8eqC xn ` n H k)nA`t +^@|+6giYNKq@IG>l p !e >'g !2$7/Eܥ n40~@ؠɝ/d>0T& G4(DWnrآ6Sj_5k@Rt%!NT 3Hq3dJ! ! 4-O?&n@o\BXˤ2].:UKwަ/FlFXP0ޣC&@WR4T}a@/h//s]o,eXDZz,RH,B-qNiAP]t['P4z"6Zc&`!έcG=4 3yc,SQ/Z6@fL%?1&u K[&qpgrPpWv`.r[|jZ"Z kXr$y09-ȸXuTv_@]w©_d'K 4 ,]VYp>>QuNO=H_T^FyXA&M+Q*'$XdS(%':bVp4Sy_B8 !  @ŊZ Yp!~t3[a|OMbTrBLc`MIdReJ H J%U 9d f  Q^ k   G´f,$Z2W1,yCi=   @3 -' !ҽL OAu/T3.E]/:oN  r/ 2  ]FJmxr"33><@,O#p5ys\z#rr1>c B_W1Q 8,siBEFE[@&!r(EQk93k]bV+5[vOHbH@Fb!O_`>tGD]|8 SCz5LG\h2nrC~o,}}Pjj7v#P ۡ0nP-/:*4L\oQ4'+yUĐHB3N/zyLמ$rqFoTG (2n\oJE ZZ=TP;3 ?IXK4DI~wS@E9FciuB PR7 /R  R_B b `v E%  qa ~OOG(A&ƣG:E8Sm k EP|f3"T'eskVe|3!j^ T2:>w  E!L }X/\aV= qy~*#@5$Ӳ21>Z#^fyT8&'O )* XbOq;eAy3oZ,)oGrMV,:j]%Vl D" BXv;pĕ/lFZ? ?fMt=32GZ)Yg M|ֺ </}BRg}DNy+B:ZJ ~'C%Db6XIUe Jbmf22$ b\#n-~soX(U*\-r z)5mq>%o1}*m[@4xab?Oyhw7;J[9< (6w}u6Ap^ׁ67Ezk/5V3\BnMS*Y!ݲ".<xul \vDصNJoKb @{]_[J$6><|b}QJl6Vn2 =oKo T|!nilD9#p&PzU c8/Xj"/Y.$Mk;88P5iJ]BJz a۾ <ː ԕl  g x@ ` ! N7Z (:d ʻVJePlvN*ߨtfY^uwo-oTRHJ)@!I " m2,Be:9}XZ;{X+ S"j yC' le /,cNOT[>q^P(yJo+0p8{JԼH R,p,qK$!5Vtp]~SceYP x&o6DR*:]z?7q >d\SPpOf^:"c;,|j[ORϫڙC(y'2  E&&o"v?0jbe{&@L[9hqac6S&x!SQw͊bQ!Ssyth[L{&GA4  f%Z +V71bt#_)j@lw&U{B<9mOkONY(F~I'odPbSuXlUbyK(72$"8MAs4RKeSAb} lG-UxT,P}^"&œxZ1׫wr 8C@ 'm @;;K9O`3'g$Z JGr eˏ B d  >%C &W `~Z>OlN;gzjjb-U=/:hL6*u=&@nz<]* M)y3pL A_%{X/`21f zKNp؋Fn21Ly pN&PjUpmɜFʀeL3`:}RDXC5xjDR Ji*)e X#Rt` t=RTq]c6{jd/QNBFX j$l J2.=uEW(Hk1rRG#?{Q:N;("KiDR+ |V9/:NiE}bRQ!3}TY{~!]D(4vCVN%WʸX.fBOaL|dwXLD@C + rқx$xhL<%9:8%P>J9ky9AeH`_76k3/U +YMlVh8Gplm=T``{ټX {Z=C#N/ecIЊ'T^2ۆ[cVxaNFM%c+!*m^S :kD:cAPya=̐vQz{r+_|$~/ uPy1`i9|*:Z-cl^)y@%yZYa!'=K@ X\"A36tJ9_58mP{~MO" ,AoV $ 6} W -ؕ Z 'G&_ o$Rl: aN|vz7xYSDY.{$i1f=& |X[BgќI I|O)jW_9Z484:{#z@ |rk~pr+EJ" Zz'q©=lݍ asAJ*W=5+JOr5Bb6%X݀`5TB>tID+V>'{$/5rTDo?$J$55i$@T8}sn_$CkY6u72Q)JK<32a&\ft$9^ &u-t]zzz#,Q"/rEdmgCoTPz1|LY+uHo2Eelc jښc׋zѤ@_@IR||]-MDn5$hc\[RխtrGd33>i sc)]#eUX(N+ѻD'y=fk10!)w5zzB1A ?6jūp9hX2l~)C^9vORf %|Vf{&pFYZ}9l$a`+{sȯ kEm* ymPPE\@@J(5+/|GmX<l 8wt -{oz+u*l?'3"er&I#EeGr\xVV > ] % ]  ؟f~4:?'(d &Zejhz 0+w xaÆ cSm`/~_ݾ1&1fC?skwx>9<%oOAY5A}[CnstTHc:(V- /O®wk\@W]v*]4fYE&en؏L q3!\vl<ɩ&{D+z2b'qYEZ$0b"X)I%iTٌE# cy94 fA = ) {g`y`_"H0glxn|WY| ..mSq@ǽg3Rz#BR[t)7T5i DQ{3:>;HC28pZ^~(x%,_Z;j(""io[F 8wr~jA-"2b BCr0y}~)UPv-T{q-6^7H &bYmX}q 4Y hzz hcJ+y@v@~&$ $?r1uV nA5dYgN% n(ۉ~dcev {8+v.>)-A{{nO91WouKK)., Рf<*X7c mmb Gq<tNq?y,uKq7.i5 Θo=pmZ-r 'UvV3_ e ( 3n- F T T \iޜ{avZzj<q]4 h Q51qm_.??%GǚCKan.Vv.;h26ڄ="GI U3-ifA-e(At&0'p[#:0d!LF_a1F-Q*C7C ByOS-e t5T3(^SSS0k<&3M'g#2>FSn5OclS]0?9YKz؀(BYV` 4y[~/aA҃*Io[ Ej|!ض_rODK}0k$#SFoſDdyqPCOo ٶ<o' <v*?lLVz9m$ 4VI4;2ie!sq^ր}YBl&w!m-mL٥ u pKдYbPBYd*!ǫdC/)@^_u'@G@ |" | ,l$|8#)Ǚ}CҧKź%VYy q xs7#l˼d~| 'A^ .XAW}%zD{rҸ16kyop`]4jo 0eNQA1L.bY}b'KuVۈTse)}Й2!b*aw$f=Av%/7U&IZep,LwCy; Hl8lBWhwzN1"X}V}7E,ܩsQ*zOi@ 5#p(r [-.)/,Z4yb~Zd?# Riρ5[!s8x+ +~Ed31]Êch,E+%Z7SL/&zXL9۶ѝAtuA:|PI)n |@=i(MtNjIrL[0qarL!#%6iUSIE(ZGC&&xf6'XO.9h3~.*wf>YY'bsM!GFo.R %oV LCnk7l!}wfW: zlVR6Od}920;[pXaq[jP»}2Q(U !o æ  jb(Ho׉<X@SVa0:[vZ`(/þأED[>rfC9b'aM2٢0\A^k=|`SF.S d.VDtsÙT\c!L/fp9;c[ Vم_ x;םMjQטbD< xp,= L_G sZd"L$nQ#1=$ɫ*T [Yg`,3o`m{0y$/Q^Npb0ePRȱ)ooKlnuKq=eKxK=&]962>>,L%f@!xV ZP@EHr6eSbp8"CCVH0nOS6ad'el3bEI>:܈cI JU!TJx@MHѬmf]bh-]$Qb\V.s3T >{$)v69^r 3* a- 8@ E.1t#!czQDzCtb"D26T +z'a $ =b̼ .B#]|0!6rxrbVXq#Xŷ_/>M{R[P)O6J[njN>=a1X+[v-Y.'4tu-  #0hy?2ayoJ1#Kqk/YhdtF';5VPW E(Mq}PyjE SuBxkxBd_ ̆>oC 3&,O8CT\(;W9Q>Hh9uN؅<Enj@e J'B}r0b;*%Fx |-d).x4%$_@ yO!u'WmyC (v}q;b:hWKKdme`YN!&XQ$u(dL}EK`:u/#}'A+GpΦw; UDBIό|ׂaI:Oͬl!~,JP45Kםw4<]o)@~#=bLhg HlmȾ. [emG32{W)zl:Tj m2n&~bfm(M31*| mh+-`SoxtlGX78&- i{g]i;S! l=-U<)2 nD_bz l }j`xdQ6/mY'7G<#бqҭ$#AL>=7ݶ(a zg868p_in>$mN\õq3~h-/:J.q\gnrx;+q,)E* vB]r UZ*Ar3 %1OA="yfC"J\~)R 1il_[mA V5;rU?Rla,&7 OP%s Mvz G_6E>ikpٱ# / 8w-e/@JCgD;9ipEryK%({^\!OJ2V+Mw2T)mZh"Ifi2+TVͭHG-7 }K4R {KM_OM?#$NڊrҼsS", ~ l;n}rOY!">y0|qH~Cq"FzkdKl E:#>tTfnhv[Qyu~GЙrNQmRJSQu t)BH_iN=|Ll#2-H@@1Z_SiCX?!>2|B  CXfc ѮJ F@yS),?A%Zb@OJ:,G*=]TUPZr9`2\ho=)`~ei5cc+3Yw{:bC38|PU.u 7RXK8DhQr|[s@<ӊ(%؆|]N#4t _rC=y^s [C*!ʽm<m3~ߊP>3:nqQ +'UZfo .C $ "u/JY+f,:]1{6EcKtNg ),dx% [ˬWb( {fznA:Pu*Aܴ1LH36&kGN8m}e8[D̋nŨ¸kVGw^+׀z/CҸ;[]:`1Y4 Q8^)|j2 hǚ!Sb NIv1ÍżJa  +(!S  &TyGit}wbHOHKNtbV.͔ @L>V>,NkqZo+zecne2ٶi}~.$7 4A6O.s%8l&%Yx}! sɐi7Wn~Du*i,F}5&y]F<8"=aUfa9Y.^N2ZU1Xh v\HN&  f` O,GPXP= m3ĭub[f$͜*73|G%!JB0u0w C]RqLH#HKM{\#^c1t^"|7vvr=?`]Lӥ%l1eZkCyJb}o0aM7.Ds~o~\E(bXx]Ԣ3oPyRH,RP:v'p,C&CY=QC(ZO1P'Lv7-.]viQ:_f"zss6yvKNiMͷj\Lsn+8"o>AkvOex+0 bb!eM FsX6gWUW.l(V-9&{?iAO+8| |puuXW1Yo m~M'7 '73478d\\s}\<m&*ˠ1 p OkV=%؊ A۟ .;tid98b&S4o eFYb KDt4ߝ i=M2sa_G-$G RTN!U,g[rK:nG{rFI2B? oQ~uq>s+cekqZ'\r$jWTn.RIEZ1pHMJWf.\R6Gr^۽rbae$jy3 k]/g7{ay8݅b UE^c7`XwUŁO?f Tp[u>;1g<#k{o yȟE4vݭ\Wj~/=fP iǵ[o`w З_{S$WtzN=5RlCمL'tsastF5W#*VK?;V:>9mt=~4- 3q_fl^6|xRBawpCY6Ν kP#kG dZuTFXCXb(]@p=P[iƯ4 r09*=lWP=\d$~nL')9~`=oezA܈[ugYLmyZ*1Y UX?\(UiiCϽE]TSsIJۿ>}xKSN`)u0A7fx<-m5G(-]^ }Dyg)  t g'D~MD[Qf9OC_!|;{ܘ =čOHlPdNgX *d{Oe.Hү>3R )%Bm.LAKw36Zu(3!`UJpvX9\ /khAmV_U `n>VDp}/94qqQWAVvЪ%)Y+O^sY!aƉtw7GA=PVg*|aML1hyFf)Kt #HBFJJnM#i؃-'Y J7#,ihJʙw{1M:X[6SKl H2bLrp2'9Hu .R~ `l) 1WRga#6Ksat]gpdIe\EA^jZ-^PQS=*Kw?e>J;:+|?a)BM0+oT#1lDte!*cnH.=-,ؗQsm:TeWU20X{x9TscrBd6wjkG+Yy4K*&DGOb+NnMޒPDц(H9O U6HpZ|xST)_Q4Վ mPFةHB{yrupd9%MCAa΅HYFcB}L,~g'MP='fˬ[0Lz(Vhܝ V)S-FcQ<oGs0~n|2 D0m96Mo<06H<-XC[z(5*9u/@!rM:&\K^e2 7=o G;`ٳ&pw#7)m}vVm-k+K&z_Y=Qu.›O?hmJn 7cE/h~\_\^y|Yl oHO2ӵh5j9X/RqR1^z#h;jb5fUe}h݉ۤeIFׁUB6 W9=tzynmsIV{݅t6GQnf%k}6{7V!\J,gNno)tHJmu;x6PXJDZ*_MnZ@YD|V6\lTd6ٗWSגO0/Ԭ`6H>\ZT>{)'0p#3VLCI(1/kfazNW+7IGC:`k-D#]Q]9&-xG!? i?YhsgLG> uOS'_#7r$$nu:o8EA]%1ךG`dO=eOlH]?y`_h]b^FaʞrwNQڴ_8>YWs^9D#c[Ŷ=y;"nK(`5|xCWv(Jw.*tt0o U[t-C I(#9\(:"}%fc:!{7[9Cuo\RoTqA8~NX?rX B?DqLd xo_&W=G}Dc?Lj1:ڡ a oP UH> MZK4[l;qcd?W)M Cq[^?c6b: >n-,_}\N(i6[ \IGҿ>h8dmQZt\ܔa& 'l1+tyTfO_"6jԐRE xFI{y_D{65@8doo }) @lUwP]ۢ.T SxSp!& ah=(FOG&"qP`ֿwb5rV9_k?G)HoH91R rH[r "K]8IeadS F%e"e[c$a]hCso^5w XcUU./qei6Y-(* j9d %(B>|ncGv.Ut)fA`pӶg@7XO^;8^;"~9Ap}G7m.Y@w&p-!8du8# e π %c<j_i P#l F EO`нz OBB9r^kH3i QK^`gb6N Pto6>}''Un"Dd/+7>A=EaMKC"%J@e-K*yotng$ fGTZ#E{щvEHpboޕ^/LIm%jn'&5PfQR> JUE>:l}UwA;;e zD)Z .9%&D*Yٟ5kS=M2-bIIhCI2pf%W:WÍ#dz gJ$mbzqO/~=fO( (L#V&0z84mQtT-r$O bg1`k+%Oc8`\KROѼI< n\  $XgBG(T?@r&$NHolؐ"HB9AyCnFzxe3^^wT`r~'7f1t)(Ÿ́::L /xbku@Zv7A&0fO!;G*cI} sE\|7F 09 YGQݗxAgxmXp;0Kba@PYW*'Fe>[hokNɤM3yKp,N?B-g&>M z}; LCx[C>3$, cy#"9|h) QіV_})D+اK\lK^'cU>Ti$Z_5to6<ho'8t@tJ0q!?&4*VŠ"U=Di GZD J;S|+Skst/2uh&ibYLcv>1]5y!PC- *&q9W0)r!*:]8-q~`p#R#U\Gx)37uj/Xcm' &aK#Oz/mf]@:7b[tqoG$obR-SN/LTfe\FW(Lf8 )B3(.zTD@T> cз6̺fod~lvS'G TmRlڍ F{?zLzGyDX {0u!/_זj_ klj/>`} dJTRs$rdgR\(o}Ztռ-`"ptDOT#aS^E nNm;z(áOww'Qq^k 'Ms!Ik-1uy1J`j|@y [{jv2 ڋ,Sa&OI@l-܆xBGWwMU,8]oHHe9}7]=saVrwH26+Vr>@4X\e F::D ?*5G cB~):2bldMfԑ0M(o:1a*RQSI5DRqxJ6 \#KU ,P=d-\qx9)ݗHc0z8S\)lVd"Xxg~}\ sc#>X9ek|N, .%/@GOkZwyWT P@(yd%6R Ŵ?5L[6<~/w NvP!dh%;'lv@Ou='%? 9|mcu[RJlDj/Idbg8b93(g4OZp*R}'N0 ;d>^\n0 MImrL-?oc^2=GQcKs|;6v}0>)E!j0C[do^8޲hunV[VQ~=5i1S~3gIG2` =[V#Zg(lYˋ]@C|DU=zx aI}~2v >#Ywio Kb-%_;U^SeƺH@E9e./u43 TX~hNYA9en.@( (]ui}Z$Rs ؙtu}%LH$Q5֧ \mXl AO5ibzd8 TMθ1~l)ٸٕ}cj83lo]n'q׊.sgE:}dҹĘ2S z?SW+U-Eu;2۩4 ? 4 m$J"8Ś[:|](ytp3e}eէj~|1~R=!zvM\  f0X5#mt& 9 p>~ 5MḲšU v&k&z":J+*%%]4`ptmRםnoG} '`bi3'xb,H>%cem5xpD#7teNr13|AikTQ.yZ R}w">154Q]\D?h ^,w|3l6f$GݦxQ''N[B63cElBM47RޏgpoZdZYsmApB8 ?~cC0 Y1l3duX@bN̶6GD%G F2uM52|Y[OeJ4I\<j H+~BZl` 9`W`Vy"1x7։3cYRT>u_^ҋ  M O{|:Pga+1-uth#'@k}^I y gYGLET=,n+ZV(<@h +:fc5Dh3B: eDKaZO|_]n=d eP! Zb3..Olv[sHqpAusf[A>EMaVc]8KE M><9 +(sX3UcU >,kH/>XCp~ '{n^_3 ǕGTkw_dJ.)("(9V8U57?D:BBer8mgvˤRl]/"9^<ҧIm!+e-)8||${nH +fz*f[HZVR@I$T?2nu^Z563O9 WTQ%޻2z+ěNbp!nu^IvaIJ9vA!78n%)~HNICT $jJjK_).NK0Z.yT7`'.QC~D|i^49]hW =~(PA5 <_*d> w'lOtt?kwi5hDif)'S+Y2`zX]Ú/,iY TYI J[>Iб9J (@ ZNeősnp@G(n`$IbU_Y!/^ݻ u[mϟ#1LY5; >ewGvwBM@Jv GRaNWs98oVa^!o2pF1`d66"w\`%puH$. bK Oo2 m' ƝtAH (Q5vBR`V@?1n,\DKcgg@>UQ>5$-8,m HM5Qy[pOHleNl BcJ+TK8VeaA"* pMsF;3wsrPG]0.1@UDM8xYUL q<Y\+jF&UPfm  S~_3Ѷ<Rs@srx868j+$/b81f<=[1~<39D/Fb@ʊB(.byS0%ffU&~*9&3M9O3yZUug$0L0>P uF&~8`xT|m>n5XBgwyUؖ^1uLIQ̶U|Ei lpLU2%aԓ 3/ YT<wS[/ނ&]ZoiTKXLSO?;A;/z1~/|G9kZx|y ,!rY$nu%%Q(S({}3W}I]lce\4|"-pYnQ1<R8JT M:zu87 hHNtXng5{+l+hg\`CPG:jkWmP`0 \ G\3Pf'3O{o>iTSآnVnY6559 Ij3Y1mW|wĤ3Q$њ "O' F;8uD=z9':.v=uM\e bL6@TU95Tic#j͐mhoR0Xw=.r)K]X]E'8p4}, 8H^W&UKߏYR#(Xdv6Q:A!*ORBt̛k>M}#<6D, 81(͢iA^:W;P6%&]{fflD%4&o0k3})?D9@SKZ1E,K(0`u4% Th!zi֩m/BW H&ʸ'WP?[KvCvi* CMj(p#*9!7MN%8)N:[:tDXubmC`RYPU:AKh'L4g\F7B"=QTd0= ^yU}u5Z&lȑm!_m! %&fg>&F͐QHʀ\֡(ٵOj PRqK[c;E3"Ti1:=[+@%fS"e/?O-@-N"}Ej8NWNXX%C/77ekPFpf[w+R g_8!Vٔ,%^CALUD"ihET *;;eW[>95mpCvlXg}V{(xc0"$Dk!%(i4T, 5=L)Wv&KjkF~%2PT<ɒ3r˅@hoj2;U> peq1 vMhbTtv<+OeOWAmhTIe)BFr<^yl5X{Xj(_KJL^wgٺ'!yC5(n)Y.uH T a+4Uz(k~>|c%elBM^2^v$ 0V zk[eZqc~‚'De+~^C9p2Ub,yu /;p=t{dd%EMkI)Nc?ߑN04~RtxJ Fp]+if]a3}c#DpaxFYLx6ItN;|<&YK 1{V`z[RtcF5S;+cW&An-p/Uc}0\)Sե169܉^#TѢD')%j[>OgKژ K_aB^Wn 51z!{j9mgFX,Bɾ.j(: G1h5 ? f0U)rpa_s8^ٸ~EZeH=Ogv΄wI~CxS`>TH^f_E0&@fIl,9040PxFt-.E wL%J%QQ*=0)8<dBwŬ,A: &)qx 1DfO,>3BK+e*7FY8>KtqbIQ~s5 WRz?VOOr!sBM_]`t#k̼<px6jn*;z7tG>8'in4 BYeT݋H,-(M .7/Oq)<g+j7a ,}j#7.gj#o:_Vr9tnx5EO|lnj,04O58M)|@^ox%h>gAC|C|vDmcu|^Ζ~kxTKdH-I0WADH'W <=Qb: @>:hvB3b#uG"5: ]@M"R~<j<M%)Mo5HauQ<6k2>QMYrQ/nRPH/6ο *L6ށd&4]Sl+z?Y0z,ʐ,_\lU]WS!-1cF+a84 3x;Þi@Ch}qV#8&b|kupx #MqC]b]-^BOJ _EqZ<K05% _My{1[)-7Q"3Fmnm.-jmYfge;o|i.|bjg3Bd1f #n;G!]#2:@#(V<+($Ax &_nx=V1^D/A4] \L9-0T:MVgv5Pː,s̖(. T_Q~gI52,En0h+CpVb! C }tHQ ' wfUȗk:CHX%[<'X]`6DX&+zZ$A.E%o1n,`%xqfo 6.9Tz F hN:$_P0wtm4z)_DA9"ZeG,#Axv.!La;Z?X x^/Q?p ?+e~ߨ oľ 'Bs'>]G0b5,X. t3'p`:>)լb^0 'q~S}Sg>_o?O o<a}gAeZ(J(Zi'+uh%RT'L7EHy)~--- #G:+0 j@`[Gr>H@Vf@Q:c Uv5gAibkqp14(Zdr7 X3aLH@ }' n'à@90iYþbyE4z?h!&r>tqW #^8CZ%LTm'S_h =mKZ46HzZFA)j??D'S?l /{͂LF;6C JYHlvX xEdBيEq:mn:Usk w7OG:wLtI2rSM&ԺœhWTCOI2WVܸ:W?{JvI<)+)n& !!I:c\=my7J1=tn#jG\T Llwz!7 1&bY=9Ua?V+y@/,͐!Y}@ZV Q$?lhD@n`S*6%^A=35Yz)(%3@nj6xH@> 5:>+;16PU6E*"J; ^q/}svf שK}h-EW5l){0qZ3׆H 5.:ަbFVf1r0v* yA )[A qGMIRkn6Al']JA1Pm+)(/y3ZjW46 (745;&Ygf M5EhXܯiV|`ߠ=v,-E%-m\~y|g[qdG~i%#R> 0f#~y{;%0%#'lײR,` 2t'D2D.`gN[{ Hy/1-S]h37RfbHWQ+SZ˄4)1?Y$޻iVrC.u'BF =s!9oAS9$,yO-u5 }[] hdT|V)6] B|Wg $n@nX*b|p -Nd/?>e8w4/CqFGy+ǰ^Dz )ܒ 12[4t LFzƒZ`M mP?{bz"LKc, ?}1{zp:5Wq}H'WPEp Zt'G.{R;W6;$"UnQGK7uVYDQ֌qF"I6f&7> 1j du."(̀.wRV%N.~[BkN#Y_,*%f @TK7glW+EKhMJbh>V&f5]zW%FdYGQ0 ; ]v8GE:ĕ#UW* ~9$B|'fZrn BEU)hbtz6MYW-_7D28I58?tzSyj,Qe,bLZ$\U!?Y )aU (.VZRk(tGXw5ng:M>f gLaGX;kQQz6ND`3Kyi׫ _y; jhލ~/3 _jx/v ([2[0z^rbUCWO*<[d e4؁@'TQOrFr-3JOQKv^7]H0U}h)«P' /2]6u+tnl"kmc_VnQ= |`&>RG|ϮmX N`ln396k'O9$%QFN[&RZ/h&+-z0eLf;π&<@7)iRnj<)7zfEqI<Z4j1A-I5qR{ta0$`3eZ+9&*H*?Y1%2jhp~:+,r?@%.r l04Hg_z9Z/.0l$MroPp;%?N; Z [0ug)<5%i5 mMs mHoS$*&t+s:&DDnotbKa6DB\|ZS9^{KMm><W:"=JRA"B[Owt)cEU10+$H A)5EJ@NlS8i5%*o m@$EE"y3eI(|(-Dg{dVEMS9" ҮobhhatD6g{*A0m!j%(0."ZR+X68>?p\Vn$! M $P,~%3jIc4DlrV\aM&ѭY{D]p3#CyB31`:b _NȦgFe#Ƈlw,V-EQ^aPd!]cR|MDE4a6VhdFN<[ɜe,E5I8aKsǢk\ 8_/g ?y&\h L@y֠%yhZ$<ftPd9:s~{ ۪Cdr8iH[\͐h?X`XTvG5H f,rU$[?S;qQa@b^^Cgqit5W)[u= r#(tT՘=0gZL aU1 jҫ Ϡ.uBDT.Q J=j_r=+FsӲRUUj Vq4P1+eP'Q<'YK]*7/W@ Y~F=}MvZ sd*oP!)+zޑ4gs|d= -lwF$Өu{Rfa /l# zXuж5S.ZׄC%&^zp ]%eh]y]gn?KBCHmT~SfH5.`amWCFydUO U?[xWshz{rq6`:jD #lAvy[c{$BM Swww{;dx+oWg9S{pK{zKy/ÜCU3PPR\~+7@ƒԁ qiIKRFU&g-,qV'ե4 r8lW9 m ##, TLWYy!grBg0s'2Gr%iƃOS[2q=o=G dקr%T- _7'ǽIjӶ%9f{[lDu ]oj`Pw[8 W= Ѳ[g"A @'DZ6U[ha }TsY}iZ=)&0|*a"nV R,W%!HXJz1,FMg,qD+nvcVfF[D>__\glo!ƶ| 5 qd3@_NIBYj\Dp;m{=7+ןixzZU>DML"K-ǵV[K!%3* &sT\=4eo@|Na :*_zX[z~ CGCVw CDvt&VXkbTMWJVsaY& j#XUE;A!n{;afVs@FpzT{r}*@Z|"[#|;)xFL+i1q܇e}ZF 966dВMV_C![?*[2hA1bWT$pvUItZyޒ Pmjh=TGS=EF#~C)K5 WzSe¸f2i^ #4=bD Њ`W4,UfwP4@-,ߑ3\dZO~&Zb IXZrU%+<+I=&HeG2.^]s.ZIm \iώt}Pw-P'dq? 3@r,z#|.rj)eaVlaJ{:WeVUn1D/ ?p8[4sQdW64j (wn-]\U3)Iݽ3)KuFGFc04TfZk:%c*9`Wd1ZW8'I#OqqC<(5I|(8UgM%YūaղEBvEroEߖQ.+_gۿYmRn?+B on&i^._X, "UVx%8= B/ԣ)]ci|+k_R#fg'|BRrX~}!H)qzlrW~{Ye&˳Vn["^[:+ٜzU2n:C$' 2Fc &=ڈ530Io|D:ȁV| Ħ-҅)Z0:b98xcP /5a;B d~}/zo jWxWU }}Z-ÙufM\pn paUCK[W=+MZ BBϗ2Nt}BSqFA>APan"> :0ff{DX=2#* i[9LNm)%[# CɆf|K J|j^5g!fh^>Ho"ufG{x!RKOt8+V{?p7_XOC 6xE‹Wx#W%q<7 D-ZE]589$GQvyIxF x,5Ԝ7OP?2&qH<M91Q;t1:O96PES/uy`P6XIXmNwIH 9MoY'FBp~R awqul%tB Bt[t3IWa q?+ ,?CxՑoۂވ][kMNN:2L9 $K wpa)`MKtx}T&iD´,`<U5ilzz}VHEɽi}%v9 zlapP7AWcB2,E;B,K)Ѷ{ !V>|x=>@!g'V4 ݺ\*p;i:Ɉ:?>mDd/D+")-0  Z39vF!Ts^b8%#)\}xPw?`l%JyhlC_]yos ΂ZW ;'U, (vzX`bID!)%-AU}RGߵ.<1PYW9J0fxm *@%<q.?(0Hk)[Ftua` UoDzIlx5$}8lƌ zA?f If<# ; nM!5|ՙ%%z`GB MsuOҊd>B -14KZQm0j~pJ=135=LWDW\#s {wrg]ute<hbBmq0Pig~J$:d8r7 P0V 25=y2@}';ko ڢ ]ІK);Yd%;]3UBysleSmD@MZGt@q2HQZCG)Rsnph` h>݋ aO|c¢T5P/[: >6R<r[Z_jxH9Kg&.~H a(WH7H];ݹ 2qr=H\~g^-H 6Ǻ }jȽ oHZy,q SqRiyOFQg2C# $D 769 6ʸ\)#^G_(\f=JacdY~/7fK~A[qt R'pF Dj$~yPCOjKocE6mZQk,`D auSq]3;44&P(z/vBdCp0n =QɹX)v,(4EmQcAiK^vR[@np!wY[23p6Z+!mn+L8!n5 K6U %KT/Bd>0r!,KG+\( S|p*U ~Q/SWJahq[CI~O^$[GbZ]Pv_qT0MNuY#$L"^ Fٔ@Kc HeKyb6unر,3D{${({U|N5THp_]b A!( $C"]Uk@J%4IUP~N~_P ;1{e^k<)]cpYW/V lJ%,nW0 97MI`˸t*,$_8QGĖrr50vΛ hjIlC<mz'@}p ATvUFba>2w@; lA ^=gU!UTq&;[қNJpd ZQ]4=~2%WQ12 ;+"ƙPw[KyP74׎X #DhbAlrcjW6 "pv3Ty5 Z+ȗQvpg%{^m!X cAAӉ|t7X_2Np>E˲O1XhIl XۧTuw^1~GāiC& *3FWKVKx)u˸"}@dC3-C/7ۛczh7X5|Ap9;zU7/s`[XSmf80ĦOe*D7fcCaYGVGzE 7v.d2:7N^[zvXAL>1m5r- X_-Y] U {";wVs^^%CW@2~RRx ʒ!!3qiMgA=} 7p`NaYp&e9DmeD K`T){2!߸KTUk.VX&'b9K( nenF[4h=#A)<6Pv9Ҭ`o #thr. U)8Oir|XJ10(T—DLP< ݆xQvG},g_fC,˶rR)[|YV3v+A?&7P-3(/$@4q' vP!I;-m/[lDALVM,*E7^'4%Wk|a%*kJ3l&S]u|T>ep<Uk1@2qӕUk"c @rCܹmt̮6.]5aאwoZ~[ig)a<-!7A TxF -͈k4VW`V`'D2e)s4K_oL<<]i)(ko1q|HbU9 \ ]z8$MC2~it%~gB{Ej^3o5Ik;Jy@V5?~j-:^f9cQ^bPO^R0:OB D1Wh`OlU\{lx_8)ynĢ_k<(}af,Qjp}IV`'h? Dw!e<P6;z]zmAX2T,MJ M0o3:hS[T'j<#p.x4$++b{zا:%gSY A,l!|"]E08!0}>mmwF8D+'CpeN6^<-,7jKN_Ȗf]AX6Y0x[MIL*yޜۻ#&P k8A$t*GK>G*\vMl Om^>ү XmM!wP~O? :`h$|G޾V@m(R<#ia&XHq4JV a_h9(.=ǐjODSB܄K33BN)u*IynNv8(x '<piN?3qU_XM%4j_KnU.F]-%9]*Ѧ<L[q(RQ: <%9/ &PM)&vO$Xv|q6|# `)G2ea Y m=\<'(>ܧ\ EaTӌ:-TU8R^@WgBYEW5< _VX:Xr42 }A) Rr ;=&a;KVdm0X k8$zQ}8bO=&g;g/ioT$<0cOCX %\QX֍.Pr#6C *$B(M zP:>|t67hHm|Ͽ C8nd%J?Px*Yl_|C?YWXOM3Y}{\[|1i}!Fu #m>jJDLɩ6%\pZE#hTCwv*sըCQ@f(nSC{j$}Kc;w?dpzX}Q=>2T;\{1^VvAbV=`#vhom94sޜw xPNr/-vs!%' 6F#M-049FH^ iXDUsDlY>*xoόr[Tֺ3+ r!\3GFWWvՉdmUWg GbFFMtUYZ66@Wx"68g{LG& EH5}-^1:fDp]xV JU9vdfҊ>tуySt#-n0az G3pP;8A:fmPV|  [\ưj _Ԛ ֕:^.L"3WBO)p".8\:2:B\ y~prg)1opՏQ?-Q~%Ag,6A+i&b#qa0?C*?h& %3u'1`uLSmHk!;1i{4F2N8 2\c1#I";rLjަ-ujP2Y0yS115JJu{Du"n`<2M!I37 ?l0KW?jM ~djAbg&y>qbNT,' ?mg,IS;6>pX6) DPw(K7u57Rq^^QwTn56f/0>sGQlOWt[=D64y5[=u1h P/ &u2j =P1|?-x5zi)qpC203!̶x?*\sI#J')UKr\zRDsH.CjKgW a,Ende9Pq4HȿX!z^sly?) ̴P2Il^Eظ2'+(W;3(1]F7ɶuEI78s'#Y'4-KB]̀ѿHmBL~V| <T6[9Gl\XsPQ.85" PH@.AT0>pPCf?"0SzI,}p3^yIi#yWDQtfۍJr|D}bFґ.[b#LaUs?6G$:4LaT{B3$FGA2.9-i[J82Ԍw_ef H=Aj 0"[2աhC_, rQρc@^t*l%`+9&v2nv]؋(*х`cx;\(_0n?wT?6`5F/xn3(CeGz~x̂J/_/j~yAaWj ,Ʀbyb( P__׍v[|nޱ7U2)&hCuyo;>GlVW\,i~7Wzڵ%ĝz {5]06\4\e( YS5*tL_[`mZa=lQqLo s9Ր, V2M% .UWν"C-UvxJdlJL=QL1w[j]yy\uIdo[ŕT V{Yۗ'=]1X&4S"O+`6Ey|;UtJyX (X5<nY'K$"JgֆyO=f_Î|[K aD 2ʯKWQfWG>w7>>_EUrcY>{=p_M1&&*4('%f B؜0@ [K?r3WY# ESHٹJ]f<-'.R&J(L8Mqor!~IU~6w# ml }t ]K W* pod:mAW7Q&SgpR%1(5Y0!s39(yJoUgy<+ >z.<} 7 (<a-Y ~CՈFq|713q k}vsrv] I@}-}L.ulڋMZ^v}YmBum@|FokSAQ3h-u1_DEgG{x[05-@p4ot!032/_"+*7wX9~v}U)*0RZȡh\wmf k,krLq ֧$^BhZ#Mt :{@z> T~,CL*GY9<_ DuVNukMWϹIcf^  =3 -$<ng"WuiX*_lQJH*'={9w4?1\E!6E>HbU.1n> <kU`OwŤ{my&jMXR/JcLDuL=.~ZgHYb]CyE()]&ƣ(JRާ\ЌKiDs,`Wm(nCPI#6tnn!MgGKsZF&ڡeOwHKR)/t67 $/t A \6=o /jsPKgq,i\[NPg=B-1R.u6ϸO"&rk[kZPu36]m ck`7r] Oy!*w_ʎC 6#/p- =$x a1' Msy @Qpiabn~?psEʤi5+aBOjqmbMO(7BC>sE,eLIH@AIICYt4AftofP`=|]t]wU.>t$CZ 4Nz\BbXPboR7 Q!Xh3cS Z]M0~U%a087r`OǙ3@x.viM_.hpu: ~/bD [ EBf4 }Ce /ki420{28B*1b'zϑ)yTz,ͶfZq/)9+5Vw!X@|<;A, ;u@31X8o}>!4#TZ*eMHq|ÙMVLhY%'e=XmY}w^:W9X#H=.Q<%VC3qTe3KdDL,.-yY " "L%;nmH@3_uWI@8ksFX,,8* #D".m|5è(e:fbKI=0\+7d>$M6LnuV}Itb BKir -.Bv77Wg;<0iS3~'>P[$)ne(r1[JArW6hoB;3Ӆd2uQMtqc9;PE^)u7P"o)nvD}HvS[dlzhMʊ3O0Otv zȜaqP{EYUإePh'A^1_,m5^s|<M;4 )-AIaV K}p}Qnn| ߶j D{(f"7X_֧36 w1t5Wn?c<7_.Fk@= {L,Z5w9'^'PdG;Xje&s$EqG ->D;s )Lַԫ;F{xf&s uL0KGî fq=#lL={~$i+M(sҏ{?zLIA–\s z*#ǖ{YbB#G+(a"Z (3Z: =.&4_Bt}-VS3xQ{CvPVOmVg$lgUSH=}AF>rewOmVsTjXRwx?/u+S[`7K+K*bV<[md~};l\F$T2 ?|}^0oJ=M, Nn`9#p̶mVfEcWNpuyI:=od .kMJE8P<cr= n P`!`j AN_l=a(qK({Bznd[ߏ]ēFх50tuNg c1yo'DMz&s 0e _/hm6$tBauX7}4;q BFDًw (s-Z?q9'`۳!{vqиd,esGl`}!bLD[cyNxDfIRoOi;C!-0<%4@XV[ԋٺ}Q*Tf:}gRED7 Faal o9- weSSlI9P> #zɞ&UJP'!*#gy'BTk|Fo],iI1&;1fAb0x(D|-]GR@MbvO<<>}p3~ͽx|TwX9nWcS@Jf>p-:|~q||>xu]{V;2Iujl k]2{W'?6':CN=gd5iH/O4Qx@ilZ<0#V, b]k\:SljtOy'fY#->9p4*KкtO88V,yyrcWF*v*Rr{؋"M.D M' D-rLq9{1cr>Wh%r $aGl;juBx=fvk<k)f[.Q-V)\WU]%k`JҮB|Fyor,1:5"фhoo'>!J0 NE`3cEf-k ߎP,nƯuTt%_z~`z4qe+^ni~pmfمkhB n I Y*6DL%KPY}R^\vQfe,Ha9QJ~R"=ee|>%0L#8 C=8H'=aJyf+TRH6qfKܠ#,mv"X`b\I~fANdI\Uehn~bgՕ66t,xPo3&$"f,w7M3OhK< FƭVYd7T54~=g5tmKdN}{mjKuh( 7 I<%)!5$6k~7;޺N!1rmG#e}-o#V*[s@T*R6T5Q!/OmLN_EZH]M> Bt@W,yph]{FamF3Gd QsrI`hc{u)Ġ-8(60LJc_OflV|OK@X?SdDV'Q*ol(1i=Qm[xTWS5jVkY?~bhr@|r0oiF"V4>HGMig *x t _clݏ-M0*y2H]ߎapp%md=dOcLFMW&EmiNwZGL2CE=3o:SI&`;cw<ۜ'$W tuqd,bӴc7qQ ,.  !x c|'#GSgKL]EǞEvIj-WqsgbhNGYHSYZU_frSZF3p *' ~dE 9H64=/2Y(PJ*s)<:.Yʚ:c'Ob-fS_TV8hŎ΂ i1_.^>6;Y]:~eY%z QR[W%8W19285w15!"st*bP8+1<TJw[4W>j<yp=.#4 x& kb_@h.3A9͹cJ~,3F`Q(VPNHqJ3R&.ht=)Tթ4LA1h!5Xg9 fhz$ @:bK)4v:.FOn.g4i)UWZ$="y X)jO*#z#9eIMT*XA#ۤҙԊ~b=<Y9xDkS0=w=8tGyB?6# '.fr0X@E4yezNddF$HS?GI-XAC,97<;=XvOz9T\uaFW 6 /&} M !(3.NB7xB.^IŖYVch( 5j1gY%YU;1Xx)~Xu~r–hyeY_m9%{Q dŦV[[iּ /;NT\P zqF1 K#db^tjs9pz ztZ(#r9%wy֍zx2asV [%oMR{B5Ofo8νuk<&]u$\jtzf\%yvMJEY>)of!K\%A$PW{ o"88-i*AD0}E<Yor̗kQ:G{;z1vŔYA|-Jf&ϣy)3C̹|5L )+:EQ"E1Q@|G_.==#WB6+c H<A7Piy_,E$]WRg^eBG^*L)8P0;4Bΐ]Chi)GhMKkguh:)SL9%>^+_ zm+[~_/ )'?4Rȗu4ƮdCk a)NN^5%j U #H6ÏDBmV&~N%@jO1F\<¼ɓ r&y"/}dPr&fxB1; VP2F$*yJ#gEDE>|D03"V"(W"$*m(S7YTLJWȭ˨ N,&59yb !< 3Zf&)[VS-l@6}L3^%@KEA(Ɗtq#qz:yjI\~~Ӷ5ֽW3srE >qwnl^k%O  xDw @C`7e:8rwu}|(%܉!*Y$n˸ߡ1L|ӯmpW9oDz3{1fb9g p1 ޢ XioZKSoZ1mtv EeCF!)ŧXk"/#1'21fG6k0b3[>{ofuharvkfc=#/ڙUN R;/M /vK-D!?5E]+]9}a24RZy{'4 Wq<Ji'%c VJH>XE1~UY_>EdcTLn]s~%]2(? ]Z SZ  )Q$Rku(I}%mjQO0f  Q~O57O{Kq +cWi/޾ٱ90'O0V2ӣjtapF#n[~`eSR([mKP*#$/lrH\73D$ P :~d3cWU {8rPHp(|d:so*_xuDWUyBy sDps]r;"/!-[eSN^<6^#m7yiv+sby}Twq&vv{NƷ&+  "kqXY3 \ N.fx=a4 &?GL(Xf B! ڣ$՞v-'[W'YH1K;.>k! -[*,n6bMtLuޖd['``l,k~TǑL1oJL+H46!'J!byތ"o1&?M#%wUQAw1ۃQVn]#[t l_z =wL(|r0&}Gt/FED?X<%E b2$/1WMr޼v!6T'Fh`(RhDH.AMYl&TT9IULc\x| ),.K+.3 RDO-dOφ,`A54 ^:"J4`<im6?/" *3 ]`'I"Nu5iaj6dw 2Aܮ(}zt {>be^pg61 A? M.cg߬|XjY*{˶YdZ=ɵ2oQo\z#0`-wEp!_x~M~J'Du%gSsGAgXvB1_S8brm@hk=cf}؁` ` 6 K0XOBvm:{1V,YS&uՠ@lҮVY+u)kFٶ0W8NQcF)EZU-9@c>,a:)saV *P?~)њ G,8`$ 1 2m@?&A":=6,)@cŋ9D ,nl;o9 G9. x*N'_^2SetaN`_ݫ;: $*49h*Q1"Dz@Et=xcjT"y ^ISًf^HZB>XKLpj$r$? E'E CVJ5Hi465ݗF_ɵvqq_V n /l_PJ [oJ{Rm[[QNpVkQJulX~{n >"}#  l8?m[1S[N1rX)2DX ږ$u$iQT`k8_5.27_6Qx>Lq -Q++o - QƓص}vbJ`Xx_iebr9k@%Nr$Zo+W`w|w|e.]>D^V~y<&^ ^hP<,U*?h0&;nL[$c5jdq]|}ܕ)MN T4=bO)Wx6[\0*oW+ֳ+Q7Rt4_#&"|Tn7M؎l&nAM# mA m{>n&/`\>OBӎT@LRW.DsbKk6xR{kx]@{e o,? [rh=fG+9I&ah:ΑI$Y9NT x*![Sh ? 6ܴ( ;} c_]zC ,p ؅+lHL'5V3x60.ӂ"-VA2:{_ r}c"VU^pnwNy%H,PPnY(k[B'L3p$9}:m#C ^H#~"[#:8W?SKmz[iA"bhkRgZQ5ZUjymZh&Td\`wPl,cgHn $u W[ !K 8v"[uLsBIqOT;?l5| Np}\ONi)9 Q166!xU u).;t.q]QH}%- 3Yԧl:j2\7i ֏LiôWe>&W0.?9D{~߱mݠ,iN©OrnYGX$ar(XEEE Rdd%،pCO/K1N; z("hp(P`I9EE#KQYyl.25bX M,;FfOT3gE ,,M <DY|f1z iHjz'("ݎ|O˩BL4vsڲp g PNU&U]zOVBz"w0bGRC|B,Kes?r uq!b|{|V02w} |;uw _7)WOI(j߉юymЫΌ{fy8\H1*]o=E!|as"E%JmUGRJnL>-u&%]}2CSXNt?fwF{g+[3akofTaoQUjX{Xq%u.2 i< #/Nopp %Aga+DGN )LB=_L` i3dQ`jTdAbsl||zk<OJCL1HX@ZN9 \ ,9[19YE0-u>CľبͲ~<Pmo9 Sx-Bn-*;IoC)kMmC]0'hLq =0l< pm^rStz֥|&xխxҮ;o|ѵ&LN`|ln 8 s :F>y2jBH$tA7|A-jeBm&fA.?yK4J& tb%_آz_[۬Vk>i!l5j7׈^]^5*1 l IWkΔߋ!^*>'w2\0Eه:lEċ RxbLi<l-Lte%.?LdgIkd^W;c5V6vJcsk>_iak=nr-Ʌ#Vp+Br;usl0oY7_g?K/0v^]Bl33SX2L%O^otr{ijCxU?o4% d$Ȱy>\9al\CF}KBya[˦uGCqf;WUI|!_zxFo3p9YcuNJQ۟_a) vEL5v|;}x1mm*Q&H@$P)c= mWF T1 -%AZ18} 3Ddmk dDB h/OluPfG^a1b7&Iu)  k@ G0b4!r)X}8:J)ka& ^Z{IFAIUKh3oyPR[/cVu Ki//-3>AO$sf|ed|T{?{4*vΜ r0-ayn1A:&rxƠpBoaFcd)M}ΰW}7z+v7qGC\#GN=6S4_-}4URCojt17cJJ|>3|-u?mRCQS;'N:ME!Rabgϗ>3r{*RD4bwf~o#O-&K* ?=2_"h6 fU"uaa~bzbyfonXP: ~{^J dB3P!_BgKT;9 ^pz:~[S<_1mV5[9Tfv{x{dA`>L5+Qbhb 5Ԣkx5PrBN:` } q=sɍBz|^j4|.lyyDihPK>UΦkc!n :wX6y}d{_k_W0|X, $<"?r$24=ta@S.0t"x4 I0LVXIdsZbS>X BcL8kR<k|3e #)yBp AzB#v6q!  I/K=]WRA-~T/2Yѽ*}I`MQSTO:;8pCI{T,rO`wLy=</Օ-6<2Ok7Z6)UG"Gy[}lֺviJxɞDY׫F}5VXz;q 9d=IW;s<9EL=WGCtySqN-^koNS-szj%a9IA9A2<;C?IHJfT^u34 0UC d!AO\z$Pƻ-cD40!-,t1z;gy@lgHqUhq1@J}  íNGK /M*UG\4LOG=3;1$Ps 9r<kHL5L<02c6-RPlkkN;XjAML")6P&Ab׼LyG&2~x=I'?0q7ݾpzHbt z ^ѻQ&ƺz.|zLtaJLDL/[s}.j'nu .ATvcgYzl Ԓ!0JO{$++ֺS,0#TR'8zcA+EH\"fh6U*U{=cJiIeAS}3 J0K=AfK\.|S,^W=joUOJ.E$k+J bQ !lM2TcUy8| 5S-ZCҹ˩B2smu1oTC0d e٬Zޥ@rS{Z,~JBG8X*Y) >ލ:l:pn e]4B7$kn$!b`pn "ͥvdw]?pnU7fQOoG@E@!OB_Jz`Iї~l3a1C -p)ba,Gt,8/`?9O]Fem\ׂ\Ϧ`'ݻB.fb]}$(A}&`Lފ) ~}Jb !^Ϯ<'x?y;"2o Ng9|#tYk 'ְRڧ_M6%jzF+$WEa6JR59E%xO.9+M(0f<ZWЮZlL-/<j}#K -2V%N (MBs({<^U}9vn% ǒ;z}pr#ÎGBυeuZqbaRVYS_r&q$bs fgDq*jlhw_̍X<{Ym#})[*g$',%BoN SeL3xQvE!%NZ^!0g!|f5W}MO#G*4'm/+::O]Sy^}|eod]B=t}v7KTkA>&w>PRZ-l߹ۍl(z_~e/h< NT֣V̳tqjjN}i7>xA1VAbS/&jt7.8uR%{wf`m!c"r4ۉq?xqLy0qv`d!TSQ)XIidMaNcWOKe}2}YXAD>t@\8JS0K2W?s[ޮ.c&E)@I8 g t ]w)0FT}r2x9xO Fľ<2 :j  }=.r0Ag=<o+\_[6&8Q:]G^P=n8%rO[ (y&T5S $$163߸TOSC1…_\a;>67p)K {ɕ'A r8mrXӞ! t/XH.Ǒ tQDech|hsJʖbL3Qg_ _{f>a0P&MTLd^S!Ebѽ!fAhGn emҁ&$sW |!ۊ*$.l+6RlBc*do*- &ةVI9'"XFjSnO8hWR \ ZIB8K\|/-W|2F{6 [ZK=}=Cq"<(0/7iH-_ ! nrPTqWfIMqvv}{WWY'\}haum a2TnuN[[dXYB};3WB'?8ȜI'[Px.d[Uhf` #<_U\W~K'ADR> bL*РLf,W ˠ1KG7՗4̥ػ-4S-qmRY6G7f.'/  "--Y78'#+ɟ-aHcK`9%xudS0C?9gD)݇>%I?qZUE {sugRא3r1bO2^sq%RTI|M'9"$X "LC,J{o(BhGom8\% ! lUZFO&>++utyrśwd'B ,mgOf?02ZdXai4v #| oVbKCR#NUmSHYKF[r`jr O !M#@Ҏvn&x8a*8W" l 5vEwzL~3Yqnۨxy~=TtW?|AFs>ryQ%qgj`gYgTp_4s "!h>]lZW;n zW}~>np._E Rz>#f)} DyjvXn; ! T%{Sb?SrUbclUgW<=.Jzlnb4K_<ަ<ZrBsjQw nvnuqX ^8wCTks[OW0W`{#R{{j]bbhhd_שU\jMʆ{xf1# k^w#:>~}pnrca_im%X¶7 {-<c=b@Ts'oJ{ ӧ3.j(1I sq!`>L]\ rR}(L |Iz Q*@= F(J. Nq:YKn}Eۑ#hgJ;Kw rmq?$2=w?az,4kq~8|pgψ%Y+kC7]9.iZ]Mr!Όq)Wby\J7 y r\x(oZUPK3ZFi"V!s'k~U$QuCj>[ FJAI H@GH\>nw,9h ]=#Eq }p^:K%R6[C_NebRnf^wB3ԣ^Y]`S9{ '3)as>v@}#Czib0%jw`p)zCNPQcVBf~~;yW.,ԙ69gąހ;kOR)b uA@uu$[ME@"vJjgPGP5(qP VN"G91!lx!v0~qg1$ ~39!"_Y1k*'p nm`tev. WEsJp 13LL1g.w;S*")^5֢80/,F$wv!vpQjQ,T?:9<#z=YXW?!^z92Y5nv#P7+ dzxmMxm>Q<n/9p,XtSQ{ʖS*xIbU[mp3'Nu*{%#/2J`9k?op<s"V@ voַW9! y8}QT~sa{K]~5+w*0-5{/.} ]G!Cn ;w ܾ`a !vIzfL`|Hd1,m>Gaȁ\VMM~p^"]$WbSewEB-3o`0eiG^Vd>iNLn=i`q ULϑĪߤ{Мب' 76610\CZaig {~(1C7c/0v@i;1!:(I%zQqɴ 7.)#uI2`a,i"h%d$R׬GoH  IH#4<)O~H>|}nf؅D ws4 `=5sGA(6^4 \=1Am8P}$,xyQݕíiOROIIiNYg*VX{U2Hxu4h X/ RW} dO]Ah Hb jZ I(*GR"H(^c zn5  $'.KKCBUMP\;L FR# l@ O(B&$Bg"]ԭ h `0u4RG]O~gPpOpyQyE\o{˝b i>{C| "U+l77 @IH|5WwikyXSVfd|'b,?jJL)P 2=:B #ZSJk`xWFB)oxm g!cA\1O/@z<1]v%~#w2+_0)MA{\=1.^!3ab4 HҞ@SWE҄<*m i^>a8J]+dpv"!191/YUyDMb#PjS`o9RmRw]=y~cL^Bf~us0v'Lq`_ZiX1kblttHפ<+^8W t B 4*"[6d93ILr?V+WQJIOLH8yZ#g_P|i]_UwBa E 0-nI(>>, ~@RDf( |~]9?8+"p1dRqqhhAvaėl ƪZ]J}ۑhSzFքB=j/#e1F4_\tCO"Z=;OU\G\IX/]Yb`hb1v9;#Q&".DA0C^@UzJJ{?]/;m~r/8@ ($S7 ^B G6{H# O?`tj~+ fYm8 :I{VgZOve!d=bo'3;OO6XLujifSVU*?N6x6"iJ\C8D//Eu7&7-i$HnhhucN٥!z%j ^kWP~D3j/^/_P iy*J x s29Via%dck3n9r 7J!*012ZH=ZT88nC=݃3'j+8 " F}\]3/5<yEpLsVBe"s|E1p$q`xbl=UR8(s;z{B6 {N}ů,4x"o͜fsbEP: m3|2n)3d_?duK3jh?j*#a @Qe=+[ !MHhhZfXB]BXp*HG}zvpxl k| dtWz|J;1V2d:CGEc>9:@A$=5+_#4%S^W0{v(6-3+y01_n:,kIFj=og&^aXYXWK>OC6[B.Rp cE`Hrd[w Aʱ-M~dywuy\nvhl^6PFD:G H F B,>/=CGC?JL2?I=AR 78!"3-B6 j=#r?> U?z7C LPO\2pR:XNJ$Nr$_OI%t>-WtRnt6 y'rx+ xC0VP:DKl^mOxQpҳG[Di Nq/$9:!! R}mXOajIL5[[^jkON=.غ2?ѹ~ZCQ\ !.-|"1t^h[fQO/F>3J1"q memcUxզٴ1V=yi;bFc^VeܛaV/F6;/T."x+)#-%k h"#] * Q8r |}x  6} ~Dڏ/\D5tQGVJ1U,S\W eU*t2y-~%HȮ_W[u-#t@$/m4a8>K`"wH5͑fW}|;jdPF,.yK BgU"1 arIWb@s\SՖQwVB/˛Q'$|%n4jEeiZ?od}&Yu L@B:9=64+whibLdyh;_Wd.}J}Jq=~~pj vڋxcu0j:Z1MBHL 9H\E?Zz823@C=(HI,ONG=6.261T7>c)@<7x67?cRqkyHcb/rUuAOGr%z%t+xq+-Ot90rLw]`h=tnJs}|FTwZ J%4F\4c}I ;40<oUQ;ZO= *K1 ¸KTw̢L &4{((sfd!W$|JOE]D?'27{ tt =nƲɧ5ou+h£jonhhŹbZ7I,;%6/33c.*#>ah(|, 'QI*)T)Ey(E1{eӀT}}.xDT>O]_2]`ku{"t|^e$<`*~o2\437ͯAVoeYXdo>eѦ׻]wPr~5q,{z%Jn446y`x^QM~?=8i(͗( d{'lW;f6OVdLwa}7CY=K:/-ֻ. *<vw"Xy)xׅMv3tjzګvQ|/1rvIcQVO/OAAQR>pN8E0:$H5"<:k))F'P? T)#NJ1DG;Yku:9X@[UHÿM4KGHiUj}ӑ@ %=vzaۡW#Ѿ'ylCFh|gMm !i'Mt(u*\2@O\d+i>pӦIEW#[\Dm%N<7-Y*1WC+K*A85(x7 /=ۮ "r.zK#rgcQA9Ko:}l:֊1z%xa|5(eeM.PssqVvy8subglVXQM`H,E-AG&:b.5"+I#D,1.t&'K5 Sjg'Fv ,zh,}=)oy&u2+}9L\fjdmt C; | 'Fnƻ0e?/Id",3p9 CoTjږ}i~ <Ĩ"cH8j>F(ϲ ƹ2prlRIj~Z}}N%<n,,o}T4pV>f;PZc_a[\cIQ4QA^/!){w_=s>ǯA fb7n[Z[z{_|Awl` XS+TY[J(^ Xr_VYSNsMAAE8<7= @8XK4R']@Ap0&+)/=EC(;-T/ "_ Zn*@I}#wHu}$pN e rUC2o')# cWUxƵ<9FŞ~ƥ}c}Fyyp$dmYhSUUaX)\,Y(\O"@4 /i%2#7v:: m6Q1&02C~8"^iBjGpuG;voDkuCrHPw)T}a}m}vp3~cnŐQ8 p])eB42+ @&T1ƺ7ӱ;4LAWL*^דPq~MWё"Lƫ[GްpS¢r1y1EAO2zװgŜݕvB|Z~dHuzV5rNq@rn4h5}bU:[?A$W/PtV^Y=Z]g^hXShNcCYYEVG~RiEXhATe>u+@Ha,V`b] XXcu n2$˕C9IKOgl ՞8?VHoW|1{xDpwWptw#P)@S4CQ#Zױ^a j{VE5SZ}uj$!!rjo4yjZyE)6 .'0(2v5,!۽6tjBv|27X|x` xvum|W[_D16'GK$!z݇fiKu[Ɛ͋r/{m*bN]n `d"c![H4OVB ; =\ A?]780 .q2:=yRSH[ N_IMdTIcFe#L?sT\o{ZwLT_γC߱UFP&%82ׄG d+"0!2 6݋Bݎ.WTm҇|{StP\p8/pXBzXwf|׭wiQ-73Qsx2Q,voͪ-;B?ԕSk"vy_fsa`|uv^^z^T3zAGp[ASb@U^DMRL@`Ok_LSAD02 i_^,sG ZNEnb 8ɀs-eo?\X[s`}c 0`tV{JtB1tAyGwLqKytCF~@!@";HvU?`Qd}NcaEcn#:+{b7G~GXyoK11?.f,c[J~{n&hiiVpkjf,?=PZf\_21a7e@rZ>`Ϋ7WȯWʧѹ ,nҦ8}iD^>Oc; -}%ӿx /."Sc*+!pPR* {.FH4~*n^fJgjPi6dVM:D16$6LͦXŗ(>~K&6۰tUٕ=OĖyYp+m}o{g@inao~9hG]RbLM)9S8 rUwPsF t=k'K65W-wf=x0+s\^mL}:z>o}1b]z`do~p"(2OyC>O;UܛXכ]fUv/$."s*^%Gm>]QB~Z0me$nqxJnt# Ih,~al xM}mwa/P]\X0O/Ax2?'8~">_ =y(C(}K`J#`j}n#~'-})w+Sp'h`!d ]gl1l f` ^6TO.S<]BeGhPhVh\ni~uSy}[ p}NJqT)(Ɛl{\jh[TQSY^(tikl%p)Tn,f 3b@{\SRXO_Cg?Ok<l9n</v>Bk5')3d U}v̵U8}lrwhd͜fhǍga[/vVqYXo^g_^YP^wO_Bag6fK/lk-i*be#];V MJBAVY_m~*\ 2C%zawoCc] ^\a iI&w0ˀ;CSIwMMTGv`ʼnq1}z|0||%4R "{JrhY4K6;Ai4D"Q3] .Qh ͇1 Èx|W~8~ς(znbbXR NpF?<nU13'2 VEfTQ(:Y!E9(='=Ƹ:`yն|ުLR %&s '}a!vu{$܃ g  Qtixd%eW4k;*oBrKwN}Q̄[ȑfk{nv`)~T'V^U|'tl})^nRpM_Kx5MhIh=/j3re.z+y&rfkx` WS9KE,K;/+),h0FRU^foK[ZlwqpT j_!Yx! XYd\duY&/l4~ 9|>uFcsSv(ev!uq~nlˀTjlt|LvhndћZW{Ja<X2W'$:cn_Pzuzr| gzuq*}pFs#z~wSk|_ WLUQG9L,mE!D{ Bç CHd{8 `P3$%6!%%W?$6zɄK 5 e |+qj!l1r8t8<&tNA$uDyG OvUtTnThZTVb,m˼V>`a2҇B"}ona ZSxH?>===@x^KjU U^QoM'LG]@Z(?9=K}4RX)]% ^"6\3# ]8*\e0sq*y>z.wNrapu(}6JzPp[dܛ1ZW#ZԮXZDV2Q*LKQsX[W~RPzVF<9::%06ڐ*y ld_ VKH'@JlO@}^p8z;~! ׮"܃a}Ts(Œp.x;W{{#mH*{brjy%jmp UxX|}!}#`)ˎ022C8,@CbO%fa+u~{}x p\9eI\XEQ)IEJGLJ BT `q#gD fV'f+eq/a5azCcWWahZqVVUtXUrUo[qe{h%aTWL=V/$ɒun:͇|svv ya x6 t mJNgngr4pRwfxtjl&arYWVQYNd@1.)FHr(cű .%3sp<=cdE"&5.en!Ť ##`JM h4%?4{z vHy-~37U=ÃE>k=ۆ@BBL>Uz<Aּ[IuT_dwz yt+qu|2~Dzs)j+FaN@_bȷ e?b\kUEOܨ0QX][UKsCf?ڭ>90C$_X?w23n#f4fmvD^e[5ѾոkRުܨ 5mVע7 I./iJ}yz{hIys1m"h\i~qxr{"\|>&{&|b(rM,,w,k13;+EjQ"`Ji_l+mwiG`]gVNaEA;398/<@_I'SqX05Y!Z' [-oW2Sr;QJLX|EaCdEdI%dPh=XJr [w|V$OFU8*ρ&چ%t1/ w@sywu zs y v8 qPkGi_/natuNrja/S[8WZSXWR>'J> /"j'u E{F&Tc/Wz?(d 108a UPyV}|# # (=,-N.G--L-*$!˶{%zU+ d3@WJLIlF?C6\/'+i#8$u%,&"#A%))4ArBK.P'QQ R9Zv-d4ks LnnmKkmpprmgta W]$d_cGd`}[VqSTXXȮT8NEU>=Hr?2<3ŵ(SAN 24_ E| |,!xZ3'O`yؗK"*Jȋxrot19~n%?R%ń(Ճ3)}+Ϗ0/5/O-$0?U4ײ8#ADMS V*XlXTP)KB72t2?4:,?EL{:O#dQ (Q+INp/*Ke8*IDCMv<R9qTQ:T;U@U[GeJnF'r]Br< r2rd'v| 9|w.r9nJn r u @t] "o &i e eD ik|h)laYQrNdPQMDc9.w.@ 'o"Y-}nr$g5o}XdZ;Q^l;Q8ZR.zHZ3ǑEM BEa mzQ tg; G'(*;.n//,`)"ow @j8q2 CmW),,n,M0$;@F" kMuN+aN9 NP>gX Gb- hxj@?j*h%hCl qo,hbw^[^QcPe/aZUSW%\Z@-R[Gwq<e4~3$6<60 ({޺  ctJEҳt|/u U#yDlqwC ).ڎ̐.1ΔVyu Ty-d'V#')-3[2., M-l,.2ey:@8BD=FF.FC:Ht.)&X$C%F,05 9^9"1:':(9*%91:>7I/ALJ)J&pH%H)O0[J4)e2vh4/g)FcK!2`lbzAj o\oj-*d!^];].,b~0gWgbe8aU\ (] aGb\#RH@V??KCFDXx=2_',&- `*G}7K=#cfKL,ͽǽ'@`}tYh>C G&h"[+3 T ;x_KhQewh4"r-36N9\^?0 IT`ZEYU RPU3_- k#&r%sapkhkmr'v skvb>]6_j2dfVfQda^E`b_U\VH;^44$8V8L3*<TQ {<o~r&zO-k+(g b'a=b,ϠT\A֍KݐMez6r9r zM23 h%'=),!)$cԫ"(7/-l11z34799(8Sy2(56!"$r{,= q25#7 +#9[/828`9Z8`C;4L-P)+P'K&!Hl'_K+>Ug-<_,d,ne},Uc( a$Ebufj jf_u /m #09>>ASG PR Z3_|_[]V7rSWB$a>hlj"m1l-l,ocrws8p{ kc@!_"a!gDkkMjgIfgOhycXKf>Ni414\5#2*\ T $/(h@QQ#o_a'.dt-|%ח*K՛!:3K ʆ”:"d'*JJ-ߦ?. >*$8$T!!="<&U+:. +/O0#2n1:Y101,&$/%("%&*C+ x+.h3_ 6o'7172=2D[*6E4&Bo$P>"9\#:%?#F JsM NO=SX Z HWPJOFF[KYPZSSdQN=ORR[K@A6+s%=%&%!FqXU =s^f"vx8Je gyKGr;\ݰ JTbiaypob;-[J83=&.u}X~^O EU'")i11:+]AI-U_cq`[9W&U%[Yb^aKdf'h/jQp%uasld}]tZ]ZcWfgyfcbdfYcak[zPBeD:fi6Z4_1$,K' "56F[! U 3Rr{u \` ݭ)BcQui*gvPߩ a}HZ*e0ɚK %)Y+ ,,("#G  Ҷ"@%))jy'l&-#& u${|$b&% "+K 922"k$B$N 'V%))*'+?4U'd< =e:I4L// 479l;.= ?zB@eG 3IE>6r1<1z6w:;;n;;[=Z@"A{<{3'D gKG7XpJ ]r= &op^AVSWxH"&8}wn8(Դo6PI³"8ո'Nѫ Ӭ`>z5{cI:9|n9;- D^X*[U>IQn'^"/!4Y7:<VCNRZh`Iak]VRSYWU[(^`b+e+iGmxmhzabZR.WY/t^ z`_]F@\#\x`~ef0a VG|<6+ 4 2 -g u)s .% "n!\"b ;;)0= X s|yb_Di#_&U f`L޽G e ޡV #'q+"q-Ȳ..)"(TP/"&1()6&$^ # u W . 4| |%$(^*G P+ n)&1$)"F!v+8/+/#:* #j?!$|'{<)+4-2.8 :6Y/(%T9 m'6*kM*'Y%N&4,0/R)J+t50M\ dw5)gW vxyX!: WqKx:հzjT 9+̴YQdnH. E бO,ٺ# QGa o$ *n!4$"{|"r+ln4o; @!CXHYRN\aRFcb]nYd/Z^Yc.gzhikqkwwyvph#bamdFhvjjhhgml/Epyo< iX}`pS ;G|?H<U=:84/,F-t.z+A $[ b !|1<[A?"zvڻ8pWja)$ ' F( )70,:,"*V#t) Ph.Qy1kU6g5|.(;/!VqM <(%'_.uHk^je/4gby0l S] k[.!7 }2 v$/z+ 3Z; BHANT[m_`^6\G[])7`;c:f %jY lh o 4u {G&}x qtjBChig/k3n"Gq&fsu)t2*v'w!v5 qjch\qQJM#DY%@A&N=a);#-:z.:.?:+:%68/8$&M X"&d,)-j1*1:.(} _@}mi!}Z"Nv!J"$!s# s i9c޸ v ث0NP̰u: R7R ! طihհ M  T_ o]M- K 7\ Tu H @ ("q v  K ' I M%&W$3 + C  *Ij#}2& &{##*PE_/VV\>sOFagYm,wunF\i!28R6_(ѹѰ},>OJ>.f@#+AܱE=h`0rOu)UK6}]I !&N-6/?FMTm/Zt\\-ZVUMW,YL5]a0d hnyv} ^D |/ uuGmifj#l&o++s(1Sv4z65m0}d)x<%cp#dG$Y&DR>*NM,CJp/I3Gi8WF ;F;.G8G2C,t=e)4\(M* )* +0e/U2N4G9=T ?7 >931aW' _A;>!$<&&l'R(o'&% mXfx ϶U |m(`r=!z" 3 2CگW_I1I ZVz]uS0Nz~vC>)%  |Y { - lFSh 5 !F la|aC'3 ZmygfKOJ) XJ%d!y~ ϰF: H TO!=a_4?1նƱɾ R\;gJNF}N(b6k_>RhOwMBb wcGH&/C<8{}@PI&+RKY\\XqRMFXMPVB_f? ltr|0^Ga|nov"r(qq.s+5x=.}DH:KJsE!>8y5n35DNAF?<F?1@*B_%,Ca!CyG$KLORNKdC9y1j*.%C#b"kS""%)d-9/-R&J[ ѿx:`V: > fBEj bѭ5li:AƷPZ/b!~GBg$c 5zz mp0D>T  zKd + { 5 6L cw[ p.za#'^1p)n\_YHEL}ټM&l=*DsJRYa7aTI!*~&{, pF.z&wDZ&Lþd. &u1yZ)#:,X5~?HQ"X\-]XQqtK+JLQXb \l:u~n6 y;*!Tzo&twf,sv2w;z*E}NtPULX>VPWKHHK}jFsJD#jBb@]>cZ>YtD'YLYTZXS\ Y}\,VH[]SX2RQ$RFS;uT3^T(,R&DS${V#Zs#]T#^"[ @TKEVCw<5-'2"XO"g'E. 5774,#8_^(im^{~>˽R˼Ľq' Z] +v$~g:]xGj2|gѸ`Rh6lCKqOR[:%E~ h h6hrV8,P &R*S r3/ C=CEGV˴9¸;+:,7cvI Mg0%Gs YDǺS:|_n>".*04BG>H4rRX[S\&YVTdPzNLSORD\Yda jt~Kn"v%hC).$2T~8~?gtJT\ˆ`R_[FWU|TzoRqNi,IocD\_EZ^L^T_\aageqaf] dY^ZjW]5NaC0c:b3_/^,v`I+cR*fq)og(d']g"UeNGLO@84P1]*w(j,~16`7h5/g+)(u'v%% guYlV R"Nw KKo,w4 1ý$>Cz*:n6L n'E$nPV; 0T7c%R] L  ("!Jr:V rv ~ 'xDEDX!JeH#v44UF*,< 2Z4}r]{+ jP>l+Kީ q3yص,&4˴̱0o<˾sʧڣn5:~&o^<_+Ųy ۸uv B&/&-/]9tBJPhTLV~US4RrQSiLWJ\Tcjt t!}[%p['K*ǐO/4e9:=jk@AmCȅI[VT_Anh-m-n)DjeTrb%w`^ax\rYlVimWPi\jcli on3q8pqn.plKkl)n9n7rT6t4cu2sv02n,d'jZSoNM, #Gx@dX92F./#`2 576640u- ,`*,:(%J ?f#n}|GX Na 2-`Q ;C-%)AL+ 7nlj5_I bp=~<#gvxT? gj_6 ^=h!eo{`h]+o&+2OqNsJk>Z/00*0̭^KY[Nͭl08K3*pRG:c"ѵ0\آYk1a*iJU7 KDXWk$,H4=DCXJNNSOvN^LCKrKKM9PTUZ.uaDi2%'qc)x),/5\*;>~fAzCwFw!Luy:U@|,_ZVfi|iH6gL}di}cqwco@bh_b\^yY]pXN^\H`bkd?iimgmm@njlgff]g?SgHg?h*:g87h5Wk 5n.4n2yk0>e-V\)(SE"L0G)B;s5 0i,, ,--.k.|p,n(#Y"d%#n"0jr3`Y4! $uf)Kru]bt6yQq(@0~% /x w& NbdSA;:TB=_ o WH ) 9U kk{Qm:J%nk \GaNUx8QTȷ0 vH`#D+uC?ֿͭ.+#$&Ю]puKA|Т-3MZHo9.QŤj *ո a| Zp&K/8(?sF/K QNqM]K)J!JK}O TkYZ`o"g&6o(9v)7{S+}r1}9z@x`EulHuKvP$z!XJ}_eh)gyd3a~bexZc7pWcga`_\G\U\\^2aakgdk`gZmikj.h"h elcd/\fwSgJhBg;e6?f3Di2xls1my0i/c /Y,Q '@JD?93,)J)7,-*+%L(0.oHF tKHd~ʲݹ"k-6_=>Yr: <`&P,xm hj1zrdof^\Zz{Wc1iv M `6xS.Y+ k0xHwhNKm{((*Hq?xӳة%&=۰e;]~ҴU޽NqXCǫʮߵ}FU6~pީ)G&~5~a/[IBXDmI &v Tp#%, 5O/=8E}}Kr^NfMdJGGHJMV _Tw["b+hi0nX1 t06w0Fw{46u;"rB/o9G nJXoM"rlPCuU6x\zsc}qg g5hdj`&zT_3r|_+i_Oa_\(_[&_Y]`4_d`Zi0bkbjtc]gd3cc``0_RZ_5Q`JG_?]94Z16eY3!\O2`q1Cd\0c&/^-*V+xLS&D?_h;5/q*5&%'(4N'"F7(nty u U D&Qw<ʾjҽNXS$zW[?kq)~CZ=Q5sF@MRDv5<%D 42( lo ]z#p`ahl235//_h'Yfb?{ 3`rT*rBƴ S}qs=SʶQөض_)d@|Vf ٥i X ] 2 [6F T'/X7_>fD>FvE&C>8@K)?AGO@Xr&`81g8l_:o:q9yp:"n=jAg:ECe@H5fKWi'Qm&Xvr_wepzg8|f|b%{_wp^p&_i4`c`]^Z<^Z_\c^i`xncoe~lO_o~"4DS` jq u(w.x5v>sHnRh[_bUeJf>g2l'rx~}xtxq^pBn#i_RD7+w!eTC 1 wpmlo5tXy||~%A[q  !7@I_W|cp~ lG !u O/nO. ^?r%_N C BH$K:IRHlHHKUf y"3=DKVfy?c!<Thtqdf7^ZUMCB3Vl&\8S[FFs4l0w/'s@+PyK:zzeR9LrVHy_  ? 2 ` $L#,~`~[~)[J  4G k A  . L ^ _ r; ^dI0 ;-kJI#?v}7{UV1`scjG5X&t-9Ro@'T ,F,a~ukSDYESnvj\oV@^xxG?s5N& &Y~'0>vl(g} B#v+1YSb^nASq\,Y|Pe  a + A_2*StZn$/l!Y#I&(+.|1  4%6 7 8S9:$,;|;8;L;V;n;;a|;/!;H#;%<'g<0*R<,;/@:O178q2r5314-55%)5_$6zY8w'9[99 98<48e#88h9 9`87 L6o3 1A(0M.B,`*7(%go ֍чDs }qy upEln0hdda1_^]h]<_Rbgh:o/w M#FeJ, èYI|w CѺyTk B]9T=rk- AL0;^WRELl'aÖY?Z]`U cgj"ÒxJfjJ}wa($GKo/E0z#96d "J >oD/vV!! Q-)q Zi:Ge eN69G[ 1=woȕ}xM.,* +o B] s%G E Dk ean hQ9t|d]m;5ޅ; -2h&uM\ IO=`35:4쓴^w!?*yxk6 #O]!54XS_Wm|}A?UVЁL0D Jmu*N#k7nbއ%)B8|N);JX5޺vL C0N;WTRbµ ZbÑo?)#W} ,"i]NoJDF^|\VN6p!Gm\^m Fy1ѱCٗܨZY [/WMDw\D.q+(K PkmxI4KN~Xvd=qZЈ~.Qf? 3" W s> Q) v~55|k6}Ȳ > M N s뀷q:A`h APegxo>!±K%X2&Y$Z">!8+Es>% !ev1-d8Ons[C# T &\V+3s/02!.K~,k7*y_J)PL'NM&$%E%2%?~" 10w@?UqJ֛qRQ__r %#\ 4'"z(8{&]L#x-% GR yh*j]/Pa|ix4)1E aK+Vzg-ifkZbq?*ڣ pr drze ^ sg?v80}1?-@W f'Pm~ʫ3VfT_0F:;莹#?RD1&"kudvs 6RQ"~e 6~ R {u Nz a S/e%L#x|ҪZ-7:; MV LD`jݺhrtFcٶ?6&χٽDN+_Ϯ0ϙPagNYUVV{i0AK{I]?'=Z)AV哳הG)+\#Ywd6hiJ @F䂛2y o)KAwS 9C ǜo"Ga /%Z8moz[B`d[ir샹,B1Rcjg_>f眬9:YG0f "ipD1rp92!z $u =j/wSԃ4~ 5ʊySBg%Ind\2_uI\d ^ N &o<,J^/ /5-c+<:*kn)h r(,&%DHC& mT&$<~A!RasL\}UK{K- T#?(Ea+> +H ( e%@s "P x P  Ğ| g6 w ( > Nڤ #ȿ YB   Ǖ Y  2QQ5v!l$  x"M?jӀaH2X{ )Wl*7rkpzoG 9F M c- T~Q-4j!.Ղqc5}h$V`(p鏊 0 2F Rw X k SsI *sݣq @.הwެ|vLS^ ) D  rk1 OԜbw9s35Lȴ߾$(/,&dDž1UpY FӜ;zy$c#kDE-y(=%ɡ+! Tv.j[~-ú XCgoPr&DpMA11]"C& V%{#!llCb>LT :|0JljF2Du'1+4(i _ΒNt Zsp;B$^HYiZ< D|6{O|b$J{08f f_eF_$U\eHAJVDkq!UEg&`x(>Z'%֯$l#^^x"| %CZl>3|6C E<rXjMhov7#/$J #% S eӇ  ] Ӑݖs=I#8In Ea P S b ZGQ= S _) b ; [NU  4 ep ~Ͱ*f;?W,nB((#}&C} a 2 dѕ  dGq n ]4/ j\uQ]8%h :f1i 2+x Y)^; ?Hs dц S Ʃ᝸?0ٹwK]7A|t {b lo dia|Rw浙wI"0&vLQg;\@ E-; ҮM7]0V|1WHE.M_4ZìѕZXl;*hkzC\"jf }hkIl Kg$A2"2`42[4wtHQ¨h:^MK=ebXI/!&W)=)'$4w& $H"f?n \?@Y8|\JLm&Eo< 7@VJt[l$|Xț!Y$_B$,!ڝh:Kx&'cnxu-S!eZ yo˾v\U5 Er%#=U  5F x$xVk46| aB .OVHy)$  }Ǽ #_; Vtl 6l M){ x |} s/3 ~ uW-D_BP}0{ƺm #m ] gN ~Y]; h㟣vrܳ/|6AW<$U߱(C P< pD ANa 1 R xR Я$Q,9@LS25Sz d޵ o$Tۍ(9ovܗ"x\Vn5vvK+dK,w:LCVHn/$1A2V&N_)&趦"*>V/}Q@c Tp|s{Wc+JKM]&n PsOF-Odgf6Slr6n3PEt^}L  8KJ>4A;|Ma,\}VSDTnw Ad+J; s\ ~ 8'x^ !w,&'m&0P$~"~Q L?$Sz["E1RAl\k( |Ҡ=jPPonz_"Rdd~!r oC6{Tr=~`IȅNd9 h%T4MNr1GW  j):FU*,q$1 4 A/ WY sb/ zg f H jQ D i+( ](L p! y 32 MI SE~ LVo>/ 3Kzt8=yPPd. Y   x O )ԃY_r>xjޢn_,c!} !쨬 ƾ8 , [WS!zKp) B}bWJ -ޭR@܆K3kWp]<sAq sn}@#2r0 Ez d|밌=P ;(_n{ez %l_^*s@(0e8N5jP E\鱭 / ^ pf? !Lݪ#qܪ%HMK3 ZGj r#}G1g vA J S5g"Y㛏^A- m/Hg.TlV3xܿRP3Y(,~X4X``/p2F: 4̃L crW50j - X! 3rm=aG $N&L$JIL!~/Zx}#[`)yD{DZ&EbY+mpb5d^Z\ch W% kcQ1\mad"B>4H!  Ru6|4D/4Й|)pb#OL{6 m dN",w k, y.Q2W'8Ba v 8 ? #)$ %} :juII2I (JZ  ! aP \ad }u vfG.k Sb !y ҏ(N&.TRQcȄZa"jB_ x럲 4 ~Fή 45 nrWP!߻?7E6镛 Xy Rf )HUu- X sz ׃4X煤1&1ŗ21HY G4 VCbU aV',9c'N>g+,n#Gk0~`CgYo*C~%UG2|g%Fc5u7 tTt_}3z*.WF-s}z0JڝK 3~l#2ySC[B^ -Np.2g%0M=-y'PLpעoB 7vs4C*B3>fto@P<M/Kv 5 u = i- Zj/"wGL :]!g2B$WR $i~!(/L [N+W^w NI&=  idR# : `/ v>1>6O  T[ -!g1 ]ySO "t{ Ɋ +mw  wH &s,=x%Eq_9aPf.v; 8 O @ =NJ* yD)jFr0({F34 jQ 't' 0 .{Q ߙ tVM$  1 bn*sf.F>C!;s B^0 KJ t n^ ? L^ag !BRߦl4ĔߟMIG^|p( q # W B%. H] d( 抁fT:ܱZ;?Ow;DkzҚfuǙyC׋n (W~$3Bp]̨mFήMzl6^u0Dw=;C+ 4?ZG_g2~/-c!ln[,\S r8cC9{^{%Yc_Q﷿`0c@R.*P;lPV]% f6sL_.,>q6!*ɑS^+:u  좜 2 ʑ BZWV~e"0z!{"%}(! }g52 4f`aU~z>- Am  XP O7W k q@T_3a8]bKVz .. 1%% ޽[zC ce ~d 36 S UKK Jpi#<  1vdqtǡ M 5 Hբ  oi c @1= }Q {& Џ 4I IC Þ6! roϷz0jŹ)! ̲%SLaBOM M oQ 뽈 8nQ $ !l s `ʉ7"R#MiH$0Hi0.{ Q v6ж DGM 8^G 2zÕh_!1蹧vAD\߽n) ;4ĕ$'Rqe4>l&$d fQEeZB&\b[n4 kCy3LTqCHP):4Yd# YyQ7'N?T5qgz#f/2j cLI*+._-ICz 0 /0 fIF4P4Ze*@U;&^}ZD"g9eYaSJ W Sb & Sv){}|X1s= > !-u,ٱ 4k*=^VΠ=Z\+70H g5 k7 k YθNPM8/KQ6I r;1 h<sI7:#73  /"/  W ҕ:/^6?b\K_EBnBj gI g  nB QC<phi0Ae t6 < w j V oE \ $X'&0(V{(r$Sn 5 !CV7_@ECC X iY 8 @": Tz :ا "'NA+i~ Sa(z@&3h+(9 '? YwTN ? [ tnTX pS ޶Ns.#IE_}C)4 yB6ἉV\FXMZ#Y8Pu<[EUaUfz?qrdZ lRj=%bIYV4sCj;HnDI|Nَ%L8:XuO^gI|k -\Y=d ܘ[: a$>?e]S" 3~n9aK % ) B` F%"gv"OB~;IL`zlb f" /: % i<+ k2pS3H?Ԧ:b[ 'qF[AWdX Oug ;:mS땒l%T ͈)qq:@A6| 3XKQ8WIv7n†*?dyIP W 73xpGRC )9{LHhf"7-qMbZ ^~JvP03UJteL]B=L]vo]B˪ ]e .zZKbKG[4/ԮP(/%,ɴn[ԋ*9:9Hebh# KPe j( T &/_ ^VNe[mM$*wAxKZlxHDE-|*=[": T( d (i r A% rXoZTy. mD'  q5EV~{ q _ٿ # I u rWLP`+.JU4A~FwG < R  k2B hs8G # |tCM) _&RLu jGߔS'@LEW= =vc$dk(Gi RQ#.]c- ۢ(?Zt(@,=g@< IW1 LCT[.Dj$ ^[i"SMpm=觀Q+{H 5ƧnZzX**&8̣ ۵mbY꿴 ՟t5 Xе_ShͺmH+ nΤ r'l[ n,YF;}Ͳk8?D 0[[kmC(l{'&8, 4,!D! 9-)"a 2~ Z.', .A6.&*fi"!,#G)<#5z \YD EO3lA1 @J=3b.S,B*n /42(j+O<$0Ik9$<+p #)Z !} D_ 17h;htkJ#NK0֝ ۴0&Z!J AMaUMER wr " Eh\ Svd/.6qI dZqmJgV} \Otpm.zJڼ)+ϓW?6Mܿ޺`twz bTA.hڱChew)^^q?Hmvj柠l%5à p ><lcI;BUQ #. 5$ 5-1*Q -\*Δ+]7D.#- 'ť]X#Ϲ $"N$}& + ;.v)9:T$n>cJQjұ& .sLGɹx uOww9aqDS9 P\]G 9r6<:-`,ٙ-.^`'DE:ʬ@T텺te%ƺ}%򸷕¤m 1؝>waXsS7XvC'S`7yܣ9;-}@z MpV  |  Ѽޞ{ژtNRv*4?;/iw!9M0/WS3myC11مh.)c7%|}}&W' Qꈣ"-` d~=(;2r % + J÷GXdԭz$"rxf1IP,(t`y߬>O͐/Bҝ0I; !\ )}P )87&j$^. PO)|CF ; % g_< w RGݭ O7LQqϭ`J8Ĩ $m=%J;%s4K"`+3i=&7 )^_=7 V 6 ##tXB GQtd,lF+ZI݇SW&Bd&tܬ;ڝMҧ_vUyT(J$,F`&m T % | ^ A U dO }ˮR^ r# A Ll]&#+ I(Bg|r+=4a: $S63頸/\N =B K-y2ƈ#2^R0*a+2e" pK5ĺo Q^ z .U2 k4| lCU#v K, 79jV*3-=apZ ShǗ J_xnd@& /*E  ̦ ?UPw]6=a~<~- َ\jþryH fgxibIm_Y-V4\dHG~ a,=p_W̛Rl]b# l CO{SU{o DQ%+91)s#C14#0( x`D<E > x %4hy5 i!% "#0{?7666oy3z 4:76"4|!q.E!+.j 4m\,7D˩-Y;K(2H# h*x@io [[#\.K tG D.` _7 ŷ b<h6!!1M.9R5=75E337-!1"2+Ou0(;~&ڃ!rC`8bgm_c PGI;! ? [V 5 p_ 6(J4ANI# Eh}G3@p}J R&bTUI6eq#jEZ+ \-[~"ﱛ,!#65˪8zU&wOt_ytODJGbݟxⰴ $f!Lc뮸؂lUS=3>.S@_AY<LVǦђg<ܝ:T'}J!Cm%xd,Aکϵؑ_̈́[׏a ǒ`MQ[㣚R泌O~ %릡W [0]ԓOKx&$v{eto\a#a.ۣz4&0ڸ)c#eyO= ^k z E\k^JG⋌ q2A }YEVCBI =D $7(H0"~-,=8r)zL LcfvD$*GC,a%]Un  L!|nLXto0 hU9: Uw:j!PƁH{mvF  @ l>d6ZTh1c/֌&* J Rh8L% wUznpjNmUuu\#,F|.SDH N3ml c'TxrКQh5Jq , HWV t _[!)#')O (TW;#,nK W4&OM af% n 2iDžBU-B!&0(l+")'(.)++%'`)%('# */+`U%( 1D#17!]"#B%%** 1,0K0 73=5)z.!K(a"I Da>z3Eoq9 5w dD l.҆?^&&5r:-<[=v)|)IL, v$S$~w@K` I - dwѥL   bU#u 09(%3I-.rT,K*(*E%!'Z"$<E=MxH# Z QU$./ 4V0(cR@`ʅI!7 _Kf_z%\qںKݼK-^(eOP i< K= _ ۽tܲ>Gȋhscl]11`yU:ATGozɉo4*98]:rvϗ͐d}ۦDpnD]8RV.GoV0=߅{kYfEyEmA%h2:گ?"˷!\9 1C˲>ύj0;3wXg'K-"=$0?&x;o$X Di٘ՉX^XJ.BT(vGkn Z(-.*f1H!#* fMU(:(DG k[MX&v^W.] >g-;0(B#(> `?+W@[q & p6Ο !z 167 h [e[6._ &"}-05:ず[RO v]4S!%&'*D WL*۴|Goٗv]ߎ װӓD+2a E mo K\m@;?z&gAixp_  AVKϋ e_8UD`]͔Km H Ç1~ZX8-  gqt-0"Un8):q+:;8,.9*4#E1+:2n..iE( & )iE.<C7"@^"}@#!7m.T7!(' &dbFҳ1MK%-`5o7u;Ax"7 (3l.RE&']#6~8"!R#8{ ! Wf c 0 :8\eU# / Zh_VY.A~_&rJ \r^' uŴnF& (2 ~g3Jtvr+FZׅ|0+?ѺIO0![7>I1[ح^/oxǡ7Fsffr%hbUg6YW ՗~DviAсom]"ݪﰡߍ{!&;BQ4EYLOf15w`X 龶\4ݧޠ-ȥE,ҧн5Θ٭ӓ.?g 9_1$/@ud4~> T5KZ v6ذZt#Kjjl!?(wF n-x:(`^2{|&; %i\b-( |) Y & 2;#l8] @p*=|;)Z brT-zS h n y4p#H 0Q"ɒ0W>9,j @y _Bu W  .wpĠ Xq h'3 I{z)SJ0|N v`XYi >>!-U vOV50E GڴR7V ت_`ǟne11   %g~mDNSP  ] &S09",z/#=n̎Z&=ы+ jnh@_)k91  f s'o8a(@.g=@-=`*:]'6#g4 (04'/N9(&3 ++H/ ^6q<D<\?!K:j/!RH2º1+#-& f" !J܈ ̘ 2AVj(G Cѳ!,,0 #Z, _'}#}0 L T/g  =C!k - !8spb!OyD )KuvpL p!#ɈАTnjz*SR upZ Eo .5͜s{ɲ%A])Ra 5ы+L|nؓK R-TF-H+=B=( 2KK"t{M)VWP{p} ؐPrڵ0S cf:QҖڿ/w2O0Ck8}bN %N<`TAߗS?iD׻xMzQ(mԆ䅬:l)$N k/i5Dm!o:!dVW~ ΤFr^yB K~!0*_b-#LS3K#\F%ExqXQ stA-7߉rOk M1*6ʀ)3>49V6].;<%Ćx%%|#E;y^ TCS:$Mr'y $m$i0%QQ .︊oQM'S댙[CUZ3=VTv'B@f| t v W 8<t`z+,v*z hZv5Rm + V籨|7 KJֿB4NZߎ \Ks ٴAoV GsMrC   RM s [k6q!Fjcc# *Kܜ:RaTM<$jYmu $9f( ޡ",Km-,1$/0-aT2]/B., ($F'Xo#r%#YH&l P] 1<%T ,FD){rt%}k$w';;%(:G ` {y IM D /q$" ",$]O#,!- ![!x!P gxl+'0 2 6C&  &֧9{d&}Eۈ.Aɣt Ȫu;\Vkozky;_y_߃AR O6lћwѷ K7"@Ò/kEA#d솸Y`)你ٴ/,ݳbRPx,$|$e]p5:\.weAo;b +!E` 搘O?azcN"S|\;\  YǕK u ׹G/6>F粙IY8].!oZlv V W(&SM](Vw*Z@++'h#pu#J!31If/o{-'&"T"t!GP㥟͝[T)#ङU -Y 4-'5m"M5c+5x-3rM ,m"}H^ws~   Շ,i# _O)y~E-%<% EtE 3(٬oQ撗3beƪyu!j~UN/R%QXAaSe 3 -  Z )%`0X} c MeIJ2gmԛj{U!~ia5QFϞlآM :'tc;Hs/<I"df!+ShM| v}(Zfx'4n &+d# ""yiLmRKI 2 UH [C 2'A%X*, .w.Q/,0ʶ,3S.7*'|$G&i"'!!9\(= r`)|2I34"1o.R*"xVJ# r ';TQ XDC[+!4ا/Ģ-{u,O&Pҏ 8k  %)so a"'m\  1ذ d՜&։#9b$vFL >n!BF~O%-orW!?Jm,.׈^݂ L*GѤ^-23y*e!WgeCj"(TQ,Mqá+<<` gD ,_A(o"鴏SOC GMzSu]Fg?P`& tL!*n1˕8]KFݐܳl r}!u4C_qepQ) 9~=!1L!}pUG|J.3;ZUj|&A%-y)< 'тnB%*>ޟ*,XA nP-Iza M25#|)( 3&j8"ru[MRyh pxjыqYF cM"Gٽ' 6Ld`4ֺp16둏s彣s+b lPU^96~:r;tVG>"g"+OSi#ECd ?*E! df *J(6 5:&sZ %Q߹:GC9sIFYPE!'oڥ9Ӑ'w}r !8 #[ #Ҍr p;vIU|c5 k+_HM6M %A `k R ް| s/PK3~C HH bM`T"* 8u(<)A<'<&*9# 25A5K5_0&(;))UŢ,z18%;=fF\qFXa?Bf@ kG:(8c0< 9?) $v\/IdKlq1b9^W+/ 8Ŷ :"5>D1 * n O>CLJ'Ǯ$/VWV' u)V;#ȀF^U 0 D 47uꋩUNԤ{Թ+'ߕ[g|I."V<S Dn\vY̹)s͟Q&1Ս 9:llMCLw}'ȵ빕 N1gx8_qѺ1,;]C VB5,R٠1M*@AЕ> A,%=Y3ߗC.~!mjM^K.u:6b=|*Swqb 62m cҦDT (lVPJeKusrWq $  ~gAX$*A{d)(&_p#X<]s]8JN)2l 7X~MV8*$ gk9,!:}:)Uyx'f"n 4_)t/ifiZa&+ @Q  i")b $P%{ šu&2A,^y%"pЧt-+yӹu9 VsV2'-qzJVީ_/˩702\ /&Z t=银ZPo:+,~zwo'u9)LIz"whER -> 1I k ]X LJ ? . _k8Lʳ}ۺ<"G5@s xx W@B * hsPŮgb H-qx:^"=Cp$}<"?>]"=386b=4d/7,n=&\y (? S[. g3'EX;Ho46 cꧣzq{?Qlɧc [n j F %}U TcՔֳ$˜J@ή~=f N }jk e7Bm;6'qO:쥆σ ?_h縻?^t,(94`lPltl^J| !/hN>?B?o96_|~u%äZ3:F 7)a2J,t"Y$wLd j,}K ˖*,sE)q/+@?V 1a2.1%r,J,r(*{g$$+g#>t?41Xa & }vL'|j)}>"}[6 W.sF=gtS.Et܋ݘphڛd , HolhSu 7ԛKDF΅U6rصmKf@rB! 5k  I0vl5vܹXChoڇmq{k \eMVG2a ]Bd h MC R& rZ >P_[%2b~ Dz x ?Z l #`0-tUr!+ ?r  c f-Pw  Q a "p=.B52$b"B3b@$~5%OA3"E, Q(0 ',!5#^ X(%+"b6A@D#i?$1b7 /D'` ;n[-;A OK Lk w r oS $hIK[W . < LH UN }l VR߯ 3 6׌ m_Df\/j `"աiB4USD'-?i̇K Iq缷 h͗ y] ha A)$޽Yؚ&DFƼI Ȃ;ߺUn. RD3 ͨ<(0.]´yh\/N%0UzұLx4+e LY o { j9V߲!ۀH=#R>;+@w(GjNT[7#b<x9TJVu x`s# &h'^W'|w!+uA(oS?E췚Nz!e'F=0OA;"]?@69nw^2,v"e??Gx}c5eՉB b=ۭ{D.A$: +q"+yn+;d,ޏ'G(# %e$S4V~UM,%M e!nUy RJ%|9}⧠z1X !Qۈ5a=S3,?Yj~UZfYVu6Hkp/ze]ډmҪ $ӿ?5*W io. bmغ?I6sZ7@Ntm[DX&uEZ#֥qwr\zCR}EZ]mj e_ܫ C Y2 0 ; ޯZ۸ ,!/.g#5%K5B%5<4'PQ1Ӓ$L*֏*>,>")A9&i)Ӳ/L4 =#E 2(BB[]%a:i y5k*-p?"]l($84'2cg|$Az &l*r)S*'"l۷!ZFD"Gz /;r(. 4v 5 0 W.IKxl< U*Ntܨi%46s4r$ϵ:%J[ @M<\2gJZ b=-\؈Na[cI0<ϒ$Ӹ00FpA+5W(Y^AL'?QD (Կvuw n tªƁNll睪0O lH'|zG#}Rlcdy|1-}PHe& "}&;i\m UiSSr^ ^&pd  JEDlۑ.0# 1Gl`1,UTjpq!l&~'NsO03s2Zr3 =rG/h7  -ߩ R(  %j454 I3 ~.*'fΈ34?`Knu]l#ISl`1 o_ !ȮW+Ō4&c nrgdEV6idgR|ϲfa+' X)* '^S:۞8c1m҄<4$Nѧ6˸̊2F^GI4N0? PX79R T\lz XFO6Us b%k; LTrVRi>.["%~wk~1ñוL(CR,zu'w |" N8H2QUJ KF5aJޣ0`c_ &ܧu' w)+cN(a߭#!@aPk1  _  p+5]"(5I zڗ 2ExPڪ{:LfuW`2pz4Yjjp$ȷ ]AfdYէ&ܡzRAo=wLMy;PEE"DaBtMXIn秮,5gB߸iqyz@ u @ܷ BXR dO] ) (zGw2od ġ' < KLH!I4, ]v-3*60'2"p@P Ic9 gK$/ 0$8½ ze)цB,#) 07<H[>ys=S@,l@%Q=;k= ?xl<79j[;YZI Nm> . \i\d{RRy]C?#炳'366C)8{8۪1c)&!~)K ְϺ ]w뇽${ jO5 ~~$L܄6ۄ,6wK% ⠗6^Ziy0QS)  UU5~Y@(&]/@F*,AK;N''&'* <WsxPJ,^cS/{c'a ,MDi`<> t ;j 3 +E^g ~I  @ Yn' cZ"=( )87&I"X  H"xH ˾8hP A Ol E? x)&[(O25ـ8o6=|| <j8.80L9 5@;!D1tF/}Y/1,=:ťAeȾ>M8Ht4)?Aj+ 0CwY4Ҩ&# *n[cd}Ֆ!h*P y/+0TI/W&'I9 0ft XYm DKtQ33"o< *FhkovkGv`b/'IsȈz+̫ΑVF 歁 C 'f U +>зn/9Ŕ8P 5\lE3~ 2vБ>. ODhg5x' &5}dIDin@P#u@?%O@$ >">u-#9=Bv!{6lc0K#0Ы0;k4+=*Eb!c>De6S>A_Y7M,%D[ nC qwh u ix^ /zs-*o7g ;813 ,bh# $vt USeɒ/ ]3E1e2lJׁ%Ԛ/#N$rLZ"=G1 EВC%c<`p7'989;9y=?HO4/>LӋCsD}u;z/a- !%`v C0yI %4D+}'!4, >,> G > ;w:H9j6.&5C% EmV $x}P}[` _+st%m' A .]v'I֬bq崬kwѨP$M1(e[vl=LgAM),}ɾf{n ljyſ~_u<ڎ7M۳cyL$n * ]4MYoh)):TRIO(Q{{Q0L6mEjDFEB y/;7 4+9 ;E? F~qJ*E5; 5ӕ >,YRg#l< bwkD+ O3v|%""+n3ԌX4J07,2_`$R% _5ݯٝJXOs?.MB(%(N^ٞ%%eGdbBN/.+iEAEn0*h^ϊKi<طTTܦ$zI V҄L Hr̿t}W2+z^Rw+QթuIr a5}i/ ~+:;uڲީq̽+ڴ;ߔ)UG4O_=v'}Q7ͤxfR >5ޛg/*w( ,{~#&JI(Z&"I!}AݝԠ:jh GT4. }iLd#s, Z,@4 \'SR#8DcFT7QD:bm9s om 0~|WYm *03$\w/{'э-V)I d"m8x U jSYNY2$vxU7 F>N뺠H#9v: p9]w 5Rם}w㐠evّS"u2!rNv|o5MJ'I(z|:e.y/ƶNGfm퀌CYS#ykS^I伦9y셓,뛿k˄ݲɇሣ*'Q,v gNI  u4 Dt &0 -X ֿoZ M E2 :7 #P**8D("F%X 0 2kYJ G mHHSg$ L5MnCFH6>3MHb:y5 -RF ';%wh$=V Qt #I|*T" tL # :-(@).T^+H(@n! )Rl8) GF]R@ReZw);*ơ N O 3M QD,Ehݣ _j(] wUgN3/ 4z&&zٌ:wW@9iKcz$M"=2 W9Ю#؂MEX2 긌D\^ĬܭxORuVsɟZX? <qX ’웨O!&hCl!= ;?S WRBL5+C,xmY 1dvtʕoh cO3 k| fvV}f;Q8zIfE 2Yx# ZA$%h.^$g_ z  >!*o%YУ*'{f;)qѡtF$p) %W3ɵ!N:4cYƖy2™ \e4<E| X8nImF R Qk[6z" ye {IH, r=?5Oyn r*8n :pL>Jꁟ`C(┤㵨Cᨭ#8a΄h?ZuԤ#gO`S).ZG C=`.`?D@ 18mA|pLZ +n; eO0sd݊\ n ˭Rh!lu^P4  BD!+9vWX3Pq5[@;?E,l-)YS20:[+ R'\r" 5*[8$װrtiQ *'91zG?_5K2!O!6OZB!Pq NjHgHFGl^b?h86<6I\9 C4J/2I$݂DAv< 40+)O;!T* ./`=(~=n23KG4e0h$.ae&EA0)e1O\jv)lO$]%JK hv/Ɂ4wH1^ܟ ˷ñ._ > 3W`tΔե?cf_4uiMPYջ ZYs:XyoyR ɇ*,}ː|ĵqw?b $Hܮ] O2.QinѝvF!-;(#.bݭ 6Kw P y Tj 3'JްyUؼ Ⱦו ` 95bYKs*pf_N1 s,f@ G釒 i|97 4 Mz h`C':z'5"YB!Yul?e ! M w. F q5 f?!eV%UJ"5 "N ,n=% P!,_|9_3T>eb*  tjK}=idj t\ [)@ woSź"={W ) *x .Okqp;} 䭌>ߘz^.6,;W߅uDLz$rU >h_^5%5mi)Y4hg#?tax&u +elgR`ii];$K-v:N"!\X-(/7"q O$׎ W";A - xN Av  2* " KG w+ 'u9 18!C6z93U21 +!2 ht%B }$ Y}%[ o"3DP!6m&E V+Ey 93 (A?MrQ SJZSCPRJA&HxDs*e;. !e33;5>{9B; xJ _J G! Df2 ;0c(W2a#Jj7ahR,tC: Zf*Lo+%'"р ,ԑ Y]LX[?c6ݘck}=SDˍpo6֍Ͳz4lMJVp{1´>|9 4CG<R/ax(e.v.fjĺ޳Lͨ}ӟ Ü- {]-c*' 6s?a]mBd"vX߼ct׈gv#s"b[I7koi,S7o|o`t*v?~>ꭑ)C(Ni^5m #]%U.&M!t{@SZ@8z    +2G2M0:+f C S ݄|+ o&9f#m ?Cd'V.&Ncc#>& Np(tK+Gj~jsZ6F+^w<(Y lL agz>8 U]a Z0h⍀/U:&cٙp إy^S2 Xܿ↹q洬t*韒*x'J:0fFN,In]Eɛ !rRN<C,V:grOuT]VMORDUdRs̖AQL쌼' M? f8!q,;r{JnA _i' G0q a1 H,/ <- D'. G"O /s"6> h! ,' bd ){ W7KIEJJ^pQJ8{Eg6>:(6_^ 0W *Fk* 3-O. o1 ;W0rE.#FIU +CP;.Ⱥ#mw!5 "ljxKg  gWt# 3! b -A ^'%zZ|9DLV~"1`bs8kvl, 2J<$[>F߸rPԐLʪD*5;߹WO+z֯a94'Ş~ӑD.Fۀ&[jLJGF­$]{@Od~zĽ jBďjGΪ,R  u՗x3$Ib@֫.P@޵f * JjqnsP<Y#BVgS5SCݴJj*]8[^?J]( lK (^ {0 ifw6rn D<)?N-.è~+6%/ ePM f $E[k?&&)\Y6 < <:TT2%()ñc¦5,Y @1*;Bh!!baEo?/D#L s"&p rbwnmB5L 9X}HNX4tH_N=BVض8_ "=0$.` ܄%BښұHФ~ѧ;͉Ԩ(Q^#sJ.`J@+^qGJV3`I,CGo3RTQҾn韘kaY?_/ -_KҐݕo@Z9ځ`Q ,BSZMK[HKc[G{dX'ԧ  ?~ # EG JC #3-c/B7n,|*dI_& "L36y;N 4I9K2of>P)E8fE'WJR/!cI"MG!LAr:KYv7/M60t,٬:-^11]W9EdM}?0L'"D޾Ǜ;1Z& ֝F2 4O^ &8@ [+ ϧ0 r <"{$B"X!Kz 5, /-?V 'R'Y+kJcSRG+g\)bdru8I@i:c6w59b7^ߺRS5QObvF1M7u7E\櫳<޾c֦^VlSцT[ (ËclUbW=@~QIEGօϯ(6:XÈ:e<ICi#%Wbc#T_(o!!sN):[WF5 mRT价lxy .Q WX")zSA (  2O i3 0"tlY? _ )X3V<#@#C"< cp 't b9 Fz Oo"iqW)%"/t 1| 0+ $7hAX o ԯ^uC^e'>[ 2>"I#Z$< ? oHT , \w8/s8Kp}FvBj_zp~:iR~t ! D\@>su7 ɍjsRmݩ nUmTQ)#k"3 _=K쭦ܒpޟ+qLfGuUV @,g1 fGS<ߓ EDߣ[ߌaO݇x12c"q*C 8M Śĭ  8 fӋ 2v<   I? 2U<  #2z/AU8J#~:=G9T64m1-A֋+16(%P%V {lږV#MS*tj^4!BWvnNVߣQOwL2DLGB:APA`x<78ʃ7H|SqI@LYkUv,Q-:ܣ9Ҡ{w_ΎcF+ G06gIһ% LW|VLbc)$쓻 }ɴjlf;,m۶5 Y&o-l^% d%ߠF 3 *եL 0:'`  J$C͹|XUJz8Rgd&Vh_uS/90.Xu Wh{AOWK&YQl>jD xfxgI1$uD*&)i $@m)! 8"T  9aV lsgpH5]s ;uU $$Y}js,qLf cCT *-Ho&_'M E"O(jx^J/qނXtբ VfFF䌷xw0yWQ> -G*m* _ZHo슇04리%@C 9@{0#+7?eSRqpm*V)L}X sI{ bA*$w%R5(ߍ'VKz$X<$ !]#bE\Dn\%S,!u 8njzXB {bD%A6Bw>]k7S :/ -g c+ ]'X%a(b.b. Zy6 4Cw MEHO&@M!LVIWK8Eʌ  @d\_BDXSDJ NF K C%s ;4eM0~A%/oۭDPqD KUeg<' n!dA|,z?C m0z>eÿf'ӻmv~Y¯Ya$-E*@l7Ɣ /= #Z]70]٢ I&fؿA)'7j%Ewo|fY!4!sn٠_pktZ{jbDڑdb'*I`p` bas7!0!n!XK e6?V BF<|>'oCeO%>-W_@0Ƶ+ow%;l4WC a. v3 F G[YWQ^6 v  `2#e%[@Q$ǗbXɣT i[: ~] '6w1<Q@ >L 9"+Q剂LtNi>q/mLr0n.zHUctx"]][YsI ڠyU> ⒺnZHHn_ 3vVqw= oF;>5kg Ik00XQX5&MA5=<v">V%.&&o2"7 eM`w^gchEAh7e&4T3^< R= 9Ξ S4$ W-] `&x f$Od(#c6f*_ uYmvG!Аt(P ~3\f={NAS0&BA<2?bW;u< ?~&;Cy7\.G6GT55, )7{ p<'(A(B>4V 6k1- I:#$` O[0m \l6W1V kz1 Lz;wFmjGx{s .4 L= lx E)qcE=CQt*5G6srxI&(z!'C‰O{m,ڂb^ʣcVԆپg`d{$%886!tdŕňyېsP򶣣pf+*Xi&0`|8ǴRnt/LPInSS<K |DHb 9z kyVj2J J[Ve樖z4– ! ?t h4Rh3 &:lj /ICfWmc'Vf? φ50M Z z0!w9^$$9&FlE&u#)-%_?c)݋4(j$ 6 a" '% ;.j 0 * ̪+e 1$#d,ĎSM -& =c/PY3rɻo31vOe_"1$YS#} t \Ojk:,c FOv"@=xg3=w$߰AX75jZK{:Qlǩڸ)_Ԡ5n\H-屣aNcil@m"c/C}:<`AeBQhDGoCQILCΨyEPEx?l72 35yi=5W6<=f:Bа*?o=8w2$)HTQ ҿ~ b&/XM yȡ "8 Y'i % 6:! \0b2/ xU:,y,,#3G _-Y)7{37 z~YԉDm$L(*zg>ݪ&W<)=Mm)y)Ўxn 1<`?@gK)ɩgքm h ~>xx~n,QJ&Z()1j$Łڵksg B?*PJ(`My&<%6͠HvIMX"= 2)} _vEbeU;Cj  GKŊ  xM : -iQoE 1 W3wmMC!~!!x# ^s' ̱ o ( d*\ 1 M: "/ I=ƛJ.rP'S>WzXiUVXsT:POH/J@M,>03=(L ?V aE%)QJ?H.<}B ;w 1yO$7VFSCh<|i  L >6 Ci*f',[)&,&o!ilۛ%  "-D&OTqL(\0\dBRaڋ(Տ'ڦ1$A[Z zgT5ψؐa׆lo^l>I7co@j35ɹb M Ў"Nq:qS{:cKDǭ/YCļ{(թ|^SҼt=7> jvTΊZ0"D@ N2 9 k y$ 0~a99j /1CZO>@ gu_..RqWOHJ\gaRyA3Ԩ d:#ւJ4F vB ty [ oNX5n@q}Ns& `GV LӁ *=q Sor[{1s   A c) Ж`6 Y~vHw1/fQ"-~Uu{M_A"`R.q}i^Sxl u%]ܼi`Eр쓰Fh622}:3zHw{Zw&=눥 Kdt/ LZFV߰GlG&`c OBJ;N}mXW$ YN%#*l$-S0/Y~x.2~02% 0/.0]2J@7-A=>rILJli2HlsyCX5<=%50e-.-I%Q= RR#%z)د2@XYNz9U< xY MZ Wk R @NÚ JC 5B[:Mf8E'7)8nt> :CqA7k8­.[#XF5A} (l,QxC{=ͬ 2 0l!0+45" Re C,ED<·2hp\MoOX(isY?gY^Ta;׏OHCPrq\ycIEaM̰vzC`"̠v$ͿBXvʸ%|I(i򲄭Lܯ܉:δ.=!_r%,B(ůbl~RQԂ˽eS!*PgIX")[ k Bk ~7,1"N3HT|<+~)縎8WL|9fH4R{#kϫ( @]~d`_kvwBP>gƷ~mo<?CZ>@! q' !U*!S)۪!z$3B ' Eh PiHe<E#} #,.'G_"29:0s^   2` ~'`W-(qR; {m z("$O"0cp(8z3o 0tO*&renw*pgB5޴^ E6~[ ")WW+읠6?so)~ڝ䩖 OܪqK⭉ *a"nW0U̅&5"䝵@/eMYb0PlߧKǙ ZJ%[j rP *!N&6""E%l*_p5]_p=,r<\ c8uf3v,s+t$`_ >Z.BfMo&ݕ5H Dd ĿJ<1;,8<0 ,O)f "&F %( ' ..?2).5 ,&$ <;Y XF Y4 B?ǂ0(VU*?d Zd !jXe r]{+N ) 3DuDwOi:kv7Au x A= h&X, l? z؃ƌA؋T<.6omB!JB, `"ֺ'8-!,a85/#~9.1,sPl' [# N"&y\& "A$5 9 n5 APF[Y\*U@ 8J f :$}kGw/"a8 "+hh/)5\6- qx!YBy(Pfo5ȿ7mԿ SdᴥM孱'f䚯X@+"̈́QIĺ{oR.-0Y)?^J<_A <a<%g#Dl[ f-:;[]3H1ܻ$TM*{r^NS .)))!r.t" !",eI#u]+;~V >&xV/jmZ6 &6MJ B1 .,a k%\ { G k& =9 A 1 "Y*H9ijF8KOpI) HGD#>B%) 햣dZX}gh^ϑHp;9$|xps6㔠~ڄ* ..cӢu9%>EFCQ-A(*}`Q|U)JuH~KIEo P-wgt q@ Şd/D'͹-'`\!EC:'"(CW,F/U//4-ݾU/-B,2;)&;*Nm.Ѷ2V';B. FAc fϛMtυ[J-R;xێgSd9GcCfAP{ xbvJQA-ޕ1eC?# )[t"IHH_R\E lyM?9 GДZ1>_#+ 1bHv!@/]Xi57D9QW7N34s,5ATX1tk- -r/ m3 ";lAT&7?@89Ǖt6RO0_*Z};)6p)!e '('L*5/V0Xİ5Zc?_HRbJ `Ifn ^H,C- =9 LL; m9 2{)=$e#J$ )&pp/Z-u(%Z*4laNwa 4_>Zb1I'K 1Sg IZl8P4ˋ'oPHgq 7-]*q }3f.䆳ȸZb&|9 uމma h!Afzg ˑu}SGft{DŽ;H1h$m,zUs s lA#`rmC ǹ$+{f P^q1.n|, & Ƌ ƑQ?k38 >{[ Bw1S p @ -MT=6 +sL+Yz}LZ uyIh,kS G_v ^(1 18ٌkH?腛㌋uT6䑼g;|#  9R]b (;W $j? 萡 H#m g//޹̲_8-E^ ;bju>0CcF EO~⫖ϙ$ߪCOv1^F), N<$|)VVW*s*{Z)L}&q($(@k"vEsel !K',|,(.(%!!PMMLpWɰ>|D>%!,/6A BH9 e7`(6831/F-)  * |KMu7%ދ  #A$+R 15Gc 8 ; c qucctJ.*nWJ > մt Cr~ | J&(AчWF4FYX>4 i1yh ڔxUw]T~xnx{wl8b̕%=dғm\2<ŮvۦHBFVt+7Qb*PFi|SD>}ߢ3gނWځԝj 6cZVõqtp^ȫXw SG-6gN+O"o gq v n ) :[  p@ 'C3 Y Zus5&SC@;&rK!40Z 7 KWO R{ S 8oM9.o|Z o e(63\Ud < 3Z  B; od6!W + &m{@|U+o  bXđ$5ݣɫKE hfP>YL|'oܗ %l% (epyhq|Cp*q~%P&J7 w`|ExrS-6FAK0$ɑpH܁; bN)GG TdS?xv?aЇ4_QtiJXB8/mBbpN爽 \G b렔я8xnX姲`(3l&;l @%t"Bq]>%$%(#u"r ?Z`F"scځ$N+' , *f)`!'hM$}#8"2 ? Z|uq) *$ w/a9"N2<)f<׹,=W:zf5w)0zas,c^a%.< (l+t"+*!I2<_1,c'*Y1!9Y F2 8 $4C 0 a ^ PP85 Zp  G ^A se^, Xm E}?Gh,NF '6eLٰ[Bm a~"ā3y/Ag<>'3)ŋAYEBy_p 3IUd/}5vF{ӖJe2$ғZߐrI<!ޢm9ژH՚FxϽGOvۖ靋ȳIjTNwƝ:R̈^ޒD)m;ԋiJXGM:6 @fO_%0Wn`BS.[@qqRfD' Lvf3_&mZחe>i%Yx ?R:_ۻF \yRU8 V27v$&(ҹ?T}m2OvkT|m!Af r+ |< >K.52-n'k"Թ#"gT$Z);C2ͥ:YG<0 5a;΋ E;cB 58&P3/06#-&o"z#xM(]#).n7a 4/B2JsFFFvE@DH8d*5<2;B,)M&: !& cT() Õ+1 1/97q6 10,T.%ʸ  048hZG 4Ji1?5čxaMSHm/C+g6Ҽ^q"6ek%[ vL W !=T@4Jq12\d[-sk/=b%ҺfM&]Vo$ֈݒK_*}*!_ԋ]5(N"痑2MPƉˡe tρ9Aͮ/y?L@t ;㾋I>H,Q6#kzh邂 p I1NTXcV#:? u B` 1  ]!/X{ 9*w Wt!=A5,! "cP.%lQ'&G\%u b#-B!Ӝj}e5uh*&`u .z`CSocU6K `[( g ^4 ݈    uQ FY ڔ|/4VH:~O41$誘[Ze F[")>ÄBmOtqO+޺ Ve] ,j l&}JZXAS쀩al[@ {>ڍ `5 3H *抋Ơa >p%196&ϐ6z W6Oʹ3p)0Wnu/?N-yr&,O!mt""y2 $5(vb1N ':r<5>;]9"4J#Q-g(Ah}%?] `f\AR_3P"s'-G]7Zo: O73^x¦/Ƣq*^'Sz%&6~PhWg$G)'"$sI"•7 8 %8bzXf6tn'hzXvp_)E v?Fd|3,tp9h_ UՅ  RZ.d;G^gvq  ֠{ 3ID`U5'D Ccܰ!nY.K.w0n7 *YMQ J ^D<IK6rQ>%O lD:.W IfG1kߊP|EB(]q+=܎B GR#&>v%[ӈ%/r5&;5#!b47zs#wk~! Q%<@͜.s x/,l9*)l#vId.-~:) @K* d (p(U'& %%,"H2}-F{I k ѿK v@t 5W3!jEi'* ' #| >% 8(G @ x gR<ůn=ML /+ Hk[[ 4_ Xn  fE?3¢ . +g&߽.Z7hIcVY~tv 9!Ǡ# *[,3/5.a!g0f/!e+=, ;,& !PP:3!^!{"d&P|+ʞ(ms!n3 *oj e `-? \[ {\"tbv Eܢ >f]9b,P lX( #2Z ZRv '^ݦF:hVr֢3>ri)Qa'u/ZOI(vbЉG@ccB%졋쫴Qu jZbf Eﵪ>ې Ա0"ҧ#_ԚFK?n<߲W@z-Ӡ`}ʹ;)E#j*U1&C lIx{Ȥzs|%zG uYcO}G_!jP \SsYsR:yjKk-*^ >V ,n[Hry83B#Y!!\瑏 W B hHk" St#   ,W GrH'aA2 A +y +? *  j[T Xe'W)-vCyEj,= *[9#G1k$$ wF? { 3 d{|?#w0X03Spwpiy*nJH .Z xk 6\ `X ˊM+- r .),A.>`,1)Z?) *8&k%_9)܄I-G1Fm9V?c=Q9`6 }_1_) B1&/$F.nYan JF*I3zƬ6޳ 7B X.8O [7( R3 2| _1 y+ v$oh#Xf"_!% @)u4'2!2܉" .ݜ | + TSh]Ӭ2 $EJ)YYgPZ5M uqL }}IsY7_C'3O,毚}6O$B&-'`Ji&~ߵѢjTQ*[`ǧ*wm;,\(~06ta[EEhZ=4n<VyF/. aG8;=bI z? km01__"T"R+6!?9Ce!7.(_pg"C| QN ) Ew|(<c.g ($X*G)ƛ+6qD)y>1'i(b )Zm& $ͥ%'e)-W/5T4W62P.*; e$Mkc&kH4 [ NS8[0H& 1I)B)-+.jՠ)9i%x #!A)dk1up EN@:|vUWx? {Z`j-[|(b&3+x맽^:TypXgڻm6OivU_ғfjC2^zmj!يX;xn45}8 %WK,\ ߕ͢ڶkTWҎ:*땜 hbZO ܣ(їQbT5sTSn V4ȚǼM쩏@<}#nܳ6&}`ŧjцRWһ.PpFYA]-O?<]CaG3#\j ( ~*8sW43 K$ ɱ=Z:YW1v r? xlt#Ic1C1D -O#Z0$V$g_&u%_$ib!$#~#K ? R uGس /" &F/;) '"%~$f7 { "M 9F LL_gگo qK ` OQ#.'!QQ2EuZC,2E1_ "g D= "yk' 4 ( CQ .^/a g /7\u 2PgL)ؕGfw# QX' -y \ E L]N:Siq O.8W9)j(x_[^q Eo%!oyn^Lu3YԚչBױqڊ;"uLw$W,qc|3u (.aHH7$m]0#y]b r ^=< V i _}l R7f= |v0bFx Q n%  @W.]ep.d1JC^Qz,05 ݚB|]Qpb>i5xҠlKE֌dtM#Q :wRF3K\@lںh]N ? p4q<< bM@TًsD%!Յ ex\F`^:#Vx2msT8kKm/Qh} pk;ij+  #1Y.^-t^qN(F}ar[IRy|ԥ0M8X- CIF6dS])Vg ,v,?ToHeZb ;% Lb1.PmO%0 " Py K }4< 2gs A" 1 n .o t Yx-?/|x?vD*\&|^M?KouS3z9V_' }& - PX"HFVw0랯"90ce =+q$gvJY19hr b:)OGzIrE-(. AǍus(W+{\t"CnQcR9A!S!V ?!zn"$#wU};,~ $8(Lr?'(&/N%w3!J¨X4Aa[ 2s hh,'j!L+w+/y0|*1J!/uvd+~i(h(&ʖdm>Ȅ[l =g X al (iXrVl H H^  R4STnCi XTT ! @Cy  xyb~$ i@ )7p o tx R t;҈fq ;SX k^0E"/1*KPq u3`%tS ,14>Y'Q +Y.DO11[u/̀/,z- |'L#!S# ?$ r%N+:1Vj1l.m"+K%HςXnOBgv̘1uh)>^q,';1$uj4I 3= 3p 0'  *&I$"xtBt};H-+X@5?evbWygK_(g(^IW >KkeNeezV>{Jx,iDg5+Sh<柹3[dU-^Vu1܀EJݻPKJbCӰiSS *#Ǚ+^[K{'9ϼݺNKݎ顰۵T枦ՊҺ+oSU͍q v9 SӣPܣlچfإP@D#jƮ=TPfib"P ~%*ť‘oM}ޖHzfjaPyZz2GkcSLq2dHmGgTwJ.<&},D뉺 P3A wqg{% 7zfo C"%s#ϊ "F xl zi̸%a6GaMdN׶Y 4$ò+(b(F' 'y <&o%5@%%7%e#if" $&Q p'0*@-Z,di,+0,j#ٶ* 7'h%$# #}ffL VA0 7wٶUkB" ` ;8]j> 4 wK ӥ-L , t_R!TF.wbwJ".r[0X2}x >~X$l#z!j7;Y$[6BE$D,ںY 6&9{ׯlzm$84<(Um#*+p+O*s&,$A2#.pmի7\ܖ N lz%*/$%$,3> }nTFd _ )V%a$o~D CM6!P"@8!z(= #`>*nrپv H,a];7|ID( "vB PZ1\y`u/m:]GKsy%֢:ẀJ)9eI-s;Kx_LCJZܚ%&G4\QI<<邯P ߱!4)JBYk F$fͱR")~ܻD FQ(?+0|X=erCz%]lvMK@2Du`~gY+Ώ eނkIMA:&)&m_$Dұ٭͔o[ҟ=]%,)s.K=$ }_xO-(PLQz[ ZHs@K +~P` - 5h Yw Ѕa ́-9p\\smcjl"tK"ī"\#Uha"5!D%!-   n8Gv ~ad!!_d$-'#{N""^ʕ  @ $ & v=$g9u Wm#& %7g#& Yc9N@ %hWwA,!yS rR?N.ݜN9'V& ^V  eH-+_Zؗ+irX#+]xzÌ'@)=? +};ZQ pZjVGM#v밸W RHR + kr Z=~lYEp ۑGد6gRJ߄pPNQwuw2緖X0k/ s63w $; 3'C5K4&FN졹 먀;=}3 W'b  W Wz|MZD B6\XQH=<d_ieQ }[x:3{$c2    & զ t X 8^8̔.A̜29<.K518 = O:4U8A1 bts 'j K ` 3f:K2 l e /<  -tY xՔ ,{ w B|xiG1:נd8q ܗRpwf^ %b f>AU6^\ 4j,$䂝QN;X(FC j^`籲VbltތUTݫ,8!x+ik~(}49[\jc2!}[k&jLm2f'hit!#&kH!F9)}'W}֡{x7]QQ sh m8V/I* L  qTKQ xZ Ez* <j.c$0Z+e Ër * !s 4   X| ݲ% .J{R'b@9 ] Jhb9 e 8g7owt  V$ L(N@i+ڴfm?i8JY U A;<4KS9 4 Vb $R-/i@c F?K@:bK&W6|n$dWl| 5%B HE] w#i KR `g 3 % G~U=ZAx .q9 * V#r-fغ:k,b=,NO3? f~ \p! f! \["yy&!ʫnq5"i}=wCO]B, `jz]7 F[ci+h9gKw 6#2e&@j X'C & Ʈ' ~%L !P ! eg q\m %r~JѹCrfj l Sz=:4 18\=eQk& pN  U^y^"],ZXR\PK E bf H sق)i 0 {9^a{64"!zi (kHX5ֳ5?ɄNOhg|֔:/=^q륮N+7A+LNGy8*G2,U*e[ ^z ,Cw<Q3w/.KDe{|գyf֪8ޭϮ8݃Qi!gO'@,xqQE@]"r ( F,鿤Wk%͵T!fEO@rxr6SdVPO:sC<~$y0ZY\-2 & /V9^5b LG]D K! ]2e;hOa%ۺ K cg,b(!eyB:Rֈ}E5eU| & o%E &p %4 $L a"h {^  AyP@V  > 9s?`qE$& R1 fjTXg^ֆ= n+]2t{$F,XDV$l2;.o3!f,-m(6Nxp-m}z'b -^ou},F\#!JBy匪@aa֚M[Բ;9d LȖQ?0I 䢲Ӟ<= ߵ>6uk#|{ܩ.S'ѷejф4;= VECg?!)hS ϬpjЦ!HbƫKމfө8Axqޖ7/2{+B 3Q9o&sFV>"Rg~:JN7o dd9<"-Ŷh-+h .f6 J-Vxpxzbqذζ=F 92 j2!  o <D8 m1wm  <X Њ q2;ruQ h)$Qw)#c+O)X3(-' J% "$o ^"Dx jۚ X4! d$> U){pU.'8. V/Jnā0 `P /b-0}, !<+><'C$$AA%J&;)JGl*Y#&K#C ~h7 g ?jמ   `܂ R n /[+zAiTJ޸õP: W # )2Bc ^4YDMUe7^Tt&Us a $ - UKHu &c {p3tCղ&naͦOS%pMA㨙 ;0 o z , L(IR -8|̹h ' U;&1J*Y> F O aa qDƅH[y}lDZ5 `E! |3RMز)k*v )O f#hMj NT-Rf_,hv25=敟!S 6&fihoOޑ=@`؟i.ӥC4I:텡$b9Ϯ bmW%sHcY聍w)^JI1 }P RX> ;a,BZ1'/P~BR" C"\A4i/ :]N9f7BPj.+%VO&ذKo .-+x *vp BJ LT@cQJ <$ r 3JvMk*4J68@ V e, m  R-D$qT&O#:ņ 5E ; P.FM҃Hv6t>NJj%*!s"ڇA"Ca""R3!K C"kP 6 J Y" n ɗwfRLY+g[W I /_Z-Oa8'I.DIt@s, ; E r\EWQ =nG1/ $ i28!O)f wUf  Er+=KGH詛o'L*Gn1 7 k{|IԄ4 v5o$Cov쫵w U8G?}F 8g,> wxZࡽ$ 볥 UU ;;gUbl悰#ZW쎝 g;#}HYY|k93^\h\ 2"_ A! [AAm O vV @BhQ-t%Fho-{|:R~)N &~4 ׬Y %$0N@kPu D$ G 6w% F v+2<2 P Z!s d8"Gm!EnFA@Qh+~ē{BPU828T /ɘ?8kID=D&-0("g_T/ȫ l'(h7`֊s*ڄM>|"WDZih:gx8n/SNxGm+'/))#.LA7~.%lN$n^Q=CifPJD~< k-K33j2sF|C 8z 1 rC9 UoS :] n/ k AzL5TE  D շ (#m\85W8\* Z BE ? cS~v Oa Q Q}P \)7 dhs \" ] 3|>@ Mv VМ?{7 >Cu7g%(S & pDo3o i]{ ^ dW|  >m g*+`xl 3r {XE R[< R )W'#MsV| :SƸ+;`qIi ]Ew_Hlie% !#eiڅ[` G!~ \nߏraEs&׮ 8% Ŕ .fP:dFGɅbŖM{U"nXZ[$kBK g  e a2 l o JSbdɅ݈٥; r*L ^ Oj H  #x S V P j 67 1\ !"۹LfDO"L i\mncE xlBGVu{?>Po"DjD@m.匳/{Xނ툉^;/ð)|ݛ oF@bмs&Mݴ~~+hu"᳑|b,<=86~@jQJ~-fx3A龿R0A䠧ӥοq /Fge$I$&[.'5lٲ`$C>qce**n2S쥇;Xj˄ib|8VN} m޴_| #M G}` auU m 2}_'u (k d 콉HxrQT -&+F ?P͐f4pfqD ]6?>(&s 1a}. Иz IŪY"G|}/%;QXy[݋bQa)(D–ĞךgwQ0QWpFp3_͆cRVtD~=@WYuο9@Y/ IK>"l(a 9Iauʵt4åX)͜%c;*x+ri)ό5AYض_xI͆X(PaZa KMlW!(Mh1 i lH \ %a,us. 5xB4Z &< 9 8 X16!`&)$3p(}j'ګ%$ݻ! )B wWs]u٘,@C^'") ~.(!/R !. c.j,ilp**K\).7&A5)%&(s'dq(HL*)S6&"Kg L   CB; yo}   ~cK?ެtCzHbY$C f2 R%;8`x ( 3)<G#bJӂ:Y~6aL0 ]# Z-"AG[a-cQ1~,e' O@yÓU T*\FU^ .? ;kvs6 zbWZDo2:\ R*ৗ+^Y`@E͗l OE".SAA;gO*?5F/봤}!2ZO轴Mr~\mRkkJyƄ4eiN֥#.dPi'J F %= W'2ۙ4wVs! V[aBO/O*ފ?>ߓ |?(]'iE՜@.꣺-8)-'8MI \( !-Oy?O tm齬*g8x|I篓3_ۉ 4Ztsk1 ]AUwFRFUS9 \| [x*(jp4FN,C1WQU4: *ikD1Q8SZ U $> پNT _U []1G 8DqQ_Y J0xI#Qfqx6@qcMȃ/ a^"Rk!>; | 6 3H2 %5t>A4a+cZ HWI# Db O mɈcgL *b K Ǘ ` KAG\5Z\ h R7 ߁ B z W & ?hVqSMKz1819"4dxc߳ Ea =6 6@ mRB xkG9H^U8] T |ٮ U"H S &1n07oY|XLim})R5 (b Z ! zhMH".PbDSa䖍hZ 8g4at F5.,b.iE =*zf`LU fzB9 RgyUtFhBK*r 9>@D` OѻouEuW(>p:3 I 5+'@K &T u j 0 l a  %-c "6<v6='/%pE)ˇ|j7 ^\ P, +çJhJ # xwG8:LLos}  ɹx]ss y4֋mi"y5L ;-oJ wR]ލx{pF(u83lD6Y;rqk>@\d|Fo+zbGkxnZ|H0{`{nfS:`ˌUmd 6Y+z-RG;"%2KaZ/ @.E~K}w}-J {}zSe`h`BL>5 Qynvu}> 82u^MR'8eVIYA%7$  ]dK  M$\ܣc?7>fT<+T  r .9F 0 \ ,4dr+"J= 1 ; f|| n` |y2f+5OmxT 6c ;& Pn yU c. < Qh}57= P _ O / k 2 , ӾLPh k Q ym1^! 3.,3F BvTՊ5DŽ[S Ur;ϱ 2 (o!HW,{ Lve9 DؕS^(ghDŽW}" Sl* pe \[, }Ԩff\>/&O fW.kUb.~[5 FKs  Xw_x YRTP=;CjBrlUYsb`LX;T - W :W )DA @  ܗ U._5]0IM1rO_Hehު=jDߩしoxqf\[!fp%?EOx~Qݖ۸5!B޺X00rN0(CI `Ճ![%WxGbc0[n;c]4@,E뤒묈韨>^IOۗZ |V3&5r.z#^د]L9 V < N ǜY cx^V Ϩ+~oaYF:3ZG$GTv FO q5S!!]!Kީ p-ӎuMB2Q  A Dbl$(.4(C'('%n$7Kn jV? =|H 2: ]a K*#@o"Rt!R=StoC G@ 6 }R(!~a3HO<Pɶ݆f.N)>?x6AD-fPjxNQpGQe>))H. ÎאB@2"E)fþcJ`? W<[ҢJ=2 ]  ?r?]|mf m`-7]Ž6-XKdPrgOޚr.Ca.)3 ^P9<S=B ,aGeY txOfY@}宰l/ ̊ޑu2 Rkq($:q-OLM[M(ռq#W}ƣHMT猚KD/^/=PwD>?3$}ݛߎ@z6eȊip!bs0}u5d< ݛn/Bό0֊Y61-(Mj2!UUXTIDLyenr"b4`5eb /aW$*[ clj~%wLWo0%tB5 %l V-J3mXX#r0 > M5 ܮ&I t]݌: MJW;X?ISRA ,~Gx X"6hj$q$]] '@ 7& 2& &K$k|""ցN0!w)G"rʣ/ؔ ܃ QU]Il+>x/{OzaDhwaWYKbX ' f L 4HF`y0Az!V 3BouT#O:]WQL5 P鸹&83F2H_ P ̰·rayf(dr Nh>i /jz jW:Vq]Jogۅ~|m8#l[J;ׂ`%11a(qohtGd.`4]`L[ #qTz*`]LRDIihsIaAogAirX!"S6H)ov7iyuwM#,aǂ3 62wUbu$@a=t9)]^c(Yfn+[h 3M]v/KM = D  6e ] A c LW| 0r^@` csF Ai Do =( ˷ [d\ W`<I3 Z) OiJ7 ,2}n@/ɜvO" B Mp hL"! z![y0 qbb+^ a¬  Q a2n p k \ @S WѨ~saquԹzW ; wO!d{?X+$bR+*.H 7>RF2(q z  zv] wQlH xj$R /R= cC t/?.1Fd CQݮL9z(轡U_q "MB+˅J~TAQf i;A sj I'0a #-  aZ 4 P\̒6a0!7^9@,*{n pO  - ) x~=&mynQZ^,4՟z J mD nAK5Co6f?@:Z`v Wk y_sX<aDP'.sl$q=V]k# TD_ELW@탾jJz`TW-A ׹`٪g 㢵M*zgm Ei3KaNt\&t]FxEoEU쁜d ~3<5 `û'ШRg WRL_bt bFmCДĢ2=`D CAm c(h_+3"JD&jx Z E %P F a];.ER: O F KsNre`Gr=5-h % RW fX S?Y  -}AlMrv g͒ @ #{UtuJA+; < *4|" 2x) *rGt mz-)g aj.' EDJY?/ &4¤Mc&r[%/ ` cuXMZSI$a(A\H s>|\*F ?ФSЩhn-M0_@<" h;!9y2r} |MY̩+F(r\#)H1kqC$.8;nCpF\[YO4,"O9Jd'5YݢѭD1F0҇d8G2J꫕ҏ "̰IKг5-ܔp斁tֶ'nrXgꌂz.k "vk$KPcrp0~wdׄ)P}I7rP.O^:1_Tl5X*$i\, VLj E `'+ o  b(t  W K SSbI'~  a 7 +7 & & & h-԰1lZ E=U v4A^2b|\pKi0>5t2!26"*$#8#"% ;4aX;IBpL kRa_JFm _ `J_  u ~"o.!b>!Ðo!s4WDI!,buZ9v9YQ}k!,u1*O 1Ϊ kni {8  #Kz]ݩ)ȁ ;T  3b : b|{H X ȸ-Uq*NoJ$R &r.= 2F zp_C _ze( oa-(-+g ($W%6&\}H vH  ?]燬bI|뜅Hf # " >c7{sQr6׶sh<~j aS"n R'kdP/z;V>%v|Mo%eҔ*H-:*BX쥔?!W;XY/(kF*m-[2an,ޟQdښ(3ՓslZJՇr믣؞BUZHbNO*rz}a輤8C7e4,F*HSrsfݺ _9i7e䩧R\ݑ!P ۢ?K19QRي )  ʆA;YWY/;[?uCwrJd!#֖@ -D)J `aE8DTy|Umpy)_PW17b!?0@`Cs7XlחyRKmcEnN'6uN惒@Z'  o% Xyf;]Clk I==5[@'18i7ېq&ܘ0Z- S~If)tNtw 0Kao8 t#2;z%N}j'SaZ{3Rg5Q;Fp,mADPƳqb#{o!nu5x1Ѽg5A{{k>4;` F _e S, 6̜'7Wa|} Y A Ė  8 mj <z _Eu ߮k bH/*V{8 Qo RIk/C>YS{ vFD ;: ` ܨ R ?(sq!( &ؙ s I; G a{"$,S u ^ t%j% wl 7 5%  N )gM~c-t  %  [+`^%nRo.[ I0[ b~ Sw Kd BVͯ^+MoI[wqh  ;6 z @ CaI! ^%F#X zKxo <Eͱ`#$p7waSͫ>,n pT m< ʌ h 3+7 i2 b9yFВzc 6=hȗ1` $P."QcwC!qKblM,r X3 x \ fM ! 6c_"=,l̥+=bDe/)hduN/ah!18>d@{>f8r@HW䓄WT ?3| '-AnQ^*б XjS4 x)Pj~<ss Q@p/Dk1n& ( +ܶa1nr*Lܳ?3 gd؃k&z+D_  [y cm#f߹^61BimEN~,z S^ ߥF M: R ] nk XF*Bl Y%oQ "N < 7 376 h ! X17/8 mTҏf1Ysq's Ucr? ac m gZN$8ML,} ZJȥ ev"m=RY & :,  ĕ_k½R? ^l ) .y} ?: Ҟ:A 5' & =0ɏ z0& W2H k I1x `q Q l }:6%xb]lkD#iaWj5;g rO;Nti?-/w%, jE vw U@C$% eVDx?m6&_ Od:3kҮbEm<m?'9_M ]oYD q `!Pniy o _Eј`T$Lvn|)a>0Y|:ܣuCȱvRb`Ο A ~u{xH =η F qԥ^F'mʎN׸&oa|4bi|;*أ:( ̌L(ظҥԳ֐o LghT6갧ZhW;a:P;NP[lQߥC?V-WbOQfke$C%UF&Bhc^HMbPmrzw hs) dd =rRb  " Oa> gG0+dSZ- F|,3c@gu2 Ɠ6) @IS F ;uT!un$e%#4&}d٦%#/#qx#"1 Ҹ9:`DO  <"Z qVEV@ȑ![`5 NCm Ŕ,MМ5<8 (>(#ƺŌ+ PQEny]6 m.$~Pt 7 " c5gh~W, qBD Cq~ 1 Sx Ӓ /  ƌ .  &j :lLpE;}qd-2 ~PYf{ B C9EMxG|6*U~h{y?,$Y"\y2̄{W)5[Zq {SU{?<Lm~h+;_I<#s2`#AhՏ(T {piOw5q4k@4QoB Fr)A1HllJr|6B!8Wf$M*Ek6|Iʮ'uM+doEFZ7qC>ab ,uE|ݝ*؞7+RRzwLF0_W'o~.~I*<BMݻK>8:[F赸eH3,WS:$37MܷoP:uhj+ॣ6<}.Kb+Q Ak5 "/Ij;0ʐU@*,!`Tk3.aKF>eEBag 2)_`#$15}up(KXP E;{.-M[O z t G; j 8G K D '+<+ XVE!9 d!+q8> , Q ^ {0 M  ; A;ua @#6 `PԌN"=p$$ PE%[#~v P]`oyP#0An{!/6$bG'C. E ycN46Sb*(!iI^ts_t 8+%܀g ; rQYI|%!' T |? 6%`BJN,H > `f Nq n"^O5-B︙JMW~H&X/@WVI.BYtIY?Y{tI[߀tENy4^[DV'/1|dyv(/ &64y?Y*^1ˢ F _MI; E- <, b?GAQG;blUFl鴓AO W `cH+*k(nrd 뫺#u' C w d Ig 6lj\&u^CkdJg& X= <X'e6ϺOZi/D/@Hi(!W֑ қ>7e-\7!&<%hN  it5id &<SL#xIws=xedvVp7j+D?j.qMb^9^kNi7*`G HdB8e'B!uf$(,@[X%>b4i DݲVϢ/  B XY kyxhtPHsK*1gQ7> F| 8Y f} I+2eUSjx^V qc [/ TG/(,CxhH4Y5yu޽ L!ptjww neShnxumy~#9RRzo~CFY`6U= FS9X]`if-m5SvdJ_T`Pp97!bn | Y$TIz ^ qry\i :|w;xޡx#VMEp竻}o2lP)vf)Y0ۅ`c[әWj՚KvށgU ~- h^~T7n!NN[gJ<\ջ,}hYeq|'4lWlm_c?倫ђ해lO:Ny<~ WiS [ j eg v ZGk ilMN6WF1E [-l9FOJ#Oz 9s xGl,f г_ ~i=tNj )9.lM 1v FR P1 g :-v hP^}xAW EZd lbN Y6Z 6NA y mO> 6S  & ¯ [  o 5587 tO W ʎb L, GG?Պ!4{o3vl m CMl W ]V>X<|1 2yS2 .a !4 Я  PKy 'V* r  T S e :*  B O _Ch HmE Y* LfS b<N|FLӽB @ m`3Fz6u`&w.G >T"aILTaz5G$ Uv>Iv A $ӫ$V R/ E:9~dco>oxnGLNbFMndi m>63Cg"ilacUxR<34 R뫁s+&TB#"4((/.-_ױ~ٽ2/ ! ZIK ̩\PX^A8֝%6մعDݣv&e[4ǫMQ!ޞ[!ڐ=ՊHDݶ??} mtפǗ]cKO%;N/_dk-bIG:c ltC7Oҳ)`Xz>y2uJ'O5! M@9+9sbUئ>!m5yY<\vmkh`+wt!$dCH)TGLe5]D|Q:f.! >#; bg(cd(EK')&P#l +ˆ L^ ~y$QTG 2(# Gp(_7b {`z).c ~-Otr7ՠH ) a Nkj>ZEm#lGKG @Mj7"}Vc ĸ  S7 , :m J d z [}Q [2 < je17!ˮI :'5sW0K,QtOHzBZ[<\lb* a&dr#y `nh0 x 4Veq=ZuJ?p-=eZ1sd*0DȌ%+\us./m~@/{@蘟>,Gp_sj>~.CqkHr$ÞI5}9ﮎoځF b#^ SİBp*ۄGP*Myۋ[ݬ3Z邠i;pPg/܎vڀ=GxP]/(kgB{ p xGvq\R[H"5*U:љL ?aƖbd6blm!Bz:|C G]*L Y  C_Hi M"R ޭ W09 eY uDBOTaB]* L8 X  U= ^Rtd J AD? {}l M - !~!`e}>)9dO+U#5D Z I Ѳ T . ^L'P`%OR #Qzr 0c:0l#fE 4; x e #j ' ;4r3.X+$be`0f*ٻ `; ( n1O H BI;Xh$"f j 0 њFYV(^UmIo";`Zr129yw8n) ]g5jtb һ I8zҎ/D*>E>OyK;P]43%zT-xO*I\ 2T|`5Hr%4o l 2N}Դ@e=jC2 F~ u<9 "^ @OD [^R-YQl\Aa2vn짗^߾e  Bd j` t VF|Yh~_# jmB^W>Rl/ (1CFj)v Y3)|F0.at蘿BDhKigxbRt9^ 8S?Ia9q]6y 45q!_/D.\ }ٔbSc:'';8jA$wAų檀 1Ui9UlM&>klT5p^.P\ P3+3_z~/̯:.M4'F4k $Ap-`2R QyuMu.?[TV-NMRWx)%SX <  :`' a rn/C\OxAt7 x 2 ' OM2 ~R/U J pR8 V\ [IcSci"pN)Vaq HqiZ dݞo,KtPxz f)3 Uc $ . K1 `ATR0%*> B}c+6 ӘV̒c҈dӿ*zG#Z'M ;oO cSfiΑ3ST X }n R I x f9Gw: JrOS/}4IeQ CS B &d d k Id\ C\8Y>sǣ~\  Pe~(AR  Fa507?{x#[P0vr 0OD /\H<<~;iRJp"^<j1S ԭ,!x~H~sfbB ɋaG +T"_Id3*|SXAd;a { {J j  Q"4&Dsuux!?N!@5KݬYW&J7>&BU(F\e/tީIM.YK~y)B[&吆 nQrQߕE=l4;| CPbAT9TI(3<68ևgJTѾTZ_$xXWY@{(p 1 .D[$@W NbAPngiJa J{uD8FV::"w].INAiA!Em'dK WX4]]^p]p/F'DGc   "jo (v\޸-'$3:X'0j#[ IX; \ zm EMfыm8=7~GoL^;j=&f$:=!THq|W   j !/5 a M J Y wz.ytKP Hb q + j h1L 0 n w qÿ /ߍߘ@*UE%X ܄ 81 . 1F1z +=;moOL&s7B9a 7v ) 'F H fY v oR /E s| Þ_# #V    O 3 (H K m Y CQ/ r~hQ |IaGĄu?KK&{o7HGya t |M`CEڭ,?  [;;qrX Q A i#J o PHg n\ ` W  | P a 9 I;p Qi !@ 3fW 5nR 3 9xxb KZ)q tu * V_z0Z15"L¥EvE-q.hyʺ3_ucW A2( no z v> J91"l   !8L )9 9/ E :n<~~yqɆ U_tnZkm$`8CFv_`3'.\} g B> ϟ- c{ b \) #pʄbq<><WpMuwH=ez?ͨ #irg%׫?>E鶾>GI|NE$ߑOC!8`#*2URa@ ~p+KmLRAeO5R?~?c[pA۸Q<5팇_kOD/ܦ,ܼ1qBP H9Hu)nx0'UHhZ3]mT|7n1fNV+st"J ^xj=ъvkUhmoS "Mw kk8-qrcpwb fu )'j vwT(em !8 bR!    IS 3 0j nFi d } FzARvj9 %que G ^ e nb t NP z %I S B  _ LU&L WT p q  ). f F Pa ,* L5 0 $L /{[ 0 W~ "> R _v ? ر ^Ec ~i }of78q  K ;O[>ɭ->M38ܶ\CSaN(O9 {u<C93TB#@dI~"[fo 4L>b ^HƼvNJA j5/FWN͟Hi2RBK +z HхR %qѷS@dP 1 9r 1I 3Hc9*5gbz0E*h,Dsyj<tya18m?FL/v,ĂZ;v:[$E{>\F&f_JatThBD8o ucd< kOy&n(Ubښɪ#l 8~p -D B K(vOH>F&/9j_LAxư 1h rM) >knH !,C%Wlp"g 2#R[97w^-<϶ @ 1Hn 22 % CaJ^i   #oT/. s $Sjj wih۲%[~4B [? Bb= " kp*n#v4[xir }`TCkK51q3i+zskxU+ JB <=E3zr=6=q42RPwE] =b\*ƠּV*@ڼl B/Rg[NS_vB絢3I㍓%&V X٬+/`ԠlB'k=iPߪ"Ax{Gתקco֌At9L> 8$o $v1=TdG1 "m 0sb} \@N<.ü EKi[oFl>xbiA"\/{{v)V0Nn@}2y ?-V NT3xmAB5UT@L]qJB?:ׇ ;&n7}<,%FW8Bfu7L䦛'="{vbPlҁ}( źܣy):㪏TnpT =V=݉3"P%5UޚC"'#͓csNnH lw?[`79(C2-L:_rV:cl.d5O*5I@1d! 1LL ".Y J1 Z}Yewbf?<&_R t', @Zq$LB8Yl$6{"'2ʵp4'%lݕ$!`%Cv'%+)"BP}JnnpnCs KUZzMc",#u*W$Y%$3*U!m 95 v.|>Ρ 6 , Fq֋ 5:W - %2 b+~ ) J^N-$> q 0Pƛ _ 8 j 3  +?i  #" ߍDD 6> ihq O j)3 85 " IG O 1 &Y ҹR )" V, 30̯ MJz  hX mi   u  pɿ  Y i , ~B%DWI@hb*KxQ % Xj{mfy v'G-gT=PC/y~~c`!di8~?'k a%Z d F ] L I. ,a 8{#[©-FIqugn/8 +1 Yg [|9(1@UCtXzb^%sTt|5~:4z5R@eb2r4V#Pau{frO^f+1^Q3'B"lVDy߁GA9ݛ٨ᨆ}Wն-M+ExD>U%?"큡5{"glFy{OFV/ QKK w} +'7G]h !1 /*|&Lpӕ =VCyV )X5,tz%ltvYi ϫ s Í CY3oJ-#- <o nA) _yQs5550C~"nijī3vƶk%LI1w %yrY#@)MqY,a3]gX6SVMKĮzDHi}Tg1[=8+O'ca4,oHj'b xh?7SH Fz#QP:?#Qg~Ahw?E nގ  =p  WAv|Z50MP 7m9z iuHkjP4Iv5{< >-y& <&h=ah46;-=^V  |F[$_ jRvphos?]"? 1iMBo . eT4w f= +)yi]TZYҀ]QFm3%UD00wꑱN# >2-=(7'# f zD53k!#p}kn =/DK' & aP6@kFH=^|afųTMoI4|a~W\V5x=hT] =as fp`&?*[j+G g~5XT@X8ػ\S0Y8cH3jdZ ģ yN$+!wZ0h bڳnC_8!eNw7y $Nl9,\N(% L U8Ws>ON9u8LqfGլou^zW?ο&[ysJ#//b:I|<SB ( ~lH <_ « B3g*wG|y$tG]c[Q^UwIG4Oҭ -#HjNq E  8t*g "|DFL   :HE,w?[!^b 8zئ # sFt^( ^vk|͌mN I Th'le\h sRIYbGG P"  1}0P;@tWd]h;Nw sQs[]. O.; }&N *dJ !E7!#yFyz 4|&/grlh +_ ,A t UYA fqiO!XVv:pRA&<jdbNw@Gq  Y5 Ͼ J ֐ K_Dö.PW(yRDR7k F{_Mlݪ-2`#f?  F{bc]A-$iV E r/  ̖ e->D U/  BU+ fg ٯ zMi j? } kc a Pyw L   j} yi fa  TЙY! n]˜0/BV ]Ky6BR>]/S'N u)D!̬C{@G0f;7  70,` m~4L9-(R0A?CJIP%~uؗ%YoEYZ6zb`rv|;햚no- <)5/hKG׻F>߱$ӑځMr[EhܹD (@yKy&@Lea0$.VZ݆}4 CiK=$g`vK~GЂ䃌a}dBJrWsz+위VժGfUF|$>hk@w>;J[Rl}D 1 [1 cK B'.s l GjRAd=JlHB)* @y a$N[W>u""h%g!+!uh}[ Z!+/ S"<Aa<Nu*wSR_CxRt^_uV~<'1Z a^w3MODU8pz & ZRތM .}N l9 kid  r] fp go.zc;UdJ]uRe?kM`+9 P,`dJV 7F"V&8[>r#_u P y k;ߤDg.kTГU<GD"bas\  &>r=]Cu [ J j:_'ufB$N[h[);S7l?L keJ”+W4(w}C_=|')Hp=cR5δBt2OKRiᶨ:4 !u7p?~KG40f>&ZrKwymꎑT~6t|?e, G+zq\) BW6Qhvd +|4 u~3 \ 0 pF *& GXwYSWA>5}=-q 'h^^ @H Ѓ% / C4D xrQa Jg?wk"@Qy A~aO#IB \f#ިN#1sʜ]88:B>:K`VbZ}D&WTOsC[-f AObE#Jl<+2H Ecd˯tl u)|Æ2eU;gjz9ELOc 8ǰ΀N)C]nAI+0 9$1~)X Р p @9x )2 x9yMq9kQVN9hVg b) _A!aUreX~%7 ` b"  ^l{ s'fe: l V m;1Kt =,)ʌ41 (<ݰu_=e7G%qWGI7s׍*c|AWyb_U_4)lM8+R7Lh:!061Q>>#UcU VZ۟W2iampvR>Fyj`:7˫#S3 CG%J>FN>h9YTfKH8pHdfZ\y1s|}(Y[R 'o 3 6Wy7^(iF> $D K!N%jF{#K} e $lA8Q7 0-b` z $ PPP +a4NBHL`T^$sL_?ϊnZ=n'lnkTLlkqyX\t ["C+ }T CكMu&$[J8\@nT%2YhB|   1@[|= hiP P ӫ ^0i@BEdh k `^CY \<*wI  ݶ5o:/R!<ɦt?C )m7}B1uFd;0tpyyB  Ș+g| 6G WNm}  L/V{2nov4__*c-&)jYS~ 6%W7},2*/^#Df.za4&s/.?QS+.3_0b|#쨉iaDi.<OD'(Awy袭pY8lijǨ)#t8Ht>+e2_Bo8-1{"urk7Ƌ!I S$M;z>SyQkbgwZE,9$U(h 4!e?մ%V#A B9& =kK9p~MK, iʅbaC:]n?@ 7]%/?$`> ӜY%5KFS  ?#h4xƋ#F*k י%-D\Y()("m" h1 * ~ t\WlMs\3* :3Oa4W W e*cYX ޛuEt ;AzeO8 . se fjKX9gs'ʃ"1Oz K5'hYx-No޿:m]Nx` lZ90~͹ ''臦=tx[Ќp4Pe`A֪687'r!km;cF+`x7Bwq@i=hRu-s2w]rHC5RWhS )_`HF - ŧ ^ W,UHfbCVI1'lF T4g|4!^k3qo [[/#UU%u]KT/Q|*'F., ˄ % PT |~ ,o* 22L  R] =P< 6t v7C: Ĵb T ?  ZSnd6a iU& O= ds hF h+$dY~ՌFz iVMlUA gx3H__۠8g@jHQ'3 HYSw'y B:VkGb3#,XdW#0^>ؒ}E2HuHj+U,l{y{X>W%p1fDaN \'cIo a  fZ d>fz i: \ .vqJM!wO++eB>յ{([{cy"SMl~,yLdp.JNJvsCVQsC}rauQފU"il.=tJ/#?& n Μ.oe8︗vFwI$~?UQh1Zfxx+zWΖ[h =&60{ %ۡ3հx5fR:~mXc/ì߷|~eat8{鳜1J.HBr`5 -pC3Qxu^@˕TckYv &wyW T7%͙1]. ȐDS0 ^@  t Q` nb E6~h c 1е /$  چ -K , N;a -V+u } @ | L ,D 8%2  "    Z0C$E}aF%cV L   , {0  ` t oƟ%MD~/0O>VBd7 5J`OVZm 8G8_ ٌ tp,mа-$X"|#jT:y!EI>}S-Nu\vCKQwsz4Ou1֚Zfz9VClV4U`2c{o)$E9=ett@[I&D )eQ%-/A ,$evBqY*V:D 3m FL07l":.͍S\.=7R0> 'M DbnRAGZRzy'Ȇ1F>nRZ> %1)Bsk} oG%\i o X8× cHI˂EU$ E/R cRNN5<JVUN3L)XZaC{#zTD w}" #K_]uu_C ^w(<x(GM"k#"!g.C6ʒ2o)dO.z|J "#+azc:#d 31 N}f쪬>JRyL^i 篊DB; pT?\A M>q1L1WE(~yq=Go*k^._Z0Ƈ8 EI{~IXmGW[qq ո`/n[u#PW] e4 q '  fynO |::/O ?aB "}d CD åh"`  W i' L  mD ޙ 6 x0 پ(jy5T0_\:QO; n}cmI}JoLC DTHLOثڣR_vOB7ȭR1c& ";sѺgXa'-z /-7VS`]̬ygvH]PRI>6rC- 8714k;z/ O cQ @#m" -| ]}$  ˓l nDw\ @O)Ȍ9 P3  d1 pS d & 1 N Q, ' B aY4gBXv_Ы d   wL 'g !L\4 4  a 5 3k }`-'CIe':4D Ft W| w's#B3fVI@Nz\Y?q~)%fwLci ?^c5`$Jy; ,(sy^{kjҭHc&DS1sܶ’N LgBϘOV:~.f$r)[Ӧߣdޢ]̏&#UTP^hO`(e"p[  l矜["6kh(,vy.G;AKm^I`;,裲{k]\-UnwJJھlR{9-zyoC`@Pq~T1P0_yxk]%o9!h2j\N7 RAOY DrW?=,q V:R03cZqdPH Nf9A0|U&|gQPmwW{L,K,iLZ^|[  Sdt6L 9}:0W?0 !KU=9V6 \^*ky4F Du} 20I61my  6& DN N]&LOuZ] 4.O_ A 7Y-1(+~t.K`aV2G@;2~!t HDNElHZ{p]MkpS-j۞N%w% ~fKx?nX=^s:G} muTyñHa FaY & >M 2 v1 R  8  i!, E7 8   % 2 * Ms _ ] L 9F LH :3%4{" jFQxs{j}RvJ)=8sn?ga=@ADH( :vY]U}Lסw0,ƠKBb7~Ru] CI!D0Y5I%A| rK/U> 闿mЫ㵜&S *[{﫬LA~| Tq*C=<2kieVj/}qԪ&^8<9Udř:y_CO<,`D ʁz2G39ղWDcMЪv%9`SY-Yǃm]8{K }Eۈ"7Pʆr1t4x$eKxe@%/ HLәlVS:4DGskX,>0:%Z}' Hl? 3W0bIiN3)jرMX6e&wAb0w>fJsAN*Kk@ i W ^a  Ue - H pn] R{7c8 =UYSfF5  hzu  -~#VVK*Y/]B;xDM4[ EզE0P %I/ e#P" ~Y"RNW5.'OsL+n#@E /_~L)dpwMzj84+&, F~!*'vzy_=bnHpp(S'IDOB{~nhMI\,NݥA"^y GN0=fBla u;Vh9}Q^ߧhQ& w5 C^ ̚IA 5M]}4UysZy*Ha +ޢ=R y  ! 2< w c P : I   8  6[ : !`  I @~ 4$  2x \ H ~|QLTsC X f& f p k d x Tc V _  Sx N& q#|}'n˽R>C 1v{tx4A }qRi6=lbt3dE0I' x}1b!mr Qek&@e'G!YAS_kѢdrƏXz +Y^UE3#| ac/T9 &z2ܨlZV<(650tft0 r g EȬ S4 a%G|e-:Cu.>GtdhfY [7Q )0 I  Z 5 V" ю ^ 8oX g^ށGy1qs f Fyw 2* AZT7?NLM hcN ̡1 I #muB=g&t&|~H&Z ?pz?55FP1Q ,?^mm-OΟ{q,!Ci&C̔u[o )qN݆I _tl^S4jkl)Zc?e`#~\5{nrRsQ1ϵjd6'Q-n i$Ek n& Ea M1+ >?WBH0+ JVB ] X`[y IX@pgp@-P h ]  B w L 13^KzVd1Kh;Q#q;͹ >4 A 2% K2 J ~ w 9 һ C ךB -! Z= N# }  U h)t{ ^/ Utt K{G){wfn ݯW5[dCm`LX15]J/:C 7"X Rkp<@uuvFO2LjB1kWg+<Ln@\b6?:crRB6Cf/bYGOAd{PտgaC%%#q#,켅U `%UډRxc|P:3b!*aubK:CP- (*mh&~n)i7,ubT+Y+z $vl ^B.aXF7hUpZf%G~b .HfljRr@A< +y@I-5:2Ad?r9dXCZR*O\٥Xcy}C/ VSe /KdtfzU r 4s?C?<^!-< 0< [j ,# r? } y wj $J   8_ fd7  f +  "q\V D]P9Yaq R}—,@3O 2lKe3iEG *Sz2/{ /{Es8f'ruJwpu7kjI<tZ'*49hS~x([kQ.R`kPkw)jF{MC=PeB60@kI 7"XWk8aP3Y :-54@;r/luvA2Ts L.}xeICA`  = D u i  s  rk @)  - 6%KH3O?Rͱ  _:M,YOB'($9G_#Xbel-M#IFCMJ!(=xzC*@?8b-=^m LOo{>0|[ˌxJ#`lܢVNmq[̍Ee7dG!VzGs-67-@D$3`ήU$0h+Q@B3vvXZotRzvGn$_7uʴD5_ DV OL?8R>fm(aJ(Ymd;WGF'Sg ߎFT>g7*)jMO i } ) o cq NeN- i A YC ^ u^} Ϯ 2}i T \  p0 9& 0Y\ Xin N =Z; C2В!t"M 4(F?*#8cEz9!%ib`z)asFk9Dʓ4sd!dyktȩ4~=k amղz]_1'EF~C! _9d  MVoU)1#(:)C\/.0+X( 0 1 ~3˗J&os˶kW\$p.lT"l(Oi>J\iZ9p Qe> o|tC>uvHa 30](dw@QmMXڰY 2hEd" d g[)-%" ƧsJ XJwB$&,( 73 &  |  ) DE! ?Y A6w$ibD 1 R j "2 ;I I H 9i Z W) ƽuYp"H,|B}\ #dr@)<iƐ.]S g2q]|օL)\jO[ȗ|g\"S,twZ^}S@z[ts Z;mwP#P3-[U ^cӬT͉0 k`T`L^lInZ>c4SaY?%$rMXaň{lj?KBkT!MթUh {0 <6TlzɃT > 3T v L! V} =~ -UE  ޶ c;}>ђ. (K8 hp q [ۢKIb[S>Y3@ng /m\pM#E ڞ%CE%SMTn}$ 6sM+\dvk7hD[K{[1!!elLU' $kpbǘCZWbZO"p h D*~*@_C5힚4&y{ H$h/}>mG)+:mgo? tj $w}3kG4&KODmHgf^'D ?)}p0jF Hp! % Y V-dMH ޤD l  +   w `|  \t iT$ q< |HS#BN L& pV 2T 9 x v  , R (F Ʀ lf>nr(n6F#^Y _W9 te ;}@L!PwQ&IV~dPp: y }$hT 8e4I6%#tE9,>Ig=psg(Li1,7{}C",q1cAc(?Ov9akQ9LlN E.1!"!Z$W$"E2'n8V±|їr6Z^wtp5O8S)DGƣm'I>L%? 7E \ ~j; > ( Q NmxFU N& +  h ڋyUM|aܙy$.#x ub,C6OɄAh\QOD]?-,b҄{<{}.V90g: RV p۸ADI|wzLQ~ B}כc{L{p,,l7fмWGe ѭxzitaxCۢ7'$=U w b< "z   L  D6 x~V+/? ~,o N Ȝ1 s @v ) u-T \M ~];|lRjH \aL_[G_y7V6+G&^3+pY(r9 r*!7D:H@T-B/zl 2ϵw'p x,"r{H#0,4$DCq bRdԫRQx;ZEONv.r9hrGLPQn45bK5C0ֽG%;2A 6TFo+M HH{\f{-ɷ[5Pnp 3 dVNo u+ Q, ' { ? ߟ;CF |e؃ Z + > P H k< / BfO pD .biE%rnm\GM02 .r8.HV?dJB4i:L`wf;p,I-R1/(۰t|1[V-X14_e9At!VY} sz?j[#vLK1x7C&c@='7UOA, !WiL';/^9'R[SP}6pMQ \%,!GD'yXk oq,ҋ {b ׍ a[J f12TO E$z 5 nĴT?$ 6zj tZ : m h&GK Rq(S7v6k8T#\ E $fi*%e l:- [ 0: x iG, jc 5  *CQ4d+`3t Lj\Qf|)lT"\ƒhc[ ,S"JvI3$1[1]>3>b]P"+? CYm uׇ7 \>>+-ajc%GY$n4Jr/-)5 ȩr;fww~ͭllsnx*FI!ήƤ=#CXGG7W61}oSy&qR3A {:%MfY f^ <  fK? in n [% δB #,svP P >{X` ` oL( 8& G 7x 9|z~l!{AFxbpd 5 mln/*LI Gt(@9z$m3kDmON9V% 5S@ҳ`0Ğe9|%g FlZ5LnLP*1UH` n(-/K\kW _@G݄L*C:VY60&=kaz(W+vM<푟->ŒDT9P٢r?di{#$^fЅ~D@%ca% n/.VGka Z<?l6"B ;"^6]`bUj h:W'k %SD $_r  pf{ h"`pxLk-AK;L] '. 0 ;Ż L &< |''@b  d )"/:R$l)`)lyl|gK@dE^=Lu>Qn׎'w 6y 'EXVwH{4#&X >UIa)/r KoW*zBVsqt,myQIo#NK)k^>3Sy 8m@ &:(rObRk P3PP2r ^  s֟ 6<dzQ /J;Lb)a] g FH,j_ %z Iqu<2G&.2>:.]  M-U7#=Hy~\ ~:j6 7]&Nnh7 t5ocM*ix Gx7q&*#ϭi0eh*°UDPkcyXϰg; {dz%A4'Ҁf!!6(pQcZob-Aeo(5W/kC}9O /\tƝŻ|uA?H;Us/xS$Ki?\sRhZ~9-8MSTCt=RLCd.E  C!6!mlע++L* !G c -pMxDz= /ZgFqĢE2F)>uW 5 "# |\   %Eq " Ԧ6hJM%xH#Y?8  8Ƶ &e & x  Ć w Վ s עb( I6 M ݀v TO m|.q_49VlŁʗ+ t>/em}g ~Mr^i$.]S&AtK>KnG]43M:O Uc^#i1o9W8ehiz2~v',H[P;oO 3H3qPfzdB8b6O!9ZK@fPe3ŷ0\rwQ=|&'lhX߳ j]IMQ`[;o% @1 Юp?ƐO.F kS$ u]` &W Grx l <LrD5qh97FxI9R(cI-s6Y-fY#]ϔ>Za:I&$z4{W,-lʨ`[8pd!Rzv$9οS1ޓn4'@DlQl#C2r0wFw?ZA#Ѯ zR{=R&4IYq[S /( 8C%iYK|}wGf^dbIa,I{[LO5|pz(+F<޸H9" #lI*vs9m;62x,8W1V[i:bB !4yLLs|g 8 Sכ  8֛8SWr*tۿ? V >U  -a  Ӓ_ \   W,]!}S;(v  FU {ø ƽfJHcTg(qEU6]_/g xnP#cLz6,[um=H%_h^s:kE_{A"Ghk%]wZD\9\? ) lF5 V|g S$OM+bm6\G`PGZmuee"v~G~JY#" \EVQlGمU˺N.uP95#d 6`'IIUGqaZna=ڞ|[XeC* d~CXp|@zE aH I  Z % ) sd R dK e$;X]yH W zl0  )J uB G F dfK-rGa1Il/Pi{ZZMOxىcujjN#Zia5]c'gd Z)g t7Ys?G ``s"2Cjra) pYJ g; 6m aHY2)Φ62ES  l3 F /\8m M 99 I `cͽsG6! UZYtC _ l` <' *[ 'ut m7 s":6@&di NBd & @` YfWBU+>l"@nbT$"!S>)ktΜpx~,;Sb;7"%MK˿y2F+wkY?7s RpgH`,R4kCw[Of/; U*bV^sb 1Yl fźK~Id*q!3d}H|Hij9uY@' 5 Tu {-/e !) c: ƃJdRRG|<igwHIagD¾A.8 nDB y ) &`o?\=  `(a`;d$O2OL 0t웬fQK }'E.1W$/oThFY;!%<&W/Rb37.iS 8 3nV+MJ!djr|*pa&$Ec8XV Q0+*W-]6?)Z0F&SB)ف1^A=)e D%@?$ pH;א{\ k[ w 3U A ff > E L W/l ~SP$q1W 4b )y]mpSivr$zRX0lʉM7_h0B%se5AL$`yaV'zaAK#q=/[da("oG7ĩ!. CDm]X-d|*bO-f1EUg`iC=0%j$ BӹE]y}ɂٯ(7L^˿_G3+v.<1~Sg %el^ 4ι[HIjl T>>I~<*=ڮY`QDypm!R$Tz9Df~Bì !c-??7kHh - Fn ZR P- gwg}aNol i~]Zqhav ڈY8(g7fwz1-Ab2<(E9~uK 5۪y) 05ȥv8@egH|`6Hl[G +I?9G)nWn1dI1ZsYJ#r" m]? <ʟcJV1+4"x1S38{]A.~L>C3%\.w6?' \~ssAds9^.,Ŧ&5py$\*m5!ye%1^ Fݍz<ЛBMz),JvU>^O,<9kct4qmlS%' W2 + %` uɡ e $ t2  VQE!K`~#A nloQ4uT5e`utunD& `;^aԠq4ғ]neI!;/AuucúÜAw®ı*>%e$F9E3L(s.\6riXakSDӀK6FKS%p)9;aD\ fl/5_OuDJDfNdCBlIgEM%U&Q;u?{t 6z@HW;9A%CqxV0 2t> #pE1e dJj.e#SzvO;sv,GjXU)l%]ZD q m mg a }jUU H,%zE]8H5m, ]q#Jo\v3PZKɽu>dDPEN"=a 6~N̯McdBtFXo?<waufFU `wW>o@6ǏBܗ;ya +6[%`ͰDlS#[JDwiM=1$I1AKp;^+LЎ[v6](N: y!x,qX$Gͮ) FG=(RɑZ>Sb]_R1L@L* "n_T #0s ʼ, Y { ( nKtr x!0g aA pe@i" H* zV=d/QNuLi8IU-B2 _ ^h$'[@n7?5)`42RK| @&ˤutFE]-L7o<+;^Γ3#)EqA"6j6Qۑ>L?NAW ´F{rjL[aTkd R0jt9,AW3:ٸw~+v0GyWo =/awJ.($buV1ЧR_|]l w &'ے\E6FZr}Qe@=[Y.UGV&**\>  k &i es$S"}%wNpOZjZG5B~_&ȧm8 QN o54 0 8xXx9;A2\%j$_ D)[CQpo|4$vE^uclK['1}/gtaG!Vǣ0I؋Q*<|+(PڢṆn,g^>Z2UiC(.HAJh5+w0@&uRdHʣ5&ݠID6,snx.=h"^tCfU7k<%Jm(f:UU<~ 1]bߌ/4)hhis[=G w;BOJ% 0Gf< jAu F; ,M Jd5 cy h]2CA6Ok8 5g- ҂Ic(E6x6x058-;^GH9W,>_xx L݃)0l5Sm 6T4= 2j.Ѳp!2&?b ɪM `2 f06olx[) S W9YV/$x?UIg;!(}==kRg_%u=4km%uJplW V=Uu`U_a6[Q]=:صZl59>mZmj6h<۳6"S&Р6t ;A[hSx~m!T9>' CLTB*>e+d*:lO1.@  Y9m"5$ qM 3 %eRZZ=S Y_R5z@Jbr- AX|'7_MЋ0~iZqdpǟ*eWKr> &]-ecu|flK.\9UJ@!v@e0n;GjlҴϸ)~pglrx)J8{8$M@IGނE_ܬ{0kN_ktBҜJQ>nyWj jZ]l$!9҄c|oF_d&pX+ )m{ [[cy܃q o|UNZdL7Y Y]X1,'7!VNcvFq_}߰ץ?yncjq1qǘSjN͖b/ n0hva/30Wc Asm*ψ9 ZR;}NqSٶQZ]3A75!gJS A-1]60A`cl>l3p#Q;7Ҏ%xF(6rCtNr,*ߛ> xv578RhVciqx> 0xiVIb$j: ZTYHϽΗ$PgD% pa@Z21m&A0$l?J w(!'ah<=G FdCB}=>b@q؛ RRQ!`iy}f`[b7x{,L(rX>J6ّtG)~egt; ,gtc CC)mQ32Fu`P/)Q #W^%),!@okP8V?=q8t;+hcjd |ڠEjUk':[×\ws%umzǹ8`3&}oo_oE>by|}vk.a`$[e-R8O|G^4%[֘||>.ֿ[b|dE ::v3t lKd}efGyB?Rs]LU1y cK;ReKEU50~cç 8 Ӄvj'r@Bc'Xbk.n(: `+ƣ=)9wY$"@ *ZoбkDt^ jmΰs6W?04fW̾t2x_.812% 1Fn:ur־a`G&l^ThZ!Ұ+ H N]IV!k^Zn ~L@V,(L, #u_h}\^1unZPb]b-e`; M5f*T]^JQ9<CVS`DF_v?#cX pjBc6Sk!a"aV`׺cixZM_S_L'Fo4VTN4oc)n-n"V{X:Y47!~f'eP%Pe #Xe tʁvL#&Şf% ChipwvN ?| z4C/G]Ra.wD)DNa3 % ,`Qy)  bG{ktlKHy7VNnb$wv`-z7i[v%>s ';k8@9|)y t}Km [Y*vYd×y}uji G\7s~-F~"S vDɄ@DWomKxM&8UC"oZXe:Da"hn!z^ڥX)YuXm(X=3>uVmi.l(U,7|++7Qs5tA|FWCq= i2FLpqxуE!TIy_sqaU.qj9}df\Y3>%Q:0. QO6|J0][9^XIZDY* d6;;V* hrj H-s& BLwSI08bwJ'2' !\ҍGh1V&`mY r RdQ|\_J=\kk~82=NQ8fJ" /}LBͨ ({\X & l5_\:C$, jnq&zSUjϾ-FҠI#U_RPrHE :|ٻKB_b7[}wZP5};P!*}KpA9.8a\r,Iw{+{x)l'°Wo@^|/^_8&KBwqyl;,1zѵb_ŋ1*+vGW7t[}G.˄NJ:+N,88A^rV}Tܺ7 gWs@/{CE7:*;|{? PXR7:WyR :8> Z=xɓ2koiGq~_w zY ~G1 *ͭD?^G9;;,@JD ~R`XҢ :B*1}Kp1]JܨH# 0P^ 6nb~;ѷMȤw"flCF6qJZtU_gla;Jk 6dj/u9~RlZV( з\%.YCtcQq]M4;KX͂z ]%8$?8XQ#E9#Asu!q M%N5j= 5xvX"9?3ۈS'A *9zx3: uolw "#6:aH=n7KjDD}=#2LgsA`M@l72Ds0{C%N7-L,CD]>6o5xSna? ; yJ]Pp\?(glLn7]}I[{~lOjmQ3x$_Dsk7xh5ZDSUP -InmMgrc<Be&8Ƞ}_għ5ϲSL?1J,8U} +.9NEIPwq9U#pP_P  rIJqDg0c:!dqա|}ZJu +0<UY#5`q̮ϜaVݸ_@ҜLcCΔO],GSKwsW9Ŝ8^/YЗD_\!fHM,YG-oG=_#rc1.ws$$9)>|o:INTȝo,sjo{<Kg~:LmaݘbJD6/>w8ԟAosG܆$ZTzRob[&\YNh\G]yB$v}iؿz(e$cxLAtK@\RaQ7={ZXBh0[j .%\Vk/50q=m"Ϧ*A,xAr̈W_',3+y_@/1lV6GINI'%4ZNR6aR1H l `2ؼ= 8[$xnwEE;s*L% _1![[ѐr*b+hUmsTG6f3w KTf)vQ_yߖRuk 39+\j/00ШGz&A*Uk UkƠJn|ʔͽ;4NZpyAL,pzA7oo!NPZxөkk|Q9{*2}0aXXh@G0u&R2V]ytZ]>CB!\Dh=2Hu$,; ]pSd=ickmSQ'tB7סqY|n6.y.I8gW~ 7Jz&2N1HeHH^ =/*!)89޺u)L7$؃jBTxXpj8>\;(2ȡAȫ!f}dךq*f6)a{ |`iP= ɘv\7&N = QGJWvM`v TѩP\MW\3Y/. 3k'f"^/Ogl> d\{ '6KL8qiA;JmȺCu8%$Y V\INXz`'qywp|!<[TumѰ\IbUC2DR^q|U2`EVIc E556th)XNԐb>ǻ.!Fd)bdo kzo'pL)FJ%$9h)3L ZK\Wj:1DuRF:.d]m1Ãp#4@) ;P3"!MUC&vӝV҅ uR%G,.CZhie^ 6c^"RZ%ǨK?!S+S/KA'9"3 [+t@~2 QD$~TH ۞Hq^|d Z[yl@%=.hq8±% ˉyN_Zp"0H ۂ'V"-\ʸ^%*H8,_\[PA;0l0O[Zl*r"fU?~/Wڢ&(c'g/JyT~LhuF:R"I$I f7KUj{yPj5\Cs S\}Oc55 m#` 1g 4#<¤QS|v([11sz*U>TA~-QNWu awB md2LMvܫ*mva6: <ZLEBھVOI`IhS10:f:(%9&54Mn(yݷB,u&E2nb$1$R-l-B{&[L*3_ lL2"s'>|T{ea{ Mb>>OT>&?:bV/'`g^e~ѽ כW:0fNB`@<@xqYt=RԳ_K*,3b`&_Mk m_EC$>DWj?EJhs.2JN;fbOy1Jd.fD48FbBMpP#ˊaBRAḰ+v UG ^3 67:` Z@:>s X 6pc'9 :. "K'EDžqrtV!QfW,TsRVg@=So#G]wa6o^_ˠU%7*?vNw!i9lL{64w %&{/M49~f((gi ۼ^ nյ?v wK-O?O/1r~n<\*4dyP7 Apv`=#.U€CMoBorVюVRS`#uzmzOr.p l>n%V"hr >5j8)3&x1OVyqz A{3N4WQָtu_~k{/!KF}N~Q_a8gI N#*Wΐl5TTk\#UĠRI@j2%q3)=h@;`Ƅvu7C'ldz5Y$D&_yhrֲYi2<dON?oZ[Q}e?FM͔!GB.WD]R6Eg@r_-)d %l%C1laݦn2%GbRߵ]Z 0^.ӷ{i)HSv"[ *krd,h81wK"7SVKZx+E cK&y3N6 V d/z֩}_84nΊBF]"rC@@aIEK/%o  C;OpzMÓ8cP WwB)/yaX)ʗv9wRBpg_" 1n/2Ox"bfa3pu.)#gҒ4/)0 mI4!,2ro1OC;;B{=Y|ˆi'`kH&qGbDgS3 N :jb@',qZ՚y/yrnr2wi'!D)-F&r3KJ:mbɖأlv֍mϥ,][o7y;xf1k#H o҂B[=tg jY2m. xtvY e# wv-O@ӟ-@3H>?Etyݿ)I>!vy,Q FdmQ-&LG.%+8~pA{ߥ"e+޹Az\sNN F4L ׶)tk+=el`49_i8FKQ^>!S-5J:y Na;<&@AJYk!&%`Pm[!=5Li-3)io%OSmA?angK7bY FN?cj@:+M|]Ҟ<j،t\ .,v/E_nCGkd(DMv1ExEJĎj<J;|nd#8\lO-6 [yTa}<=>?i`T1yq5 H;U==x{;>Sb6&w*5k Or7^HriYHIW%Dv0uuk6~>?IZsze6^vo`T:Jw>4goיdߘʖxu@/K~ C'y~(;>f2x0k')J$-, ?b%4|-´'Ջ~nkӁU\:J~IOicn*e3QRA86BO=7xIߙ{'2Ąh Q7z_nx%7n${*%Q@Yfǥ9^¨2r~lO]@%tQl|T=M TljH;Ycm%N3#;Og.I*7 KQNbb)OMAIk2 Kphpf{[B0B|42~`]"'vIM'Wv7TMJV=l]EP ]Su $WYg jrj<=8ωͬU ;!:%&P.C8P>d4MtX1"6Onh| or0C0'!"SX-4u r.+T45{rF&Ǟw28!PHn"V(vmJ@t7Hk(\12ox4"*=&C9Xu|gI[.dZ7<C |VWKkt:O)Ob]9YCT@6evK(}E!f{GQkW*ph͖z}ԗڻ"&H}zu%Z^ Gv`jaN?i'1x;>?hgV/ Bu^].f |*3qj\=:[2Q`WhLh4pb4PڝxF9 Q$AekENyc`CWc@nYiЍ'o;b$*pf.cFTjd] 0('T &sl a{K,-:\?M,9 4Ջ[$tׄUAOiZHek@ޒ|Ulr# n ~+VK;aȮY%(uHU+&<[Na +tk1ZqG; c?wmbc=Q!n^Oo^>9B]lp_5g^rc3L7C3.kgg[ci# y{@!EW1mzu7@S ',. z}eo`1Svzϱ  H1xdu֏q>EGZ6LֳJ)7lD/{7$Go{Rz `Espudo+#3;Y,0}[(@hJEV<cTq+098*\?U Lu Js~)3 W5:iG W +ctb'P`7kT\F5Y gb z3G'^rO*@pmTRdxm!Up-~ێ, Qc {US~jYCeeWj f %O;"9x{z82C~fz3GqjX!neVC1ʰ:m\ A\y"*'{qt'Qg˱xQ Kb_JkRئAkC ϼj)w$TLh{ *!)u#]H>_WRZ9r g5CeU Fq$Q=e"y9 5֡lN(m&>v2t {J;p)3˜v r@r+&**%Oy}m*k&m&xM ca`@_'+|9vvg~Mb/|H PB7/ wN,Kq‰MH5@X!*<W${K vX>6`)dcŔv5%5A9oMgPS76*UlWx.m֙AQl*I24bP3K J "cckVX̪9nNչ_F5fg;}%ROyZ(>i;T C&bIvbjf6( x!Pd4c33D'61=Z>6g&-Nm}0>$((e;>N=yLD)V CGw/nh UrSlЈ#„IGDIBkNV9Y Z$D;0xZKYew܈sh|]kh7c@ڱ,yV2%2rS-ϲ0$4jVXYERCt@K`/*œ*vzB_"saw:\k23ʿ#}KAZ %?9ҩs>@C$f!4`?ZA)31(B1SZ{* >W=j!3o'ܼH2V{~SusY|cm|.0-A[gzfSyTyNV.|*AXuS RHE9oQ  wP\TTWcx6L\S4o<-_rg`h`+j.[ں)<9vD=U1nIbd;Vy!BNvm#J3Ib(˽b6p/UvQa"W5T.2'|@6Dv"cWduLJw_4 YAI0TfG2/ Q csb8ޘw7lsJ`81tpg$ cCLYma\ȂU \]hmE#6jO ϴ_$mOy&hd!:U/*¼spa;M-w }=bzQH`1:+#& RT_gpdK\ydJ iik(X.c:5EzTx TMG#F1:teZJ.GqRL+-AZhO(;q?k.(IJV^Q@'ɲ3c_X7PCj%lOiɽtH$0No;dQS:?dj6Bq 0/-}`oG*C<E3ImL0L%YZcAjeMi3ZOT \^l(F;syDTG=+yJhh;|) J6R_ "Dh}/gc3wk02%+*mC [;DƢja}IM?59zhW#f$}gU8oDڰX(4!p'HnV s%^{u&ZAjIiΣ:fIcPq;#P*.ݼ&p${ n4?T-uj3Fd%T#vkE <ţHe;\`3m` 9\Qg5Dx[5ArA*7s zHcťG i *"°n=&@`>xYeL=s'MP,#3VSGiVT{%HorA•0ai`!I|6E€]0w- #t!4E`JJ!˂2a%(aQ?r!UZ@G]FhsAt?N 'e]5wDjFOFK=!'bnpnvͻubWiD| BXJvN'h "Q<ū=`@XSYV 'ZZ2T)f͒I .~U" :RxV2p #:)mAhh@А6{UKm3MWx,:دwHK@vWv\^>lsz.SZ>hX qHuC\$+Fpr!_ûxN1N|kf*\4 sy]^XAvr<I$0}&f]MϤ%xl)Rm48I[6!z_0PHaFn<C|mtPl` sk<K+Fal׸6vcJv"zr5=+ L2:z- [HT,+-} ,6î?x5vUFh)){JV{ ;"";"sya~c'G <\I'g_" %@0r3 viJK@ 5yL9zGa5C$e>&4I~Won5иC<]?{\,~:59EP?ni6>ĎHfm_p M\jiYfO0[D$=="`57 '26ZcRPO66my$noaz}J܎.NADK:pv/-_eh(]W ĝ*};x##pNB=xztC@>uE/XM;he"J0=vm.ioyaqn[s{44)y'Fmȃ= DSI[ `aZ=-!BZV{[k|Qt[Zz/(0DK:dso.3Y"z3ik0Rjӑg5 "{L:^7'xAC`_gCLaWiaUF2Zji(9x2ghPV] CV.&1P^'#NJ2V$kV>a;<԰:X#0Oש1Y\~bf qyR:$rYu3 s l820548}y]D/N,Mr(m ͂BkRuXV(8Jog@\~Bhp'6*UN56,*Ni  5JR=H3t?&]!sR= /T(k=U]IZ,j #o}ijzlF(4DX_/dS+Q68Qo*!Y3gWZz BsEc6T}#r2K.-l_MZrZj= ;3'980?r5= #C9gJ.oMv=,e!VLb_o7qEB#nHi?s8T9;A,l@ف̈"„br?($A$B9(GW0 &8_'2Py6ut~h˄uE LAWd-KdŹjNSR.4&sfbRPEpTVNcxn~0\bSGr"Lzdx L~4ASgQ }="2Uh% /pRmXh@Ak%dޕ; Ub68n4(&s _7aGT_ZLghaYgz>y,/f_  *!W99@zMUZi/;J\$?>_DLq GXrbKЁ&\?cBp G T=4OӇ̠u19b4]~'RAnVo]1J3%[ ]dR?u1f`\/*Iw`KY_nq:$& m v`pnI`Dlxst-b"Tw Wok8ا0XXx/7m'Q$&Jv[^Gfzw\rDEI8T/[ 15%noS?"UO~kCn*<8"["_sT"GFmTa. hEYG>i(B'/;K(91xatd7Af E 9=yh?kcf< *,'y3 J.gOn}0@W]P73FW 3uySj;GxS"yM#* .7~5kB|ip-VI_U$;'ah= ERR5-CL*|/gIub@">^5|`YU@ h[ _F"7|&PbVƁLmrTQl 2dn P.2YgLLdX s-XkvH4'& y,= a/UMhqqA]l:o.!_.\t z*K0u H3klzq=YjISuU9aoJ@j B5SuQZ[0V3tCJA>[+A~ "j NS@ֺN\l 0iӻU*| TjbBocs 9u]ʗQtP*4u%?XTbQmeoـ,^EĶ,KBw#xdF213f:i;+U2V{`AFP;=O 5Jv:*@![oEi2;b!IcrQNX=y_g{ _j"ndޗk>$!o"](4G(GPi!3;&F9VFP,q@3xa/76QڎһOlnpL)}e+`U c\WO Vp}M8?;X͏JLEeyT%[XJhc$T2zi”,ZXZcŕIV3C#Ye>cdq8vg!j>_]aB  /RT$jX7 7J'BXqlv%v`U[zVGz\ygddZk,kY'1 )[RnDHPA)?pŠ"S>e}\9>~bpa.diGnsI:.j֜=Vi:fXm?n  Jߍ=.tbo_F'(f:{&s?d_# ^< 7Ճ Ş PP1*~@;0W]0!>~qMi˨Bta'g*lo?6)7ftp<t! |F R9f@xG9WИXb,-;i}t  LP99 30p)0aaw`:ba%y<69/α˗L?Nj67n!uewmWYFE D Z4n-(:  :^,3{^e I##BwI1+7M{TU.@fVy@o:ˤLHKўfu#(une]7jT M%E|N4PxZ\wTYnE+o5uH6q*h7ar|I=Y.Bd@nY.Loxm+ie) ;-@ }FLgGTF;9 vb\dl7t]8nvzlRTdi->#rk߿K|G$z ک?]xPʧIIl?j.Ljۼo 8]]pxU?f]T5+an801/a8BMXIaI:Y7,FwkK7Rm  $ ^a7u4rP"ImUQw)Q> ,$(p!I^yUvTe82'm _D&E}FI>s2 p}(4Wq;`Fa~0n\'+Axf^^RX*)o$Mnu5qF#xUl*Zt(yѭ5jaX9z)aV6  HHpialK@'lͳVj!W+.4h?G/).fJ!AUA@i"ʒ,XV`[?ON@I6_3$ch"@`|]g.Y HodTnb%P߶Nd N mU M^{XcWMPZI>%xE K@I"zSO\^J|bztN _5sL9Tu#$[=I aM8(U(p2.[-?? 8D6 v 9C9hf30+;_8oǼ~9 i^>K6Pi(6d‘/sFrcCbVn=qtoJD0i_YD.Q J0x% pǍ8 -s=WeE 1<'.x4 grI#p'B#fc6}H2*u 6 D/s&aX~p\t("nZ|io~J!L]) vԥ/H)B dXB:Rn4V':z"1ʦ/Kwq~]aShe3 0 B p( [Dydͥ+?Ky?zVv! & %*yxD u}T#%" 8ؕ3uB _)k9mkxq6O8`D>HN\xF^gk"Z\5D DRF&,pU=s*Llim$)|&fJ ! i B+]L!E; 9)1Zcem~EEu-i+6!@';^_j3C0g(ITZ~@P  ܖYQ2xŒvyR~ b$&>"-|Z iH1@~zX7]8o.ؖt{9CzhSC%(l[Q( ) ] *x|vQ; K`6)`zѳM^T<[pB;tkJ`<zMR8ZD0n^!d]DLA$k/\hp|k ;|tR,UBfl_aV> T-ACmI cJBIF C!v}t&R~.TAz[na_3*HOD`FbЌI ɚ(!ԑe9N8*ӱm4 ZSP^VZFWi; %,38=,U_b E*"Vo 7g2=N1A oP$8A B/Np"]Yv/$hz!cyX/]l̃t,@uDvzb0<,+k^&yWL#< QXcC IE-hA{ tM$]T;rM8q&Nj4X;RuNKPnm43HgjrF{lFlz\a "JX166]TMN ]Vhb[ѥy8ϵ Hm.\j{SAUD}{WgHlm2VCy^x`'H$tn<lZp}v1Fx;Yimm9A -e7M0&e EV/qlj}\UZS$S94jb >+9lW_`h8QAĢ$wV #(c Uv3C&Gg:nˎ~~%.TvԒ֝0D^/Vy!-6f)5MJGi *'}|aiqɏkVgW)Z+b9T$VXAHlp(ox/C0a"K%cmNTXV6U?jboͣ?_IRcLqwAq?$9Bdˆ8>2iECD-aG=c?U~7(}+YIUyM,a'.3$xdl(\g|M.:@;Z*hPM7%p}\>;!{#w_kGFL ߞ^"g' J%\ 8 bkRy*a_6!m k`f4mJLRvK/mxžŀsuǻ{Wَ;) GHR+1G(L~X~>3a+`{o').F=j3y,زRyF#<9O9u^B^06ԢK {$sўze(/&x,"rɺٻvi8GL,d-6<'<@@Ǐp_c[d|M>)LdNP}O[bDKI:*ïm6 ȡ\ 4<gy` va_|r .e7>-IĶN#?*Yv3J)/Dcqg[vU% _}X:|szx @C}NTddX}Chǒ@R Hqr[*UhΥ6O)0I|N|akG6r#tJ( z\?IL(?CτjLY/8'K t=ueeM˶lj?; #HPޔ(ϓ#og`,tE.w7Z1E-77KDnK3 .21w1\z_rPbV)l"-HZBpB\U t4{xD\vwzإ8پ;0Ѡ&Fdo+tBo|sc=iiyEwx-&#6&U$7hY^`y C,G9؛M Cd( hVu4/V'[CȖa!`Lze1 B0* O)k{MK  Y&p.qiq scthqsYQra*&,pw[ݛy)w-~-X"pbMx|~$Cd b=yK:V?as !WDzW|,C  84tLjZVcB_7#+;зw 8ُ #=A~y}I=m(XklOJ]TubNgHU3@&n)P,/+0r@/T,_[SnH_M e+$B?0)#XM]S]dQ$H>4gxY{5ٓek(_0TbI_X5={hV'Qzyu*_R)Nt}1$-p-$27 EEK(g5`MZ"f2\rK7x0ƿ}NkMU҆06vq9|>2!R`K*:'h73wmȗ0V}7ج5)rVU Opda?o:,0a 3/rL)]f{:@IH&mpJEPH89mJnu XbzZa9&|S5@ѿ1RGXw+Sklbj8"sS{|:s.!55r,~ozV,P 9 %xOolR@H=o "U 3gC=D,E |(^ 5bF.N:sT1xP^:O87x~g|Hm@!gj)b{QГ%Rr! mlQR0Z Dc)w$_y)NV1\X6B-P(8}b -h6TWP\WaB>m'<7`oaѮE.Pzp,p"\``-vpIڒeW~8eZDY<,mI(-fCFpiPS~6E+= q.;?bUISGze`\"@]O%2?Z KIn*vYzyR!dTbXo4-;3Y!V_|gIs6n\_7Lk23"5yM2"1^y#hp23z-gK72-(9G3AȼV:uIl*ۧɢ @{ϨͭZOn+:_5mvGpOj#m>VVd(*&3hZ/rSvq}.1GAL=WH%g v  `Wkg>8]8<k?$a |-p2('^|J+3aULаXui`AOHqHhDik0} UAr^HT` 8]N/H-aJx1ɇDRs|EgeQ{I\gܣʑ4 @ ~ۂa!] a$nDCj1*rxm`G35H} gt20 ?SDwd]dY:Ne{?}NJUUAҗ4 h7B!<9$"'Y6K޼wKH+- Ys&KS~\ШSM5pbđP1"2Ts] -{Qe%>Vv\@np%s{̕ylh^D40Acl]ir4")K .iTnT!jy3:%R)Mޚ;%caeHX8oEw>c5i $ϔ8'z8Q` !{a5+)xի#.PsRefWD~ơr2cN }/s&^D,C7JEqw< EkKioBWcmHW<"l -**'D|wM'D >.%NoE:KXMtaz.!ΰ D`Y+T- VõU"?8+]H|VnDSC(A3spfw*-3M.T_>(HШ=Ŧhҹ89h_t.KrQ3/Yk2^+'+tViYnRԀUc~nY<QTcr5&Ϫ ?j RbeM9e.32f@QY8 4t-A^3BTS04U V^+/:LFdt+n8 ,+\^q{-a~HbIA4u[rV *8kc "$4Ԇ(>se5 _EP{ifv8 A7wQ!/!2. @>PUZ`p;D\j{(b+&-aXQ)Vn!M }=yk]`}:i|AUJuh*JNP3BWz X?\{~ȭlg3v|^{so.ޜ?nx&<x^g|d3;_;'nCJ6=GxbP&by"t5`!rTʓi$l5o8K )JԉuQFGET ,h~!B:<!Z`MPհ O#!ŮnF7 "=;o u`;UGGm2DO|w/Jma^_+yt_PVl9]\Px7 KjQ͂5vthcicAd;SL\NU*{ m :YPm"SyE/u#+ !Výi.J0;(y;E&@ nud; ??fdsG"77X|PW' O,QK'Wnwc:(ɮi c 91h `fQ#6@ɦ^N;=-c@UO*/Jn@']2mz^3_ i!NsL9\*IY:PECWJ U,vֱS{u *6ZE7s.p;]mDLY3 kl-@6 5w6NdeMzHBiZX 4q@f>8|W$QS`sԓHrR${vqgv0U(1]y_JN ֲwC-^|)GOfO4%/YV[2 Vˑ T]Q6?Q?;h 7й oev ('k7J> x1;Wx<FvNgU_M# v 4U!Q38$tg'bL}+}S7rw!.76g 2gAw@}N^ΐ{ZVa!-r:r>6QF cqFw!rq\l# J'r="f}NϦ[wEH$5l.  VZ_>-uSoT[<iG{n~0$Rqzy'u `f(2dƔVŶa  ;G=}uFa(bhX;\3M%QYx&cR52ʋ'E(?d>Q?TX:XZJK:p_C1bH~|]^ 1m+C86uX~yca&:ifK{$JVv{|M[BB.^BD$l M:ng}&rvFP/W@[5^A]"B@",.'ŻD{ yۇng&xǁ\ h3oMyKcB|\Mxu98Nf_0N  L1"mqOa+pwYpZ-!Wd^%<1i5<$G$T3  ?/oa٧Fz,S6.tC1g#+aQ-I8#t%,spqGk$FVw-?Xzbk{?GT u9*gbNEulI4j_="JJ|vV:b{9h`W6e{e8*|?q\Gx8fң4* %n1&;ٿQo+_GNzK /u6i%Z4A9m {V%ѝd,mAرmz;-CX,= O^cpmV r{wVh[ Llx q͘7lE0A fdV5l-\c,,Mw=H"c@*9-YH0U7) xl1WEOQ /8-|F4\z *1SF31GznI$_#jvGO< [n=WޔvLgcNy.^e'5 8* .v5-OX WxVbX90k[{zpZ> wuGi->'ܳ\ o|#(GY^EHD)!MLK)-<9?U3}cm<'y0޻ލɉ֕*~.NoeAztT0o5AW)a\u@3bKZ ^KL׫ZAfItG";w>L8=K ɟo8!3=EE0۬ru< ixhG٨/^ lJx>c/7Y[iiNuŭ 8!DW|K9\*%xRMnZt.2aK[X'[fXLq&x©5m;KԊ?#Y8zSLSv} %7Qi>6KB d$ ɍs5'HV>E$%~`"XBoUHLz]Xs>v|G@cPeB/}yL$Av37 rsC$:Z=rXxʠ47v8$|/Fe&a$)yEqPZPG:ϏGuL!*)!+?`?g(*3ل'6O/SjT;ubf9JVb,pi$L~B2NlGzyN ({|82?&c- ]>Ҝ}}}r7h8y/Dp)kF)WX$, ABT{K_ykw}.L(}P d|]n)*-j3i!?puyK4LzSAyQ;Nyw!9r{X"+<a/&2۫}<@JSyy/sy"و@djKJv,-_;@34cSE/l<^0B}r4 {F$]cDM\h:˄CoD1g:$'b@ac,e7-{NR8 Q><#9cz-H'~*pig8c7y?BQW_p[\BO7W9bW#,K|{ӂ'{<z3aY"pX&ts9j4_,գU92Ux3q_y0')Xq8,WSw30 ȓCoZ^qbT>wpKaS%Fp%a{LVDc(Yi-0hS2*SpvZcmy}.Z^QJ7_dfRh`Q߄qNNKlFraf:&z]d1LߜpQaePc qGP VҚLdl96QuTx}١t%kb7!AQFH\<da7Xv&`)&nÐО3kB ٰ?|I{fj %t/!'fNlnRZy)x"|дeJ_@tǖ}}uY{mLuC]17Qc:P)-U$q8/V\&|M+m>|G?~BRt w>PjO""".*_]_^:V+@~Q:."~. vDvO w~̙h5muP:AK ʡ@%ٝCvHX߇;v~ `\ʓOPF,/RoOE~"l[u)#"w&ȊtΨ2(W CY K M Е|r3GJ`#"Av6O]d]8)W[^WIzd8Ak=]e3?[P9 Mm+OYxCY5x=S-H%zdr0nي[R=Yxf«y!3#0|(<ס%n8F{r>!}Az֞b?^]aQѴO,X#~_*MYǝ>;%_-V L3na;!= ЎBy[U[ X<x~6ٔ1$ bdCA5n?%޹:ir_;s9_P}@ ȯm cu:DfJx ;?kbBOd_1A1gh3 r5 R'VlO/3'Zn;#[i^ollx?i-h1:!#\ѹ <m@U{u]\/Ag :8|XrqE tڝ`J#?_x::bwk?t.r1P'al gG_LEy# td:?SBH A*eOּuYFK )W`8]=uj:|%^ga#{y-`HV:O1'+{cU#J=7 T REbMpby+Y%%Q5PYkV#> Z} c/IX%~"zJ=t*EE2؏hwU~#>ׁYu a#$j \\;MYVLPɨE7WpJULd PF*4yliO]|a e11"X@m`w;tEfǡ"!qEL=d#3I#V1\rBXea! fbXK~7PH6HEXdb,~i jc;P@XMM )"5VM1VX.H)g1`)9cl$ϡ P׀Pa[H]KNqa706!iI3P<L+B[ oE!d-FG5~$8 wb_/g^M2tj6M"2-8n_T9ap{G/,l1$8"FsK>75XeO;H9o NG5IjOr|U wc?;&>kPirD~Hɕ Oz'bt}9]:}J0&/!04%N/_=>VCd6tf/Eޯ.)T 3G ' zUS݈/t}de F >3i2XY7IwAsAkM}ݴ0VL,EixXf3B7fJ_އ0K6}=M'zKڗKJk*f6zeaҍ:rOc*EkԴUf15v|2%:)ۧx`c. Aӹc4U2cqx ; >ScRiM9aT~S/wt^ ݀PlVi^*ScV 0zK rUyZnM-X]0TcOWlUT9; #ՒCN\Q}A7=Fa 0oJFԬW'gZ H]T@ު"rL-bMz6 {KHtNCAkp*NXnݟx*-rqv=XLi *p3'-2pAet%&cuB0ZA_.=UM|~Wz EfY&(Ŏ|Sh ֊j%]/:#Ie<޾ir& \19˓7c)=L=[=tR^(]7~ yn<3aA6J\9tS_TVZv4BǕQJDj=;ghNl,ItLaY(c3Sxb7 -S]ySpo |(M8Q}mA; š&/Ś.5Zzfj_l14|z; A*)vb~13Fb 3\tV5f%ۯaSi^4 |_JiSia@]M_2gtIP 5d_lPxPΆbz:MOny1h4,La(ݢU~}Ao;q=,yH~8Ϣ:F`\3(+zt>EL{'ZEB2V12.>93/Q!fCߐp GwvR~Ja1uOcfUz@ L.0.;=J>B,3j4Zvi0a+*N)Zֶrf JO_64Cf8iWDb2m$ZgjIfzƐ\]vcItN>8UYFS&*">10#To!9 /@;"[vq ے{[iRZ$iz: Qo&\wT 8T&a)s\dHE|~eϽ}.ȝ>Ỹ!a.x2f_Y8)OD*+(YdjK={lB6Bs?_K{8%jOE Wdk%2X5iL[>n?%ZW``]6Z`=w fEq(nSt1s5VhCA+0H@GSQ=y2 GKU0#4%R+-y9"`lx%  O vS$z7x3Bh |/Z,sLAY)c#jRB7!q&C/.hf_ayE kUs,BUb|l^\ o6H5"krC'?g%MP<;7(@pR`{2}>Rڮߤ< 0vF)e@+wCV^~})jj`)P38rD 0]cI:zj{2NoGXwt 0o5v4ߨb/9{ cg,%K js*X6zl>vq$X!#jeZhȩނ 5X*oV[nh&Y7@NBx3J>7W6=9}B|eZpr`W*IuT)!U*y؊g%"A ? amCS7wF'aHrgx:/i`3?%*9>2{2UiDfR¤ A-`f:J1j"m;o5 ؃0>'sh%{q'H%2wxX%qr@"WͧkSWjQc%!pNLmO~ZlZsQmϓ}=XOi{.DF(5qtNw"S5 AlaHsK*relhYEBPD [ |8bY8 iPNu=&|XgW %NX:t[=w(xjG" .pY WxWbY']{@(IzQW~G}&Aa,jld|HX7(o=w?ĨL# ÕPt(;;~s ~ ?l'EZnp>kk79,ao4ck%uO!fuWVgkX.V:P+̽i53*4W!e6C8g_$X z9>%W y[J!WZ.Vt2Qh |e Cc^vj>`6$Sr='y-U4? Ĝ5KIաaq@T=_%B[MKvUqq ͔ esʲf/2,ͤg]nWD} _igM 3?(6H"@W# g(h\ 9msmT71' 7kb5.,Yw ft|:jC I~]>Z rSn/rO&<r>]t`@4N-Ʒ?j5Q+vDoq5SzG<U~Ĩ|]˨S]&VZ/3qO܊, 5K\"]˯mcF4k`ux)]OэA@"E.Ny< 8YI|t'oJ/wUeN4BTA/AY<q}Y0$̿ G!Rtod&z|0΅1w)CY}L!TK08AƣشTYv >= 4M05J ˄O}uV-8H;nEpDM2uUR_3HNIalu4 oŁ tvDcBOLrRpd} Ebrw{P\2(Lk[QbY-jp,QZR(n.44PxLƗDr߼'Hnּ]ӟD.bSLu"PE4'Aw5r1^?t"P7K!}&{Tڻz|"͵R2dlf)<Ӓo2X"k.`Ek 1V547S<LUP42!ő>0>D&{-.yэޏ',rYwc+*nXjj15w_QMewZʣ1 !%|gdͨtb1 |hG>uocF8$EXEHNBb\Zo\ٍB LZ8dA'B+,5"wx\hR3v3:?>"zwX8z6{:_V[C"c]YmCEk *OQ/h.cWXqzqc?`0Q ?Zf$@^#]MKDCdD;* fx?mbjk>4wG\%il/x\ae[K~~rL,D6o>!I9|K- 4dfh3 26qU3L_kCE[~Gf0u'3Muv-ڎ41sfx9v <xzcyR6~7N+x1KaJ&DVd;}`lsygn] sD17 F> I}kqRELChZ|H|:,I*WU>>[ws^G9 [0lu^c>&rz#HNNSbeL|}E<&sw+TTWyj{R(+~jp&!+#N ;p,N!u UxI-BhZEgx9w.dF}1P3I*H^ Nd9oU3U3nixzOYZj*o>|Z'#شa(Vc4m?; f.}Z- n+mPK} `* ~ V| yqTg=QXMX_=+D,FAD\|7Eofƀ57){)6,9<$[b#˳U{u)fqY-? ?4whaJ+2I j ~ M6$,CcUqC1+r"ƌE2qg(A/E@SrHw:Yɓ&&sg{(qk9^? ? !M+# mEl#!V{wZKT5ޅbp1->Zfz4;!yw)f: N[v%B[3t6gIBSVb<'Z&!{p-B:B$bd&1r?m3ggAiMj{Ac87Rr`K&I(β"RK~HA fJ1`ԠAe)XijchkRu2p#q| B4rEKK6l:\<i37ewiR'u֔Z{!@f #|?f9 NHnf0HD`P 5uK^"a4'!HxS@v N0 X/ Mn'3R=A 2Ȉ)w+Uf&DKw]Tp%~%r,)${U(s./zc?L7iA1UVm<#qv%aq! 7EQ/ћܠEAYLc35W/*xN&V4ϓ=$h*6s7c kj#oFL{ &8Auh˸ZA2NW>hG=fyTˣHwZa(lF!2ۡb5}o?S3F;*6iiY:R G7KN,9]$G9*8JHH7O Zt}RY[+o"z!RոtfS ;BUݯ64pL'{cbi*tU9Tr&QefMA,)~puyhDLZsD)4+a>w0N{.",Aqg[{@5t2';#F^Yܗ RDm{J0ZeK1 >N6g7)w7ò9[8?dOR ` |jt3RX%b<)iIp _) ,]ISqX \-RbB;ac^RbHߔ>&0G0:N #{Ed4իh,ifh7"TbeV*ou8#kch[.RwBw+fh!0sKt;)99&$۾~7@S8{K#;=.^}qIj͹*|!0z_N$ 5Q2M|N6"Pmb8 =  OUJT6JJnb>!W(,3L^IZKNv /Z, |՚{HdDސT Y^X +FE FzyJNY?BqAu/5 ~<2Rm24qY/ ^}(n1}S}l!jL|E{KicmREYEC?YLQ3$(g-KjrAfn6͞e^Da!wqެ]YE{BrGP}4ڳV#tr_?fGBUv\NBүu4YF|s1fQlfG$FNj*Ub4'l# HT^b(19yDJ,CV'uc.tZ ]I2*`S JY)%L|Dc!DARN\ْ`ZjéQeOvu<hu&xi)y)Dtby+ ,'=WR4 (( gͮ)?/G?x0,4aAaMyWwM9W%$}Wȑ* ͅe6fKϹ(+V<_n85[Rl$7=\UW.o:*@ ^uAtׯQ$~ +n=Z=jt:%O(%,^oo;:-S tл hC &9AAPo<,@ٰ l%ț9 j/7O9j)o7Kt=N44-6Ec).v!|wL^o<2B|8' <ABT"x4.xs JR%-|XOE,;=<Jc[+3п(h~)QʺK(Z5a>݊ ^Z3zj,Y5i \ 2}i0<"*|-S&ۇgz.2qu`3<29dt) BQb pcIہ1kѿ7_lkfTk/t[UfIn'WKi8mE&Ba8G @d%hʛao-EZlVSMrJ)rOd\ V%ňWW1qrnz!3}8"HXqj9eC7J OyKZHi/O}4Ͷ/J4n{7Wy,EEbPͯ͒@x}'[,|O +k'4O<حMGtHPEJKv03{c7E6n$ti@28Q4Nx{R c/7FJJ pPV%tժ8_bnJ04-nd2_5a()΃C3dhjE'gNc(QEDܻܚM~A=kpur DU)b:b1C`8u=( c6G*L@={P@/R%E nsE;`s -gDpuWO%W"c݃[!{t tW ;Ųp1o~( ~[G]i?M gWRp͖T1Cd~c#|V0JM8\QXpk+(¥.]B , cf.ϥ oS4PwL*)}_2U ^Ji}ys@n͍{bj(\w n,vE cQSULUW{&ɇTxz<G_?LԺ'E[:N)3cA %VoYsF8N7@/RFtk<Ot 78CK qα4=9;/D;h Qbl3߿SODi!dX-1Tn+G$H@M4ߎR #0$UıD\6E Hpvcg;OtRB.aDx#d%32yh@6;czt*W"\B56&0UGrgjfiA6 =r ;(śd/\D?c"?rPn zrh~`]x?a"Wiwp6+Sj`#?zTʶ E@-*g(~cDķ[]]%Ic}<O) 8&pr$qY G>7j}$E_ӘN6pbĠxLXN4<z%cipS&+J*Q):]5*n!0RҦ_xl:MJ(xi G79%/>Q_x+EǤ49MUwxI 'y: hN^3.5*Ls"1DKX5bv?jAÑ8`0~}&Fibaqm;[tI ȶ??I:R16&V7r~!_j" y,guYE^j^t1NH'6rWK/ x>ȧUV)%^n :i_<b ّvhv@)/D%P5:J[s>@,Uv{{XV}Zߴ&o9]I?D<jL5M4M)F.&VT=W%w=&:^t(ci:)4pPv_ ~iHy,Ot4dhF*VIQ{ 2 7;E ,Ώu=!i-ZN&:B Fw ҄>˿-E&p{5lC_c .uj+ml:O_>}fKwv/#lN2D4:}"SOL=|u!UB]enxǽĻuCOgAOkT:^a5CGOVJX2*v3,2]HyedՉrX ?®48g! Shy>`]7f3!E5[(3f|SΩa LI 2,wtjP3bMCmv_gKh[lz-YiUTMN (qeA-1.l@1Ee#] (Yxp 7IR%oY{c2~J=25ކ]q0ޞUl!(s(VWJNE9 Db&/?`c*r Q}yL9M!#=qsJp--MZ h}W~pXt]"i-U9kt7u=ƜN]^v* _QW?d1fo[ybI%]5xUNs!mO|jCۻ7O>*R D)*q yun<w' "cy[Z6 9*бWKl1oI4;,~jfjc1A{R`9 >Tz$}B(Lgvq3uY2aw`Ƌ5j[Wa2LW54O05_q8A/ ;Q޺A9$fx.ҖWd@ VE[4Z]3 wV+)ּ%Ifqv|<3\b&A5hKmn=)|fsB@&:Eqkn%]tbHp}JiPwNf29xC,?:N+oh_r),hW\oCoZ+b\<ack<`tWNuIwx/&BH1EKfE(Uaؖ6t( n\̭kx/`l^MgBi SHQؠsXL?dTe2Ո)NeE.r|r(')oʭ31 ,w)glUƘJ_w.pib<vU2$'ґdOZJwTw;nI*=9/ ]R ȏ6gBߜTFlTП03q#0kP> S 6z"$Z` q3Bp\@DpWdmXqvKb7pQ! L9.Z-1ԦQEo'}%?%rz*%k >2[,lG#3 NdS\No<|dv1tnor^[nh 4L&m߽kX:RʘcM@6rן)~:rx[eySr_3mn%3INzC {ӹÈ4U-t'b|h H1g:'h73fA.Qzfuy  3&SO/63vN78:_p6%vhw?.b XeH-m+w9?+ oE_-}-&$?*J `"# /|sT{]h1[&C&w$S:4_`.ހT}:vVv`<3Hu"0_EcTZODWm2yMf~bE^z`#f\1'ZisY=!]Oj$oMK%= ^*-p~!^_j/]\NZΈJR{[j+BRTS.isT +ݺ#Vr3fwhwe:>!.u&c@7Qwkd&2m-UpOJ}6L4K5AB6CWZq~nX[ÿ^%@Q@toh0QݱG x* =nz\boj~s7fe>Va 'X[!`*cvܰ26qU|d,8z[6rY V) H]ע<$i$2pFmVO8}r^=Ck!#kJ\0L}lI46{?C#?֍Ih02atwH^ogpyTLlK;QF'9nGnD-Gh ӣ.;5mf=&JUV\o ;Rvg9>R_ݢܗ[1dhʓT$A[O^d@ oXb~!]? @a.)=A>/GJ*#A8H'C ?'Yue"y eGRi)$-CQ b;׸I@߇5gMis L G'c>a=hh]`V#{MP[h4HYX4,ۛ%<_TSS si80aO,J0)yJ87p8HeSc;<=4LZHsB{ySV.}=+%h8mzF[Kp6j=pgyWRNu ZaSɸ:P(%J/jkX_h2oR_R$4͡+o rB'v<%)o+Ϙp+L.!T<DCLz($wc>{u*~}M @ٟ?k8]bKlAaPm8ܤ=3]V[]< +9x>{P=Ms3t:Ah8f%6h3-O,(" KĀZhC#__Xig;VUsߢi>v}-=a@G$ N^ BÛYd`?GITk2{uP\ x4PoM1]TWZ?noWjjrs :QW1PP`N  džqU;WnW/stF/pEfXUSQ?GP$?j%!#yin Jf=87@Ôٖ~X L5H6d#o(Wv߻ya[^AX 8(9a{ DysCwqI}r_\l[#GjMy_BHV,^a57 &^sx1Do?Age(Td_+!p6j=d\W#V?מZzfPu(+lXq]ZAX ZG6MD/ziEy ]8wtuqu& =t{UAi6Pa';2X72 ^"Ol 5i>%[Z~arl(9 @ܩãg`<KzD].y7kP~izO:DIy&B)qJANeroYvIhOE5aHu(s8R.Qbe:Z(1~H[y7rQu~23%U[wF&ݲ-yE}^6j̍$S^n#b|q: Tj  }i(QBud_[̝[#|E{K2jI: ,[ B)^ U :$xHʥuv{Jxvza]et_5F*djk[}^niB8|bw :Bj.NT"opT2mE#J%=!O1I5ZJĂ(oCQpKi4dU!Uaoy`S/Y8:ߘψ f*ts hV.%@gB5d&KqAȌq-Q@J*[;@Ϡ)mHE* .?|}9M.b]] ssFBJ+ HwTzY;E)! r.IMs3 ,E.h-5{f5 +viQ |4Kn=+ 9B2/vt`'mtȠigfM&#aW2 g`ޛ @JU NhD|j@('$MAfDkl[n]HD 5cLMIoP$VO{!m2RU=,ARx0Ɖc$*&5Fp$|S-+>?h7+ 2}B{z|ORp|66b Y; ~Z.TQw~etA·2.peyvK \,U0  }.԰*#F k+GG C+?rwid1xjC6:"@NCEV]Ww]9 EJ< p8Ie:iLU :hR^ QY8dm7 ߽S5OڶW \?Pd/&MJkCso8Sd~6SV*4mI=ҿѕ$[v"@Rr4ls1:.3; 1d nJpfeܘ%TW@3N B0e* C4Y| Z 9&aC#n^ @~_QQDNZj vȽ2y.kRBZ2T S?'Z}NQLg4U5|+Bxt3j6R0#%Z^pg!UfwKyF˚a8:p-@ozT}¢C28s^q5ςUbn%Q8FD"o KO#y(A>%X9B):Z/s%@^UAv}j+ZkZʀ pZ`Xq|P]rY`CAS· 9[`TVomRj=y`s4,@/+[0ތz<  86iTFC+v6j{cTg 3=_Fn0"`-pϒ@8Wjsin)cWhey_^ ^VI0Z| ?Mu\3ccXp5o;.1Gs6. +_>_^PnUFi'yG$3/=!c^/;U3^U;إ5?*\M{QChP^esf<\iA9 ;< ekx<0Gg.C"(~:o,*N) sCŽ>J^)-ʸbsz\f;47.<"9Y\s)QM] s:L3lBiJl4E(XMҴ; Pz>qedZ41AU}`1$=| [-y>mceBڟ2A]pdt!#;lnz2noK{pIWe;W.[kA_xLh!q6Ns-'0L j@tU=D?=BWTQQ7l y4&VzfpmLD.GGvHhy=2 .jgkk#VVq1 ʊ ui(BY( _<Wx82KKr|'Yr63#;k0*3Z:22()3yLy-bETtn%}T}w\'Svgr( Քdg  . C1=R(U-Azc;9nL;u]ڠhd:P Lb<?kz8*W,GH\T9*Sy]~]3$RN>)6+oB 8sNlo5HA _ cXSc|/&T7EzEE@2. 6Ų8i1"c,-aԸ I6d8BoOR[B%.JKo/Xf}0k5ϋ<2L4Oj#DO(d,0+\KalX_9O[&KvG'`ruhgcO"~4JVaw&yM$MUjdfW:yg}Dm*CG"dfP>jxx/>:^^DГaf_=v26^+UFIVg/4E4zA;-4j$YS!h# %m=6u0^x4c̡rF~Fmh%uo(E8hԻpf#wqZ$<4Y *Z&T-%(Y a *j8!YC;PrCVzrB'ѺKN< qZvF[KZuڪcAeТ4fri_#d! !QC]+y$eT*]=ߴdS:Oem R-+BMr|A^<9)IPB@E2CVЉg1:FdTq|/,{ieuam1l)[e0< |`-ith&z%H /jRQέ6"=PeA%mZ5C,27t~<Ͷ~rŮ!ץ/߮>6 HXR}cֵ3aH~UDf(53Ck2 MӋ+&+g/j #j9 9>CI/wP)gB@!Kcn^;!8,5&fcA}Ń͂ަkhiG'W6gEZ_7V]ckl gXߚ) ^p[iHdjlC(8VLYNB"H٪vbgWTd'nhq^xb"z>GIE`,U=<Ua5gmJ^ H5.mwc.aZpQS_ < s)|P F]<5sUpV/':e2 xd̠sa*@Qh6D"y -'a^HuƟi7l|wEp}S^_*mqD3!dɄz cwYTU!eA#0Q ro<W'R# Mqx,_%O/81`ul8"T{4?s>5JITov(.^‹e=bJr"1t8C2ɬn|l7T,`sͼ C}4 }S;2G6o?%> u]  ~ d"s3|O|m_r$bc{E a[Ol1u=N Ӏ0?Ct(,(0%yF5+m xb5ϗu!^MD;v'CDOn]TU/N;<8<0-JA@!(zo \ڮ6#NEݛ #L?F%6A_M;N/7u$i51X]nvVjV]6me@oo&t)P'u6e|MVn>O<<@$"=zoB* RRu #R"u./Kb;rJnΌt`K#rg8*A[2,yQBb p$`0F[AGO$-&t>_MYV8|,*t9m]p] 5bi6nwuujtQd4M: ¼U4q%920n=f%t~G\ F"pZ- o# @ {"2@4|( iC,>O<pu}aRZa)e][8q[hgjrƋV8ayM{j6v:lz @ԗA:Fnh~/2'-no#s5u%z;Uv.[$A^'H^ibkFKEGe;vp`tCoތ?"!2J\L4a#r |0_-%{SsUswQ)XHBJpa'`/\+\3*zFk LdB5(?/jeNz$*"^uN,,}*26yX#wpq9vHS6nCcN C, 3y4STg 9K<{ Vw'Zxˢ- Otr.r9[e%k TuԳqoVL#/%ҧ .-VIt6v\~w*"I!N|Zy}3$ >l{)t.]X|]M';{yL5uTbe6 u2v?jS}Ufd>?Z{ ^!1((;K4L ~e[=JlZ0YҔde}F>i|ahެ=13hfizFhAor@b /k#]S]c GxM[(|,'mNa RQR( pZOHJ|3Ӯ 5EȺ!k44.{ ^?Vum,Sr*[!- jn:w`k|qRegE xL,YLv~\Fd#b@J}9ϓ([ `j8}c$R|W$F+AOџxtmdsd O/UqDf,i?kpM.dU=^D`]vh5  *A`yZ u_#<N3#W{+_Z!@9D =pkN ]2O/ fAUPx6s1I*~ =Q Oa:!>g-p$a.j7$9af#ÍmhI1Ts^}Aa0XQ$UA/qV 4Q9$aQ!V#3R\1{^ЙSď4KH+i|0'g'D=AK $k[ZoE^ :Qc9F Gm]Yz4~آĴ ¾O&G[ߌg3=JtTp8ddZ{'݈Ǘ{\c6p]zQEB-Wv@y1Z&c;όo^}O%srMoK@]?f0׈"bJu~.> a8GTj|֎}*Ґ`6\m$F#iXMq,֛tRU6OG\yqf| mDl%z0WҶGK%'/PZ%V;2C55> ED;5~e>LTbT=Ff .'7pm;6RPK=+=r%btxFS&I h,YuP"|/ ZӛPrq^ &;}X o##_:5_.n lK|C̘۰nO mY [x @gza ZE uI}QӺQn2.){aY1\ }O~#)@AetJ|M;4+M`Bjstf2d@^| $b+\wGSP;:t_W2e'v`z%_.  3@b<]+9xjLNTc3َjv*9$U:rC:+>(eO7O8}BC`܀'ƾ1q`ț[.3[Vr?61EkG[6g v"X~Dot"n|pŶ1y gG >#WT#u#ZD%L:ͤ3d^Eh/\*2{b__ eRϸ}֮ `*qNUMCc*!(\}5mXӃ/^[o.bMV{R2[{> be-WM<1}Y+^A>W>:Xc )VTx=+\Wz8LJh`jh_lY>{LF0Dk]L>c HG]an|AWWBΚGt<]c&r"h+6nQ ,!>gDAJIL'k{ 5g+NL}^`\?wi |,>W8o#4&fF¸fyuҽ]x1y%iζo3mA$A|(#+ܗƩd93]?]U)_Nd/)Y9^>`H+n??eX>Z_ؽf߶&Yiͼ'l}g $dYÂ18_(4X8t O &7*$ h}D]Ĉ]vt 'pD:OQA29wR7aEKFuY F+H7`ԟl\H~M]'rԎD78x!ݐl^`xDo 1A;_lE Wh4TR%RTm$PpȻP6@vOBpISVmZ%;N ` mO & S0ǰiDwJ8hsy1"^~ $:l=;,\<qPD23B50@EXvf&; xNMn=r(L BdHq 6rE.2)bW..W.~JxfT8>L&I$\?#b%"di> Yfr2(4Ia7h;5euvf?0]m [ XY-EJ!&4Y*guPŨi;qFy˻oemzvRQrC87c*f?,\5:J?\n@Yd4,/S-|l q (^ uB4d, 1f w.]6Zz´;2 &gS>6Q8l%& K=kl%b*b&zrjS&dIayĦ`fd@k9P5&[9_4[F%U'dMem]]xq*Xa=WVT_xȀYE8Er>donUi'M5o!E_jɌY;Nɯdzd8HGϒK>IܳQmd%k =.(+9+7A PzmxVJA~:W[I1/l cC,u7uTjj_5icwºbJ pSd=^A7*OFLFg; <'4kNNI+z)m=bD5|#Xhhf@УsvU )ZӍX7%;~Qz& 1r1Ufa5ӆ1Bprw+^mOTYZv>gP(}fsaC#(!"5 !&f893E*MkZO?dRMm4U)hdȂ ɻI`rţ2SI-W{gz`Tjyz}2rwgպR'sVy4 R7[cBOj;K, ;e>%HWHiHCXk.dS =[ob2rTx61n#Qvi |ù:¡H=܍ Ua“,'~hu{#POb}P[YGxL6eWv!H9p!^dP^DU>84QXvBS}2Wa/Bd$[.j,B!D|y(]ok4XPEy5<%V?gcWnrsjl"Ub\QdfLAd ߹K8 V;X#2u$uO) D]PbQ<L a\_*7 4%kWFDE=H -; #U'\(br"bAC=l'#( .l$1p@^ i$"$].t' RVGM/ag)Pt{sw`} n=kt$Z Pp UD`N%0TrE37uW`X$B+J1;2(TY+A&OXжO8k"UbDEo_ip7N5dwMgjuplv00yi@z!8rE#BA31,66UNKs7]zkNe.H F*_P|C9-TA41^\N Uor'- tN}X3W+fj>c *jwmkU]c (V8G.^(Χ;;%b5{Le2ml] 2Iu m@gVzx Y%pezFzɶ{dru? O.XCEDTO,xe]g]R8*)q7f VDOgɧ/A`y_6lC} '$}Ho <+jy qVslT6f#"&pDU?6!E|Bx@gbwQ]7)a@~# (2W4-HB^]hny/J ?Sx*TvOBFs-90+ %w=H&:V,3}S# ;mPAos,i sx9-4eLtl]jWxwrwE-]5e>M*WrI~ iKNi&~S+|d%zp sC( vv5n~j06?Hgs*aF xc_]hFUJn^1UNY 3(BP}u A1#eRW-.#c`WFwi8tarsqz3?E|YwQ}u-(#am ^ B p88HxFbfgg`vB'0>[S`ψ ~!@a y_ZNA95r#I44\j\G87#@C2[,Z  <4]tCzSXV3:\֞C([?e`, J*&: ,ef,U;ςBcIlulT|@'K[csREye^BwG vRS.&AZCrnC˗Qj$KPM;FA6T7DpUmERK8~&R{r'5Kz@cldW}Ї,R\oez?.G@\Y ?& !1|06p>\Cd,lX'F9|?[YMD9-C,4 F5%O2H\E0MS(*9M$]$)m2K3]DVn-Aܼ."Cw6icI?Yn @~A>qyV+b3,Uͣ(-o٘:B]T[/dtD~K Ujlzr)`g~6iB._3p~]TԨwh~JXk+E]2-g+eNՍ:v2[9KFpd^C ~ Ϡs$1)<6q*j##=l<ĵu:C*Aw B==7mGrɘ7z‘*jt$_j`PyrS5GEnu)qß(}] T))?9=4/E3mQsjZP;0&Ot8zRQ?+Nfh/jTB|/4,%#u*X@Q?~F'Ttk vaǣy߃/} f5mO+U{bXWQ`e3#\#+#.g*|&>x5-'t8@1V'ZFJtoBowAv!vQ>+;N0qSJY8XIrSXz_o;T IM)9>t]ۡټVޙ7SV! e>m!˻{jր2AS[e/IPwTU7$&T# \!Z2TPW]D?/x6MAnXH|*BTz[#r&xTf'N;A@U!^3 e  B%hnk|&B0pYDv]B .7+,C@x#>IJ^N7'yW,ry#H&fwP;=͖kԅAwt%{T1=* PdН¼%HgS\ʂf(f`KzO  ^h6C7,4Dq)F1+VSABiTpAoj7q+R&X4rw›,\+,WyUHr<5"L*8T8' -!?>E U |`u8^k&X'[P{9T&tߊ#3ywc.2jM{@qitLXE$-;<2;7_AK:U5ZDK.Cf!܈j45[=oW9H-|!,'1B>"4"=%Wd&Y};Ǝ@Qnj=n~t\j0VG./r2(1*/7f!:TAr`?p'(M'w3=yPEKdo rEL_y=|bޒZA{7U-#z{?~2̑=t-3JJ\N1Zu_iK*7nr]hk T$PM6 V7N7nQ_UE^0b Gg CF'E6`3%re9},$,L]| A$c 6"pS@,Ύg.3HJR^~+!.T9h}]c>_ӣ3]0.o@RE5XpAf2Wl?@t .jcܟ:g2eWm1 >$[. #p-QZve_o~)~\63n̸y!<Z"yۚx obGT.N4JW zkW2!*Iz;%AI,v9TDUX;- 8^'ߏ.UPot-~]g>Y=ck&ay`PYMYX1*%67.](՜ۓ=n:,g]ms?"N`An[f21Vj0e%31a>PȘr17|ɧULp+u3P!(6:gHZ ?0eJ/Rko[p6"J=U.7 yWقGwJ?up9u'^=]dso{mL,j\o.gc ZhG2 ^Nsʾ;Lxk1ƍwiw >dO(s nKI ޲@s+o luHtҝgzTj] OQR5axqpy8o&`b^c]i!L??q`x[:0QRI:X)6"d *T \/ D2c-l-*T !D)^/.a"dZ7G [Qq  U|T< h\gΠFDow6xl Sm7cr Qb;kAS|hLGVݓlˤ `hm/F^m "YBM%`MHi{)_T2HYzCY+r^.&߅q4;g,z=θ*qh2!Iy/+Z6gY`oo'9N/i$"-#:h׿ތцLtWFΰ۫xeכ+`1@B7jYSNRlj0bMPA~Wj: .a2)]}|d,?a3-7,q?~%^ g7HZ-[&];%v@3;23 G_~'7(?i&enP(7WBuRw^)9K"G|ϼӐD$&91iFH֠"$Lj"|\;Ҹou5:|^hW[kEfk0o\*wkƙt0JOXG-th>WV-q.e6||'!#v@̋6t(o:t Qqj iYMF^CˏSEY18Vʻ;5<|F\ܿ5T*{F2;XHT6wX1\V0;H5}2ϔ~w|(/F =nxo=3&;m H- `~Y \{m-nښLC3mŰKIuTM<+=ivsHj1#=Vp![uf6U*|d-tfsQ>u=YYI - iW"KC0H =%D)@P7 ptN.*;r66;G9,1'A~[Z7i($"JE)u<YRl߈ 3$=k%=0 Z)J?vgAs X`e x RP`?)8Ԓnʀͭw iCo-; <1 uBvd`)&Xqbe:8s SZ=x$M3#tٔ %8g4RO6 PrGDDL17xKd?Bg0kFCRbqv*J -h%X>,0|q;&1 iM}*tPih!gK=Ӎxѓ>*soKa}ka }ulg~oZl%j?m=q}\XAGIUTl/Jpn he ^x^!of&)E.G+2qlY 72sl5?e 3=Jcc\8&uXUy B8(d(!I6<|<O30c:{l ]?2, }C8v,g//xDjv?qodweNZƠxֿyzB|k "-'#a@}Mk&'*. ؏ԡEn'>NWS%o&@4h&!9,i~h4%9i8Qa$F@WmcG<8M,Ƌ GG 8>N\5>fL E@#e *Sg.v cؽ^hA7Ar+X+kY4$<۫ P!5W,`4|3IJCi7w´]&fk~Cn(i}kOUpؐ_` <!% @M!|-xS5j Ff"y+Ϲj J&'1|1vy E+Ar!9^n"[Zk[[D' :{/jXMY#˪Rm$P^WMp2eHΜ{yrRo lJ ZԒ?f`mWiCxh14/Y0s%o'IE&CL)"!0[tߤc !Mr>nYm#:f'5gfvA1i{'sUG+7a9_iI0:d_#7/n'-3f47vBjB^5GS?hB3oGS'+GvFw(g9^ӉzqAko|SRЪJPиbTG8h FpK"mvz#V3zfkJ9y[mcV4s)QJ9Ug'>-Bcc"Cbn ;/ "} Cc޸_!EwAW=jj+,NLCG)if3sr*8efz(WK9X3oBì^vlXifXU%n_ht\ƫ Ӯ`5L dqmZ3g<n'3Fw;! 9s*yUǓV۞S|5eSZpruyYU^P&U^TDxiܾ%]x:3\ 8;-("!q3c>ִ*dK:!)SJ\S;VJ;ܠtQ,b( e2!^Њ$+]p#&DF4F?R*S[MYC</"o I)lTf+>ϥD>F}ɟ3H=Pո$*0,-ӛRu4,2{05.B 1GrRA hRrr-:A8)SU\9uO@&/kdW' q,Ϥ2כ">N!U&~4ҭ \ "` =QY::a`:H 88&=բVq3BdEWYLET!rqX)! q?Nqiq.bJ_Ib"/hLxz{?jMUe{utT[8@ƣ|huD 5V*(BUœ\==j*H{H-}P؀e_ޥw{/;VlYݒ_q~nȶg4&8/U{2a] _b x\el#mFQc(r_unuYYijl)t-eeeA"v xv|R[ x! S/^X;>`f9 ѽydtJ @2hPQEֶ4kmM>8fv];eBkD#e^!{\;TSVcP/erZQ%&C_\ʎP`_Ӊ6m}\i5k0S>7@ ٝױ(jQ:Rxq=^;9#_/i$=Re`AqH2PCݳ 0FfKg8TQekObMfK"ALK@O#$wd?eh~ p"n!jurUѝd4kL-( 8uun)m$Z<1V3m 8~%uIk5Ku-/M^7PIb{QlTzb@p)0 ț7tFS)D!JrtNTB7}'7)r_2 :twu= 'D@3&m 9u'/ :#G&:=}ť~%ޛ"} yKm*pQrwcwM#SƢ*2 }.Ku%XnF'+{g bha Ŋ<  mzC\%B:Vl|2͗3y# vPB;*g :{iE*nK*$Zre{ &(99=" .7q}@luBo ,"@"^} KVy {3);\ܽSio/(kT{>sI>YMVN%bϔƇ?aWS+ií@U -+7L/tt$x8?Au>mΈfXP2yw/q ;yZ 8k Q"i4,F&FD/xVt xp-/-X=R<:44f()*7IP&*8yLMy] /.<XN\ ]%?|nh| MD:YsuIi=bkBZzuuݍV-y*vELccM_Ύm~P@vE)bF ]$VRLjV"Z?svW>bnǐf\A_x&j2Y5=`@ٴ%L6"+I2?h2JǾN$o8#Q5D9] y?+3D9PV] fohw&gz(\nڂ6ls_:Be 0Il[?8B*&)&6 @:x_wQ ry N sb9\\yv?k )+! LuWga{vm  6'* :3|QX'P,?`)_*M-' qk"}iTNM7ۭ; A0̂4IsG#8#8.?H,"<64w93ڛL?`0Sb Ta{H@s:gH^;||j7q`Y-:u7=<M=_f"'eT5+"`2k9?d:Hq]@`'oC_E*1|0qSråW>c5Q,X#&z2UT[M+ dSHj ^( 3D9Ok N"MVU\~Ad;>FY/[ )qu! $ 7dZ|K'@lb[aVs*%E,EDB B|=d'u"ې3T*0XQL A` e?0J0JK GB&@- W=܉9>xťc ~%39$,u!i'/RuHw0' .b~X9j+mr;i_6i@l1|YpȻ}$lZ\Rx2vab\8ua}ƒxubTwMAH#L;t ; LU`M[E7SW e=z |#%[?[`rdnɕvΫ*!j"3{G 5xq *ER4?>"E$H@|9BM]<0Mr$>IEQs\4`A.!sH^EKNU`dNeA>XG ~GJܬGGQbf+k&48F >6-v*fĿw%xS`eY]b^^jxɉd?iN{>7)G9+Ad,Eڋz"E.>H9 sbM+`dn]$5o(jh 2C$q7p!uiH/g#c{ՖaQvj;Tdn\I Y8H1n;!.+<(4 '+==un*$ajZlh~{Bzrd0S.ݼ|]F,M{XrE$r.|!too[cb4T / (eKo}*4qBJh$,VAZ)EE 5BbF71ot2~$weiZ;I0% %%P@*dC?DzFKmt,/̑KsiwjO."r0] t-A$A:&v+Si1b}LqZV;)w?mlXUNKe])vs`ET 4_@*sn_ζ^| ~ 3A0#pCO "&I[aakeTtkWK+oivD;Kѣ!"VO,^R?oIV MTLKQ|@n}*aa>n5p7o0JEM|$vT<WuR Z>IpH֦Zp%HO3,Ow&0X)wT:it#Q*{;9s0,{ǘ7_jFK262// ^M5pxyi'd@O[g>X>#^:$k oXq6ۜJs8f% p4Ox.f0_)!S!BLcKY09,n ZbgK=Fļi c.F:`!L7S> #AD{We½Z9&}6' ?I( N ? A2Sَ1 hYh)]L`йvuX>70XtIr^)?n<ktu;d/]9\$X=U1nV ##5ZOhSgT]W:cFDb3Dm*"b,pf 2TD}W?M+R $ Fxf7x4:uuHb)*v$)`m{1P )?3Hb^R L -lekc =7 FrgdPm{FaZa8щ_ӣЪ|Ɲe^T]ucxskGTX-J0BN"BROwnȱ' 6R!49N ?A*G$\?ШY5"tQ]FshWrg]fB?@2\X ð":A+Y:5Ix3 :C37-\AQ5<1d".~uD ~ n7YgndU] HF1+6;J!e| f h8{!Xa At^_MN"] rZgTIL6X# .C5N <M;,:#.Tv’Rf(apYVFZShffYBEpPS:NjI-M6\2U.g5/NysnVha4:10ȿw#Ktb|13;POM|?&%4:+Ak >d*x ? )G2& *qPBcYC"Ea`\mb9 kߐVkZ\MpWsfK9QH;61.$]N#udu[~VMn3Tfh)^0<- k\LXlĝ*fC[Gya | A]0Av* v@QA֬)cMHsSotWeo[ȴj`$A,ӫL $XlC]q30TdC- Z+}P S!{9\XɟVIU`¤TXE`:JuO06g"/X(q.4oaܮ]S^fbi3JzY>KOQwzL@%ONG`p<%QR%=9o<m1"n*~r'cx .LZ!gr!Yi/0vb6q,Yb!V'[Ati:]H [t1 U 4%m97A 4u.l&r, K(Hk3.((!{A T8!WCTF^YcZJyfii,VQRoubQ\ZZ;-d) *[QEicH\ ;bd;k9^a%~K] 3$o7ճ9|"6,\EcEfsfLAH{'f LP/iQܡ޻DjF.w,5yʛ u@_p+F`2l`B]ln o#$_ EڙYtT,x_S]V5[gu6@' $/',E3-tFS_­!A Q'd)#y{ܺp wF" 348<>TU\ /VYP 4:)$U)+ggKTX)bZRf#s[gEWEZ)CtuF/rc_Dzo!flf>b[]h rT2\0H.(LD<*M\S.zmПv: <.iy^4B?= >%$E%Ce^R^}< f+;D;48~1*A$n,%&S+dY<7PNUPP8qAc *GkL+bfwKa5k~Adzqɷ ԸmMV Vo{+:'٧>~ma?fxSGY!>U&(t)S4zfew~g4o7a:%=X tӻǎld=s*kU<OO\QRsnPcBYF\LU`Ew$ 1=*/L<iLa71=s%;( 6" rFƳ#>1%@\JECD-VE]DI37i,N+.e8%Ry1ȱ2BxҰ,H:Vm@{I{YDtS~ })=@qͼ3w\QMRqnmu`6xa\o1qrX4dK yPAT9l\N'5GY Vs8O`Q < $\^oSG<[h{v"e}n|yf]3w2 {s?i |'zVY8\.Ye^k[ [n3[גA֍%Htj>]2t9:}*HDGs:D [< SE.ע4xEGyxёA)=71-{ߪv}RsC8 K/f^pE]_^eOmcff[\ybIs<eIrG:u:00']w?%AGi^s]C_VLG5)  :=VC_W3+#%WR {2_;XXWtgZ|bkb֭MLW[E7 3.)/4B~p=q{W6QE=wU&[&rI"41* &/0F2"8LXo1tosj#p2sCtIt6g5gW[a:BgrMH(c >b Qv).Y+&1 K*5*[XPXWqm w3{ \'ހ -XbnJI [V5Ȯ 5vWi8SH))p;@XWN %~(N ,%B>Xj.T&5vA2UAIGET5v\/}3$K"6!^<'BTOFiemxt`}qы֒&sBc@cYoX0^ ]QB)9KXfghsoe>f=bhb_QUJ&;64++?Up9+1(824@``_qsknfyYl jT{TjJ[Q5kDj!P&M"t~fla` QSvw@.z܆ED(!w+&g|ߤ.~G~jPii]A,}{(w`r]ptMxNDUs0`F2%n!?@HMasQ6r6!s8}9t1G91n!R]K`%D921/9/[/ zI7-#y_3" -!7yCq@]@ Q A)mHUitvDDvԅ(<>|!xvfi5Vn:m.V3EZ8Bo1Ja'&1 &Q"8 :d{P{pɱ,'. *(s:o(] s  S@ @"OsOO}f~\u4}!/v!p&$"#]n+?I;/.ľ'!1 ,!%$.y"m+$!0T1!!>VgmvYoZst vuugn`xW%/x\EMD?,h1p7:H=QO4N7O:DG/1;%t),Zf"51xVH{_J=eʸOeK&4m\97ʔE8Y 3 [>N }S pG |v}OШJz[vo}.Һ]  M}1D!Nn4aN3e<;qjXCe9W;.Z#h$`F*5&_o%AKCRG$F>oI+` '2:)) Bc&N9]AdXKUQK>7i#1h ;D3aI + ] 5BL txN|ўo;~b9ea( X' EWh:%H GP) 1w\r+zEnۏ\]S0Oeڕ2L%h;n]ӄx%a39  r2W&qk3e9hlv]JBtB:5" M"q6Sـq[@dJUlRpZ[TP!]buMTyaFR:H)_H&a=WxYQuNtIǂpI?u8oFralL;9& ) f~":B^biWkoznZ}pwd][Ig2Un [UAEF)6"/!7/&& + A*}1r5.uR'H&Ey/֊uR2}{?I[qe ̚q56z 9o#O,II$xZ1G֙9r`z mzUtoOڒyn\66rS K hmL˒IC1PC&a.f@oQ nNdQHhEr.jw[TYGQ94D^U) e])Y\1TR6H ):;~= JE{7h1(!$(ACWT'P[H_6egSdYWG\W<><`V$ZW*CW71)}'%7'A2)/-29 ChkܸrGn7<+ 88O#5/y3\''ZW9R{ )X* ާx$€n.0':Ȃm54s+g 'M2?haq!|*1+"\(2t4I($_#"`5*M9PC6LO1T..N!<\W0C(zi$$C1 3a" ,//>8L7{K-/H*REUC)0">8 1 %=+90P/}45, b#(>,\~~Rds#phqok_p(}s$:U:v!FeFHPI=F6* 6FJ9PK# *.)N#210A =a5b7EA8yk<SGU/ |r˃hx!{/c25W$N},~L eA&Y 3S0I3*M5GGb'4<( %}vjfk,^ E8'4Z/4>P1KPXIYUHbe4;Sg7Ss>82u"fvDO9 ^#G $ Uuþ&{&XBe1Am6 . Ĩ;;{`GBryqw}^(v`IJ^ ~-"% y1%k U m+r6G*H?A%F]7<a/-G)(R='U )U[^3^[Lk/dpMb+kUpFFz !qBTbB\REE K'Y0 \)Z}+_,YKII9&7˾\t 7 $%z4f*B+GY$gRm\7}p{Zf>.ُ \pJA G{V}ݑs'ٝ( 2cHF7QSTO#RH)]%[-:;(;XGS`hb^5aOim#PG70kG><~]4)l_}(?291G5XFevqKQVC7mB>7gA4?2sJ *fb4s/?xn@LhEi H ^_>kG9M:?)9$?S:  0mE+?Ey-E5FReD&WKOQU[Q#jKq,hd UEl*+D-zy0^) % Vo0 ׿Y͛Y 34ifX)3y }%*(NK#uYwFUў1M2iv WYgk Ax.x^|PUQk ^eL6*1a $*? me ,'O9'C,%Q1S'+wQ7 ^nlfE\VEsk1w 5>DcH=HK^Du:(=(>e,u=k:Ax~k!,2]&?0C+Bw#JN^Zn SEW9B!_*iW  T c!ٴ:F?s.=Fp>"\1(c+Z:20(&(<)׺.y*(շr|@BNs|=!~9·T|^=g sAso4rgXHZ0n*(.a]K0hq2(uK|oytl`rIU% *Nf@''K) o&ц7<Cy:@].CeRxVYXS@L=AR=.@`'\S60 eC5_2GP4F4^:}*+1&T$2,'`| 3}g,& 6#<?2EO< C755-AV I%AY7F-)RM+4o vk[M{torʦ}D2&KƅU}6}~ GֹW8\xΠlx7jlk`rGy!ĺOHNd"X#"a&v%%*[', xkjx"4!_K*c2k-i)r)X|qx3Mp0j[LL. P|%3KlIPtP!J MPR;IwJ<4|)x> *?:iL@WJYcVa~SqXYL]Joj8kciWCO,#*#7 /_,-!) DP9'y/,IGZImTMV+R+IG}B.95s mUHJ~NL:*6o-e+HB656 /E.v$w e8  /nKO%Veh `9Z\J3()++*3K2_ ZcVYN'9).CJ5BQp4SQYf+X -O/UN$6-G1,,%(!Dy 9$ ,B)le4  0;$$2c}T "aB 6;   wwٿ^3 q@аE#t]woqYxNIbqvPĴɘ[ɴ.3kpEV},D4 uRVZOf b ExOֿ\'{L  )FX-0Q:'Ab<u94:1&-0>9L1UZ4mJ=@{;y<B 6}}Kyo`x#,\s2r\64ZX,Xu3_D<]i3V(Y"] TJE#;-O/%";8A:IFTEX`ZZ>Z}V_APa{4nV/ KcG*<*!<+S1O%jF ]H!{7=l_% c!H*)W)4.*7 _\`>ϳC eaT?y"Tb7]&e's.ְ?D=7$U!E$)l+pU>/:L1r.C#w0{ 7f\G'yrS F&Acϧt~qi{XHb % V * /q [M>t7u#W7+r)&m%\R'% .T2; JU"^#pm#vnWsum]gHYXJHJfE@ N@F,<_ 8=C?[E@8w2& )-!# -'3*f6s)s?&ET9?p3N':e  G~/zz!t]G> m _$X*Hd*C*EhC: ۰ɸ< l  D!SS/wCS˩u+*2,(;CK Q#kLCJ?U')56"[)Z?OH1AF9G3@'=v-2e, ~O'? 5lHHUJMYb &b1e7E`xP:H~Mu1nC*3'i!'(R48PrF/@9?y=g1)*9%U2î+{{Db[d#,j%2`$3"=%*GK$ D8,]R"`Uze G qI-P}\\FO X=&w!/\B@ZTX UPUI+ )*9:ABKG#C>=H4. 1]$V'/gF|Yj=[_uij'g0l iS C A_?@LORrJFKyWkuYT5 YsV? W>M&Qc~-u@0FO:Q^`I[)Q^=X!F:UA0;>.D ! / + 'D+"Z lz\, SYK w) p!05$XUwOנ[e96܀hԑ_|f8Ip;3L2ٺKL ]ɫ\"%xϨJo!NJ62 .CW:b,H|!z?S!G OK9^ڸf: $SO/; {Bp#kG$T!_ `[/`\`W4J*A)2G<HAzHIIQJS"\Hq[X/S$8J&x;+#]+ $(%+U$#'$X/+w/H,1*/,,6/{(* f6 d*rB;KE[ On q l g%Q,(.mF 7|6(=IE)CGwC>7@ Z4W)<)@PAL;-I .Q4UXX@^ UZ = Z/ .&I$( k -!5&d8< /1A /fqE: #(s5O: w5}q/Mb/Ym@%^2UgMoDd,;Cj(J]1L6p /~YPS2[2 +KǰƸA5']JD$>Xhί>n5pr,j k@r]R>&}G  #e,$R#w_ p!\K*054$/f)0 6 a(do.9@!G1P4V/`Y'g3hgey\eS OpKDCHO H)GN_TPH@7`1\3U=404$=4?w;@@yHBPOT4K;E K>U P1-7$< L 9_` 2H&hW& $7)w&jqgZ UH$$~/BqGDIBP47+8%2#8,&c+)%$u#T8v Sb ]p(~$j-+=CFGjJA.'d; # #T#"~('MP'}-&&5S6 #TKg[+G/[)(+!/STU tF]x} 'Kj'RweLCEEbv 67VU![q+AgpDj$U`)YeR@4#6oNde_&]=30<24Ts`@i>lk! H*A)K'_!}M\y9A'=%Ye""Z23 'f"O/M7 BT^R\_WMjq;].R04z4356072_1 x9<86Rx2#t&mI P"_"$Y *( 7: < V6/F([ `r >mGYu cMFFf+)8'9:g >5#xN#A'-g9:q2+4E>@BCF ;!W G$7SAP_$`UO`\Pc/X">#(/" -B)'(2{9p6Vp;}DuAU;94p% i }l E'Z3Se0=/8*2oQ/ 0<.<5(4?=12#  au3?8U~[ w^."::h N Aag /#w _"p.H|odܼxRrR;b~8w"@DTG1V(KhBx4=Cxؾ<1e,6F&{v <֯|neSZwi#%(K. :Z"E/HGe>]h-b ,}t!**)/4[4T4@24-u.jO`"G0"J#D& (%3y":;8.U  $K858>yAA6)N$| }"% #a}6S"ry1%98? KsXQTW~"_;+\*6Pc(UPs"WV TJ]aA^ZYMY;la_c_\N :: .F );#W) kVl:4 `LI'/ZX~ ߩOJiSyE;л{t[5E9'7J8/:CBq1}Ƽܼb87٤ q]4xG^\0^tu y, .7j?"$G(0=;2D$D ED?/; *1i,)6&))0y7w9; <z !C FkHFKNGJt?3 -+1#"a,M+`:0d:85DC1J{"IYJK H>11S+FF%-M qK#O(jRW'-J&uA+B=T.1-#0!0)a%-k45}= = : qEV^|b'f. `m1TR5N7Q3-cTY)as^ TTZXyS+ NO8 >?L&v - |)9PCFQ= I_\_EY(hRU.BS.-h/$.{'#h)=-[40#to+fl r< ~ t 2u}iF F|E DJngFüd L/5Z.\E[qp9Fb!$!+ v? 9^e $!=%2(.d0b,'&D%$T)p.Lx0558>Eq7JvINLL\957 $]"6/|$+"m-Ab0Q(,n`08dt: V;<_ 2'!,8*W!p ! ! t :}%[ ~%M?^mt|-@ j5rf0J(Y[KO@.$fQX65+\6 $@'cG6žZǼn Dfr|]SUJӻ+0_De i*7 kkW#-S?t4-L%${43Jf yU"Oj 8zz@ fu+T|rH!=x![gG^|Y|<8!${&>,2Tx795], $5E!]>$S&i+2443-: y B 8  i] rN(o"/xK3 5u3y*X=; as$WB+;/?0&[Y + VR 3GV#/%9K\n=a]_].[$L&:9&4p 6H8>{ZHeI HO=WSJED8,*/Q 4f<>FD:|9 M@hCE}$I-MG3p@:7?4?]+?8U 0.( [ F"Xu,/ .#+R | ywFr8_ + E"|#"p%4c !w8KYV*MO0:c(u,=:N{NKt#uQ!Q92Mo 3>/!JDTR"tT½xt$'j)v+|"_O< ,FeeqL &a7> 2 X g z4 SyX{R YR#%K%)m*,W)G#]D@=. 8f#<#!$W&`W1 5  :w $}"s+;+G54;v5G53O+?5)3&)W !u _!v.g=F] LMvC>7,5+7.84;@/ ;KJ O9Wth)w0z7y>s<cW7"Rv6pM%5P,Q!XV \/[ Z `ee f)gf.[-TM/EJ"/L(JDhHFH> 90}?^I"pO*LVx4S[!:lR :Bq;;U=8)81$/,(!,[!'!&h. 0#0&(I-)~''P'*Q )AEF unhZ P%+c/J*% u~ .;F:y' q%0F޾` $YkaFslbڿN ε*p*DǡTm#wLfpJ^jט#sgxW~XqD%WwxϷy`$H>#im[uX$?~] 0bQ O< ]&.oBT, Xzl4tw OK31 C GEzdD>E3)T";Q2,ka $p1.2 g37O6 0U*% ".%\'@:0I/< UFxSoIBFC4Dq0>-4*,-%A/+, :H7Q,Yj!}X&)!J->W1@.4E1&[HyO;U RoQ\[$Xh/Jo:u8DPsE eYA{W=>S9P.J"HF@= Y7 RAmQ]_ j*k9.8]J0L3E1?(5Y0u,]#D L8 )u88"C+M:67P;Av;9-A:_"8832*"HK #~U[_aeB+8>pAYz1p~#LO}YI\x 3`;=v^ [w>xhBk#fEZfr@ͤRnTȔ9S)EUԵuOܟL Fd! X=~ ӯsf{VZi!i I|{{H$bO jZGBs m$HaIPbE 3_",A%r%+(r& UCQ[S U"`X-z:PH4MMy)KdB5U*H!xr  #/-f.1U2 78|2+T%G=",e)83XC]=C>'5\<&:"-4%&Kc"y%A :E+5| Y; AICD#=#8&R=&ATE?_LLg@7 <+DwhK%#W1-`e6\5S4xQ"0M$FCA-:~-.`'04>jIvU\N#T!%.Ga(>*]4#'{>"A D()U `9,6{?)?-0x12 r6Y6-F+ w.=UW ,  /G9,,W~> Xbxh ^NX_Xe*D?C4d%l-P[a*RTGs)wGD.=e5S2~ M"[ʫr}qb!oG[T7ܸI-M?IxoVh=jyXPNns)\@sFE >/z&V$j#5%pW;&  x9ir)3&8<A,<.!uXk gol ueQ "c"R$cK*)o *_:pv #$#0,0B,H%)A( eR" g#q]%C-4b@E<@_>Bg}D CDHtA8>s8dC sNeY1f(l.fY0^2\d,W NbG >=2.gi8#OE Q'*`&eO+[.PO3 I2A*q88$n5 3 ,s+`5SM>#$jC0Hb;zG>B;b?/A-N<--.(%$w&9!Ame |Sg%`0$t:R'#< 87 S1G $9 wP f1Y3*%)W)+*j u22H~>UKe"<#wulM_RJy`i ,8\r& 5//$(F,[#0m,$j4~> d ! m!!1"!$qK 8 U \!-G*;2@Y2<190:'8k6 7Q36'* &i3BXMvY!]#V$oP$R T{pR9RNL'EFD S%ft+'(3wB7wz8zly;hh9nbn0Z~'LZtXM FNYY`w(fO5\d:V;K=K ;LS5JO2JC.EF%8? 0S%a7,8B53pI|=P"HQLJDG5F60.A+,77% /."(#c"l(3,?<%EE&E ?$3l( } X< oQ'$(F*'({&zoXT`imLZx1(fg3,yn&MEe:Ih[δ$۞U*H.7KJ<&A=?x6Ay/>'5N+<0F = Y l'm&3'6;6 18XM5,c%mT_]YJR"g-7 98+63@- h<0"i[#< .a  |&PD/T:4"X:YҬHyھgqQgvYOƺ4k*Nz_FH>!%WS_0/:%qh]2\iLbeҾ?bv <a$pmL7\9#nx PzdE ~ Y g U.S(2uq7$/53*2)3+34` 4=w+wd'"#u-%,,.+F$ '   {',M ;,In4J4?^54B6.{/v*,"r(*j,(.027E AP#Yy^ .ZOmJcKTLwDM @NIH=A9BK? H1oTa&g'Qd'r_(!]$ZWeSzG9 5r :nD,P'K\"/_.|W-L-B'5q((2 6l "1C,B<N$HLK>N.P<%I#</ " Wk `V2w+45` 561$*>&F`%N #)M.5f;9:G7+6I-!zLiZ{ i DY7e|H@n9";R#j bٳ gB91K~'I bl9 Yh51ML^\>g1wEv|i"( &  <$W}L* .eTNc$P1IT )06>Y@o@ CB% 9.%| 1_ n &)6!/AK3xE,G$E\'<*3-#]= !,):q5D>>zBA8E1Cb,R8&)0'],d. /] 5X@I"WS*'Z-V)L&E#@ = q> @:0 - 2G 3:qGU$#YL&U)S+O$HB =x (54+X)yv.%57DO%/Pp(FA+<,B0% $*;   ( V!%/6Y:8A9C`0Cd&=B8 h*b D D Xt(b')O('Qo$[c*?d!HC{1%'a+Vu.+*'E#!^q 2 vzA'+6 9 uh }Xj"EE9T84MInA,%BGt2Ϯܼ9jA*Ε5dٙ¡r7m;*$ϧ Q[yC4Eawa T6ZD L5 o7OA=3k!$  R!*\09vC F]E vF`D^:;g0*& Q2}L#>4]F+"P+"NRRJOrOE 7 x*@' &C9W$d$w10945&:1Z8-~4(+Z#7""$AB"4 Y #&*3?"J&GL"GDfA8;o7e5P[-#5![&/ >K) O!Kq!)E=h4 01.*?`+l/O4n<E;D <l4_}.g' " di| @-!&+0._2)0$s-O$v <W jI !\" M##%{# w|:=8,#+XW'i1+>;>> > w: 7/ % I Z p1!*^,.v/,.+.(-8 .11:[+ % &b+3AuNRmgQ<NqIB=2=o 826k1761?? J X` ]SSaIM@O:0;<,8 %447v<"D jH)E{?)=; >6?2` 2L 2i=,"eh "n?#!o)!)*/+%L4 TEbQQ*11k2$1w)c!w a88"$/c9H%:783'\> PW }E#N| V[%SV_9JI]_!Jwt-lxK3B%ŝA_l7B)jijM{\ޛv934zczRGM¿C21a3/$ XrCN6*| <2 O s #em{Ky ^%`26,6V632' aik!W '/R9 f<9*K83)"1X{ !}),&#:/Dl2E 1D3D3A+>""=%;Jp3 -,0=9cF!"Q^#~F;)Pg[ ua(7[&\O$Ez=^7I7R86;3 m316 <)E~UKxI{C}?9L3 219 *H  !'*}#-["B,O,,&Q *I nn&2D:Lc; :7Z/S&zmf(((,%r0T8T87c7X#0v%2.^ ' V~ V5 Au$v $LE{WR6#T5(cXBwb9WS'r|6dcػHgڦ&D w+zQL;OGoDPK=t}ePݮȶGĵ!Ƹ˺$}B28Xiu uBBafB 7pk:(\? \v^t=,}I%o4;C> ?= = 8 6~ 5/_, /128"@$@#;9*41+&Y%"c!Na&"g-,}177D=HL?YL>cH>C9>:0:k)9q%7/'&*3B%N|&RO!H@?Y872X5m;7<n%;<? C;rH2uKF!GQ@90q2*&n{#Z1u`%3 @-Ai70-$  N a . #83' 4#!! :"j<t[w `rW_&1 _6 3;/Y(U; c ! .A$pG, / 2#2{*E",; D ! ,} y 4J -zr v*=o%6i3(oZLnTJr2nJmV0nOTUjҡoX&i1(Bs^9ux&p6Ϋ[,ŻJڿmkh~$7;#"GY47al<&16>d!s`! MX o aU"\/h:uc>QAUDcDX@Q?W>k9"v5_ 5j6I9j>rA:?<>:3*:(,)'p&I c,3l8,:@<HvFIEF>AS37[%*"Q1   ({3 85p1H.D+2 *.23`2<1w0S.F 0Z8)=:M60 )$"+dv2[?-K: ?>@8-b Q[XU { g )$Q=#O?uv2 ( Ds #$Em;u tr$ '%#1:& {  n(//{00,)%A`m \ ~ Ox j(O $?# V<c IvRt,*&X!.x &9x~RbI8XOfi bmhT"{et'8u:SJLLPK-)c i6 2A a H  K/*<478&; <`;8;93-0 .1.s,P<1 /7 7k4\26.')3$ !tDm$:+0w,h9V:?+A>>`974}.*L$ 3BU#+D5|?DBol?O<q9 8[<>W:40\2T26V?g F dm 8 K'p?3n4Q7$+i]kpIǺBŽxcCE$wDXnm] c2_A89a'[ \ KI&+q/20,,K .+)Qa*+1 ,|1#c4+2*0%31[.b(3&,%3#>"'.1(4#4<ABII@H;C_6O<i-3W"-d-,*%X*- 2;$ZGCM(NDLIDEKAwP@R<3O ?, * . 9FSO<N HC{> 3l+Z)-'U#\!["#!>)@3=;v9Q2*a"v',ZM 9% !, Iy "x'&E%r%#e X%4kD""E!<d$&i}$?"$&"H?"( 2^65w4g%1)"%M&$}ct]3OX =u G!3]zpU~M`lA9YlK Dx~ѴӱOj,.Eg!Ʒ&˵jg9=Aji¤?LrIγұR9iH[z4D!)P[3y7X.` )%Ux J 2-"+&0z2A52R/8o01I.<+- 1g57;b(>l+<m)G8&6j!z44k152311l86 8["8!(5=1CI7D6@^2~=-7)0'u,c)('!#*|mN*h9UcD%HHOCg6,%G W"W+'7?;^>w8 . ]!\ j6 Wy(,(!'vGg ! qa1 Iua$+j"G Y$ T ~| )h:+C{GNp U)-f{,*&nE+_WZ3i;uO ` rO3CK fG.* _ 3W;G]>U,!qyT?FFLgN@߸4<ȯxBJ68*m I޵ Xu3ʹ{V rpV:fkG[U78J- (M!0vU0 >T UkB1SD%#-;6p|88 :83$/- K+K,y025$7:@:DAE b?><q8 8>t9R)646C7%8= ND-)D +AU*>(:#2!-!( >>7A"1->C9D(E=/`#/U  %" [#`T$0r6Z5 {0*uf"D&II'z+)HN%wJzi < cW o s o ) +>QD5 sU t :|R0 *"q(!)%#Ns!wu7p$*69w ;3}X9  N A\}eQ_MW{rq(-l@h|znۼ\lxLz^$p,:ܺ EX6{ּ(pwj^ {*y%Mueq|Y3Q<: '@!6$-4U A8 6P O6. 51J/6'4$$#M D!&,(X3 :!>"<&?;.'w:#63Z4l5I[2$0]m295T8^T>%@H,=.:/7,0&1)a#`$"b t#'2n?F+G D+= 3 -6H,)5$ H- v '!26:6b761-#-+4O' l# @"4,ro1a0:-'nt E ]e ~ ;$7 $h M P  " pwk4T@ {IY w" /1 Bh P { NHM_X&&+[166:4=/kt,'!@5O:qVR(e #>! Xys {/ms &^-j5 c[0\K!<oJi_y$AqUu =5LNsKvFN ݳU0aѳZ5{,EʹT^8^.0v4uvh;!Qse$*B~"u P`l]F^w d [& .1/F,M(~ [!<Dh-p!Z#&r?.$4/ 6_57?885_8;/6+6)4+%1!]3!6 7"8)<2f>b7:8L56G1.`+%r&"$y$q!&(2.=3K8?# kF!FA;=3} +  * {,,)`'u (#E=%m*y-~0 .+('?(p&x"e<P!G"Mq"vvo2 amF 65 T  xT8z4Nj q F  W ~ C n~"BBH 1%9+.1(4W69X7P 1+Ju&X ,<b3o(p~baGQ U \+YP`jSz%NX"-nwcb(=kLCXB*ѵ]2}9x&3} <1ެ^lbf+7Md/x`Dym+Z_u:ZmmHoW   j !m (; 0x2/-h&, e( 'b:)q(^#F!w"$ (N0F!6*:0?c3A0>(:!;?<|;e<L#>_>AU@b E&jFu)NCS((AX%+?4920f.A+,"*$*-0.2205-18i-5%14 -._&Y 9 =qfe> n#}3&%h  1 -NhJ}6 a IEi d[lA"F_a1Q{+ 9 lt! .N8  :kPx9#*--d+(2":; K z ] ` x  [;` C_L)>P ]up-',oToc1^g9οhZJ~{K_b }), fMs0 f>ȲkEe#[e BB~G=H&`Rj`n7Xw+])wip YcL ?t'.g3p45153a1 /+ ((If*G-2`$:"J? 7A!B A??j@ ><:f :;< ?rDGGC 0=45"x0-4-U8*(<*#,$s,x#*$)'&l(s!,(O(?%he 2 4 L  g ,X.& ))p* A& 8Fzfs%^,jdi PQa} v=|Q(mW.$r !~\6$,u<JHM \7 dKP&82 %2'"(e($ h9X3yw 6 t$# NRtIMN3 #eH"Q-E(#*)|&c *-mP:,+Q!)'() +H06%9z n9J96<204Z12M4R7:,<@oD6*C@)">$ ;$'6"3%2*/_+,G*D)(~%$N!" '".!47t83 ,@ 'H%b$['[+-"05 ; >x>Cw</4 :)h$!4dD&)\v|*S 4o 8Ry d Bp|Fe}l& 4 L!.H T  t  yXZ4" %u)*9(xv%#t!6 D^t!6",5l;!Jxh#9d VIMpSz5ro}J$ ezX?JkV;бE]kdSܱy{nԸK$7cbiDQyU88p`3zO. M FZvJC y x K1$$9# " $#w"B#/&r)Z-90w1!/ZE-|*&Z& )(-q279$;"z=G@ bD#D%B'Av)?'o9#3"/a!+c'"JFZn9iTlx AU 0+  ,%<-0/m4)|.q. fzh\om , EH *_ P4wRq3$ c -NCjNt No q <kS ]$('J* *j1*'%6%^$V!i r!u 9 IT3 y0 +{ {C?)Bjy\ S6gh>z NUKq*] 8 yx^XG[NɾmJhIrjװ{Sɰ_k_yJE^ PZg 'P!3JYw\?1 r  ld{Z +aM %V ![!( ! $hL')+/X20fI//{ +0 /h.+u)Z*e- F04::-@CGsJKIF$DC6>0C<Fw:|6{1 -3)% i$ ! s"0 "f o" !O C A ^|nn?pN3  /8 b C  h "#7X   t=5Li8#r_JGx DQy 1* M { 4  z | O )(THqmgr6.rZ( )&l'X Bml{OA:ayBlIb#fiP 6\P;@r;eZ`Ul7: $zv ~=8`>V`jfcDlyy^woN>]m'zR):gmww Wg P# %'u( '' +=/u2443 v395z5z3B1[d/`--[03E6m9 <Uy?DKpO P( PLLD ;P 6f (3 ..W+O(U$w" # # "!w 1H|G~ %%H" :R.H ro})eE5g0_}A V s 3D'`>[t.PA V 8 T % 2( @oJ&M c  m n(3nl^WVs8- <7kH | (1  u > + _pb  t}JF'I~~ ^~0-a1PoIfyD>=hLCN;<e@cuve)?4Ng93dFr39&IONb t5U/Lm+> #w++B)5r"$ %- W'2 &8 h#l #x%7&g'"l'}'' ) - - , +\ 5* 'a')1* P,p/#j2`4y8#?A)E)^HL&wG!sB:_3Wt-/'v"UJ!> 0 7 4b!/#Sx"y), *`~$!"!99C >M} o9`JO|5DKHP7u><K}a  jXM o uSZklEn ~^OKvkI?cB9>DZ R }2 "+$k*#f`>o%y%\?RCF] Of<0a*1L= e(rv #(<;GlZxPgwhO8t&l?]l3$m%  IX4gJU9+j(` P, % W{;R|cz   s%#@.&gE''V' V$ (z^! T $=* /4'"97$7>#?Q!@E?O: 50-F)( (( (()([[%9! n   q5jT](4e& Kp7cV9zHo A ijX E(A G: lL^ =V A *Q3X7RX W9Il@n1  4 Y2Vm_ntz;f@wzh+-Eb k ^) hHS xA]DR  N88_(h#L>Ow.v'@"2{^NCr&n4WKh{jǶ%XֶZRܾLj-W% W^ex$-t  X2ed_|.G65@Jh0k e ] EM\ Z 1!$L)VH-p./s .@+Y$&[$&7+1T6r9a<RO??ZVV4}#-UHbrkiOdhVHHd [>yymL;;vk_x=~U47 d1YX| 5Q USLz'e6 O&jA* O" "v G# $+ %>#!K"( $h(M-/7+125I6b65m2. *@(2&j%'&&,"%N%.'t&@$!Z4G  ,r!U"-"| jc eb[% \ {1:9 v O #6*  EHTE 3 E D #%f /]~/J"ahe, .3%k,BvdBN9["ZducUqg$=ko $d9CcH#@A/LCPO9`P-owJ3BS<kdyL_/Zb?' LTN.MBf mDp0Yh(2kO:A5$JxfvB !3r)[ B  \ U d BvaR a3U/ 4 ]Z Zj R%#).PB2(5S6B5,4}E3 j0~,q~(% #h "v#y&uK)+,>,r+#f)#q (6  ",Q$>V!}!!f  \K _ y@x:n=mV Q`  |y |x nS"JfB|7 ( =A;dxq(9%~).}^S_( i*a s2  B p ! un" @qrL9 4Icy0>9ze3Dpzr^ a!%"|(Pi }r:o}Z%. v g S 3K ( 7K-I B ^ m q  1o # _AeU?6 )nWDK2r=@ 9%z= 8l\QR&[S( ,d22)x5Skz#%/\ YaD$RPo'IOF;fjIkG)&%6  q3-R^g>Bkc>!6 P1 ts SL.* < IO_!%x \+#u#= ]8]`Jk?~F;B:MWc&M5o{H1jTkC <NEdh0g9 f^D}[Dp3evE[4 rRi2_ 4 y / l z   O E ,6Kx_ Pr  y +A ?R#M'#*-/d/O,~'0!Y;s n' $& $t".sZKW-dqo|ieUz#Zt&%Hp! xu z*`0~,0 )U\ T`  3 'Se $ `.  jI4 RB1 pWGVgO zwOMbX m4M$P' zG<XAc}   i<,[ +s0 r 2  3u1{}G+wXIN!I1 8ct@0*%yg\ ;>7S_H g M Q@2}|+,Mt ~ / x . Us  FD <5i > O X e$(+*))(# ){"[#; X    G '  W F W+ >4!! k N I Fm}R  2]h(>Gs DR \ F  C O- L4W335Y7mi`` .o  B ] 3FN E lPL+ 46BLfo [vrk"D rwCj oC 5Ws$F Ce_W@U-D7z7//Vyan1#b7Kz5|4cW ) Y 4y\S\1|F=csHMqSFKu14] +ll DBn#gel%GoR}P,Bcf(>G&WV}$N5),Q//V/t/,d'o#S Q!9 ] #m 4& o&$+#|r"H|<8*$KQ| %i)+d ,;3*%m'5#Oj ^ 6 | k ^Y   G I^X(E]) } f  W  x@ .x + ]Oi"  $.:vD`/hUg[Cat_)Vp;&K8Bf_ e? YB\#oJzu.7]f$+w_N=3[gZb"?R-Z2]0?) I2L3 A_PgGO68zTf!r_i-qT ~ NpAVraB2uZY D R E k" d%K( ** T+G-=-_*F%j 6 -   \ -w! P b= B >e Gh \d#!%'M()X***'($n%"[ L E*Z` p " ? : 2L>BFA78^1 4yRX wR < g "\ 2ygrM xx7  FT-xz),G84_~&mG=u X~v o` h f|Ml1'mJ2fm#T[y"KxSY*( - ] U wK  oU?wZ6 U spaT.(iZh"tXJ( rN`k*-lyxXDTQ&20) 2 iC+ D Om /|]/B  e (& Eod . ;8 3 U0v"T$$#_$<#m5] 0WmJ  |  _ 8mfUJ `= 3 *[m= h 2Y X> #VwQya%m hC0q!(MRcK1a5]?UC?[9n=A -?sd[y S$3#O d$1qDEOE$USJ-S-x_}c O P ~ZO;V l2?slw cpq 6  HT ](?s #1X%U)O-sqyi-X?w1 Vl <8i5Hk=IR (#0$l$Z{"82( )1!I# :$ J#Z  aF v 8~F!$#(>+-- j+W"m&}! 4#tjTgE  D ~Z /F e7R 5YK | <v4c g!|}d f-$vsuL:^j6K0`3{ lUc~4:J[FtL;eB H\&A!y#ManDlG&>Az[4`}AE6Xd\FHF<jPgSio%T:7R z} N #  W z m q% "B t\ o tF&ppNBv - jdVK> lR!pv+ )]Zc ep;fnv ;'Qz>UCn|zZ"\q>}Z#G   {R   6 =hTJ) w C  T  { t b l2 )Es %#  \ !  % d. L) 9"  (a,fMF V _  g  U . "> It\fixh6a o q U j~ . Ab ZxW"vX[: Vi4)4|q;O0Tn^%b/ii^@K\p0.\>  U   j4d(6H!d l . ]JmNd oU_fV GM}57  AFgyr)gJr8hQ4@ l]k)k}qLl#_:l6 SovNQc|Xt:E pe|xD: F* Iq a t] ! oC [ gN  {  M :Ub6k-=~ !#JQOcmS 7 W| ~ /N-W ?( 7 T  D6Hk ~U\30,/8wE3X qPg^w\3_x\ g%ky0OhTr*m)!B@!XU4TfyJW"@j~%W:t`IQ J  JK<6s1}U]n aOJy2!J  % Oa8r%OWB+=ewQp._ a a8jd{ S U9 7 ,?giX USJ/x9"%u,:vI% CsWM oQn @ o&=G  K e xw B_1} <#,'))(D&3$#5Z$DL$" { z P -B\ nk .)b5!"!e6. " nJ  :p@'&g7G)!YM+4\NfYj_EL%Lyy6gPY{\#Im5FtO('~J'eG4"Wr6x4AY p @f  8  >nLg%v[{W %g6It^c fK , /+ N ] {"Kt[_L]PpbzsEOrJCHlF=.C4TVIRb53v + f '(  I i  tIg "/(r  2 uFe'  =   DQ#%''y n$k G F~s_!X#)U| "  ; @ -C|G^1  +H5i f?vfj]  q GO r  lvH|@_N3ML7DvNpX_0ei}?{e_Hz:+&+;\UhH?Jin*]qEp?o *U /,mkfNL 1  o? #  - ! _mqE? /  c   0W1` p CkM2=q" ujP*{@18^P{.E=n={KYnp> jU:.|\~ ; = pWw/'ix"[*w 6 HJL[QlA(^^ikHL|,GCW  m  DLmN B V R"F(#!: p`< C  VX _qn3f j"e m $rK|OIUVze'"wIa*K,JhG7L$WY)U Zv&yuL|AR3u| =EKg7ba/Y<\ F  _1 I  | r;Ep,eK `i4 3 g O  M > a & bDB!C_\@uvh^ly S zg[b~t6~rJ]Zb/V -F0@wk 0 E 9O&(TC>m6t#;R k ,BT -b!"c#N#!|~)Z:+^\ @J7] Pe K |%O{B !!UX6JjYz;  O  ] eSgkK$,-C VneA8Hr!i9p; mu{M>PBJpw^(.$8:E]*`I%~T*RR8d K    DkVPQ@|&VD  l 3+F  s F iLq % " EE G^~ xt 0td 4 iR)!$@J1kMBG>GMjm_-(3 fE B P 1   'U * :%}.l -1< G*"9$%@&%;%0%%p%h c$*"# p /!#"- >W ; => O0u n H%Mm!W+Y9g % K , )    R~   :as36Ye  % P2i7)_XG! kv=a4\4Ea? "DPkn<4_q&6I*f.m5!^vw *R BR _ 88!J"V9vh&N P  OS,(rZ ' =Pf  k9 Htde  !!U y =   n^4Z{ t]mB[X'qfC:TxO3\USp6KSfh A $Q b2 & i .= UCZJ[ gbRs  "q!*S x Yp N, ;.  tN[ T  @ V o gEI7AeB$Mh ae -f u 3! :R(Nw l!sL b9 oU? y# 8Nb R(Xqx=&bF>dE*w:*L>nR[AVYnF-E/1Od2?Aj55j7N6E Zi0,|8 4,Ck 4 + $I ~  5 ] tM#  O-< h7 b V   m m C yDI5|v*eq:>+%i+Bdi IlZ_z!Dy&p=v] wEp'q[]]HL(2w ;LN]Y^%u J c lBC  !   BW {j7_~T-  W SY."@"'"! ud o~ E,2    u Fx-Y,j c39+D 6] 5v [  G , MH/ohbU wPAUwIC4-s|x\"c kY(K|o\8|e  b M$LQG y CH+hAS{\ <#gKRkOr 5 7 QX H dS~NlXg,>ZJ%7j^[6PLL{,rL&SK29Xir x O`B^G   1 ? /?KB  iS Q /R""t_!b* ^5nl3 ({h: 2)0GYR 8T@%9hL|h\t \T&~%s>  k@DF{WjhV,N_bDTwO5 =;tz9*}r[MB#n6#s^aSM.&\ YdW O #]oC X \  |{S+:|Ds#Z 8n  i +S 1:   U ;I1Yg4J v` -N7 C @kY3Fp[! m:^z8\m6>1kVdb5/V a9 Rf on,Lg $ z] !'r |> g p `Xb 7L   @   0`E@1 !) " B!  '   W  M *#%m@k e @< T]@SWn peqo34 = m ] >#"K?g8"~9z1w }Xy`O'-|q. LZNZ}nr9Q=V&workrave-1.10.50/frontend/common/share/sounds/bells/exercise-step.wav0000644000175100001710000066524214221624107024565 0ustar00gdm00000000000000RIFFjWAVEfmt D bextZREAPER2020-09-0820-20-59junkJdatagX=D`5,xW9Š!"D^*nz_0 U(oѽrZ/[쮻#;J_CJTИ鰡Lg!J{hbu & 57 &3 %j/"}jԊzJ! W8N; .%ö?&U% $'\')n*W> ;t'!b@6"+,<XR:,ʊGR[gO (P>zH8n8 )Q"OWTr/o&΍4U~=Z#?Qk72+U@"\"qN%R #+Y]Jj$8?$h[ 3`B(U"4k3XzD!]SDF/=)  $.ލ,n ?EC#Jte~@7 ⟚!׸_2 | s T -MĔ2yV՜D5Y`t\nT۹Ǧ/mɕ#1Lֻnwl$벉m|l+L{[ob6~걘Ӭkh4ױlښO*1),p,ES s  p DL}J{i&ADk+L:<*T7ћ{:h5TN/*7%AF'[Q-y.R*4(G(s/,D6DtKTI*NE ? #6 X c//"+[&- k!Ǡx'O),D Y3 <`-y>l7h0<A(/ cGB/.)OHpc?S7qJxe*"5?mK!}|() 'EH>59',Dr!Иڼ2uW߄Ulg g 0G2yܦ0{D ͪ ) >j-_y00쿎ZzbR ݓ @Ӧ t2źkQ(1 Rց}\>ӈ72Ee L:w ;3J70_늛e"#柎g׸嬕 _#ꏁ;()cC~ ao j꫊*KA#G1p%9Eg. 䙲}c+1?6,6q2!/6E*is')~b=*S&w"vw{$@)| 2}7`>GG;C5=\W6+X/zk-3K+2%Vkq =y!Th&9-:-Ț 6}qD= ~,: 2T*!Ip P|o Ckk  7{ r'^b: 9'e'77T {CS+ P8ڨ @h܈ 3{&E^6BC}8 ] C ̡&ƂHr-5v{b.ݚ wh ڮW@%>hUɒWxǴ1 ȊV-=KwN3vB"l3'$^\*9᳍ݵ݃h;-{ /kzۢ 2n#$ =I̲ 1P(4 ] gT\税']~1 DC Id=!MFE/R42$z/-_i,$x(w'j)&m.' 91!Yf $"}+}6&W3CX#H;D5/>yU7=D0UK,u+('! x!&R/2 v98(I;~4n_T,-E$wN/c*1Iw6{d6j !  'H i ]j&  - eYu *iq}qi4?G !! ̶ gü奍KB0~/X[`ux9߅3ה ‘ңG̸6,Ld &ϹXMMC ށ%)Jz ʸsg\$>Zb8ՃT f/%ת6}(~G\ Uj7Q-둡K᪈2vݺŢT"ЩFKIM m~k[ ¼Or 1{lOudmDf.Aw5'4&22}ڟ/ -g)`'X&,'|&%! "d!/9%.t.(;l EZ81Z,.+]Hs)K0s##`D/K_;X("I(PR N[2dO9y!86}1.w&D4?pfҋWl v( D nr H jWcYp xp@ ?!=[F7 CFj \ .c Q⩊3^W7M꒎;"䂷+x@ .a܊ox JB>6W*oPחk[ ZN:3zz _̿Y^(BC@~6O^vd!@Lj)#q6xV{xw@8o|J듽BD|z.ߒ `B*of eW [ nO6Ij,Gx.JD U Zfg,w*32f0x6R-}+>T'8%po%8A!NME} "%^(L>R3C N?69HC%n>|8<;3|U-Qg*P%7)˦O%0Zc:T?-i5-#X+ .4qIa6K80F .)M$"8ZAX  ZQ ^8q S @ `{ "*>wc@AO41`5ԥ%\z (Q Y ۏK v~ cb:09xL]%㠪ܩ }_>Ӏ)S4mZǂ*][ʚl ӪVG SPT LS9Mxoy&"kqZFr |}ս7~w:s_ƯCo&A  olO4j(U\Iy$™摒s O 0 US b!^  X)LyقӾA tb%P{/v#0.}E,- Q(CQ$c#>f!C2CZ`f!=#2h},6V8e@'@F>a9o9G4X۟/$h*o(#&]s Vtٙ $F .u}k`4M 2kÐ+%_ [#  @ .Eb &=4 0 6A wbrE%7 , ke=v8p:al\ ^~ . 2:h}ߠ UW6xao,+s[)% Hڵg~#PtJŗ[9Cd' ( 7; X <N*W̯>ϡSoPSZ|]cGgD͊{`0?R5=QD^ 4z> 㿞^_#VyALU5;Dw6T߈ 6i\O ȗ e 5+Vt_};7ReЏy`xm*J3 0,˹.~hb,~i ) # ! jBl +o=+&$60NW:EY>ڼ MT:5Lc1C:yq+^'UV&)".[;B9'/E0 2-.$a(LX_Z"`č4%  Œ~: =  ;ee ZM yjJ*YDD'a f7c} |S `o ⇽RLL: 3'~Azd旉$dS .,oClnT@co[ɻ7_hoֵyX| /] R 4 K44um,Ҁ,n^Yu;s!E _`ەt TDIzꦗK{|X+jVK}'xP^t5].r/R vQ sC n\]eH.[J&Ys|9 +i`e#[)-^dE/^L,V)zD<$?u)MN[q~ ƼΝ((@\3M;= ; 62ѝ-5'ݗ%ZB#{ $+ yQ ! 3* b18u0~*E$u+P r ga ~O @;UYo" xC U(cX:pz ȎA+qhd >u5 d] 9!91-%%cF z$Vb'wBx+Sދ;læ ZېWX״]Ԣ;=W+C2 :a L d?\ژ ՙ`V(]Op*Q['[%EEK ]I Xe W:L7;[9n./rC Qu6s).F,kt)ٯ$+eP`)/)*UV$m[0" +iMl6x: 7 iR3|.ڽn(wr3$+#o?7GE\tp$ -5kp1{#0-זD&W `M ֝pE cfeY`` ķ 2 |D'1]h ^CXJ˵s4. f $z ࿯ al[!츂  b1 lӥ&ZB4ȹΫ:-ĦiPG\|Vcj a&+d dKұ/+|تѱNBbsY;{SON恵~QԄoݠoTPl+Qȍ-}+5}o@f_=R뒋`'ZEP k0 | |9p i!i[%0t vu E,"\<,Ƥ,()$%O  |'-x\#$ /q8 c Zp8A 3e/l)uR$Á9"_ [hVgK-[(9sD0)/R;(_"2Z= 2|7ޚ % izZ=r@wr}d 1W*0I bi \  hxh4-dm ;[MQ_8 Ph^G$j|sNtNt0Z ~yh :}?ݾdwC"tdѯˁ9WN=7TF$"OQ<A!2?)^-P:Dv&>x=h Tw~L0w\ nFx% _ Xbۣhs!P3f(/C譩=iA u"['}+}E($4 Ytc2 p=w(rLl'&=#_h tT 2.7܄ <R='D{݇"o-1Θ5 x55 +0 ,y&4.)!n*@hղWSlo' 6.70x,0&5- x'/ 6emE s + ֏pO+ydaU |n4H{M.8 U+~j@5XR LP1hnyOHYyV g,-%32 UpԤ}7 NХX<rԜ ^] QN g #ڎ :UWMߨ)ڜ;x|zF$rVJjo~KKՅs%?. rL_2}H2}s^ K#&c#s X5YC J`תܞ]7h<33&#1:P4 c31k , '!*CFyp sJGJp !ׄ*z, (".H{$> j]0% Qt4'5\ g ѲQw6Gpk .K o4c~+nhJӡ7` X|ȭ ) faBWpMލ~BHOԺ]i@೾=l~ RH] !\Eݐ?,t2zf-$\kMЕԪPBf G^\] 8^5ԯCu4zvϠ稝/73ܱ4B;!dN5$< tYY )iE8V2]O # 9rAe  \~X!A#w4#Ts x8ƦP - Pѥ<(b4[t>tR i*J/2cs 1Kx ?,Ke (W#v+O h ad|u'oP%j W+|sٵ)oc/#wyku W0^ }[Nt<An+)1yJV:G]8! :/R VYIp?11 GY HQn}V FF qU,t%\kԫԈ]Ah3 pg] SlEQ8`\LW>!.ߧ>֗4#z]‹H1- q5"M.'Jl0e87+]vUh)M, k %ujCE+ ICIw(Mz (+e"6&  hi1JP>ewRt!FQ1L5$- 0, -ԝ ,)%$BHz@ wU<F_J/V'lQ2*J%$ % \$ C\I z?+!|\KA/ C ?? p h3OћI>B~oL.Xv9Mu YJ}6 WZ*2粩+|DqtM*_+ػ0O\h9k WR麧'0)Ē7^dR[e ݻaq]fko'W_e.Ҟ"X^}$偙NFMB/UT8Udn| $ $y | 1?08;zLf^F w{Fs[ u}C!> jnRL7.z0w ~{I;'1f.. )Q f%2 &R4HgBi{qF+"e+ (L,w'="A RHw  G o Ų $l WrPԩ?vh"![ aX#L %GH_ \} ‘VɭKq Bbmzo6 L PKpeO؈,6.Uې!TOdd8 { lB<TV;ި.*eplaszX|PlsL[~(6whڞA*8@!AC4赻"p39}Jz^ $À ~`Š9$.$_65t]œCp8MA$&!?*! ȓ |4qSNHp Ft38B4!qX*W .*X S&kΪ!P/4@l]́=ÒuqLI-(q..& (z%Mu r 6˳EJZ  ~]FK~W [` &y  Y9*J5nP|>:bڢ6n`e )k Ei C0 Ӱ<)#vliHLؐ ^LAyIp,UT%2M}Z ~Hbdoa Gw]ݙQݭ@BJO];s؜޾ )|M` ~ C'؂$*J ڸK)EJY#{I}hU>PZGZ8= }j:gwW\`w(-z21Cc, JX# _J X  Szc 7p% JNw'+TOڹ6֓z-DYKmᰁMt}*yv>BD/T9~z+UfBA_k3-$=K ' 6zxTtyQ0NK wqc.^yg >!  >22#bNTD]n)ڭs$#eFf^)64 HCqk0 /޲Ɓޑ.|UY \ժGجx\E^¿# ,rbQh|K1ޗ Q]KG6WpCl/(QZsB Ͼq<тi[|v,x)/y,f9 phc ,  /7 :w"D,1ENO m%K/ja$6 +r * 2f& "M~tN5wenɖj}_%">2( ˜&6 !>l1u.P@o&k τ@I]+xz&;c~ !/31 /Um ; oaQ,(KN1AI ZO eWl{ 蔙Lwޘnvf/0OK[~bKW^雟zNqI}T <ڋxs֌׸9ĹTq}VHZh{ d8,2Q|Rwb_韰NAB]; ) =b4}N  Kio}L:j]% BnlJ&! ߭1%~S PL 0x[sj; _# Ʀ3skP K(8 C+pXU( $ }!B@m_/mR mC)Q2\@"r%? ' M# uAc(_[Oa&Kv# 0~_kE, &8 ij]A/iK! V~Q .S.(x$uwR,JRQ_\M+v{4I&0EbfI uU`6Pmidk@Ni풬G-ND檗î ,#NFOۭ7߃ eOWz ©I M8Mq2J7yxۗKرaֲI)PMO?ɆO[ iE[ OKQhV@{>32d@5y*_PmY26rL' / o# :w!2xsZiٷŞhb \v7 Do4vf Ix Pfz&~kX /j Tr %~yS" s*L+V' \b#==AעzC.zF} :OHFH Qg4G(, (_ P)#wC*Qg[oG* "zjԢw3KjX' &R.% UayIOfDҮ = rQ]UF F1q@%KuIJ[h)$ A5z{n0Kq"k+i652j*#"ۘ_g\bL_N:_.T7Bl.q~)HߤiL?֛ Qۆ[2B[V 5q 3 }p2Q:~鬾"Mdd{2qMREBDqmF z3N  %ۻc@U nmZ>h#|#{`)~ ϶ I#d:[ Ɓ z'MF}_n ~C 3]t #cy]y' ,@) &$j g `|d}iqT 8)Mx<5Y&)L %&W? 5, U8d z , G*-sn g!eL`'YrLC'oeu|c Rg?/SךVyɚJ8{$?v)kݘٚYl}~߭`4=mZ`ŗA'p" /7ؽF?իrkؙݮh(+7'  q# Do땱vXsT9b'1gX~p) 7S mA F | \ݨԖ;(8Kme~݌ŗ q]w ;V}Oɭ5dʤ" { ȿZ eN\ < SvGMh' j w lƋQJ e   N a`<tb '|=޺)*&ڣ r*0 ?'d; o#| O** jQbEm 8L 9M1iC'h*"%<O zv{$N ݌n 7O_jj@ 5D Il*)> N!' Fez-wƅ\=e3 N>9`\2cNL َSDN!sWpGvQf(* SKV63+;+|>ͧ[ĸk|2JQO]CF淺|f_F!>h9I177 I /_)HezHP9d ̶ 'tV{5%Zs) j/5uJK_0_3 S|  b YſCak ]F{yˁ!L> ]D) )I$ $ f$!i%!t+,%{ ɑr!?q73"hx) l(Ǹ9#v{#4F9@/nhe< _EHq fYcsJ5qPJvs*;fjr^!K2||ApKi0bDI".)\uzocWT팲c=F շ*ݛ Um`Y5ﰵ]2(\[[gXJ`)A*.zūUc~C i|m:10#h<rT%U?S \Q7oZqcT&3^# ' \ )@:/5-x H "a=R E y . 1  /4YQKOB1 #;L:\ % )' "2[6|>M # U}TJke }[I&K<)}f5&>|!#mGgArsʁ  4LgF |F?N_:qUps| in+MGM0w1& :%f~EshaM mU`!+c;3;~fӮR^ِ V> .sL1)jwo'|ArTUY|;(wep٥7iM:n5K 4lubg*>6BQ>QƍtVy{".Bf h$׃d à ߠ* ! -\ 4Vat1;  vBv;IjB( A ?  f  / ljHaM"W df [I 9 (Z(P ܑ$) + %3 t M>7Y3 fxM C"~)7), 4$9x ր-Bt@!tߑ8Yu dM2n(/5g 4qy;7@ym u߷$_${Ni[>`Y>6D,l=*iXkrN+HXO!ދ6 9*%(:;FUo2a(iO}2}= =3aK'3;*'s =PJ$ ^H ,\ pE8xi^s < nr+MCQHGDx6_6 ! c ?   +& Aj%T 8%H)nZ& !oj -G=p  L*@ <1.E"\ +'m+L'n!nQ'ϟ3~\=GҲH, LWAP;YKTWh!# `-2 G,UKy ZU}wNzQBts[ y<'0?Y|U\2닠#唉᭏u?m߽_Q^_Go VkTulnakxJS9 H , 0!3?߃ n p.q`;7{?/] p weM ։m5! kKf |  3 a0V;Y%qj x  I  A 7h_ 0A 5[PC(ie')# ) /|"/vWG,9PL { hz&\$-"*U 8*m%Rc k0\r\k;K@BW RH|ZP-NˍVTqz n |xp [|;M8"8xi </@v-uI. I _iMAPAOKsv/|qY7VD:?ӻ3w5rD@c6֪ ֕*" 4X齷׬9<sgT%X_G]as6܋/* C FV~Lmo>C#M J J 77 FPe :s aLF ) : VJ[(Gl   Z p l =x,zJZ : $5Fo(1 %nD {L +?WW*yHg gOmftb(O+@(Md#aw=kȶ"jYLHA" p z0{Q R=ߢVx ݂ H z_#Ut#k&y:g bIgKZ-ld 3 Ts QA 2 `^ t Y9 5dL{  ys,E=N1 = v B F k fEuqϥ  qX&TG&]"4 i q <ZtC4  JI#Pu+T+ϙ&T ":4H(ohk=kv R)C65p JyIHk 48)l jZk<UT9We\5D h?bi 8z 3dZ})@< 6T2"SaqrNฎpq3c|f)m!9EcQx.m"2] x |`#/ k Ⱥ>UzJ--)kč-9^*,e8e&~!E]I%ղ(h_5 b"A, kPV$sF!$$&dH` DOl`\k4>z,혻; g xD#9yPX8 |ETJn RN Z/&".8"5U0~>Y` 4%2A쵩k*k9b@^A ͧ f3[VoCq^Opb/('F8ԾJ6~hإ^IaLEA8^)*>w)0D7v5H~Aڣjnx- rE V6SGr'"F݋ t a, I Ժ? -/욃 w=T+E\Q!zɎjEU+ !& ? l t Z %/Xޠa[ [ y>V )#؍(o&e_ #b J wJtQBRGP^ _?'-CZSf 5+00]l%<-1D'0! %zKc*T w, rR H[)N M%"u !7а2#hL a]y4}nj2i}S L_ /_ ^2fg4gkt뼌n)^3;w$ !$Tnh %T[?q߸!l{Jqs0P؁pDA7# N \Sld@y>Ba { syF Z ۽ ! :"~lKJ8ئ'\+n0$-0}*$^mL%;Xc-̍[ C(1F !Ǹ <C%`)$)  1UK N,2smk@0K^&@fB 7qL +qdH/ 0nN ֹ&| /^bds5g(V?VWJ0.Ӧ13=3gv$kwtVWHus'^|޲QS^D,-Nq!yIܞIe\ SHww5bERiE 3x& rG: A`y n0 9 y R8-8$K#![}, /`L :) *DK O vz Gqs  hׇ $5).Y&'H" j  OX!0+nl21JCe}E#6.r1ef-R2y'!c|lwƄPHO J 8G k? |5FuY#.(B'*#eЋCxPVSwsN^ {.@?r K _G6 2ʃA5O |hDti&G>JX:z!ҙxى;ST 90݇]5ۂջӣJՅĝ XXo9_{#~grpkܩ c7ޤPZMlVlIi@o  afBh|/$t]D w_ fqqD ' x5 |*?~: MCwi\ha3@ emPZ ]0zM |] tJ Ba G1  DH O ([()?$ 9 ~ Zhq F>'cRV49zCq>)6R1߭yC0h*%rPX+bn\dV= g{ vA~PS0v',EL&Os_^ dO;} 41v;Al$p>T'M\1==sI y302 Kb=FdDŽGC?hMLU|3 MZTu3ln>,7;1> X.Jlc٧:gI&Vp<_BF߿)1ޏuItXiۅG!jEn 8j?ܐk+3-nT= Me im b}5`0[tj7UD AIeE^mwt ^ Ճ? m( pb ȱJy @%E)C& ڍ" n>X #g Z|IRZXQF7!h$.L1(k-xt(`%d#%z]79׫Z- Vt2"v(%(#ά&=8 џ˾ RQiya5I}Sla  <1uP W>Oh)G5.Y!ewc+1/JJ^]![a2A F׾Sݧ*"ۡ:^`OdIef# mπ (SA泳‡.ޓY(TfaiNPeֿZl+izA`fs¯ \Np G̦cV1k(/78v^I90誘 纖 j% ˏ kвA] "+ ~]+HdMy 5) :y U  HaO'Bz'bU#  r0: OQ .Eq=UcjbuR0Z@uZ(rIE0)/*Wk#&/o!8ݡg8VKeNG 3 z'jpf !).'%6&SGn Y\,k@ X/;Yn?\VAaꁕ6 (daWj _kI 2R-cPWtU8Q>C[=dd 9e^ Hۀ~ LARy7'tUCGFQUz4EVՓׄ7 9yz ۅHNI.C)ߌ a֮!K`{M 6S 47)f8H7Y6  X.JNw:# Y $94s !>k H49 k vw>os$ _{ \K=""Ø4f7.x 6w  9% 0F h#K(e%FCL"I%R k8 G ,M ~[< ?+ #O(,na04-aQ( $/gi+: ǡԠ/ Dsٸy1x$'b"#2Î9 (6<ҡ P GI%LPc٧kch DBo r/ l?2ܭabkvg?$Q1݃1sB;W ꮙ.䄤(iߟ}N> ءMPHFbcz ӏRIʗ|\ݠ`~h}c^܏ۤ^o&Srq (/P yOz$wu7!?r4$u8v`]N3DoG$* V"'i |]L wNQ2 , 2YQH^!&8h'b$]) A~ e ً / t#H> j'$/Fk/K!ǣ+#X'u!GQR|l|R 43dyw\8Z ;'c&rv l[ U%0 9fH.2oo뾈NVV v w_%3 -(Cb.Ke~KxU錸j؁tCW;dXVxb0x:ޮFڔOgu/O'f0A x#j\ySd1y:z{  v}xkZ S ;GRdy\跧 ` a4 p% %lnl;` ?)5 | hꥆ}Q˂vcg.bod uZ8Oc65Lxࢲa=ݩ1߱;?j /ʀޜY@J k)8)xq! uJ@ܖh7ۙ׈|Սx]<Ph O5r|{J[ 2sDT=>me(#Qk{6 [%l }I\ Ş9\16\ ;!A Y4I*%&'{$}c !5~ F    &x!*'H <0\ 0:,dG'J]!&X+=zJK lcq1?Mo& %s]t~""!*Hb cOJ[)݃tڭI֬f%MKp;E\#T ??E g$;QN =섗ud?-qnCuJE 7<tuB zK A=RfFEw`9sf62P#i1(& #"3 pIv ml Vȹ Q ֥j"iGC # o- i1B @r.+ G)C% g XKRi/ ^%Te-2]G= -$ 'fwq"/DDAuw kV !ӽlLjw wڶ! {4}녴Zy@磜8$[zp2nm)0Nnjuwu**ނ-cAw?heKۖXڽ (ұi!i9AߜJQHJ <%WOd9>_ܿܤ$_vKzq(ՙb"= C H^h@snckJa&3ƃY?Ўɘ5|w.gc}{H321` O n UQGR\ -|wT=14 trK'&-Y}'$ZY"ˇAM\H7'1< $\ _% $}\ @X xM DG) 0Nw0 p+ѫ 'mb'#!IeMjUC?b ysO3J&Xd%azd $~j`#L} #$.2-"-JC熶}֟K 35'nr][BVzP&`ee<:Έq ^>(9$-:aR;o RK|!8Uϡ#N4t+{Lg]ı<+Ն}ߣw2̉H`\Y7 ,8 poj״%rb=o u^JDߙhV# T38Ӽ6sؚE޲1Yi?*Rkw?+`AeT1"+L";X#&>%Ѥ fR0m+e>{ "" FLWhMRQ?ݙӾǓOL]Y ' !Ee;5 3ThHOɻT9`#b'M#jtk<K4iJA^ J) JELD>82.BCWgn_ 0%% O8Y|r ;%d2j.^ {崤ݣk,}ks81y*v_SMܲ4ٿMf朹ҲVWW'[݊9&CZL*F*녘?trs]Njg8,-݃rD[%m5s1Or <81!!}fP~rCvˁ<O F2g | d `  bPjn"Ti_nr.-θ%'nc گ@S.5p>#!?m'MM#(!R%dM"=F'YU^&pPh4 iJ $2 xŁ(a0?K1P$-wF") A$v ) `_WzagOR-Ltx&%%{ @EmlDTU,3 p. [=r:NTok ζ',6{(EW1[:#_KFR0XY \龻wtݗ'X@]d|{a$bbkwU&]mRSU ƧFm̊ؖNҲC雈azP<Wׄ~,2{l[{]}es=<"&P4F!՞R8n9l vK*ܢ:1T,S 4bNQ ) n &:w  C!z  @+"OYmxzH=[bU*D##k(L$&<"G#Ԗe3:Ik, ^Fxg0R4t Y!P%$Y-^18.V#*OV& !ZΖ>NC2wu;`#Uǫ&YA"ke1XgD> a( =^uSJF8zI #P;dA %?Kjno0_!mݪ_C^ ݯQKkqm=j&莺˔`$UG_[J?*h SoT}j 䔁 ӂa:uL.lkdgQ2C8SZu@OҐMׄ6Ԑ1שxkwDI% eXL!6= ^  Ljkcq!{4 ;?q&No{d9Ef 2! \ ; C'_K.YT&,\+U U)D}6~!n&%m'y%$""!Z _N\eZg9Kh HOQm K) :/o/}+QyŻ'Q#RW ]Tp] KMeIGy-^G%y I$U m1lkQFe) / c@4c I+ ̪b?NP Z r];²[PDRN2MޡOyۃ4yFZX,N9 oPV@$ w8f5m,lӄi4M@[+Yz)zi#UJx;0cֵ{j֯)Q B ]~ < poE \F [ W+]}dX`l `{2 36HN_ b .W!} 9 3T%r ;);#O% ;"p'$(&&o$Y%Rf!b#nx;L Ho? &}lucl$,!0--(dn$4oQ ]1hJXyC"k T g5pLkHj"K$UI!~@k k[tZAT ) x U%q08'Jy 52 e'+ x'0\e j;x nށ㈸r3啓p6]}AE_x+c]? zDz4\V 8tv֝pap0R7W^ߵ2"D?o[0F5N| g$(:1[}  y#A %i *Z :NWe FIy \5$3{7bH  & z xnJ[dOdDGRymL!Q$&%&2"%v#A  dpBXM4X-&'K+-+-+?)fK%ڸ!yt Y3M[TpvqkzZ#9#Sp"չNՂ= bJ $mDSityY8+ weVF696 o x@NCHm^9">߁/`yں\l͇ķݸ 'O9!NjD}1J ㄳe% \GP| .nL_t>-XBn4uwA,Svq;ܨfްfpgTN- ذ > h- ._N ˄ j h 7gӦ  n@-m- 4 xC C" U 3Y Z MQ5 0gwD* `N޺ ,!i:$$p&M#%8!$_O#b UvuiO)7vx7nmēH#Tp*-(I?+|6'p#(L  /_M zJʠ+7fx," jLJ" QR_&%z մVo$:$K~˄<E,UD~X+}i 6pJ \4s9N\%ivv޸Q舝EIxff]MtB"=&(j攕$Z>J䠠5Vg`*YjިFRڂ߅wЊXI@뺃=у gs ݿ?$yh13lPl?al_ A l 8p  J`l Z= ' 4L3? <"7Rc p9 K S , -*+ f O2mE gq %Qr,")#% #%"$x 1$ z"P[2.2 *EqD_%Gc+%+wd(ѷ$h sfq 9 -# Ln7{/JG=H !CȇֻQ䓻ef墮lp~U!9LXAm("u*DM73wOީ6orDQf\|ٙX䨡F# u\ko6wȠ`aL! ި PSɇ Mނ  & V\#A 87 Ł _9 ?z _8[kZ5JAl +` ! # 0JC >Vl  %I8 I #rΛ\Fg9""C&#*L&"ml$@8 "әv!)! S :zVgr I!s$^*)O)I5B&("|êbK ? H ^ bo̥ZF*w6E&L~eF8})L@O| O^zB鴷wjx!?+r @b5,,l",^x|P%[كT'a`>P෾%s `zM*@YO؇:W<ޑrPjݛbt`'[;m4 o , hIlN7`v[08:K F 9~212m)B .! GG _ aΆo> Y*  R X g/ +: D f<. goX O& XZr  1%<$w"'@"z%ټ !$mP"< $s+=[LcpT2]CJB O'D*'o#- $>}H W[ ![)1\,#z4, wQ0E\ S}j s ~8r죖UI-=qMD 톾"I=$S3Jߥ,vڼ;R#@ތᅴkٕ(1(sOL߅3y!Ea%ߪ"J:dߘ ܽT3d'x Gm91KZ✎l-@+߳9'ݭ5&V y!gtK Ε OYV+0E( mZ נW Hs bp}6M 2l#T p fGu By "s  _ %[ O,#( \ .'A@$x"ݏ'y#ɜ'!l%6#o!92v+I98V y&;jsNxY"iel(u<(%$:!$gƗYMSv @* @,tHMmJ_hj 'I r8ZauHx= 8}eC0A :Ń韈(޵G^(=]Qi9[kwit~_ PpB ڸ\*p싁^-X|BOꍿ Dhޠ{*Xݾܑݽ 8wAO߆Ci:T5p^/dN&bC *`hfᆢ9Jmlޭ@bǔ5ee ]C-{E>)yhpn-:"Jc$Whe w+k 2E| HKn ?)U Hh n X Mȡ K3F DhEW?wr Cn<Ђjw"j&"ʠ(!A')W_%hMZ#8 TIAd+jn V%F'% "E< teDp s v0mI5Zb*Tg#;E{Y\"I$`A =  '&=)f!0|)L[-bµ0Jz"AhfRI?v]P_撓,"Eą[伓pdތ$"!D[if܎cْgک@ݶue_8$Oe Pm9iA8J<qtbvH{W`!vG#(~mrgQ/yVGhG=8d& Ӱv0m )Z2s6 zm /'  jf T QN  ~@ 8:VQ!4% r()ȝ!m( &}$$%"nf2T!Q-3bl@ky[JA219!<]&B% }Z*#x qxD,'RA H( 6 wIU  ]ڥDFԏ 3 T^L%mC VG֖=گYD#]Epꎒ>aK\tTyuV֤暟]tb|꾃忱خ䶨IBl.zƱS)  Z`8Iq'Qv.wq]]s⹮X{!|5†m5#Ad娮t7hT=Zf E7`@:bń EbœJ=w c9]1 Jz |+ L@ Ч. 2~ s. & [N6u! eC&6$`(W!Z*1 E(0o&5=$1.!&d9KJZmP&_)Uh_̀#!9&:!f$ "!0SozV d!: l(;3XeduIOo;Z y J`,B0# c0#3m_wCzL|vEv=xhjjޝG?ME} NluɘTṢ"WGkfG>ڀQ[H{=n |썻+ƼoW,UL{vGcX٧FuZzۘm':\W]F]S +P꽀KꮰWb#ُ8i⃊V!r>*͗ Fńp1+ɳSt#mqyb 06iB ]B]y % n ( _T &" N> &QXv")N'^ t+_!++3ߟ(r+&W9Y# YC /I7 {ҴֻF 0 "tD%߳$ۀ%H"կ"2=}B0QKD1tfp íƙ> TwB89 {o ) rU׺ TU_2Y/!)8Uy&HJh jɔbpNO*>BvuIx(}ka"og硒i?%^(;喑Rno൰x佁^$b'V߁pُۺ_ק"zܿ|۵vR#$6O4DD_i1\鄄墒ZA` ;gg|2:F J$Lw{lG~d^ʩZI;csթ;VD=K&oR| 67r {[c ^Ϯ' x1 $ V# n# 1 2 4 &hmd$MqC*!, '+U(X"&M"YqC yE -ab=OKQr,^A"I"S&%b&#%"t g79-wkz§CfBז   : /5K_N 1  2dL "[`zW:uT`:+׼NMsDrC[m?}_[+ sG A gyRc_y0؄̟#k"wrYⲢߑ O6$NHZ^\~у +׷u}z` 3# okf~u\_F,1-ys9~A-sr)j_s.Oh;ZFn@u?`i<N uc =M42~09q S0T=  cn 2x= _? 8Y zn @@{ Y'Y @/,qm!,Z*U(_=% "Tu \ y`L,-U;0P~x$,b$2(b$'!"$.P5 E | o! 60 fl U =. u@_K'r4 & %JHf;W%읜T^6ND|m4T4#Z|HOY,mtWT^*#l,m|ӲyL Nu@Q(ޟ1+2FVMh \ HH"RmJ[8: W_e #N '. ]6 K \ j 6* u1ɠ!4'!K/+Ę *s (&P?k#p!MnB H,l[\n9Q~pCq ^ p"q%g%'h#q%K !,?l$4Ge]lxh T ) L! )8 t[XX  GB|  e/;b$dBE`ehWCh$;"/{gݾNWpsAvx/o+wK!ɼh15: Zb5'U~&_ἇIJ$u|bis}ck2?  d?c`{(+O4P섢`"Y<9g剐Z$a瑊"磤,Vꢒ"쐌I<&9\4  [u3]x@7YDH&c(=Ndaz(l P a24*e LE G}R suL0 vbcP / te, < H( e"2?6Bk" '!r)7=(u]'}$!N| ^ 54UV?ZG V (!4%"%&%KX&hx" $ 9 _ a%8%lSrj 0 UU k  I %+J AkV ʢ 2  :F)VKV0o4V -͸3ȃ958CJY9a5#f1N啝6"YXg!iz-N#-ww$[sIDAyDڣ ٔ>9Aߨ `l5`>'f&餶<<囟KTJz}l|t9b_XlFSqsdw]ujEAg:qY`I O] 6kK ͼ u?  x"QR #"S& 'Ȗ&0%#u b(vJ.gW,}<ԁ=#A"%I$n $#w!!\d*v~fln [ b W FC 2R \ҹ[ܝ K x2 vwE'"v'%dH|h`3nYPl됼@׽oH沈YCgT5ω5T. PWoC%WVbbg艘0NQ#aIdN,qaaHJsBn pGV=PzX  c-}Z*z9X   ?u i~ }l *E/ 6c F\t,/"[ y"k#Q$u" $ |#b#$!G ,~u 5esy0Qب2%$QJ!r'J" %B!"m]5OG,, a _ 0 <  #ݱ76O MQ ݁> K:I,r7r uDsn\J>"p&d'ND2JJ2(dI jYo 뷠tQ揵gEW㩙Dm 㓺j~!辗\:n1!s1z'17EN=nZFRyrJ.@/Gfoa u *6oꅦ/ꖋI~LɤEn}ճAPm_aK>d̫Nj|m;gXoW\Qre11xa10=ѿ M| ]XFvߎ 9L ?$ ^\Ihd)%)n"l"z#D"!! ] New8:Z5[N_M'!5ʭ&*!"&#!K#DH!gڙkk^)%K<K +eֻ P[ Ze JY]VvXu < z/l=$ ildivA'Kl;)$ o|]n49HWcUc蠜sVw5梡*BU#;?dAEջhݿRق/7AڷCwБL &k q\aiP駯x4eT" +9LxE:t!# g\xtQ ^)eєޥp }خ;a }An2'd[,xޭt+VLo\͊?蠏1[tY==POoR.oHkiLZopFz7kgo )^ Qm,cPe[)kEL >o^ rcy~aCk R$R#r! pʑz&OrB%fEעU=Lu`q%ϻ'ol%M"QJm j]#Fv ~HIv  JDRY DbD"+zsU G zh a m+g5l/ EV- pnTAo ľW% %2OiLzIAuHYT!/h(^.TG(fꕢֱX o!*(٩L+SΟ:JnhP c}唘}:gG}hMFvO9q_dꝹ9+c|ݟd;Er4A˪;T2o-=2ºx^>\B1;0gJ  \ c¦>'j-AjчyRH^ D |4^Ŀu.]Ec##֦h$`I"WV!$0 `6Gy,w6c ^4goqm"9'7('ԬR$H,"0GJhX9фH /R KK ً X 3C &x u5m C  & f'cq eT5?Cx)XY = I~bڵ 33Wv뤏c琛"h)Rz5i0e ;xjp ܻW țir.ԅq-::?u5=loզ`K釵 AWM.9閾4⓳Thm,ɯQ Bh.Wv8C4CL{!atjEdYdk9J1ZJia d jC] \G`΂] hC g> 5} 5< m Z7&h&l^A!A.%S,Y$4X.#@,! GYrTzS4?gm: qK%*'ɮo%<#q' ̠6s nCEF~]㝶MZ{GH (r݁Z٭A%D%S+F߷fsW#2aB 摜5uJ&a]*]߄(< vEDbDI*r]&4%:<Dt,T9 0ەQn<c ܆y{ aͅ I\ ' n / m DU> Š{ Hت < + xMu,^z+*0$Ni% Q$G|lb#b!"b<X4{W_gj.iZl!=U""'Z|{'/%P>"x/!@pR|T`{/q 9 b ֵ z a+vr={xS v \ XfT05z`r-~/' q:h /Soz"QHRx52.6I鴁@//hvw戉q//\dcCYAߥUk0/Oj((؍}<3pc#.6P~MuM<98뇁4E3Y3p'pb*2?C"_H5_={br2K;&G5*bTaps~uGW !|{. mG i [ eZV | &   ÑU ٕ rOoɗ/">YG&% o$6#`W ?4 da:oLwA9V7"-Q%[(sG>' $؊!Юpr-߽()9V l \d 9 J~kmRGD%B 9I3 S-1tCx h/NKo8M,L* cv. FZNx[C l~0ޜԘ4H(d)h>^ɉC=M/!;{9~'؆U03gs8 ZȁDm\bC7BSqY맺!,I<*^ͪ{{9vt7US9ёp0xyi'3}|[W/N" mZ+ Q5 89M ; Xv -10 p C pJQ Ky ( =+ vz S@`%#J'%9$¤u"TyE6TGU?2W#R"(J#)H?&5ykL#o`;M}Bt$653I ] K .u 9 8 e8)X"uS<8  PFA}lBjvppo) i&9;T$!<P&IsX}b7\ZC#L|c A%TX즌6L$7_: Dc݊ lO皋֍P8GENGmu *]7ý[ab+뻬&:S뿱.+H ]]`ww1q:FoMKDŝd k}~ /W|e!m xф } 0$|} na : d  O  3B &x ]@  KkLS$o,O'N&-M[%##_m!eZzG= f <Q nvqF '>)Od'=c$)j ߅n4aNwIf8>Gw i | B s `V{60lq~ 0s i| xGD}xzO7wSN*{K'jr1ƺEhV]n[/k끌gFR.tǩܿT Q,ygޛ |jiᠤ`-ޜy'w$雌 AZv\Oq<1 ch] jaY7;wsR.덶)n`yhC(%/'6B~kgnJ\8hefxв3&Z9y7|GS@.1 ( c < W 0  j {[ f; `l QW)!N j'9_[(-u&|Fh(%"GW^ ڴlW57w|)m3z[ .Xk$C_,")9(+%5"?7L"%o* M [u RRN ;@5K|eW 1i { }# U Y2qtiYn]%(@"'|&f$&|pG3̶uӪKVH cP^E{Ɇq=tvi䂂_{[3cڪfm\gTLEcLp܎]A(虧}N tvYrr#p /+6XޣQv9_dTZQ@ޑ֦bEYFߜ+$.= џ]JgR݄lB. z(BL}'sz+ v U &| ) 7(Eb*'q%T"UU _?SaRL &;# F))\(&+$5 fe>r(BUcN$#N!(>pm' $#X!~2>Ά% d < V  c 6 K)x ;_\ v  :# lf ^Q+z6ށ[D>BZ/i:c1 P4g^On4d+c*gVpS?㰗3݁k|ZBaVH_C0r h_ik[$fIfiT]]1`]7k 3*4Q2"ODK!+PuxmUT6wW_=_`:A.CI$! l u*ڬ1K!)4&q (`(cM=5+" 5uo Ϯ&A *( &'q I%'JJ"Kxz T3 u n 0J1TC %1.(K'%~M"==b7~2d q  _ P h 6r{  NhHz @b ` f ǰ k U J `fɭ|,/]3@ ^MπY p>b[m!1 -y\mzۧV10 w>Ve!5T iZpۦ+`a/ڟGDQv] ޅX t[ cy W G g L8},w~hrnCa KU[YVҠiqD圕wY^ܪ8ڤ*hC4'⟄VD,ڢANg!ݏqD-Zau"x 'wTTAx.. kSR温+yl i#@Kd?R`#0mmT(]h.khu?I#A?G*BZ%^ Z)Mӓ$ tpmע-.>|&/UP6XEi C') &Y*Nj ( &o _%! #E !~C c! 9 a= >A ? 5 9I ï%j'Ջ%ӆ" IY3i (jl6X L  dW  q  L : &S] u ir  | "$ bBF} \;3o#!i)E= ?0]a]X cڼRھuܯX[6f@r>M8<;kJ_Fyy"3Fvj-W#+ L&օ靣b sTMn%%;Esk 䓡4c'M幪)ﬧt!7BpU|}]&:lF.f;a( 5`/VM{f<_sKIS>xfM*%6;#,eF# A)7 8)k 4>' F&f $ )"b ?" $!8M MV o rTC +$ (Y ~" i'[&#!70TXPB9 BB z*; | X  C T d S ^7Z  q ;  >\ iP v*Ch\s1"QGFL 3G46 >O/)E-hZ 墩O௼- 1ݘNO;K\MC]Ȱ{Bh ᙵnށ.AܫX ߾StU TZzfr7XX295?quKdy\ Jh2/o ySR1&hpb?ƅdD4w,y .ؠWVoV6\q?/;.^" 2') {(WM 49' k& C$R y"+ !i A" r X. *^x W b *$ 2"'5%"/",(    : p ֈ _ .` r ~ KW  \ʛ <ܱ ع$ t .G  ym1hzuS9zpE {qLS&[hgL1+EGSdZAܮJSٵx:.*Y]>ί E ZS3a߁P&e!!DJc\֧١ L~H"Cv+>w)m]Z!^<#o|w`0ģǖ3uUP/WwUk=8'.?0 iٽf)gU <}S4_ U߽k*tcloBrXp:r:ŽX#^T)j)@Ku('%1H##Y!kWr 0NU,ɕ2q b O _"`? ,&ɍ & E$l 3!z *G^  cR m|G eU =1 ] s= i 7 [  Le y @ _ R pj +1A)?[<k_'f[xSy=;)U ]Vl݆;-I|vڀLɦi/{Z\/ 8B;PYX{T~ ۙdد^tuK1u_ND[SeRwBkAJ!B5l*XcQnw%'*ULKq g_`,+{0WxE?Lxf Im/Cl!L 0B_FRuS6ƁCHOtj<=kk%Xg 56j &4 E*)9)uM T(iD&^ $A! B+ND';Sa ?k $p i' p% ." M Ɇ2 J 3 k_/ 3 X Na+ / 2 T KM = K? 9^ eF ֟ ŕ.cOIX Gw1zE"& ([> pJa|x?ءNI 'u1=%#uk{ٜBK<㵀Yl5/Cy Y.o-8N0(ա<@ڢp{5Oy{bY"Pdݢ~,K1yOU N9^I!jcoDjKcI tnd>/DMm[P@rZhhv V"SrhLʛ2=߶w},Mbs +HT@/01#(v)Wh Wq9Pa1XJi8hN H(^Ck^\Ĝԫ!3{Hp4UvщcdGv! cd@"2'?K(&U:$b!I' F?aw_.9xl & 7 U#K MN"' G3 - = V7F7 a_ ֡ > Y  Fpi 0m ش{  q V r u - r 7 !C-NJLGY`[5Xp<tpӒ߯a^Y]<.sSڤut)܄w9GXLv%:H}tO* K 'otmYm}u$4ڨ [/juvI{xl>b^Br b/^fm=c H?R>ö[6?3iix30o6ntk\s fKEA~[]30]c9=Zfy)</T</v2% Q'=K<%yb#`(v!OыF:~v3O=z0), ryaj W S :! rjj{ í= t yDZ . 1D  x m O VK  dL ^ V 2j ; ^o $n U D 2H[\T*`p"u xhr]4RPv($ѪhK)Dt-.gP۟0 ܓb'4₢L\C@n:, C`g/RdHja:ߌȣ/0ۃin7r偓"tk?fO8%uI]%LI#eCe{g:jMJj^O/Oz=%uatf@_m~~ !jt0-2#+ }I0< wSA9d.tRTN?p?-JK81g<3AiS.!;}&s%kV/#A!q'HVIUjcv72 .d2 1i Vq 2 ) L uR "v D^ :> ? ^' n m  7 M _M Cb0 } .%k _ D< V0` :o)ZhArZeDH}+=RSzjF? F;vζsu҆_G57YifVɕsȱzbg.B<0mmvY1b r .&BS< T2z/ڱXT iCtWI  x O-<D|0?QZ`?xQ5 1Ibft}Th6Xn]+F:I;2K.NIKe`#'#%YN#y.! 6uA0W[fx! 1h\d Q cΟ $[ ! ٹJ i ) cN  z ,G ؙ[  S S oG   c   <n+ R ?w k j/# qL XlL͈Iq rzzjL=Ӷ\6$p@*}ਡ~#)d~/te*ӳ:#ĘW('5 d9 LESQ R,♸L t #b 1}s`6)Rky|[DP6{Cq>S# <`%lK4%w;Qxbk{{3[lߗ?k+;10 #6Pu`_rApwM(`c&RGf{R!@V#f! HlJf&$zt==uu(RW&!o~H6  ] XG y- x( FM6  !Y  % A# H _ )WE 7 ' r  O 3 ^Y K sט @ /_<vK6wh4WNW]G괴f<2䔀+ KCߒyj][Y}ǍP]P>N)H'wBJ I7nG"B4w{Ԥ|=WiC XHW;$ lv\ɐ *D{q|N} H GCld}\`aN]>P(Il, -gEl zT~j!`5}$XtۈdQw-6wu!cd!TpKrSJKI?:84"bW +L < + $ V: M\ # S!  $ \ Ue g W  E[ n o `Y&3 o -XC Ǜ 4 &  [7>\H.JQϽ )' ާ@> ؆Ah !FyۇŖүHy'_UoMꔤWp|OrɿVT c] O*!/*朰pCl,a.Pths0)v|Y<Vx# PPwITm0l {$*JEu(jq<o  +RAhdO6~ ~;ns> Pfw%"f%lu=!q Ztg4I|]4!akUAHjm2UIBNrPxL/  5 BY j( 8 x 7  m& b) gQ :n p;  5/ 'a } R * OI\ A) 6V{ _ Ss(YW]7#)aL2_rICO<(r  aj>! 1+ /) :!6q3:|CY1> `j3F⒵ wPhR #l-W~x9{zjZ xzX)(@e0a=C0]t^8cZ` "v׿ר&A*daKg).#&tzs7O. | Hڇ.mJqA=RM4q'bbg-t!Hn:6 a1o1O9gsSmQP&"V|Nsxƨ}pR  8 VW .} U+A +) Q s 9 r >  u u 50; Y oWc+W-y m ӣm> l" }* S{ N !pCUԳc 5~5Bm>[s_5TN(7 of` !JDi4GԚ޵2we蕢L3"I8cudP*:q7;)p4Q nD49n9&6K%S7<bJuwsͽnz;~@&yxi \fM~ o7yOG;cJG Ip~hh2q0C}+s9kbUyq2;.ݾ+-)]GcUd;Rs4  ϴ `'ͷty: R5G4 (kB R| du ^,i T : F >hr : 4U i| ňv :& A2f 5m\? G. ` 6$8> 1 wFer(hl7NV4DGK^h$ !R_[{^dG*pPa؉TkRa U놎&{'l jEQ>4;Lꥇd I]dQ Uwugvd0h(:M1`|(8|GCFt#=]poͦ8}4$r<Su1Τ('N{g]6PA:ٶ6m2 " I<s™E./k5P/.b^! 11+ 0!T"eY*LdmbNwK}ؤ ׽b ({YAF : @ > d D} g S1 % k vaK$ Ù 2U  6e C> j G%  g|E d d@z(KF @rLo N0 %* FF3VwtNi0jscEWv_S+ef%_P(':F)W <9uꮉ!htV)0Q.哫qbVGgo2*Uy;TTRg ~?]l_a7AX$"W81HeT1EI`:Tw7J;n74`rVuADldZ eUfq=O@ZMkn>4J~%o 7yo[}|uqٯJ*0~TEzde O>Zڏ g hDf`E / e 8 :  ,@  d2i83"`%7 B  H : n6% P5 %C3 al7n<;' zCԺ7Ӝ @x |7^DX>9xڊvpn8[N"SKtM6ERkbc+ZW Kx6\lj#RUUsx6RjR:P>(z"VkT`_`ɫ P,ji`x:!tMk;cy/kʐ΄z˶9d 9g9`4fH=L9u'`n 7 B 8k3c|UpkWCiD(.dB]lmouSP>V{@}T%Rj{'a'cp"0i}o8=wz ɚ v &3FCk mel G  f )T T e 4#ݺhFs(fy\_4; N 0  ;z8 = קю Cgkj D6\b-drhӿR ul G; JK x6T@e!IU0ca繝m1^wm ܂煛:c k@'f0zE7>m/97J -gpyeвë0} >@==LEhC /p= Ns/ATNc*$m ~2W|iuݡ`JUeg6]j],r ;3'8  ĸ% Z Wtx' a M q 01 # : : j=ʪy:*s@@Ld3JU 3v KS  gİ ܥ ? ^PTDDYo^lR: n( ؞ ?,aT&fD5E% )eyOv꩒V *Ahi:')ƀ뀛뢲g{v.d<3,G(G 59S~%97YAtG=nL쏹*P Xo#\:);l:o^ 4sc_R7li("S_ zCTMUB xaY @wy?0TeW)/*#9b|Ŋj(m0w^  ^FIhF[z B=  $A  ̧;"QӦ.`>hxˀRWsar}  ޿ H _f &S$ h :) b ) TP ! 2s* EI0]V80v?/ph6S " yDq p R U S n8o@wQ6)Mm@j8D\XkFKZU y7  ΤyF73A̖/qJ{ y!} 3 0ś)sB4e E*iB'1띈-le|ES mi`4lr #h\!$5_C&}2rT!0|RDii CaVׅi1\L%3C̤=U5>+W{/edmaSU[ y  Ň' nZP-έӖBW9ňjK,fE"NC 77 HNdJ !f >џMVY|2ztvy7;` ? 4eH0g` #Pl8/jǽ ,= & aICV*=wOZ[ aK:O{i@65v$bP ) E9BRr@v]Z9z"crJ ;Njt y>U ( 9x Ā J tM<b$}`}_vP<Z%.B}u\2( @?g AMo o,=&y*[(Z44GU09< 7w5|)s(4_k^GCE.vPGzh@Jp۬L O "Gƻ;VhN4cc]*07ff,P('~Ox8p\=lm Z c )F%Lz#΃ކea~H& <$(@/ |8:s"uT g5"m[F GN TJ 5(ܤk[|ag(_<.> L Q$ dsEa{ f ,i;  _ʨ]4x_(8ǭHw/rR*   U/ ; . cNC( meHX.ncACRZ9v ,XL X5e Ak*P 4HwJdS j $(ۉ ,@e4S=pP,!l?yGWf pL,K{{M#wU(yGzRS9Sy׋v~*Q }@n-5oR{ - J8srGd8=l%Qz]9(A#G  z?Ƴm|_<]T-(^M@0/} Uz  6  _x*mc|8h<7V1} <ݨ X z ;L ޿x!     _ 4N/ ] ] {f}jfK@0Gc^ \'cR; ޾^ ) - zR?,W$qbs3f7tJ hk gj)Th"F ?u R u YJ %JNUM c]58\ IZS\1{   t *d)cq?PjvaW7Gq_йIw5Ah l qyD +y^@g?ZVðk,:EDg0y& i@|;&fq Wc$f3#fb1XF/'@d3\Ll"B J{S$Uоcw%Е4p9r_)\=R j_ Vz  ]y gB4H ye~ Nmx%Dޤ#'rqJZҬH^$|} +~} YGu lt ] fςsoI xY)ML }  \f]nϟnJ[de}Q `V -4 3s {9t5;:lillL,ͤ:. : eO! 55)UWZ-J=HwfD4 -uQ (^u )D?oԇh~SX#|=f9cd4vۜv혱zXu XQJ[5(sp?e .n>7  ~XOb0.!2.s! ~qCl/-?f&& % *Geů1H, 5LLn](~_og dXqm%c+u{2_\Ap bxS@WyN \xA  w,/-vHT L,,]P.,~ yu >qDm E  Pxq }5P3 7Q ~?TU U\ ^t2 $Ѫ 1F5L~< g*  y8]-P70} (  4?(EeAx c .xw Bi/ W}m_0"%z00 &Wx tqX d1\xu-]7v5.k*f "x2d@f^!Z3%>=6N2b ~N-m޵v]Mx EnrjN(- \&t"rN+2W9rm)zL |Bqf`~Ef{U1QCioFs! O\)Q!t1 \e Q~   Qp lJ ч;~ +RimV 5u $ :=SI,ú 9 X!0 het [f9~/"z@Pz5xl:G'"yObc r7 aSR Ja݀  ZM/*[ЊW, Au g s-B+\WU^EL`a w՘U O+`l.xP]{c" = \hJ>GyFbtZ^ _ӈM((NEh1\_b- V/pw}S|իg}ؼW&TNr} 'QMr3U[ABY>Uszܢt=7w}NYr,r(,,w21ZJ-kP_ens"t $ [ v>ƊR5{0x5uH aH z,8ԒGs ']FV,po |l /  Lw=-i\ ~E \ Um'9H#v3R cf RC([ Vl h*u?Mh2_&;i%_ / ]H)cjnJ;*@,"<R1P=bx3U@X0 +R]w ޏe lH # +isklykVs *t\_m[6$1)7): n > q$&I HyH #x SpZ`I%Tt_+@c HW ` zڵPb]F,q=8V b lbU_(nNLAmZy  4*uDgCR<  hrHrˮZEѾ-.]'ݪVpM(W!%pd\3QJ.BC$ 4*˻T7Ki nS=!k|ov0Cb+@-Hl)* != 9U3+\ڣ-]"R4Y7j@$!}%#g#V. ( (Én]D p :  #Z!4T?wV^<#2uIf\ p XB_ <kayr:FD _VN * <  ?8`%;WUd  Z~%IĠ=^w$N Sx D i4[uHgod",$]S.E qȫ ([ Dcd ߈(EXa/3*V\t7.! rvb3zAǐHRm+'M% Zr"8=c=)9z.}Hr0P қ9z LX~YCWYJ"yiw{! N){Ah\pEtC{zLOpBO$rR 2P! N1K!Y~(&Gfi;*9O4)zU̝+zXܞ7 ;Wo H <1M H[=<5?@0EjzH/)M S,ftFrJ =~b B @{  l\LE(n !([&[mPyR$Xb Z+ U-3rTt~v׌0L%!>* `i:  ^ dnT2_} ^{rҕ=j#:)mcLBX/nD?7<mpХdl= wkIu*e{J2qnZH0B$I6_}qzfE!z@7my<|p 07hh@*; sC=og$/Su\nq=EW#B&1z-OR wYh[9 a'4\e1M <0 \n ? PP%kRj[I^ r Y^( d r4l d  - ć~ zR jCʬ $]J =NbH$B I !e2)`maߨBwx3 YC CIC9 >]u3$ޥ$E(e! t,P >hvtQ4tKF[ XfBCb?s+AQT\8O3L)J628I" IT FY _b |#wVY6ub  ]{78tV' f 2Gdb z pWx`Efû g: O$]{P9RV sB #" +W0|6` x=)o t k`[Rb|N3jƭ ]'D> C4""p,ZJB'Ff9Y )E.x$ c2} })E׈/ljReyкF1U !/| DNS Oq% Ly |8`3yP!nCq#-6o94 fo nhOw~.hO|› T%z\Пd|coCkL%G<dZ +   BsM c| >I  IE <{*RAQZTp Bf IL ^ G)v LfcB4R'i Z Y%bc *gG 0 j V!8­#_m G& iu,yD !MX>hebj@Fr';G,d()Z~ BV\gF;y!Q-ft3,YGe9(ATJpw86n4Z/.*eo-+M% 9L.gۏxw|ygnEˢh=L7":pME/Ε2;:u _[fZҼT3%nH;u7DGlz@. @ 6ef PhQ./ؓs-R 7DV u{3T U"}g%l l7 y&qYn61 duL 0^P D Q~}3y0>+ V z#c@3*i p J{" aM5dPbyOkQ,JDR>,>ub)j2O|yzRF}Kw"DV7yK Y-G#i*4@{D$`XM`]I{9]Y SR1h)vGS̞:/j3W7t#`ȭ |pPcn'z]:Ȅ F5- t5 `@{EL\όN1WvjT̤T"*rVY>/np I9 X.b 3Q@1p%'y/GSF|~` 03}sI .r I% " 3СH+ >!1Q6 V5 %#\M ' K%Dgk8+=Qo-#| A!z6P=aQqL+'{b:WC:'e="-p?n|gXqZ,c !b{k\4+%-`du%v Oj>Hv66)Rapg --3 mҲr18d/>;0jփ<(0Krcva1F*6*+ 3' 'Lm&aR*I|hitct  &EEr GdPM$UvTo\ v|B %]4<ym>hw. c R  sw6} vbCKv " xtμ r  D zV ]^ ov6VkL@ br3 X3 =  2"+ p7J_6Iwi L2/te ߍxp ׳B*EwL:ӛ"8 >Qe/xp@TN0Z6}+HXOw#u7(fa!6\sa"[AxG#Mr{_gnbEo odS+O.>qBivM]5Oe3|} c\>`|2y("REmXw5)f6_p,&"Ov.9ICtyXw^_ } Cq=Z!59P~VӐiL:{ 8 e$1q f^ z, t 4 ([g8'ejvJ4 2 l Y! =@T&>%hoFKfxXW0I=q^ptX%{'c-* P2ChQfB>]mNEy.Nj)`fMSyebG׾\>E0 eV?1<)ݎMXW6 f~|DS"+^{0ν.S^/;F".ibh mTzDAOtPF"8 C NiچK&>Kz)S]ph%1$e0i>p WS Ֆr)  !lؕCR^pr?%tGU[ t= aLuf] 9J , 8 Zt t K^5 ( [ZM Y% F? L  -Z T;U\BTdCpR٩v[,P_``9\N-`i u{v-tT]l(? wE2Q*l"p02r`\a*0KcXL 6\=A9 4jH 34 +K - kWtP OV„CZqjl4w_},3@pHIMZp U/6 0 E UU v-R 0(EU47T3t7Zyz_c \5.Kl % 2  Ne f-b2\V 5 m 1 {b ;  pS"r.Vi}) & (&X2տN MLoSJX0eIs27|RbUNIWnBM++4^qZ޴Jv;X!ƺ_Mmv34+NLU;S~6dum{n]$Z*v+Pp\ض]&&\$J2d%^xn"Q0n4=s<ӎRHi8JG-zB/yM%җMFqp> բ gu6; eRlOBswBy' K׶ S ~ =5g }^u|   ~!tbRo!;?xGb0 &, mqv ({ ǔkR1 ~iY[wmGQ_%04SHGL><!uoIc;Fݗ6';PMm>?{gOVM}ֵd)>& Wff)$j6۟="ic5nuf$Er+;#qZ;[EL.5rVeeؼ5M,>9i(L<@{})=wxz>C ߴC׬ղ>=)|kV Af'o0jvBCI$8ڞygGmDM,& >ߥ[tjI )20). \/ub{ p Sp5% SEf T G` gr)wHae/%7(20 Y ]y( Uٖ N~=xSQzFø[l2K)nw6`*ZxvXzAI4ÏS$Ҩhd7}! i[׎5"ag;>xaOoPPSH|htO z.2nVaS@C{jhE*KY^ xu7peMɳ`YyX^ouY.-#WDE'na,5c\P klRtNQfnhD0_:y4C <:HH { /spJʰUk7Ir[6@I2 pNQ, F|־1.wfz)~HtPD$=k dO `Dž 1 T Eg &II lg֙xbN~Vviid$w#fmD G y܍ cp /r&RP-etu!9."T7ýXpQ\yk:1g5F(ZWHl͌|ko$l ;dċ1co! 3 i=E} ̏0hd*"dѾ:M%>Tsi:gCeI߲Q3P:v*^o:Ma2]P d6AJ4G'&X1aa)GT[/G_MD8\C,֞SP'OQC~~?# lECl]_\ {RX*-{s]/sp[9o3Mbd&{\  8,2 I T! A80 dLXz&\>tNVU  QEI Xb^st00٩á&N$O;t!q4HeҾ6,?>iGE8HlzYB8.# OZ2T^R`L.tMױdQB=Ǵ~7g`kB'0,3#Y] 8T=Mk~Eo8% vlFG+YLC0Yϼg6VBPdvf?d,Ȉdn% , UWuv|noO,,e:߁C!JX_+CBWpʧ|R Ma9/2slbo{}bGTd T/ Qy7nzfj*\v"%7P w3 45d"k%5Bm+ҭ|]%k >qs9ۧ6A 4^J{ec8hKqrpmbQZZ6Jp.JuuhJGy[R BnAJ6tm ͙FA>Zl7H=sJKDiX§e52zB|J`LJ5h)C#OBgS-OGSG9 " ' O {o{j6Fd/y8WH w{y \q! ) vQsF7`8@G{8h^ASǃ t6cZb/?.<]h7ʷR~12EvO"R[2t&*rRD|XQ3+oڞ m5F^t{2B@ ans6 |IŚAoHH c}obBJ/:&*jr-nWbGNNoo}#M,~7*FvKYA.w<*?W0<ZH w1sqM;|8]-Qo y#F"!rWpM%h8e6pa˲ y i  68 ~8*JPm{9$y1p!*J 0a  c P]__2i2Qk^xYbl2U)fC?}8; B|8]nM=Mk i&U {xFY۵10JV{m؃$9 PH0$7AzZg !G1|Y=E4<]4iplHsZOwSKaAWC٥0RW/ %Qli/\ ãN^  mQ4 ([TXjR=%A |u)w!vk:+5 [,<H>YKGY3—2Ϋ1 kSSdl(;  y'Z@i%=IN9 3 i:>..x{]mKXTBmYUjxE 2n@ 'tDj~Rj_XHB ;{B]/16 x4XkcI#Z0kn/ɠ9)A!&4!ksmLɰ- P>h mI0_Do6/S ^1 U^#ׯʹ.I$au$Xhc"6t%6XF(oo h91@eU+d$U#kP6 ηEp` F??iv )DFM70ԫ/NM'ufO-C&7eHpq+Is8X}A|3$`/Y*&n}XYJ %1 6{6B8«r#WuԀ!\9{R(9 &O ]w M@`h/ oe5'Iy*wx/_*ABN[i0ZRh\6bK9VS#!5i)"b*H=gT+UhS=2%,6~VQbBjG{: dW{2`RaUY~f7fӈ@IWsRe4Ttef[):2 O@D %b%EMeK x -4*n*B `3DVJ[}q ")>_dIP\Fi6xAbl_9 1&Čo =oe7yŤ:fa/3HB -!1bc4ʿ$u ud*/OYj$.\^qx"T. yX-_*ylu+fo[+YyI&,k i|&$nY8 f5ʇ*%8A9ӽ*;2)cT{eCN:ҽ{(6 ;,.ȷ '>f?O +ɥQ  pElo a}H@wVEE@V=[s˭޿EU>-k\*OUF& C LU 4Jtlo(? \q3!^1ncby:6RGbwg,'Eï v|D8N. AGFxqr5 pSZuHd-xӫp2%we'3ig?1 gEE(,S SZ^W1%4 v<m).AD)[FpIZ4*]y!ECoĉ?|n*P<jFapR9GW,(;MD..?*yV-DH2mʾJqc*"TAjibPsC}0V;yTVq8VI$ڥe%Q."2JeU!V&OЬ-T@&X4[dkjXLFi(M0a ԫM5|zer}ԛ3{?"i7#e5=#؆d_TG5܇]+K831P8[Hcdܗ"T׽H|SL# Ǡ7+)zPrj`2}7WoaLrh@1"xsr! LRe {\,G}A^zEO+,6*\O{߳4֔hhANx8R[i1axbLCStox"f}jd$2'iWaanbcٓ/n|}Xv!s G}y G;Do@.|g>%!}yi}NHsϒ+B15d`5nk}OkׄnTm:qaP,|Ӷ`1*-~qb>:6R l.Ċ~CWQW6Ę(i%T-ÊȵiwVuXCOlGn[\|ɋ7'F=l]c{+تnAx`{d 98إS  )0y>w63`Z2 1GV]R1 2j =CXW$xR8I>[19V j(YaNauz@i[lOjEͩE '^ 8{gÿd_BJS4>l  0s /ĎIy؂ÂO pSQãh|( #GpfBu&{#pEG'Q/yN=v-}.W\./kXeej`'^XY(.>͙:}G.X(!*]n /-OyS^U?M)Eaf75r&%= <.1ennɇ o?"u$6%ӯ"H!Kl<&%V0_Lx8)6+%'H˿\E_{ՎDq'm7N`b#//ZBzNu*1zu-Jp?}qb=cz Oϛ[Q?|PBw a ֈ 3~mLzkN [R8Zth%0 )iZDrP/_R@T0,LqIR~/3=$|,|/oXC99w_ lE?rz$s_w|!uYӾb"xs8M<6yuo%*øKT$)Z\hsCk$7;})/H2‚51O 7`fw-:1)Q-Ytv626 6=Mkph̠WM}dX| e.^4?,@3N]Z &?ZASCi٥I5D97oa>yc!@"]yN#`t@ ؎ A;Dm_YA"-#9P07"Mh2bsslF7GH${]{.[9gf!`7ipEYI+Ɂ8.]ڷ9MU ̝hQ:.{PxsOcF@:c ]U({K̙8RB?!{0X K^`m?O^u Ace_'i 5C56O6BUe\,T[}~U#e^ŧm2jQpp-՜ 8&^qE?*(Ejԅ3H~ON58‘!qP;yt_fQxnM/?9jn-ğ$t76{I|k$Jyn>:>s=x?*5a6L4 5ICrYf.$,o)~ujQ :V /E չXd@wQck#;a2"'gܵ?O^Aٚ2\"P 0=1`Ox&wM=V_dXLvz3O`"vI<byAT&5#8{(z}w[cmD<z{t-j>,JXnp&# }VXkK.3-=UE2)vMg~ӯLl&D-LHp&7&'waaaa ,Z)Qp}y9b@ش}H|mń_PRK!D]zUhaZFscR 4e$_N{s}GM<l$6k90 YT.%2!x2tv(f5Qy`g6VL x8h"xBʾ-z}L'}sن^`SPe$}{?5LC=|0 OQJ=lxF$az/JUbHn-Iz,+NWtJM4j#; !<>=.ZF>A>5b1})^4&ӠtwV6?~ge$}#CTjYzɾ^EYMs=E'.]"qAK ,VZ pVشp[EF3)&s?x !6mi=jL#[Z S1 ;f]]gj 3XVgDE^FR}!32QcnS{'t.b[X+:AQ/<bDbdwf=$]?Au  vLg_LfU<gw5[u(> Vn{4i64p3\)\=<L}^@^6gYwu5dn5cE p!><Ul\2{ R&g؊.$gx72eS u>g2+sM%"4F>\{_m'!Bڗ{veڣߤ߽6B$$^9Nc8Y˹vF~۷ّ>.HCo|Y-'ov Jrاk[t[Oaˢj( ܏$LkicaI[e^WJkSiP`&W=E2IVCfS2Ԧ^ i5{K %;c1' J1} 7L}C\;kD`Zlnpc]_DM`S݅woF[Wb* (5A7$D oa 40h9_KTHV.?M&Ka\7hke\9  h~Qw*Ff]q3wN>r [SC5 4.V-é,1/Cy35==0~?15צ \Hg .Vu$_)i  EoV@F9.X4&]65E-Fv'/{%j/c~RD_il+ nG7xZEd|tdZprM-T/w32Nn@S fUr[P[cb$hu[{rtXR[ivleX cal6 5 )ڛtר@&-: S"`.Q۱FO4'|AMYV+5MɘJk*z'IHU^NC@*dPE4'YFSgR0RޢF)d4da6dh¤Q[:<1vA+`94jR0kzT~T(IDZ sV{B<`cIxfz BBJ[;2ւc3v 7ys62;0CGT \Y%Rq\Lv+6"Y$AF0cc525DžO9A'njDME`rQD+jX7~Th wֿ@]*{0 XEw/c=!=,j ^^r+pw/-& j'7ʰFlaZ)',/vejBhObAn$7 ۺyzBdXU߶. [)%DLCWs},Gdr +FaV;3B;2. 6R7,VWsp[n] q++ ߊTf_+W%e+=J$+Y{`cWYn:=4}Ym=r]S7wOq'LP9qF# fE dND{ FF=e^,?~CQ2):Yxl9]gRx&!zÑA7WJNp$[ƞ_>|/r_&i 0or89GyPd-d-,Ji+dj(ЏV 2rB\SmxT4Hl$d9*#%)kXN 3#0bczܷNqyrJ^lwf5m=m%97/[dzl]!fY#4*<3iY8Aًc;yxf9xfL-NLCN9cCLnSQ'bhzt&$#d^O:8  .̫xZ \}y/  gIjƈMj !*Jv96;WA|' NL0r"Zt?{HxJE4$GG  S)Yu[P3VT oagyG.hT[TV^ w2 .R(B9/v>"AΕuƜV0jθ wB;C 1k@eO>6c:d&Pot:B g!c"#lnf~[PRGO>YApY#̘h iSV(SD3Ji!G*||ZXu]9a3k;`#v`w,~f{; ;zMsgShsF#k[G ;sLQZ%`(- +Bb5L?&,Q QyNb(.RC} *$G-z%c,4nTL :1E)Ll;Ii`-$C>E~RBihC_u?T *`%I WI~F&]RsƧNnU}+PV4fȒ _5M#a-\qI!Y,K/An~S<#l@924mYdr;'"-%:|d[| -F o&R>P$gKnϽ%0w ejYIqtL:+-՝K'm>/ga^!0(Uđ…xb -ݶa76rwp2yA;T `:  xr{y05m0r q$YMa(KY_ "}d;CA.ld/)41RqIU# I!Apn0 ;h4(k-5Ad_ѪU2%Д#qjLe'„1Αum"B;0,&v;8G/z UݭnW]d}j lcc\.Pc5BvR 2ٲEO|nMF'—3$XljS!3P`x:M= pL[Vl0"0\5} 4NU1PI"MF nEmG]c{EaFzC juQ(4Qq q@/{ 6@-ϿC[Dc)u Kpg ,  G ~+5NYF!]zg?R p.5=ֳ.9e Qle6*,/ \v#SP0_Z̾ޱ~[lT3Q@=y?$1*v$tx5J7jv(˺}uHuZhF$ jާӃilc f4 ?Gk`Bsp( >"O3:)X4f/ļTe2W 5/K:^DXq |-ٴ2~H,dM0a55ye F*I3J^"d4%ߠda8i=D!}$4 <^Z8itPjhZp}fw'*kx_73]}-DV,&kvE!/ snOavI4M1{x zl0_51#zbrwP8yW_ahG1nQ~2 gQW)I<e7 ~f{NªM[OBgLyH?&rW>Ҏ|@:0΅=|EH 4 jUE 2XjR*n'urJ)lpY1nDm Y4wBUX^OFB 'Gw4 1&gfu%hx! 0p/&S6Y&IA=tDFVGl<2 bKM^t8@'I:XJqsn1 u(SV ;sXڂ[5n]37 Zs21o AAçsP/̒xh>3~Y v_Y`'*V_`V&  y'/pIFE86vCig{12i}&wYvW~ $< Q&"17Aw(/]> 8' 6K ʷ| x\ <$UMŋ=u_ ?KP r#D"5?{)^l`5)`0^|;"0Ѕ9p:RfUGN6==-Eg79\@3 `#dÞ8H/ve yX- [۰˜66-u}R|Q$6i2gR|:ȥp`B#V.x\*ʗh%a*ZWr\A&v3x6f=b]% N2CYRVvmZC= -ɑ)z~+gI @r_]$4[fq!>[tUzX*7qKZmnPm.ItE M_R< r , D a; T!G:X5xkJ @.o-PF1f'Ttf>sC| }j7IBCts+Ulp#"G@wO m9#AUx%lW~>TZ:D^,#qeACs].Az !lUXk&w^}BV2t`VP-v­B\Msr^#Nχڧ mEEUϫHn 6 /g&_Fm5W&.[ͯ |j%Wa=k^nFYE]a$tp7U]s v/WQ m N"G$l6XGʿ#>:,[F9l  {J89 ̂Oud U8h"3sh+5!'y~bLh * !V(t 6NuW nHy10@lŠ5en .'U;LF8>`LI}+5-HJGdpO`y~E-SqyQaę:w ,lJ(DJ 4q'E[F٣UT I4\*hLM[)n q;ef&p)/MӄVdz"KKFQd7sR:kԏM6Fq~CQW%F/,7O N&QFA -DuYTL _ID$JhGLJ7%Vx7VstW:TW9J-.!u~>9vi^sw]ƦN`/1)aFBc3k'8c&@ ICqjSo]qYhkƅuiYjͱãThiF=xRMeg@h_T+=h1CYckrnq1 7`\Kp qq@8B̝J }@ !!I@AeÏ * ԟ"nQkFv 2GAxa֍stđG'~~*֪lРs4CMZ1_)P}tY:G7#6L6>Dl=/Nx=RG7 ֌.r]@I1t(P9n=NX>"+z S3&.T/8=1]1uAa~kK2$ءM.|vEx=]Y^`CW{ sBgS.8 =rsx% HU{ZzfW>"[,7FZl XrQII\l@ .PbqHk>zBQ s:W ǿx,ܯ/vq\QBEY\WtlI"Tv FUU,n"Y}jK:e'&'@.,}KS0C/R7UV"ɼ>'Q#kRZx3,g^2tI!plJd+u!F;ym?+,m~ix J@SY#($HMMSSy%>FƼ@i6:K'E0TjCOF.wq2P']r'ukwZ>8B%@0$8P<8rL/^_p-TvHVzQ"5*_I("X34% ?W-*Tv%@ 6hJ[^l&Z0y?+Rb-xz=]JIlH2Eʺ?/Zo{TSS95׆nz>ko}J)Kt{Td 6(Tah\]-"& Pky $i(FZХ&T$Fc3*eA $wJq@c+ȉa7QӘ wx,&|Tl?5 XWm`G[IhN.$ Sx-Eo2-V\fN>2[NP25 }y 6[$le1>UKR EH45Wvgdy?fRyO:*0MIawQ4[|EELb,h"H&8'{.(S*'z4B/`s7R@# u&HF)`uEy;,g?auMVV 9s7lȥUN!' .ׅyO/U͎\G]*pR7%d`{(Mb(G=Fu MB7sj~-% =9 @ .ԼS?2t6p%4Y5'8/Zsu'+nxLS<MJ"ǚ" '<:6 TKJ6 XopB$"&J+b.,5aW- j+SHeIz_'Nnd_6-]m"u#tUT+v7Db JHoSu %B ̥)[x]89v7Ng 0_!RYG!+'r q|ee[Q! ¾^I%;цt< nIViO;6K1 f8 ] %jc-xdD|%Ŵ_ 9/[5:9gNbЕOϏEuiS K\-C1e,D;x9kNcfPhfl?CC#:Cp$3PHLNIy\yGX@]PT3sE*c%8@,rvAbfawH3ɉ5KQuC`k%0i1:-=Z#5i+ S6[q>XT3JPx23f*bdsKF|`ٛEXZ2%H ڰDhv؅PenY&4e-S=  RYwT   NaO;KQ?rp,Rsk gqdqc ZmCfRT|QYaR{_DVXr8E,L{k W-D9_jm/2t4H*8'sK`ً/"fˏuϮŀ8`6Fx'f?yl]`% 18F/`'~Zt.e6V'Fb=I,\@K ,!oM|; bBlvKxr@$j7k,mnc IGvW>iyR%Fton,^!gM LJ Rڄ}[WCKpOOGQ!˯kP'&3q0m7S|I ;<\!"> nOa-GGo(:"Lds:nWgSTSEgK&p{Hh>^P&FO&>MG@D,ZI*|YY.xXAwc? O| ,Ck%1S4.df~)}7~A _ӊjL4{Y(87-r5W@ jz]u3Of 1( 'Boz\0U,"(=b1>.E%K fn ]+3љhIE6?8c-'uiW2<+OveԱ8; V ! +'Nm 2^ @?=H,2N<qþonY8#e4rh,ol5"r}|Xwp!:ˋ |lM@c 7p\mW2v7LLI `ѫNCDq>`qW5 wDR H+=q{qR" Pp,A]m-/P| `,*(oDe4a?md} #GP,fEZ*h4vAdYL|Ӱ e1%Է425P/h~ds8{78 b8V=KK6j D6ZCg_H1 tDg+Vl3U%GerA`#o':  0 |5Jc62+]RSr( wE,BT@H7p Z2w.Ynm+l^-;cu& P_IkDCcXeb_+IL{xh«Ym!c o@2fc*,gzg6%H JCzOVc6N?6 E_UT;óDlwS~,kaG#LiD66EUH# ~&4;:OTR;E+Yg1$͙AaY ]H\v`4r%I[$c*Ο.#;PKDoxKS}\=l̾Gj^Sq;.O;ٿ%3qd*ZB 1> NZ  OK/:NV+!BwO.\X*<M;9Fxl) \7c̢q-?b.5C%x(-g"oȬ9y!>4ОexEMLO/3ir `&RR$7gltݿw[C7I6#dus%-N/LHA90GWZ61e*Jnk1EJFRx6(,2@[\"5}k"@KN]>-&}-7>^3Dwwڜ՗nt|DJ*2T,b XoD6T-eVvAmWsIVl1(p:j!/[4A[3}@ѷ( "̶tTPfnOTưP0Y,0P~cZp75z̑n!hD0S nH-Qi~3{W#d:%In 6Ur+G`E rܑ*`v_zhGQN b%zK}t pv`uQx"/\+<Z~øh/5~qw@MW5A,9?Ur}4x=^/`uGZ: (F-3 M? "".B ppwgB6 ^sgă7rϗ)e3c7bѝ|"6+g3IhzJfPN-92"  4$}ft t6r 1aBNd`+-Ƙ)}s؎ROUo+eVrz`i#^N,VXAS@#֟Qؚ#%"y)L0(S^|OOAĨ" 4-C&E:9>| r@+Nfi`y_vP8_=do (H0rR2 RP@a-!QgNvd@y@gP`r~DT4^:E(8"RrhWV4ku+iKZIci7F . J .? F&OHd0:I()"CS7GFc+@ Em$F{cs] &R@5t3EAþ#I'==HT dauNtNtcY:Z [ QieY: U#,6/d\89lA ?X A 1 F )Ĩ2Τ@T/F܋fC(Rw nkLGg N@S[ #UX<?^sr9V0u3s7&BD<,g  qHdp2%ZJ<kR1od[:yOQ[ 6)t=r $\_\[YyOt9O">Ap.+p }(<^"uEpi>;yR[`I*" ,*U>zno?m?4a4& lC2rbC? `,`4b):ֽmVT_,1|N A_O#U xUi!E'&i) 5 : Z}^VwT?#dQ7~ҷu%ap s^ 9Hd в fh! !&~D}2^ z0D7QRm .oWt xs[S386ӼNrR * ztM-a%dL?H5's~;p8F^Nj !k5J7F LEu't(# ^YlEsp,qmObVB[K;&-._jI8= z?]# gy$oR8i؁nYvX!Yk$Y |hQK=Caf>K>X'sD? %yu nCMq!G^1{K!&%4VB:^O*Obn$  $LiM|  ?bd?u 55%e C3 =+z DK Y k j/u/ )֠k8(L@82fA&@uSoGAvt;y[t:w~,C&%Sk"*+3[7smNAGB?U WXJY;Q46HscAؿy(J ^&zPGJ@l6ҷW5Z?e&pd Ukh,2x "l69ej[~-qghfxr{L#wt TJԸ: IWHq #p+OɃ5 s`7$lKsh9.0.G\4hP3>8܂Rbk}^+E"av[ :d ~N۵ cm hL9m_z׏Go$Sca2Y C`_bl { ˓ |pȤ T;elTS PGb>J;}Z1?<nu-j]Y%||e,|l]tXAO‰xw=Y<)`ex&,iz55N R8Rq)3$KOz;FSt~W^.[?7&I!O*Vf[7GLfXh#E̒VMbCd&5{}2L)gJ<^, ) F@!g \$u3GQH)[g09_qoFr7Q":KP""n{0gkzr b O 2a-Eϕf1 ^ i>.Ee[JZ=& 0+k  Y }uS|'}v/wjoL"!`Z{W9DD?%}•Mfݪh6Fo1{rQdϖmQpyd [N^õlOml{~L`Xn7 pTLK]vn31B1RL;3%qD%R]z!`oS/vsy|J&#[z n%q}؍hђG*Ho/VRz' &D8ޝ)<Pm Gj'[Y#v3úJix+XB]BNn{'(g+(&YCMtO7iZ -? DkgH.qfYcQCXTq;VG~KHY %  /n'%?Ti.$,> 'BM"w D;ٝ2o lP:"ͪjXUqf`<6$U[6X9?xm'<LbV2/{'KŽ|;#Kzd y|Jlv=1{uBf]8Q.AFh~<ӫz:Zk L P2*.]z<6ns4$7ϼHF3cňqUZT=xm;M@k-H`Uq!90,f-KXrE*Pyʕv_$qļrJ]R ?3O@?S &V1#'- +( Z!x#@'}x^3~3} M+Ŗ|&AA%>s|Y?  3`2UMAnML$+^5\Z^iz iOXٖ* RP\QJm*0l=zHB2r ^h)=$%KPC [=&<@/y`r6o !DietQ;^aq0r0UoB?9'y<[gAJ[18%t7L/٧#L2 A5e-2SU.0%( $x4g lBlW]Y(Bc&+BE._#w5a.R~[lB:t`5!G6I#!stXB:ZnxhGQT5,Y{OiV)bt^ TV{?}@U\[ GY'T(r̚^Ph4{ jXZ]WUP{)A3Fn $dZ>K/,JbQ&GUU*,["c.8V |3E]Z9m/\)rte:Rr/q I3v[ af!¨XH9V)GhC3KA]~(mN?//_ jcRk5k{9iy  hEi8_mR tsf,6pTCb8gm:')M UokahL3pkjC}?9*<5w-w#3VdXuxT:|3vpLzoeXkQ ~PIAz2x]M 26d-7fb.C@ki..4ml9LL^baطr,u}!:h<jr$Mg;8 #z:ȰA DNg%g"p4it8knF[` _ X  %ٚ|BϹYzaBsoUR,`ݝBW=.M9 xxuaiLxîL- EA ?kNbXg.>و ofB2\ˉ}$E279d`m̗oN eqW..&2Tϴ l%g&Ox)aE7w5_ !qcC',VsT \ߩ]) " OM@yƿk 6cMkU*Aj CA 8 @_   <BvAhR+f@(aWa_+`{.)s6N4+OjP#OoZc 1hC]11GiS+r+2+~;>UlCt˔ m1WlJ9OaEVW~S@JGBbEKfcU +I@2h~}K1< !6P6O9jP}Ӂt_LDPf.ecZ>7D\U UWi3AXA9˹1Vw@$6Gy8Hxef 7k_i#o;njmb u'&#P7;c'Xszz@~?iM\\e$!|-YeP eC,#Gf "UJs(L(*xct/d84(60OQѦyC?~Ny0Wmjk}ECNgwO7K1R;*D/Td=IcWd2&mdv4?D pځi9oL1۔lJb!9V ۢބi'nG{xU"(\eQHj}vjP` 2GQe:S{{›]|2D  zlâyAN("hZ4 ~Z{M>th_P k@7HbzE>R~ce\dkr2AIS%/j+ieD owwLT Vy!>).yA3YWu+z38B!Ʀ y$&9)*NNmA-W{$4*n]=pBb@{fh]02/z2:/,`ъSy4gpYK!)lfUs6hVvJAAelLOͪ6E;Y;pǛO*d3Hݡ.fcPw7tc/v |N@H} ;^Oa 7^hYjhp}"3 YzdYH,>J  %k^$Ikfc%@.0$K[|M!>)v n[(sZZ!P "03f)$k vk!s:ܿN=3M5S1dVy*C{Tg$o iO0MfQEK$2z*5;`c'u9jQ,Em+Kuy?5ԈUʩs8Ph2 e>,Woe%[` I =-g6SJND$ΊA2k>Q}/M$>:6+(I7|kнE{b]W@TmVl.`O>\ !M$a %b@S Nu]>]*&NpzS^ 559mȩE|vȠeG4PO^lh0]cyaR׼(l 9~]+-dM": \^n7*5SsAs}ge{9D-n(_/FbϴpBJ#f<ëusNM`8-2hehOu9LRyJD}%fOɜ2$|t_,y %6/EWɍ;*Y f968ZtV  h9-b>I@B_0Xcʻ$Na"iKF{9yGH&{inOCVL=~QQ_& =."Y5Ds8fu3sΪ'C\ E]дO[&G7^&%"Z:(0rP vHv~G,M>s`؅dʹx=#aBV pj]j ,#RHC7e l7 ^AwoJ>]dx?.uSp0-iǁRnb,%D"'_x s)(|af@yKW%.MfFdb)-k9+*P0?"/YG39n^/ `#mRh~)b'1>&je._!K/}v=RO SbW1W΄>y,u(g&5T4,s`,(v<b+]%6,gF]8KXM[6 ȑp\WQ=?uh"Z(x|XGsl`2Ps\{ < z,{1YD֧mT[mTe go 9;-TDnO3j.Fw&B|v ,z{QArMOJ  )8:c<f -oS^pBx/;T 0.n?O5vq =- {rodWczOjO$sFyeŧuh|cd2L69dCkѤl=Gr&${ U=0$H~f}6T@NAaVW1*pq)xG <-+(wKF_D2m`LX)9A#Wg*^B^8:!,w[:Wy@M!.heGZ`0jAPdz{p3go">XwNSEޥ.kb%A\٪^x)8u\O0}E$ex/LJ1F'\,ZO` 'LJ2K9 3edp" @с;eST"xjc|h)׊'l!PhL4 z!K)|5[lqT&Wt>m5Y37z;ְpFO{:@Ė)o |!0lRzg[`b:]Yp@U6ڜ]6t#xdEscX ~BF,I]{+#nT4"2rm[G01m<]G rMTSa&6W^xnBkGL([q xgo#ddǾҦ ?!@g0?eY " aFƙߺ]}x_W B43y-Q^ "Q<3j/5szS&=&8um|٩kc!p(˽f(R)%k#(Ɂn+PZ h2Z[P^LTRDf8f:E8:\OaLm=K]åxqk _>iء'"L$l+ +s@FM|@7ku9 }*RKrn+i. Sl\SEW_^C; lTzRa hq]5-fFۘwoؠ-m^дbb T n5I;ftZP*FWC':ou25j"jZ-~S/X%LN+cza9{Ax6E}3g2tq9qD٥tji bV`^re"V@z,5:'S<ei+2WO6h;ѓ7-}v+t{}n/1@Ɵj\F*>@5IoգT-3akFVێCKͻ]OaHC,\ UC 7c)m|)('JAP,+> W&>79s~m K^:{C 3k[+=0&lnx_(ȾXMJ9Th-:oȤ'nlrJ_]j :j>hS6A bSwjK#XJclFiK i]=y޸*5  M*ibFSS&Txlvp czvO)'K-t%05 #4Xha0M#nC^/uTeuqr,NVgp: IGcMZ)goi"4#vsׯ#gap2*:{CYN`Q`=95 Phԋ'uXP|N(&CI5.Զ+tun]+Ks! Us1a<3mn.E4EVX TG&\ Lc޷­zY 9zH'tymEna==>;9@9=R^QuY H`<~jiJ(@ә!Nw uN2U*\! pK~E(de/E*sܧ[n|MB*`Da0,s%IY;C/%E&P.T2UAn6_c0(4<IP_4m)9$6 rax3N0oZzKq<8Q(v)} @WFglF"sdVZk]Bi[h^`8e3/zAnnbZlC_BXgSc{2g܉k$#qh!0XK$ -Z :8t{::|C(g9L).BKC{luKJG]@ MJHk"Ғ)wX{RTy4+;/JǨ'U4l U?w)|  !,Ri}uӡLg4,YF0mRIT fL`El;WK1J :J }~Vުgw "F8cT9)O^YSn!okZ O#P ouzekpˍx >TVZ0_W+{*)]!7"i-i T^˸";Ow &X BxnNN`ړSI{uj0q>BUg#FZ"-|ye`qu-bZs>/p@`Y'O YYRKxOu4t3./aZqA_NiS[UE&r-lnBJPddܒ^Y!EK}i0W+v A*Ū&;+99(budZ8rjVqsN1*mJ˨Y1lf]6F5$KrǡM/$\#Y-CF(^acD4Wv.@k-2s-Hy,fwvm)X7rm&a|#G[b0:soCl5?`$$!}3Gx 7W Gk]Znk֒~3rZ OGbGhQsjU), :PR3 Ѐm*8;\ r|8d9M:Ly7TkcYs$f'] b`FiS @=!_=Eo}CMY?qh!g$RA̐HL/GLV*zB}N8 8N|uQrDs(?@t O+ YuY+P (1ci3w9.X(AU@VGEU:s]Sx? eE]U6lǃX0B ;tsXp]vW&Pdݱ{W cՍ%nJcl+p ~B*F #U? e>FJEr QBsքt%7_v+>p#T~-Nrs;iO7L&X]>UIHItcxIC$.fv@=*`k>7q3)˛VGubj\R±M Wi ڹ#*su`ܑ-r0"rD4^bTt` =z>i+zr)VGS [ 7mYsBVg2R1xw*OY#%պe@GEq 5tK%co89-4 f8]MR2{T!%Nz0-04kJrJ9a~r#*RbhFbG8NqEN M76*ΟhE}@Mݪ[0F4eu/D4##=J1 ~1e"`Ƶ0qT[Qce7q+ K 1(0 ԙ,֔0de: o[zUK8>fsfn'i$[^ 5+EN"ب֗T*0Ao,10l>'BBD3F> ^]u{P=fBņ,Trz d} K#q0+T:D].b ax>e ;%x3cj6#{>mYJsp|k,RGQfuH 4\M7ja^b~Њ>,0Qa3G0lmj <t?vR9 ,ڴ6x`= u58/H ="u~R 3:F.*yG)+TwF~?qVYb'LfI5dfkYNl4!mA Qf)D=/M-aӎE",fdx&sq5tXC'2[#[%#C,I_&T< 2@wUH /0<+A4E& @P[,J<'q*&W)JhqN{FLΦnU_߁G1j )t+S2P>$ܖ~[|XSǚGazu s^bIp7DZ]a!$i.N)oREQff'^ɝt{Ra14v"-.?I;:GtmyZk"pJ*^h`YTUQ4M'l[hiǩ&ڹuyA$=4e y3hd)538 a, VK'6lkJtxTLXAX`b$g}\D4irLTF>F*fj"h1=a|*Lpo}Q'fp^9.(Mb}3~ޝO-=)Kkrva<@@߭g v"r@*PܛyA 7 zԕxJpT DءCx6G)iBSZp9'0dFg0l{p)P(/\` iO΃tzfAqDM &./lP62bV_x و5!wDX&#DXKg3}..*lxah51Y-ۗo+y[,3y5SC FADo }DQ >GV'|9b]0T9R^^$S- Ìeλlh1[ lfY+~#5fiE.,(s= ucgۘɔMc`Ra dMdm1ئ[%VAtd}^$T[| \MlzA w0B=`0W¥*1CZg3Wąeѣ"(@I@Ƿ,^&yHE j=t j2کJ'.X7?oG ][QCrJ l\44H}2_xb#(fMJt*lk{8HmL  /^^%0hNo.>t}ajldoHy(~ f iyZDt#~M B`I%>ZKLYhK@g0*\:xQWF*cQLͷKu}iF3U$} "X}mVZ[|kH^nLOL @[ CS7jy~WF{n#3["HLAXY׼:s‰l?' d /K `/EuN>y~C&ti_S ΣJ#-*zmaL$S:MM{hFUr=Le)'"^_?//zu 8i]<Q~B Qm;ʏ~!|?y@ "w(JjU+vΡ_Q'Y*{FqE>fPnS QPP*Now*v*sAh y =:4|?>F^PE9$ѵ# &b)y<!QD-nF:bHK;4L~>BIPE(qE %Fd1Qt;(xl/ ǟb3pb4]bmFOvflR[>/>WO_[0e* )s/w)@ 5n[xP ?SqBX|=NjXѹ<\dSLb[ /Mdo5 /`7*qFAF[SGa} p(2up ~>v%*yOce/ .6 @?0~#_hOˍXӾV ~dv=JUrQv/O9\Yސy҇*U)s|[ai}`1B.Wӝ8gwTʉ{z=+7, O.T^*u:JeHsMgEdcW8jh@Y*es4thÃjEpVhyQғ3!CovA ?ͺE|1w)bK!jo Ec]>Ke|6ho.?I4SLRJ$u/4Rl}E*c%gbbtqt>Ȫ*vtVwR3adXHn/0so+ο \i 9%>:rCWH\`heGMO9s47lxc+ oezrH1.d5]mnwl]Y#g˸g'r8OThRح 5Ws])4?X: ym%beY v08Oo1 DX,b+36GhMu-4t[*AJT(* ޠw*>wHmmx:! L<32$NG.5/ϼq1nc΄qR6r_ʚ5qH? _-Ebi?K30$Hr /I77-t,n>u>&U3 b |*mp}4TUA;!dR3xpV((B +Ŏtx:I &#NdtVTR,k4n6(~Mi\JRh `ŽbͼR ` 4MG31[] .k{+lP4*DބD/XJc`: zrD \Hnb64>:q6y-]wgwwQZFĈe]c?~5:S_(u ÕɷJdI9EwmatE$q-pS<E4.,~PAI1,p~BpBdp qdz^nGB3reVRg5*+e}-P*ZAIJjytF`@II nBvV )V +*nY*|D!2$+;~}in| {[(A {3fZ\X[4(2 \kQN`7, d6CWf$ /w OpS'3@"Mdp5̂/MvötYE8Y uuASuuylo7i3v?a2޼0H LS.A1\t*7N^i}'tSVSU^K-zo5үNSk7 ڇK'o3w@v`)ޤKzE@O,FA>,r<<P@NjcZȁ[ih7|nU6cԦJ]+z&R 0! {&1fmUwOZ,0KLkX4e"Qp[1K-+R9_{~TH\Q"m6V8 >6Gq,!gd> r՛,l]ߊSRv~pM4{ :uCT9Y- @ɕ$U*#'{f u t /'mQ=LKH_X? d=]U ,.L,ڳ R_Ut\#[8IbfQJN@[J^u‹^`[OlѿYD)J^%pY`x<^5C<u[odF,y(2UvWbe Ok/Y !n[|nSvoWǬY7:<[]I<6˕9O)*&x te/a;yonuqFS~k _ߜ$[{EuVyL OR.?4 #?*;? i>[#2 j0Aз£In1o}]%_0PG O aބzrf(Joa`I-'s0~whdKezN asPO0R׏* DM$)=?ps)'@if8`kx -9sQa+TRQJx* <>:*;L6 C4SIm~9xOY]c7\T8;̔~XOy)[/!5j-"V_d7](Jy;E۹S_jDŧ@3J5<uݸF4`R{;Dfi,~]iy![sOE*]J),oYjg;%-=vY̘ HBOqG;F'RJ7 Im0al WOit{tmpTYM88O|el1-|YT zOKqzZZI{ERalk)1 5Ƚi=_1& d:mXn"5o$q Mq/QO:a*bFJZhwS_hՙn;Rier{[*cf]hx!L+A[X@wNaj@B,b}W%7]{&yF&eo!4UBJ15U5X[V'D}& *b=C9<%Yxy&qqJm-UI)y~}3vU Ei0Ы]ZN5"nk'W?XxQRRj=lsLf[qH@ )]kz'BK}hc6+Vߗi:tEyS1qE AYm6 >_nQ>} XVY?V7Ya~ yu H.Q 1ve$&ws1|Ygun`g/PQUkc6h y~+a7'#ZONI7iN4UNh$g$#(nt_ W7e^ECP; n22?bK# ZtQ &D+533yW+ˆFu'`HW}4Q*1 3Cgl=n&d5|[DL'E>3esQ%onR= |-Y~ PRf"*u-j[20ӡ-]d<\GN LoWIbdG8  {+Dd!t3W2gMpGSknfVzP)CV 2fx@9!\~y8^ٟ~vkնi '>77(*'/0h>hRAN7xBny1_;^*,Ss.,BYIl,?H* r4K/3z6aA_I+7kvS'\v]Gq22^ZqpJ)xsHwkDj2E"{uMN`1wT[*dtǑ3[]CUP_fSlSyQ~UsUZ8JFZ2^v$9#^Q.7=50VZCY7h,vٹbA .05q:(p,0 J~Tc9//xe^{RiIYj_q%}Mߌ8w.tG >pEl)*&//zEun$]FUd46E$-,]Eq2Kk(0{5<4GR`k63qAIQJ>gl~T :onc H$H4]>2xA ::i! 0K"qv _Uy%$<q FAֱ)PJ<J4B^`ސ$'{F^y ɃD.\HD\qjy.:'M5h?Kj| 6~N!ώm xF,sH6,,p4%Q.Ctmv4- ]AGb8o.9"؄wnHx59*]6;%+Ft4/{8j?szۥQҕO?mlTaGu01Jusǃaj-pH[K,{T$!}#tC{#euc'dOe2?l>^K#?d%&LB D[+3 ^k \ipW(Fv QP=S%k&ט,. 38nyJy͊ KTaQKwc8hb=m0@vJ Jr=o!l47-7'zNKzݭ` Tf0z(e]Ta} k-/'7kc$n'Xo|ͮ&̩GRbsK0>\2&<}dK)I7E\c# 47,poG>jWlmZ\ Lb_ TIW185PVgWyE=8>DLȝs 8JQ!\G T,N:vM^*Y ASuG%QE/p9O"P/.pLy _a)K9.xiw;J?CrŕÊB]*сA/5FLe+,GBG1ͭ1+4[>+J^Q(FkIR 6H+r;LDWp' T]?M5 u_]e;QQR7pԮгF~5a~>&TAGiNlH*y)-T(:WVsMhsE*0%cw!DVVZFLWDcPItOH5 ߞya@oJc|9IPTX/U ?p#bL7,[Ε8& y&[5mxBm;.n H9`@ALIq}HEKv&q|.wS\jgˏ_#X#//!G*:,ng:41!o zf0]YKVu9WWZ9~Y; IŸo*-%vL!V&PA9!9c#mJAJOI8d%\D>R̜0Ӵe2lG=~j8`_UuZtx0$U!1olp:G/kUϐ|4m)0_,>=@!rӀC4kZT4"=92%Ⱦr&>i51` fE87 a jB]@dk5] 6 6s?f;C4.Rq:ۣ?3E]=%/"جZg:, :M:lm!lv\rUuqnΝ)mK=u*bRixh<7~Y081kߙ)&lA!*Lo:h]30^r7 gKvoZd 19o>&md oA3OVd˙58+x0trBoTJHXMbj| )6XT`m{$r_jChƇIYj-ռŔ|][C h_bzm#>C~*!Ls?UoVij4(]R`/Vq߯09?dr%:~Ѣ6W&ix6<K_tFMc^#,: )?91\?-0>{$ڴ2ؾi*J .[bpldnU/3MK7EN"8r!ksU~ Z'0}jGJ; ;2h{5_7o1Ksz9) Ԭ{+"PĀ&(C~:c 4aK'mHG%v&}Qjj z8,ȧ5X0*TGwx8Xp5C?7SRy3mK 6JF# l}5SUJ4O5Ҏv-!:O[-2ȦIؕ~-'} >kth *~ W9)} =\eCn?GRΞB}88e[b{DNQV4  X]m OAJ,FmY:)=ݹa:I1EUwaXam-8JWL&Mmci-# *$(/Z#fPvUcF^^^;\W35&OuUExy&Vc@}mWkQqT ]pRGv ONvk\Y E<O$څsgu`f͂Nj d!A{4 {pI%>_R|/BIO.: wS.EA_.gI ż71M22:"VsoFu]WKK~҉X^WCve.lTpqLCe29 zvwآR:-LШCq1!Rm>U\4n`OI֛% }Ӎ?NDRLxPy[6 HVyƽ4~y'Uw8c(:H=% *zVū9~F\֮AplsY:^yw,'A"O(ܛ*%iYxO]q#.iqsuƒY=0'@-\F/ĭ``=˴# yWmю2S2^ogl@Y1xk.ZWAEX11ky,() uǶ*`gO+~$)gN7dE Y9J[M{!JQ\q6@.b2}ܔ|c!ѱyyhc1"m(z_z)T M+J]w5Z'nUsrcn6t43={1hnqWwT|dC<U2)As/T4I/ohG EMsl8/)"̫ #͒&+.Szع=>J|#ip#Ȑ']oTcm6Abr~s^dMXé:xgzZGIm>vTxm| tN:Up_$jŮKLVRr@ss)ni"$xq9-ԑeҶ Y]f=h_9hMtIUt&S %@vg\ir~|##/`@VrK<>^ͬdQzz=o[Oc@CMyR=%;|Pv)؊3Yp@u.5=w1dt֦O'}Sb7)4jI5& N2U|D tv{bL> ;t{{]&eoH_e ]` x|pQ~Ii4nPJ,tFo|p@ dίP=oG%<2[n=T2XDNflnoE!GēE'm?Bg$U#d (|vSeb4: ) W`RgH\O-oB1Xr9ΕssX&El KP>N=yDifY_QU:z rNjwPa_ofX&#31 Rb)s+O2 Qo[1}|H&+>:G8>MLJLT 8&jahi2Pbʛ42z=ֱL"{?B8@_ϥVt47Uh(7`Y^o&H^q' $~ÇR%?0zLm:>yF9zH,msm.3lk:@4Ǟ 1\B(X:tO(WTɾi"1HJj^28]̋DQ!)t "oЀyeOu!zJ}S &j/^ .Vk-? j!(6 q[EL2&" Q|u[Rz+@s<=i?~zb]%M<3&BCFR2;$|J JM<,KqqGdN*as*Ae1I- /YTa>vfL=IS}Nd>U89cH37+(~_|01[c2I@k %Kr]^%$41JDC_D F7Wj5ˠ~B/Hv0us3*A$FXzXwY}YN|]2`G} }zK ;v PfAVNN&u* mp[ODr y* p$7!.  /_@]c</}6})PZY|N1=,m%КC~-Z14eRR*M2w2nZ ?]y_=`.fAa/!Z@&-xI[bl`o4a!(xBC9y&gTW[6d8m=gD1uj*jOG&"),r8,3g2gwN<>& pP !MRgMM/\XYBFgvzPDR:AK"p t#:jxm6 H?֪VJɂUDgH_yS RؐVx/y9:?/MIJ/3;cEhH&NQJ0(?]k;s\iV\"^p%,Q_ߎ6BbaRedk%p8i[3&BRVZ, .kK V6|`*eMevUQ.rHmVoSVG;Ef/9AS *|RX6,Q[|u xTmT)TX1yiEksQJOEHDq8nf|OkX,U7BjKij UjI(/1s? uw@jf B:"r1̧sWI IFjBbl]]oNH޽|Z4E m1J76|ByH^<=kPU3#1v']}@DK* "r9UVfWe_6tVqf{7o#EYS0qTy}'dShX!AM˚ ug[OK=w][[0 @xVb!+IB@;fk, N_Xϟ$gEaI<12s)&hw3T5zX3wd]]yfqp@dį`$o\78ؼ>L8[KEkSMEJc'yZ q#u?]eR xQ915xo(F=jUA_ v ԏ5WF,LWeV3(-PdNl#mւQ϶n2v$^F:XIL_l3%_bjN =m3(I)aD(~tqiM~D`^B *nY?+@ErRoaԆoM @avl<"N;]; /#+b\J/lim}R13zc=b6 EPԁ/~o VڤtgnDF;&"G& {2;}>uX0|3^_M,N҂m \dʀ>E8Is")$elL,mh.xvю ds>'RiS6h׃U 3}1 8dm;@iqaE-$ a  8τ/M]fRJk=+_2!lK\2\?-O>W,(Kyp~tFkn5'[ZA< E5C7/4y*F`F7w_ŽSV;͹G@n<aД?nKM,e1n@`\&B|N5)' in7 MIt=˙4%`3w]>,5)hkne-8OhevSGEvq-әuBCWl||=o {qcKtԈ{4p>DiF_K`|y6 l'.PP->4pPg!A~?:I IF;>r Wua}8GWD_js?R5> ̏qb8`w`Mqjc.m@_NΣ7a*BY4_# 6wFw==$CK(hMYd)AyscGdO՝(@Bfm;.Sv@NsV*}ofp%y^.6l|?d @U&|}k  Yj)B>.al{BO _ Z`g·bKq4CvfBkq,GERpnY$VjzBQ^O7~2j :}'1*"tg0 MD!oݥ326Ɏ:pEV8>7~6o\<9UQrm_?,.֭I%IufXJ93N6=GV ({^O2QN+, ;{*Vٙ.;x`Z3tmx< -6H EALdIvSD!1EVY6!08 2j>\+O d@C6 |+:\XL@8(^8Ayt<4 L[(p2d4.xd6b UQ%=,h%5ZkZg u@ihg/K^k?p[M9ZX- [!TVɇ5[*#$pU3A@ Žav|Eu w->WA/wwP81  q‘5G9De'ȝ$m ?%S0tdDI]zV1P_NgJ K|[ q>\VؿЁY`G[Niɒ ]AtVn,`5 {x0DmR",i+& 4GhAx^5Aq"1Fn/7uM`a>gg^ %?#h ]~M lF"=cC0gJEƛ:&u]/2)K(B%bkkQE;DQxGVaФjR$S)Z!'^*۔(.Afd<q6 lJ2hA,$Pqx exW ŘMmÑ+#OYT:xA\yOg2ˀ 0o\^g<]8z.lVeq7\Yz!;<f/ڶOLG|x4n 7ls$b_) %X\[G:v tk-6(_k2aWFw|jDs5;Ak=<4R1(Z!#kL cF1"$#VeW;6 ^o'1eQr{2V4xlZPb ѥh&SJu;bT2Eͽ8`UrCz hd45AV 1}8]Km'wNyzҶD/ Tx) ,.n-g c 6Z| E@ZOM>GAamHZ}DE'gߊDSqraD7PVfҏ)^Jf}Fr{hT71 [sJ:elJ X {EFԧtx9F 4 DMb)]vikW&|MI~yw*\{ba3¦Y{!]e\)i=G . 04R`eV "(1.U/|WfsT@.a`&TiLkہFfeRurXb|nN=O0 31&(@؂;ftgfOSl_Iijasim19P`$?X/8b8i}~Tk!@2L\2J'Q%,CnwB"W'?dpz@ FNƂ7(hn'Ax#;%h/-q oZpW1 P"ƿuLr]X_BgJ5.;Ormgo e\FhNR/m{+yNflOl<P] `YZbe2ҙ#1)VWs`Q uIo7'+U@4^8٤TbM>G9؂P; (?%! "~8@J-Pv\ֻHȝyocaY>9m#C8 ʑC=o%,9Ee#xw/ V}rYW2L.D 189/zF"JvG%¥g)MqXxs#Swp-q.pEv|k8@"l C7.m\gwKSpBh?9"E+,g8{E\_TJro>_V-hF~]h`?<;D15+|"i27˭^CTs?=v\RwzʭRkpsryW$:"9x] }`+"Ai֟xgkH V BJ7 D.\8-y!\k0*=@a9#|P[36V&' Gr/%ؾdrLIw0Vh^$v{i 6vLp%S UrogC%Y- 8PQŶac*;~P!L?'2(c3`!cӻPV eg&gN/|}@IYK)RFUmjq  iy,eIQ*/gGK)'l#:E,Ftk#6\X{?KQ'dTRl294 y 5y%KF#71~DZ{I OBmEj;;9vLC/u!dj4C0 wՐ{܊{j'`PHJ0b"T5Jb>+e ko%ن\!V06#* cF^T4bn0O%YٓO6`~~Z4y.c],L5|m 8, W5nqKWYP.1 vA 1phIl9*#-v+n1*I(gȑLۘ V-b+?% G:XJs;R~EuT O4IIY)*p]@rJ [H[Ag&VEK4[z*K}:N|C> UWBW)B$ (E 7,y$jΆKeF=V[M?YzrqteRzyCfwN%0X1psta$A/x?ze|gngZf_re4̧{<}BeqdU=~Tdq$6#t)7&  q}WH] >, tJ%}q|>Q[77 d./Y0 SBQaU=iaJ/qn,w31ӐSM!nP1ɫ ^)y&*Μ!R!g6HMwr0<uD&.,EHps]9Dl֟ O::Q3c9xTtLG W!X(Gu@PyEDK(</ ( `j+&-Jͮ5vvQцl|GSur|Pt>h|tJ"l"F6r]B_MO4^װ@N} sm|, jzq5+kŘ$S-y~pV%WH9i7p'*0hG_Ii8:w[iR~E ۖOxxPsT3 %4%*e_{lx'z@9KEbqT).}TnG׫Wa\L 8u-MN]C$,7 }Y!/KPf:˥Z 8!RqD*N:oAo%|;8fE_+v . YZn$7$  hU ڃ+,%6`:E(YrR9I 1p--5{!Q(+rJE=YV*i* 1sC6dܑN,+zusrHԧPnJs|F'J̈́ɜ0jPK[| ?:> @L.UoNCRW2bAo=ۓR`B\4Dg-::qvRl  j)uN"tdL1K;^wG!~zW%V4>wa{QرmG ~c,ƠfkW5W7 ! #z7-6 {mqA$z~u!bz.D;'/{{#46$,?iUEh[>B `Og2!^EgXg܇b͘ŀLSĠ9)*|4Љ^qyf\(jjrXRKHXEVO0ߜP'rZL?;@]Q]t+@oOcDD+)KspWR_p1.w2?=s{[wMvK,?J,"w,aa _zk*@'e}R> (2|tD~yWupgBzJBH;F D6  Xj?+o xmQEN>Gw52X0CTZuP;k5Y:{L3'xJfEpi%3 L_YWwBBoFЙIgAAI.=|;$$y5|MZD6<)L223Cgr]L47wЏe@.Iٱdv@EL'x$mO g-zwDPKBBpHfj\j' ^ DQ6>CoxdM6E<951%}5QkdWv}wcw?q f5'5{'_Schh|Rw7*T=@[{3`3q 34$FeUGkm,†|T$R;ZyyB4c>=bz{ ";!pPja1'JfJ6]4 ȹi=V&n6}S3uZtYP̱2f}!r &wy4].!,?{l nAcy|gk3/oחY0~4Num*v.CC$5p^TPoA#LHkk[:[HDG v0g?iY cI5ȵq$9'2SiSUC=ON,&V|\$0XrXw L(IϨ<|uiM :T Ch8>z lc>bgf&-]#\GKL KDhIi*:'&"?r aO+?8T6X&=ƆT,kIaOJ ;[:hsB=SN5 zRk4La3fU O;@[6%7}^K272DsGq&%x1E MMe*Sce`zrI]3V*]kD#lg7WmA_r@U;>`hjlH`<`.M$`!]ohҍ r094}DzIv^p\Qk1hSd@c *w~dxwZ ->RoMU={USim> <_rd> x}xu{I+<3(Lb"Fm/PT{a_oȣob, 9j4[X1$jb9|8_w) TU1alʘ381t]'5P_x:Q@OApx:| 8k|l~oI`#ζtz6x;i`-q+~l¦MR:FX;*>["ءǥA *2opZxZc:aEF4n̊Y*FR^4?ppсcw?q7"l:^$ f;fķ55 <8F6{_2jA{cxdOS|~LZO\9(B}{Rj'$eRLg;oy ~aPL.!Q(}s74R&b Tq|!h`/QWN}3+G?wE'pw:QmnsibC}@$ 6Ax<cZezRުO+t} )ZJg&^(oj_%]j &}#_  @5cepsWwig$/G z zig|^[<%%I|V-K.NvP&[hG*ٱ:|/`VcQ=k^l3U,Hr)$"|ae\kM m0h&aPP \5ÎLO6Zb;Z{Hsm!K߀p0#Id``n:v*[b3̝/"n^)8+Zɥ-[Pi!~QzOp5y- NʮVV/wo nN&-Plh]uyҡ*"iV7%`2zr[t\Y+[tl D%Ȅ}~ y 5oĭD&o'..(qz%`2'){'p>nbyq^u/+;'6$zh]  Eځ 'bDcGQ>UQól|[Ӓ27@sDos-$1hTMC/T/&MGp2Z3o\lw:a]0 oY( vo]LLe:t /I(+  $8$0ŜDռvduf!$]S }9lU7|<٩0T#Cv^ $z\. s *\[}n2bOS;Q@}9gzE|f;d5X"N7pWof@?/CQ:!Oq {$ fMf*CG:SUxBC5ģ*TT!$tTV.e$Dg0(&Dhy!;+ @1KpyKBJPzr\p/OQCmj<0B5 Tҁv^O  7ބM>L =*;N~4Q 0wi^RIGf2f{szx_95QKkeUb{0pGT# H: קvV # 054]?%Fdmy@"4.bsByP'puS+=k .R,2LvQ]~nf H4'FYX(la]Cex%a4 _] q\ | /q(G=01$ETruM0q< h;EL5'X=/FS8ͯG-,c3_Kg[8?U?&hR?\B f$&y$.l(ZŚdfv}э[ p [7zk V?+$.QG'Jg|0D;._i.$2w <<k< Yj~,8@$< ~40Mga.iHF %}uc[6B!Ҿ~f7/)D{$wȴJeO|BUSbEGJ Y'ڗvQA2KdaJn4,3XKd6Msy)!<1x -:%ƒ=h'L@iu]e6gdu,ɗ4Ml%ʼnl+V235x%wtNc;M"bb=*Y=xn(1$spDa}?) ۴L{ZẑGt8?)Ap_C\:&F^='5+|C$a+/tU~B9C,v8Kh1)2 Ai%޽W p`z/4:oo:D n˖dzj0;-# yA]7df֡Da ?KvY|x4m"aTbQ@SZZ2?OKH]Re)5kS )rUxQ޾/vP,Wz)US0S=uCCU)5 yG~#_[pME9MB V m=wUbb!\X<`&JcBm6T]bmgLZ=n.?%)A*7`~]N -z hcyj8nGy9 7FBjZ]K?B2E0v!0 B487- ^zAzCmI doOSS\)Yyj  Iu`.3,#V 5hV1HXd|4n|n4M^P 8ilbQQ|dyYPSI_?dDhvZ?mN Q PF$fF!9"o&0΂.W= ks8[* OotHx?97m;T Lsnσj?LcQ1x5)Z '^$V}l%Wwd S2i4Aq6EoSW.8Vm9|`zWŹwHu=B8N!7_d i512/ Lek-h-4%V~BOD p!c}3\:_VFx:@zldRaҜ=r4bx#6=!#H#2sef&iQwT}yLXdEc)Jl j e[F0p jË_5yh!3jD,ukʗ;E*$7}(U.y:pI¿J"ݕyfmu·VXL9f.76oIRxdE.J*H"CAs{\M6aJWWHkCT`2j-/fn, 5wE5P`zCw3D{Sm2wպW%_} hud o$ w^!3neKe?3.,4D'-v ?Qq]H9;~Qlb0K=)~˹*aFgZmmPaZ#@o/j(Sa:*(w-|x7)bW xd[XZAuvIsKn}@e5)/;Ӝ1jf[ae\3!QO2.i`%ֳEwH82bգYd?;- !&2ZzNP\9+n0>Ua{(Dd٠ŭCfԻ@k:f XhGSD%Rkgm Obnԑ0#yr]gЗ ds)}o& #egp-[$D;3J~F{@\0}I+ICg@˒/@ aI!LBZdWOq _]g.q] jFya7<*{1Q/~1qifPK| /aWzHuZtpfK8Rg#ֵ2U}{zqǀYLXC, N7qc$]#lй(q:K+ WyCN0#%) $5_G5789sk7/L{{6ϴ'`'C]2`yJ)pM wd*CBT  0Y;OP/L wzb.a"+fJ\!=AeɄ'P czdE%! i"t;! dĚW9zo':R&Or!ȾF Fzkh&d"~4f$z44 ޟ B+ 60J>_+&4#v2"0z-O!+TN7UzuXȶ]lQY[C#˥Qڔ):IxwHfO]`Y"[h>n^4}Rżh] {s=jŬ T|Orj,R_LXyC"kh-S1b1]-*Ej>LW g ^8{PjpN\`6X._&'tiOp3D>3* }_s2g,> .8*yq$( a-$Ǹ `kPuU(sKd:$-bC s6zgxZ98x"$y MY-D"OQQCK B})Lt8H'&sb .!3i5?uEfͻ6pI(~{V;GS[YZۭ-Fv|[ Tr[$'o(`QMLjO/[#fSZzEIfD[:=g }|I\ZhDAXxc:sG b)+ }W<b#t Vu]Z3rz uZ!W=#Ł<}}OfwX+XYLU /*so]pT] 77Hy9F-TϝH>f^P!*Eu& &~-ە"ADm@iV5tQƌ;jۈ^ՁE%xSvGBu2>-[%,$jR!&O0=]58FZY/3>,O^>)hPIOZ|aL^:pZh@a"l:gbk(9:Z#mnAyO\ah~;ԍxd wL_yBiq?|Z'qN,t [BS[p;  ,DZ8 Qb3V\݂~H/8OXsE=+hq#\M!5]);cd+9g%@us^(N11PvGj&$3Z w? 'ߪ$f oNC"B!_rk}ntwkm!ErGW51ъm\hd[Ut k),:[ /')\64K2XD~"6qk=1jmLp8Z2{3xHǺ20kTAT~B$e"uh m>7gm!|_߈MYG[!/6;A*xR`paΨ$vy(k #+6.\\b+6f ,1DJPyq7Q9sy{4?jpJH/Tu?o*1{N}>`eZ8U-Y  (rp*CԻ"H۽r*o.Svȫhڝ ;\q~#{@XFor_3KP*b~ .62[uAOF Zg$ϔ@tdP_\D6Bz B9ȨlMEt :5(&S\TTL7۽ &Y lK"WF9ixlՂkaj_Qf\wl Cy{_/1hQ\3Άr|q6Z: Oq0EXb?%W;p95}u!V bà5sF .ұc0]s!W>DO60ElI*.6 G;lzyůvͯX=kr%~EӹibIsǙ=Us^)+5/n@R:\^Hސ(P%WU"nwttXQ!h7p›-Yƕ |cgivT6Hs@W:*jBbRUb+7qFd}>.& V$_z,xDJEI Nj?reNjV _'Yp\bh>vx#oyJ?g9UB{ VSjIJ1B- 8 1j \#!:"SD@~5 ''R~*SaLklHd R iR33+6[>׻FFKQ5^+J'uG#@ZVfKtq ,C!utUj8,@}5Lz)H =N0jXWAey$3 1$k|XtiUg`Y]PteՋ/r$ { f{RRwC%u:)8*>`^*|0)j)O~1]JD"%8F\)TgT1A00~?IiGXDWW0US6QQvZ{mal{nqM[lOQ [9vw]Vy .6%] " 31E,@IW,&#^.lJ:hx L.2DdԝĔ<=x9D K~>o9-UQÍ?:h>+/#F qxT c9pS 3oKQ fT>DͤpGvzDv-(*rm8bOO V(mG&k0@M?Hs.ysU^YVeHn_y}g=RuObOh>3/5.=tl֮+Y,bu;8 p-,G)hRۮw4/O<2CAA'?D_IVh/jyTmBG}Z`H(7M1:)2- pk(e/z<?7@f`0" t"@)vDn}3>LPл^z*ٗNen-E?ZdEs/+QrZ*TmL=@c7 4H&n|"wcӞn-f$Is m/flReU4KdhBm6=Q]XPh~7yk"+({W# a[cfB{zʅ;[Wtb6VLlA;5^E=/q(-{!|>u{w%I4! Lq~CpgAzVv}J%[YS^̙cDHF!)6$'44F@\gĝWoq?:~#0A Oj'w <4{e2-+k+pI>58t;Z)*$m5jWZ=mնظJ׾ȱp ֜}@rZTqY}Ug;' ,G }Y H&L\hh[TRf+Q`p2=g׻Gt6,;2WrI Ñ`Pϳp]b wZh%^z<+]$5$-#J ح o~ieC-TIW}[u, LQ!dӡ}dׂA ,`k RV"9ZdOP_9z$'=COu^@;D?66o,w,G!:=.9L ,d0I*Yr.pd1U~] EŘh"|l֝-Ž9$N"`l=\10$n;jkfg~}tYjw@lt qςge} 2\+ m/2E-n9FuT+>yQ2tC9T:CtW3s((^kX9u?ά ZS=,pC#QEk?.M[Ώq]z_Kq.jo Azi;W.;U tZ8bA7ԁ"rzW~00S.onۙ`$Fs4ÐHɅsUˡsnf\977Mug~xp uu"SRu7r[V.W hM1>o8;i|VN޲f23܂^ET¤H,=wWaa,xs-LS~8&"T .nQ BD[K119(\R[5ոeFpXb+TxD h#~awDƃ8G3qpDDmz\@K'TBFI؏kGoE}Ľt\KD`rXsBRU~qSifc^mUxE/TIc=|B^ lF "*[`N?gW+YOq3S JD>{\bD? v0X)їDsZI{3TIlى(X[+ =XN3V-ooJ iiINJ3zquTيC[xt|As C9^q_Tp^{, gj4Ng&1Z"B Wg=3ШCC`WP;Aase.]Bb^Yoz;u8tE:} ,SZ*ޯbuxW>xP2F=PJIڿZsӝv[3s>kva j wyH}vϳf_g3~ M<)"_:\E_3_^[Z \\!P'DXj&V4:E!n{9^ !$r$ 4r\B?b.ғ:L]y+Fҥj@Ph2d4sKn yΌ5-BT.qElhnworkrave-1.10.50/frontend/common/Makefile.am0000644000175100001710000000030014221624107017556 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src share include workrave-1.10.50/frontend/gtkmm/0000755000000000000000000000000014221624440016451 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/win32/0000755000000000000000000000000014221624440017413 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/win32/setup/0000755000000000000000000000000014221624440020553 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/win32/setup/WizModernSmall.bmp0000644000175100001710000000312414221624107023071 0ustar00gdm00000000000000BMTN(774 4 UUUUUUUUUUUUUUUUUUUUUUUUUUUPQPPPQPPPQPPPQPPPQPPPQESPPET2EUU0$2PQUUUUUUU@%UUQDURPPUUUR#BUUUCUUURC"UUUTPQUUU"UUUUUUUUUUPEUT%UUTPP4UT%UUUUUUUUUUUUUU$UUUPQ"22%UUUUUUUUUUUUUU2UTBPPUUREUUUUUUUUUUUUUU2## PQ5UCUUUUUUUUUUUUUUU3UUPPPEUUUUUUUUUUUUUU%UU0PQ""""EUUUUUUUUUUUUQ!PP5UUUR%UUUUUUUUUUUUPPQ%UUUUU%UUUUUUUUUUUUU!PPUUUUUU5UUUUUUUUUUUUU@PQUUUUUUDUUUUUUUUUUUUURPPUUUUUUBUUUUUUUUUUUUUPPQUUUUUUS5UUUUUUUUUUUUAPPUUUUUUT%UUUUUUUUUUUU PQUTECUUU$UUUUUUUUUUUQPPE@%5UT%UUUUUUUUUUU0PQ "%UR%UUUUUUUUUUUUPP%@UCU0UUUUUUUUUUUUTPQ%REBU#TUUUUUUUUUUUSPPR%BS""EUUUUUUUUURPQ0 R%UT$UUUUUUUUU!PP UUU"UUUUUUUTPQ"UUU@UUUUUUUT!PP4UT$USUUUUUUUURPQUUQ%2 5UUUUUUUURPP%UUUCUUUUUUUUUU@PQU1EUUUUUUUUDUBPPUUUUUUTPQE#UTEURPP%0$BPQPPPQPPPQPPPQPPPQPUUUUUUUUUUUUUUUUUUUUUUUUUUUPworkrave-1.10.50/frontend/gtkmm/win32/setup/src/0000755000000000000000000000000014221624440021342 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/win32/setup/src/ChangeAutorun.c0000644000175100001710000005643514221624107023175 0ustar00gdm00000000000000/* * ChangeAutorun.c - Change autorun for a new and/or existing user * * Copyright (C) 2012 Ray Satiro on behalf of the Workrave project * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /***** * README, CHANGES REQUIRED * * This program, ChangeAutorun, is called by Active Setup to change the autorun settings for a new * and/or existing user of your program. * * Your installer should have added to its Active Setup key a StubPath value with data that will run * this program. For more information search the internet for how to configure Active Setup. * Example: * "StubPath"="\"C:\\Program Files\\Workrave\\lib\\ChangeAutorun.exe\" -b" * * Typically you'd set your Active Setup StubPath to call ChangeAutorun with 'a' or 'b' or 'u'. * Run ChangeAutorun /? for all options. * * Options 'v' and 'z' are for testing purposes and must NOT be options in your ActiveSetup StubPath. * Either of those options will routinely show MessageBoxes with information only a developer could * care about and require user input to click 'OK' to the messages, stalling explorer initialization. * * REQUIRED CHANGES * If this is not the Workrave project you MUST change everything below (until the /END block), and * not use the GUID 180B0AC5-6FDA-438B-9466-C9894322B6BA. Generate your own GUID. */ /* This is the Active Setup GUID subkey generated by your installer to store its Active Setup. */ #define ACTIVE_SETUP_GUID "{180B0AC5-6FDA-438B-9466-C9894322B6BA}" /* This is the autorun value stored in the key HKCU_AUTORUN_KEY. The value must be unique. This program will add a value of AUTORUN_VALUE to the key with data pointing to the target, eg: "Workrave"="\"C:\\Program Files\\Workrave\\lib\\workrave.exe\"" */ #define AUTORUN_VALUE "Workrave" /* This is the name of your project. It is the name that appears in this program's verbose output. */ #define PROJECT "Workrave" /* This is an HKCU key that has been set by your program after it is run by the user. It should not be a key that is set by your installer. If ChangeAutorun is run with the -b option it needs to determine whether or not the target program has previously been run by the user. It checks for the existence of this key to determine that. */ #define HKCU_PROJECT_KEY "AppEvents\\Schemes\\Apps\\Workrave" /* This is your target program's executable name, with extension, and without path. It must be in the same directory as this program. */ #define TARGET "workrave.exe" /* These are the options to pass to the target program. For example: "--somearg \"abc\" -asdf" If no options use "" */ #define TARGET_OPTIONS "" /***** * /END REQUIRED CHANGES * You shouldn't need to change anything below here. */ /***** * COMPILING * * I wrote this to create an autorun entry for an x86 target program (TARGET). When compiled x86, * and run on x86 or x64 platform it will access the 32-bit ACTIVE_SETUP_GUID, HKCU_PROJECT_KEY, etc. * * You could probably use this program with an x64 TARGET if you compile it x64, and your installer * writes to the 64-bit ACTIVE_SETUP_GUID. In that case this program should access the 64-bit keys. * I haven't tested that. If you do test it let me know what happens. * * cl /O2 /W4 /DUNICODE ChangeAutorun.c * gcc -O2 -Wall -Wextra -Wno-unknown-pragmas -Wno-unused-parameter -DUNICODE -mwindows -o ChangeAutorun.exe ChangeAutorun.c -lpsapi */ /* Disable cl unused parameter warnings */ #pragma warning(disable : 4100) #pragma comment(lib, "psapi.lib") #pragma comment(lib, "user32.lib") #pragma comment(lib, "advapi32.lib") #pragma comment(linker, "/SUBSYSTEM:WINDOWS") /* Define both UNICODEs before any includes. http://blogs.msdn.com/b/oldnewthing/archive/2004/02/12/71851.aspx#73016 http://en.wikibooks.org/wiki/Windows_Programming/Unicode#Unicode_Environment */ #if defined UNICODE && !defined _UNICODE # define _UNICODE #endif #if defined _UNICODE && !defined UNICODE # define UNICODE #endif #if defined _UNICODE && defined _MBCS # error Both _UNICODE and _MBCS are defined. Those defines are mutually exclusive. #endif /* Use the original GetModuleFilenameEx() location. http://msdn.microsoft.com/en-us/library/windows/desktop/ms683198.aspx */ #define PSAPI_VERSION 1 #define _CRT_SECURE_NO_WARNINGS #define _WIN32_WINNT 0x0501 /* INCLUDES */ #include #include #include #include #include /* /INCLUDES */ /* MinGW has KEY_WOW64 defines only when >= 0x502 */ #ifndef KEY_WOW64_64KEY # define KEY_WOW64_64KEY 0x0100 #endif #ifndef KEY_WOW64_32KEY # define KEY_WOW64_32KEY 0x0200 #endif #define VERBOSE_ERR(msg) VERBOSE_ERR_DATA2(msg, NULL, NULL) #define VERBOSE_ERR_DATA(msg, tstr1) VERBOSE_ERR_DATA2(msg, tstr1, NULL) #define VERBOSE_ERR_DATA2(msg, tstr1, tstr2) \ if (g_verbose) \ show_message(__LINE__, __FUNCTION__, msg, _T("Error"), tstr1, tstr2) #define VERBOSE_MSG(msg) VERBOSE_MSG_DATA2(msg, NULL, NULL) #define VERBOSE_MSG_DATA(msg, tstr1) VERBOSE_MSG_DATA2(msg, tstr1, NULL) #define VERBOSE_MSG_DATA2(msg, tstr1, tstr2) \ if (g_verbose) \ show_message(__LINE__, __FUNCTION__, msg, _T("Message"), tstr1, tstr2) #define HKCU_AUTORUN_KEY "Software\\Microsoft\\Windows\\CurrentVersion\\Run" /* if _UNICODE then the lengths of these global variables will be a count of wide characters in the string. if not _UNICODE then the lengths will be a count of single byte characters. lengths here will not be a count of multibyte characters even if _MBCS. */ /* The target's full image name. Initialized at runtime. Example: C:\Program Files\Workrave\lib\workrave.exe */ TCHAR *target_fullname; int length_target_fullname; /* The target's directory. Initialized at runtime. Example: C:\Program Files\Workrave\lib\ */ TCHAR *target_directory; int length_target_directory; /* The command line for the autorun entry. Initialized at runtime. Example: "C:\Program Files\Workrave\lib\workrave.exe" -whatever "some arg with spaces" -abc */ TCHAR *target_command; int length_target_command; /* Verbosity */ BOOL g_verbose = FALSE; enum users { IGNORE_THIS_TAG = -1, /* force gcc signed enum */ ALL_USERS = 0, NEW_USERS, UPDATE_EXISTING_AUTORUN_ONLY, INVALID }; /* Shows a MessageBox with information. Used by the VERBOSE_ macro functions. */ void show_message(const int line, const char *function, const TCHAR *message, const TCHAR *title, const TCHAR *data, const TCHAR *data2) { TCHAR *buffer = NULL; int length_buffer = 0; int max_length_buffer = 1024; if (data) max_length_buffer += _tcslen(data); if (data2) max_length_buffer += _tcslen(data2); buffer = malloc((max_length_buffer + 1) * sizeof(TCHAR)); if (!buffer) return; length_buffer = _sntprintf( buffer, max_length_buffer, _T("%s - ChangeAutorun\n") _T("Line: %d\n") _T("Function: %hs()\n") _T("Project: ") _T(PROJECT) _T("\n") _T("\n%s") _T("%s%s\n%s"), ( ( !title || !*title ) ? _T("") : title ), line, ( ( !function || !*function ) ? "" : function ), ( ( !message || !*message ) ? _T("") : message ), ( ( data || data2 ) ? _T("\n\nRelated data:\n") : _T("") ), ( data ? data : _T("") ), ( data2 ? data2 : _T("") ) ); if (length_buffer < 0) length_buffer = max_length_buffer; buffer[length_buffer] = _T('\0'); MessageBox(0, buffer, ((!title || !*title) ? _T("") : title), 0); free(buffer); return; } /* Check if a file exists. Returns TRUE on success. */ BOOL file_exists(const TCHAR *filename) { HANDLE hFile = NULL; hFile = CreateFile(filename, 0, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL); if (hFile == INVALID_HANDLE_VALUE) return FALSE; CloseHandle(hFile); return TRUE; } /* Check if a registry key exists and can be opened for read. Returns TRUE on success. */ BOOL regkey_test_read(HKEY mainkey, const TCHAR *subkey) { HKEY hkey = NULL; LONG ret = 0; ret = RegOpenKeyEx(mainkey, subkey, 0, STANDARD_RIGHTS_READ, &hkey); if (ret || !hkey) return FALSE; if (hkey) RegCloseKey(hkey); return TRUE; } /* Frees and zeroes all global variables except g_verbose and any const. */ void free_global_variables() { if (target_directory) { free(target_directory); target_directory = NULL; } length_target_directory = 0; if (target_fullname) { free(target_fullname); target_fullname = NULL; } length_target_fullname = 0; if (target_command) { free(target_command); target_command = NULL; } length_target_command = 0; return; } /* init_global_variables() Initialize all global variables except g_verbose and any const. Returns TRUE if all variables were successfully initialized. If only some variables were initialized, those that couldn't be initialized will be cleared and this function will return FALSE. */ BOOL init_global_variables() { int i = 0; TCHAR *temp = NULL; int length_target = 0; int max_length_target_command = 0; free_global_variables(); /* target_directory Get this program's path from GetModuleFileNameEx(). When using that function there's no sure way to know the exact size beforehand. */ for (i = 512; i <= 65536; i *= 2, length_target_directory = 0) { temp = realloc(target_directory, (i * sizeof(TCHAR))); if (!temp) { VERBOSE_ERR(_T("realloc() failed. Could not initialize target_directory.")); goto cleanup; } target_directory = temp; length_target_directory = GetModuleFileNameEx(GetCurrentProcess(), NULL, target_directory, i); if (length_target_directory && ((length_target_directory + 1) < i)) break; } if (!length_target_directory) { VERBOSE_ERR(_T("GetModuleFileNameEx() failed. Could not initialize target_directory.")); goto cleanup; } target_directory[length_target_directory] = _T('\0'); if (!file_exists(target_directory)) { VERBOSE_ERR_DATA(_T("File not found. Could not initialize target_directory."), target_directory); length_target_directory = 0; goto cleanup; } temp = _tcsrchr(target_directory, _T('\\')); if (!temp) { VERBOSE_ERR_DATA(_T("Backslash not found in string. Could not initialize target_directory."), target_directory); length_target_directory = 0; goto cleanup; } *++temp = _T('\0'); length_target_directory = temp - target_directory; /* target_fullname Append the executable name (TARGET) to target_directory. */ length_target = _tcslen(_T(TARGET)); length_target_fullname = length_target_directory + length_target; target_fullname = malloc((length_target_fullname + 1) * sizeof(TCHAR)); if (!target_fullname) { VERBOSE_ERR(_T("malloc() failed. Could not initialize target_fullname.")); length_target_fullname = 0; goto cleanup; } temp = target_fullname; memcpy(temp, target_directory, (length_target_directory * sizeof(TCHAR))); temp += length_target_directory; memcpy(temp, _T(TARGET), (length_target * sizeof(TCHAR))); temp += length_target; *temp = _T('\0'); if (!file_exists(target_fullname)) { VERBOSE_ERR_DATA(_T("File not found. Could not initialize target_fullname."), target_fullname); length_target_fullname = 0; goto cleanup; } /* target_command Make the target command to execute from the target_fullname and TARGET_OPTIONS */ max_length_target_command = 1024 + length_target_fullname; target_command = malloc((max_length_target_command + 1) * sizeof(TCHAR)); if (!target_command) { VERBOSE_ERR(_T("malloc() failed. Could not initialize target_command.")); length_target_command = 0; goto cleanup; } /* what follows target_fullname cannot be all trailing spaces. "\"C:\whatever.exe\" " the legacy run key will not handle that properly and would not start whatever.exe it will not start a program with trailing spaces. if there are options then trailing spaces can follow that, so this is ok: "\"C:\whatever.exe\" --arf " */ for (temp = _T(TARGET_OPTIONS); *temp == _T(' '); ++temp) ; length_target_command = _sntprintf(target_command, max_length_target_command, _T("\"%s\"%s%s"), target_fullname, (*temp ? _T(" ") : _T("")), temp); if (length_target_command < 0) { VERBOSE_ERR_DATA2(_T("_sntprintf() failed. Could not initialize target_command."), target_fullname, _T(TARGET_OPTIONS)); length_target_command = 0; goto cleanup; } target_command[length_target_command] = _T('\0'); cleanup: if (!length_target_directory) { free(target_directory); target_directory = NULL; } if (!target_directory) length_target_directory = 0; if (!length_target_fullname) { free(target_fullname); target_fullname = NULL; } if (!target_fullname) length_target_fullname = 0; if (!length_target_command) { free(target_command); target_command = NULL; } if (!target_command) length_target_command = 0; return (target_directory && target_fullname && target_command); } /* add_autorun_entry() Adds an autorun entry for your program. Returns TRUE on success. if 'users' == NEW_USERS then add only if TARGET has never before been started by the user. if 'users' == ALL_USERS then add always. if 'users' == UPDATE_EXISTING_AUTORUN_ONLY then only update an existing entry. regardless of the value of 'users', if the user already has an autorun entry it is updated with the new location. To determine if your TARGET program has ever before been run by the user, this function checks for the existence of HKCU registry key HKCU_PROJECT_KEY. */ BOOL add_autorun_entry(enum users users) { LONG ret = 0; HKEY hkey = NULL; if (!target_command) { VERBOSE_ERR(_T("Parameter validation failed. target_command == NULL")); return FALSE; } if ((users < 0) || (users >= INVALID)) { VERBOSE_ERR(_T("Parameter validation failed. users enumeration tag unrecognized.")); return FALSE; } ret = RegCreateKeyEx(HKEY_CURRENT_USER, _T(HKCU_AUTORUN_KEY), 0, NULL, 0, (KEY_READ | KEY_WRITE), NULL, &hkey, NULL); if (ret) { VERBOSE_ERR_DATA(_T("RegCreateKeyEx() failed. The HKCU autorun key couldn't be opened for writing."), _T(HKCU_AUTORUN_KEY)); return FALSE; } /* if the autorun value doesn't exist */ if (RegQueryValueEx(hkey, _T(AUTORUN_VALUE), NULL, NULL, NULL, NULL)) { /* if setting an autorun entry for new users, and the user isn't new (project key exists) */ if ((users == NEW_USERS) && regkey_test_read(HKEY_CURRENT_USER, _T(HKCU_PROJECT_KEY))) { VERBOSE_MSG_DATA(_T("Existing project key and no existing autorun entry. No entry has been added."), _T(HKCU_PROJECT_KEY)); return FALSE; } else if (users == UPDATE_EXISTING_AUTORUN_ONLY) { VERBOSE_ERR(_T("No existing autorun entry to update.")); return FALSE; } } ret = RegSetValueEx(hkey, _T(AUTORUN_VALUE), 0, REG_SZ, (const BYTE *)target_command, ((length_target_command + 1) * sizeof(TCHAR))); RegCloseKey(hkey); if (ret) { VERBOSE_ERR_DATA2(_T("RegSetValueEx() failed. The autorun value couldn't be written."), _T(AUTORUN_VALUE), target_command); return FALSE; } VERBOSE_MSG_DATA(_T("The autorun data was successfully added."), target_command); return TRUE; } /* Returns TRUE if your project's HKCU autorun entry was deleted. */ BOOL remove_autorun_entry() { LONG ret = 0; HKEY hkey = NULL; ret = RegOpenKeyEx(HKEY_CURRENT_USER, _T(HKCU_AUTORUN_KEY), 0, (KEY_READ | KEY_WRITE), &hkey); if (ret || !hkey) { VERBOSE_ERR_DATA(_T("RegOpenKeyEx() failed. The HKCU autorun key doesn't exist or couldn't be read."), _T(HKCU_AUTORUN_KEY)); return FALSE; } ret = RegQueryValueEx(hkey, _T(AUTORUN_VALUE), NULL, NULL, NULL, NULL); if (ret) { if ((ret == ERROR_FILE_NOT_FOUND) || (ret == ERROR_PATH_NOT_FOUND)) { VERBOSE_ERR_DATA(_T("The autorun value does not exist. There is nothing to delete."), _T(AUTORUN_VALUE)); } else { VERBOSE_ERR_DATA(_T("RegQueryValueEx() failed. The value could not be read."), _T(AUTORUN_VALUE)); } return FALSE; } ret = RegDeleteValue(hkey, _T(AUTORUN_VALUE)); RegCloseKey(hkey); if (ret) { VERBOSE_ERR_DATA(_T("RegDeleteValue() failed. The autorun value doesn't exist or could not be read."), _T(AUTORUN_VALUE)); return FALSE; } VERBOSE_MSG(_T("Your project's autorun entry was successfully deleted.")); return TRUE; } /* Returns TRUE if your project's HKCU Active Setup key was deleted. */ BOOL remove_activesetup_entry() { BOOL deleted = FALSE; LONG(WINAPI * pRegDeleteKeyEx)(HKEY, LPCTSTR, REGSAM, DWORD) = NULL; TCHAR *subkey_default = _T("SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\") _T(ACTIVE_SETUP_GUID); TCHAR *subkey_wow = _T("SOFTWARE\\Wow6432Node\\Microsoft\\Active Setup\\Installed Components\\") _T(ACTIVE_SETUP_GUID); if (!RegDeleteKey(HKEY_CURRENT_USER, subkey_default)) deleted = TRUE; /* This one probably won't work. */ if (!RegDeleteKey(HKEY_CURRENT_USER, subkey_wow)) deleted = TRUE; pRegDeleteKeyEx = (LONG(WINAPI *)(HKEY, LPCTSTR, REGSAM, DWORD))GetProcAddress( GetModuleHandleA("Advapi32"), ((sizeof(TCHAR) == 1) ? "RegDeleteKeyExA" : "RegDeleteKeyExW")); if (pRegDeleteKeyEx) { if (!pRegDeleteKeyEx(HKEY_CURRENT_USER, subkey_default, KEY_WOW64_32KEY, 0)) deleted = TRUE; if (!pRegDeleteKeyEx(HKEY_CURRENT_USER, subkey_default, KEY_WOW64_64KEY, 0)) deleted = TRUE; } if (!deleted) { VERBOSE_ERR_DATA(_T("Your project's Active Setup key either does not exist or could not be deleted."), subkey_default); return FALSE; } VERBOSE_MSG(_T("Your project's Active Setup key was successfully deleted.")); return TRUE; } /* Returns FALSE if tstring is NULL or is empty or contains only whitespace. */ BOOL param_check_tstring(const TCHAR *tstring) { if (!tstring) return FALSE; while ((*tstring == _T(' ')) || (*tstring == _T('\t'))) ++tstring; return !!*tstring; } /* Returns FALSE if some string literal is empty that shouldn't be. */ BOOL check_global_literals() { BOOL pass = TRUE; #define CHECK_LITERAL(literal) \ if (!param_check_tstring(_T(literal))) \ { \ pass = FALSE; \ VERBOSE_ERR_DATA(_T("Program to fail. tstring literal is empty or contains only whitespace."), _T(#literal)); \ } CHECK_LITERAL(HKCU_AUTORUN_KEY); CHECK_LITERAL(ACTIVE_SETUP_GUID); CHECK_LITERAL(AUTORUN_VALUE); CHECK_LITERAL(PROJECT); CHECK_LITERAL(HKCU_PROJECT_KEY); CHECK_LITERAL(TARGET); /* TARGET_OPTIONS can be empty */ return pass; } void show_help() { MessageBoxA(0, "This is a configuration tool added by this project's installer.\n" "This program is invoked by Microsoft's undocumented Active Setup.\n" "If you do not understand what this program does don't use it.\n" "\n" "ACTIVE_SETUP_GUID: " ACTIVE_SETUP_GUID "\n" "AUTORUN_VALUE: " AUTORUN_VALUE "\n" "PROJECT: " PROJECT "\n" "HKCU_PROJECT_KEY: " HKCU_PROJECT_KEY "\n" "TARGET: " TARGET "\n" "TARGET_OPTIONS: " TARGET_OPTIONS "\n" "\n" "Options:\n" "-a" "\t" "Add autorun always.\n" "-b" "\t" "Add autorun only if user has never before used your project.\n" "-d" "\t" "Remove the autorun entry.\n" "-r" "\t" "Remove the Active Setup entry.\n" "-u" "\t" "Update existing autorun entry.\n" "-v" "\t" "Be verbose. If multiple arguments this must be the first.\n" "-z" "\t" "Show each passed in argument for testing purposes.\n" "\n" "The 'Add autorun' options are mutually exclusive. Using either \n" "implies option 'u', which updates an existing autorun entry, if any.\n" "\n" "Option 'r' removes the HKCU Active Setup entry, if any, and not the\n" "HKLM Active Setup entry. What that means is Active Setup will be\n" "reset for the user, and will run the next time the user logs on.\n", "Help - ChangeAutorun", 0); return; } void just_testing(int argc, char **argv) { int i = 0; for (i = 0; i < argc; ++i) MessageBoxA(0, argv[i], argv[i], 0); if (argv[i]) MessageBoxA(0, "Final argv pointer is not NULL", "WARNING", 0); return; } int _CRT_glob = 0; int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { int i = 0, j = 0; int argc = 0; char **argv = NULL; SetErrorMode((SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX)); argv = __argv; argc = __argc; if (argc <= 1) return 1; if (argc >= 2 && ((argv[1][0] == '/') || (argv[1][0] == '-'))) { if ((argv[1][1] == 'v') || (argv[1][1] == 'V')) { g_verbose = TRUE; } else if ((argv[1][1] == '?') || (argv[1][1] == 'h') || (argv[1][1] == 'H')) { show_help(); return 0; } } if (!check_global_literals()) return 1; init_global_variables(); for (i = 1; i < argc; ++i) { if (argv[i][0] != '-' && argv[i][0] != '/') continue; for (j = 1; argv[i][j]; ++j) { switch (argv[i][j]) { case 'a': case 'A': add_autorun_entry(ALL_USERS); break; case 'b': case 'B': add_autorun_entry(NEW_USERS); break; case 'd': case 'D': remove_autorun_entry(); break; case 'r': case 'R': remove_activesetup_entry(); break; case 'u': case 'U': add_autorun_entry(UPDATE_EXISTING_AUTORUN_ONLY); break; case 'z': case 'Z': just_testing(argc, argv); break; } } } free_global_variables(); return 0; } workrave-1.10.50/frontend/gtkmm/win32/setup/src/zapper.h0000644000175100001710000000032214221624107021720 0ustar00gdm00000000000000#ifndef ZAPPER_H #define ZAPPER_H __declspec(dllexport) BOOL ZapWorkrave(); __declspec(dllexport) BOOL FindWorkrave(); __declspec(dllexport) BOOL KillProcess(char *proces_name_to_kill); #endif /* ZAPPER_H */ workrave-1.10.50/frontend/gtkmm/win32/setup/src/Makefile.in0000644000000000000000000007241114221624202023410 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @PLATFORM_OS_WINDOWS_TRUE@bin_PROGRAMS = zap$(EXEEXT) subdir = frontend/gtkmm/win32/setup/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__include_HEADERS_DIST) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \ "$(DESTDIR)$(includedir)" PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } LTLIBRARIES = $(lib_LTLIBRARIES) libzapper_la_LIBADD = am__libzapper_la_SOURCES_DIST = zapper.c @PLATFORM_OS_WINDOWS_TRUE@am_libzapper_la_OBJECTS = zapper.lo libzapper_la_OBJECTS = $(am_libzapper_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libzapper_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libzapper_la_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_WINDOWS_TRUE@am_libzapper_la_rpath = -rpath $(libdir) am__zap_SOURCES_DIST = zap.c @PLATFORM_OS_WINDOWS_TRUE@am_zap_OBJECTS = zap.$(OBJEXT) zap_OBJECTS = $(am_zap_OBJECTS) @PLATFORM_OS_WINDOWS_TRUE@zap_DEPENDENCIES = libzapper.la zap_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(zap_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/zap.Po ./$(DEPDIR)/zapper.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libzapper_la_SOURCES) $(zap_SOURCES) DIST_SOURCES = $(am__libzapper_la_SOURCES_DIST) \ $(am__zap_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__include_HEADERS_DIST = zapper.h HEADERS = $(include_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) @PLATFORM_OS_WINDOWS_TRUE@lib_LTLIBRARIES = libzapper.la @PLATFORM_OS_WINDOWS_TRUE@libzapper_la_SOURCES = zapper.c @PLATFORM_OS_WINDOWS_TRUE@libzapper_la_LDFLAGS = -no-undefined -version-info 0:0:0 @PLATFORM_OS_WINDOWS_TRUE@include_HEADERS = zapper.h @PLATFORM_OS_WINDOWS_TRUE@zap_SOURCES = zap.c @PLATFORM_OS_WINDOWS_TRUE@zap_LDADD = libzapper.la @PLATFORM_OS_WINDOWS_TRUE@zap_LDFLAGS = -mconsole all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/win32/setup/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/win32/setup/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): 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 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)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libzapper.la: $(libzapper_la_OBJECTS) $(libzapper_la_DEPENDENCIES) $(EXTRA_libzapper_la_DEPENDENCIES) $(AM_V_CCLD)$(libzapper_la_LINK) $(am_libzapper_la_rpath) $(libzapper_la_OBJECTS) $(libzapper_la_LIBADD) $(LIBS) zap$(EXEEXT): $(zap_OBJECTS) $(zap_DEPENDENCIES) $(EXTRA_zap_DEPENDENCIES) @rm -f zap$(EXEEXT) $(AM_V_CCLD)$(zap_LINK) $(zap_OBJECTS) $(zap_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zap.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zapper.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-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: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS) install-binPROGRAMS: install-libLTLIBRARIES installdirs: for dir in "$(DESTDIR)$(bindir)" "$(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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/zap.Po -rm -f ./$(DEPDIR)/zapper.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-includeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS 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 -f ./$(DEPDIR)/zap.Po -rm -f ./$(DEPDIR)/zapper.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-includeHEADERS \ uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ install-data-am install-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 tags-am uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-includeHEADERS uninstall-libLTLIBRARIES .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/win32/setup/src/Makefile.am0000644000175100001710000000102214221624107022300 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) if PLATFORM_OS_WINDOWS lib_LTLIBRARIES = libzapper.la libzapper_la_SOURCES = zapper.c libzapper_la_LDFLAGS = -no-undefined -version-info 0:0:0 include_HEADERS = zapper.h bin_PROGRAMS = zap zap_SOURCES = zap.c zap_LDADD = libzapper.la zap_LDFLAGS = -mconsole endif workrave-1.10.50/frontend/gtkmm/win32/setup/src/zap.c0000644000175100001710000000017114221624107021206 0ustar00gdm00000000000000#include #include #include "zapper.h" int main(int argc, char **argv) { return ZapWorkrave(); }workrave-1.10.50/frontend/gtkmm/win32/setup/src/zapper.c0000644000175100001710000001505114221624107021720 0ustar00gdm00000000000000#include #include #include "zapper.h" #pragma comment(lib, "user32.lib") #pragma warning(push) #pragma warning(disable : 4100) // unreferenced formal parameter typedef DWORD(__stdcall *QUERYFULLPROCESSIMAGENAME)(HANDLE, DWORD, LPTSTR, PDWORD); typedef DWORD(__stdcall *GETMODULEFILENAMEEX)(HANDLE, HMODULE, LPTSTR, DWORD); typedef DWORD(__stdcall *GETMODULEBASENAME)(HANDLE, HMODULE, LPTSTR, DWORD); typedef BOOL(__stdcall *ENUMPROCESSES)(DWORD *, DWORD, DWORD *); typedef BOOL(__stdcall *ENUMPROCESSMODULES)(HANDLE, HMODULE *, DWORD, LPDWORD); static QUERYFULLPROCESSIMAGENAME pfnQueryFullProcessImageName = NULL; static GETMODULEFILENAMEEX pfnGetModuleFileNameEx = NULL; static ENUMPROCESSES pfnEnumProcesses = NULL; static ENUMPROCESSMODULES pfnEnumProcessModules = NULL; static GETMODULEBASENAME pfnGetModuleBaseName = NULL; static BOOL success = FALSE; static BOOL simulate = FALSE; #define MAX_CLASS_NAME (128) #define MAX_TITLE (128) enum Kind { KIND_NONE, KIND_EGG, KIND_MENU }; static BOOL GetProcessName(HWND hwnd, char *buf, size_t buf_size) { HANDLE process_handle = NULL; BOOL process_name_found = FALSE; DWORD processid = 0; if (GetWindowThreadProcessId(hwnd, &processid) && processid != 0) { process_handle = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, 0, processid); if (process_handle != 0) { if (pfnQueryFullProcessImageName != NULL) { DWORD size = buf_size; if (pfnQueryFullProcessImageName(process_handle, 0, buf, &size)) { process_name_found = TRUE; } } if (!process_name_found && pfnGetModuleFileNameEx) { if (pfnGetModuleFileNameEx(process_handle, NULL, buf, buf_size)) { process_name_found = TRUE; } } CloseHandle(process_handle); } } return process_name_found; } static void SendQuit(HWND hwnd, enum Kind kind) { switch (kind) { case KIND_NONE: break; case KIND_EGG: PostMessage(hwnd, WM_ENDSESSION, 1, 0); break; case KIND_MENU: PostMessage(hwnd, WM_USER, 14, 0); break; } } BOOL CALLBACK EnumWindowsProc(HWND hwnd, long lParam) { char className[MAX_CLASS_NAME] = { 0, }; char title[MAX_TITLE] = { 0, }; char processName[2 * MAX_PATH] = { 0, }; int n = 0; enum Kind kind = KIND_NONE; n = GetClassName(hwnd, (LPSTR)className, sizeof(className) - 1); if (n < 0) { n = 0; } className[n] = '\0'; // printf("className = %s\n", className); n = GetWindowText(hwnd, (LPSTR)title, sizeof(title) - 1); if (n < 0) { n = 0; } title[n] = '\0'; // printf("title = %s\n", title); if (strcmp(className, "EggSmClientWindow") == 0) { kind = KIND_EGG; } else if ((strcmp(className, "gdkWindowToplevel") == 0) && (strcmp(title, "Workrave") == 0)) { kind = KIND_MENU; } // printf("kind = %d\n", kind); if (kind != KIND_NONE) { BOOL ret = GetProcessName(hwnd, processName, sizeof(processName)); if (ret) { // printf("processName = %s\n", processName); char *ptr = strrchr(processName, '\\'); if (ptr != NULL && _stricmp(ptr + 1, "Workrave.exe") == 0) { success = TRUE; if (!simulate) { SendQuit(hwnd, kind); } } } } return !success; } static void FindOrZapWorkrave() { HINSTANCE psapi = NULL; HINSTANCE kernel32 = LoadLibrary("kernel32.dll"); if (kernel32 != NULL) { pfnQueryFullProcessImageName = (QUERYFULLPROCESSIMAGENAME)GetProcAddress(kernel32, "QueryFullProcessImageNameA"); } if (pfnQueryFullProcessImageName == NULL) { psapi = LoadLibrary("psapi.dll"); pfnGetModuleFileNameEx = (GETMODULEFILENAMEEX)GetProcAddress(psapi, "GetModuleFileNameExA"); } if (pfnQueryFullProcessImageName != NULL || pfnGetModuleFileNameEx != NULL) { EnumWindows(EnumWindowsProc, 0); } if (kernel32 != NULL) { FreeLibrary(kernel32); } if (psapi != NULL) { FreeLibrary(psapi); } } BOOL FindWorkrave() { success = FALSE; simulate = TRUE; FindOrZapWorkrave(); return success; } BOOL ZapWorkrave() { success = FALSE; simulate = FALSE; FindOrZapWorkrave(); return success; } BOOL KillProcess(char *proces_name_to_kill) { HINSTANCE psapi = psapi = LoadLibrary("psapi.dll"); BOOL ret = FALSE; pfnEnumProcesses = (ENUMPROCESSES)GetProcAddress(psapi, "EnumProcesses"); pfnGetModuleBaseName = (GETMODULEBASENAME)GetProcAddress(psapi, "GetModuleBaseNameA"); pfnEnumProcessModules = (ENUMPROCESSMODULES)GetProcAddress(psapi, "EnumProcessModules"); if (pfnEnumProcesses != NULL && pfnGetModuleBaseName != NULL && pfnEnumProcessModules != NULL) { DWORD i = 0; DWORD count = 0; DWORD needed = 0; DWORD *pids = NULL; BOOL ret = FALSE; do { count += 1024; pids = realloc(pids, count * sizeof(DWORD)); ret = pfnEnumProcesses(pids, count * sizeof(DWORD), &needed); } while (ret && needed > (count * sizeof(DWORD))); if (ret) { count = needed / sizeof(DWORD); for (i = 0; i < count; i++) { DWORD pid = pids[i]; HANDLE process_handle = NULL; char process_name[MAX_PATH] = ""; if (pid == 0) { continue; } process_handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid); if (process_handle != NULL) { HMODULE module_handle; DWORD cbNeeded; if (pfnEnumProcessModules(process_handle, &module_handle, sizeof(module_handle), &cbNeeded)) { pfnGetModuleBaseName(process_handle, module_handle, process_name, sizeof(process_name) / sizeof(char)); } if (_stricmp(process_name, proces_name_to_kill) == 0) { TerminateProcess(process_handle, (UINT)-1); CloseHandle(process_handle); break; } CloseHandle(process_handle); } } } free(pids); pids = NULL; } if (psapi != NULL) { FreeLibrary(psapi); } return ret; } #pragma warning(pop) workrave-1.10.50/frontend/gtkmm/win32/setup/Makefile.in0000644000000000000000000005565114221624202022630 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/win32/setup ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = setup.iss CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/setup.iss.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in setup.iss lang.iss EXTRA_DIST = WizModernImage.bmp WizModernSmall.bmp SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/win32/setup/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/win32/setup/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): setup.iss: $(top_builddir)/config.status $(srcdir)/setup.iss.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/win32/setup/WizModernImage.bmp0000644000175100001710000006354014221624107023053 0ustar00gdm00000000000000BM`gV(:B`aaaaaaaa`aa``a`aa`aaUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQaUUUQUUUQUUUQUUUQ`UUUQUUUQ`UUUQUUUQUUUQUUUQUU$U0UQUU$UC UUS"C UQUUEUUUP5UUTUUU$EU UQUUUUUU"4 UUUT5UUU $2%UUU@UQUUUUUR%UUUUUUUUUUUUBUUU@UQUU#EUBUUUUUUUUUUUUUUREUUPUQUU##"UUUUUUUUUUUUUUS%UD UQUUUU$UUUUUUUUUUUUUUS"22UQUUUT5UUUUUUUUUUUUUUS5UUUQUU4UUUUUUUUUUUUUURUUSUQUU"""$UUUUUUUUUUUUUUQUUUUUU"UUUUUUUUUUUUUUQUUUUUUURUUUUUUUUUUUUURUQUUUUUUUSUUUUUUUUUUUUUTUQUUEUUUUUTEUUUUUUUUUUUUU UQUUUUUUUUT%UUUUUUUUUUUUUUQUUUUUUUUU3UUUUUUUUUUUUTUQUUEUUUUUUBUUUUUUUUUUUURUQUU%UDT5UUREUUUUUUUUUUUUQaUUTPUUBUUUUUUUUUUUSUPUU ""UU"UUUUUUUUUUUUPUQUUTT5SUUUUUUUUUUUU@UPUUU$T%R5EUUUUUUUUUUU0UQUUU"T%0""$UUUUUUUUUU UPUU#""UUBEUUUUUUUURUQUU2UUR%UUUUUUU@UPUU" EUUTUUUUUUUBUQUUEU@EU05UUUUUUUU UPUU5UUS"#UUUUUUUUU UQUUUUPET5UUUUUUUUUTUQUUUSUUUUUUUUTET UQUU EUUUUUU@UQUUR5UDUU UQUUSD UQUUUQUUUQUUUQUUUQUUUQUUUQUUUQUUUQUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQworkrave-1.10.50/frontend/gtkmm/win32/setup/setup.iss.in0000644000175100001710000002474114221624107021757 0ustar00gdm00000000000000; setup.iss --- Inno setup file ; (Important: *MUST* be DOS encoded) ; ; Copyright (C) 2002 - 2011, 2013 Raymond Penners ; Copyright (C) 2010 - 2011 Rob Caelers ; All rights reserved. ; ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program. If not, see . ; [Setup] AppName=Workrave AppVersion=@VERSION@ AppVerName=Workrave @VERSION@ AppPublisher=Rob Caelers & Raymond Penners AppPublisherURL=http://www.workrave.org AppSupportURL=http://www.workrave.org AppUpdatesURL=http://www.workrave.org DefaultDirName={pf}\Workrave DefaultGroupName=Workrave LicenseFile=..\..\..\..\COPYING ;AppMutex=WorkraveMutex WizardImageFile=WizModernImage.bmp WizardSmallImageFile=WizModernSmall.bmp PrivilegesRequired=none CloseApplications=no ; uncomment the following line if you want your installation to run on NT 3.51 too. ; MinVersion=4,3.51 [Types] ;;Name: "compact"; Description: "Compact installation (excludes DBus runtime)" Name: "full"; Description: "Full installation" [Components] Name: "main"; Description: "Main Files"; Types: full; Flags: fixed ;; Types: full compact ;;Name: "dbus"; Description: "D-BUS Runtime Environment"; Types: full [Tasks] Name: "desktopicon"; Description: "Create a &desktop icon"; GroupDescription: "Additional tasks:"; MinVersion: 4,4 Name: "startupmenu"; Description: "Start Workrave when Windows starts"; GroupDescription: "Additional tasks:"; MinVersion: 4,4 [Dirs] ;;Name: "{app}\etc\dbus-1\session.d" [Files] Source: "..\..\..\..\common\win32\harpoon\src\Release\harpoon.dll"; DestDir: "{app}\lib"; Flags: ignoreversion recursesubdirs restartreplace uninsrestartdelete; Source: "..\..\..\..\common\win32\harpoon\src\Release\harpoon64.dll"; DestDir: "{app}\lib"; Check: IsWin64; Flags: ignoreversion recursesubdirs restartreplace uninsrestartdelete; Source: "..\..\..\..\common\win32\harpoonHelper\src\Release\harpoonHelper.exe"; DestDir: "{app}\lib"; DestName: "WorkraveHelper.exe"; Check: IsWin64; Flags: ignoreversion recursesubdirs restartreplace uninsrestartdelete; Source: "..\..\..\applets\win32\src\Release\workrave-applet.dll"; DestDir: "{app}\lib"; Check: ((not IsWin64) and IsAdmin); Flags: ignoreversion restartreplace uninsrestartdelete regserver 32bit; Source: "..\..\..\applets\win32\src\Release\workrave-applet64.dll"; DestDir: "{app}\lib"; Check: (IsAdmin and IsWin64); Flags: ignoreversion restartreplace uninsrestartdelete regserver 64bit; ;;Source: ".\runtime-dbus\bin\*.*"; DestDir: "{app}\lib"; Flags: ignoreversion recursesubdirs; Components: dbus; ;;Source: ".\runtime-dbus\etc\*.*"; DestDir: "{app}\etc"; Flags: ignoreversion recursesubdirs; Components: dbus; ;;Source: ".\runtime-dbus\lib\libdbus-1.dll"; DestDir: "{app}\lib"; Flags: ignoreversion recursesubdirs; Source: ".\runtime-base\*.*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs; Source: ".\runtime-gtk\*.*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs; ; Components: gtk; Source: ".\runtime-wimp\*.*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs; ; Components: gtk; Source: "..\..\..\common\share\images\*.png"; DestDir: "{app}\share\images\"; Flags: ignoreversion Source: "..\..\..\common\share\images\16x16\*.png"; DestDir: "{app}\share\icons\16x16"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\24x24\*.png"; DestDir: "{app}\share\icons\24x24"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\32x32\*.png"; DestDir: "{app}\share\icons\32x32"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\48x48\*.png"; DestDir: "{app}\share\icons\48x48"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\64x64\*.png"; DestDir: "{app}\share\icons\64x64"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\96x96\*.png"; DestDir: "{app}\share\icons\96x96"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\128x128\*.png"; DestDir: "{app}\share\icons\128x128"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\images\scalable\*.svg"; DestDir: "{app}\share\icons\scalable"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\default\*.wav"; DestDir: "{app}\share\sounds\default\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\default\soundtheme"; DestDir: "{app}\share\sounds\default\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\subtle\*.wav"; DestDir: "{app}\share\sounds\subtle\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\subtle\soundtheme"; DestDir: "{app}\share\sounds\subtle\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\bells\*.wav"; DestDir: "{app}\share\sounds\bells\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\common\share\sounds\bells\soundtheme"; DestDir: "{app}\share\sounds\bells\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\plugin\exercises\common\share\*.png"; DestDir: "{app}\share\exercises\"; Flags: ignoreversion recursesubdirs Source: "..\..\..\plugin\exercises\common\share\exercises.xml"; DestDir: "{app}\share\exercises\"; Flags: ignoreversion Source: "..\..\..\..\COPYING.txt"; DestDir: "{app}"; DestName: "COPYING.txt"; Flags: ignoreversion; Source: "..\..\..\..\AUTHORS.txt"; DestDir: "{app}"; DestName: "AUTHORS.txt"; Flags: ignoreversion; Source: "..\..\..\..\NEWS.txt"; DestDir: "{app}"; DestName: "NEWS.txt"; Flags: ignoreversion; Source: "..\..\..\..\README.txt"; DestDir: "{app}"; DestName: "README.txt"; Flags: ignoreversion; Source: "..\..\src\workrave.exe"; DestDir: "{app}\lib"; DestName: "Workrave.exe"; Flags: ignoreversion; Source: "src\.libs\libzapper-0.dll"; DestDir: "{app}"; #include "lang.iss" [Registry] Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Workrave.exe"; ValueType: string; ValueData: "{app}\lib\Workrave.exe"; Flags: uninsdeletekeyifempty Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Workrave.exe"; ValueName: "Path"; ValueType: string; ValueData: "{code:GetAppPath}"; Flags: uninsdeletekeyifempty Root: HKLM; Subkey: "SOFTWARE\Workrave"; ValueName: "CommonGTK"; ValueType: string; ValueData: "{code:GetCommonGtkKey}"; Root: HKCU; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "Workrave"; ValueData: "{app}\lib\Workrave.exe"; Flags: uninsdeletevalue; Tasks: startupmenu [Icons] Name: "{group}\Workrave"; Filename: "{app}\lib\Workrave.exe" Name: "{group}\News"; Filename: "{app}\NEWS.txt" Name: "{group}\Read me"; Filename: "{app}\README.txt" Name: "{group}\License"; Filename: "{app}\COPYING.txt" Name: "{group}\Uninstall"; Filename: "{uninstallexe}" Name: "{autodesktop}\Workrave"; Filename: "{app}\lib\Workrave.exe"; MinVersion: 4,4; Tasks: desktopicon Name: "{app}\Workrave"; Filename: "{app}\lib\Workrave.exe" [Run] Filename: "{app}\lib\Workrave.exe"; Description: "Launch Workrave"; Flags: nowait postinstall skipifsilent shellexec; [InstallDelete] Type: files; Name: "{autostartup}\Workrave.lnk" Type: files; Name: "{app}\share\sounds\*.wav" [Code] function FindWorkrave(): Boolean; external 'FindWorkrave@{tmp}\libzapper-0.dll stdcall delayload'; function ZapWorkrave(): Boolean; external 'ZapWorkrave@{tmp}\libzapper-0.dll stdcall delayload'; function KillProcess(name : String): Boolean; external 'KillProcess@{tmp}\libzapper-0.dll cdecl delayload'; Function FindWorkraveWithRetries() : Boolean; var retVal : Boolean; var count : Integer; begin count := 10; retVal := True; while ((count > 0) and (retVal)) do begin retVal := FindWorkrave(); if retVal then begin Sleep(100) end; count := count - 1; end; Result := retVal; end; Function EnsureWorkraveIsNotRunning() : Boolean; var retVal : Boolean; begin Result := True; try retVal := FindWorkraveWithRetries; if retVal then begin if MsgBox('Workrave is still running. Setup must close Workrave before continuing. Please click OK to continue, or Cancel to exit', mbConfirmation, MB_OKCANCEL) = IDOK then begin retVal := ZapWorkrave(); if retVal then begin retVal := FindWorkraveWithRetries(); if retVal then begin KillProcess('workrave.exe'); retVal := FindWorkrave(); end; if retVal then begin MsgBox('Failed to close Workrave. Please close Workrave manually.', mbError, MB_OK); Result := False; end end end else begin Result := False; end end; KillProcess('dbus-daemon.exe'); KillProcess('harpoonHelper.exe'); KillProcess('WorkraveHelper.exe'); except MsgBox('Failed to close Workrave. Please close Workrave manually.', mbError, MB_OK); end; end; Function InitializeSetup() : Boolean; begin ExtractTemporaryFile('libzapper-0.dll'); Result := EnsureWorkraveIsNotRunning(); end; Function InitializeUninstall() : Boolean; begin FileCopy(ExpandConstant('{app}\libzapper-0.dll'), ExpandConstant('{tmp}\libzapper-0.dll'), False); Result := EnsureWorkraveIsNotRunning(); end; function HasGtkRuntime(): Boolean; var v: String; begin Result := RegQueryStringValue(HKLM, 'Software\GTK\2.0', 'Version', v); end; function GetGtkRuntimePath(): String; var b: Boolean; begin b := RegQueryStringValue(HKLM, 'Software\GTK\2.0', 'Path', Result); if not b then begin Result := ''; end end; function IsGtkRuntimeToBeInstalled(): Boolean; var i: Integer; begin i := Pos(',gtk', WizardSelectedComponents(False)); Result := i <> 0; end; function GetCommonGtkKey(S: String): String; begin Result := 'TRUE'; if (isGtkRuntimeToBeInstalled()) then begin Result := 'FALSE'; end end; function GetAppPath(S: String): String; begin Result := WizardDirValue + '\lib'; if (not IsGtkRuntimeToBeInstalled()) then begin Result := Result + ';' + GetGtkRuntimePath() + '\lib'; end end; [Code] function IsX64: Boolean; begin Result := (ProcessorArchitecture = paX64); end; workrave-1.10.50/frontend/gtkmm/win32/setup/Makefile.am0000644000175100001710000000040714221624107021517 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in setup.iss lang.iss EXTRA_DIST = WizModernImage.bmp WizModernSmall.bmp SUBDIRS = src workrave-1.10.50/frontend/gtkmm/win32/Makefile.in0000644000000000000000000005531214221624202021462 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = setup EXTRA_DIST = workrave.ini Workrave.lnk all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/win32/workrave.ini0000644000175100001710000000502214221624107020662 0ustar00gdm00000000000000 [general] datadir=.\\Data [monitor] sensitivity=3 [timers] micro_pause.limit=180 micro_pause.auto_reset=30 micro_pause.reset_pred= micro_pause.snooze=150 micro_pause.monitor= micro_pause.activity_sensitive=true rest_break.limit=2700 rest_break.auto_reset=600 rest_break.reset_pred= rest_break.snooze=180 rest_break.monitor= rest_break.activity_sensitive=true daily_limit.limit=14400 daily_limit.auto_reset=0 daily_limit.reset_pred=day/4:00 daily_limit.snooze=1200 daily_limit.monitor= daily_limit.activity_sensitive=true [breaks] micro_pause.max_preludes=3 micro_pause.enabled=true rest_break.max_preludes=3 rest_break.enabled=true daily_limit.max_preludes=3 daily_limit.enabled=true [gui] breaks.micro_pause.ignorable_break=true breaks.micro_pause.exercises=0 breaks.micro_pause.auto_natural=false breaks.micro_pause.skippable_break=true breaks.micro_pause.enable_shutdown=true breaks.rest_break.ignorable_break=true breaks.rest_break.exercises=3 breaks.rest_break.auto_natural=false breaks.rest_break.skippable_break=true breaks.rest_break.enable_shutdown=true breaks.daily_limit.ignorable_break=true breaks.daily_limit.exercises=0 breaks.daily_limit.auto_natural=false breaks.daily_limit.skippable_break=true breaks.daily_limit.enable_shutdown=true breaks.block_mode=1 trayicon_enabled=true closewarn_enabled=true [sound] volume=100 enabled=true device=soundcard events.break_prelude_enabled=true events.break_prelude=@appdir@\\share\\sounds\\default\\break-prelude.wav events.break_ignored_enabled=true events.break_ignored=@appdir@\\share\\sounds\\default\\break-ignored.wav events.rest_break_started_enabled=true events.rest_break_started=@appdir@\\share\\sounds\\default\\rest-break-started.wav events.rest_break_ended_enabled=true events.rest_break_ended=@appdir@\\share\\sounds\\default\\rest-break-ended.wav events.micro_break_started_enabled=true events.micro_break_started=@appdir@\\share\\sounds\\default\\micro-break-started.wav events.micro_break_ended_enabled=true events.micro_break_ended=@appdir@\\share\\sounds\\default\\micro-break-ended.wav events.daily_limit_enabled=true events.daily_limit=@appdir@\\share\\sounds\\default\\daily-limit.wav events.exercise_ended_enabled=true events.exercise_ended=@appdir@\\share\\sounds\\default\\exercise-ended.wav events.exercises_ended_enabled=true events.exercises_ended=@appdir@\\share\\sounds\\default\\exercises-ended.wav events.exercise_step_enabled=true events.exercise_step=@appdir@\\share\\sounds\\default\\exercise-step.wav workrave-1.10.50/frontend/gtkmm/win32/Makefile.am0000644000175100001710000000032614221624107020357 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = setup EXTRA_DIST = workrave.ini Workrave.lnk workrave-1.10.50/frontend/gtkmm/win32/Workrave.lnk0000644000175100001710000000356714221624107020643 0ustar00gdm00000000000000LF 7w9;y7wEPO :i+00/C:\V1QcWindows@ ヌOwHQU.%Windowsf2EQB explorer.exeJ QBQYS.explorer.exeF-E,9C:\Windows\explorer.exe..\..\..\Windows\explorer.exe"lib\Workrave.exe u1SPS0CGsf"Yd#lib (C:\mystuff\programs\Workrave)1SPS0%G`-  Workrave.exe@:9y  ) Application@upA1SPSjc(=Om.C:\mystuff\programs\Workrave\lib\Workrave.exe91SPSmDpHH@.=xhH(A // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERPREFERENCESPANEL_HH #define TIMERPREFERENCESPANEL_HH #include "preinclude.h" #ifdef HAVE_CONFIG # include "config.h" #endif #include #include #include #include #include #include "ICore.hh" #define HAVE_MICRO_BREAK_ACTIVITY 1 class TimeEntry; class DataConnector; namespace Gtk { class CheckButton; class SpinButton; } // namespace Gtk using namespace workrave; class TimerPreferencesPanel : public Gtk::VBox { public: TimerPreferencesPanel(BreakId timer, Glib::RefPtr hsize_group, Glib::RefPtr vsize_group); ~TimerPreferencesPanel(); private: #ifdef HAVE_MICRO_BREAK_ACTIVITY bool on_monitor_changed(const std::string &key, bool write); #endif bool on_activity_sensitive_toggled(const std::string &key, bool write); bool on_preludes_changed(const std::string &key, bool write); #ifdef HAVE_EXERCISES void on_exercises_changed(); #endif Gtk::Widget *create_prelude_panel(); Gtk::Widget *create_options_panel(); Gtk::Widget *create_timers_panel(Glib::RefPtr hsize_group, Glib::RefPtr vsize_group); void set_prelude_sensitivity(); void on_enabled_toggled(); void enable_buttons(); BreakId break_id; DataConnector *connector; Gtk::CheckButton *ignorable_cb; Gtk::CheckButton *skippable_cb; Gtk::CheckButton *activity_sensitive_cb; #ifdef HAVE_MICRO_BREAK_ACTIVITY Gtk::CheckButton *monitor_cb; #endif Gtk::CheckButton *prelude_cb; Gtk::CheckButton *has_max_prelude_cb; TimeEntry *limit_tim, *auto_reset_tim, *snooze_tim; Gtk::SpinButton *max_prelude_spin; #ifdef HAVE_GTK3 Glib::RefPtr max_prelude_adjustment; #else Gtk::Adjustment max_prelude_adjustment; #endif Gtk::CheckButton *allow_shutdown_cb; Gtk::CheckButton *enabled_cb; Gtk::CheckButton *auto_natural_cb; #ifdef HAVE_EXERCISES Gtk::SpinButton *exercises_spin; # ifdef HAVE_GTK3 Glib::RefPtr exercises_adjustment; # else Gtk::Adjustment exercises_adjustment; # endif #endif }; #endif // TIMERPREFERENCESPANEL_HH workrave-1.10.50/frontend/gtkmm/src/org.workrave.gui.gschema.xml.in.in0000644000175100001710000003166314221624107024533 0ustar00gdm00000000000000 true "" true true "" 10 true false true 0 30 0 0 30 0 0 30 0 1 false 3 true true true false 0 true true true false 0 true true true 10 true 0 false false 200 200 0 30 2 0 30 0 0 30 1 1 true false 100 "" true "" true "" true "" true "" true "" true "" true "" true "" true "" true workrave-1.10.50/frontend/gtkmm/src/win32/0000755000000000000000000000000014221624437020210 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/src/win32/W32TrayMenu.cc0000644000175100001710000000664414221624107021472 0ustar00gdm00000000000000// W32TrayMenu.cc --- Menus using W32Tray+ // // Copyright (C) 2001 - 2008, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "nls.h" #include "debug.hh" #include "W32TrayMenu.hh" #include #include #include #include #include #include #include #include "gdk/gdkwindow.h" #include #include "Util.hh" using namespace std; //! Constructor. W32TrayMenu::W32TrayMenu() : MainGtkMenu(true) { } //! Destructor. W32TrayMenu::~W32TrayMenu() {} void W32TrayMenu::post_init() { win32_popup_hack_connect(popup_menu); } void W32TrayMenu::popup(const guint button, const guint activate_time) { (void)button; if (popup_menu != NULL) { popup_menu->popup(1, activate_time); } } // /* Taken from Gaim. needs to be gtkmm-ified. */ // /* This is a workaround for a bug in windows GTK+. Clicking outside of the // menu does not get rid of it, so instead we get rid of it as soon as the // pointer leaves the menu. */ void W32TrayMenu::win32_popup_hack_connect(Gtk::Widget *menu) { TRACE_ENTER("W32TrayMenu::win32_popup_hack_connect"); GtkWidget *widget = (GtkWidget *)menu->gobj(); g_signal_connect(widget, "leave-notify-event", G_CALLBACK(win32_popup_hack_leave_enter), NULL); g_signal_connect(widget, "enter-notify-event", G_CALLBACK(win32_popup_hack_leave_enter), NULL); TRACE_EXIT(); } gboolean W32TrayMenu::win32_popup_hack_hide(gpointer data) { TRACE_ENTER("W32TrayMenu::win32_popup_hack_hide"); if (data != NULL) { gtk_menu_popdown(GTK_MENU(data)); } TRACE_EXIT(); return FALSE; } gboolean W32TrayMenu::win32_popup_hack_leave_enter(GtkWidget *menu, GdkEventCrossing *event, void *data) { TRACE_ENTER("W32TrayMenu::win32_popup_hack_leave_enter"); TRACE_MSG(event->type << " " << event->detail); (void)data; static guint hide_docklet_timer = 0; if (event->type == GDK_LEAVE_NOTIFY && (event->detail == GDK_NOTIFY_ANCESTOR || event->detail == GDK_NOTIFY_UNKNOWN)) { /* Add some slop so that the menu doesn't annoyingly disappear when mousing around */ TRACE_MSG("leave " << hide_docklet_timer); if (hide_docklet_timer == 0) { hide_docklet_timer = g_timeout_add(500, win32_popup_hack_hide, menu); } } else if (event->type == GDK_ENTER_NOTIFY && event->detail == GDK_NOTIFY_VIRTUAL) { TRACE_MSG("enter " << hide_docklet_timer); if (hide_docklet_timer != 0) { /* Cancel the hiding if we reenter */ g_source_remove(hide_docklet_timer); hide_docklet_timer = 0; } } TRACE_EXIT(); return FALSE; } workrave-1.10.50/frontend/gtkmm/src/win32/dll_hell.h0000644000175100001710000000172714221624107021050 0ustar00gdm00000000000000/* * dll_hell.h -- DLL hell checking * * Copyright (C) 2003, 2007 Raymond Penners * Adapted from Gaim, originally written by Herman Bloggs * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef DLL_HELL_H #define DLL_HELL_H #ifdef __cplusplus extern "C" { #endif void dll_hell_check(void); #ifdef __cplusplus } #endif #endif /* DLL_HELL_H */ workrave-1.10.50/frontend/gtkmm/src/win32/Makefile.in0000644000000000000000000012220114221624202022241 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/src/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_gtkmm_win32_la_LIBADD = am__libworkrave_frontend_gtkmm_win32_la_SOURCES_DIST = dll_hell.c \ DesktopWindow.cc W32AppletWindow.cc W32Compat.cc \ W32AppletMenu.cc W32TrayMenu.cc W32StatusIcon.cc \ W32ForceFocus.cc @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_frontend_gtkmm_win32_la_OBJECTS = libworkrave_frontend_gtkmm_win32_la-dll_hell.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32Compat.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo libworkrave_frontend_gtkmm_win32_la_OBJECTS = \ $(am_libworkrave_frontend_gtkmm_win32_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_gtkmm_win32_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_frontend_gtkmm_win32_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_frontend_gtkmm_win32_la_SOURCES) DIST_SOURCES = \ $(am__libworkrave_frontend_gtkmm_win32_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@noinst_LTLIBRARIES = libworkrave-frontend-gtkmm-win32.la @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@libworkrave_frontend_gtkmm_win32_la_SOURCES = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ dll_hell.c \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ DesktopWindow.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32AppletWindow.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32Compat.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32AppletMenu.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32TrayMenu.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32StatusIcon.cc \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ W32ForceFocus.cc @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@libworkrave_frontend_gtkmm_win32_la_CFLAGS = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -W -I$(top_srcdir)/frontend/common/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/backend/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/frontend/applets/win32/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I $(top_srcdir)/common/include/win32 \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I $(top_srcdir)/common/include @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@libworkrave_frontend_gtkmm_win32_la_CXXFLAGS = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ $(libworkrave_frontend_gtkmm_win32_la_CFLAGS) all: all-am .SUFFIXES: .SUFFIXES: .c .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/src/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/src/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-gtkmm-win32.la: $(libworkrave_frontend_gtkmm_win32_la_OBJECTS) $(libworkrave_frontend_gtkmm_win32_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_gtkmm_win32_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_gtkmm_win32_la_LINK) $(am_libworkrave_frontend_gtkmm_win32_la_rpath) $(libworkrave_frontend_gtkmm_win32_la_OBJECTS) $(libworkrave_frontend_gtkmm_win32_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_frontend_gtkmm_win32_la-dll_hell.lo: dll_hell.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) $(libworkrave_frontend_gtkmm_win32_la_CFLAGS) $(CFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-dll_hell.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-dll_hell.lo `test -f 'dll_hell.c' || echo '$(srcdir)/'`dll_hell.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dll_hell.c' object='libworkrave_frontend_gtkmm_win32_la-dll_hell.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) $(libworkrave_frontend_gtkmm_win32_la_CFLAGS) $(CFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-dll_hell.lo `test -f 'dll_hell.c' || echo '$(srcdir)/'`dll_hell.c .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo: DesktopWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo `test -f 'DesktopWindow.cc' || echo '$(srcdir)/'`DesktopWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DesktopWindow.cc' object='libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-DesktopWindow.lo `test -f 'DesktopWindow.cc' || echo '$(srcdir)/'`DesktopWindow.cc libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo: W32AppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo `test -f 'W32AppletWindow.cc' || echo '$(srcdir)/'`W32AppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32AppletWindow.cc' object='libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.lo `test -f 'W32AppletWindow.cc' || echo '$(srcdir)/'`W32AppletWindow.cc libworkrave_frontend_gtkmm_win32_la-W32Compat.lo: W32Compat.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32Compat.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32Compat.lo `test -f 'W32Compat.cc' || echo '$(srcdir)/'`W32Compat.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32Compat.cc' object='libworkrave_frontend_gtkmm_win32_la-W32Compat.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32Compat.lo `test -f 'W32Compat.cc' || echo '$(srcdir)/'`W32Compat.cc libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo: W32AppletMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo `test -f 'W32AppletMenu.cc' || echo '$(srcdir)/'`W32AppletMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32AppletMenu.cc' object='libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.lo `test -f 'W32AppletMenu.cc' || echo '$(srcdir)/'`W32AppletMenu.cc libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo: W32TrayMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo `test -f 'W32TrayMenu.cc' || echo '$(srcdir)/'`W32TrayMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32TrayMenu.cc' object='libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.lo `test -f 'W32TrayMenu.cc' || echo '$(srcdir)/'`W32TrayMenu.cc libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo: W32StatusIcon.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo `test -f 'W32StatusIcon.cc' || echo '$(srcdir)/'`W32StatusIcon.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32StatusIcon.cc' object='libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.lo `test -f 'W32StatusIcon.cc' || echo '$(srcdir)/'`W32StatusIcon.cc libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo: W32ForceFocus.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Tpo -c -o libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo `test -f 'W32ForceFocus.cc' || echo '$(srcdir)/'`W32ForceFocus.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32ForceFocus.cc' object='libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.lo `test -f 'W32ForceFocus.cc' || echo '$(srcdir)/'`W32ForceFocus.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Plo -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 -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-DesktopWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32AppletWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32Compat.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32ForceFocus.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32StatusIcon.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-W32TrayMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_win32_la-dll_hell.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/src/win32/W32StatusIcon.cc0000644000175100001710000003466514221624107022026 0ustar00gdm00000000000000// W32StatusIcon.cc --- Window Notification Icon // // Copyright (C) 2010, 2011, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "W32StatusIcon.hh" #include #include "debug.hh" using namespace std; HWND W32StatusIcon::tray_hwnd = NULL; UINT W32StatusIcon::wm_taskbarcreated = 0; const UINT MYWM_TRAY_MESSAGE = WM_USER + 0x100; static HICON pixbuf_to_hicon(GdkPixbuf *pixbuf); //! Constructor. W32StatusIcon::W32StatusIcon() : visible(false) { init(); } //! Destructor. W32StatusIcon::~W32StatusIcon() { cleanup(); } void W32StatusIcon::set(const Glib::RefPtr &pixbuf) { TRACE_ENTER("W32StatusIcon::set"); Glib::RefPtr scaled; gint width = pixbuf->get_width(); gint height = pixbuf->get_height(); HICON old_hicon = nid.hIcon; int size = 16; if (width > size || height > size) { scaled = pixbuf->scale_simple(MIN(size, width), MIN(size, height), Gdk::INTERP_BILINEAR); nid.hIcon = pixbuf_to_hicon(scaled->gobj()); } else { nid.hIcon = pixbuf_to_hicon(pixbuf->gobj()); } nid.uFlags |= NIF_ICON; if (nid.hWnd != NULL && visible) { Shell_NotifyIconW(NIM_MODIFY, &nid); } if (old_hicon != NULL) { DestroyIcon(old_hicon); } TRACE_EXIT(); } void W32StatusIcon::set_tooltip(const Glib::ustring &text) { gunichar2 *wtext = g_utf8_to_utf16(text.c_str(), -1, NULL, NULL, NULL); if (wtext != NULL) { nid.uFlags |= NIF_TIP; wcsncpy(nid.szTip, (wchar_t *)wtext, G_N_ELEMENTS(nid.szTip) - 1); nid.szTip[G_N_ELEMENTS(nid.szTip) - 1] = 0; g_free(wtext); } else { nid.szTip[0] = 0; } if (nid.hWnd != NULL && visible) { Shell_NotifyIconW(NIM_MODIFY, &nid); } } void W32StatusIcon::show_balloon(string id, const Glib::ustring &balloon) { TRACE_ENTER("W32StatusIcon::show_balloon"); gunichar2 *winfo = g_utf8_to_utf16(balloon.c_str(), -1, NULL, NULL, NULL); gunichar2 *wtitle = g_utf8_to_utf16("Workrave", -1, NULL, NULL, NULL); current_id = id; if (winfo != NULL && wtitle != NULL) { nid.uFlags |= NIF_INFO; nid.uTimeout = 20000; nid.dwInfoFlags = NIIF_INFO; wcsncpy(nid.szInfo, (wchar_t *)winfo, G_N_ELEMENTS(nid.szInfo) - 1); nid.szInfo[G_N_ELEMENTS(nid.szInfo) - 1] = 0; wcsncpy(nid.szInfoTitle, (wchar_t *)wtitle, G_N_ELEMENTS(nid.szInfoTitle) - 1); nid.szInfoTitle[G_N_ELEMENTS(nid.szInfoTitle) - 1] = 0; if (nid.hWnd != NULL && visible) { Shell_NotifyIconW(NIM_MODIFY, &nid); } nid.uFlags &= ~NIF_INFO; } if (winfo != NULL) { g_free(winfo); } if (wtitle != NULL) { g_free(wtitle); } TRACE_EXIT(); } void W32StatusIcon::set_visible(bool visible) { if (this->visible != visible) { this->visible = visible; if (nid.hWnd != NULL) { Shell_NotifyIconW(visible ? NIM_ADD : NIM_DELETE, &nid); } } } bool W32StatusIcon::get_visible() const { return visible; } bool W32StatusIcon::is_embedded() const { return true; } sigc::signal W32StatusIcon::signal_activate() { return activate_signal; } sigc::signal W32StatusIcon::signal_popup_menu() { return popup_menu_signal; } sigc::signal W32StatusIcon::signal_balloon_activate() { return balloon_activate_signal; } void W32StatusIcon::init() { HINSTANCE hinstance = GetModuleHandle(NULL); if (tray_hwnd == NULL) { WNDCLASS wclass; memset(&wclass, 0, sizeof(WNDCLASS)); wclass.lpszClassName = "WorkraveTrayObserver"; wclass.lpfnWndProc = window_proc; wclass.hInstance = hinstance; ATOM atom = RegisterClass(&wclass); if (atom != 0) { tray_hwnd = CreateWindow(MAKEINTRESOURCE(atom), NULL, WS_POPUP, 0, 0, 1, 1, NULL, NULL, hinstance, NULL); } if (tray_hwnd == NULL) { UnregisterClass(MAKEINTRESOURCE(atom), hinstance); } else { wm_taskbarcreated = RegisterWindowMessage("TaskbarCreated"); } } memset(&nid, 0, sizeof(NOTIFYICONDATA)); nid.cbSize = NOTIFYICONDATAW_V2_SIZE; nid.uID = 1; nid.uFlags = NIF_MESSAGE; nid.uCallbackMessage = MYWM_TRAY_MESSAGE; nid.hWnd = tray_hwnd; set_tooltip("Workrave"); if (tray_hwnd != NULL) { SetWindowLong(tray_hwnd, GWL_USERDATA, (LONG)this); } } void W32StatusIcon::cleanup() { if (nid.hWnd != NULL && visible) { Shell_NotifyIconW(NIM_DELETE, &nid); if (nid.hIcon) { DestroyIcon(nid.hIcon); } } } void W32StatusIcon::add_tray_icon() { memset(&nid, 0, sizeof(NOTIFYICONDATA)); nid.cbSize = sizeof(NOTIFYICONDATA); nid.hWnd = tray_hwnd; nid.uID = 1; nid.uFlags = NIF_MESSAGE; nid.uCallbackMessage = MYWM_TRAY_MESSAGE; } LRESULT CALLBACK W32StatusIcon::window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { TRACE_ENTER_MSG("W32StatusIcon::window_proc", uMsg << " " << wParam); W32StatusIcon *status_icon = (W32StatusIcon *)GetWindowLong(hwnd, GWL_USERDATA); if (status_icon != NULL) { if (uMsg == status_icon->wm_taskbarcreated) { if (status_icon->visible && status_icon->nid.hWnd != NULL) { Shell_NotifyIconW(NIM_ADD, &status_icon->nid); } } else if (uMsg == MYWM_TRAY_MESSAGE) { switch (lParam) { case WM_RBUTTONDOWN: status_icon->popup_menu_signal.emit(3, 0); break; case WM_LBUTTONDOWN: status_icon->activate_signal.emit(); break; case NIN_BALLOONUSERCLICK: status_icon->balloon_activate_signal.emit(status_icon->current_id); } } } TRACE_EXIT(); return DefWindowProc(hwnd, uMsg, wParam, lParam); } /* This is ganked from GTK+. * GDK - The GIMP Drawing Kit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * Copyright (C) 1998-2002 Tor Lillqvist * * 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 of the License, or (at your option) any later version. */ static gboolean _gdk_win32_pixbuf_to_hicon_supports_alpha(void) { static gboolean is_win_xp = FALSE, is_win_xp_checked = FALSE; if (!is_win_xp_checked) { is_win_xp_checked = TRUE; if (!G_WIN32_IS_NT_BASED()) is_win_xp = FALSE; else { OSVERSIONINFO version; memset(&version, 0, sizeof(version)); version.dwOSVersionInfoSize = sizeof(version); is_win_xp = GetVersionEx(&version) && version.dwPlatformId == VER_PLATFORM_WIN32_NT && (version.dwMajorVersion > 5 || (version.dwMajorVersion == 5 && version.dwMinorVersion >= 1)); } } return is_win_xp; } static HBITMAP create_alpha_bitmap(gint size, guchar **outdata) { BITMAPV5HEADER bi; HDC hdc; HBITMAP hBitmap; ZeroMemory(&bi, sizeof(BITMAPV5HEADER)); bi.bV5Size = sizeof(BITMAPV5HEADER); bi.bV5Height = bi.bV5Width = size; bi.bV5Planes = 1; bi.bV5BitCount = 32; bi.bV5Compression = BI_BITFIELDS; /* The following mask specification specifies a supported 32 BPP * alpha format for Windows XP (BGRA format). */ bi.bV5RedMask = 0x00FF0000; bi.bV5GreenMask = 0x0000FF00; bi.bV5BlueMask = 0x000000FF; bi.bV5AlphaMask = 0xFF000000; /* Create the DIB section with an alpha channel. */ hdc = GetDC(NULL); if (!hdc) { return NULL; } hBitmap = CreateDIBSection(hdc, (BITMAPINFO *)&bi, DIB_RGB_COLORS, (PVOID *)outdata, NULL, (DWORD)0); ReleaseDC(NULL, hdc); return hBitmap; } static HBITMAP create_color_bitmap(gint size, guchar **outdata, gint bits) { struct { BITMAPV4HEADER bmiHeader; RGBQUAD bmiColors[2]; } bmi; HDC hdc; HBITMAP hBitmap; ZeroMemory(&bmi, sizeof(bmi)); bmi.bmiHeader.bV4Size = sizeof(BITMAPV4HEADER); bmi.bmiHeader.bV4Height = bmi.bmiHeader.bV4Width = size; bmi.bmiHeader.bV4Planes = 1; bmi.bmiHeader.bV4BitCount = bits; bmi.bmiHeader.bV4V4Compression = BI_RGB; /* when bits is 1, these will be used. * bmiColors[0] already zeroed from ZeroMemory() */ bmi.bmiColors[1].rgbBlue = 0xFF; bmi.bmiColors[1].rgbGreen = 0xFF; bmi.bmiColors[1].rgbRed = 0xFF; hdc = GetDC(NULL); if (!hdc) { return NULL; } hBitmap = CreateDIBSection(hdc, (BITMAPINFO *)&bmi, DIB_RGB_COLORS, (PVOID *)outdata, NULL, (DWORD)0); ReleaseDC(NULL, hdc); return hBitmap; } static gboolean pixbuf_to_hbitmaps_alpha_winxp(GdkPixbuf *pixbuf, HBITMAP *color, HBITMAP *mask) { /* Based on code from * http://www.dotnet247.com/247reference/msgs/13/66301.aspx */ HBITMAP hColorBitmap, hMaskBitmap; guchar *indata, *inrow; guchar *colordata, *colorrow, *maskdata, *maskbyte; gint width, height, size, i, i_offset, j, j_offset, rowstride; guint maskstride, mask_bit; width = gdk_pixbuf_get_width(pixbuf); /* width of icon */ height = gdk_pixbuf_get_height(pixbuf); /* height of icon */ /* The bitmaps are created square */ size = MAX(width, height); hColorBitmap = create_alpha_bitmap(size, &colordata); if (!hColorBitmap) return FALSE; hMaskBitmap = create_color_bitmap(size, &maskdata, 1); if (!hMaskBitmap) { DeleteObject(hColorBitmap); return FALSE; } /* MSDN says mask rows are aligned to "LONG" boundaries */ maskstride = (((size + 31) & ~31) >> 3); indata = gdk_pixbuf_get_pixels(pixbuf); rowstride = gdk_pixbuf_get_rowstride(pixbuf); if (width > height) { i_offset = 0; j_offset = (width - height) / 2; } else { i_offset = (height - width) / 2; j_offset = 0; } for (j = 0; j < height; j++) { colorrow = colordata + 4 * (j + j_offset) * size + 4 * i_offset; maskbyte = maskdata + (j + j_offset) * maskstride + i_offset / 8; mask_bit = (0x80 >> (i_offset % 8)); inrow = indata + (height - j - 1) * rowstride; for (i = 0; i < width; i++) { colorrow[4 * i + 0] = inrow[4 * i + 2]; colorrow[4 * i + 1] = inrow[4 * i + 1]; colorrow[4 * i + 2] = inrow[4 * i + 0]; colorrow[4 * i + 3] = inrow[4 * i + 3]; if (inrow[4 * i + 3] == 0) maskbyte[0] |= mask_bit; /* turn ON bit */ else maskbyte[0] &= ~mask_bit; /* turn OFF bit */ mask_bit >>= 1; if (mask_bit == 0) { mask_bit = 0x80; maskbyte++; } } } *color = hColorBitmap; *mask = hMaskBitmap; return TRUE; } static gboolean pixbuf_to_hbitmaps_normal(GdkPixbuf *pixbuf, HBITMAP *color, HBITMAP *mask) { /* Based on code from * http://www.dotnet247.com/247reference/msgs/13/66301.aspx */ HBITMAP hColorBitmap, hMaskBitmap; guchar *indata, *inrow; guchar *colordata, *colorrow, *maskdata, *maskbyte; gint width, height, size, i, i_offset, j, j_offset, rowstride, nc, bmstride; gboolean has_alpha; guint maskstride, mask_bit; width = gdk_pixbuf_get_width(pixbuf); /* width of icon */ height = gdk_pixbuf_get_height(pixbuf); /* height of icon */ /* The bitmaps are created square */ size = MAX(width, height); hColorBitmap = create_color_bitmap(size, &colordata, 24); if (!hColorBitmap) return FALSE; hMaskBitmap = create_color_bitmap(size, &maskdata, 1); if (!hMaskBitmap) { DeleteObject(hColorBitmap); return FALSE; } /* rows are always aligned on 4-byte boundaries */ bmstride = size * 3; if (bmstride % 4 != 0) bmstride += 4 - (bmstride % 4); /* MSDN says mask rows are aligned to "LONG" boundaries */ maskstride = (((size + 31) & ~31) >> 3); indata = gdk_pixbuf_get_pixels(pixbuf); rowstride = gdk_pixbuf_get_rowstride(pixbuf); nc = gdk_pixbuf_get_n_channels(pixbuf); has_alpha = gdk_pixbuf_get_has_alpha(pixbuf); if (width > height) { i_offset = 0; j_offset = (width - height) / 2; } else { i_offset = (height - width) / 2; j_offset = 0; } for (j = 0; j < height; j++) { colorrow = colordata + (j + j_offset) * bmstride + 3 * i_offset; maskbyte = maskdata + (j + j_offset) * maskstride + i_offset / 8; mask_bit = (0x80 >> (i_offset % 8)); inrow = indata + (height - j - 1) * rowstride; for (i = 0; i < width; i++) { if (has_alpha && inrow[nc * i + 3] < 128) { colorrow[3 * i + 0] = colorrow[3 * i + 1] = colorrow[3 * i + 2] = 0; maskbyte[0] |= mask_bit; /* turn ON bit */ } else { colorrow[3 * i + 0] = inrow[nc * i + 2]; colorrow[3 * i + 1] = inrow[nc * i + 1]; colorrow[3 * i + 2] = inrow[nc * i + 0]; maskbyte[0] &= ~mask_bit; /* turn OFF bit */ } mask_bit >>= 1; if (mask_bit == 0) { mask_bit = 0x80; maskbyte++; } } } *color = hColorBitmap; *mask = hMaskBitmap; return TRUE; } static HICON pixbuf_to_hicon(GdkPixbuf *pixbuf) { gint x = 0, y = 0; gboolean is_icon = TRUE; ICONINFO ii; HICON icon; gboolean success; if (pixbuf == NULL) return NULL; if (_gdk_win32_pixbuf_to_hicon_supports_alpha() && gdk_pixbuf_get_has_alpha(pixbuf)) success = pixbuf_to_hbitmaps_alpha_winxp(pixbuf, &ii.hbmColor, &ii.hbmMask); else success = pixbuf_to_hbitmaps_normal(pixbuf, &ii.hbmColor, &ii.hbmMask); if (!success) return NULL; ii.fIcon = is_icon; ii.xHotspot = x; ii.yHotspot = y; icon = CreateIconIndirect(&ii); DeleteObject(ii.hbmColor); DeleteObject(ii.hbmMask); return icon; } workrave-1.10.50/frontend/gtkmm/src/win32/DesktopWindow.cc0000644000175100001710000000601114221624107022217 0ustar00gdm00000000000000// DesktopWindow.cc --- Desktop window // // Copyright (C) 2004, 2007, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DesktopWindow.hh" #include "W32Compat.hh" #include "debug.hh" const char *const DesktopWindow::WINDOW_CLASS = "WorkraveDesktopWindow"; bool DesktopWindow::initialized = false; DesktopWindow::DesktopWindow(const HeadInfo &head) { TRACE_ENTER("DesktopWindow::DesktopWindow"); init(); HINSTANCE hinstance = (HINSTANCE)GetModuleHandle(NULL); int x = head.get_x(), y = head.get_y(); int w = head.get_width(), h = head.get_height(); TRACE_MSG("Head: " << x << ", " << y << ", " << w << ", " << h << " " << head.monitor); POINT pt = {x, y}; HMONITOR monitor = MonitorFromPoint(pt, MONITOR_DEFAULTTONULL); if (monitor) { TRACE_MSG("Monitor found"); MONITORINFO info = { 0, }; info.cbSize = sizeof(info); if (GetMonitorInfo(monitor, &info)) { x = info.rcMonitor.left; y = info.rcMonitor.top; w = info.rcMonitor.right - x; h = info.rcMonitor.bottom - y; TRACE_MSG("Monitor: " << x << ", " << y << ", " << w << ", " << h); } } hwnd = CreateWindowEx( WS_EX_TOOLWINDOW, WINDOW_CLASS, WINDOW_CLASS, WS_POPUP, x, y, w, h, (HWND)NULL, (HMENU)NULL, hinstance, (LPSTR)NULL); SetWindowLong(hwnd, GWL_USERDATA, (LONG)this); TRACE_EXIT(); } DesktopWindow::~DesktopWindow() { DestroyWindow(hwnd); } LRESULT CALLBACK DesktopWindow::window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { DesktopWindow *self = (DesktopWindow *)GetWindowLong(hwnd, GWL_USERDATA); switch (uMsg) { case WM_WINDOWPOSCHANGED: InvalidateRect(self->hwnd, NULL, TRUE); return 0; case WM_ERASEBKGND: PaintDesktop((HDC)wParam); return 1; } return DefWindowProc(hwnd, uMsg, wParam, lParam); } void DesktopWindow::init() { if (initialized) return; HINSTANCE win32_hinstance = (HINSTANCE)GetModuleHandle(NULL); WNDCLASSEX wclass = {sizeof(WNDCLASSEX), 0, window_proc, 0, 0, win32_hinstance, NULL, NULL, NULL, NULL, WINDOW_CLASS, NULL}; RegisterClassEx(&wclass); initialized = true; } void DesktopWindow::set_visible(bool visible) { ShowWindow(hwnd, visible ? SW_SHOW : SW_HIDE); if (visible) { W32Compat::SetWindowOnTop(hwnd, TRUE); } } workrave-1.10.50/frontend/gtkmm/src/win32/dll_hell.c0000644000175100001710000001123014221624107021031 0ustar00gdm00000000000000/* * dll_hell.c --- DLL hell checking * * Copyright (C) 2003, 2007, 2008 Raymond Penners * Adapted from Gaim, originally written by Herman Bloggs * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #define DLL_CONFLICT_EXTENSION ".conflict" static char msg1[] = "The following duplicate of "; static char msg2[] = " has been found in your DLL search path and will likely\x0d\x0a" "cause Workrave to malfunction:\x0d\x0a\x0d\x0a"; static char msg3[] = "\x0d\x0a\x0d\x0aWould you like to rename this DLL to "; static char msg4[] = DLL_CONFLICT_EXTENSION " in order to avoid any possible conflicts?\x0d\x0a" "\x0d\x0a" "Important: Doing so will likely cause the application that installed this DLL to stop functioning.\x0d\x0a" "You may wish to file a bug report for that application so that future versions will not\x0d\x0a" "cause this so-called \"DLL Hell\".\x0d\x0a" "\x0d\x0a" "Tip: If you do not understand what this all means, then please reinstall Workrave, but this time\x0d\x0a" "select the full installation (including the GTK+ runtime)."; #ifdef PLATFORM_OS_WINDOWS_NATIVE # define strcasecmp _stricmp #endif static void check_dll(char *dll, char *orig) { char tmp[MAX_PATH]; char *last; if (SearchPath(NULL, dll, NULL, MAX_PATH, tmp, &last)) { char *patha = (char *)malloc(strlen(orig) + strlen(dll) + 4); strcpy(patha, orig); strcat(patha, "\\"); strcat(patha, dll); /* Make sure that 2 paths are not the same */ if (strcasecmp(patha, tmp) != 0) { char *warning = (char *)malloc(strlen(msg1) + strlen(msg2) + strlen(msg3) + strlen(msg4) + strlen(tmp) + (strlen(dll) * 2) + 4); sprintf(warning, "%s%s%s%s%s%s%s", msg1, dll, msg2, tmp, msg3, dll, msg4); if (MessageBox(NULL, warning, "Workrave Warning", MB_YESNO | MB_TOPMOST) == IDYES) { char *newname = (char *)malloc(strlen(tmp) + strlen(DLL_CONFLICT_EXTENSION) + 1); /* Rename offending dll */ sprintf(newname, "%s%s", tmp, DLL_CONFLICT_EXTENSION); if (rename(tmp, newname) != 0) { MessageBox(NULL, "Error renaming file.", NULL, MB_OK | MB_TOPMOST); } else check_dll(dll, orig); free(newname); } free(warning); } free(patha); } } static void dll_hell_check_path(char *gtkpath) { HANDLE myHandle; WIN32_FIND_DATA fd; char *srchstr = (char *)malloc(strlen(gtkpath) + 8); sprintf(srchstr, "%s%s", gtkpath, "\\*.dll"); myHandle = FindFirstFile(srchstr, &fd); if (myHandle != INVALID_HANDLE_VALUE) { check_dll(fd.cFileName, gtkpath); while (FindNextFile(myHandle, &fd)) { check_dll(fd.cFileName, gtkpath); } } free(srchstr); } static BOOL read_reg_string(HKEY key, char *sub_key, char *val_name, LPBYTE data, LPDWORD data_len) { HKEY hkey; BOOL ret = FALSE; int retv; if (ERROR_SUCCESS == RegOpenKeyEx(key, sub_key, 0, KEY_QUERY_VALUE, &hkey)) { if (ERROR_SUCCESS == (retv = RegQueryValueEx(hkey, val_name, 0, NULL, data, data_len))) ret = TRUE; else { printf("Error reading registry string value: %d\n", retv); } RegCloseKey(key); } return ret; } void dll_hell_check() { char path[MAX_PATH]; DWORD plen = MAX_PATH; int common_gtk = FALSE; BOOL gotreg; if (read_reg_string(HKEY_LOCAL_MACHINE, "SOFTWARE\\Workrave", "CommonGTK", (LPBYTE)&path, &plen)) { common_gtk = strcasecmp(path, "true") == 0; } if (common_gtk) { if (!(gotreg = read_reg_string(HKEY_LOCAL_MACHINE, "SOFTWARE\\GTK\\2.0", "Path", (LPBYTE)&path, &plen))) gotreg = read_reg_string(HKEY_CURRENT_USER, "SOFTWARE\\GTK\\2.0", "Path", (LPBYTE)&path, &plen); if (gotreg) { strcat(path, "\\lib"); dll_hell_check_path(path); } } } workrave-1.10.50/frontend/gtkmm/src/win32/W32ForceFocus.hh0000644000175100001710000000464514221624107021775 0ustar00gdm00000000000000// W32ForceFocus.hh --- Collection of hacks to force win32 window focus // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32FORCEFOCUS_HH #define W32FORCEFOCUS_HH #include class W32ForceFocus { public: // Simulate an ALT keypress in an attempt to make hwnd foreground static bool AltKeypress(HWND hwnd); // Attach to the thread of the current foreground window in an attempt to make hwnd foreground static bool AttachInput(HWND hwnd); // Minimize and restore a dummy window in an attempt to make hwnd foreground static bool MinimizeRestore(HWND hwnd); // Create a worker thread that runs any of the above hacks in an attempt to make hwnd foreground static bool ForceWindowFocus(HWND hwnd, DWORD milliseconds_to_block = 200); // Check the user preference advanced/force_focus static bool GetForceFocusValue(); private: // Get the flags of functions that should be used to make hwnd foreground static DWORD GetFunctions(); // Retry the GetForegroundWindow() function if it fails static HWND GetForegroundWindowTryHarder(DWORD max_retries = 200); // This is the ThreadProc called by CreateThread to create the worker thread static DWORD WINAPI thread_Worker(LPVOID lpParameter); // A handle to the worker thread static HANDLE thread_handle; // Info needed by thread_Worker static struct thread_info { // the hwnd we want to force focus to HWND hwnd; // in // the functions we want to call to force the focus DWORD flags; // in, out (ThreadProc may change the flags for recursive calls) // the function that worked to force the focus, if any DWORD retval; // out } ti; // Cached value of user preference advanced/force_focus static bool force_focus; }; #endif // W32FORCEFOCUS_HH workrave-1.10.50/frontend/gtkmm/src/win32/W32AppletMenu.hh0000644000175100001710000000262414221624107022004 0ustar00gdm00000000000000// W32AppletMenu.hh --- Menu using W32Applet+ // // Copyright (C) 2001 - 2009, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32APPLETMENU_HH #define W32APPLETMENU_HH #include "config.h" #include #include #include #include #include #include #include #include "MenuBase.hh" class MainWindow; class W32AppletWindow; class W32AppletMenu : public MenuBase { public: W32AppletMenu(W32AppletWindow *applet_window); virtual ~W32AppletMenu(); virtual void resync(workrave::OperationMode mode, workrave::UsageMode usage, bool show_log); private: W32AppletWindow *applet_window; }; #endif // W32APPLETMENU_HH workrave-1.10.50/frontend/gtkmm/src/win32/W32AppletWindow.cc0000644000175100001710000002417614221624107022343 0ustar00gdm00000000000000// AppletWindow.cc --- Applet info Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "W32AppletWindow.hh" #include "TimerBoxControl.hh" #if defined(interface) # undef interface #endif #include "Applet.hh" #include "GUI.hh" #include "Menus.hh" W32AppletWindow::W32AppletWindow() { TRACE_ENTER("W32AppletWindow::W32AppletWindow"); memset(&local_heartbeat_data, 0, sizeof(AppletHeartbeatData)); memset(&local_menu_data, 0, sizeof(AppletMenuData)); memset(&heartbeat_data, 0, sizeof(AppletHeartbeatData)); memset(&menu_data, 0, sizeof(AppletMenuData)); thread_id = 0; thread_handle = NULL; timer_box_view = this; applet_window = NULL; heartbeat_data.enabled = true; local_applet_window = NULL; init_menu(NULL); ::InitializeCriticalSection(&heartbeat_data_lock); thread_abort_event = ::CreateEvent(NULL, FALSE, FALSE, NULL); heartbeat_data_event = ::CreateEvent(NULL, FALSE, FALSE, NULL); timer_box_control = new TimerBoxControl("applet", *this); init_thread(); TRACE_EXIT(); } W32AppletWindow::~W32AppletWindow() { TRACE_ENTER("W32AppletWindow::~W32AppletWindow"); /* before this instance is destroyed we signal and wait for its worker thread to terminate. this isn't ideal because the gui will be blocked while we wait for termination if this destructor is called from the main thread. current conditions are acceptable, however. 2/12/2012 */ heartbeat_data.enabled = false; SetEvent(thread_abort_event); if (thread_handle) { WaitForSingleObject(thread_handle, INFINITE); CloseHandle(thread_handle); } if (thread_abort_event) CloseHandle(thread_abort_event); if (heartbeat_data_event) CloseHandle(heartbeat_data_event); DeleteCriticalSection(&heartbeat_data_lock); delete timer_box_control; TRACE_EXIT(); } static HWND RecursiveFindWindow(HWND hwnd, LPCSTR lpClassName) { static char buf[80]; int num = GetClassNameA(hwnd, buf, sizeof(buf) - 1); buf[num] = 0; HWND ret = NULL; if (!stricmp(lpClassName, buf)) { ret = hwnd; } else { HWND child = FindWindowEx(hwnd, 0, NULL, NULL); while (child != NULL) { ret = RecursiveFindWindow(child, lpClassName); if (ret) { break; } child = FindWindowEx(hwnd, child, NULL, NULL); } } return ret; } void W32AppletWindow::set_slot(BreakId id, int slot) { TRACE_ENTER_MSG("W32AppletWindow::set_slot", int(id) << ", " << slot); heartbeat_data.slots[slot] = (short)id; TRACE_EXIT(); } void W32AppletWindow::set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_val, int primary_max, ITimeBar::ColorId secondary_color, int secondary_val, int secondary_max) { TRACE_ENTER_MSG("W32AppletWindow::set_time_bar", int(id) << "=" << text); strncpy(heartbeat_data.bar_text[id], text.c_str(), APPLET_BAR_TEXT_MAX_LENGTH - 1); heartbeat_data.bar_text[id][APPLET_BAR_TEXT_MAX_LENGTH - 1] = '\0'; heartbeat_data.bar_primary_color[id] = primary_color; heartbeat_data.bar_primary_val[id] = primary_val; heartbeat_data.bar_primary_max[id] = primary_max; heartbeat_data.bar_secondary_color[id] = secondary_color; heartbeat_data.bar_secondary_val[id] = secondary_val; heartbeat_data.bar_secondary_max[id] = secondary_max; TRACE_EXIT(); } void W32AppletWindow::update_view() { TRACE_ENTER("W32AppletWindow::update_view"); BOOL entered = ::TryEnterCriticalSection(&heartbeat_data_lock); if (entered) { update_applet_window(); if (applet_window != NULL) { memcpy(&local_heartbeat_data, &heartbeat_data, sizeof(AppletHeartbeatData)); if (!menu_sent) { memcpy(&local_menu_data, &menu_data, sizeof(AppletMenuData)); local_applet_window = applet_window; menu_sent = true; } SetEvent(heartbeat_data_event); } ::LeaveCriticalSection(&heartbeat_data_lock); } TRACE_EXIT(); } void W32AppletWindow::update_menu() { TRACE_ENTER("W32AppletWindow::update_menu"); if (local_applet_window != NULL) { TRACE_MSG("sending"); COPYDATASTRUCT msg; msg.dwData = APPLET_MESSAGE_MENU; msg.cbData = sizeof(AppletMenuData); msg.lpData = &local_menu_data; SendMessage(local_applet_window, WM_COPYDATA, 0, (LPARAM)&msg); } TRACE_EXIT(); } void W32AppletWindow::update_time_bars() { TRACE_ENTER("W32AppletWindow::update_time_bars"); if (local_applet_window != NULL) { COPYDATASTRUCT msg; msg.dwData = APPLET_MESSAGE_HEARTBEAT; msg.cbData = sizeof(AppletHeartbeatData); msg.lpData = &local_heartbeat_data; for (size_t i = 0; i < BREAK_ID_SIZEOF; i++) { TRACE_MSG("sending: slots[]=" << local_heartbeat_data.slots[i]); } SendMessage(local_applet_window, WM_COPYDATA, 0, (LPARAM)&msg); } TRACE_EXIT(); } void W32AppletWindow::update_applet_window() { TRACE_ENTER("W32AppletWindow::get_applet_window"); HWND previous_applet_window = applet_window; if (applet_window == NULL || !IsWindow(applet_window)) { HWND taskbar = FindWindowA("Shell_TrayWnd", NULL); applet_window = RecursiveFindWindow(taskbar, APPLET_WINDOW_CLASS_NAME); menu_sent = false; } if (previous_applet_window == NULL && applet_window != NULL) { visibility_changed_signal.emit(true); } else if (previous_applet_window != NULL && applet_window == NULL) { visibility_changed_signal.emit(false); } TRACE_EXIT(); } void W32AppletWindow::init_thread() { TRACE_ENTER("W32AppletWindow::init_thread"); DWORD thread_exit_code = 0; if (thread_id && thread_handle && GetExitCodeThread(thread_handle, &thread_exit_code) && (thread_exit_code == STILL_ACTIVE)) return; if (!thread_id) { // if there is no id but a handle then this instance's worker thread has exited or is exiting. if (thread_handle) CloseHandle(thread_handle); thread_id = 0; SetLastError(0); thread_handle = (HANDLE)_beginthreadex(NULL, 0, run_event_pipe_static, this, 0, (unsigned int *)&thread_id); if (!thread_handle || !thread_id) { TRACE_MSG("Thread could not be created. GetLastError : " << GetLastError()); } } TRACE_EXIT(); } unsigned __stdcall W32AppletWindow::run_event_pipe_static(void *param) { W32AppletWindow *pThis = (W32AppletWindow *)param; pThis->run_event_pipe(); // invalidate the id to signal the thread is exiting pThis->thread_id = 0; return (DWORD)0; } void W32AppletWindow::run_event_pipe() { const DWORD current_thread_id = GetCurrentThreadId(); TRACE_ENTER_MSG("W32AppletWindow::run_event_pipe [ id: ", current_thread_id << " ]"); while (thread_id == current_thread_id) { /* JS: thread_abort_event must be first in the array of events. the index returned by WaitForMultipleObjectsEx() corresponds to the first signaled event in the array if more than one is signaled */ HANDLE events[2] = {thread_abort_event, heartbeat_data_event}; int const events_count = (sizeof(events) / sizeof(events[0])); DWORD wait_result = WaitForMultipleObjectsEx(events_count, events, FALSE, INFINITE, FALSE); if ((wait_result == WAIT_FAILED) || (wait_result == (WAIT_OBJECT_0 + 0))) break; if (heartbeat_data.enabled && (wait_result == (WAIT_OBJECT_0 + 1))) { EnterCriticalSection(&heartbeat_data_lock); update_time_bars(); update_menu(); LeaveCriticalSection(&heartbeat_data_lock); } } TRACE_EXIT(); } void W32AppletWindow::init_menu(HWND hwnd) { menu_data.num_items = 0; menu_sent = false; /* As noted in frontend/win32/applet/include/applet.hh: We pass the command_window HWND as a LONG for compatibility. */ menu_data.command_window = HandleToLong(hwnd); } void W32AppletWindow::add_menu(const char *text, short cmd, int flags) { AppletMenuItemData *d = &menu_data.items[menu_data.num_items++]; d->command = cmd; strcpy(d->text, text); d->flags = flags; } void W32AppletWindow::set_geometry(Orientation orientation, int size) { (void)orientation; (void)size; } bool W32AppletWindow::on_applet_command(int command) { TRACE_ENTER_MSG("W32AppletWindow::on_applet_command", command); IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->applet_command(command); TRACE_EXIT(); return false; } GdkFilterReturn W32AppletWindow::win32_filter_func(void *xevent, GdkEvent *event) { (void)event; MSG *msg = (MSG *)xevent; GdkFilterReturn ret = GDK_FILTER_CONTINUE; switch (msg->message) { case WM_USER: { sigc::slot my_slot = sigc::bind(sigc::mem_fun(*this, &W32AppletWindow::on_applet_command), (int)msg->wParam); Glib::signal_idle().connect(my_slot); ret = GDK_FILTER_REMOVE; } break; case WM_USER + 1: { timer_box_control->force_cycle(); ret = GDK_FILTER_REMOVE; } break; } return ret; } bool W32AppletWindow::is_visible() const { return applet_window != NULL && heartbeat_data.enabled; } workrave-1.10.50/frontend/gtkmm/src/win32/W32AppletMenu.cc0000644000175100001710000001017214221624107021767 0ustar00gdm00000000000000// W32AppletMenu.cc --- Menus using W32Applet+ // // Copyright (C) 2001 - 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "W32AppletMenu.hh" #include #include "GUI.hh" #include "Menus.hh" #include "Util.hh" #include "MainWindow.hh" #include "W32AppletWindow.hh" #include "MenuEnums.hh" using namespace std; using namespace workrave; //! Constructor. W32AppletMenu::W32AppletMenu(W32AppletWindow *applet_window) : applet_window(applet_window) { } //! Destructor. W32AppletMenu::~W32AppletMenu() {} void W32AppletMenu::resync(OperationMode mode, UsageMode usage, bool show_log) { TRACE_ENTER_MSG("W32AppletMenu::resync", mode << " " << usage); IGUI *gui = GUI::get_instance(); MainWindow *main_window = gui->get_main_window(); if (applet_window != NULL) { TRACE_MSG("ok"); #ifndef PLATFORM_OS_WINDOWS_NATIVE HWND cmd_win = (HWND)GDK_WINDOW_HWND(gtk_widget_get_window(main_window->Gtk::Widget::gobj())); #else HWND cmd_win = (HWND)GDK_WINDOW_HWND(((GtkWidget *)main_window->gobj())->window); #endif W32AppletWindow *w32aw = applet_window; w32aw->init_menu(cmd_win); w32aw->add_menu(_("_Open"), MENU_COMMAND_OPEN, 0); w32aw->add_menu(_("Preferences"), MENU_COMMAND_PREFERENCES, 0); w32aw->add_menu(_("_Rest break"), MENU_COMMAND_REST_BREAK, 0); w32aw->add_menu(_("Exercises"), MENU_COMMAND_EXERCISES, 0); w32aw->add_menu(_("_Normal"), MENU_COMMAND_MODE_NORMAL, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP | (mode == OPERATION_MODE_NORMAL ? W32AppletWindow::MENU_FLAG_SELECTED : 0)); w32aw->add_menu(_("Q_uiet"), MENU_COMMAND_MODE_QUIET, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP | (mode == OPERATION_MODE_QUIET ? W32AppletWindow::MENU_FLAG_SELECTED : 0)); w32aw->add_menu(_("_Suspended"), MENU_COMMAND_MODE_SUSPENDED, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP | (mode == OPERATION_MODE_SUSPENDED ? W32AppletWindow::MENU_FLAG_SELECTED : 0)); w32aw->add_menu(_("_Mode"), 0, 0); #ifdef HAVE_DISTRIBUTION w32aw->add_menu( _("_Connect"), MENU_COMMAND_NETWORK_CONNECT, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP); w32aw->add_menu( _("_Disconnect"), MENU_COMMAND_NETWORK_DISCONNECT, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP); w32aw->add_menu( _("_Reconnect"), MENU_COMMAND_NETWORK_RECONNECT, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP); w32aw->add_menu(_("Show _log"), MENU_COMMAND_NETWORK_LOG, W32AppletWindow::MENU_FLAG_TOGGLE | W32AppletWindow::MENU_FLAG_POPUP | (show_log ? W32AppletWindow::MENU_FLAG_SELECTED : 0)); w32aw->add_menu(_("_Network"), 0, 0); #endif w32aw->add_menu(_("Reading mode"), MENU_COMMAND_MODE_READING, W32AppletWindow::MENU_FLAG_TOGGLE | (usage == USAGE_MODE_READING ? W32AppletWindow::MENU_FLAG_SELECTED : 0)); w32aw->add_menu(_("Statistics"), MENU_COMMAND_STATISTICS, 0); w32aw->add_menu(_("About..."), MENU_COMMAND_ABOUT, 0); } TRACE_EXIT(); } workrave-1.10.50/frontend/gtkmm/src/win32/DesktopWindow.hh0000644000175100001710000000232614221624107022236 0ustar00gdm00000000000000// DesktopWindow.hh --- Desktop window // // Copyright (C) 2004, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DESKTOP_WINDOW_HH #define DESKTOP_WINDOW_HH #include #include "HeadInfo.hh" class DesktopWindow { public: DesktopWindow(const HeadInfo &head); ~DesktopWindow(); void set_visible(bool visible); private: void init(); private: HWND hwnd; static LRESULT CALLBACK window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static bool initialized; static const char *const WINDOW_CLASS; }; #endif // DESKTOP_WINDOW_HH workrave-1.10.50/frontend/gtkmm/src/win32/W32StatusIcon.hh0000644000175100001710000000361614221624107022030 0ustar00gdm00000000000000// W32StatusIcon.hh --- Window Notification Icon // // Copyright (C) 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32STATUSICON_HH #define W32STATUSICON_HH #include "config.h" #include #include #include #include #include class W32StatusIcon { public: W32StatusIcon(); virtual ~W32StatusIcon(); void set(const Glib::RefPtr &pixbuf); void set_tooltip(const Glib::ustring &text); void show_balloon(std::string id, const Glib::ustring &balloon); void set_visible(bool visible = true); bool get_visible() const; bool is_embedded() const; sigc::signal signal_activate(); sigc::signal signal_balloon_activate(); sigc::signal signal_popup_menu(); private: std::string current_id; bool visible; NOTIFYICONDATAW nid; static HWND tray_hwnd; static UINT wm_taskbarcreated; void init(); void cleanup(); void add_tray_icon(); static LRESULT CALLBACK window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); sigc::signal activate_signal; sigc::signal balloon_activate_signal; sigc::signal popup_menu_signal; }; #endif // W32STATUSICON_HH workrave-1.10.50/frontend/gtkmm/src/win32/W32AppletWindow.hh0000644000175100001710000000530714221624107022350 0ustar00gdm00000000000000// AppletWindow.hh --- Applet window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32APPLETWINDOW_HH #define W32APPLETWINDOW_HH #include "preinclude.h" #include #include #include #include #include "TimerBoxViewBase.hh" #include "ITimeBar.hh" #include "Applet.hh" #include "AppletWindow.hh" class W32AppletWindow : public AppletWindow , public TimerBoxViewBase { public: W32AppletWindow(); virtual ~W32AppletWindow(); void set_slot(BreakId id, int slot) override; void set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_value, int primary_max, ITimeBar::ColorId secondary_color, int secondary_value, int secondary_max) override; void update_view() override; void update_time_bars(); void update_menu(); bool is_visible() const override; void set_geometry(Orientation orientation, int size) override; void init_menu(HWND dest); void init_thread(); void add_menu(const char *text, short cmd, int flags); GdkFilterReturn win32_filter_func(void *xevent, GdkEvent *event); bool on_applet_command(int command); enum MenuFlag { MENU_FLAG_TOGGLE = APPLET_MENU_FLAG_TOGGLE, MENU_FLAG_SELECTED = APPLET_MENU_FLAG_SELECTED, MENU_FLAG_POPUP = APPLET_MENU_FLAG_POPUP }; private: void update_applet_window(); static unsigned __stdcall run_event_pipe_static(void *); private: void run_event_pipe(); HWND applet_window; bool menu_sent; bool local_menu_ready; AppletHeartbeatData local_heartbeat_data; AppletMenuData local_menu_data; HWND local_applet_window; AppletHeartbeatData heartbeat_data; AppletMenuData menu_data; CRITICAL_SECTION heartbeat_data_lock; HANDLE heartbeat_data_event; HANDLE thread_abort_event; HANDLE thread_handle; volatile unsigned thread_id; }; #endif // W32APPLETWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/win32/Makefile.am0000644000175100001710000000217014221624107021145 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if HAVE_APP_GTKMM if PLATFORM_OS_WINDOWS noinst_LTLIBRARIES = libworkrave-frontend-gtkmm-win32.la libworkrave_frontend_gtkmm_win32_la_SOURCES = \ dll_hell.c \ DesktopWindow.cc \ W32AppletWindow.cc \ W32Compat.cc \ W32AppletMenu.cc \ W32TrayMenu.cc \ W32StatusIcon.cc \ W32ForceFocus.cc libworkrave_frontend_gtkmm_win32_la_CFLAGS = \ -W -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/backend/include \ -I$(top_srcdir)/frontend/applets/win32/include \ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ -I $(top_srcdir)/common/include/win32 \ -I $(top_srcdir)/common/include libworkrave_frontend_gtkmm_win32_la_CXXFLAGS = \ $(libworkrave_frontend_gtkmm_win32_la_CFLAGS) endif endif workrave-1.10.50/frontend/gtkmm/src/win32/W32ForceFocus.cc0000644000175100001710000004003014221624107021747 0ustar00gdm00000000000000// W32ForceFocus.cc --- Collection of hacks to force win32 window focus // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include #include #include #include #include #include #include "StringUtil.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "W32Compat.hh" #include "W32CriticalSection.hh" #include "W32ForceFocus.hh" using namespace std; using namespace workrave; #ifdef _MSC_VER # pragma warning(disable : 4102) // warning C4102: unreferenced label #endif HANDLE W32ForceFocus::thread_handle; struct W32ForceFocus::thread_info W32ForceFocus::ti; bool W32ForceFocus::force_focus; // Critical section objects for each function that needs one static W32CriticalSection cs_GetForceFocusValue; static W32CriticalSection cs_GetFunctions; /* Each of these flags will represent a function that can be used to force the window focus. The flags of functions that we want to use to try to force the window focus will be OR'd together and then passed to a worker thread which will try each of the functions specified. */ enum functions { NO_FUNCTIONS = 0x00, ALT_KEYPRESS = (1 << 0), ATTACH_INPUT = (1 << 1), MINIMIZE_RESTORE = (1 << 2), DISABLE_FOREGROUND_TIMEOUT = (1 << 3), // not implemented RESET_FOREGROUND_TIMEOUT = (1 << 4), // not implemented ALL_FUNCTIONS = 0xFF }; /* W32ForceFocus::GetFunctions() Check for an existing configuration preference at advanced/force_focus_functions specifying which functions we should use to try to force window focus. - The names match to the focus functions' enumerated names. For example: [HKEY_CURRENT_USER\Software\Workrave\advanced] "force_focus_functions"="minimize_restore,attach_input" If the above was found then this function returns ( MINIMIZE_RESTORE | ATTACH_INPUT ). - returns the functions specified in the config or if no config found returns ALL_FUNCTIONS */ DWORD W32ForceFocus::GetFunctions() { W32CriticalSection::Guard guard(cs_GetFunctions); static bool func_initialized = false; static DWORD flags = 0; if (func_initialized) return flags; string str; if (CoreFactory::get_configurator()->get_value("advanced/force_focus_functions", str)) { transform(str.begin(), str.end(), str.begin(), ::toupper); vector names; StringUtil::split(str, ',', names); for (vector::iterator name = names.begin(); name != names.end(); ++name) { if (!name->compare("ALL_FUNCTIONS")) { flags = ALL_FUNCTIONS; break; } else if (!name->compare("NO_FUNCTIONS")) { flags = NO_FUNCTIONS; break; } else if (!name->compare("ALT_KEYPRESS")) flags |= ALT_KEYPRESS; else if (!name->compare("ATTACH_INPUT")) flags |= ATTACH_INPUT; else if (!name->compare("MINIMIZE_RESTORE")) flags |= MINIMIZE_RESTORE; } } else { flags = (ATTACH_INPUT | MINIMIZE_RESTORE); } func_initialized = true; return flags; } /* W32ForceFocus::GetForceFocusValue() Cache the user's advanced/force_focus preference in W32ForceFocus::force_focus or set false if none. returns force_focus */ bool W32ForceFocus::GetForceFocusValue() { W32CriticalSection::Guard guard(cs_GetForceFocusValue); static bool func_initialized = false; if (func_initialized) return force_focus; CoreFactory::get_configurator()->get_value_with_default("advanced/force_focus", force_focus, false); func_initialized = true; return force_focus; } /* W32ForceFocus::GetForegroundWindowTryHarder() Call GetForegroundWindow() repeatedly to get the foreground window. Try up to 'max_retries'. While the window manager is switching the foreground window it sets it as NULL temporarily. In some cases the functions in this class cannot succeed without the current foreground window so that value is unacceptable. We will use this function to wait a bit for any pending transition to complete. Empirical testing in my virtual machines shows an average transition takes two dozen retries. However my development Vista x86 machine shows an average transition takes 150 retries. Not sure why there's such a big discrepancy there, but maybe it's because I have so many windows open on this computer. For now I'm setting the default 'max_retries' to 200 to cover even heavy use cases. returns the foreground window or NULL if the window could not be found after 'max_retries' */ HWND W32ForceFocus::GetForegroundWindowTryHarder(DWORD max_retries // default: 200 ) { for (DWORD i = 0; i < max_retries; ++i) { /* GetForegroundWindow() returns NULL when: 1. There is no foreground window. 2. The foreground window is in transition. 3. Our calling thread's desktop is not the input desktop. 4. Our process' window station is locked (see #3) or not connected. */ HWND hwnd = GetForegroundWindow(); if (hwnd) return hwnd; Sleep(1); } return NULL; } /* W32ForceFocus::AltKeypress() Simulate an ALT keypress while setting 'hwnd' as the foreground window. The oldest known method (circa 1999) to bypass Microsoft's SetForegroundWindow() restrictions. From 'Programming Applications for Microsoft Windows' (Richter): "The system automatically unlocks the SetForegroundWindow function when the user presses the Alt key or if the user explicitly brings a window to the foreground. This prevents an application from keeping SetForegroundWindow locked all the time." returns true on success: ( GetForegroundWindow() == hwnd ) */ bool W32ForceFocus::AltKeypress(HWND hwnd) { bool simulated = false; if (!IsWindowVisible(hwnd)) return false; if (IsIconic(hwnd)) ShowWindow(hwnd, SW_RESTORE); HWND foreground_hwnd = GetForegroundWindowTryHarder(); if (foreground_hwnd == hwnd) return true; // If the user isn't already pressing down an ALT key then simulate one if (!(GetAsyncKeyState(VK_MENU) & 0x8000)) { simulated = true; keybd_event(VK_MENU, 0, KEYEVENTF_EXTENDEDKEY, 0); } BringWindowToTop(hwnd); SetForegroundWindow(hwnd); if (simulated) keybd_event(VK_MENU, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0); foreground_hwnd = GetForegroundWindowTryHarder(); return (foreground_hwnd == hwnd); } /* W32ForceFocus::AttachInput() Attach to the current foreground window's thread queue and set 'hwnd' as the foreground window. This is another old and proven method to set the foreground window. Attach to the input queue of whatever thread is currently receiving the raw input (ie the thread holding the current foreground window) and if successful set our window as the foreground window, then detach. Attaching can fail due to lack of privilege or if the target thread is not a GUI thread. This method is frought with problems because we're essentially sharing processing with another thread and we can't predict that thread's behavior. Like most of the focus functions in this class it should be called from a sacrificial worker thread so that if something goes wrong the rest of our program stays sane. returns true on success: ( GetForegroundWindow() == hwnd ) */ bool W32ForceFocus::AttachInput(HWND hwnd) { bool attached = false; if (!IsWindowVisible(hwnd)) return false; if (IsIconic(hwnd)) ShowWindow(hwnd, SW_RESTORE); HWND foreground_hwnd = GetForegroundWindowTryHarder(); if (foreground_hwnd == hwnd) return true; DWORD foreground_pid = 0, foreground_tid = 0; if (foreground_hwnd) { foreground_tid = GetWindowThreadProcessId(foreground_hwnd, &foreground_pid); if (foreground_tid && foreground_pid && (foreground_pid != GetCurrentProcessId())) { attached = !!AttachThreadInput(GetCurrentThreadId(), foreground_tid, TRUE); } } BringWindowToTop(hwnd); SetForegroundWindow(hwnd); if (attached) AttachThreadInput(GetCurrentThreadId(), foreground_tid, FALSE); foreground_hwnd = GetForegroundWindowTryHarder(); return (foreground_hwnd == hwnd); } /* W32ForceFocus::MinimizeRestore() Minimize and restore a dummy message window to set 'hwnd' as the foreground window. The minimization and restoration of a dummy window may allow it to take the foreground. If that happens foreground permissions have been acquired so set 'hwnd' as the foreground window. returns true on success: ( GetForegroundWindow() == hwnd ) */ bool W32ForceFocus::MinimizeRestore(HWND hwnd) { WINDOWPLACEMENT wp = { sizeof(wp), WPF_SETMINPOSITION, SW_MINIMIZE, {-32768, -32768}, // ptMinPosition: x, y {-32768, -32768}, // ptMaxPosition: x, y {-32768, -32768, -32768, -32768}, // rcNormalPosition: left, top, right, bottom }; if (!IsWindowVisible(hwnd)) return false; if (IsIconic(hwnd)) ShowWindow(hwnd, SW_RESTORE); HWND foreground_hwnd = GetForegroundWindowTryHarder(); if (foreground_hwnd == hwnd) return true; HWND message_hwnd = CreateWindowExW(WS_EX_TOOLWINDOW, L"Message", L"Workrave Focus Helper", (WS_DLGFRAME | WS_DISABLED | WS_POPUP), wp.rcNormalPosition.left, // X wp.rcNormalPosition.top, // Y 0, // nWidth 0, // nHeight NULL, // hWndParent NULL, // hMenu GetModuleHandle(NULL), NULL); if (message_hwnd) { // minimize and restore our dummy window off screen so that it's not visible to the user wp.showCmd = SW_MINIMIZE; SetWindowPlacement(message_hwnd, &wp); wp.showCmd = SW_RESTORE; SetWindowPlacement(message_hwnd, &wp); /* wait for message_hwnd to become the foreground window. we'll continue regardless of whether or not it actually is because we're trying SetForegroundWindow() in any case. */ foreground_hwnd = GetForegroundWindowTryHarder(); } BringWindowToTop(hwnd); SetForegroundWindow(hwnd); if (message_hwnd) { DestroyWindow(message_hwnd); message_hwnd = NULL; } foreground_hwnd = GetForegroundWindowTryHarder(); return (foreground_hwnd == hwnd); } /* W32ForceFocus::ForceWindowFocus() Create a sacrificial worker thread that attempts to run any of the focus hacks: AltKeypress(), AttachInput(), MinimizeRestore() Which of those will be run by the worker thread depend on the value returned by GetFunctions(), which caches the preference advanced/force_focus_functions. Review its comment block for more. You can optionally specify how many 'milliseconds_to_block' waiting for the worker thread to exit. By default this function waits for 200 milliseconds and then returns. If the worker thread is still running then it may set 'hwnd' as the foreground window after this function has returned. returns true on success: ( GetForegroundWindow() == hwnd ) */ bool W32ForceFocus::ForceWindowFocus(HWND hwnd, DWORD milliseconds_to_block // default: 200 ) { if (!IsWindowVisible(hwnd)) return false; if (IsIconic(hwnd)) ShowWindow(hwnd, SW_RESTORE); BringWindowToTop(hwnd); SetForegroundWindow(hwnd); HWND foreground_hwnd = GetForegroundWindow(); if (foreground_hwnd == hwnd) return true; /* Check if thread_handle is still open from a prior call. If a handle to the last created worker thread is still open then that means that it did not terminate within the specified wait period for a prior call to this function to have caught it. If the thread has since terminated we can close out the handle and commence with creating a new worker thread. If it has not terminated it is still working or has hanged, and I don't think there's anything safe to do without affecting the integrity of the process. In that case we stop here, and do not try to create another worker or mess with the current, and return false. */ if (thread_handle) { DWORD thread_exit_code = 0; if (!GetExitCodeThread(thread_handle, &thread_exit_code)) return false; if (thread_exit_code == STILL_ACTIVE) return false; CloseHandle(thread_handle); thread_handle = NULL; } ti.retval = 0; ti.hwnd = hwnd; ti.flags = GetFunctions(); if (!ti.flags) return false; thread_handle = CreateThread(NULL, 0, thread_Worker, (void *)TRUE, 0, NULL); if (!thread_handle) return false; /* We can wait a very short time but not indefinitely because it's possible one of the hacks caused our sacrificial worker thread to hang and also we don't want to interrupt our GUI thread. */ if (WaitForSingleObject(thread_handle, milliseconds_to_block) == WAIT_OBJECT_0) { CloseHandle(thread_handle); thread_handle = NULL; } foreground_hwnd = GetForegroundWindow(); return (foreground_hwnd == hwnd); } /* W32ForceFocus::thread_Worker() ThreadProc. Should return 0 in any case. This is the procedure for the sacrificial worker thread. It reads static struct thread_info for the hwnd (ti->hwnd) and the functions (ti->flags) that should be used to try to make hwnd the foreground window. This function's return is 0, however the actual return value is stored in ti->retval before return. On return ti->retval contains the flag for whichever W32ForceFocus function worked to set hwnd the foreground window or 0 if unsuccessful. */ DWORD WINAPI W32ForceFocus::thread_Worker(LPVOID recursive) { ti.retval = 0; if (!ti.flags || !ti.hwnd) return 0; /* If our desktop is not visible to the user then do not try to force the focus. This call is in the worker thread because it might be more expensive in milliseconds if it has to check with an RPC and we don't want to disrupt the GUI thread. */ if (!W32Compat::IsOurDesktopVisible()) return 0; // try the safest way first if (ti.flags & MINIMIZE_RESTORE) { if (MinimizeRestore(ti.hwnd)) { ti.retval = MINIMIZE_RESTORE; return 0; } } if (ti.flags & ATTACH_INPUT) { if (AttachInput(ti.hwnd)) { ti.retval = ATTACH_INPUT; return 0; } } if (ti.flags & ALT_KEYPRESS) { if (AltKeypress(ti.hwnd)) { ti.retval = ALT_KEYPRESS; return 0; } } /* If we tried minimize and restore and it did not work, and any other method did not work, we can try minimize and restore again and the results may be different. As best I can tell this is because any of the above methods may "break" the foreground lock but for whatever reason our window might not be made the foreground window. The way I tested this is to spawn another worker thread and call only the minimize and restore and that works. */ if (recursive && (ti.flags & MINIMIZE_RESTORE)) { ti.flags = MINIMIZE_RESTORE; HANDLE thread2 = CreateThread(NULL, 0, thread_Worker, (void *)FALSE, 0, NULL); if (thread2) { WaitForSingleObject(thread2, INFINITE); CloseHandle(thread2); } } return 0; } workrave-1.10.50/frontend/gtkmm/src/win32/W32Compat.cc0000644000175100001710000003660714221624107021153 0ustar00gdm00000000000000// W32Compat.cc --- W32 compatibility // // Copyright (C) 2004, 2007, 2010, 2012 Rob Caelers, Raymond Penners, Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef max #endif #ifdef PLATFORM_OS_WINDOWS # undef interface #endif #include #include #include "IBreak.hh" #include "BreakWindow.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "GtkUtil.hh" #include "W32ForceFocus.hh" #include "W32CriticalSection.hh" #include "W32Compat.hh" using namespace workrave; bool W32Compat::ime_magic = false; bool W32Compat::reset_window_always = false; bool W32Compat::reset_window_never = false; W32Compat::SWITCHTOTHISWINDOWPROC W32Compat::switch_to_this_window_proc = NULL; typedef BOOLEAN(WINAPI *PWINSTATIONQUERYINFORMATIONW)(HANDLE, ULONG, INT, PVOID, ULONG, PULONG); namespace { PWINSTATIONQUERYINFORMATIONW dyn_WinStationQueryInformationW; } /* W32Compat::WinStationQueryInformationW() Query information about our winstation. http://msdn.microsoft.com/en-us/library/windows/desktop/aa383827.aspx This API is deprecated so its use is limited. Some queries are problematic on x64: http://www.remkoweijnen.nl/blog/2011/01/29/querying-a-user-token-under-64-bit-version-of-2003xp/ Help for WinStationInformationClass info: http://msdn.microsoft.com/en-us/library/cc248604.aspx http://msdn.microsoft.com/en-us/library/cc248834.aspx returns whatever the API returns. if the API is unavailable this function returns FALSE and last error is set ERROR_INVALID_FUNCTION. */ BOOLEAN W32Compat::WinStationQueryInformationW(HANDLE hServer, // use WTS_CURRENT_SERVER_HANDLE ULONG LogonId, // use WTS_CURRENT_SESSION INT WinStationInformationClass, // review msdn links in comment block PVOID pWinStationInformation, ULONG WinStationInformationLength, PULONG pReturnLength) { init(); if (!dyn_WinStationQueryInformationW) { SetLastError(ERROR_INVALID_FUNCTION); return FALSE; } return dyn_WinStationQueryInformationW( hServer, LogonId, WinStationInformationClass, pWinStationInformation, WinStationInformationLength, pReturnLength); } VOID W32Compat::SwitchToThisWindow(HWND hwnd, BOOL emulate_alt_tab) { init(); if (switch_to_this_window_proc != NULL) { (*switch_to_this_window_proc)(hwnd, emulate_alt_tab); } return; } static W32CriticalSection cs__init; volatile LONG W32Compat::_initialized = 0; /* W32Compat::_init() Initialize the W32Compat class. The functions should call init(), which is inline, instead of this. A call to init() should be the first line in each of the other functions in this class. */ void W32Compat::_init() { W32CriticalSection::Guard guard(cs__init); if (_initialized) return; HMODULE user_lib = GetModuleHandleA("user32.dll"); if (user_lib) { switch_to_this_window_proc = (SWITCHTOTHISWINDOWPROC)GetProcAddress(user_lib, "SwitchToThisWindow"); } HMODULE winsta_lib = LoadLibraryA("winsta"); if (winsta_lib) { dyn_WinStationQueryInformationW = (PWINSTATIONQUERYINFORMATIONW)GetProcAddress(winsta_lib, "WinStationQueryInformationW"); } // Should SetWindowOnTop() call IMEWindowMagic() ? if (!CoreFactory::get_configurator()->get_value("advanced/ime_magic", ime_magic)) { ime_magic = false; } // As of writing SetWindowOnTop() always calls ResetWindow() // ResetWindow() determines whether to "reset" when both // reset_window_always and reset_window_never are false. // // If reset_window_always is true, and if ResetWindow() is continually // passed the same hwnd, hwnd will flicker as a result of the continual // z-order position changes / resetting. if (!CoreFactory::get_configurator()->get_value("advanced/reset_window_always", reset_window_always)) { reset_window_always = false; } // ResetWindow() will always abort when reset_window_never is true. if (!CoreFactory::get_configurator()->get_value("advanced/reset_window_never", reset_window_never)) { reset_window_never = false; } InterlockedExchange(&_initialized, 1); } void W32Compat::SetWindowOnTop(HWND hwnd, BOOL topmost) { init(); SetWindowPos(hwnd, topmost ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); ResetWindow(hwnd, (bool)topmost); if (ime_magic && topmost) { IMEWindowMagic(hwnd); } if (W32ForceFocus::GetForceFocusValue() && topmost) { W32ForceFocus::ForceWindowFocus(hwnd); } return; } // Bug 587 - Vista: Workrave not modal / coming to front // http://issues.workrave.org/show_bug.cgi?id=587 // There is an issue with IME and window z-ordering. // // hwnd == window to "reset" in z-order // topmost == true if window should be topmost, false otherwise void W32Compat::ResetWindow(HWND hwnd, bool topmost) { init(); if (!IsWindow(hwnd) || reset_window_never) return; const bool DEBUG = false; bool reset = false; DWORD gwl_exstyle = 0; DWORD valid_exstyle_diff = 0; WINDOWINFO gwi; ZeroMemory(&gwi, sizeof(gwi)); gwi.cbSize = sizeof(WINDOWINFO); SetLastError(0); gwl_exstyle = (DWORD)GetWindowLong(hwnd, GWL_EXSTYLE); if (!GetLastError()) { // if desired and actual topmost style differ, plan to reset if (topmost != (gwl_exstyle & WS_EX_TOPMOST ? true : false)) reset = true; } SetLastError(0); GetWindowInfo(hwnd, &gwi); if (!GetLastError()) { // if desired and actual topmost style differ, plan to reset if (topmost != (gwi.dwExStyle & WS_EX_TOPMOST ? true : false)) reset = true; } #ifdef BREAKAGE // GetWindowInfo() and GetWindowLong() extended style info can differ. // Compare the two results but filter valid values only. valid_exstyle_diff = (gwl_exstyle ^ gwi.dwExStyle) & ~0xF1A08802; if (valid_exstyle_diff || DEBUG) { // if the extended style info differs, plan to reset. // e.g. gwl returned ws_ex_toolwindow but gwi didn't reset = true; // attempt to sync differences: DWORD swl_exstyle = (valid_exstyle_diff | gwl_exstyle) & ~0xF1A08802; if ((swl_exstyle & WS_EX_APPWINDOW) && (swl_exstyle & WS_EX_TOOLWINDOW)) // this hasn't happened and shouldn't happen, but i suppose it could. // if both styles are set change to appwindow only. // why not toolwindow only? well, why are they both set in the first place? // in this case it's better to make hwnd visible on the taskbar. { swl_exstyle &= ~WS_EX_TOOLWINDOW; } ShowWindow(hwnd, SW_HIDE); SetWindowLong(hwnd, GWL_EXSTYLE, (LONG)swl_exstyle); ShowWindow(hwnd, SW_SHOWNA); } #endif // "reset" window position in z-order. // if the window is supposed to be topmost but is really not: // set HWND_NOTOPMOST followed by HWND_TOPMOST // the above sequence is key: review test results in 587#c17 // // if the window is not supposed to be topmost but is, reverse: // set HWND_TOPMOST followed by HWND_NOTOPMOST // the reverse is currently unproven. // i don't know of any problems removing the topmost style. if (IsWindow(hwnd) && (reset || reset_window_always)) { SetWindowPos(hwnd, !topmost ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); SetWindowPos(hwnd, topmost ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); } return; } // Bug 587 - Vista: Workrave not modal / coming to front // http://issues.workrave.org/show_bug.cgi?id=587 // There is an issue with IME and window z-ordering. // // ResetWindow() tests sufficient. This code is for troubleshooting. // if all else fails request user enable advanced/ime_magic = "1" void W32Compat::IMEWindowMagic(HWND hwnd) { init(); if (!IsWindow(hwnd)) return; // This message works to make hwnd topmost without activation or focus. // I found it by watching window messages. I don't know its intended use. SendMessage(hwnd, 0x287, 0x17 /*0x18*/, (LPARAM)hwnd); SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); } /* W32Compat::IsOurWinStationConnected() Check if our winstation is connected by querying terminal services. Note: Terminal services API can cause a harmless exception that it handles and should be ignored: First-chance exception at 0x7656fc56 in workrave.exe: 0x000006BA: The RPC server is unavailable. returns true if our winstation is connected */ bool W32Compat::IsOurWinStationConnected() { init(); bool func_retval = false; DWORD bytes_returned = 0; #ifdef PLATFORM_OS_WINDOWS_NATIVE enum WTS_INFO_CLASS *state = NULL; #else WTS_INFO_CLASS *state = NULL; #endif if (WTSQuerySessionInformation( WTS_CURRENT_SERVER_HANDLE, WTS_CURRENT_SESSION, WTSConnectState, reinterpret_cast(&state), &bytes_returned) && state) { if ((bytes_returned == sizeof(*state)) && ((*state == WTSActive) || (*state == WTSConnected))) { func_retval = true; } WTSFreeMemory(state); } return func_retval; } /* W32Compat::IsOurWinStationLocked() Check if our winstation is locked by querying terminal services. Note: Terminal services API can cause a harmless exception that it handles and should be ignored: First-chance exception at 0x7656fc56 in workrave.exe: 0x000006BA: The RPC server is unavailable. returns true if our winstation is locked */ bool W32Compat::IsOurWinStationLocked() { init(); BOOL locked = FALSE; DWORD bytes_returned = 0; if (!WinStationQueryInformationW(WTS_CURRENT_SERVER_HANDLE, // SERVERNAME_CURRENT WTS_CURRENT_SESSION, // LOGONID_CURRENT 28, // WinStationLockedState &locked, sizeof(locked), &bytes_returned) || (bytes_returned != sizeof(locked))) { return false; } return !!locked; } /* W32Compat::IsOurDesktopVisible() Check if our desktop can be viewed by the user: Check that our process' window station is connected and its input desktop is the same as our calling thread's desktop. If our desktop is visible that implies that this process' workstation is unlocked. returns true if our desktop is visible */ bool W32Compat::IsOurDesktopVisible() { init(); bool func_retval = false; HDESK input_desktop_handle = NULL; HDESK our_desktop_handle = NULL; wchar_t input_desktop_name[MAX_PATH] = { L'\0', }; wchar_t our_desktop_name[MAX_PATH] = { L'\0', }; BOOL ret = 0; DWORD bytes_needed = 0; /* Get the input desktop name */ input_desktop_handle = OpenInputDesktop(0, false, GENERIC_READ); if (!input_desktop_handle) goto cleanup; bytes_needed = 0; ret = GetUserObjectInformationW(input_desktop_handle, UOI_NAME, input_desktop_name, sizeof(input_desktop_name), &bytes_needed); if (!ret || (bytes_needed > sizeof(input_desktop_name))) goto cleanup; /* Get our calling thread's desktop name */ our_desktop_handle = GetThreadDesktop(GetCurrentThreadId()); if (!our_desktop_handle) goto cleanup; bytes_needed = 0; ret = GetUserObjectInformationW(our_desktop_handle, UOI_NAME, our_desktop_name, sizeof(our_desktop_name), &bytes_needed); if (!ret || (bytes_needed > sizeof(our_desktop_name))) goto cleanup; // If the desktop names are different then our thread is not associated with the input desktop if (_wcsnicmp(input_desktop_name, our_desktop_name, MAX_PATH)) goto cleanup; // If our winstation is not connected then our desktop is not visible if (!IsOurWinStationConnected()) goto cleanup; func_retval = true; cleanup: if (input_desktop_handle) CloseHandle(input_desktop_handle); if (our_desktop_handle) CloseHandle(our_desktop_handle); return func_retval; } /* W32Compat::RefreshBreakWindow() Refresh a BreakWindow: - Make keyboard shortcuts available without pressing ALT after five seconds of inactivity - Set our window topmost unless a tooltip is visible (tooltips are topmost when visible) - Make sure the window manager has not disabled our topmost status; reset if necessary - Force focus to the main break window if the preference advanced/force_focus is true */ void W32Compat::RefreshBreakWindow(BreakWindow &window) { ICore *core = CoreFactory::get_core(); bool user_active = core->is_user_active(); // GTK keyboard shortcuts can be accessed by using the ALT key. This appear // to be non-standard behaviour on windows, so make shortcuts available // without ALT after the user is idle for 5s if (!user_active && !window.accel_added) { IBreak *b = core->get_break(BreakId(window.break_id)); assert(b != NULL); // TRACE_MSG(b->get_elapsed_idle_time()); if (b->get_elapsed_idle_time() > 5) { if (window.postpone_button != NULL) { GtkUtil::update_mnemonic(window.postpone_button, window.accel_group); } if (window.skip_button != NULL) { GtkUtil::update_mnemonic(window.skip_button, window.accel_group); } // FIXME: // if( window.shutdown_button != NULL ) // { // GtkUtil::update_mnemonic( window.shutdown_button, window.accel_group ); // } // if( window.lock_button != NULL ) // { // GtkUtil::update_mnemonic( window.lock_button, window.accel_group ); // } window.accel_added = true; } } /* We can't call WindowHints::set_always_on_top() or W32Compat::SetWindowOnTop() for every refresh. While the logic here is similar it is adjusted for the specific case of refreshing. */ HWND hwnd = (HWND)GDK_WINDOW_HWND(window.Gtk::Widget::gobj()->window); if (!hwnd) return; // don't enforce topmost while a tooltip is visible, otherwise we could cover the tooltip if (!GtkUtil::get_visible_tooltip_window()) SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); // this checks if the window manager has disabled our topmost ability and resets it if necessary W32Compat::ResetWindow(hwnd, true); /* If there are multiple break windows only force focus on the first, otherwise focus would be continuously switched to each break window on every refresh, making interaction very difficult. */ if (W32ForceFocus::GetForceFocusValue() && (window.head.count == 0)) { W32ForceFocus::ForceWindowFocus(hwnd, 0); // try without blocking } } workrave-1.10.50/frontend/gtkmm/src/win32/W32TrayMenu.hh0000644000175100001710000000275614221624107021504 0ustar00gdm00000000000000// W32TrayMenu.hh --- Menu using W32Tray+ // // Copyright (C) 2001 - 2009, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32TRAYMENU_HH #define W32TRAYMENU_HH #include "config.h" #include #include #include #include #include #include #include #include "MainGtkMenu.hh" class W32TrayMenu : public MainGtkMenu { public: W32TrayMenu(); virtual ~W32TrayMenu(); virtual void post_init(); virtual void popup(const guint button, const guint activate_time); private: void win32_popup_hack_connect(Gtk::Widget *menu); static gboolean win32_popup_hack_hide(gpointer data); static gboolean win32_popup_hack_leave_enter(GtkWidget *menu, GdkEventCrossing *event, void *data); }; #endif // W32TRAYMENU_HH workrave-1.10.50/frontend/gtkmm/src/win32/W32Compat.hh0000644000175100001710000000447114221624107021157 0ustar00gdm00000000000000// W32Compat.hh --- W32 compatibility // // Copyright (C) 2004, 2007, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32_COMPAT_HH #define W32_COMPAT_HH #include #ifndef MONITOR_DEFAULTTONULL # define MONITOR_DEFAULTTONULL 0x00000000 #endif #ifndef MONITOR_DEFAULTTOPRIMARY # define MONITOR_DEFAULTTOPRIMARY 0x00000001 #endif #ifndef MONITOR_DEFAULTTONEAREST # define MONITOR_DEFAULTTONEAREST 0x00000002 #endif class BreakWindow; class W32Compat { public: static BOOLEAN WinStationQueryInformationW( HANDLE hServer, // use WTS_CURRENT_SERVER_HANDLE ULONG LogonId, // use WTS_CURRENT_SESSION INT WinStationInformationClass, // http://msdn.microsoft.com/en-us/library/cc248834.aspx PVOID pWinStationInformation, ULONG WinStationInformationLength, PULONG pReturnLength); static VOID SwitchToThisWindow(HWND, BOOL); static void SetWindowOnTop(HWND, BOOL); static void ResetWindow(HWND, bool); static void IMEWindowMagic(HWND); static bool IsOurWinStationConnected(); static bool IsOurWinStationLocked(); static bool IsOurDesktopVisible(); static void RefreshBreakWindow(BreakWindow &window); private: static volatile LONG _initialized; static void _init(); // A call to init() should be the first line in each of the other functions in this class static inline void init() { if (!_initialized) _init(); } static bool run_once; static bool ime_magic; static bool reset_window_always; static bool reset_window_never; typedef VOID(WINAPI *SWITCHTOTHISWINDOWPROC)(HWND, BOOL); static SWITCHTOTHISWINDOWPROC switch_to_this_window_proc; }; #endif // W32_COMPAT_HH workrave-1.10.50/frontend/gtkmm/src/eggsmclient-private.h0000644000175100001710000000327614221624107022301 0ustar00gdm00000000000000/* eggsmclient-private.h * Copyright (C) 2007 Novell, Inc. * * 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 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __EGG_SM_CLIENT_PRIVATE_H__ #define __EGG_SM_CLIENT_PRIVATE_H__ #include "eggsmclient.h" G_BEGIN_DECLS GKeyFile *egg_sm_client_save_state(EggSMClient *client); void egg_sm_client_quit_requested(EggSMClient *client); void egg_sm_client_quit_cancelled(EggSMClient *client); void egg_sm_client_quit(EggSMClient *client); #if defined(GDK_WINDOWING_X11) # ifdef EGG_SM_CLIENT_BACKEND_XSMP GType egg_sm_client_xsmp_get_type(void); EggSMClient *egg_sm_client_xsmp_new(void); # endif # ifdef EGG_SM_CLIENT_BACKEND_DBUS GType egg_sm_client_dbus_get_type(void); EggSMClient *egg_sm_client_dbus_new(void); # endif #elif defined(GDK_WINDOWING_WIN32) GType egg_sm_client_win32_get_type(void); EggSMClient *egg_sm_client_win32_new(void); #elif defined(GDK_WINDOWING_QUARTZ) GType egg_sm_client_osx_get_type(void); EggSMClient *egg_sm_client_osx_new(void); #endif G_END_DECLS #endif /* __EGG_SM_CLIENT_PRIVATE_H__ */ workrave-1.10.50/frontend/gtkmm/src/HeadInfo.hh0000644000175100001710000000236514221624107020153 0ustar00gdm00000000000000// HeadInfo.hh --- Multi head info // // Copyright (C) 2001, 2002, 2003, 2004, 2007, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MULTIHEAD_HH #define MULTIHEAD_HH #include "preinclude.h" #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef max #endif #include #include #include class HeadInfo { public: HeadInfo() { count = 0; } int get_width() const; int get_height() const; int get_x() const; int get_y() const; Glib::RefPtr screen; int monitor; int count; Gdk::Rectangle geometry; }; #endif // MULTIHEAD_HH workrave-1.10.50/frontend/gtkmm/src/IAppletWindow.hh0000644000175100001710000000240614221624107021220 0ustar00gdm00000000000000// IAppletWindow.hh --- Applet window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IAPPLETWINDOW_HH #define IAPPLETWINDOW_HH #include "preinclude.h" #include #include class IAppletWindow { public: virtual ~IAppletWindow() {} virtual sigc::signal &signal_visibility_changed() = 0; virtual void init_applet() = 0; virtual void update_applet() = 0; virtual void set_applet_tooltip(const std::string &tip) = 0; virtual bool is_visible() const = 0; }; #endif // IAPPLETWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/IMenu.hh0000644000175100001710000000227714221624107017515 0ustar00gdm00000000000000// IMenu.hh --- Menu interface // // Copyright (C) 2001 - 2009, 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IMENU_HH #define IMENU_HH #include #include "ICore.hh" #include class IMenu { public: IMenu() {} virtual ~IMenu() {} virtual void init() = 0; virtual void add_accel(Gtk::Window &window) = 0; virtual void popup(const guint button, const guint activate_time) = 0; virtual void resync(workrave::OperationMode mode, workrave::UsageMode usage, bool show_log) = 0; }; #endif // IMENU_HH workrave-1.10.50/frontend/gtkmm/src/TimerBoxGtkView.hh0000644000175100001710000000645014221624107021527 0ustar00gdm00000000000000// TimerBoxtGtkView.hh --- All timers // // Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2008, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERBOXGTKVIEW_HH #define TIMERBOXGTKVIEW_HH #include "preinclude.h" #include #include #include "IConfiguratorListener.hh" #include "ITimerBoxView.hh" #include "TimeBar.hh" #include "Menus.hh" class EventImage; namespace Gtk { class Image; class Bin; class Image; class EventBox; } // namespace Gtk class TimerBoxGtkView : public Gtk::Table , public ITimerBoxView , public IConfiguratorListener { public: TimerBoxGtkView(Menus::MenuKind menu, bool transparent = false); virtual ~TimerBoxGtkView(); void set_geometry(Orientation orientation, int size); int get_visible_count() const; void set_slot(BreakId id, int slot); void set_time_bar(BreakId id, std::string text, TimeBar::ColorId primary_color, int primary_value, int primary_max, TimeBar::ColorId secondary_color, int secondary_value, int secondary_max); void set_tip(std::string tip); void set_icon(IconType icon); void update_view(); void set_enabled(bool enabled); void set_sheep_only(bool sheep_only); bool is_sheep_only() const; #ifdef HAVE_GTK3 virtual bool on_draw(const Cairo::RefPtr &cr); #endif private: void init_widgets(); void init_table(); void init(); void update_widgets(); bool on_restbreak_button_press_event(int button); int get_number_of_timers() const; virtual void config_changed_notify(const std::string &key); //! What menu to active on click Menus::MenuKind menu; //! Use tranparentcy. bool transparent; //! Reconfigure the panel. bool reconfigure; //! Array of time labels Gtk::Widget *labels[BREAK_ID_SIZEOF]; //! Array of time bar widgets. TimeBar *bars[BREAK_ID_SIZEOF]; //! Break images Gtk::Image *images[BREAK_ID_SIZEOF]; //! Sheep Gtk::Image *sheep; //! Sheep Gtk::EventBox *sheep_eventbox; //! orientation. Orientation orientation; //! Size int size; //! Rows int table_rows; //! Columns int table_columns; //! Reverse int table_reverse; //! Current slot content. int current_content[BREAK_ID_SIZEOF]; //! New slot content. int new_content[BREAK_ID_SIZEOF]; //! Number of visible breaks. int visible_count; //! Rotation (clockwise in degrees) int rotation; //! Only show the sheep bool sheep_only; }; inline int TimerBoxGtkView::get_visible_count() const { return visible_count; } #endif // TIMERBOXGTKVIEW_HH workrave-1.10.50/frontend/gtkmm/src/GenericDBusApplet.cc0000644000175100001710000002103314221624107021755 0ustar00gdm00000000000000// GenericDBusApplet.cc --- Applet info Window // // Copyright (C) 2001 - 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include #include "GenericDBusApplet.hh" #include "TimerBoxControl.hh" #include "GUI.hh" #include "Menus.hh" #include "MenuEnums.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "dbus/IDBus.hh" #include "dbus/DBusException.hh" #include "DBusGUI.hh" #define WORKRAVE_INDICATOR_SERVICE_NAME "org.workrave.Workrave" #define WORKRAVE_INDICATOR_SERVICE_IFACE "org.workrave.AppletInterface" #define WORKRAVE_INDICATOR_SERVICE_OBJ "/org/workrave/Workrave/UI" GenericDBusApplet::GenericDBusApplet() : visible(false) , embedded(false) , dbus(NULL) { timer_box_control = new TimerBoxControl("applet", *this); timer_box_view = this; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { data[i].bar_text = ""; data[i].bar_primary_color = 0; data[i].bar_primary_val = 0; data[i].bar_primary_max = 0; data[i].bar_secondary_color = 0; data[i].bar_secondary_val = 0; data[i].bar_secondary_max = 0; } CoreFactory::get_configurator()->add_listener(GUIConfig::CFG_KEY_APPLET_ICON_ENABLED, this); } GenericDBusApplet::~GenericDBusApplet() {} void GenericDBusApplet::set_slot(BreakId id, int slot) { TRACE_ENTER_MSG("GenericDBusApplet::set_slot", int(id) << ", " << slot); data[slot].slot = id; TRACE_EXIT(); } void GenericDBusApplet::set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_val, int primary_max, ITimeBar::ColorId secondary_color, int secondary_val, int secondary_max) { TRACE_ENTER_MSG("GenericDBusApplet::set_time_bar", int(id) << "=" << text); data[id].bar_text = text; data[id].bar_primary_color = primary_color; data[id].bar_primary_val = primary_val; data[id].bar_primary_max = primary_max; data[id].bar_secondary_color = secondary_color; data[id].bar_secondary_val = secondary_val; data[id].bar_secondary_max = secondary_max; TRACE_EXIT(); } void GenericDBusApplet::update_view() { TRACE_ENTER("GenericDBusApplet::update_view"); org_workrave_AppletInterface *iface = org_workrave_AppletInterface::instance(dbus); assert(iface != NULL); iface->TimersUpdated( WORKRAVE_INDICATOR_SERVICE_OBJ, data[BREAK_ID_MICRO_BREAK], data[BREAK_ID_REST_BREAK], data[BREAK_ID_DAILY_LIMIT]); TRACE_EXIT(); } void GenericDBusApplet::init_applet() { try { dbus = CoreFactory::get_dbus(); if (dbus != NULL && dbus->is_available()) { dbus->connect(WORKRAVE_INDICATOR_SERVICE_OBJ, WORKRAVE_INDICATOR_SERVICE_IFACE, this); } } catch (workrave::dbus::DBusException &) { } } void GenericDBusApplet::applet_embed(bool enable, const std::string &sender) { TRACE_ENTER_MSG("GenericDBusApplet::applet_embed", enable << " " << sender); embedded = enable; for (std::set::iterator i = active_bus_names.begin(); i != active_bus_names.end(); i++) { dbus->unwatch(*i); } active_bus_names.clear(); if (sender != "") { dbus->watch(sender, this); } if (!enable) { TRACE_MSG("Disabling"); visible = false; visibility_changed_signal.emit(false); } TRACE_EXIT(); } void GenericDBusApplet::resync(OperationMode mode, UsageMode usage, bool show_log) { TRACE_ENTER("GenericDBusAppletMenu::resync"); items.clear(); add_menu_item(_("Open"), MENU_COMMAND_OPEN, MENU_ITEM_FLAG_NONE); add_menu_item(_("Preferences"), MENU_COMMAND_PREFERENCES, MENU_ITEM_FLAG_NONE); add_menu_item(_("Rest break"), MENU_COMMAND_REST_BREAK, MENU_ITEM_FLAG_NONE); add_menu_item(_("Exercises"), MENU_COMMAND_EXERCISES, MENU_ITEM_FLAG_NONE); add_menu_item(_("Mode"), MENU_COMMAND_MODE_SUBMENU, MENU_ITEM_FLAG_SUBMENU_BEGIN); add_menu_item(_("Normal"), MENU_COMMAND_MODE_NORMAL, MENU_ITEM_FLAG_RADIO | (mode == OPERATION_MODE_NORMAL ? MENU_ITEM_FLAG_ACTIVE : MENU_ITEM_FLAG_NONE)); add_menu_item(_("Suspended"), MENU_COMMAND_MODE_SUSPENDED, MENU_ITEM_FLAG_RADIO | (mode == OPERATION_MODE_SUSPENDED ? MENU_ITEM_FLAG_ACTIVE : MENU_ITEM_FLAG_NONE)); add_menu_item(_("Quiet"), MENU_COMMAND_MODE_QUIET, MENU_ITEM_FLAG_RADIO | (mode == OPERATION_MODE_QUIET ? MENU_ITEM_FLAG_ACTIVE : MENU_ITEM_FLAG_NONE)); add_menu_item(_("Mode"), MENU_COMMAND_MODE_SUBMENU, MENU_ITEM_FLAG_SUBMENU_END); #ifdef HAVE_DISTRIBUTION add_menu_item(_("Network"), MENU_COMMAND_NETWORK_SUBMENU, MENU_ITEM_FLAG_SUBMENU_BEGIN); add_menu_item(_("Connect"), MENU_COMMAND_NETWORK_CONNECT, MENU_ITEM_FLAG_NONE); add_menu_item(_("Disconnect"), MENU_COMMAND_NETWORK_DISCONNECT, MENU_ITEM_FLAG_NONE); add_menu_item(_("Reconnect"), MENU_COMMAND_NETWORK_RECONNECT, MENU_ITEM_FLAG_NONE); add_menu_item( _("Show log"), MENU_COMMAND_NETWORK_LOG, MENU_ITEM_FLAG_CHECK | (show_log ? MENU_ITEM_FLAG_ACTIVE : MENU_ITEM_FLAG_NONE)); add_menu_item(_("Network"), MENU_COMMAND_NETWORK_SUBMENU, MENU_ITEM_FLAG_SUBMENU_END); #endif add_menu_item(_("Reading mode"), MENU_COMMAND_MODE_READING, MENU_ITEM_FLAG_CHECK | (usage == USAGE_MODE_READING ? MENU_ITEM_FLAG_ACTIVE : MENU_ITEM_FLAG_NONE)); add_menu_item(_("Statistics"), MENU_COMMAND_STATISTICS, MENU_ITEM_FLAG_NONE); add_menu_item(_("About..."), MENU_COMMAND_ABOUT, MENU_ITEM_FLAG_NONE); add_menu_item(_("Quit"), MENU_COMMAND_QUIT, MENU_ITEM_FLAG_NONE); org_workrave_AppletInterface *iface = org_workrave_AppletInterface::instance(dbus); assert(iface != NULL); iface->MenuUpdated(WORKRAVE_INDICATOR_SERVICE_OBJ, items); TRACE_EXIT(); } void GenericDBusApplet::get_menu(MenuItems &out) const { out = items; } void GenericDBusApplet::get_tray_icon_enabled(bool &enabled) const { enabled = GUIConfig::is_applet_icon_enabled(); } void GenericDBusApplet::add_menu_item(const char *text, int command, int flags) { MenuItem item; item.text = text; item.command = command; item.flags = flags; items.push_back(item); } void GenericDBusApplet::applet_command(int command) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->applet_command(command); } void GenericDBusApplet::button_clicked(int button) { (void)button; timer_box_control->force_cycle(); } void GenericDBusApplet::bus_name_presence(const std::string &name, bool present) { TRACE_ENTER_MSG("GenericDBusApplet::bus_name_presence", name << " " << present); TRACE_MSG(visible << " " << embedded); if (present) { active_bus_names.insert(name); if (!visible && embedded) { TRACE_MSG("Enabling"); visible = true; visibility_changed_signal.emit(true); } } else { active_bus_names.erase(name); if (active_bus_names.size() == 0) { TRACE_MSG("Disabling"); visible = false; embedded = false; visibility_changed_signal.emit(false); } } TRACE_EXIT(); } void GenericDBusApplet::config_changed_notify(const std::string &key) { TRACE_ENTER_MSG("GenericDBusApplet::config_changed_notify", key); if (key == GUIConfig::CFG_KEY_APPLET_ICON_ENABLED) { send_tray_icon_enabled(); } TRACE_EXIT(); } void GenericDBusApplet::send_tray_icon_enabled() { TRACE_ENTER("GenericDBusApplet::send_tray_icon_enabled"); bool on = GUIConfig::is_applet_icon_enabled(); org_workrave_AppletInterface *iface = org_workrave_AppletInterface::instance(dbus); assert(iface != NULL); iface->TrayIconUpdated(WORKRAVE_INDICATOR_SERVICE_OBJ, on); TRACE_EXIT(); } bool GenericDBusApplet::is_visible() const { return visible; } workrave-1.10.50/frontend/gtkmm/src/DBusGUI.hh0000644000000000000000000000174214221624300020762 0ustar00rootroot00000000000000#ifndef DBUS_DBUSGUI_HH #define DBUS_DBUSGUI_HH #include "dbus/DBusBindingGio.hh" #include "Menus.hh" #include "GenericDBusApplet.hh" class org_workrave_ControlInterface { public: virtual ~org_workrave_ControlInterface() {} static org_workrave_ControlInterface *instance(const ::workrave::dbus::IDBus::Ptr dbus); }; class org_workrave_AppletInterface { public: virtual ~org_workrave_AppletInterface() {} static org_workrave_AppletInterface *instance(const ::workrave::dbus::IDBus::Ptr dbus); virtual void TimersUpdated(const std::string &path , GenericDBusApplet::TimerData & micro , GenericDBusApplet::TimerData & rest , GenericDBusApplet::TimerData & daily ) = 0; virtual void MenuUpdated(const std::string &path , GenericDBusApplet::MenuItems & menuitems ) = 0; virtual void TrayIconUpdated(const std::string &path , bool enabled ) = 0; }; #endif // DBUS_DBUSGUI_HHworkrave-1.10.50/frontend/gtkmm/src/Frame.hh0000644000175100001710000000521014221624107017520 0ustar00gdm00000000000000// FrameWindow.hh --- Gtk::Frame like widget // // Copyright (C) 2001, 2002, 2003, 2004, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include class Frame : public Gtk::Bin { public: enum Style { STYLE_SOLID, STYLE_BREAK_WINDOW }; Frame(); virtual ~Frame(); void set_frame_width(guint width); void set_frame_style(Style style); void set_frame_color(const Gdk::Color &color); void set_frame_flashing(int delay); void set_frame_visible(bool visible); sigc::signal1 &signal_flash(); protected: bool on_timer(); void on_size_allocate(Gtk::Allocation &allocation); #ifdef HAVE_GTK3 virtual Gtk::SizeRequestMode get_request_mode_vfunc() const; virtual void get_preferred_width_vfunc(int &minimum_width, int &natural_width) const; virtual void get_preferred_height_vfunc(int &minimum_height, int &natural_height) const; virtual void get_preferred_width_for_height_vfunc(int height, int &minimum_width, int &natural_width) const; virtual void get_preferred_height_for_width_vfunc(int width, int &minimum_height, int &natural_height) const; virtual bool on_draw(const Cairo::RefPtr &cr); void set_color(const Cairo::RefPtr &cr, const Gdk::Color &color); void set_color(const Cairo::RefPtr &cr, const Gdk::RGBA &color); #else void on_realize(); bool on_expose_event(GdkEventExpose *e); void on_size_request(Gtk::Requisition *requisition); #endif private: //! Frame border width guint frame_width; #ifndef HAVE_GTK3 //! Graphic context. Glib::RefPtr gc; //! Color map Glib::RefPtr color_map; #endif //! Color of the frame. Gdk::Color frame_color; //! Black Gdk::Color color_black; //! Style of the frame. Style frame_style; //! Visible; bool frame_visible; //! Flash delay; int flash_delay; //! Flash timeout signal sigc::connection flash_signal; //! Flash signal source sigc::signal1 flash_signal_src; }; workrave-1.10.50/frontend/gtkmm/src/PreferencesDialog.hh0000644000175100001710000001206314221624107022053 0ustar00gdm00000000000000// PreferencesDialog.hh --- Preferences Dialog // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2010, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef PREFERENCESDIALOG_HH #define PREFERENCESDIALOG_HH #include #include #include "preinclude.h" #include "Hig.hh" #include "IconListNotebook.hh" #include "ICore.hh" #include "SoundPlayer.hh" #include //#include class TimeEntry; class DataConnector; namespace Gtk { class ComboBox; class ComboBox; class FileChooserButton; class HScale; class FileFilter; } // namespace Gtk using namespace workrave; class PreferencesDialog : public HigDialog { public: PreferencesDialog(); ~PreferencesDialog(); int run(); private: void add_page(const char *label, const char *image, Gtk::Widget &widget); Gtk::Widget *create_gui_page(); Gtk::Widget *create_timer_page(); Gtk::Widget *create_sounds_page(); #ifdef HAVE_DISTRIBUTION Gtk::Widget *create_network_page(); #endif Gtk::Widget *create_applet_page(); Gtk::Widget *create_mainwindow_page(); bool on_focus_in_event(GdkEventFocus *event); bool on_focus_out_event(GdkEventFocus *event); void on_sound_changed(); void on_block_changed(); Gtk::ComboBoxText *sound_button; Gtk::ComboBoxText *block_button; Gtk::ComboBoxText *sound_theme_button; Gtk::ComboBoxText *icon_theme_button; IconListNotebook notebook; #if defined(HAVE_LANGUAGE_SELECTION) // Tree model columns: class ModelColumns : public Gtk::TreeModel::ColumnRecord { public: ModelColumns() { add(current); add(native); add(enabled); add(code); } Gtk::TreeModelColumn enabled; Gtk::TreeModelColumn code; Gtk::TreeModelColumn native; Gtk::TreeModelColumn current; }; void on_native_cell_data(const Gtk::TreeModel::const_iterator &iter); void on_current_cell_data(const Gtk::TreeModel::const_iterator &iter); int on_cell_data_compare(const Gtk::TreeModel::iterator &iter1, const Gtk::TreeModel::iterator &iter2); Gtk::ComboBox languages_combo; ModelColumns languages_columns; Glib::RefPtr languages_model; Gtk::CellRendererText native_cellrenderer; Gtk::CellRendererText current_cellrenderer; #endif class SoundModel : public Gtk::TreeModel::ColumnRecord { public: SoundModel() { add(enabled); add(description); add(selectable); add(label); add(event); } Gtk::TreeModelColumn enabled; Gtk::TreeModelColumn description; Gtk::TreeModelColumn selectable; Gtk::TreeModelColumn label; Gtk::TreeModelColumn event; }; DataConnector *connector; std::vector sound_themes; Gtk::TreeView sound_treeview; SoundModel sound_model; Glib::RefPtr sound_store; Gtk::CellRendererToggle sound_enabled_cellrenderer; Gtk::CellRendererText sound_event_cellrenderer; Gtk::HScale *sound_volume_scale; Gtk::Button *sound_play_button; int inhibit_events; Gtk::CheckButton *mute_cb; Gtk::FileChooserButton *fsbutton; #ifdef HAVE_GTK3 Glib::RefPtr filefilter; #else Gtk::FileFilter *filefilter; #endif std::string fsbutton_filename; Gtk::CheckButton *trayicon_cb; void on_sound_enabled(const Glib::ustring &path_stringxo); void on_sound_play(); void on_sound_filechooser_play(); void on_sound_filechooser_select(); void on_sound_events_changed(); void on_sound_theme_changed(); void update_sound_theme_selection(); void update_senstives(); void on_icon_theme_changed(); void update_icon_theme_combo(); Gtk::CheckButton *autostart_cb; void on_autostart_toggled(); Gtk::Button *debug_btn; void on_debug_pressed(); Gtk::Widget *create_monitoring_page(); #if defined(PLATFORM_OS_WINDOWS) Gtk::CheckButton *monitor_type_cb; void on_monitor_type_toggled(); # ifdef HAVE_GTK3 Glib::RefPtr sensitivity_adjustment; # else Gtk::Adjustment sensitivity_adjustment; # endif Gtk::HBox *sensitivity_box; #endif }; #ifndef GTKMM_CHECK_VERSION # define GTKMM_CHECK_VERSION(major, minor, micro) \ (GTKMM_MAJOR_VERSION > (major) \ || (GTKMM_MAJOR_VERSION == (major) \ && (GTKMM_MINOR_VERSION > (minor) || (GTKMM_MINOR_VERSION == (minor) && GTKMM_MICRO_VERSION >= (micro))))) #endif #endif // PREFERENCESWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/DBusGUI.cc0000644000000000000000000011422214221624300020746 0ustar00rootroot00000000000000#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include "dbus/DBusBindingGio.hh" #include "dbus/DBusException.hh" #include "DBusGUI.hh" using namespace std; using namespace workrave::dbus; class DBusGUI_Marshall : public DBusMarshallGio { public: void get_operation_mode(GVariant *variant, OperationMode *result); GVariant *put_operation_mode(const OperationMode *result); void get_TimerData(GVariant *variant, GenericDBusApplet::TimerData *result); GVariant *put_TimerData(const GenericDBusApplet::TimerData *result); void get_MenuItem(GVariant *variant, GenericDBusApplet::MenuItem *result); GVariant *put_MenuItem(const GenericDBusApplet::MenuItem *result); void get_MenuItems(GVariant *variant, GenericDBusApplet::MenuItems *result); GVariant *put_MenuItems(const GenericDBusApplet::MenuItems *result); }; void DBusGUI_Marshall::get_operation_mode(GVariant *variant, OperationMode *result) { std::string value; get_string(variant, &value); if("normal" == value) { *result = OPERATION_MODE_NORMAL; } else if("suspended" == value) { *result = OPERATION_MODE_SUSPENDED; } else if("quiet" == value) { *result = OPERATION_MODE_QUIET; } else { throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("operation_mode"); } } GVariant * DBusGUI_Marshall::put_operation_mode(const OperationMode *result) { string value; switch (*result) { case OPERATION_MODE_NORMAL: value = "normal"; break; case OPERATION_MODE_SUSPENDED: value = "suspended"; break; case OPERATION_MODE_QUIET: value = "quiet"; break; default: throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("operation_mode"); } return put_string(&value); } void DBusGUI_Marshall::get_TimerData(GVariant *variant, GenericDBusApplet::TimerData *result) { gsize num_fields = g_variant_n_children(variant); if (num_fields != 8) { throw DBusRemoteException() << message_info("Incorrect number of member in struct") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("TimerData"); } GVariant *v_bar_text = g_variant_get_child_value(variant, 0); get_string(v_bar_text, &result->bar_text); GVariant *v_slot = g_variant_get_child_value(variant, 1); get_int(v_slot, &result->slot); GVariant *v_bar_secondary_color = g_variant_get_child_value(variant, 2); get_uint32(v_bar_secondary_color, &result->bar_secondary_color); GVariant *v_bar_secondary_val = g_variant_get_child_value(variant, 3); get_uint32(v_bar_secondary_val, &result->bar_secondary_val); GVariant *v_bar_secondary_max = g_variant_get_child_value(variant, 4); get_uint32(v_bar_secondary_max, &result->bar_secondary_max); GVariant *v_bar_primary_color = g_variant_get_child_value(variant, 5); get_uint32(v_bar_primary_color, &result->bar_primary_color); GVariant *v_bar_primary_val = g_variant_get_child_value(variant, 6); get_uint32(v_bar_primary_val, &result->bar_primary_val); GVariant *v_bar_primary_max = g_variant_get_child_value(variant, 7); get_uint32(v_bar_primary_max, &result->bar_primary_max); g_variant_unref(v_bar_text); g_variant_unref(v_slot); g_variant_unref(v_bar_secondary_color); g_variant_unref(v_bar_secondary_val); g_variant_unref(v_bar_secondary_max); g_variant_unref(v_bar_primary_color); g_variant_unref(v_bar_primary_val); g_variant_unref(v_bar_primary_max); } GVariant * DBusGUI_Marshall::put_TimerData(const GenericDBusApplet::TimerData *result) { GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType *)"(siuuuuuu)"); GVariant *v; v = put_string(&(result->bar_text)); g_variant_builder_add_value(&builder, v); v = put_int(&(result->slot)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_secondary_color)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_secondary_val)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_secondary_max)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_primary_color)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_primary_val)); g_variant_builder_add_value(&builder, v); v = put_uint32(&(result->bar_primary_max)); g_variant_builder_add_value(&builder, v); return g_variant_builder_end(&builder); } void DBusGUI_Marshall::get_MenuItem(GVariant *variant, GenericDBusApplet::MenuItem *result) { gsize num_fields = g_variant_n_children(variant); if (num_fields != 3) { throw DBusRemoteException() << message_info("Incorrect number of member in struct") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("MenuItem"); } GVariant *v_text = g_variant_get_child_value(variant, 0); get_string(v_text, &result->text); GVariant *v_command = g_variant_get_child_value(variant, 1); get_int32(v_command, &result->command); GVariant *v_flags = g_variant_get_child_value(variant, 2); get_int32(v_flags, &result->flags); g_variant_unref(v_text); g_variant_unref(v_command); g_variant_unref(v_flags); } GVariant * DBusGUI_Marshall::put_MenuItem(const GenericDBusApplet::MenuItem *result) { GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType *)"(sii)"); GVariant *v; v = put_string(&(result->text)); g_variant_builder_add_value(&builder, v); v = put_int32(&(result->command)); g_variant_builder_add_value(&builder, v); v = put_int32(&(result->flags)); g_variant_builder_add_value(&builder, v); return g_variant_builder_end(&builder); } void DBusGUI_Marshall::get_MenuItems(GVariant *variant, GenericDBusApplet::MenuItems *result) { GVariantIter iter; g_variant_iter_init(&iter, variant); GVariant *child; while ((child = g_variant_iter_next_value(&iter))) { GenericDBusApplet::MenuItem tmp; get_MenuItem(child, &tmp); result->push_back(tmp); g_variant_unref (child); } } GVariant * DBusGUI_Marshall::put_MenuItems(const GenericDBusApplet::MenuItems *result) { GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType *)"a(sii)"); GenericDBusApplet::MenuItems::const_iterator it; for (it = result->begin(); it != result->end(); it++) { GVariant *v = put_MenuItem(&(*it)); g_variant_builder_add_value(&builder, v); } return g_variant_builder_end(&builder); } class org_workrave_ControlInterface_Stub : public DBusBindingGio, public org_workrave_ControlInterface, DBusGUI_Marshall { private: typedef void (org_workrave_ControlInterface_Stub::*DBusMethodPointer)(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); struct DBusMethod { const string name; DBusMethodPointer fn; }; virtual void call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); virtual const char *get_interface_introspect() { return interface_introspect; } public: org_workrave_ControlInterface_Stub(IDBus::Ptr dbus); ~org_workrave_ControlInterface_Stub(); private: void OpenMain(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void Preferences(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void NetworkConnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void NetworkLog(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void NetworkReconnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void NetworkDisconnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void ReadingMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void Statistics(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void Exercises(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void RestBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void Quit(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void About(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); static const DBusMethod method_table[]; static const char *interface_introspect; }; org_workrave_ControlInterface *org_workrave_ControlInterface::instance(const ::workrave::dbus::IDBus::Ptr dbus) { org_workrave_ControlInterface_Stub *iface = NULL; DBusBinding *binding = dbus->find_binding("org.workrave.ControlInterface"); if (binding != NULL) { iface = dynamic_cast(binding); } return iface; } org_workrave_ControlInterface_Stub::org_workrave_ControlInterface_Stub(IDBus::Ptr dbus) : DBusBindingGio(dbus) { } org_workrave_ControlInterface_Stub::~org_workrave_ControlInterface_Stub() { } void org_workrave_ControlInterface_Stub::call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { const DBusMethod *table = method_table; while (table->fn != NULL) { if (method_name == table->name) { DBusMethodPointer ptr = table->fn; if (ptr != NULL) { (this->*ptr)(object, invocation, sender, inargs); } return; } table++; } throw DBusRemoteException() << message_info("Unknown method") << error_code_info(DBUS_ERROR_UNKNOWN_METHOD) << method_info(method_name) << interface_info("org.workrave.ControlInterface"); } void org_workrave_ControlInterface_Stub::OpenMain(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("OpenMain") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_open_main_window( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("OpenMain") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::Preferences(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Preferences") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_preferences( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Preferences") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::SetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; OperationMode p_mode ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetOperationMode") << interface_info("org.workrave.ControlInterface"); } GVariant *v_mode = g_variant_get_child_value(inargs, 0 ); get_operation_mode(v_mode, &p_mode); dbus_object->on_set_operation_mode( p_mode ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetOperationMode") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::NetworkConnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("NetworkConnect") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_network_join( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("NetworkConnect") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::NetworkLog(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; bool p_show ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("NetworkLog") << interface_info("org.workrave.ControlInterface"); } GVariant *v_show = g_variant_get_child_value(inargs, 0 ); get_bool(v_show, &p_show); dbus_object->on_menu_network_log( p_show ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("NetworkLog") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::NetworkReconnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("NetworkReconnect") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_network_reconnect( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("NetworkReconnect") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::NetworkDisconnect(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("NetworkDisconnect") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_network_leave( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("NetworkDisconnect") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::ReadingMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; bool p_show ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("ReadingMode") << interface_info("org.workrave.ControlInterface"); } GVariant *v_show = g_variant_get_child_value(inargs, 0 ); get_bool(v_show, &p_show); dbus_object->on_menu_reading( p_show ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("ReadingMode") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::Statistics(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Statistics") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_statistics( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Statistics") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::Exercises(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { #if defined(HAVE_EXERCISES) (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Exercises") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_exercises( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Exercises") << interface_info("org.workrave.ControlInterface"); throw; } #else (void) object; g_dbus_method_invocation_return_dbus_error (invocation, "org.workrave.NotImplemented", "This method is unavailable in current configuration"); #endif } void org_workrave_ControlInterface_Stub::RestBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("RestBreak") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_restbreak_now( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("RestBreak") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::Quit(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Quit") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_quit( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Quit") << interface_info("org.workrave.ControlInterface"); throw; } } void org_workrave_ControlInterface_Stub::About(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Menus *dbus_object = (Menus *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("About") << interface_info("org.workrave.ControlInterface"); } dbus_object->on_menu_about( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("About") << interface_info("org.workrave.ControlInterface"); throw; } } const org_workrave_ControlInterface_Stub::DBusMethod org_workrave_ControlInterface_Stub::method_table[] = { { "OpenMain", &org_workrave_ControlInterface_Stub::OpenMain }, { "Preferences", &org_workrave_ControlInterface_Stub::Preferences }, { "SetOperationMode", &org_workrave_ControlInterface_Stub::SetOperationMode }, { "NetworkConnect", &org_workrave_ControlInterface_Stub::NetworkConnect }, { "NetworkLog", &org_workrave_ControlInterface_Stub::NetworkLog }, { "NetworkReconnect", &org_workrave_ControlInterface_Stub::NetworkReconnect }, { "NetworkDisconnect", &org_workrave_ControlInterface_Stub::NetworkDisconnect }, { "ReadingMode", &org_workrave_ControlInterface_Stub::ReadingMode }, { "Statistics", &org_workrave_ControlInterface_Stub::Statistics }, { "Exercises", &org_workrave_ControlInterface_Stub::Exercises }, { "RestBreak", &org_workrave_ControlInterface_Stub::RestBreak }, { "Quit", &org_workrave_ControlInterface_Stub::Quit }, { "About", &org_workrave_ControlInterface_Stub::About }, { "", NULL } }; const char * org_workrave_ControlInterface_Stub::interface_introspect = " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n"; class org_workrave_AppletInterface_Stub : public DBusBindingGio, public org_workrave_AppletInterface, DBusGUI_Marshall { private: typedef void (org_workrave_AppletInterface_Stub::*DBusMethodPointer)(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); struct DBusMethod { const string name; DBusMethodPointer fn; }; virtual void call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); virtual const char *get_interface_introspect() { return interface_introspect; } public: org_workrave_AppletInterface_Stub(IDBus::Ptr dbus); ~org_workrave_AppletInterface_Stub(); void TimersUpdated(const string &path , GenericDBusApplet::TimerData µ , GenericDBusApplet::TimerData &rest , GenericDBusApplet::TimerData &daily ); void MenuUpdated(const string &path , GenericDBusApplet::MenuItems &menuitems ); void TrayIconUpdated(const string &path , bool enabled ); private: void Embed(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void Command(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void ButtonClicked(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetMenu(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTrayIconEnabled(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); static const DBusMethod method_table[]; static const char *interface_introspect; }; org_workrave_AppletInterface *org_workrave_AppletInterface::instance(const ::workrave::dbus::IDBus::Ptr dbus) { org_workrave_AppletInterface_Stub *iface = NULL; DBusBinding *binding = dbus->find_binding("org.workrave.AppletInterface"); if (binding != NULL) { iface = dynamic_cast(binding); } return iface; } org_workrave_AppletInterface_Stub::org_workrave_AppletInterface_Stub(IDBus::Ptr dbus) : DBusBindingGio(dbus) { } org_workrave_AppletInterface_Stub::~org_workrave_AppletInterface_Stub() { } void org_workrave_AppletInterface_Stub::call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { const DBusMethod *table = method_table; while (table->fn != NULL) { if (method_name == table->name) { DBusMethodPointer ptr = table->fn; if (ptr != NULL) { (this->*ptr)(object, invocation, sender, inargs); } return; } table++; } throw DBusRemoteException() << message_info("Unknown method") << error_code_info(DBUS_ERROR_UNKNOWN_METHOD) << method_info(method_name) << interface_info("org.workrave.AppletInterface"); } void org_workrave_AppletInterface_Stub::Embed(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { GenericDBusApplet *dbus_object = (GenericDBusApplet *) object; bool p_enabled ; std::string p_sender ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Embed") << interface_info("org.workrave.AppletInterface"); } GVariant *v_enabled = g_variant_get_child_value(inargs, 0 ); get_bool(v_enabled, &p_enabled); GVariant *v_sender = g_variant_get_child_value(inargs, 1 ); get_string(v_sender, &p_sender); dbus_object->applet_embed( p_enabled , p_sender ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Embed") << interface_info("org.workrave.AppletInterface"); throw; } } void org_workrave_AppletInterface_Stub::Command(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { GenericDBusApplet *dbus_object = (GenericDBusApplet *) object; int32_t p_command ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Command") << interface_info("org.workrave.AppletInterface"); } GVariant *v_command = g_variant_get_child_value(inargs, 0 ); get_int32(v_command, &p_command); dbus_object->applet_command( p_command ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Command") << interface_info("org.workrave.AppletInterface"); throw; } } void org_workrave_AppletInterface_Stub::ButtonClicked(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { GenericDBusApplet *dbus_object = (GenericDBusApplet *) object; uint32_t p_button ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("ButtonClicked") << interface_info("org.workrave.AppletInterface"); } GVariant *v_button = g_variant_get_child_value(inargs, 0 ); get_uint32(v_button, &p_button); dbus_object->button_clicked( p_button ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("ButtonClicked") << interface_info("org.workrave.AppletInterface"); throw; } } void org_workrave_AppletInterface_Stub::GetMenu(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { GenericDBusApplet *dbus_object = (GenericDBusApplet *) object; GenericDBusApplet::MenuItems p_menuitems ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetMenu") << interface_info("org.workrave.AppletInterface"); } dbus_object->get_menu( p_menuitems ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(a(sii))"); GVariant *v_menuitems = put_MenuItems(&p_menuitems); g_variant_builder_add_value(&builder, v_menuitems); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetMenu") << interface_info("org.workrave.AppletInterface"); throw; } } void org_workrave_AppletInterface_Stub::GetTrayIconEnabled(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { GenericDBusApplet *dbus_object = (GenericDBusApplet *) object; bool p_enabled ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTrayIconEnabled") << interface_info("org.workrave.AppletInterface"); } dbus_object->get_tray_icon_enabled( p_enabled ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_enabled = put_bool(&p_enabled); g_variant_builder_add_value(&builder, v_enabled); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTrayIconEnabled") << interface_info("org.workrave.AppletInterface"); throw; } } void org_workrave_AppletInterface_Stub::TimersUpdated(const string &path , GenericDBusApplet::TimerData µ , GenericDBusApplet::TimerData &rest , GenericDBusApplet::TimerData &daily ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"((siuuuuuu)(siuuuuuu)(siuuuuuu))"); GVariant *v_micro = put_TimerData(µ); g_variant_builder_add_value(&builder, v_micro); GVariant *v_rest = put_TimerData(&rest); g_variant_builder_add_value(&builder, v_rest); GVariant *v_daily = put_TimerData(&daily); g_variant_builder_add_value(&builder, v_daily); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.AppletInterface", "TimersUpdated", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_AppletInterface_Stub::MenuUpdated(const string &path , GenericDBusApplet::MenuItems &menuitems ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(a(sii))"); GVariant *v_menuitems = put_MenuItems(&menuitems); g_variant_builder_add_value(&builder, v_menuitems); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.AppletInterface", "MenuUpdated", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_AppletInterface_Stub::TrayIconUpdated(const string &path , bool enabled ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_enabled = put_bool(&enabled); g_variant_builder_add_value(&builder, v_enabled); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.AppletInterface", "TrayIconUpdated", out, &error); if (error != NULL) { g_error_free(error); } } const org_workrave_AppletInterface_Stub::DBusMethod org_workrave_AppletInterface_Stub::method_table[] = { { "Embed", &org_workrave_AppletInterface_Stub::Embed }, { "Command", &org_workrave_AppletInterface_Stub::Command }, { "ButtonClicked", &org_workrave_AppletInterface_Stub::ButtonClicked }, { "GetMenu", &org_workrave_AppletInterface_Stub::GetMenu }, { "GetTrayIconEnabled", &org_workrave_AppletInterface_Stub::GetTrayIconEnabled }, { "", NULL } }; const char * org_workrave_AppletInterface_Stub::interface_introspect = " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n"; void init_DBusGUI(IDBus::Ptr dbus) { dbus->register_binding("org.workrave.ControlInterface", new org_workrave_ControlInterface_Stub(dbus)); dbus->register_binding("org.workrave.AppletInterface", new org_workrave_AppletInterface_Stub(dbus)); }workrave-1.10.50/frontend/gtkmm/src/BreakWindow.cc0000644000175100001710000005744314221624107020707 0ustar00gdm00000000000000// Copyright (C) 2001 - 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #ifdef HAVE_STRINGS_H # include #endif #ifdef PLATFORM_OS_WINDOWS # include "W32Compat.hh" # include "W32ForceFocus.hh" # include #endif #include #include "preinclude.h" #include "debug.hh" #include "nls.h" #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef max #endif #include #include #include "BreakWindow.hh" #include "GUI.hh" #include "IBreak.hh" #include "IBreakResponse.hh" #include "GtkUtil.hh" #include "WindowHints.hh" #include "Frame.hh" #include "System.hh" #include "Util.hh" #include "ICore.hh" #include "IConfigurator.hh" #include "CoreFactory.hh" #if defined(PLATFORM_OS_WINDOWS) # include "DesktopWindow.hh" #elif defined(PLATFORM_OS_UNIX) # include "desktop-window.h" #endif using namespace workrave; //! Constructor /*! * \param control The controller. */ BreakWindow::BreakWindow(BreakId break_id, HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode) : Gtk::Window(Gtk::WINDOW_TOPLEVEL) , block_mode(mode) , break_flags(break_flags) , frame(NULL) , break_response(NULL) , break_id(break_id) , gui(NULL) , visible(false) , sysoper_model_columns(NULL) , accel_added(false) , accel_group(NULL) , lock_button(NULL) , postpone_button(NULL) , skip_button(NULL) , sysoper_combobox(NULL) , progress_bar(NULL) #ifdef PLATFORM_OS_WINDOWS , desktop_window(NULL) , force_focus_on_break_start(false) , parent(0) #endif { TRACE_ENTER("BreakWindow::BreakWindow"); if (mode != GUIConfig::BLOCK_MODE_NONE) { // Disable titlebar to appear like a popup set_decorated(false); set_skip_taskbar_hint(true); set_skip_pager_hint(true); #ifdef HAVE_GTK3 if (GtkUtil::running_on_wayland()) { set_app_paintable(true); signal_draw().connect(sigc::mem_fun(*this, &BreakWindow::on_draw)); signal_screen_changed().connect(sigc::mem_fun(*this, &BreakWindow::on_screen_changed)); on_screen_changed(get_screen()); set_size_request(head.get_width(), head.get_height()); } #endif } #ifdef HAVE_GTK3 else { if (GtkUtil::running_on_wayland()) { set_modal(true); } } #endif // On W32, must be *before* realize, otherwise a border is drawn. set_resizable(false); // Need to realize window before it is shown // Otherwise, there is not gobj()... realize(); #ifdef PLATFORM_OS_WINDOWS // Here's the secret: IMMEDIATELY after your window creation, set focus to it // THEN position it. So: HWND hwnd = (HWND)GDK_WINDOW_HWND(gtk_widget_get_window(Gtk::Widget::gobj())); SetFocus(hwnd); SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); #endif if (mode == GUIConfig::BLOCK_MODE_NONE) { Glib::RefPtr window = get_window(); window->set_functions(Gdk::FUNC_MOVE); } this->head = head; Gtk::Window::set_screen(head.screen); bool initial_ignore_activity = false; #ifdef PLATFORM_OS_WINDOWS if (W32ForceFocus::GetForceFocusValue()) initial_ignore_activity = true; CoreFactory::get_configurator()->get_value_with_default("advanced/force_focus_on_break_start", force_focus_on_break_start, true); #endif ICore *core = CoreFactory::get_core(); assert(core != NULL); core->set_insist_policy(initial_ignore_activity ? ICore::INSIST_POLICY_IGNORE : ICore::INSIST_POLICY_HALT); TRACE_EXIT(); } //! Init GUI void BreakWindow::init_gui() { if (gui == NULL) { gui = Gtk::manage(create_gui()); if (block_mode == GUIConfig::BLOCK_MODE_NONE) { set_border_width(12); add(*gui); } else { set_border_width(0); Frame *window_frame = Gtk::manage(new Frame()); window_frame->set_border_width(0); window_frame->set_frame_style(Frame::STYLE_BREAK_WINDOW); frame = Gtk::manage(new Frame()); frame->set_frame_style(Frame::STYLE_SOLID); frame->set_frame_width(6); frame->set_border_width(6); frame->set_frame_flashing(0); frame->set_frame_visible(false); window_frame->add(*frame); frame->add(*gui); if (block_mode == GUIConfig::BLOCK_MODE_ALL && !GtkUtil::running_on_wayland()) { #ifdef PLATFORM_OS_WINDOWS desktop_window = new DesktopWindow(head); add(*window_frame); #elif defined(PLATFORM_OS_UNIX) set_size_request(head.get_width(), head.get_height()); set_app_paintable(true); # ifdef HAVE_GTK3 Glib::RefPtr window = get_window(); set_desktop_background(window->gobj()); # else set_desktop_background(GTK_WIDGET(gobj())->window); # endif Gtk::Alignment *align = Gtk::manage(new Gtk::Alignment(0.5, 0.5, 0.0, 0.0)); align->add(*window_frame); add(*align); #endif } else { if (GtkUtil::running_on_wayland()) { Gtk::Alignment *align = Gtk::manage(new Gtk::Alignment(0.5, 0.5, 0.0, 0.0)); align->add(*window_frame); add(*align); } else { add(*window_frame); } } } // FIXME: check if it was intentionally not unset for RB if (break_id != BREAK_ID_REST_BREAK) { #ifdef HAVE_GTK3 set_can_focus(false); #else unset_flags(Gtk::CAN_FOCUS); #endif } show_all_children(); stick(); } } //! Destructor. BreakWindow::~BreakWindow() { TRACE_ENTER("BreakWindow::~BreakWindow"); if (frame != NULL) { frame->set_frame_flashing(0); } #ifdef PLATFORM_OS_WINDOWS delete desktop_window; #endif TRACE_EXIT(); } //! Centers the window. void BreakWindow::center() { GtkUtil::center_window(*this, head); } void BreakWindow::get_operation_name_and_icon(System::SystemOperation::SystemOperationType type, const char **name, const char **icon_name) { switch (type) { case System::SystemOperation::SYSTEM_OPERATION_NONE: *name = _("Lock..."); *icon_name = "lock.png"; break; case System::SystemOperation::SYSTEM_OPERATION_LOCK_SCREEN: *name = _("Lock"); *icon_name = "lock.png"; break; case System::SystemOperation::SYSTEM_OPERATION_SHUTDOWN: *name = _("Shutdown"); *icon_name = "shutdown.png"; break; case System::SystemOperation::SYSTEM_OPERATION_SUSPEND: *name = _("Suspend"); *icon_name = "shutdown.png"; break; case System::SystemOperation::SYSTEM_OPERATION_HIBERNATE: *name = _("Hibernate"); *icon_name = "shutdown.png"; break; case System::SystemOperation::SYSTEM_OPERATION_SUSPEND_HYBRID: *name = _("Suspend hybrid"); *icon_name = "shutdown.png"; break; default: throw "System::execute: Unknown system operation"; }; } void BreakWindow::append_row_to_sysoper_model(Glib::RefPtr &model, System::SystemOperation::SystemOperationType type) { TRACE_ENTER("BreakWindow::append_row_to_sysoper_model"); const char *name; const char *icon_name; get_operation_name_and_icon(type, &name, &icon_name); Gtk::TreeRow row = *(model->append()); if (sysoper_model_columns->has_button_images) { row[sysoper_model_columns->icon] = GtkUtil::create_pixbuf(icon_name); } row[sysoper_model_columns->name] = Glib::ustring(name); row[sysoper_model_columns->id] = type; TRACE_EXIT() } //! Creates the combo box containing options to suspend/hibernate/shutdown/etc // based on: // https://developer.gnome.org/gtkmm-tutorial/stable/sec-treeview-model.html.en // http://www.lugod.org/presentations/gtkmm/treeview.html // http://stackoverflow.com/questions/5894344/gtkmm-how-to-put-a-pixbuf-in-a-treeview Gtk::ComboBox * BreakWindow::create_sysoper_combobox() { TRACE_ENTER("BreakWindow::create_sysoper_combobox"); supported_system_operations = System::get_supported_system_operations(); bool has_button_images = GtkUtil::has_button_images(); if (supported_system_operations.empty()) { return NULL; } sysoper_model_columns = new SysoperModelColumns(has_button_images); Glib::RefPtr model = Gtk::ListStore::create(*sysoper_model_columns); append_row_to_sysoper_model(model, System::SystemOperation::SYSTEM_OPERATION_NONE); for (std::vector::iterator iter = supported_system_operations.begin(); iter != supported_system_operations.end(); ++iter) { append_row_to_sysoper_model(model, iter->type); } // if there are no operations to put in the combobox if (model->children().empty()) { delete sysoper_model_columns; sysoper_model_columns = NULL; TRACE_EXIT(); return NULL; } Gtk::ComboBox *comboBox = new Gtk::ComboBox(); comboBox->set_model(model); if (has_button_images) { comboBox->pack_start(sysoper_model_columns->icon, false); } comboBox->pack_start(sysoper_model_columns->name); comboBox->set_active(0); comboBox->signal_changed().connect(sigc::mem_fun(*this, &BreakWindow::on_sysoper_combobox_changed)); TRACE_EXIT(); return comboBox; } //! Shutdown/suspend/etc. button was clicked void BreakWindow::on_sysoper_combobox_changed() { // based on https://developer.gnome.org/gtkmm-tutorial/stable/combobox-example-full.html.en TRACE_ENTER("BreakWindow::on_sysoper_combobox_changed") Gtk::ListStore::const_iterator iter = sysoper_combobox->get_active(); if (!iter) { TRACE_RETURN("!iter"); return; } Gtk::ListStore::Row row = *iter; if (!row) { TRACE_RETURN("!row"); return; } if (row[sysoper_model_columns->id] == System::SystemOperation::SYSTEM_OPERATION_NONE) { TRACE_RETURN("SYSTEM_OPERATION_NONE"); return; } IGUI *gui = GUI::get_instance(); assert(gui != NULL); gui->interrupt_grab(); System::execute(row[sysoper_model_columns->id]); // this will fire this method again with SYSTEM_OPERATION_NONE active sysoper_combobox->set_active(0); } //! Creates the skip button. Gtk::Button * BreakWindow::create_skip_button() { Gtk::Button *ret; ret = Gtk::manage(GtkUtil::create_custom_stock_button(_("_Skip"), Gtk::Stock::CLOSE)); ret->signal_clicked().connect(sigc::mem_fun(*this, &BreakWindow::on_skip_button_clicked)); #ifdef HAVE_GTK3 ret->set_can_focus(false); #else GTK_WIDGET_UNSET_FLAGS(ret->gobj(), GTK_CAN_FOCUS); #endif return ret; } //! Creates the postpone button. Gtk::Button * BreakWindow::create_postpone_button() { Gtk::Button *ret; ret = Gtk::manage(GtkUtil::create_custom_stock_button(_("_Postpone"), Gtk::Stock::REDO)); ret->signal_clicked().connect(sigc::mem_fun(*this, &BreakWindow::on_postpone_button_clicked)); #ifdef HAVE_GTK3 ret->set_can_focus(false); #else GTK_WIDGET_UNSET_FLAGS(ret->gobj(), GTK_CAN_FOCUS); #endif return ret; } //! Creates the lock button. Gtk::Button * BreakWindow::create_lock_button() { Gtk::Button *ret; const char *name; const char *icon_name; get_operation_name_and_icon(System::SystemOperation::SYSTEM_OPERATION_LOCK_SCREEN, &name, &icon_name); ret = Gtk::manage(GtkUtil::create_image_button(name, icon_name)); ret->signal_clicked().connect(sigc::mem_fun(*this, &BreakWindow::on_lock_button_clicked)); #ifdef HAVE_GTK3 ret->set_can_focus(false); #else GTK_WIDGET_UNSET_FLAGS(ret->gobj(), GTK_CAN_FOCUS); #endif return ret; } void BreakWindow::update_skip_postpone_lock() { if ((postpone_button != NULL && !postpone_button->get_sensitive()) || (skip_button != NULL && !skip_button->get_sensitive())) { bool skip_locked = false; bool postpone_locked = false; BreakId overdue_break_id = BREAK_ID_NONE; check_skip_postpone_lock(skip_locked, postpone_locked, overdue_break_id); if (progress_bar) { if (overdue_break_id != BREAK_ID_NONE) { ICore *core = CoreFactory::get_core(); IBreak *b = core->get_break(BreakId(overdue_break_id)); progress_bar->set_fraction(1.0 - ((double)b->get_elapsed_idle_time()) / b->get_auto_reset()); } else { progress_bar->hide(); } } if (!postpone_locked && postpone_button != NULL) { postpone_button->set_has_tooltip(false); postpone_button->set_sensitive(true); } if (!skip_locked && skip_button != NULL) { skip_button->set_has_tooltip(false); skip_button->set_sensitive(true); } } } //! User has closed the main window. bool BreakWindow::on_delete_event(GdkEventAny *) { if (block_mode == GUIConfig::BLOCK_MODE_NONE) { on_postpone_button_clicked(); } return TRUE; } //! Break response inline void BreakWindow::set_response(IBreakResponse *bri) { break_response = bri; } //! The postpone button was clicked. void BreakWindow::on_postpone_button_clicked() { TRACE_ENTER("BreakWindow::on_postpone_button_clicked"); if (break_response != NULL) { break_response->postpone_break(break_id); } TRACE_EXIT(); } //! The skip button was clicked. void BreakWindow::on_skip_button_clicked() { if (break_response != NULL) { break_response->skip_break(break_id); } } //! The lock button was clicked. void BreakWindow::on_lock_button_clicked() { IGUI *gui = GUI::get_instance(); assert(gui != NULL); gui->interrupt_grab(); System::execute(System::SystemOperation::SYSTEM_OPERATION_LOCK_SCREEN); } void BreakWindow::check_skip_postpone_lock(bool &skip_locked, bool &postpone_locked, BreakId &overdue_break_id) { TRACE_ENTER("BreakWindow::check_skip_postpone_lock"); skip_locked = false; postpone_locked = false; overdue_break_id = BREAK_ID_NONE; ICore *core = CoreFactory::get_core(); OperationMode mode = core->get_operation_mode(); if (mode == OPERATION_MODE_NORMAL) { for (int id = break_id - 1; id >= 0; id--) { IBreak *b = core->get_break(BreakId(id)); bool overdue = b->get_elapsed_time() > b->get_limit(); if ((!(break_flags & BreakWindow::BREAK_FLAGS_USER_INITIATED)) || b->is_max_preludes_reached()) { if (!GUIConfig::get_ignorable(BreakId(id))) { postpone_locked = overdue; } if (!GUIConfig::get_skippable(BreakId(id))) { skip_locked = overdue; } if (skip_locked || postpone_locked) { overdue_break_id = BreakId(id); return; } } } } TRACE_EXIT(); } //! Control buttons. Gtk::Box * BreakWindow::create_bottom_box(bool lockable, bool shutdownable) { accel_group = Gtk::AccelGroup::create(); add_accel_group(accel_group); Gtk::VBox *vbox = new Gtk::VBox(false, 0); button_size_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_HORIZONTAL); box_size_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_HORIZONTAL); if ((break_flags != BREAK_FLAGS_NONE) || lockable || shutdownable) { Gtk::HBox *top_box = Gtk::manage(new Gtk::HBox(false, 0)); Gtk::HBox *bottom_box = Gtk::manage(new Gtk::HBox(false, 6)); vbox->pack_end(*bottom_box, Gtk::PACK_SHRINK, 2); if (break_flags != BREAK_FLAGS_NONE) { Gtk::HButtonBox *button_box = Gtk::manage(new Gtk::HButtonBox(Gtk::BUTTONBOX_END, 6)); bottom_box->pack_end(*button_box, Gtk::PACK_SHRINK, 0); bool skip_locked = false; bool postpone_locked = false; BreakId overdue_break_id = BREAK_ID_NONE; check_skip_postpone_lock(skip_locked, postpone_locked, overdue_break_id); if ((break_flags & BREAK_FLAGS_SKIPPABLE) != 0) { skip_button = create_skip_button(); skip_button->set_sensitive(!skip_locked); if (skip_locked) { const char *msg = _("You cannot skip this break while another non-skippable break is overdue."); skip_button->set_tooltip_text(msg); } button_box->pack_end(*skip_button, Gtk::PACK_EXPAND_WIDGET, 0); button_size_group->add_widget(*skip_button); } if ((break_flags & BREAK_FLAGS_POSTPONABLE) != 0) { postpone_button = create_postpone_button(); postpone_button->set_sensitive(!postpone_locked); if (postpone_locked) { const char *msg = _("You cannot postpone this break while another non-postponable break is overdue."); postpone_button->set_tooltip_text(msg); } button_box->pack_end(*postpone_button, Gtk::PACK_EXPAND_WIDGET, 0); button_size_group->add_widget(*postpone_button); } if (skip_locked || postpone_locked) { Gtk::HBox *progress_bar_box = Gtk::manage(new Gtk::HBox(false, 0)); progress_bar = Gtk::manage(new Gtk::ProgressBar); #ifdef HAVE_GTK3 progress_bar->set_orientation(Gtk::ORIENTATION_HORIZONTAL); #else progress_bar->set_orientation(Gtk::PROGRESS_LEFT_TO_RIGHT); #endif progress_bar->set_fraction(0); progress_bar->set_name("locked-progress"); update_skip_postpone_lock(); vbox->pack_end(*top_box, Gtk::PACK_SHRINK, 0); top_box->pack_end(*progress_bar_box, Gtk::PACK_SHRINK, 0); Gtk::Alignment *align; if (skip_locked && postpone_locked) { align = Gtk::manage(new Gtk::Alignment(0, 0, 1.0, 0.0)); } else if (skip_locked) { align = Gtk::manage(new Gtk::Alignment(0, 1, 0.0, 0.0)); } else { align = Gtk::manage(new Gtk::Alignment(1, 0, 0, 0.0)); } align->add(*progress_bar); progress_bar_box->pack_end(*align, Gtk::PACK_EXPAND_WIDGET, 6); box_size_group->add_widget(*progress_bar_box); box_size_group->add_widget(*button_box); button_size_group->add_widget(*progress_bar); #if GTK_CHECK_VERSION(3, 0, 0) const char style[] = "progress, trough {\n" "min-width: 1px;\n" "}"; Glib::RefPtr css_provider = Gtk::CssProvider::create(); Glib::RefPtr style_context = progress_bar->get_style_context(); css_provider->load_from_data(style); style_context->add_provider(css_provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); #endif } } //#ifdef HAVE_GTK3 if (lockable || shutdownable) { if (shutdownable) { sysoper_combobox = create_sysoper_combobox(); if (sysoper_combobox != NULL) { bottom_box->pack_end(*sysoper_combobox, Gtk::PACK_SHRINK, 0); } } else { lock_button = create_lock_button(); if (lock_button != NULL) { bottom_box->pack_end(*lock_button, Gtk::PACK_SHRINK, 0); } } } //#endif } return vbox; } //! Starts the daily limit. void BreakWindow::init() { TRACE_ENTER("BreakWindow::init"); init_gui(); TRACE_EXIT(); } static void disable_button_focus(GtkWidget *w) { if (GTK_IS_CONTAINER(w)) { gtk_container_forall(GTK_CONTAINER(w), (GtkCallback)disable_button_focus, NULL); } if (GTK_IS_BUTTON(w)) { gtk_widget_set_can_focus(w, FALSE); } } //! Starts the daily limit. void BreakWindow::start() { TRACE_ENTER("BreakWindow::start"); // Need to realize window before it is shown // Otherwise, there is not gobj()... realize_if_needed(); // Set some window hints. set_skip_pager_hint(true); set_skip_taskbar_hint(true); WindowHints::set_always_on_top(this, true); update_break_window(); center(); #ifdef PLATFORM_OS_WINDOWS if (desktop_window) desktop_window->set_visible(true); #endif show_all(); WindowHints::set_always_on_top(this, true); #ifdef PLATFORM_OS_WINDOWS if (force_focus_on_break_start && (this->head.count == 0)) { HWND hwnd = (HWND)GDK_WINDOW_HWND(Gtk::Widget::gobj()->window); bool focused = W32ForceFocus::ForceWindowFocus(hwnd); bool this_is_a_dummy_var_to_fool_visual_studio_debugger = focused; } #endif // In case the show_all resized the window... center(); if (sysoper_combobox != NULL) { // Setting "can focus" of the sysoper combobox to false is not enough to // prevent the combobox from taking the focus. A combobox has an internal // button that still has 'can focus' set to true. // So, unset 'can focus' of this button... disable_button_focus(GTK_WIDGET(sysoper_combobox->gobj())); // ...and clear the focus of the break window, which already focussed // the button. GtkWidget *toplevel = gtk_widget_get_toplevel(GTK_WIDGET(sysoper_combobox->gobj())); if (gtk_widget_is_toplevel(toplevel)) { gtk_window_set_focus(GTK_WINDOW(toplevel), NULL); } } TRACE_EXIT(); } //! Stops the daily limit. void BreakWindow::stop() { TRACE_ENTER("BreakWindow::stop"); if (frame != NULL) { frame->set_frame_flashing(0); } #ifdef HAVE_GTK3 hide(); #else hide_all(); #endif visible = false; #ifdef PLATFORM_OS_WINDOWS if (desktop_window) desktop_window->set_visible(false); #endif TRACE_EXIT(); } //! Self-Destruct /*! * This method MUST be used to destroy the objects through the * IBreakWindow. it is NOT possible to do a delete on * this interface... */ void BreakWindow::destroy() { delete this; } //! Refresh void BreakWindow::refresh() { TRACE_ENTER("BreakWindow::refresh"); update_skip_postpone_lock(); update_break_window(); #ifdef PLATFORM_OS_WINDOWS W32Compat::RefreshBreakWindow(*this); #endif TRACE_EXIT(); } Glib::RefPtr BreakWindow::get_gdk_window() { return get_window(); } void BreakWindow::update_break_window() { } #ifdef HAVE_GTK3 bool BreakWindow::on_draw(const Cairo::RefPtr &cr) { cr->save(); if (block_mode == GUIConfig::BLOCK_MODE_ALL) { cr->set_source_rgba(0, 0, 0, 0.95); } else { cr->set_source_rgba(0.1, 0.1, 0.1, 0.1); } cr->set_operator(Cairo::OPERATOR_SOURCE); cr->paint(); cr->restore(); return Gtk::Window::on_draw(cr); } void BreakWindow::on_screen_changed(const Glib::RefPtr &previous_screen) { (void)previous_screen; const Glib::RefPtr screen = get_screen(); const Glib::RefPtr visual = screen->get_rgba_visual(); if (visual) { gtk_widget_set_visual(GTK_WIDGET(gobj()), visual->gobj()); } } #endif workrave-1.10.50/frontend/gtkmm/src/macros.h0000644000175100001710000001372314221624107017612 0ustar00gdm00000000000000/* * macros.h * * Copyright (C) 2002, 2003, 2007 Rob Caelers * All rights reserved. * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef MACROS_H #define MACROS_H #define WR_METHOD(rettype, method, args...) \ static rettype static_##method(PortableServer_Servant, args, CORBA_Environment *); \ rettype method(args) #define WR_METHOD_NOARGS(rettype, method) \ static rettype static_##method(PortableServer_Servant, CORBA_Environment *); \ rettype method(void) #define WR_METHOD_ARGS0_IMPL(rettype, method) \ rettype WR_C_CLASS::static_##method(PortableServer_Servant s, CORBA_Environment *ev) \ { \ (void)ev; \ WR_CLASS *obj = WR_CAST(bonobo_object_from_servant(s)); \ WR_C_CLASS *c = obj->_this; \ c->method(); \ } \ rettype WR_C_CLASS::method() #define WR_METHOD_ARGS1_IMPL(rettype, method, t1, v1) \ rettype WR_C_CLASS::static_##method(PortableServer_Servant s, t1 v1, CORBA_Environment *ev) \ { \ (void)ev; \ WR_CLASS *obj = WR_CAST(bonobo_object_from_servant(s)); \ WR_C_CLASS *c = obj->_this; \ c->method(v1); \ } \ rettype WR_C_CLASS::method(t1 v1) #define WR_METHOD_ARGS2_IMPL(rettype, method, t1, v1, t2, v2) \ rettype WR_C_CLASS::static_##method(PortableServer_Servant s, t1 v1, t2 v2, CORBA_Environment *ev) \ { \ (void)ev; \ WR_CLASS *obj = WR_CAST(bonobo_object_from_servant(s)); \ WR_C_CLASS *c = obj->_this; \ c->method(v1, v2); \ } \ rettype WR_C_CLASS::method(t1 v1, t2 v2) #define WR_METHOD_ARGS3_IMPL(rettype, method, t1, v1, t2, v2, t3, v3) \ rettype WR_C_CLASS::static_##method(PortableServer_Servant s, t1 v1, t2 v2, t3 v3, CORBA_Environment *ev) \ { \ (void)ev; \ WR_CLASS *obj = WR_CAST(bonobo_object_from_servant(s)); \ WR_C_CLASS *c = obj->_this; \ c->method(v1, v2, v3); \ } \ rettype WR_C_CLASS::method(t1 v1, t2 v2, t3 v3) #define WR_METHOD_ARGS4_IMPL(rettype, method, t1, v1, t2, v2, t3, v3, t4, v4) \ rettype WR_C_CLASS::static_##method(PortableServer_Servant s, t1 v1, t2 v2, t3 v3, t4, v4, CORBA_Environment *ev) \ { \ (void)ev; \ WR_CLASS *obj = WR_CAST(bonobo_object_from_servant(s)); \ WR_C_CLASS *c = obj->_this; \ c->method(v1, v2, v3, v4); \ } \ rettype WR_C_CLASS::method(t1 v1, t2 v2, t3 v3, t4, v4) #define WR_REG_METHOD1(x, y) epv->y = &WR_C_CLASS ::x##_##y; #define WR_REG_METHOD2(x, y) WR_REG_METHOD1(x, y) #define WR_REG_METHOD3(x) WR_REG_METHOD2(static, x) #define WR_INIT1(x, y) \ static void x##_class_init(y##Class *); \ static void x##_init(y *); \ static GType x##_get_type(); \ static WR_CLASS *x##_new(void); #define WR_INIT2(x, y) WR_INIT1(x, y) #define WR_INIT3() WR_INIT2(WR_PREFIX, WR_CLASS) #define WR_METHOD_REGISTER(x) WR_REG_METHOD3(x) #define WR_INIT() WR_INIT3() #endif /* MACROS_H */ workrave-1.10.50/frontend/gtkmm/src/MenuBase.hh0000644000175100001710000000216414221624107020172 0ustar00gdm00000000000000// MenuBase.hh --- Menu // // Copyright (C) 2001 - 2009, 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MENUBASE_HH #define MENUBASE_HH #include "IMenu.hh" class MenuBase : public IMenu { public: virtual ~MenuBase() {} virtual void init() {} virtual void add_accel(Gtk::Window &window) { (void)window; } virtual void popup(const guint button, const guint activate_time) { (void)button; (void)activate_time; }; }; #endif // MENUBASE_HH workrave-1.10.50/frontend/gtkmm/src/AppletWindow.cc0000644000175100001710000000276714221624107021107 0ustar00gdm00000000000000// AppletWindow.cc --- Applet info Window // // Copyright (C) 2001 - 2008, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "AppletWindow.hh" #include "ITimerBoxView.hh" #include "TimerBoxControl.hh" AppletWindow::AppletWindow() : timer_box_view(nullptr) , timer_box_control(nullptr) { } void AppletWindow::set_applet_tooltip(const std::string &tip) { if (timer_box_view) { timer_box_view->set_tip(tip); } } void AppletWindow::update_applet() { TRACE_ENTER("AppletWindow::update_applet"); if (timer_box_control) { timer_box_control->update(); } TRACE_EXIT(); } void AppletWindow::init_applet() { } sigc::signal & AppletWindow::signal_visibility_changed() { return visibility_changed_signal; } workrave-1.10.50/frontend/gtkmm/src/MainWindow.cc0000644000175100001710000004607614221624107020547 0ustar00gdm00000000000000// MainWindow.cc --- Main info Window // // Copyright (C) 2001 - 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_WINDOWS # include # include #endif #include "nls.h" #include "debug.hh" #ifdef HAVE_UNISTD_H # include #endif #include "MainWindow.hh" #include #include #include "CoreFactory.hh" #include "IConfigurator.hh" #include "TimerBoxGtkView.hh" #include "TimerBoxControl.hh" #include "GUI.hh" #include "GtkUtil.hh" #include "Menus.hh" #ifdef PLATFORM_OS_WINDOWS const char *WIN32_MAIN_CLASS_NAME = "Workrave"; const UINT MYWM_TRAY_MESSAGE = WM_USER + 0x100; #endif using namespace std; //! Constructor. /*! * \param gui the main GUI entry point. * \param control Interface to the controller. */ MainWindow::MainWindow() : enabled(true) , can_close(true) , timer_box_control(NULL) , timer_box_view(NULL) , window_location(-1, -1) , window_head_location(-1, -1) , window_relocated_location(-1, -1) { #ifdef PLATFORM_OS_UNIX leader = NULL; #endif #ifdef PLATFORM_OS_WINDOWS show_retry_count = 0; #endif } //! Destructor. MainWindow::~MainWindow() { TRACE_ENTER("MainWindow::~MainWindow"); if (visible_connection.connected()) { visible_connection.disconnect(); } #ifdef PLATFORM_OS_WINDOWS if (timeout_connection.connected()) { timeout_connection.disconnect(); } #endif delete timer_box_control; #ifdef PLATFORM_OS_WINDOWS win32_exit(); #endif #ifdef PLATFORM_OS_UNIX delete leader; #endif TRACE_EXIT(); } bool MainWindow::is_visible() const { #if defined(PLATFORM_OS_WINDOWS) const GtkWidget *window = Gtk::Widget::gobj(); GdkWindow *gdk_window = gtk_widget_get_window(GTK_WIDGET(window)); HWND hwnd = (HWND)GDK_WINDOW_HWND(gdk_window); return IsWindowVisible(hwnd); #elif defined(HAVE_GTK3) return get_visible(); #else return Gtk::Window::is_visible(); #endif } void MainWindow::toggle_window() { TRACE_ENTER("MainWindow::toggle_window"); bool visible = is_visible(); if (visible) { close_window(); } else { open_window(); } TRACE_EXIT(); } //! Opens the main window. void MainWindow::open_window() { TRACE_ENTER("MainWindow::open_window"); if (timer_box_view->get_visible_count() > 0) { #ifdef PLATFORM_OS_WINDOWS win32_show(true); show_all(); #else show_all(); deiconify(); #endif int x, y, head; set_position(Gtk::WIN_POS_NONE); set_gravity(Gdk::GRAVITY_STATIC); get_start_position(x, y, head); #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; get_preferred_size(min_size, natural_size); #else GtkRequisition min_size; on_size_request(&min_size); #endif GUI::get_instance()->bound_head(x, y, min_size.width, min_size.height, head); GUI::get_instance()->map_from_head(x, y, head); TRACE_MSG("moving to " << x << " " << y); move(x, y); bool always_on_top = GUIConfig::get_always_on_top(); WindowHints::set_always_on_top(this, always_on_top); TimerBoxControl::set_enabled("main_window", true); } TRACE_EXIT(); } //! Closes the main window. void MainWindow::close_window() { TRACE_ENTER("MainWindow::close_window"); #ifdef PLATFORM_OS_WINDOWS win32_show(false); #elif defined(PLATFORM_OS_MACOS) hide_all(); #else if (can_close) { hide(); } else { iconify(); } #endif TimerBoxControl::set_enabled("main_window", false); TRACE_EXIT(); } void MainWindow::set_can_close(bool can_close) { TRACE_ENTER_MSG("MainWindow::set_can_close", can_close); this->can_close = can_close; TRACE_MSG(enabled); if (!enabled) { if (can_close) { TRACE_MSG("hide"); hide(); } else { TRACE_MSG("iconify"); iconify(); show_all(); } } TRACE_EXIT(); } //! Updates the main window. void MainWindow::update() { timer_box_control->update(); } //! Initializes the main window. void MainWindow::init() { TRACE_ENTER("MainWindow::init"); set_border_width(2); set_resizable(false); list> icons; const char *icon_files[] = { #ifndef PLATFORM_OS_WINDOWS // This causes a crash on windows "scalable" G_DIR_SEPARATOR_S "workrave.svg", #endif "16x16" G_DIR_SEPARATOR_S "workrave.png", "24x24" G_DIR_SEPARATOR_S "workrave.png", "32x32" G_DIR_SEPARATOR_S "workrave.png", "48x48" G_DIR_SEPARATOR_S "workrave.png", "64x64" G_DIR_SEPARATOR_S "workrave.png", "96x96" G_DIR_SEPARATOR_S "workrave.png", "128x128" G_DIR_SEPARATOR_S "workrave.png", }; for (unsigned int i = 0; i < sizeof(icon_files) / sizeof(char *); i++) { Glib::RefPtr pixbuf = GtkUtil::create_pixbuf(icon_files[i]); if (pixbuf) { icons.push_back(pixbuf); } } Glib::ListHandle> icon_list(icons); Gtk::Window::set_default_icon_list(icon_list); // Gtk::Window::set_default_icon_name("workrave"); enabled = TimerBoxControl::is_enabled("main_window"); timer_box_view = Gtk::manage(new TimerBoxGtkView(Menus::MENU_MAINWINDOW)); timer_box_control = new TimerBoxControl("main_window", *timer_box_view); timer_box_view->set_geometry(ORIENTATION_LEFT, -1); timer_box_control->update(); Gtk::EventBox *eventbox = new Gtk::EventBox; eventbox->set_visible_window(false); eventbox->set_events(eventbox->get_events() | Gdk::BUTTON_PRESS_MASK); #ifndef PLATFORM_OS_MACOS // No popup menu on OS X eventbox->signal_button_press_event().connect(sigc::mem_fun(*this, &MainWindow::on_timer_view_button_press_event)); #endif eventbox->add(*timer_box_view); add(*eventbox); // Necessary for popup menu realize_if_needed(); Glib::RefPtr window = get_window(); // Window decorators window->set_decorations(Gdk::DECOR_BORDER | Gdk::DECOR_TITLE | Gdk::DECOR_MENU); // This used to be W32 only: // window->set_functions(Gdk::FUNC_CLOSE|Gdk::FUNC_MOVE); // (end window decorators) #ifdef PLATFORM_OS_UNIX // HACK. this sets a different group leader in the WM_HINTS.... // Without this hack, metacity makes ALL windows on-top. leader = new Gtk::Window(Gtk::WINDOW_POPUP); gtk_widget_realize(GTK_WIDGET(leader->gobj())); Glib::RefPtr leader_window = leader->get_window(); window->set_group(leader_window); #endif stick(); setup(); #ifdef PLATFORM_OS_WINDOWS win32_init(); set_gravity(Gdk::GRAVITY_STATIC); set_position(Gtk::WIN_POS_NONE); # ifdef HAVE_NOT_PROPER_SIZED_MAIN_WINDOW_ON_STARTUP // This is the proper code, see hacked code below. if (!enabled) { move(-1024, 0); show_all(); win32_show(false); move_to_start_position(); } else { move_to_start_position(); show_all(); } # else // Hack deprecated: Since GTK+ 2.10 no longer necessary // Hack: since GTK+ 2.2.4 the window is too wide, it incorporates room // for the "_ [ ] [X]" buttons somehow. This hack fixes just that. move(-1024, 0); // Move off-screen to reduce wide->narrow flickering show_all(); HWND hwnd = (HWND)GDK_WINDOW_HWND(window->gobj()); SetWindowPos(hwnd, NULL, 0, 0, 1, 1, SWP_FRAMECHANGED | SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOMOVE); if (!enabled) { win32_show(false); } move_to_start_position(); // (end of hack) # endif #else set_gravity(Gdk::GRAVITY_STATIC); set_position(Gtk::WIN_POS_NONE); show_all(); move_to_start_position(); if (!enabled) // || get_start_in_tray()) { # ifndef PLATFORM_OS_MACOS iconify(); # endif close_window(); } #endif setup(); set_title("Workrave"); IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(TimerBoxControl::CFG_KEY_TIMERBOX + "main_window", this); visible_connection = property_visible().signal_changed().connect(sigc::mem_fun(*this, &MainWindow::on_visibility_changed)); TRACE_EXIT(); } //! Setup configuration settings. void MainWindow::setup() { TRACE_ENTER("MainWindow::setup"); bool new_enabled = TimerBoxControl::is_enabled("main_window"); bool always_on_top = GUIConfig::get_always_on_top(); TRACE_MSG("can_close " << new_enabled); TRACE_MSG("enabled " << new_enabled); TRACE_MSG("on top " << always_on_top); if (enabled != new_enabled) { enabled = new_enabled; if (enabled) { open_window(); } else { close_window(); } } bool visible = is_visible(); if (visible) { WindowHints::set_always_on_top(this, always_on_top); } if (visible && always_on_top) { raise(); } TRACE_EXIT(); } //! User has closed the main window. bool MainWindow::on_delete_event(GdkEventAny *) { TRACE_ENTER("MainWindow::on_delete_event"); IGUI *gui = GUI::get_instance(); assert(gui != NULL); #if defined(PLATFORM_OS_WINDOWS) win32_show(false); closed_signal.emit(); TimerBoxControl::set_enabled("main_window", false); #elif defined(PLATFORM_OS_MACOS) close_window(); TimerBoxControl::set_enabled("main_window", false); #else if (can_close) { close_window(); TimerBoxControl::set_enabled("main_window", false); } else { gui->terminate(); } #endif TRACE_EXIT(); return true; } bool MainWindow::on_timer_view_button_press_event(GdkEventButton *event) { TRACE_ENTER("MainWindow::on_timer_view_button_press_event"); bool ret = false; (void)event; if ((event->type == GDK_BUTTON_PRESS) && (event->button == 3)) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->popup(Menus::MENU_MAINWINDOW, event->button, event->time); ret = true; } TRACE_EXIT(); return ret; } void MainWindow::config_changed_notify(const string &key) { TRACE_ENTER_MSG("MainWindow::config_changed_notify", key); if (key != GUIConfig::CFG_KEY_MAIN_WINDOW_HEAD && key != GUIConfig::CFG_KEY_MAIN_WINDOW_X && key != GUIConfig::CFG_KEY_MAIN_WINDOW_Y) { setup(); } TRACE_EXIT(); } #ifdef PLATFORM_OS_WINDOWS void MainWindow::win32_show(bool b) { TRACE_ENTER_MSG("MainWindow::win32_show", b); bool retry = false; // Gtk's hide() seems to quit the program. GtkWidget *window = Gtk::Widget::gobj(); GdkWindow *gdk_window = gtk_widget_get_window(window); HWND hwnd = (HWND)GDK_WINDOW_HWND(gdk_window); ShowWindow(hwnd, b ? SW_SHOWNORMAL : SW_HIDE); visibility_changed_signal.emit(); if (b) { present(); if (hwnd != GetForegroundWindow()) { if (show_retry_count == 0) { show_retry_count = 20; } else { show_retry_count--; } TRACE_MSG("2 " << show_retry_count); retry = true; } } if (retry) { if (show_retry_count > 0) { timeout_connection = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MainWindow::win32_show_retry), 50); } } else { show_retry_count = 0; } TRACE_EXIT(); } bool MainWindow::win32_show_retry() { TRACE_ENTER("MainWindow::win32_show_retry"); if (show_retry_count > 0) { TRACE_MSG("retry"); win32_show(true); } TRACE_EXIT(); return false; } void MainWindow::win32_init() { TRACE_ENTER("MainWindow::win32_init"); win32_hinstance = (HINSTANCE)GetModuleHandle(NULL); WNDCLASSEX wclass = { sizeof(WNDCLASSEX), 0, win32_window_proc, 0, 0, win32_hinstance, NULL, NULL, NULL, NULL, WIN32_MAIN_CLASS_NAME, NULL}; /* ATOM atom = */ RegisterClassEx(&wclass); win32_main_hwnd = CreateWindowEx(WS_EX_TOOLWINDOW, WIN32_MAIN_CLASS_NAME, "Workrave", WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, (HWND)NULL, (HMENU)NULL, win32_hinstance, (LPSTR)NULL); ShowWindow(win32_main_hwnd, SW_HIDE); // User data SetWindowLong(win32_main_hwnd, GWL_USERDATA, (LONG)this); // Reassign ownership GtkWidget *window = Gtk::Widget::gobj(); GdkWindow *gdk_window = gtk_widget_get_window(window); HWND hwnd = (HWND)GDK_WINDOW_HWND(gdk_window); SetWindowLong(hwnd, GWL_HWNDPARENT, (LONG)win32_main_hwnd); TRACE_EXIT(); } void MainWindow::win32_exit() { DestroyWindow(win32_main_hwnd); UnregisterClass(WIN32_MAIN_CLASS_NAME, GetModuleHandle(NULL)); } #endif void MainWindow::get_start_position(int &x, int &y, int &head) { TRACE_ENTER("MainWindow::get_start_position"); // FIXME: Default to right-bottom instead of 256x256 IConfigurator *cfg = CoreFactory::get_configurator(); cfg->get_value_with_default(GUIConfig::CFG_KEY_MAIN_WINDOW_X, x, 256); cfg->get_value_with_default(GUIConfig::CFG_KEY_MAIN_WINDOW_Y, y, 256); cfg->get_value_with_default(GUIConfig::CFG_KEY_MAIN_WINDOW_HEAD, head, 0); if (head < 0) { head = 0; } TRACE_MSG(x << " " << y << " " << head); TRACE_EXIT(); } void MainWindow::set_start_position(int x, int y, int head) { TRACE_ENTER_MSG("MainWindow::set_start_position", x << " " << y << " " << head); IConfigurator *cfg = CoreFactory::get_configurator(); cfg->set_value(GUIConfig::CFG_KEY_MAIN_WINDOW_X, x); cfg->set_value(GUIConfig::CFG_KEY_MAIN_WINDOW_Y, y); cfg->set_value(GUIConfig::CFG_KEY_MAIN_WINDOW_HEAD, head); TRACE_EXIT(); } void MainWindow::move_to_start_position() { TRACE_ENTER("MainWindow::move_to_start_position"); int x, y, head; get_start_position(x, y, head); #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; get_preferred_size(min_size, natural_size); #else GtkRequisition min_size; on_size_request(&min_size); #endif GUI::get_instance()->bound_head(x, y, min_size.width, min_size.height, head); window_head_location.set_x(x); window_head_location.set_y(y); GUI::get_instance()->map_from_head(x, y, head); TRACE_MSG("Main window size " << min_size.width << " " << min_size.height); window_location.set_x(x); window_location.set_y(y); window_relocated_location.set_x(x); window_relocated_location.set_y(y); TRACE_MSG("moving to " << x << " " << y); move(x, y); } bool MainWindow::on_configure_event(GdkEventConfigure *event) { TRACE_ENTER_MSG("MainWindow::on_configure_event", event->x << " " << event->y); locate_window(event); bool ret = Widget::on_configure_event(event); TRACE_EXIT(); return ret; } void MainWindow::locate_window(GdkEventConfigure *event) { TRACE_ENTER("MainWindow::locate_window"); int x, y; int width, height; (void)event; Glib::RefPtr window = get_window(); if ((window->get_state() & (Gdk::WINDOW_STATE_ICONIFIED | Gdk::WINDOW_STATE_WITHDRAWN)) != 0) { TRACE_EXIT(); return; } #ifndef PLATFORM_OS_WINDOWS // Returns bogus results on windows...sometime. if (event != NULL) { x = event->x; y = event->y; width = event->width; height = event->height; } else #endif { (void)event; get_position(x, y); #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; get_preferred_size(min_size, natural_size); #else GtkRequisition min_size; on_size_request(&min_size); #endif width = min_size.width; height = min_size.height; } TRACE_MSG("main window = " << x << " " << y); if (x <= 0 && y <= 0) { // FIXME: this is a hack... TRACE_EXIT(); return; } if (x != window_relocated_location.get_x() || y != window_relocated_location.get_y()) { window_location.set_x(x); window_location.set_y(y); window_relocated_location.set_x(x); window_relocated_location.set_y(y); int head = GUI::get_instance()->map_to_head(x, y); TRACE_MSG("main window head = " << x << " " << y << " " << head); bool rc = GUI::get_instance()->bound_head(x, y, width, height, head); TRACE_MSG("main window bounded = " << x << " " << y); window_head_location.set_x(x); window_head_location.set_y(y); set_start_position(x, y, head); if (rc) { move_to_start_position(); } } TRACE_EXIT(); } void MainWindow::relocate_window(int width, int height) { TRACE_ENTER_MSG("MainWindow::relocate_window", width << " " << height); int x = window_location.get_x(); int y = window_location.get_y(); if (x <= 0 || y <= 0) { TRACE_MSG("invalid " << x << " " << y); } else if (x <= width && y <= height) { TRACE_MSG(x << " " << y); TRACE_MSG("fits, moving to"); set_position(Gtk::WIN_POS_NONE); move(x, y); } else { TRACE_MSG("move to differt head"); x = window_head_location.get_x(); y = window_head_location.get_y(); IGUI *gui = GUI::get_instance(); int num_heads = gui->get_number_of_heads(); for (int i = 0; i < num_heads; i++) { #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; get_preferred_size(min_size, natural_size); #else GtkRequisition min_size; on_size_request(&min_size); #endif GUI::get_instance()->bound_head(x, y, min_size.width, min_size.height, i); gui->map_from_head(x, y, i); break; } if (x < 0) { x = 0; } if (y < 0) { y = 0; } TRACE_MSG("moving to " << x << " " << y); window_relocated_location.set_x(x); window_relocated_location.set_y(y); set_position(Gtk::WIN_POS_NONE); move(x, y); } TRACE_EXIT(); } #ifdef PLATFORM_OS_WINDOWS LRESULT CALLBACK MainWindow::win32_window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { TRACE_ENTER_MSG("MainWindow::win32_window_proc", uMsg << " " << wParam); TRACE_EXIT(); return DefWindowProc(hwnd, uMsg, wParam, lParam); } #endif void MainWindow::on_visibility_changed() { TRACE_ENTER("MainWindow::on_visibility_changed"); TRACE_MSG(is_visible()); visibility_changed_signal.emit(); TRACE_EXIT(); } sigc::signal & MainWindow::signal_closed() { return closed_signal; } sigc::signal & MainWindow::signal_visibility_changed() { return visibility_changed_signal; } workrave-1.10.50/frontend/gtkmm/src/GenericDBusApplet.hh0000644000175100001710000000610114221624107021766 0ustar00gdm00000000000000// GenericDBusApplet.hh --- X11 Applet Window // // Copyright (C) 2001 - 2009, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GENERICDBUSAPPLET_HH #define GENERICDBUSAPPLET_HH #include "config.h" #include #include #include "IConfiguratorListener.hh" #include "AppletWindow.hh" #include "TimerBoxViewBase.hh" #include "MenuBase.hh" #include "dbus/IDBus.hh" #include "dbus/IDBusWatch.hh" class AppletControl; class GenericDBusApplet : public AppletWindow , public TimerBoxViewBase , public MenuBase , public workrave::dbus::IDBusWatch , public IConfiguratorListener { public: struct TimerData { std::string bar_text; int slot; uint32_t bar_secondary_color; uint32_t bar_secondary_val; uint32_t bar_secondary_max; uint32_t bar_primary_color; uint32_t bar_primary_val; uint32_t bar_primary_max; }; struct MenuItem { std::string text; int command; int flags; }; typedef std::list MenuItems; GenericDBusApplet(); virtual ~GenericDBusApplet(); // DBus virtual void get_menu(MenuItems &out) const; virtual void get_tray_icon_enabled(bool &enabled) const; virtual void applet_command(int command); virtual void applet_embed(bool enable, const std::string &sender); virtual void button_clicked(int button); private: // IAppletWindow void init_applet() override; // IConfiguratorListener void config_changed_notify(const std::string &key) override; // ITimerBoxView void set_slot(BreakId id, int slot) override; void set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_value, int primary_max, ITimeBar::ColorId secondary_color, int secondary_value, int secondary_max) override; void update_view() override; bool is_visible() const override; // IDBusWatch void bus_name_presence(const std::string &name, bool present) override; // Menu void resync(workrave::OperationMode mode, workrave::UsageMode usage, bool show_log) override; void add_menu_item(const char *text, int command, int flags); void send_tray_icon_enabled(); private: bool visible; bool embedded; TimerData data[BREAK_ID_SIZEOF]; MenuItems items; std::set active_bus_names; workrave::dbus::IDBus::Ptr dbus; }; #endif // GENERICDBUSAPPLET_HH workrave-1.10.50/frontend/gtkmm/src/IndicatorAppletMenu.hh0000644000175100001710000000401014221624107022372 0ustar00gdm00000000000000// IndicatorAppletMenu.hh --- Menu using IndicatorApplet+ // // Copyright (C) 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef INDICATORAPPLETMENU_HH #define INDICATORAPPLETMENU_HH #include #include #include #include "Menus.hh" #include "MenuBase.hh" #include "MenuEnums.hh" class GenericDBusApplet; class IndicatorAppletMenu : public MenuBase { public: IndicatorAppletMenu(); virtual ~IndicatorAppletMenu(); virtual void init(); virtual void resync(workrave::OperationMode mode, workrave::UsageMode usage, bool show_log); private: enum MenuItemType { Radio, Check, Normal }; DbusmenuMenuitem *menu_item_append(DbusmenuMenuitem *parent, const char *label); DbusmenuMenuitem *menu_item_append(DbusmenuMenuitem *parent, const char *label, int cmd); DbusmenuMenuitem *menu_item_append(DbusmenuMenuitem *parent, const char *label, MenuItemType type, int cmd); void menu_item_set_checked(int cmd, bool checked); int find_menu_item(DbusmenuMenuitem *item) const; static void static_menu_item_activated(DbusmenuMenuitem *mi, guint timestamp, gpointer user_data); void menu_item_activated(DbusmenuMenuitem *mi); private: DbusmenuServer *server; DbusmenuMenuitem *root; DbusmenuMenuitem *menu_items[MENU_COMMAND_SIZEOF]; }; #endif // INDICATORAPPLETMENU_HH workrave-1.10.50/frontend/gtkmm/src/EventLabel.hh0000644000175100001710000000241214221624107020510 0ustar00gdm00000000000000// EventLabel.hh --- Label that receives events. // // Copyright (C) 2003, 2004, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EVENTLABEL_HH #define EVENTLABEL_HH #include class EventLabel : public Gtk::Label { public: EventLabel() {} EventLabel(const Glib::ustring &label, bool mnemonic = false) : Gtk::Label(label, mnemonic) { } private: void on_realize(); void on_unrealize(); bool on_map_event(GdkEventAny *event); bool on_unmap_event(GdkEventAny *event); void on_size_allocate(Gtk::Allocation &allocation); GdkWindow *event_window; }; #endif // EVENTLABEL_HH workrave-1.10.50/frontend/gtkmm/src/TimerBoxPreferencePage.hh0000644000175100001710000000464214221624107023023 0ustar00gdm00000000000000// AppletPreferencesPanel.hh --- Preferences widgets for a timer // // Copyright (C) 2002, 2003, 2005, 2006, 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERBOXPREFERENCEPAGE_HH #define TIMERBOXPREFERENCEPAGE_HH class Configurator; namespace Gtk { class ComboBoxText; class SpinButton; class CheckButton; } // namespace Gtk #include "ICore.hh" #include "IConfiguratorListener.hh" #include #include using namespace workrave; using namespace std; class TimerBoxPreferencePage : public Gtk::HBox , public IConfiguratorListener { public: TimerBoxPreferencePage(std::string name); ~TimerBoxPreferencePage(); private: void create_page(); void init_page_values(); void init_page_callbacks(); void enable_buttons(); void on_enabled_toggled(); void on_applet_fallback_enabled_toggled(); void on_applet_icon_enabled_toggled(); void on_place_changed(); void on_display_changed(int break_id); void on_cycle_time_changed(); void on_always_on_top_toggled(); void config_changed_notify(const string &key); string name; Gtk::CheckButton *ontop_cb{nullptr}; Gtk::CheckButton *enabled_cb{nullptr}; Gtk::ComboBoxText *place_button{nullptr}; Gtk::ComboBoxText *timer_display_button[BREAK_ID_SIZEOF] = { nullptr, }; Gtk::SpinButton *cycle_entry{nullptr}; Gtk::CheckButton *applet_fallback_enabled_cb{nullptr}; Gtk::CheckButton *applet_icon_enabled_cb{nullptr}; }; #ifndef GTKMM_CHECK_VERSION # define GTKMM_CHECK_VERSION(major, minor, micro) \ (GTKMM_MAJOR_VERSION > (major) \ || (GTKMM_MAJOR_VERSION == (major) \ && (GTKMM_MINOR_VERSION > (minor) || (GTKMM_MINOR_VERSION == (minor) && GTKMM_MICRO_VERSION >= (micro))))) #endif #endif // TIMERBOXPREFERENCEPAGE_HH workrave-1.10.50/frontend/gtkmm/src/StatusIcon.hh0000644000175100001710000000647214221624107020575 0ustar00gdm00000000000000// StatusIcon.hh --- Status icon // // Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef STATUSICON_HH #define STATUSICON_HH #include "preinclude.h" #include #ifdef PLATFORM_OS_WINDOWS //#if ! GTK_CHECK_VERSION(2,22,1) # define USE_W32STATUSICON 1 //#endif # include #endif #include #include "ICore.hh" #include "IConfiguratorListener.hh" #ifndef WR_CHECK_VERSION # define WR_CHECK_VERSION(comp, major, minor, micro) \ (comp##_MAJOR_VERSION > (major) || (comp##_MAJOR_VERSION == (major) && comp##_MINOR_VERSION > (minor)) \ || (comp##_MAJOR_VERSION == (major) && comp##_MINOR_VERSION == (minor) && comp##_MICRO_VERSION >= (micro))) #endif #if WR_CHECK_VERSION(GTKMM, 2, 11, 1) # define HAVE_STATUSICON_SIGNAL 1 #endif #if WR_CHECK_VERSION(GTKMM, 2, 22, 0) # define HAVE_EMBEDDED_SIGNAL 1 #endif using namespace workrave; class W32StatusIcon; class StatusIcon : public IConfiguratorListener { public: StatusIcon(); ~StatusIcon(); void init(); void set_operation_mode(OperationMode m); void set_tooltip(std::string &tip); bool is_visible() const; void show_balloon(std::string id, const std::string &balloon); sigc::signal &signal_visibility_changed(); sigc::signal &signal_activate(); sigc::signal &signal_balloon_activate(); private: void set_visible(bool b); void insert_icon(); void on_activate(); void on_popup_menu(guint button, guint activate_time); void on_embedded_changed(); void config_changed_notify(const std::string &key); #if defined(PLATFORM_OS_WINDOWS) && defined(USE_W32STATUSICON) GdkFilterReturn win32_filter_func(void *xevent, GdkEvent *event); #endif #if defined(PLATFORM_OS_WINDOWS) && defined(USE_W32STATUSICON) void on_balloon_activate(std::string id); #endif #ifndef HAVE_STATUSICON_SIGNAL static void activate_callback(GtkStatusIcon *si, gpointer callback_data); static void popup_menu_callback(GtkStatusIcon *si, guint button, guint activate_time, gpointer callback_data); #endif #ifndef HAVE_EMBEDDED_SIGNAL static void embedded_changed_callback(GObject *gobject, GParamSpec *pspec, gpointer callback_data); #endif std::map> mode_icons; sigc::signal visibility_changed_signal; sigc::signal activate_signal; sigc::signal balloon_activate_signal; #ifdef USE_W32STATUSICON W32StatusIcon *status_icon; #else Glib::RefPtr status_icon; # ifdef PLATFORM_OS_WINDOWS UINT wm_taskbarcreated; # endif #endif }; #endif // STATUSICON_HH workrave-1.10.50/frontend/gtkmm/src/GtkUtil.hh0000644000175100001710000000572114221624107020060 0ustar00gdm00000000000000// GtkUtil.hh --- Gtk utilities // // Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GTKUTIL_HH #define GTKUTIL_HH #include #include #include #include #include #include #include #include #include #include #include "ICore.hh" class HeadInfo; class EventImage; using namespace workrave; class GtkUtil { public: static Gtk::Button *create_custom_stock_button(const char *label_text, const Gtk::StockID &stock_id); static Gtk::Button *create_image_button(const char *label_text, const char *image_file, bool label = true); static void update_custom_stock_button(Gtk::Button *btn, const char *label_text, const Gtk::StockID &stock_id); static Gtk::Widget *create_label_with_icon(std::string text, const char *icon); static Gtk::Label *create_label(std::string text, bool bold); static Gtk::Widget *create_label_with_tooltip(std::string text, std::string tooltip); static EventImage *create_image_with_tooltip(std::string file, std::string tooltip); static Gtk::Widget *create_label_for_break(workrave::BreakId id); static Glib::RefPtr flip_pixbuf(Glib::RefPtr pixbuf, bool horizontal, bool vertical); static void table_attach_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach, bool left); static void table_attach_left_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach); static void table_attach_right_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach); static void center_window(Gtk::Window &window, HeadInfo &head); static bool has_button_images(); static void update_mnemonic(Gtk::Widget *widget, Glib::RefPtr); static GtkWindow *get_visible_tooltip_window(); static bool running_on_wayland(); static void set_theme_fg_color(Gtk::Widget *widget); static std::string get_image_filename(const std::string &image); static Glib::RefPtr create_pixbuf(const std::string &name); static Gtk::Image *create_image(const std::string &name); private: static Glib::Quark *label_quark; }; #endif // GTKUTIL_HH workrave-1.10.50/frontend/gtkmm/src/Makefile.in0000644000000000000000000051663514221624202021321 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @HAVE_APP_GTKMM_TRUE@bin_PROGRAMS = workrave$(EXEEXT) @HAVE_APP_GTKMM_TRUE@@HAVE_INDICATOR_TRUE@am__append_1 = $(sourcesindicator) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@am__append_2 = $(sourcesx) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__append_3 = eggsmclient-win32.c eggsmclient.c @HAVE_APP_GTKMM_TRUE@@HAVE_DISTRIBUTION_TRUE@am__append_4 = $(sourcesdistribution) @HAVE_APP_GTKMM_TRUE@@HAVE_EXERCISES_TRUE@am__append_5 = $(sourcesexercises) @HAVE_APP_GTKMM_TRUE@am__append_6 = $(sourcesstatistics) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__append_7 = $(sourceswin32) subdir = frontend/gtkmm/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__dist_appdata_DATA_DIST) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = org.workrave.gui.gschema.xml.in CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" \ "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(servicedir)" PROGRAMS = $(bin_PROGRAMS) am__workrave_SOURCES_DIST = AppletControl.cc AppletWindow.cc \ BreakWindow.cc DailyLimitWindow.cc DataConnector.cc \ DebugDialog.cc EventButton.cc EventImage.cc EventLabel.cc \ Frame.cc GUI.cc GUIConfig.cc GtkUtil.cc HeadInfo.cc Hig.cc \ IconListCellRenderer.cc IconListNotebook.cc MainGtkMenu.cc \ MainWindow.cc Menus.cc MicroBreakWindow.cc \ PreferencesDialog.cc PreludeWindow.cc RestBreakWindow.cc \ Session.cc StatusIcon.cc TimeBar.cc TimeEntry.cc \ TimerBoxGtkView.cc TimerBoxPreferencePage.cc \ TimerPreferencesPanel.cc WindowHints.cc main.cc \ IndicatorAppletMenu.cc X11SystrayAppletWindow.cc gtktrayicon.c \ gtktrayicon3.c eggsmclient-win32.c eggsmclient.c \ ../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc \ ../../plugin/exercises/gtkmm/src/ExercisesDialog.cc \ ../../plugin/exercises/gtkmm/src/ExercisesPanel.cc \ ../../plugin/exercises/common/src/Exercise.cc \ ../../plugin/statistics/gtkmm/src/StatisticsDialog.cc \ resource.rc DBusGUI.cc DBusGUI.hh GenericDBusApplet.cc am__objects_1 = workrave-IndicatorAppletMenu.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@@HAVE_INDICATOR_TRUE@am__objects_2 = \ @HAVE_APP_GTKMM_TRUE@@HAVE_INDICATOR_TRUE@ $(am__objects_1) @HAVE_GTK3_FALSE@am__objects_3 = \ @HAVE_GTK3_FALSE@ workrave-X11SystrayAppletWindow.$(OBJEXT) \ @HAVE_GTK3_FALSE@ workrave-gtktrayicon.$(OBJEXT) @HAVE_GTK3_TRUE@am__objects_3 = \ @HAVE_GTK3_TRUE@ workrave-X11SystrayAppletWindow.$(OBJEXT) \ @HAVE_GTK3_TRUE@ workrave-gtktrayicon3.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@am__objects_4 = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ $(am__objects_3) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__objects_5 = workrave-eggsmclient-win32.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ workrave-eggsmclient.$(OBJEXT) am__dirstamp = $(am__leading_dot)dirstamp am__objects_6 = ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.$(OBJEXT) \ ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.$(OBJEXT) \ ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@@HAVE_DISTRIBUTION_TRUE@am__objects_7 = \ @HAVE_APP_GTKMM_TRUE@@HAVE_DISTRIBUTION_TRUE@ $(am__objects_6) am__objects_8 = ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.$(OBJEXT) \ ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.$(OBJEXT) \ ../../plugin/exercises/common/src/workrave-Exercise.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@@HAVE_EXERCISES_TRUE@am__objects_9 = \ @HAVE_APP_GTKMM_TRUE@@HAVE_EXERCISES_TRUE@ $(am__objects_8) am__objects_10 = ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@am__objects_11 = $(am__objects_10) am__objects_12 = resource.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__objects_13 = $(am__objects_12) am__objects_14 = $(am__objects_2) $(am__objects_4) $(am__objects_5) \ $(am__objects_7) $(am__objects_9) $(am__objects_11) \ $(am__objects_13) @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@am__objects_15 = workrave-DBusGUI.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ workrave-GenericDBusApplet.$(OBJEXT) @HAVE_APP_GTKMM_TRUE@am_workrave_OBJECTS = \ @HAVE_APP_GTKMM_TRUE@ workrave-AppletControl.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-AppletWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-BreakWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-DailyLimitWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-DataConnector.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-DebugDialog.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-EventButton.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-EventImage.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-EventLabel.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-Frame.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-GUI.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-GUIConfig.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-GtkUtil.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-HeadInfo.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-Hig.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-IconListCellRenderer.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-IconListNotebook.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-MainGtkMenu.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-MainWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-Menus.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-MicroBreakWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-PreferencesDialog.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-PreludeWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-RestBreakWindow.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-Session.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-StatusIcon.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-TimeBar.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-TimeEntry.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-TimerBoxGtkView.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-TimerBoxPreferencePage.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-TimerPreferencesPanel.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-WindowHints.$(OBJEXT) \ @HAVE_APP_GTKMM_TRUE@ workrave-main.$(OBJEXT) $(am__objects_14) \ @HAVE_APP_GTKMM_TRUE@ $(am__objects_15) am__objects_16 = @HAVE_APP_GTKMM_TRUE@nodist_workrave_OBJECTS = $(am__objects_16) workrave_OBJECTS = $(am_workrave_OBJECTS) $(nodist_workrave_OBJECTS) am__DEPENDENCIES_1 = @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/common/win32/harpoon/src/Release/harpoon.dll \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ $(top_builddir)/frontend/gtkmm/src/win32/libworkrave-frontend-gtkmm-win32.la workrave_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ $(MacOSLIBS) $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = workrave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(workrave_CXXFLAGS) \ $(CXXFLAGS) $(workrave_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po \ ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po \ ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po \ ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po \ ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po \ ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po \ ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po \ ./$(DEPDIR)/workrave-AppletControl.Po \ ./$(DEPDIR)/workrave-AppletWindow.Po \ ./$(DEPDIR)/workrave-BreakWindow.Po \ ./$(DEPDIR)/workrave-DBusGUI.Po \ ./$(DEPDIR)/workrave-DailyLimitWindow.Po \ ./$(DEPDIR)/workrave-DataConnector.Po \ ./$(DEPDIR)/workrave-DebugDialog.Po \ ./$(DEPDIR)/workrave-EventButton.Po \ ./$(DEPDIR)/workrave-EventImage.Po \ ./$(DEPDIR)/workrave-EventLabel.Po \ ./$(DEPDIR)/workrave-Frame.Po ./$(DEPDIR)/workrave-GUI.Po \ ./$(DEPDIR)/workrave-GUIConfig.Po \ ./$(DEPDIR)/workrave-GenericDBusApplet.Po \ ./$(DEPDIR)/workrave-GtkUtil.Po \ ./$(DEPDIR)/workrave-HeadInfo.Po ./$(DEPDIR)/workrave-Hig.Po \ ./$(DEPDIR)/workrave-IconListCellRenderer.Po \ ./$(DEPDIR)/workrave-IconListNotebook.Po \ ./$(DEPDIR)/workrave-IndicatorAppletMenu.Po \ ./$(DEPDIR)/workrave-MainGtkMenu.Po \ ./$(DEPDIR)/workrave-MainWindow.Po \ ./$(DEPDIR)/workrave-Menus.Po \ ./$(DEPDIR)/workrave-MicroBreakWindow.Po \ ./$(DEPDIR)/workrave-PreferencesDialog.Po \ ./$(DEPDIR)/workrave-PreludeWindow.Po \ ./$(DEPDIR)/workrave-RestBreakWindow.Po \ ./$(DEPDIR)/workrave-Session.Po \ ./$(DEPDIR)/workrave-StatusIcon.Po \ ./$(DEPDIR)/workrave-TimeBar.Po \ ./$(DEPDIR)/workrave-TimeEntry.Po \ ./$(DEPDIR)/workrave-TimerBoxGtkView.Po \ ./$(DEPDIR)/workrave-TimerBoxPreferencePage.Po \ ./$(DEPDIR)/workrave-TimerPreferencesPanel.Po \ ./$(DEPDIR)/workrave-WindowHints.Po \ ./$(DEPDIR)/workrave-X11SystrayAppletWindow.Po \ ./$(DEPDIR)/workrave-eggsmclient-win32.Po \ ./$(DEPDIR)/workrave-eggsmclient.Po \ ./$(DEPDIR)/workrave-gtktrayicon.Po \ ./$(DEPDIR)/workrave-gtktrayicon3.Po \ ./$(DEPDIR)/workrave-main.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(workrave_SOURCES) $(nodist_workrave_SOURCES) DIST_SOURCES = $(am__workrave_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__dist_appdata_DATA_DIST = workrave.appdata.xml DATA = $(desktop_DATA) $(dist_appdata_DATA) $(service_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in \ $(srcdir)/org.workrave.gui.gschema.xml.in.in \ $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -I$(top_srcdir)/intl DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = win32 unix macos MAINTAINERCLEANFILES = Makefile.in \ org.workrave.Workrave.service \ workrave.desktop \ resource.rc DISTCLEANFILES = workrave.desktop org.workrave.gui.gschema.xml extrasources = $(am__append_1) $(am__append_2) $(am__append_3) \ $(am__append_4) $(am__append_5) $(am__append_6) \ $(am__append_7) extranodistsources = # Additional Indicator applet sources sourcesindicator = IndicatorAppletMenu.cc @HAVE_GTK3_FALSE@sourcesx = X11SystrayAppletWindow.cc gtktrayicon.c # Additional X11 sources. @HAVE_GTK3_TRUE@sourcesx = X11SystrayAppletWindow.cc gtktrayicon3.c # Additional Win32 sources. sourceswin32 = resource.rc # Additional distribution sources. DISTRIBUTION_HOME = $(top_srcdir)/frontend/plugin/distribution sourcesdistribution = ../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc # Additional exercises sources. EXERCISES_HOME = $(top_srcdir)/frontend/plugin/exercises sourcesexercises = ../../plugin/exercises/gtkmm/src/ExercisesDialog.cc \ ../../plugin/exercises/gtkmm/src/ExercisesPanel.cc \ ../../plugin/exercises/common/src/Exercise.cc # Statistics. STATISTICS_HOME = $(top_srcdir)/frontend/plugin/statistics sourcesstatistics = ../../plugin/statistics/gtkmm/src/StatisticsDialog.cc @HAVE_APP_GTKMM_TRUE@@HAVE_INDICATOR_TRUE@indicatorflags = -I$(top_srcdir)/frontend/applets/indicator/include @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@includesx = -I$(top_srcdir)/frontend/gtkmm/src/unix/ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_MACOS_TRUE@ldflags = -L$(top_builddir)/frontend/gtkmm/src/macos @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ldflags = -L$(top_builddir)/frontend/gtkmm/src/unix/ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ldflags = -L$(top_builddir)/frontend/gtkmm/src/win32/ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@includeswin32 = -I$(top_srcdir)/common/win32/harpoon/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/frontend/gtkmm/src/win32/ \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/frontend/applets/win32/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -I$(top_srcdir)/backend/src/win32 @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@win32cflags = -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0600 @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@includesinput = -I$(top_srcdir)/common/win32/harpoon/include @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@WIN32LIBS = $(top_builddir)/common/win32/harpoon/src/Release/harpoon.dll \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ $(top_builddir)/frontend/gtkmm/src/win32/libworkrave-frontend-gtkmm-win32.la \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ -lshell32 -lole32 -lwinmm -lshlwapi -lwtsapi32 @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@WIN32LDFLAGS = -static-libgcc -static-libstdc++ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@X11LIBS = -lworkrave-frontend-gtkmm-unix -lX11 @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_MACOS_TRUE@includesmacos = -I$(top_srcdir)/frontend/gtkmm/src/macos @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_MACOS_TRUE@MacOSLIBS = $(top_builddir)/frontend/gtkmm/src/macos/libworkrave-frontend-gtkmm-macos.la # DBus service file @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@servicedir = $(DBUS_SERVICES_DIR) @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@service_in_files = org.workrave.Workrave.service.in @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@service_DATA = $(service_in_files:.service.in=.service) # Correctly clean the generated headers, but keep the xml description @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@CLEANFILES = org.workrave.Workrave.service @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_FALSE@dbussources = @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@dbussources = DBusGUI.cc \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ DBusGUI.hh \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ GenericDBusApplet.cc @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@BUILT_SOURCES = DBusGUI.cc DBusGUI.hh @HAVE_APP_GTKMM_TRUE@@HAVE_GSETTINGS_TRUE@gsettings_ENUM_NAMESPACE = @HAVE_APP_GTKMM_TRUE@@HAVE_GSETTINGS_TRUE@gsettings_ENUM_FILES = @HAVE_APP_GTKMM_TRUE@@HAVE_GSETTINGS_TRUE@gsettings_SCHEMAS = org.workrave.gui.gschema.xml @HAVE_APP_GTKMM_TRUE@iconsdir = $(datadir)/pixmaps/workrave @HAVE_APP_GTKMM_TRUE@desktopdir = ${datadir}/applications @HAVE_APP_GTKMM_TRUE@desktop_in_files = workrave.desktop.in @HAVE_APP_GTKMM_TRUE@desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) @HAVE_APP_GTKMM_TRUE@appdatadir = $(datarootdir)/metainfo @HAVE_APP_GTKMM_TRUE@dist_appdata_DATA = workrave.appdata.xml @HAVE_APP_GTKMM_TRUE@workrave_SOURCES = \ @HAVE_APP_GTKMM_TRUE@ AppletControl.cc \ @HAVE_APP_GTKMM_TRUE@ AppletWindow.cc \ @HAVE_APP_GTKMM_TRUE@ BreakWindow.cc \ @HAVE_APP_GTKMM_TRUE@ DailyLimitWindow.cc \ @HAVE_APP_GTKMM_TRUE@ DataConnector.cc \ @HAVE_APP_GTKMM_TRUE@ DebugDialog.cc \ @HAVE_APP_GTKMM_TRUE@ EventButton.cc \ @HAVE_APP_GTKMM_TRUE@ EventImage.cc \ @HAVE_APP_GTKMM_TRUE@ EventLabel.cc \ @HAVE_APP_GTKMM_TRUE@ Frame.cc \ @HAVE_APP_GTKMM_TRUE@ GUI.cc \ @HAVE_APP_GTKMM_TRUE@ GUIConfig.cc \ @HAVE_APP_GTKMM_TRUE@ GtkUtil.cc \ @HAVE_APP_GTKMM_TRUE@ HeadInfo.cc \ @HAVE_APP_GTKMM_TRUE@ Hig.cc \ @HAVE_APP_GTKMM_TRUE@ IconListCellRenderer.cc \ @HAVE_APP_GTKMM_TRUE@ IconListNotebook.cc \ @HAVE_APP_GTKMM_TRUE@ MainGtkMenu.cc \ @HAVE_APP_GTKMM_TRUE@ MainWindow.cc \ @HAVE_APP_GTKMM_TRUE@ Menus.cc \ @HAVE_APP_GTKMM_TRUE@ MicroBreakWindow.cc \ @HAVE_APP_GTKMM_TRUE@ PreferencesDialog.cc \ @HAVE_APP_GTKMM_TRUE@ PreludeWindow.cc \ @HAVE_APP_GTKMM_TRUE@ RestBreakWindow.cc \ @HAVE_APP_GTKMM_TRUE@ Session.cc \ @HAVE_APP_GTKMM_TRUE@ StatusIcon.cc \ @HAVE_APP_GTKMM_TRUE@ TimeBar.cc \ @HAVE_APP_GTKMM_TRUE@ TimeEntry.cc \ @HAVE_APP_GTKMM_TRUE@ TimerBoxGtkView.cc \ @HAVE_APP_GTKMM_TRUE@ TimerBoxPreferencePage.cc \ @HAVE_APP_GTKMM_TRUE@ TimerPreferencesPanel.cc \ @HAVE_APP_GTKMM_TRUE@ WindowHints.cc \ @HAVE_APP_GTKMM_TRUE@ main.cc \ @HAVE_APP_GTKMM_TRUE@ $(extrasources) \ @HAVE_APP_GTKMM_TRUE@ ${dbussources} @HAVE_APP_GTKMM_TRUE@nodist_workrave_SOURCES = \ @HAVE_APP_GTKMM_TRUE@ $(extranodistsources) @HAVE_APP_GTKMM_TRUE@workrave_CXXFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -W \ @HAVE_APP_GTKMM_TRUE@ -DWORKRAVE_DATADIR="\"${datadir}\"" \ @HAVE_APP_GTKMM_TRUE@ -I$(top_srcdir)/frontend/gtkmm/src/ \ @HAVE_APP_GTKMM_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_APP_GTKMM_TRUE@ @X_CFLAGS@ @GTK_CFLAGS@ @GLIB_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@ @GCONF_CFLAGS@ -D_XOPEN_SOURCE=600 @GNET_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@ @IGE_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@ $(includeswin32) $(win32cflags) $(includesinput) $(includesmacos) \ @HAVE_APP_GTKMM_TRUE@ $(includesx) $(INDICATOR_CFLAGS) $(indicatorflags) \ @HAVE_APP_GTKMM_TRUE@ -I${DISTRIBUTION_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${STATISTICS_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${EXERCISES_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${EXERCISES_HOME}/common/src @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_MACOS_TRUE@AM_CFLAGS = -xobjective-c @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_MACOS_TRUE@AM_CPPFLAGS = -xobjective-c++ @HAVE_APP_GTKMM_TRUE@workrave_CFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_APP_GTKMM_TRUE@ -I$(top_srcdir)/frontend/gtkmm/src/ @GLIB_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_APP_GTKMM_TRUE@ @X_CFLAGS@ @GTK_CFLAGS@ @X11SM_CFLAGS@\ @HAVE_APP_GTKMM_TRUE@ -D_XOPEN_SOURCE=600 \ @HAVE_APP_GTKMM_TRUE@ -I${DISTRIBUTION_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${STATISTICS_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${EXERCISES_HOME}/gtkmm/src \ @HAVE_APP_GTKMM_TRUE@ -I${EXERCISES_HOME}/common/src \ @HAVE_APP_GTKMM_TRUE@ $(win32cflags) workrave_LDFLAGS = @WR_LDFLAGS@ ${ldflags} ${WIN32LDFLAGS} workrave_LDADD = @WR_LDADD@ @X_LIBS@ @X11SM_LIBS@ @GLIB_LIBS@ \ @GTK_LIBS@ @GNET_LIBS@ @X_LIBS@ @GCONF_LIBS@ @GDOME_LIBS@ \ @PULSE_LIBS@ @IGE_LIBS@ @GSTREAMER_LIBS@ \ ${X11LIBS} ${WIN32LIBS} @GTK_LIBS@ ${MacOSLIBS} ${WIN32CONSOLE} \ ${DIRECTSOUNDLIBS} $(INDICATOR_LIBS) EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ workrave.desktop.in org.workrave.Workrave.service.in workrave-gui.xml resource.rc.in all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .cc .lo .o .obj .rc $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): org.workrave.gui.gschema.xml.in: $(top_builddir)/config.status $(srcdir)/org.workrave.gui.gschema.xml.in.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && 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 ../../plugin/distribution/gtkmm/src/$(am__dirstamp): @$(MKDIR_P) ../../plugin/distribution/gtkmm/src @: > ../../plugin/distribution/gtkmm/src/$(am__dirstamp) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ../../plugin/distribution/gtkmm/src/$(DEPDIR) @: > ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.$(OBJEXT): \ ../../plugin/distribution/gtkmm/src/$(am__dirstamp) \ ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.$(OBJEXT): \ ../../plugin/distribution/gtkmm/src/$(am__dirstamp) \ ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.$(OBJEXT): \ ../../plugin/distribution/gtkmm/src/$(am__dirstamp) \ ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/exercises/gtkmm/src/$(am__dirstamp): @$(MKDIR_P) ../../plugin/exercises/gtkmm/src @: > ../../plugin/exercises/gtkmm/src/$(am__dirstamp) ../../plugin/exercises/gtkmm/src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ../../plugin/exercises/gtkmm/src/$(DEPDIR) @: > ../../plugin/exercises/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.$(OBJEXT): \ ../../plugin/exercises/gtkmm/src/$(am__dirstamp) \ ../../plugin/exercises/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.$(OBJEXT): \ ../../plugin/exercises/gtkmm/src/$(am__dirstamp) \ ../../plugin/exercises/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/exercises/common/src/$(am__dirstamp): @$(MKDIR_P) ../../plugin/exercises/common/src @: > ../../plugin/exercises/common/src/$(am__dirstamp) ../../plugin/exercises/common/src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ../../plugin/exercises/common/src/$(DEPDIR) @: > ../../plugin/exercises/common/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/exercises/common/src/workrave-Exercise.$(OBJEXT): \ ../../plugin/exercises/common/src/$(am__dirstamp) \ ../../plugin/exercises/common/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/statistics/gtkmm/src/$(am__dirstamp): @$(MKDIR_P) ../../plugin/statistics/gtkmm/src @: > ../../plugin/statistics/gtkmm/src/$(am__dirstamp) ../../plugin/statistics/gtkmm/src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ../../plugin/statistics/gtkmm/src/$(DEPDIR) @: > ../../plugin/statistics/gtkmm/src/$(DEPDIR)/$(am__dirstamp) ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.$(OBJEXT): \ ../../plugin/statistics/gtkmm/src/$(am__dirstamp) \ ../../plugin/statistics/gtkmm/src/$(DEPDIR)/$(am__dirstamp) workrave$(EXEEXT): $(workrave_OBJECTS) $(workrave_DEPENDENCIES) $(EXTRA_workrave_DEPENDENCIES) @rm -f workrave$(EXEEXT) $(AM_V_CXXLD)$(workrave_LINK) $(workrave_OBJECTS) $(workrave_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f ../../plugin/distribution/gtkmm/src/*.$(OBJEXT) -rm -f ../../plugin/exercises/common/src/*.$(OBJEXT) -rm -f ../../plugin/exercises/gtkmm/src/*.$(OBJEXT) -rm -f ../../plugin/statistics/gtkmm/src/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-AppletControl.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-AppletWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-BreakWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-DBusGUI.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-DailyLimitWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-DataConnector.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-DebugDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-EventButton.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-EventImage.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-EventLabel.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-Frame.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-GUI.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-GUIConfig.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-GenericDBusApplet.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-GtkUtil.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-HeadInfo.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-Hig.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-IconListCellRenderer.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-IconListNotebook.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-IndicatorAppletMenu.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-MainGtkMenu.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-MainWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-Menus.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-MicroBreakWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-PreferencesDialog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-PreludeWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-RestBreakWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-Session.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-StatusIcon.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimeBar.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimeEntry.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimerBoxGtkView.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimerBoxPreferencePage.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimerPreferencesPanel.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-WindowHints.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-X11SystrayAppletWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-eggsmclient-win32.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-eggsmclient.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-gtktrayicon.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-gtktrayicon3.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-main.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< workrave-gtktrayicon.o: gtktrayicon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-gtktrayicon.o -MD -MP -MF $(DEPDIR)/workrave-gtktrayicon.Tpo -c -o workrave-gtktrayicon.o `test -f 'gtktrayicon.c' || echo '$(srcdir)/'`gtktrayicon.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-gtktrayicon.Tpo $(DEPDIR)/workrave-gtktrayicon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gtktrayicon.c' object='workrave-gtktrayicon.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-gtktrayicon.o `test -f 'gtktrayicon.c' || echo '$(srcdir)/'`gtktrayicon.c workrave-gtktrayicon.obj: gtktrayicon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-gtktrayicon.obj -MD -MP -MF $(DEPDIR)/workrave-gtktrayicon.Tpo -c -o workrave-gtktrayicon.obj `if test -f 'gtktrayicon.c'; then $(CYGPATH_W) 'gtktrayicon.c'; else $(CYGPATH_W) '$(srcdir)/gtktrayicon.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-gtktrayicon.Tpo $(DEPDIR)/workrave-gtktrayicon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gtktrayicon.c' object='workrave-gtktrayicon.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-gtktrayicon.obj `if test -f 'gtktrayicon.c'; then $(CYGPATH_W) 'gtktrayicon.c'; else $(CYGPATH_W) '$(srcdir)/gtktrayicon.c'; fi` workrave-gtktrayicon3.o: gtktrayicon3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-gtktrayicon3.o -MD -MP -MF $(DEPDIR)/workrave-gtktrayicon3.Tpo -c -o workrave-gtktrayicon3.o `test -f 'gtktrayicon3.c' || echo '$(srcdir)/'`gtktrayicon3.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-gtktrayicon3.Tpo $(DEPDIR)/workrave-gtktrayicon3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gtktrayicon3.c' object='workrave-gtktrayicon3.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-gtktrayicon3.o `test -f 'gtktrayicon3.c' || echo '$(srcdir)/'`gtktrayicon3.c workrave-gtktrayicon3.obj: gtktrayicon3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-gtktrayicon3.obj -MD -MP -MF $(DEPDIR)/workrave-gtktrayicon3.Tpo -c -o workrave-gtktrayicon3.obj `if test -f 'gtktrayicon3.c'; then $(CYGPATH_W) 'gtktrayicon3.c'; else $(CYGPATH_W) '$(srcdir)/gtktrayicon3.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-gtktrayicon3.Tpo $(DEPDIR)/workrave-gtktrayicon3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gtktrayicon3.c' object='workrave-gtktrayicon3.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-gtktrayicon3.obj `if test -f 'gtktrayicon3.c'; then $(CYGPATH_W) 'gtktrayicon3.c'; else $(CYGPATH_W) '$(srcdir)/gtktrayicon3.c'; fi` workrave-eggsmclient-win32.o: eggsmclient-win32.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-eggsmclient-win32.o -MD -MP -MF $(DEPDIR)/workrave-eggsmclient-win32.Tpo -c -o workrave-eggsmclient-win32.o `test -f 'eggsmclient-win32.c' || echo '$(srcdir)/'`eggsmclient-win32.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-eggsmclient-win32.Tpo $(DEPDIR)/workrave-eggsmclient-win32.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient-win32.c' object='workrave-eggsmclient-win32.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-eggsmclient-win32.o `test -f 'eggsmclient-win32.c' || echo '$(srcdir)/'`eggsmclient-win32.c workrave-eggsmclient-win32.obj: eggsmclient-win32.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-eggsmclient-win32.obj -MD -MP -MF $(DEPDIR)/workrave-eggsmclient-win32.Tpo -c -o workrave-eggsmclient-win32.obj `if test -f 'eggsmclient-win32.c'; then $(CYGPATH_W) 'eggsmclient-win32.c'; else $(CYGPATH_W) '$(srcdir)/eggsmclient-win32.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-eggsmclient-win32.Tpo $(DEPDIR)/workrave-eggsmclient-win32.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient-win32.c' object='workrave-eggsmclient-win32.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-eggsmclient-win32.obj `if test -f 'eggsmclient-win32.c'; then $(CYGPATH_W) 'eggsmclient-win32.c'; else $(CYGPATH_W) '$(srcdir)/eggsmclient-win32.c'; fi` workrave-eggsmclient.o: eggsmclient.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-eggsmclient.o -MD -MP -MF $(DEPDIR)/workrave-eggsmclient.Tpo -c -o workrave-eggsmclient.o `test -f 'eggsmclient.c' || echo '$(srcdir)/'`eggsmclient.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-eggsmclient.Tpo $(DEPDIR)/workrave-eggsmclient.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient.c' object='workrave-eggsmclient.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-eggsmclient.o `test -f 'eggsmclient.c' || echo '$(srcdir)/'`eggsmclient.c workrave-eggsmclient.obj: eggsmclient.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CFLAGS) $(CFLAGS) -MT workrave-eggsmclient.obj -MD -MP -MF $(DEPDIR)/workrave-eggsmclient.Tpo -c -o workrave-eggsmclient.obj `if test -f 'eggsmclient.c'; then $(CYGPATH_W) 'eggsmclient.c'; else $(CYGPATH_W) '$(srcdir)/eggsmclient.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-eggsmclient.Tpo $(DEPDIR)/workrave-eggsmclient.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient.c' object='workrave-eggsmclient.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) $(workrave_CFLAGS) $(CFLAGS) -c -o workrave-eggsmclient.obj `if test -f 'eggsmclient.c'; then $(CYGPATH_W) 'eggsmclient.c'; else $(CYGPATH_W) '$(srcdir)/eggsmclient.c'; fi` .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< workrave-AppletControl.o: AppletControl.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-AppletControl.o -MD -MP -MF $(DEPDIR)/workrave-AppletControl.Tpo -c -o workrave-AppletControl.o `test -f 'AppletControl.cc' || echo '$(srcdir)/'`AppletControl.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-AppletControl.Tpo $(DEPDIR)/workrave-AppletControl.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='AppletControl.cc' object='workrave-AppletControl.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-AppletControl.o `test -f 'AppletControl.cc' || echo '$(srcdir)/'`AppletControl.cc workrave-AppletControl.obj: AppletControl.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-AppletControl.obj -MD -MP -MF $(DEPDIR)/workrave-AppletControl.Tpo -c -o workrave-AppletControl.obj `if test -f 'AppletControl.cc'; then $(CYGPATH_W) 'AppletControl.cc'; else $(CYGPATH_W) '$(srcdir)/AppletControl.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-AppletControl.Tpo $(DEPDIR)/workrave-AppletControl.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='AppletControl.cc' object='workrave-AppletControl.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-AppletControl.obj `if test -f 'AppletControl.cc'; then $(CYGPATH_W) 'AppletControl.cc'; else $(CYGPATH_W) '$(srcdir)/AppletControl.cc'; fi` workrave-AppletWindow.o: AppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-AppletWindow.o -MD -MP -MF $(DEPDIR)/workrave-AppletWindow.Tpo -c -o workrave-AppletWindow.o `test -f 'AppletWindow.cc' || echo '$(srcdir)/'`AppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-AppletWindow.Tpo $(DEPDIR)/workrave-AppletWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='AppletWindow.cc' object='workrave-AppletWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-AppletWindow.o `test -f 'AppletWindow.cc' || echo '$(srcdir)/'`AppletWindow.cc workrave-AppletWindow.obj: AppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-AppletWindow.obj -MD -MP -MF $(DEPDIR)/workrave-AppletWindow.Tpo -c -o workrave-AppletWindow.obj `if test -f 'AppletWindow.cc'; then $(CYGPATH_W) 'AppletWindow.cc'; else $(CYGPATH_W) '$(srcdir)/AppletWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-AppletWindow.Tpo $(DEPDIR)/workrave-AppletWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='AppletWindow.cc' object='workrave-AppletWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-AppletWindow.obj `if test -f 'AppletWindow.cc'; then $(CYGPATH_W) 'AppletWindow.cc'; else $(CYGPATH_W) '$(srcdir)/AppletWindow.cc'; fi` workrave-BreakWindow.o: BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-BreakWindow.o -MD -MP -MF $(DEPDIR)/workrave-BreakWindow.Tpo -c -o workrave-BreakWindow.o `test -f 'BreakWindow.cc' || echo '$(srcdir)/'`BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-BreakWindow.Tpo $(DEPDIR)/workrave-BreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BreakWindow.cc' object='workrave-BreakWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-BreakWindow.o `test -f 'BreakWindow.cc' || echo '$(srcdir)/'`BreakWindow.cc workrave-BreakWindow.obj: BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-BreakWindow.obj -MD -MP -MF $(DEPDIR)/workrave-BreakWindow.Tpo -c -o workrave-BreakWindow.obj `if test -f 'BreakWindow.cc'; then $(CYGPATH_W) 'BreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/BreakWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-BreakWindow.Tpo $(DEPDIR)/workrave-BreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BreakWindow.cc' object='workrave-BreakWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-BreakWindow.obj `if test -f 'BreakWindow.cc'; then $(CYGPATH_W) 'BreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/BreakWindow.cc'; fi` workrave-DailyLimitWindow.o: DailyLimitWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DailyLimitWindow.o -MD -MP -MF $(DEPDIR)/workrave-DailyLimitWindow.Tpo -c -o workrave-DailyLimitWindow.o `test -f 'DailyLimitWindow.cc' || echo '$(srcdir)/'`DailyLimitWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DailyLimitWindow.Tpo $(DEPDIR)/workrave-DailyLimitWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DailyLimitWindow.cc' object='workrave-DailyLimitWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DailyLimitWindow.o `test -f 'DailyLimitWindow.cc' || echo '$(srcdir)/'`DailyLimitWindow.cc workrave-DailyLimitWindow.obj: DailyLimitWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DailyLimitWindow.obj -MD -MP -MF $(DEPDIR)/workrave-DailyLimitWindow.Tpo -c -o workrave-DailyLimitWindow.obj `if test -f 'DailyLimitWindow.cc'; then $(CYGPATH_W) 'DailyLimitWindow.cc'; else $(CYGPATH_W) '$(srcdir)/DailyLimitWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DailyLimitWindow.Tpo $(DEPDIR)/workrave-DailyLimitWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DailyLimitWindow.cc' object='workrave-DailyLimitWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DailyLimitWindow.obj `if test -f 'DailyLimitWindow.cc'; then $(CYGPATH_W) 'DailyLimitWindow.cc'; else $(CYGPATH_W) '$(srcdir)/DailyLimitWindow.cc'; fi` workrave-DataConnector.o: DataConnector.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DataConnector.o -MD -MP -MF $(DEPDIR)/workrave-DataConnector.Tpo -c -o workrave-DataConnector.o `test -f 'DataConnector.cc' || echo '$(srcdir)/'`DataConnector.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DataConnector.Tpo $(DEPDIR)/workrave-DataConnector.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataConnector.cc' object='workrave-DataConnector.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DataConnector.o `test -f 'DataConnector.cc' || echo '$(srcdir)/'`DataConnector.cc workrave-DataConnector.obj: DataConnector.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DataConnector.obj -MD -MP -MF $(DEPDIR)/workrave-DataConnector.Tpo -c -o workrave-DataConnector.obj `if test -f 'DataConnector.cc'; then $(CYGPATH_W) 'DataConnector.cc'; else $(CYGPATH_W) '$(srcdir)/DataConnector.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DataConnector.Tpo $(DEPDIR)/workrave-DataConnector.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataConnector.cc' object='workrave-DataConnector.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DataConnector.obj `if test -f 'DataConnector.cc'; then $(CYGPATH_W) 'DataConnector.cc'; else $(CYGPATH_W) '$(srcdir)/DataConnector.cc'; fi` workrave-DebugDialog.o: DebugDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DebugDialog.o -MD -MP -MF $(DEPDIR)/workrave-DebugDialog.Tpo -c -o workrave-DebugDialog.o `test -f 'DebugDialog.cc' || echo '$(srcdir)/'`DebugDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DebugDialog.Tpo $(DEPDIR)/workrave-DebugDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DebugDialog.cc' object='workrave-DebugDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DebugDialog.o `test -f 'DebugDialog.cc' || echo '$(srcdir)/'`DebugDialog.cc workrave-DebugDialog.obj: DebugDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DebugDialog.obj -MD -MP -MF $(DEPDIR)/workrave-DebugDialog.Tpo -c -o workrave-DebugDialog.obj `if test -f 'DebugDialog.cc'; then $(CYGPATH_W) 'DebugDialog.cc'; else $(CYGPATH_W) '$(srcdir)/DebugDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DebugDialog.Tpo $(DEPDIR)/workrave-DebugDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DebugDialog.cc' object='workrave-DebugDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DebugDialog.obj `if test -f 'DebugDialog.cc'; then $(CYGPATH_W) 'DebugDialog.cc'; else $(CYGPATH_W) '$(srcdir)/DebugDialog.cc'; fi` workrave-EventButton.o: EventButton.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventButton.o -MD -MP -MF $(DEPDIR)/workrave-EventButton.Tpo -c -o workrave-EventButton.o `test -f 'EventButton.cc' || echo '$(srcdir)/'`EventButton.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventButton.Tpo $(DEPDIR)/workrave-EventButton.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventButton.cc' object='workrave-EventButton.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventButton.o `test -f 'EventButton.cc' || echo '$(srcdir)/'`EventButton.cc workrave-EventButton.obj: EventButton.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventButton.obj -MD -MP -MF $(DEPDIR)/workrave-EventButton.Tpo -c -o workrave-EventButton.obj `if test -f 'EventButton.cc'; then $(CYGPATH_W) 'EventButton.cc'; else $(CYGPATH_W) '$(srcdir)/EventButton.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventButton.Tpo $(DEPDIR)/workrave-EventButton.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventButton.cc' object='workrave-EventButton.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventButton.obj `if test -f 'EventButton.cc'; then $(CYGPATH_W) 'EventButton.cc'; else $(CYGPATH_W) '$(srcdir)/EventButton.cc'; fi` workrave-EventImage.o: EventImage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventImage.o -MD -MP -MF $(DEPDIR)/workrave-EventImage.Tpo -c -o workrave-EventImage.o `test -f 'EventImage.cc' || echo '$(srcdir)/'`EventImage.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventImage.Tpo $(DEPDIR)/workrave-EventImage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventImage.cc' object='workrave-EventImage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventImage.o `test -f 'EventImage.cc' || echo '$(srcdir)/'`EventImage.cc workrave-EventImage.obj: EventImage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventImage.obj -MD -MP -MF $(DEPDIR)/workrave-EventImage.Tpo -c -o workrave-EventImage.obj `if test -f 'EventImage.cc'; then $(CYGPATH_W) 'EventImage.cc'; else $(CYGPATH_W) '$(srcdir)/EventImage.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventImage.Tpo $(DEPDIR)/workrave-EventImage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventImage.cc' object='workrave-EventImage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventImage.obj `if test -f 'EventImage.cc'; then $(CYGPATH_W) 'EventImage.cc'; else $(CYGPATH_W) '$(srcdir)/EventImage.cc'; fi` workrave-EventLabel.o: EventLabel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventLabel.o -MD -MP -MF $(DEPDIR)/workrave-EventLabel.Tpo -c -o workrave-EventLabel.o `test -f 'EventLabel.cc' || echo '$(srcdir)/'`EventLabel.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventLabel.Tpo $(DEPDIR)/workrave-EventLabel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventLabel.cc' object='workrave-EventLabel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventLabel.o `test -f 'EventLabel.cc' || echo '$(srcdir)/'`EventLabel.cc workrave-EventLabel.obj: EventLabel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-EventLabel.obj -MD -MP -MF $(DEPDIR)/workrave-EventLabel.Tpo -c -o workrave-EventLabel.obj `if test -f 'EventLabel.cc'; then $(CYGPATH_W) 'EventLabel.cc'; else $(CYGPATH_W) '$(srcdir)/EventLabel.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-EventLabel.Tpo $(DEPDIR)/workrave-EventLabel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='EventLabel.cc' object='workrave-EventLabel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-EventLabel.obj `if test -f 'EventLabel.cc'; then $(CYGPATH_W) 'EventLabel.cc'; else $(CYGPATH_W) '$(srcdir)/EventLabel.cc'; fi` workrave-Frame.o: Frame.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Frame.o -MD -MP -MF $(DEPDIR)/workrave-Frame.Tpo -c -o workrave-Frame.o `test -f 'Frame.cc' || echo '$(srcdir)/'`Frame.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Frame.Tpo $(DEPDIR)/workrave-Frame.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Frame.cc' object='workrave-Frame.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Frame.o `test -f 'Frame.cc' || echo '$(srcdir)/'`Frame.cc workrave-Frame.obj: Frame.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Frame.obj -MD -MP -MF $(DEPDIR)/workrave-Frame.Tpo -c -o workrave-Frame.obj `if test -f 'Frame.cc'; then $(CYGPATH_W) 'Frame.cc'; else $(CYGPATH_W) '$(srcdir)/Frame.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Frame.Tpo $(DEPDIR)/workrave-Frame.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Frame.cc' object='workrave-Frame.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Frame.obj `if test -f 'Frame.cc'; then $(CYGPATH_W) 'Frame.cc'; else $(CYGPATH_W) '$(srcdir)/Frame.cc'; fi` workrave-GUI.o: GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUI.o -MD -MP -MF $(DEPDIR)/workrave-GUI.Tpo -c -o workrave-GUI.o `test -f 'GUI.cc' || echo '$(srcdir)/'`GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUI.Tpo $(DEPDIR)/workrave-GUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUI.cc' object='workrave-GUI.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUI.o `test -f 'GUI.cc' || echo '$(srcdir)/'`GUI.cc workrave-GUI.obj: GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUI.obj -MD -MP -MF $(DEPDIR)/workrave-GUI.Tpo -c -o workrave-GUI.obj `if test -f 'GUI.cc'; then $(CYGPATH_W) 'GUI.cc'; else $(CYGPATH_W) '$(srcdir)/GUI.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUI.Tpo $(DEPDIR)/workrave-GUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUI.cc' object='workrave-GUI.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUI.obj `if test -f 'GUI.cc'; then $(CYGPATH_W) 'GUI.cc'; else $(CYGPATH_W) '$(srcdir)/GUI.cc'; fi` workrave-GUIConfig.o: GUIConfig.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUIConfig.o -MD -MP -MF $(DEPDIR)/workrave-GUIConfig.Tpo -c -o workrave-GUIConfig.o `test -f 'GUIConfig.cc' || echo '$(srcdir)/'`GUIConfig.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUIConfig.Tpo $(DEPDIR)/workrave-GUIConfig.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUIConfig.cc' object='workrave-GUIConfig.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUIConfig.o `test -f 'GUIConfig.cc' || echo '$(srcdir)/'`GUIConfig.cc workrave-GUIConfig.obj: GUIConfig.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUIConfig.obj -MD -MP -MF $(DEPDIR)/workrave-GUIConfig.Tpo -c -o workrave-GUIConfig.obj `if test -f 'GUIConfig.cc'; then $(CYGPATH_W) 'GUIConfig.cc'; else $(CYGPATH_W) '$(srcdir)/GUIConfig.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUIConfig.Tpo $(DEPDIR)/workrave-GUIConfig.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUIConfig.cc' object='workrave-GUIConfig.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUIConfig.obj `if test -f 'GUIConfig.cc'; then $(CYGPATH_W) 'GUIConfig.cc'; else $(CYGPATH_W) '$(srcdir)/GUIConfig.cc'; fi` workrave-GtkUtil.o: GtkUtil.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GtkUtil.o -MD -MP -MF $(DEPDIR)/workrave-GtkUtil.Tpo -c -o workrave-GtkUtil.o `test -f 'GtkUtil.cc' || echo '$(srcdir)/'`GtkUtil.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GtkUtil.Tpo $(DEPDIR)/workrave-GtkUtil.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GtkUtil.cc' object='workrave-GtkUtil.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GtkUtil.o `test -f 'GtkUtil.cc' || echo '$(srcdir)/'`GtkUtil.cc workrave-GtkUtil.obj: GtkUtil.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GtkUtil.obj -MD -MP -MF $(DEPDIR)/workrave-GtkUtil.Tpo -c -o workrave-GtkUtil.obj `if test -f 'GtkUtil.cc'; then $(CYGPATH_W) 'GtkUtil.cc'; else $(CYGPATH_W) '$(srcdir)/GtkUtil.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GtkUtil.Tpo $(DEPDIR)/workrave-GtkUtil.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GtkUtil.cc' object='workrave-GtkUtil.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GtkUtil.obj `if test -f 'GtkUtil.cc'; then $(CYGPATH_W) 'GtkUtil.cc'; else $(CYGPATH_W) '$(srcdir)/GtkUtil.cc'; fi` workrave-HeadInfo.o: HeadInfo.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-HeadInfo.o -MD -MP -MF $(DEPDIR)/workrave-HeadInfo.Tpo -c -o workrave-HeadInfo.o `test -f 'HeadInfo.cc' || echo '$(srcdir)/'`HeadInfo.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-HeadInfo.Tpo $(DEPDIR)/workrave-HeadInfo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HeadInfo.cc' object='workrave-HeadInfo.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-HeadInfo.o `test -f 'HeadInfo.cc' || echo '$(srcdir)/'`HeadInfo.cc workrave-HeadInfo.obj: HeadInfo.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-HeadInfo.obj -MD -MP -MF $(DEPDIR)/workrave-HeadInfo.Tpo -c -o workrave-HeadInfo.obj `if test -f 'HeadInfo.cc'; then $(CYGPATH_W) 'HeadInfo.cc'; else $(CYGPATH_W) '$(srcdir)/HeadInfo.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-HeadInfo.Tpo $(DEPDIR)/workrave-HeadInfo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HeadInfo.cc' object='workrave-HeadInfo.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-HeadInfo.obj `if test -f 'HeadInfo.cc'; then $(CYGPATH_W) 'HeadInfo.cc'; else $(CYGPATH_W) '$(srcdir)/HeadInfo.cc'; fi` workrave-Hig.o: Hig.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Hig.o -MD -MP -MF $(DEPDIR)/workrave-Hig.Tpo -c -o workrave-Hig.o `test -f 'Hig.cc' || echo '$(srcdir)/'`Hig.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Hig.Tpo $(DEPDIR)/workrave-Hig.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Hig.cc' object='workrave-Hig.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Hig.o `test -f 'Hig.cc' || echo '$(srcdir)/'`Hig.cc workrave-Hig.obj: Hig.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Hig.obj -MD -MP -MF $(DEPDIR)/workrave-Hig.Tpo -c -o workrave-Hig.obj `if test -f 'Hig.cc'; then $(CYGPATH_W) 'Hig.cc'; else $(CYGPATH_W) '$(srcdir)/Hig.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Hig.Tpo $(DEPDIR)/workrave-Hig.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Hig.cc' object='workrave-Hig.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Hig.obj `if test -f 'Hig.cc'; then $(CYGPATH_W) 'Hig.cc'; else $(CYGPATH_W) '$(srcdir)/Hig.cc'; fi` workrave-IconListCellRenderer.o: IconListCellRenderer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IconListCellRenderer.o -MD -MP -MF $(DEPDIR)/workrave-IconListCellRenderer.Tpo -c -o workrave-IconListCellRenderer.o `test -f 'IconListCellRenderer.cc' || echo '$(srcdir)/'`IconListCellRenderer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IconListCellRenderer.Tpo $(DEPDIR)/workrave-IconListCellRenderer.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IconListCellRenderer.cc' object='workrave-IconListCellRenderer.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IconListCellRenderer.o `test -f 'IconListCellRenderer.cc' || echo '$(srcdir)/'`IconListCellRenderer.cc workrave-IconListCellRenderer.obj: IconListCellRenderer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IconListCellRenderer.obj -MD -MP -MF $(DEPDIR)/workrave-IconListCellRenderer.Tpo -c -o workrave-IconListCellRenderer.obj `if test -f 'IconListCellRenderer.cc'; then $(CYGPATH_W) 'IconListCellRenderer.cc'; else $(CYGPATH_W) '$(srcdir)/IconListCellRenderer.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IconListCellRenderer.Tpo $(DEPDIR)/workrave-IconListCellRenderer.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IconListCellRenderer.cc' object='workrave-IconListCellRenderer.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IconListCellRenderer.obj `if test -f 'IconListCellRenderer.cc'; then $(CYGPATH_W) 'IconListCellRenderer.cc'; else $(CYGPATH_W) '$(srcdir)/IconListCellRenderer.cc'; fi` workrave-IconListNotebook.o: IconListNotebook.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IconListNotebook.o -MD -MP -MF $(DEPDIR)/workrave-IconListNotebook.Tpo -c -o workrave-IconListNotebook.o `test -f 'IconListNotebook.cc' || echo '$(srcdir)/'`IconListNotebook.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IconListNotebook.Tpo $(DEPDIR)/workrave-IconListNotebook.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IconListNotebook.cc' object='workrave-IconListNotebook.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IconListNotebook.o `test -f 'IconListNotebook.cc' || echo '$(srcdir)/'`IconListNotebook.cc workrave-IconListNotebook.obj: IconListNotebook.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IconListNotebook.obj -MD -MP -MF $(DEPDIR)/workrave-IconListNotebook.Tpo -c -o workrave-IconListNotebook.obj `if test -f 'IconListNotebook.cc'; then $(CYGPATH_W) 'IconListNotebook.cc'; else $(CYGPATH_W) '$(srcdir)/IconListNotebook.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IconListNotebook.Tpo $(DEPDIR)/workrave-IconListNotebook.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IconListNotebook.cc' object='workrave-IconListNotebook.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IconListNotebook.obj `if test -f 'IconListNotebook.cc'; then $(CYGPATH_W) 'IconListNotebook.cc'; else $(CYGPATH_W) '$(srcdir)/IconListNotebook.cc'; fi` workrave-MainGtkMenu.o: MainGtkMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainGtkMenu.o -MD -MP -MF $(DEPDIR)/workrave-MainGtkMenu.Tpo -c -o workrave-MainGtkMenu.o `test -f 'MainGtkMenu.cc' || echo '$(srcdir)/'`MainGtkMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainGtkMenu.Tpo $(DEPDIR)/workrave-MainGtkMenu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainGtkMenu.cc' object='workrave-MainGtkMenu.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainGtkMenu.o `test -f 'MainGtkMenu.cc' || echo '$(srcdir)/'`MainGtkMenu.cc workrave-MainGtkMenu.obj: MainGtkMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainGtkMenu.obj -MD -MP -MF $(DEPDIR)/workrave-MainGtkMenu.Tpo -c -o workrave-MainGtkMenu.obj `if test -f 'MainGtkMenu.cc'; then $(CYGPATH_W) 'MainGtkMenu.cc'; else $(CYGPATH_W) '$(srcdir)/MainGtkMenu.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainGtkMenu.Tpo $(DEPDIR)/workrave-MainGtkMenu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainGtkMenu.cc' object='workrave-MainGtkMenu.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainGtkMenu.obj `if test -f 'MainGtkMenu.cc'; then $(CYGPATH_W) 'MainGtkMenu.cc'; else $(CYGPATH_W) '$(srcdir)/MainGtkMenu.cc'; fi` workrave-MainWindow.o: MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainWindow.o -MD -MP -MF $(DEPDIR)/workrave-MainWindow.Tpo -c -o workrave-MainWindow.o `test -f 'MainWindow.cc' || echo '$(srcdir)/'`MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainWindow.Tpo $(DEPDIR)/workrave-MainWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainWindow.cc' object='workrave-MainWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainWindow.o `test -f 'MainWindow.cc' || echo '$(srcdir)/'`MainWindow.cc workrave-MainWindow.obj: MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainWindow.obj -MD -MP -MF $(DEPDIR)/workrave-MainWindow.Tpo -c -o workrave-MainWindow.obj `if test -f 'MainWindow.cc'; then $(CYGPATH_W) 'MainWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MainWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainWindow.Tpo $(DEPDIR)/workrave-MainWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainWindow.cc' object='workrave-MainWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainWindow.obj `if test -f 'MainWindow.cc'; then $(CYGPATH_W) 'MainWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MainWindow.cc'; fi` workrave-Menus.o: Menus.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Menus.o -MD -MP -MF $(DEPDIR)/workrave-Menus.Tpo -c -o workrave-Menus.o `test -f 'Menus.cc' || echo '$(srcdir)/'`Menus.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Menus.Tpo $(DEPDIR)/workrave-Menus.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Menus.cc' object='workrave-Menus.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Menus.o `test -f 'Menus.cc' || echo '$(srcdir)/'`Menus.cc workrave-Menus.obj: Menus.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Menus.obj -MD -MP -MF $(DEPDIR)/workrave-Menus.Tpo -c -o workrave-Menus.obj `if test -f 'Menus.cc'; then $(CYGPATH_W) 'Menus.cc'; else $(CYGPATH_W) '$(srcdir)/Menus.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Menus.Tpo $(DEPDIR)/workrave-Menus.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Menus.cc' object='workrave-Menus.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Menus.obj `if test -f 'Menus.cc'; then $(CYGPATH_W) 'Menus.cc'; else $(CYGPATH_W) '$(srcdir)/Menus.cc'; fi` workrave-MicroBreakWindow.o: MicroBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MicroBreakWindow.o -MD -MP -MF $(DEPDIR)/workrave-MicroBreakWindow.Tpo -c -o workrave-MicroBreakWindow.o `test -f 'MicroBreakWindow.cc' || echo '$(srcdir)/'`MicroBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MicroBreakWindow.Tpo $(DEPDIR)/workrave-MicroBreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MicroBreakWindow.cc' object='workrave-MicroBreakWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MicroBreakWindow.o `test -f 'MicroBreakWindow.cc' || echo '$(srcdir)/'`MicroBreakWindow.cc workrave-MicroBreakWindow.obj: MicroBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MicroBreakWindow.obj -MD -MP -MF $(DEPDIR)/workrave-MicroBreakWindow.Tpo -c -o workrave-MicroBreakWindow.obj `if test -f 'MicroBreakWindow.cc'; then $(CYGPATH_W) 'MicroBreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MicroBreakWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MicroBreakWindow.Tpo $(DEPDIR)/workrave-MicroBreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MicroBreakWindow.cc' object='workrave-MicroBreakWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MicroBreakWindow.obj `if test -f 'MicroBreakWindow.cc'; then $(CYGPATH_W) 'MicroBreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MicroBreakWindow.cc'; fi` workrave-PreferencesDialog.o: PreferencesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreferencesDialog.o -MD -MP -MF $(DEPDIR)/workrave-PreferencesDialog.Tpo -c -o workrave-PreferencesDialog.o `test -f 'PreferencesDialog.cc' || echo '$(srcdir)/'`PreferencesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreferencesDialog.Tpo $(DEPDIR)/workrave-PreferencesDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreferencesDialog.cc' object='workrave-PreferencesDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreferencesDialog.o `test -f 'PreferencesDialog.cc' || echo '$(srcdir)/'`PreferencesDialog.cc workrave-PreferencesDialog.obj: PreferencesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreferencesDialog.obj -MD -MP -MF $(DEPDIR)/workrave-PreferencesDialog.Tpo -c -o workrave-PreferencesDialog.obj `if test -f 'PreferencesDialog.cc'; then $(CYGPATH_W) 'PreferencesDialog.cc'; else $(CYGPATH_W) '$(srcdir)/PreferencesDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreferencesDialog.Tpo $(DEPDIR)/workrave-PreferencesDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreferencesDialog.cc' object='workrave-PreferencesDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreferencesDialog.obj `if test -f 'PreferencesDialog.cc'; then $(CYGPATH_W) 'PreferencesDialog.cc'; else $(CYGPATH_W) '$(srcdir)/PreferencesDialog.cc'; fi` workrave-PreludeWindow.o: PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreludeWindow.o -MD -MP -MF $(DEPDIR)/workrave-PreludeWindow.Tpo -c -o workrave-PreludeWindow.o `test -f 'PreludeWindow.cc' || echo '$(srcdir)/'`PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreludeWindow.Tpo $(DEPDIR)/workrave-PreludeWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreludeWindow.cc' object='workrave-PreludeWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreludeWindow.o `test -f 'PreludeWindow.cc' || echo '$(srcdir)/'`PreludeWindow.cc workrave-PreludeWindow.obj: PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreludeWindow.obj -MD -MP -MF $(DEPDIR)/workrave-PreludeWindow.Tpo -c -o workrave-PreludeWindow.obj `if test -f 'PreludeWindow.cc'; then $(CYGPATH_W) 'PreludeWindow.cc'; else $(CYGPATH_W) '$(srcdir)/PreludeWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreludeWindow.Tpo $(DEPDIR)/workrave-PreludeWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreludeWindow.cc' object='workrave-PreludeWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreludeWindow.obj `if test -f 'PreludeWindow.cc'; then $(CYGPATH_W) 'PreludeWindow.cc'; else $(CYGPATH_W) '$(srcdir)/PreludeWindow.cc'; fi` workrave-RestBreakWindow.o: RestBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-RestBreakWindow.o -MD -MP -MF $(DEPDIR)/workrave-RestBreakWindow.Tpo -c -o workrave-RestBreakWindow.o `test -f 'RestBreakWindow.cc' || echo '$(srcdir)/'`RestBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-RestBreakWindow.Tpo $(DEPDIR)/workrave-RestBreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='RestBreakWindow.cc' object='workrave-RestBreakWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-RestBreakWindow.o `test -f 'RestBreakWindow.cc' || echo '$(srcdir)/'`RestBreakWindow.cc workrave-RestBreakWindow.obj: RestBreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-RestBreakWindow.obj -MD -MP -MF $(DEPDIR)/workrave-RestBreakWindow.Tpo -c -o workrave-RestBreakWindow.obj `if test -f 'RestBreakWindow.cc'; then $(CYGPATH_W) 'RestBreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/RestBreakWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-RestBreakWindow.Tpo $(DEPDIR)/workrave-RestBreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='RestBreakWindow.cc' object='workrave-RestBreakWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-RestBreakWindow.obj `if test -f 'RestBreakWindow.cc'; then $(CYGPATH_W) 'RestBreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/RestBreakWindow.cc'; fi` workrave-Session.o: Session.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Session.o -MD -MP -MF $(DEPDIR)/workrave-Session.Tpo -c -o workrave-Session.o `test -f 'Session.cc' || echo '$(srcdir)/'`Session.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Session.Tpo $(DEPDIR)/workrave-Session.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Session.cc' object='workrave-Session.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Session.o `test -f 'Session.cc' || echo '$(srcdir)/'`Session.cc workrave-Session.obj: Session.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-Session.obj -MD -MP -MF $(DEPDIR)/workrave-Session.Tpo -c -o workrave-Session.obj `if test -f 'Session.cc'; then $(CYGPATH_W) 'Session.cc'; else $(CYGPATH_W) '$(srcdir)/Session.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-Session.Tpo $(DEPDIR)/workrave-Session.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Session.cc' object='workrave-Session.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-Session.obj `if test -f 'Session.cc'; then $(CYGPATH_W) 'Session.cc'; else $(CYGPATH_W) '$(srcdir)/Session.cc'; fi` workrave-StatusIcon.o: StatusIcon.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-StatusIcon.o -MD -MP -MF $(DEPDIR)/workrave-StatusIcon.Tpo -c -o workrave-StatusIcon.o `test -f 'StatusIcon.cc' || echo '$(srcdir)/'`StatusIcon.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-StatusIcon.Tpo $(DEPDIR)/workrave-StatusIcon.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StatusIcon.cc' object='workrave-StatusIcon.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-StatusIcon.o `test -f 'StatusIcon.cc' || echo '$(srcdir)/'`StatusIcon.cc workrave-StatusIcon.obj: StatusIcon.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-StatusIcon.obj -MD -MP -MF $(DEPDIR)/workrave-StatusIcon.Tpo -c -o workrave-StatusIcon.obj `if test -f 'StatusIcon.cc'; then $(CYGPATH_W) 'StatusIcon.cc'; else $(CYGPATH_W) '$(srcdir)/StatusIcon.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-StatusIcon.Tpo $(DEPDIR)/workrave-StatusIcon.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StatusIcon.cc' object='workrave-StatusIcon.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-StatusIcon.obj `if test -f 'StatusIcon.cc'; then $(CYGPATH_W) 'StatusIcon.cc'; else $(CYGPATH_W) '$(srcdir)/StatusIcon.cc'; fi` workrave-TimeBar.o: TimeBar.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimeBar.o -MD -MP -MF $(DEPDIR)/workrave-TimeBar.Tpo -c -o workrave-TimeBar.o `test -f 'TimeBar.cc' || echo '$(srcdir)/'`TimeBar.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimeBar.Tpo $(DEPDIR)/workrave-TimeBar.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimeBar.cc' object='workrave-TimeBar.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimeBar.o `test -f 'TimeBar.cc' || echo '$(srcdir)/'`TimeBar.cc workrave-TimeBar.obj: TimeBar.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimeBar.obj -MD -MP -MF $(DEPDIR)/workrave-TimeBar.Tpo -c -o workrave-TimeBar.obj `if test -f 'TimeBar.cc'; then $(CYGPATH_W) 'TimeBar.cc'; else $(CYGPATH_W) '$(srcdir)/TimeBar.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimeBar.Tpo $(DEPDIR)/workrave-TimeBar.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimeBar.cc' object='workrave-TimeBar.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimeBar.obj `if test -f 'TimeBar.cc'; then $(CYGPATH_W) 'TimeBar.cc'; else $(CYGPATH_W) '$(srcdir)/TimeBar.cc'; fi` workrave-TimeEntry.o: TimeEntry.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimeEntry.o -MD -MP -MF $(DEPDIR)/workrave-TimeEntry.Tpo -c -o workrave-TimeEntry.o `test -f 'TimeEntry.cc' || echo '$(srcdir)/'`TimeEntry.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimeEntry.Tpo $(DEPDIR)/workrave-TimeEntry.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimeEntry.cc' object='workrave-TimeEntry.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimeEntry.o `test -f 'TimeEntry.cc' || echo '$(srcdir)/'`TimeEntry.cc workrave-TimeEntry.obj: TimeEntry.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimeEntry.obj -MD -MP -MF $(DEPDIR)/workrave-TimeEntry.Tpo -c -o workrave-TimeEntry.obj `if test -f 'TimeEntry.cc'; then $(CYGPATH_W) 'TimeEntry.cc'; else $(CYGPATH_W) '$(srcdir)/TimeEntry.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimeEntry.Tpo $(DEPDIR)/workrave-TimeEntry.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimeEntry.cc' object='workrave-TimeEntry.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimeEntry.obj `if test -f 'TimeEntry.cc'; then $(CYGPATH_W) 'TimeEntry.cc'; else $(CYGPATH_W) '$(srcdir)/TimeEntry.cc'; fi` workrave-TimerBoxGtkView.o: TimerBoxGtkView.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxGtkView.o -MD -MP -MF $(DEPDIR)/workrave-TimerBoxGtkView.Tpo -c -o workrave-TimerBoxGtkView.o `test -f 'TimerBoxGtkView.cc' || echo '$(srcdir)/'`TimerBoxGtkView.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxGtkView.Tpo $(DEPDIR)/workrave-TimerBoxGtkView.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxGtkView.cc' object='workrave-TimerBoxGtkView.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxGtkView.o `test -f 'TimerBoxGtkView.cc' || echo '$(srcdir)/'`TimerBoxGtkView.cc workrave-TimerBoxGtkView.obj: TimerBoxGtkView.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxGtkView.obj -MD -MP -MF $(DEPDIR)/workrave-TimerBoxGtkView.Tpo -c -o workrave-TimerBoxGtkView.obj `if test -f 'TimerBoxGtkView.cc'; then $(CYGPATH_W) 'TimerBoxGtkView.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxGtkView.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxGtkView.Tpo $(DEPDIR)/workrave-TimerBoxGtkView.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxGtkView.cc' object='workrave-TimerBoxGtkView.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxGtkView.obj `if test -f 'TimerBoxGtkView.cc'; then $(CYGPATH_W) 'TimerBoxGtkView.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxGtkView.cc'; fi` workrave-TimerBoxPreferencePage.o: TimerBoxPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxPreferencePage.o -MD -MP -MF $(DEPDIR)/workrave-TimerBoxPreferencePage.Tpo -c -o workrave-TimerBoxPreferencePage.o `test -f 'TimerBoxPreferencePage.cc' || echo '$(srcdir)/'`TimerBoxPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxPreferencePage.Tpo $(DEPDIR)/workrave-TimerBoxPreferencePage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxPreferencePage.cc' object='workrave-TimerBoxPreferencePage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxPreferencePage.o `test -f 'TimerBoxPreferencePage.cc' || echo '$(srcdir)/'`TimerBoxPreferencePage.cc workrave-TimerBoxPreferencePage.obj: TimerBoxPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxPreferencePage.obj -MD -MP -MF $(DEPDIR)/workrave-TimerBoxPreferencePage.Tpo -c -o workrave-TimerBoxPreferencePage.obj `if test -f 'TimerBoxPreferencePage.cc'; then $(CYGPATH_W) 'TimerBoxPreferencePage.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxPreferencePage.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxPreferencePage.Tpo $(DEPDIR)/workrave-TimerBoxPreferencePage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxPreferencePage.cc' object='workrave-TimerBoxPreferencePage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxPreferencePage.obj `if test -f 'TimerBoxPreferencePage.cc'; then $(CYGPATH_W) 'TimerBoxPreferencePage.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxPreferencePage.cc'; fi` workrave-TimerPreferencesPanel.o: TimerPreferencesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerPreferencesPanel.o -MD -MP -MF $(DEPDIR)/workrave-TimerPreferencesPanel.Tpo -c -o workrave-TimerPreferencesPanel.o `test -f 'TimerPreferencesPanel.cc' || echo '$(srcdir)/'`TimerPreferencesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerPreferencesPanel.Tpo $(DEPDIR)/workrave-TimerPreferencesPanel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerPreferencesPanel.cc' object='workrave-TimerPreferencesPanel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerPreferencesPanel.o `test -f 'TimerPreferencesPanel.cc' || echo '$(srcdir)/'`TimerPreferencesPanel.cc workrave-TimerPreferencesPanel.obj: TimerPreferencesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerPreferencesPanel.obj -MD -MP -MF $(DEPDIR)/workrave-TimerPreferencesPanel.Tpo -c -o workrave-TimerPreferencesPanel.obj `if test -f 'TimerPreferencesPanel.cc'; then $(CYGPATH_W) 'TimerPreferencesPanel.cc'; else $(CYGPATH_W) '$(srcdir)/TimerPreferencesPanel.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerPreferencesPanel.Tpo $(DEPDIR)/workrave-TimerPreferencesPanel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerPreferencesPanel.cc' object='workrave-TimerPreferencesPanel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerPreferencesPanel.obj `if test -f 'TimerPreferencesPanel.cc'; then $(CYGPATH_W) 'TimerPreferencesPanel.cc'; else $(CYGPATH_W) '$(srcdir)/TimerPreferencesPanel.cc'; fi` workrave-WindowHints.o: WindowHints.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-WindowHints.o -MD -MP -MF $(DEPDIR)/workrave-WindowHints.Tpo -c -o workrave-WindowHints.o `test -f 'WindowHints.cc' || echo '$(srcdir)/'`WindowHints.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-WindowHints.Tpo $(DEPDIR)/workrave-WindowHints.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='WindowHints.cc' object='workrave-WindowHints.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-WindowHints.o `test -f 'WindowHints.cc' || echo '$(srcdir)/'`WindowHints.cc workrave-WindowHints.obj: WindowHints.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-WindowHints.obj -MD -MP -MF $(DEPDIR)/workrave-WindowHints.Tpo -c -o workrave-WindowHints.obj `if test -f 'WindowHints.cc'; then $(CYGPATH_W) 'WindowHints.cc'; else $(CYGPATH_W) '$(srcdir)/WindowHints.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-WindowHints.Tpo $(DEPDIR)/workrave-WindowHints.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='WindowHints.cc' object='workrave-WindowHints.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-WindowHints.obj `if test -f 'WindowHints.cc'; then $(CYGPATH_W) 'WindowHints.cc'; else $(CYGPATH_W) '$(srcdir)/WindowHints.cc'; fi` workrave-main.o: main.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-main.o -MD -MP -MF $(DEPDIR)/workrave-main.Tpo -c -o workrave-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-main.Tpo $(DEPDIR)/workrave-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='workrave-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc workrave-main.obj: main.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-main.obj -MD -MP -MF $(DEPDIR)/workrave-main.Tpo -c -o workrave-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-main.Tpo $(DEPDIR)/workrave-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='workrave-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` workrave-IndicatorAppletMenu.o: IndicatorAppletMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IndicatorAppletMenu.o -MD -MP -MF $(DEPDIR)/workrave-IndicatorAppletMenu.Tpo -c -o workrave-IndicatorAppletMenu.o `test -f 'IndicatorAppletMenu.cc' || echo '$(srcdir)/'`IndicatorAppletMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IndicatorAppletMenu.Tpo $(DEPDIR)/workrave-IndicatorAppletMenu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IndicatorAppletMenu.cc' object='workrave-IndicatorAppletMenu.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IndicatorAppletMenu.o `test -f 'IndicatorAppletMenu.cc' || echo '$(srcdir)/'`IndicatorAppletMenu.cc workrave-IndicatorAppletMenu.obj: IndicatorAppletMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-IndicatorAppletMenu.obj -MD -MP -MF $(DEPDIR)/workrave-IndicatorAppletMenu.Tpo -c -o workrave-IndicatorAppletMenu.obj `if test -f 'IndicatorAppletMenu.cc'; then $(CYGPATH_W) 'IndicatorAppletMenu.cc'; else $(CYGPATH_W) '$(srcdir)/IndicatorAppletMenu.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-IndicatorAppletMenu.Tpo $(DEPDIR)/workrave-IndicatorAppletMenu.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IndicatorAppletMenu.cc' object='workrave-IndicatorAppletMenu.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-IndicatorAppletMenu.obj `if test -f 'IndicatorAppletMenu.cc'; then $(CYGPATH_W) 'IndicatorAppletMenu.cc'; else $(CYGPATH_W) '$(srcdir)/IndicatorAppletMenu.cc'; fi` workrave-X11SystrayAppletWindow.o: X11SystrayAppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-X11SystrayAppletWindow.o -MD -MP -MF $(DEPDIR)/workrave-X11SystrayAppletWindow.Tpo -c -o workrave-X11SystrayAppletWindow.o `test -f 'X11SystrayAppletWindow.cc' || echo '$(srcdir)/'`X11SystrayAppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-X11SystrayAppletWindow.Tpo $(DEPDIR)/workrave-X11SystrayAppletWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='X11SystrayAppletWindow.cc' object='workrave-X11SystrayAppletWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-X11SystrayAppletWindow.o `test -f 'X11SystrayAppletWindow.cc' || echo '$(srcdir)/'`X11SystrayAppletWindow.cc workrave-X11SystrayAppletWindow.obj: X11SystrayAppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-X11SystrayAppletWindow.obj -MD -MP -MF $(DEPDIR)/workrave-X11SystrayAppletWindow.Tpo -c -o workrave-X11SystrayAppletWindow.obj `if test -f 'X11SystrayAppletWindow.cc'; then $(CYGPATH_W) 'X11SystrayAppletWindow.cc'; else $(CYGPATH_W) '$(srcdir)/X11SystrayAppletWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-X11SystrayAppletWindow.Tpo $(DEPDIR)/workrave-X11SystrayAppletWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='X11SystrayAppletWindow.cc' object='workrave-X11SystrayAppletWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-X11SystrayAppletWindow.obj `if test -f 'X11SystrayAppletWindow.cc'; then $(CYGPATH_W) 'X11SystrayAppletWindow.cc'; else $(CYGPATH_W) '$(srcdir)/X11SystrayAppletWindow.cc'; fi` ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.o: ../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.o -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.o `test -f '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.o `test -f '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.obj: ../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.obj -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkJoinDialog.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc'; fi` ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.o: ../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.o -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.o `test -f '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.o `test -f '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.obj: ../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.obj -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkLogDialog.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc'; fi` ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.o: ../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.o -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.o `test -f '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.o `test -f '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc' || echo '$(srcdir)/'`../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.obj: ../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.obj -MD -MP -MF ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Tpo -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Tpo ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc' object='../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/distribution/gtkmm/src/workrave-NetworkPreferencePage.obj `if test -f '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; then $(CYGPATH_W) '../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc'; fi` ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.o: ../../plugin/exercises/gtkmm/src/ExercisesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.o -MD -MP -MF ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Tpo -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.o `test -f '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc' || echo '$(srcdir)/'`../../plugin/exercises/gtkmm/src/ExercisesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Tpo ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/gtkmm/src/ExercisesDialog.cc' object='../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.o `test -f '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc' || echo '$(srcdir)/'`../../plugin/exercises/gtkmm/src/ExercisesDialog.cc ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.obj: ../../plugin/exercises/gtkmm/src/ExercisesDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.obj -MD -MP -MF ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Tpo -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.obj `if test -f '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; then $(CYGPATH_W) '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Tpo ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/gtkmm/src/ExercisesDialog.cc' object='../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesDialog.obj `if test -f '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; then $(CYGPATH_W) '../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/gtkmm/src/ExercisesDialog.cc'; fi` ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.o: ../../plugin/exercises/gtkmm/src/ExercisesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.o -MD -MP -MF ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Tpo -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.o `test -f '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc' || echo '$(srcdir)/'`../../plugin/exercises/gtkmm/src/ExercisesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Tpo ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/gtkmm/src/ExercisesPanel.cc' object='../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.o `test -f '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc' || echo '$(srcdir)/'`../../plugin/exercises/gtkmm/src/ExercisesPanel.cc ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.obj: ../../plugin/exercises/gtkmm/src/ExercisesPanel.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.obj -MD -MP -MF ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Tpo -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.obj `if test -f '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; then $(CYGPATH_W) '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Tpo ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/gtkmm/src/ExercisesPanel.cc' object='../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/gtkmm/src/workrave-ExercisesPanel.obj `if test -f '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; then $(CYGPATH_W) '../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/gtkmm/src/ExercisesPanel.cc'; fi` ../../plugin/exercises/common/src/workrave-Exercise.o: ../../plugin/exercises/common/src/Exercise.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/common/src/workrave-Exercise.o -MD -MP -MF ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Tpo -c -o ../../plugin/exercises/common/src/workrave-Exercise.o `test -f '../../plugin/exercises/common/src/Exercise.cc' || echo '$(srcdir)/'`../../plugin/exercises/common/src/Exercise.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Tpo ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/common/src/Exercise.cc' object='../../plugin/exercises/common/src/workrave-Exercise.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/common/src/workrave-Exercise.o `test -f '../../plugin/exercises/common/src/Exercise.cc' || echo '$(srcdir)/'`../../plugin/exercises/common/src/Exercise.cc ../../plugin/exercises/common/src/workrave-Exercise.obj: ../../plugin/exercises/common/src/Exercise.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/exercises/common/src/workrave-Exercise.obj -MD -MP -MF ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Tpo -c -o ../../plugin/exercises/common/src/workrave-Exercise.obj `if test -f '../../plugin/exercises/common/src/Exercise.cc'; then $(CYGPATH_W) '../../plugin/exercises/common/src/Exercise.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/common/src/Exercise.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Tpo ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/exercises/common/src/Exercise.cc' object='../../plugin/exercises/common/src/workrave-Exercise.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/exercises/common/src/workrave-Exercise.obj `if test -f '../../plugin/exercises/common/src/Exercise.cc'; then $(CYGPATH_W) '../../plugin/exercises/common/src/Exercise.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/exercises/common/src/Exercise.cc'; fi` ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.o: ../../plugin/statistics/gtkmm/src/StatisticsDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.o -MD -MP -MF ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Tpo -c -o ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.o `test -f '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc' || echo '$(srcdir)/'`../../plugin/statistics/gtkmm/src/StatisticsDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Tpo ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/statistics/gtkmm/src/StatisticsDialog.cc' object='../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.o `test -f '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc' || echo '$(srcdir)/'`../../plugin/statistics/gtkmm/src/StatisticsDialog.cc ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.obj: ../../plugin/statistics/gtkmm/src/StatisticsDialog.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.obj -MD -MP -MF ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Tpo -c -o ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.obj `if test -f '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; then $(CYGPATH_W) '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Tpo ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../../plugin/statistics/gtkmm/src/StatisticsDialog.cc' object='../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o ../../plugin/statistics/gtkmm/src/workrave-StatisticsDialog.obj `if test -f '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; then $(CYGPATH_W) '../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; else $(CYGPATH_W) '$(srcdir)/../../plugin/statistics/gtkmm/src/StatisticsDialog.cc'; fi` workrave-DBusGUI.o: DBusGUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DBusGUI.o -MD -MP -MF $(DEPDIR)/workrave-DBusGUI.Tpo -c -o workrave-DBusGUI.o `test -f 'DBusGUI.cc' || echo '$(srcdir)/'`DBusGUI.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DBusGUI.Tpo $(DEPDIR)/workrave-DBusGUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBusGUI.cc' object='workrave-DBusGUI.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DBusGUI.o `test -f 'DBusGUI.cc' || echo '$(srcdir)/'`DBusGUI.cc workrave-DBusGUI.obj: DBusGUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-DBusGUI.obj -MD -MP -MF $(DEPDIR)/workrave-DBusGUI.Tpo -c -o workrave-DBusGUI.obj `if test -f 'DBusGUI.cc'; then $(CYGPATH_W) 'DBusGUI.cc'; else $(CYGPATH_W) '$(srcdir)/DBusGUI.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-DBusGUI.Tpo $(DEPDIR)/workrave-DBusGUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBusGUI.cc' object='workrave-DBusGUI.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-DBusGUI.obj `if test -f 'DBusGUI.cc'; then $(CYGPATH_W) 'DBusGUI.cc'; else $(CYGPATH_W) '$(srcdir)/DBusGUI.cc'; fi` workrave-GenericDBusApplet.o: GenericDBusApplet.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GenericDBusApplet.o -MD -MP -MF $(DEPDIR)/workrave-GenericDBusApplet.Tpo -c -o workrave-GenericDBusApplet.o `test -f 'GenericDBusApplet.cc' || echo '$(srcdir)/'`GenericDBusApplet.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GenericDBusApplet.Tpo $(DEPDIR)/workrave-GenericDBusApplet.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GenericDBusApplet.cc' object='workrave-GenericDBusApplet.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GenericDBusApplet.o `test -f 'GenericDBusApplet.cc' || echo '$(srcdir)/'`GenericDBusApplet.cc workrave-GenericDBusApplet.obj: GenericDBusApplet.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GenericDBusApplet.obj -MD -MP -MF $(DEPDIR)/workrave-GenericDBusApplet.Tpo -c -o workrave-GenericDBusApplet.obj `if test -f 'GenericDBusApplet.cc'; then $(CYGPATH_W) 'GenericDBusApplet.cc'; else $(CYGPATH_W) '$(srcdir)/GenericDBusApplet.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GenericDBusApplet.Tpo $(DEPDIR)/workrave-GenericDBusApplet.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GenericDBusApplet.cc' object='workrave-GenericDBusApplet.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GenericDBusApplet.obj `if test -f 'GenericDBusApplet.cc'; then $(CYGPATH_W) 'GenericDBusApplet.cc'; else $(CYGPATH_W) '$(srcdir)/GenericDBusApplet.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || 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)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) install-dist_appdataDATA: $(dist_appdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || 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)$(appdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \ done uninstall-dist_appdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir) install-serviceDATA: $(service_DATA) @$(NORMAL_INSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(servicedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(servicedir)" || 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)$(servicedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(servicedir)" || exit $$?; \ done uninstall-serviceDATA: @$(NORMAL_UNINSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(servicedir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(PROGRAMS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(servicedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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: -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) -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/$(am__dirstamp) -rm -f ../../plugin/distribution/gtkmm/src/$(am__dirstamp) -rm -f ../../plugin/exercises/common/src/$(DEPDIR)/$(am__dirstamp) -rm -f ../../plugin/exercises/common/src/$(am__dirstamp) -rm -f ../../plugin/exercises/gtkmm/src/$(DEPDIR)/$(am__dirstamp) -rm -f ../../plugin/exercises/gtkmm/src/$(am__dirstamp) -rm -f ../../plugin/statistics/gtkmm/src/$(DEPDIR)/$(am__dirstamp) -rm -f ../../plugin/statistics/gtkmm/src/$(am__dirstamp) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po -rm -f ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po -rm -f ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po -rm -f ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po -rm -f ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po -rm -f ./$(DEPDIR)/workrave-AppletControl.Po -rm -f ./$(DEPDIR)/workrave-AppletWindow.Po -rm -f ./$(DEPDIR)/workrave-BreakWindow.Po -rm -f ./$(DEPDIR)/workrave-DBusGUI.Po -rm -f ./$(DEPDIR)/workrave-DailyLimitWindow.Po -rm -f ./$(DEPDIR)/workrave-DataConnector.Po -rm -f ./$(DEPDIR)/workrave-DebugDialog.Po -rm -f ./$(DEPDIR)/workrave-EventButton.Po -rm -f ./$(DEPDIR)/workrave-EventImage.Po -rm -f ./$(DEPDIR)/workrave-EventLabel.Po -rm -f ./$(DEPDIR)/workrave-Frame.Po -rm -f ./$(DEPDIR)/workrave-GUI.Po -rm -f ./$(DEPDIR)/workrave-GUIConfig.Po -rm -f ./$(DEPDIR)/workrave-GenericDBusApplet.Po -rm -f ./$(DEPDIR)/workrave-GtkUtil.Po -rm -f ./$(DEPDIR)/workrave-HeadInfo.Po -rm -f ./$(DEPDIR)/workrave-Hig.Po -rm -f ./$(DEPDIR)/workrave-IconListCellRenderer.Po -rm -f ./$(DEPDIR)/workrave-IconListNotebook.Po -rm -f ./$(DEPDIR)/workrave-IndicatorAppletMenu.Po -rm -f ./$(DEPDIR)/workrave-MainGtkMenu.Po -rm -f ./$(DEPDIR)/workrave-MainWindow.Po -rm -f ./$(DEPDIR)/workrave-Menus.Po -rm -f ./$(DEPDIR)/workrave-MicroBreakWindow.Po -rm -f ./$(DEPDIR)/workrave-PreferencesDialog.Po -rm -f ./$(DEPDIR)/workrave-PreludeWindow.Po -rm -f ./$(DEPDIR)/workrave-RestBreakWindow.Po -rm -f ./$(DEPDIR)/workrave-Session.Po -rm -f ./$(DEPDIR)/workrave-StatusIcon.Po -rm -f ./$(DEPDIR)/workrave-TimeBar.Po -rm -f ./$(DEPDIR)/workrave-TimeEntry.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxGtkView.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxPreferencePage.Po -rm -f ./$(DEPDIR)/workrave-TimerPreferencesPanel.Po -rm -f ./$(DEPDIR)/workrave-WindowHints.Po -rm -f ./$(DEPDIR)/workrave-X11SystrayAppletWindow.Po -rm -f ./$(DEPDIR)/workrave-eggsmclient-win32.Po -rm -f ./$(DEPDIR)/workrave-eggsmclient.Po -rm -f ./$(DEPDIR)/workrave-gtktrayicon.Po -rm -f ./$(DEPDIR)/workrave-gtktrayicon3.Po -rm -f ./$(DEPDIR)/workrave-main.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-desktopDATA install-dist_appdataDATA \ install-serviceDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkJoinDialog.Po -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkLogDialog.Po -rm -f ../../plugin/distribution/gtkmm/src/$(DEPDIR)/workrave-NetworkPreferencePage.Po -rm -f ../../plugin/exercises/common/src/$(DEPDIR)/workrave-Exercise.Po -rm -f ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesDialog.Po -rm -f ../../plugin/exercises/gtkmm/src/$(DEPDIR)/workrave-ExercisesPanel.Po -rm -f ../../plugin/statistics/gtkmm/src/$(DEPDIR)/workrave-StatisticsDialog.Po -rm -f ./$(DEPDIR)/workrave-AppletControl.Po -rm -f ./$(DEPDIR)/workrave-AppletWindow.Po -rm -f ./$(DEPDIR)/workrave-BreakWindow.Po -rm -f ./$(DEPDIR)/workrave-DBusGUI.Po -rm -f ./$(DEPDIR)/workrave-DailyLimitWindow.Po -rm -f ./$(DEPDIR)/workrave-DataConnector.Po -rm -f ./$(DEPDIR)/workrave-DebugDialog.Po -rm -f ./$(DEPDIR)/workrave-EventButton.Po -rm -f ./$(DEPDIR)/workrave-EventImage.Po -rm -f ./$(DEPDIR)/workrave-EventLabel.Po -rm -f ./$(DEPDIR)/workrave-Frame.Po -rm -f ./$(DEPDIR)/workrave-GUI.Po -rm -f ./$(DEPDIR)/workrave-GUIConfig.Po -rm -f ./$(DEPDIR)/workrave-GenericDBusApplet.Po -rm -f ./$(DEPDIR)/workrave-GtkUtil.Po -rm -f ./$(DEPDIR)/workrave-HeadInfo.Po -rm -f ./$(DEPDIR)/workrave-Hig.Po -rm -f ./$(DEPDIR)/workrave-IconListCellRenderer.Po -rm -f ./$(DEPDIR)/workrave-IconListNotebook.Po -rm -f ./$(DEPDIR)/workrave-IndicatorAppletMenu.Po -rm -f ./$(DEPDIR)/workrave-MainGtkMenu.Po -rm -f ./$(DEPDIR)/workrave-MainWindow.Po -rm -f ./$(DEPDIR)/workrave-Menus.Po -rm -f ./$(DEPDIR)/workrave-MicroBreakWindow.Po -rm -f ./$(DEPDIR)/workrave-PreferencesDialog.Po -rm -f ./$(DEPDIR)/workrave-PreludeWindow.Po -rm -f ./$(DEPDIR)/workrave-RestBreakWindow.Po -rm -f ./$(DEPDIR)/workrave-Session.Po -rm -f ./$(DEPDIR)/workrave-StatusIcon.Po -rm -f ./$(DEPDIR)/workrave-TimeBar.Po -rm -f ./$(DEPDIR)/workrave-TimeEntry.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxGtkView.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxPreferencePage.Po -rm -f ./$(DEPDIR)/workrave-TimerPreferencesPanel.Po -rm -f ./$(DEPDIR)/workrave-WindowHints.Po -rm -f ./$(DEPDIR)/workrave-X11SystrayAppletWindow.Po -rm -f ./$(DEPDIR)/workrave-eggsmclient-win32.Po -rm -f ./$(DEPDIR)/workrave-eggsmclient.Po -rm -f ./$(DEPDIR)/workrave-gtktrayicon.Po -rm -f ./$(DEPDIR)/workrave-gtktrayicon3.Po -rm -f ./$(DEPDIR)/workrave-main.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-desktopDATA \ uninstall-dist_appdataDATA uninstall-serviceDATA .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool cscopelist-am ctags ctags-am \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-desktopDATA \ install-dist_appdataDATA 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-serviceDATA \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-desktopDATA \ uninstall-dist_appdataDATA uninstall-serviceDATA .PRECIOUS: Makefile resource.rc: resource.rc.in sed -e 's/@WORKRAVE_VERSION@/$(VERSION)/g' \ -e 's/@WORKRAVE_RESOURCE_VERSION@/$(RESOURCE_VERSION)/g' \ $(srcdir)/$@.in > $@ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@WINDRES ?= "windres" @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@.rc.o: @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_WINDOWS_TRUE@ ${WINDRES} -o $@ $< # Rule to make the service file with bindir expanded @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@$(service_DATA): $(service_in_files) Makefile @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ sed -e "s|@workravebindir@|$(bindir)|" $< > $@ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@DBusGUI.cc: workrave-gui.xml \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/data/gio-cc.jinja @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-gui.xml $(top_srcdir)/libs/dbus/data/gio-cc.jinja DBusGUI.cc @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@DBusGUI.hh: workrave-gui.xml \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/data/gio-hh.jinja @HAVE_APP_GTKMM_TRUE@@HAVE_DBUS_TRUE@ $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-gui.xml $(top_srcdir)/libs/dbus/data/gio-hh.jinja DBusGUI.hh @HAVE_APP_GTKMM_TRUE@@HAVE_GSETTINGS_TRUE@@INTLTOOL_XML_NOMERGE_RULE@ @HAVE_APP_GTKMM_TRUE@@HAVE_GSETTINGS_TRUE@@GSETTINGS_RULES@ @HAVE_APP_GTKMM_TRUE@@INTLTOOL_DESKTOP_RULE@ $(bin_PROGRAMS): $(top_builddir)/backend/src/libworkrave-backend.la \ $(top_builddir)/common/src/libworkrave-common.la \ $(top_builddir)/frontend/common/src/libworkrave-frontend-common.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: workrave-1.10.50/frontend/gtkmm/src/MainWindow.hh0000644000175100001710000000615114221624107020547 0ustar00gdm00000000000000// MainWindow.hh --- Main info Window // // Copyright (C) 2001 - 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MAINWINDOW_HH #define MAINWINDOW_HH #include "preinclude.h" #include #include #ifdef PLATFORM_OS_WINDOWS # include # include "TimerBoxControl.hh" #endif #include "IConfiguratorListener.hh" class TimerBoxControl; class TimerBoxGtkView; using namespace workrave; class MainWindow : public Gtk::Window , public IConfiguratorListener { public: MainWindow(); ~MainWindow(); void init(); void toggle_window(); void open_window(); void close_window(); void set_can_close(bool can_close); void update(); void relocate_window(int width, int height); sigc::signal &signal_closed(); sigc::signal &signal_visibility_changed(); bool is_visible() const; private: void on_visibility_changed(); bool on_timer_view_button_press_event(GdkEventButton *event); private: //! Is the main window enabled? bool enabled; //! Can the user close the window? bool can_close; //! Controller that determines the timerbox content TimerBoxControl *timer_box_control; //! View that displays the timerbox. TimerBoxGtkView *timer_box_view; #ifdef PLATFORM_OS_UNIX Gtk::Window *leader; #endif //! Location of main window. Gdk::Point window_location; //! Location of main window relative to current head Gdk::Point window_head_location; //! Relocated location of main window Gdk::Point window_relocated_location; //! Event triggered when the main window has been closed by the user sigc::signal closed_signal; //! sigc::signal visibility_changed_signal; //! sigc::connection visible_connection; private: void setup(); void config_changed_notify(const std::string &key); void locate_window(GdkEventConfigure *event); void move_to_start_position(); // UI Events. bool on_delete_event(GdkEventAny *); bool on_configure_event(GdkEventConfigure *event); static void get_start_position(int &x, int &y, int &head); static void set_start_position(int x, int y, int head); #ifdef PLATFORM_OS_WINDOWS private: void win32_show(bool b); bool win32_show_retry(); void win32_init(); void win32_exit(); static LRESULT CALLBACK win32_window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); HWND win32_main_hwnd; HINSTANCE win32_hinstance; int show_retry_count; sigc::connection timeout_connection; #endif }; #endif // MAINWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/macos/0000755000000000000000000000000014221624440020342 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/src/macos/MacOSUtil.cc0000644000175100001710000000273214221624107021364 0ustar00gdm00000000000000// MacOSUtil.cc --- MacOS utility functions // // Copyright (C) 2007, 2008 Rob Caelers // All rights reserved. // // Based on code from ggmud // Copyright Gabry (gabrielegreco@gmail.com) #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include #include "MacOSUtil.hh" void MacOSUtil::init() { char execpath[MAXPATHLEN + 1]; char path[MAXPATHLEN * 4]; FILE *f; uint32_t pathsz = sizeof(execpath); _NSGetExecutablePath(execpath, &pathsz); gchar *dir_path = g_path_get_dirname(execpath); strcpy(path, dir_path); // Gtk strcat(path, "/../Resources/themes/Leopardish-normal"); setenv("GTK_PATH", path, 1); // Locale strcat(path + strlen(dir_path), "/../Resources/locale"); // write a pango.rc file and tell pango to use it strcpy(path + strlen(dir_path), "/../Resources/pango.rc"); if ((f = fopen(path, "w"))) { fprintf(f, "[Pango]\nModuleFiles=%s/../Resources/pango.modules\n", dir_path); fclose(f); setenv("PANGO_RC_FILE", path, 1); } // gettext charset aliases setenv("CHARSETALIASDIR", path, 1); // font config strcpy(path + strlen(dir_path), "/../Resources/etc/fonts/fonts.conf"); setenv("FONTCONFIG_FILE", path, 1); // GDK Pixbuf loader module file strcpy(path + strlen(dir_path), "/../Resources/etc/gtk-2.0/gdk-pixbuf.loaders"); setenv("GDK_PIXBUF_MODULE_FILE", path, 1); g_free(dir_path); } workrave-1.10.50/frontend/gtkmm/src/macos/MacOSStatusBarView.h0000644000175100001710000000133114221624107023046 0ustar00gdm00000000000000#import "MacOSTimeBar.h" #import #include "ITimeBar.hh" @interface MacOSStatusBarView : NSView { NSStatusItem *statusItem; NSMenu *menu; bool menuVisibility; NSTrackingRectTag mouseEventTag; MacOSTimeBar *timebars[3]; } - (void)setBreak:(int)id text:(NSString *)text primaryColor:(ColorId)primaryColor primaryValue:(int)primaryValue primaryMaxValue:(int)primaryMaxValue secondaryColor:(ColorId)secondaryColor secondaryValue:(int)secondaryValue secondaryMaxValue:(int)secondaryMaxValue; - (id)initWithMenu:(NSMenu *)myMenu; - (void)drawRect:(NSRect)rect; - (void)mouseDown:(NSEvent *)theEvent; - (bool)isMenuVisible; - (void)dealloc; @end workrave-1.10.50/frontend/gtkmm/src/macos/Makefile.in0000644000000000000000000011531514221624202022411 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/src/macos ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_frontend_gtkmm_macos_la_LIBADD = am__libworkrave_frontend_gtkmm_macos_la_SOURCES_DIST = MacOSUtil.cc \ AppController.m MacOSGtkMenu.cc MacOSAppletWindow.cc \ MacOSStatusBarView.m MacOSTimeBar.m @PLATFORM_OS_MACOS_TRUE@am_libworkrave_frontend_gtkmm_macos_la_OBJECTS = libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_gtkmm_macos_la-AppController.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo libworkrave_frontend_gtkmm_macos_la_OBJECTS = \ $(am_libworkrave_frontend_gtkmm_macos_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_frontend_gtkmm_macos_la_LINK = $(LIBTOOL) $(AM_V_lt) \ --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ $(CXXLD) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_MACOS_TRUE@am_libworkrave_frontend_gtkmm_macos_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Plo \ ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = OBJCCOMPILE = $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) LTOBJCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_OBJCFLAGS) $(OBJCFLAGS) AM_V_OBJC = $(am__v_OBJC_@AM_V@) am__v_OBJC_ = $(am__v_OBJC_@AM_DEFAULT_V@) am__v_OBJC_0 = @echo " OBJC " $@; am__v_OBJC_1 = OBJCLD = $(OBJC) OBJCLINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_OBJCLD = $(am__v_OBJCLD_@AM_V@) am__v_OBJCLD_ = $(am__v_OBJCLD_@AM_DEFAULT_V@) am__v_OBJCLD_0 = @echo " OBJCLD " $@; am__v_OBJCLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_frontend_gtkmm_macos_la_SOURCES) DIST_SOURCES = \ $(am__libworkrave_frontend_gtkmm_macos_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @PLATFORM_OS_MACOS_TRUE@noinst_LTLIBRARIES = libworkrave-frontend-gtkmm-macos.la @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_gtkmm_macos_la_SOURCES = \ @PLATFORM_OS_MACOS_TRUE@ MacOSUtil.cc \ @PLATFORM_OS_MACOS_TRUE@ AppController.m \ @PLATFORM_OS_MACOS_TRUE@ MacOSGtkMenu.cc \ @PLATFORM_OS_MACOS_TRUE@ MacOSAppletWindow.cc \ @PLATFORM_OS_MACOS_TRUE@ MacOSStatusBarView.m \ @PLATFORM_OS_MACOS_TRUE@ MacOSTimeBar.m @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS = \ @PLATFORM_OS_MACOS_TRUE@ @X_CFLAGS@ -xobjective-c++ \ @PLATFORM_OS_MACOS_TRUE@ -W -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_MACOS_TRUE@ -I$(top_srcdir)/backend/include \ @PLATFORM_OS_MACOS_TRUE@ -I$(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include/macos \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_gtkmm_macos_la_CFLAGS = \ @PLATFORM_OS_MACOS_TRUE@ @X_CFLAGS@ \ @PLATFORM_OS_MACOS_TRUE@ -W -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_MACOS_TRUE@ -I$(top_srcdir)/backend/include \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include/macos \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include @PLATFORM_OS_MACOS_TRUE@libworkrave_frontend_gtkmm_macos_la_CXXFLAGS = \ @PLATFORM_OS_MACOS_TRUE@ @X_CFLAGS@ -xobjective-c++ \ @PLATFORM_OS_MACOS_TRUE@ -W -I$(top_srcdir)/frontend/common/include \ @PLATFORM_OS_MACOS_TRUE@ -I$(top_srcdir)/backend/include \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ @IGE_CFLAGS@ \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include/macos \ @PLATFORM_OS_MACOS_TRUE@ -I $(top_srcdir)/common/include all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .m .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/src/macos/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/src/macos/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-frontend-gtkmm-macos.la: $(libworkrave_frontend_gtkmm_macos_la_OBJECTS) $(libworkrave_frontend_gtkmm_macos_la_DEPENDENCIES) $(EXTRA_libworkrave_frontend_gtkmm_macos_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_frontend_gtkmm_macos_la_LINK) $(am_libworkrave_frontend_gtkmm_macos_la_rpath) $(libworkrave_frontend_gtkmm_macos_la_OBJECTS) $(libworkrave_frontend_gtkmm_macos_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo: MacOSUtil.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo `test -f 'MacOSUtil.cc' || echo '$(srcdir)/'`MacOSUtil.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSUtil.cc' object='libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-MacOSUtil.lo `test -f 'MacOSUtil.cc' || echo '$(srcdir)/'`MacOSUtil.cc libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo: MacOSGtkMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo `test -f 'MacOSGtkMenu.cc' || echo '$(srcdir)/'`MacOSGtkMenu.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSGtkMenu.cc' object='libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.lo `test -f 'MacOSGtkMenu.cc' || echo '$(srcdir)/'`MacOSGtkMenu.cc libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo: MacOSAppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo `test -f 'MacOSAppletWindow.cc' || echo '$(srcdir)/'`MacOSAppletWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSAppletWindow.cc' object='libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.lo `test -f 'MacOSAppletWindow.cc' || echo '$(srcdir)/'`MacOSAppletWindow.cc .m.o: @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepOBJC_TRUE@ $(OBJCCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepOBJC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(OBJCCOMPILE) -c -o $@ $< .m.obj: @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepOBJC_TRUE@ $(OBJCCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepOBJC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(OBJCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .m.lo: @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepOBJC_TRUE@ $(LTOBJCCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepOBJC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(LTOBJCCOMPILE) -c -o $@ $< libworkrave_frontend_gtkmm_macos_la-AppController.lo: AppController.m @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-AppController.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-AppController.lo `test -f 'AppController.m' || echo '$(srcdir)/'`AppController.m @am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Plo @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='AppController.m' object='libworkrave_frontend_gtkmm_macos_la-AppController.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-AppController.lo `test -f 'AppController.m' || echo '$(srcdir)/'`AppController.m libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo: MacOSStatusBarView.m @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo `test -f 'MacOSStatusBarView.m' || echo '$(srcdir)/'`MacOSStatusBarView.m @am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Plo @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='MacOSStatusBarView.m' object='libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.lo `test -f 'MacOSStatusBarView.m' || echo '$(srcdir)/'`MacOSStatusBarView.m libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo: MacOSTimeBar.m @am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -MT libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Tpo -c -o libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo `test -f 'MacOSTimeBar.m' || echo '$(srcdir)/'`MacOSTimeBar.m @am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Plo @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='MacOSTimeBar.m' object='libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS) $(OBJCFLAGS) -c -o libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.lo `test -f 'MacOSTimeBar.m' || echo '$(srcdir)/'`MacOSTimeBar.m mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Plo -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 -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-AppController.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSAppletWindow.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSGtkMenu.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSStatusBarView.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSTimeBar.Plo -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_macos_la-MacOSUtil.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/src/macos/ColorId.h0000644000175100001710000000022514221624107020754 0ustar00gdm00000000000000enum ColorId { COLOR_ID_ACTIVE = 0, COLOR_ID_INACTIVE, COLOR_ID_OVERDUE, COLOR_ID_INACTIVE_OVER_ACTIVE, COLOR_ID_INACTIVE_OVER_OVERDUE, }; workrave-1.10.50/frontend/gtkmm/src/macos/MacOSStatusBarView.m0000644000175100001710000000361414221624107023061 0ustar00gdm00000000000000#import "MacOSStatusBarView.h" @implementation MacOSStatusBarView - (id)initWithMenu:(NSMenu *)myMenu { statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain]; self = [super initWithFrame:NSMakeRect(0, 0, 100, 22)]; for (int i = 0; i < 3; i++) { timebars[i] = [MacOSTimeBar alloc]; } if (self) { menu = [myMenu retain]; [statusItem setView:self]; [statusItem setTitle: @"World"]; menuVisibility = NO; } return self; } - (void)setBreak : (int) id text:(NSString *)text primaryColor:(ColorId)primaryColor primaryValue:(int)primaryValue primaryMaxValue:(int)primaryMaxValue secondaryColor:(ColorId)secondaryColor secondaryValue:(int)secondaryValue secondaryMaxValue:(int)secondaryMaxValue; { MacOSTimeBar *timebar = timebars[id]; [timebar setText: text]; [timebar setValue: primaryValue]; [timebar setColor: primaryColor]; [timebar setMaxValue: primaryMaxValue]; [timebar setSecondaryValue: secondaryValue]; [timebar setSecondaryMaxValue: secondaryMaxValue]; [timebar setSecondaryColor: secondaryColor]; } - (void)drawRect:(NSRect)rect { // invert icon if necessary NSColor *color; if (!menuVisibility) { color = [[[NSColor blackColor] retain] autorelease]; } else { color = [[[NSColor whiteColor] retain] autorelease]; } // draw item with status as background [statusItem drawStatusBarBackgroundInRect:[self frame] withHighlight:menuVisibility]; [timebars[0] drawRect: rect]; } - (void)mouseDown:(NSEvent *) theEvent { menuVisibility = YES; [self setNeedsDisplay:YES]; [statusItem popUpStatusItemMenu:menu]; menuVisibility = NO; [self setNeedsDisplay:YES]; } - (bool)isMenuVisible { return menuVisibility; } - (void)dealloc { [menu release]; [statusItem release]; [super dealloc]; } @end workrave-1.10.50/frontend/gtkmm/src/macos/MacOSTimeBar.m0000644000175100001710000001701714221624107021643 0ustar00gdm00000000000000#import "MacOSTimeBar.h" @implementation MacOSTimeBar - (void) setText: (NSString*) aText { text = aText; } - (void) setValue: (int) aValue { value = aValue; } - (void) setColor: (ColorId) aColor { color = aColor; } - (void) setMaxValue: (int) aMaxValue { max_value = aMaxValue; } - (void) setSecondaryValue: (int) aSecondaryValue { secondary_value = aSecondaryValue; } - (void) setSecondaryMaxValue: (int) aSecondaryMaxValue { secondary_max_value = aSecondaryMaxValue; } - (void) setSecondaryColor: (ColorId) aColor { secondary_color = aColor; } - (void)drawRect:(NSRect)rect { // [[NSColor whiteColor] set]; // NSRectFill(NSMakeRect(1, 1, 98, 20)); const int border_size = 2; int win_w = 30; int win_h = 22; // Draw background [[NSColor blackColor] set]; NSFrameRect(NSMakeRect(1, 1, win_w - 2, win_h - 2)); [[NSColor whiteColor] set]; NSRectFill(NSMakeRect(2, 2, win_w - 4, win_h - 4)); // Bar int bar_width = 0; if (max_value > 0) { bar_width = (value * (win_w - 2 * border_size)) / max_value; } // Secondary bar int sbar_width = 0; if (secondary_max_value > 0) { sbar_width = (secondary_value * (win_w - 2 * border_size)) / secondary_max_value; } int bar_height = win_h - 2 * border_size; if (sbar_width > 0) { // Overlap // We should assert() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. // assert(secondary_bar_color == COLOR_ID_INACTIVE); NSColor *overlap_color; switch (color) { case COLOR_ID_ACTIVE: overlap_color = [NSColor blueColor]; break; case COLOR_ID_OVERDUE: overlap_color = [NSColor orangeColor]; break; default: // We could abort() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. overlap_color = [NSColor redColor]; } if (sbar_width >= bar_width) { if (bar_width) { [[NSColor redColor] set]; NSRectFill(NSMakeRect(border_size, border_size, bar_width, bar_height)); // window_gc->set_foreground(bar_colors[overlap_color]); // draw_bar(window, window_gc, true, // border_size, border_size, // bar_width, bar_height, // win_w, win_h); } if (sbar_width > bar_width) { [[NSColor yellowColor] set]; NSRectFill(NSMakeRect(border_size + bar_width, border_size, sbar_width - bar_width, bar_height)); // window_gc->set_foreground(bar_colors[secondary_bar_color]); // draw_bar(window, window_gc, true, // border_size + bar_width, border_size, // sbar_width - bar_width, bar_height, // win_w, win_h); } } else { if (sbar_width) { [[NSColor blueColor] set]; NSRectFill(NSMakeRect(border_size, border_size, sbar_width, bar_height)); // window_gc->set_foreground(bar_colors[overlap_color]); // draw_bar(window, window_gc, true, // border_size, border_size, // sbar_width, bar_height, // win_w, win_h); } [[NSColor greenColor] set]; NSRectFill(NSMakeRect(border_size + sbar_width, border_size, bar_width - sbar_width, bar_height)); // window_gc->set_foreground(bar_colors[bar_color]); // draw_bar(window, window_gc, true, // border_size + sbar_width, border_size, // bar_width - sbar_width, bar_height, // win_w, win_h); } } else { [[NSColor grayColor] set]; NSRectFill(NSMakeRect(border_size, border_size, bar_width, bar_height)); // No overlap // window_gc->set_foreground(bar_colors[bar_color]); // draw_bar(window, window_gc, true, // border_size, border_size, // bar_width, bar_height, win_w, win_h); } // Text // window_gc->set_foreground(bar_text_color); // Glib::RefPtr pl1 = create_pango_layout(bar_text); // Glib::RefPtr pc1 = pl1->get_context(); // Pango::Matrix matrix = PANGO_MATRIX_INIT; // pango_matrix_rotate(&matrix, 360 - rotation); // pc1->set_matrix(matrix); // int text_width, text_height; // pl1->get_pixel_size(text_width, text_height); // int text_x, text_y; // Gdk::Rectangle rect1, rect2; // if (rotation == 0 || rotation == 180) // { // if (win_w - text_width - MARGINX > 0) // { // if (bar_text_align > 0) // text_x = (win_w - text_width - MARGINX); // else if (bar_text_align < 0) // text_x = MARGINX; // else // text_x = (win_w - text_width) / 2; // } // else // { // text_x = MARGINX; // } // text_y = (win_h - text_height) / 2; // int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; // left_width += border_size; // Gdk::Rectangle left_rect(0, 0, left_width, win_h); // Gdk::Rectangle right_rect(left_width, 0, win_w - left_width, win_h); // rect1 = left_rect; // rect2 = right_rect; // } // else // { // if (win_h - text_width - MARGINY > 0) // { // int a = bar_text_align; // if (rotation == 270) // { // a *= -1; // } // if (a > 0) // text_y = (win_h - text_width - MARGINY); // else if (a < 0) // text_y = MARGINY; // else // text_y = (win_h - text_width) / 2; // } // else // { // text_y = MARGINY; // } // text_x = (win_w - text_height) / 2; // int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; // left_width += border_size; // Gdk::Rectangle up_rect(0, 0, win_w, left_width); // Gdk::Rectangle down_rect(0, left_width, win_w, win_h - left_width); // rect1 = up_rect; // rect2 = down_rect; // } // Gdk::Color textcolor = style->get_fg(Gtk::STATE_NORMAL); // TRACE_MSG(textcolor.get_red() << " " << // textcolor.get_green() << " " << // textcolor.get_blue()); // Glib::RefPtr window_gc1 = Gdk::GC::create(window); // window_gc1->set_clip_origin(0,0); // window_gc1->set_clip_rectangle(rect1); // window_gc1->set_foreground(bar_text_color); // window->draw_layout(window_gc1, text_x, text_y, pl1); // window_gc1->set_foreground(textcolor); // window_gc1->set_clip_rectangle(rect2); // window->draw_layout(window_gc1, text_x, text_y, pl1); // TRACE_EXIT(); } // void // TimeBar::draw_bar(Glib::RefPtr &window, // const Glib::RefPtr &gc, // bool filled, int x, int y, int width, int height, // int winw, int winh) // { // (void) winh; // if (rotation == 0 || rotation == 180) // { // window->draw_rectangle(gc, filled, x, y, width, height); // } // else // { // window->draw_rectangle(gc, filled, y, winw - x - width, height, width); // } // } - (void)dealloc { [super dealloc]; } @end workrave-1.10.50/frontend/gtkmm/src/macos/MacOSTimeBar.h0000644000175100001710000000144114221624107021630 0ustar00gdm00000000000000#import "ColorId.h" #import @interface MacOSTimeBar : NSObject { //! Color of the time-bar. ColorId color; //! Color of the time-bar. ColorId secondary_color; //! Color of the text. ColorId text_color; //! The current value. int value; //! The maximum value. int max_value; //! The current value. int secondary_value; //! The maximum value. int secondary_max_value; //! Text to show; NSString *text; } - (void)drawRect:(NSRect)rect; - (void)dealloc; - (void)setText:(NSString *)text; - (void)setValue:(int)value; - (void)setMaxValue:(int)max_value; - (void)setColor:(ColorId)color; - (void)setSecondaryValue:(int)secondary_value; - (void)setSecondaryMaxValue:(int)secondary_max_value; - (void)setSecondaryColor:(ColorId)secondary_color; @end workrave-1.10.50/frontend/gtkmm/src/macos/AppController.h0000644000175100001710000000174314221624107022213 0ustar00gdm00000000000000// AppController.hh --- MacOS Application Controller // // Copyright (C) 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #import @interface AppController : NSObject { } - (void)applicationWillFinishLaunching:(NSNotification *)aNotification; - (void)applicationWillTerminate:(NSNotification *)aNotification; @end workrave-1.10.50/frontend/gtkmm/src/macos/Makefile.am0000644000175100001710000000320714221624107021307 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if PLATFORM_OS_MACOS ##AM_CPPFLAGS=-xobjective-c++ noinst_LTLIBRARIES = libworkrave-frontend-gtkmm-macos.la libworkrave_frontend_gtkmm_macos_la_SOURCES = \ MacOSUtil.cc \ AppController.m \ MacOSGtkMenu.cc \ MacOSAppletWindow.cc \ MacOSStatusBarView.m \ MacOSTimeBar.m libworkrave_frontend_gtkmm_macos_la_OBJCFLAGS = \ @X_CFLAGS@ -xobjective-c++ \ -W -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/backend/include \ -I$(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ -I $(top_srcdir)/common/include/macos \ -I $(top_srcdir)/common/include libworkrave_frontend_gtkmm_macos_la_CFLAGS = \ @X_CFLAGS@ \ -W -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/backend/include \ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ -I $(top_srcdir)/common/include/macos \ -I $(top_srcdir)/common/include libworkrave_frontend_gtkmm_macos_la_CXXFLAGS = \ @X_CFLAGS@ -xobjective-c++ \ -W -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/backend/include \ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ @IGE_CFLAGS@ \ -I $(top_srcdir)/common/include/macos \ -I $(top_srcdir)/common/include endif workrave-1.10.50/frontend/gtkmm/src/macos/MacOSUtil.hh0000644000175100001710000000036614221624107021377 0ustar00gdm00000000000000// MacOSUtil.hh --- MacOS utility functions // // Copyright (C) 2007 Rob Caelers // All rights reserved. // #ifndef MacOSUTIL_HH #define MacOSUTIL_HH class MacOSUtil { public: static void init(); }; #endif // MacOSUTIL_HH workrave-1.10.50/frontend/gtkmm/src/macos/AppController.m0000644000175100001710000000575414221624107022226 0ustar00gdm00000000000000// AppController.hh --- MacOS Application Controller // // Copyright (C) 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // static const char rcsid[] = "$Id: MainWindow.cc 1367 2007-10-23 19:07:55Z rcaelers $"; #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "debug.hh" #import "AppController.h" @implementation AppController + (void) initialize { //make sure another Workrave.app isn't running already NSString * bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier]; int processIdentifier = [[NSProcessInfo processInfo] processIdentifier]; NSDictionary * dic; NSEnumerator * enumerator = [[[NSWorkspace sharedWorkspace] launchedApplications] objectEnumerator]; while ((dic = [enumerator nextObject])) { if ([[dic objectForKey: @"NSApplicationBundleIdentifier"] isEqualToString: bundleIdentifier] && [[dic objectForKey: @"NSApplicationProcessIdentifier"] intValue] != processIdentifier) { NSAlert * alert = [[NSAlert alloc] init]; [alert addButtonWithTitle: NSLocalizedString(@"Quit", "Workrave already running alert -> button")]; [alert setMessageText: NSLocalizedString(@"Workrave is already running.", "Workrave already running alert -> title")]; [alert setInformativeText: NSLocalizedString(@"There is already a copy of Workrave running. " "This copy cannot be opened until that instance is quit.", "Workrave already running alert -> message")]; [alert setAlertStyle: NSWarningAlertStyle]; [alert runModal]; [alert release]; //kill ourselves right away exit(0); } } // [[NSUserDefaults standardUserDefaults] registerDefaults: [NSDictionary dictionaryWithContentsOfFile: // [[NSBundle mainBundle] pathForResource: @"Defaults" ofType: @"plist"]]]; } - (id) init { if ((self = [super init])) { [NSApp setDelegate: self]; } return self; } - (void)applicationWillFinishLaunching:(NSNotification *)aNotification { TRACE_ENTER("AppController::applicationWillFinishLaunching"); TRACE_EXIT(); } - (void)applicationWillTerminate:(NSNotification *)aNotification { TRACE_ENTER("AppController::applicationWillTerminate"); TRACE_EXIT(); } @end workrave-1.10.50/frontend/gtkmm/src/macos/MacOSAppletWindow.cc0000644000175100001710000000635314221624107023067 0ustar00gdm00000000000000// MacOSAppletWindow.cc --- Applet info Window // // Copyright (C) 2009, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "MacOSAppletWindow.hh" #include "TimerBoxControl.hh" #import "MacOSStatusBarView.h" MacOSAppletWindow::MacOSAppletWindow() { TRACE_ENTER("MacOSAppletWindow::MacOSAppletWindow"); timer_box_view = this; timer_box_control = new TimerBoxControl("applet", *this); NSMenu *menu = [[NSMenu alloc] init]; view = [[MacOSStatusBarView alloc] initWithMenu:menu]; int i; while ([menu numberOfItems] > 0) { [menu removeItemAtIndex:0]; } NSMenuItem *item; item = [[[NSMenuItem alloc] initWithTitle:@"Hello" action:nil keyEquivalent:@""] autorelease]; // [item setTarget:self]; [item setEnabled:YES]; [menu addItem:item]; [menu addItem:[NSMenuItem separatorItem]]; [menu update]; TRACE_EXIT(); } MacOSAppletWindow::~MacOSAppletWindow() { TRACE_ENTER("MacOSAppletWindow::~MacOSAppletWindow"); delete timer_box_control; TRACE_EXIT(); } void MacOSAppletWindow::set_slot(BreakId id, int slot) { TRACE_ENTER_MSG("MacOSAppletWindow::set_slot", int(id) << ", " << slot); TRACE_EXIT(); } void MacOSAppletWindow::set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_val, int primary_max, ITimeBar::ColorId secondary_color, int secondary_val, int secondary_max) { TRACE_ENTER_MSG("MacOSAppletWindow::set_time_bar", int(id) << "=" << text); NSString *bar_text = [NSString stringWithCString:text.c_str() encoding:NSASCIIStringEncoding]; [view setBreak:id text:bar_text primaryColor:convertColorId(primary_color) primaryValue:primary_val primaryMaxValue:primary_max secondaryColor:convertColorId(secondary_color) secondaryValue:secondary_val secondaryMaxValue:secondary_max]; TRACE_EXIT(); } ColorId MacOSAppletWindow::convertColorId(ITimeBar::ColorId colorId) { switch (colorId) { case ITimeBar::COLOR_ID_INACTIVE: return COLOR_ID_INACTIVE; case ITimeBar::COLOR_ID_OVERDUE: return COLOR_ID_OVERDUE; case ITimeBar::COLOR_ID_ACTIVE: return COLOR_ID_ACTIVE; default: return COLOR_ID_ACTIVE; } return COLOR_ID_INACTIVE; } bool MacOSAppletWindow::is_visible() const { return true; } workrave-1.10.50/frontend/gtkmm/src/macos/MacOSGtkMenu.cc0000644000175100001710000001100714221624107022014 0ustar00gdm00000000000000// MacOSGtkMenu.cc --- Menus using Gtk+ // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "nls.h" #include "debug.hh" #include "MacOSGtkMenu.hh" #include #include #include #include #include #include #include #include #include "Menus.hh" #include "Util.hh" using namespace std; #if HAVE_IGE_MAC_INTEGRATION # include "ige-mac-menu.h" # include "ige-mac-dock.h" # include "ige-mac-bundle.h" #endif #if HAVE_GTK_MAC_INTEGRATION # include "gtk-mac-menu.h" # include "gtk-mac-dock.h" # include "gtk-mac-bundle.h" # define IgeMacMenuGroup GtkMacMenuGroup # define IgeMacDock GtkMacDock # define ige_mac_menu_set_menu_bar gtk_mac_menu_set_menu_bar # define ige_mac_menu_set_quit_menu_item gtk_mac_menu_set_quit_menu_item # define ige_mac_menu_add_app_menu_group gtk_mac_menu_add_app_menu_group # define ige_mac_menu_add_app_menu_item gtk_mac_menu_add_app_menu_item # define ige_mac_dock_new gtk_mac_dock_new #endif //! Constructor. MacOSGtkMenu::MacOSGtkMenu(bool show_open) : MainGtkMenu(show_open) { } //! Destructor. MacOSGtkMenu::~MacOSGtkMenu() {} void MacOSGtkMenu::popup(const guint button, const guint activate_time) { (void)button; (void)activate_time; } void MacOSGtkMenu::dock_clicked(IgeMacDock *dock, void *data) { (void)dock; // current, segment fault // Menus *menus = (Menus *) data; // menus->on_menu_open_main_window(); } void MacOSGtkMenu::dock_quit(IgeMacDock *dock, void *data) { (void)dock; // current, segment fault // Menus *menus = (Menus *) data; // menus->on_menu_quit(); } void MacOSGtkMenu::create_ui() { Glib::ustring ui_info = "\n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " " " \n" "\n"; ui_manager = Gtk::UIManager::create(); ui_manager->insert_action_group(action_group); try { ui_manager->add_ui_from_string(ui_info); } catch (const Glib::Error &ex) { std::cerr << "building menus and toolbars failed: " << ex.what(); } IgeMacMenuGroup *group; IgeMacDock *dock; Gtk::MenuBar *menu = dynamic_cast(ui_manager->get_widget("/Menu")); Gtk::MenuItem *item = dynamic_cast(ui_manager->get_widget("/Apple/Quit")); ige_mac_menu_set_menu_bar(GTK_MENU_SHELL(menu->gobj())); ige_mac_menu_set_quit_menu_item(GTK_MENU_ITEM(item->gobj())); item = dynamic_cast(ui_manager->get_widget("/Apple/About")); group = ige_mac_menu_add_app_menu_group(); ige_mac_menu_add_app_menu_item(group, GTK_MENU_ITEM(item->gobj()), NULL); item = dynamic_cast(ui_manager->get_widget("/Apple/Preferences")); group = ige_mac_menu_add_app_menu_group(); ige_mac_menu_add_app_menu_item(group, GTK_MENU_ITEM(item->gobj()), NULL); dock = ige_mac_dock_new(); g_signal_connect(dock, "clicked", G_CALLBACK(dock_clicked), this); g_signal_connect(dock, "quit-activate", G_CALLBACK(dock_quit), this); } workrave-1.10.50/frontend/gtkmm/src/macos/MacOSAppletWindow.hh0000644000175100001710000000325614221624107023100 0ustar00gdm00000000000000// MacOSAppletWindow.hh --- Applet window // // Copyright (C) 2009, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSAPPLETWINDOW_HH #define MacOSAPPLETWINDOW_HH #include "preinclude.h" #include #include "TimerBoxViewBase.hh" #include "ITimeBar.hh" #include "AppletWindow.hh" #import "ColorId.h" @class MacOSStatusBarView; class MacOSAppletWindow : public AppletWindow , public TimerBoxViewBase { public: MacOSAppletWindow(); virtual ~MacOSAppletWindow(); bool is_visible() const override; void set_slot(BreakId id, int slot) override; void set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_value, int primary_max, ITimeBar::ColorId secondary_color, int secondary_value, int secondary_max) override; private: ColorId convertColorId(ITimeBar::ColorId colorId); MacOSStatusBarView *view; }; #endif // MacOSAPPLETWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/macos/MacOSGtkMenu.hh0000644000175100001710000000261614221624107022034 0ustar00gdm00000000000000// MacOSGtkMenu.hh --- Menu using Gtk+ // // Copyright (C) 2001 - 2008 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSGTKMENU_HH #define MacOSGTKMENU_HH #include "config.h" #include #include "MainGtkMenu.hh" #ifdef HAVE_IGE_MAC_INTEGRATION # include "ige-mac-dock.h" #endif #ifdef HAVE_GTK_MAC_INTEGRATION # include "gtk-mac-dock.h" # define IgeMacDock GtkMacDock #endif class MacOSGtkMenu : public MainGtkMenu { public: MacOSGtkMenu(bool show_open); virtual ~MacOSGtkMenu(); virtual void create_ui(); virtual void popup(const guint button, const guint activate_time); private: static void dock_clicked(IgeMacDock *dock, void *data); static void dock_quit(IgeMacDock *dock, void *data); }; #endif // MacOSGTKMENU_HH workrave-1.10.50/frontend/gtkmm/src/gtktrayicon.h0000644000175100001710000000467614221624107020673 0ustar00gdm00000000000000/* gtktrayicon.h * Copyright (C) 2002 Anders Carlsson * * 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 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, see . */ #ifndef __GTK_TRAY_ICON_H__ #define __GTK_TRAY_ICON_H__ #include "gtk/gtk.h" G_BEGIN_DECLS #define WRGTK_TYPE_TRAY_ICON (wrgtk_tray_icon_get_type()) #define WRGTK_TRAY_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WRGTK_TYPE_TRAY_ICON, WRGtkTrayIcon)) #define WRGTK_TRAY_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WRGTK_TYPE_TRAY_ICON, WRGtkTrayIconClass)) #define WRGTK_IS_TRAY_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WRGTK_TYPE_TRAY_ICON)) #define WRGTK_IS_TRAY_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WRGTK_TYPE_TRAY_ICON)) #define WRGTK_TRAY_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WRGTK_TYPE_TRAY_ICON, WRGtkTrayIconClass)) typedef struct _WRGtkTrayIcon WRGtkTrayIcon; typedef struct _WRGtkTrayIconPrivate WRGtkTrayIconPrivate; typedef struct _WRGtkTrayIconClass WRGtkTrayIconClass; struct _WRGtkTrayIcon { GtkPlug parent_instance; WRGtkTrayIconPrivate *priv; }; struct _WRGtkTrayIconClass { GtkPlugClass parent_class; /* Padding for future expansion */ void (*__gtk_reserved1)(void); void (*__gtk_reserved2)(void); void (*__gtk_reserved3)(void); void (*__gtk_reserved4)(void); }; GType wrgtk_tray_icon_get_type(void) G_GNUC_CONST; WRGtkTrayIcon *wrgtk_tray_icon_new_for_screen(GdkScreen *screen, const gchar *name); WRGtkTrayIcon *wrgtk_tray_icon_new(const gchar *name); guint _wrgtk_tray_icon_send_message(WRGtkTrayIcon *icon, gint timeout, const gchar *message, gint len); void _wrgtk_tray_icon_cancel_message(WRGtkTrayIcon *icon, guint id); GtkOrientation wrgtk_tray_icon_get_orientation(WRGtkTrayIcon *icon); gint wrgtk_tray_icon_get_padding(WRGtkTrayIcon *icon); gint wrgtk_tray_icon_get_icon_size(WRGtkTrayIcon *icon); G_END_DECLS #endif /* __GTK_TRAY_ICON_H__ */ workrave-1.10.50/frontend/gtkmm/src/MicroBreakWindow.hh0000644000175100001710000000346314221624107021704 0ustar00gdm00000000000000// MicroBreakWindow.hh --- window for the microbreak // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MICROBREAKWINDOW_HH #define MICROBREAKWINDOW_HH #include #include "BreakWindow.hh" #include "GUIConfig.hh" namespace workrave { class ITimer; } namespace Gtk { class Label; } class TimeBar; class Frame; class MicroBreakWindow : public BreakWindow { public: MicroBreakWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode); virtual ~MicroBreakWindow(); void set_progress(int value, int max_value); void heartbeat(); protected: Gtk::Widget *create_gui(); void on_restbreaknow_button_clicked(); private: void update_break_window(); void update_time_bar(); void update_label(); Gtk::Button *create_restbreaknow_button(bool label); private: //! Time bar TimeBar *time_bar; // Label Gtk::Label *label; //! Progress int progress_value; //! Progress int progress_max_value; //! Is currently flashing because user is active? bool is_flashing; //! Label size has been fixed? bool fixed_size; }; #endif // MICROBREAKWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/workrave.appdata.xml0000644000175100001710000000155214221624107022145 0ustar00gdm00000000000000 org.workrave.workrave CC-BY-3.0 GPL-3.0+ Workrave Program that assists in the recovery and prevention of RSI

    Workrave is a program that assists in the recovery and prevention of Repetitive Strain Injury (RSI). The program frequently alerts you to take micro-pauses, rest breaks and restricts you to your daily limit.

    https://workrave.org/images/screenshots/restbreak-exercise.png workrave.desktop http://www.workrave.org/
    workrave-1.10.50/frontend/gtkmm/src/EventButton.cc0000644000175100001710000000224414221624107020735 0ustar00gdm00000000000000// EventLabel.cc --- // // Copyright (C) 2003, 2004, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "EventButton.hh" //! User pressed some mouse button in the main window. bool EventButton::on_button_press_event(GdkEventButton *event) { bool handled = button_pressed.emit(event->button); bool ret = true; if (!handled) { ret = Gtk::Button::on_button_press_event(event); } return ret; } workrave-1.10.50/frontend/gtkmm/src/RestBreakWindow.hh0000644000175100001710000000357414221624107021553 0ustar00gdm00000000000000// RestBreakWindow.hh --- window for the microbreak // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef RESTBREAKWINDOW_HH #define RESTBREAKWINDOW_HH #include class TimeBar; #include "GUIConfig.hh" #include "BreakWindow.hh" namespace Gtk { class HButtonBox; class HBox; } // namespace Gtk class RestBreakWindow : public BreakWindow { public: RestBreakWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode); virtual ~RestBreakWindow(); void start(); void set_progress(int value, int max_value); void update_break_window(); protected: Gtk::Widget *create_gui(); void draw_time_bar(); private: void suspend_break(); Gtk::Widget *create_info_panel(); void set_ignore_activity(bool i); #ifdef HAVE_EXERCISES void install_exercises_panel(); void install_info_panel(); void clear_pluggable_panel(); int get_exercise_count(); #endif private: //! The Time TimeBar *timebar; //! Progress int progress_value; //! Progress int progress_max_value; #ifdef HAVE_EXERCISES Gtk::HBox *pluggable_panel; #endif //! Is currently flashing because user is active? bool is_flashing; }; #endif // RESTBREAKWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/TimeEntry.cc0000644000175100001710000001103014221624107020371 0ustar00gdm00000000000000// TimeEntry.cc --- Entry widget for time // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include #include "debug.hh" #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef HAVE_UNISTD_H #endif #ifdef HAVE_UNISTD_H # include #endif #include "TimeEntry.hh" TimeEntry::TimeEntry(bool millis) : Gtk::HBox(false, 1) , hrs(NULL) , mins(NULL) , secs(NULL) , #ifdef HAVE_GTK3 hours_adjustment(Gtk::Adjustment::create(0, 0, 23)) , mins_adjustment(Gtk::Adjustment::create(0, 0, 59)) , secs_adjustment(Gtk::Adjustment::create(0, 0, 59)) #else hours_adjustment(0, 0, 23) , mins_adjustment(0, 0, 59) , secs_adjustment(0, 0, 59) #endif { this->millis = millis; secs = Gtk::manage(new Gtk::SpinButton(secs_adjustment)); secs->set_numeric(true); secs->signal_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_changed)); secs->signal_value_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_value_changed)); if (millis) { secs->set_width_chars(6); secs->set_wrap(false); #ifdef HAVE_GTK3 secs_adjustment->set_upper(60000); secs_adjustment->set_step_increment(100); secs_adjustment->set_page_increment(1000); #else secs_adjustment.set_upper(60000); secs_adjustment.set_step_increment(100); secs_adjustment.set_page_increment(1000); #endif pack_start(*secs, 0, 0); } else { secs->set_width_chars(2); secs->set_wrap(true); hrs = Gtk::manage(new Gtk::SpinButton(hours_adjustment)); hrs->set_numeric(true); hrs->set_wrap(true); hrs->set_width_chars(2); hrs->signal_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_changed)); hrs->signal_value_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_value_changed)); mins = Gtk::manage(new Gtk::SpinButton(mins_adjustment)); mins->set_numeric(true); mins->set_wrap(true); mins->set_width_chars(2); mins->signal_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_changed)); mins->signal_value_changed().connect(sigc::mem_fun(*this, &TimeEntry::on_value_changed)); Gtk::Label *semi1 = Gtk::manage(new Gtk::Label(":")); Gtk::Label *semi2 = Gtk::manage(new Gtk::Label(":")); pack_start(*hrs, 0, 0); pack_start(*semi1, 0, 0); pack_start(*mins, 0, 0); pack_start(*semi2, 0, 0); pack_start(*secs, 0, 0); } } //! Destructor. TimeEntry::~TimeEntry() { // FIXME: disconnect signals? } //! Set time void TimeEntry::set_value(time_t t) { if (!millis) { #ifdef HAVE_GTK3 hours_adjustment->set_value((double)(t / (60 * 60))); mins_adjustment->set_value((double)((t / 60) % 60)); secs_adjustment->set_value((double)(t % 60)); #else hours_adjustment.set_value((double)(t / (60 * 60))); mins_adjustment.set_value((double)((t / 60) % 60)); secs_adjustment.set_value((double)(t % 60)); #endif } else { #ifdef HAVE_GTK3 secs_adjustment->set_value((double)t); #else secs_adjustment.set_value((double)t); #endif } } //! Get time time_t TimeEntry::get_value() { int s = secs->get_value_as_int(); if (!millis) { int h = hrs->get_value_as_int(); int m = mins->get_value_as_int(); return h * 60 * 60 + m * 60 + s; } else { return s; } } void TimeEntry::update(Gtk::SpinButton *spin) { // Needless to say, this kinda sucks. Glib::ustring s = spin->get_text(); const gchar *txt = s.c_str(); if (txt != NULL && *txt != 0) { gchar *err = NULL; if (err == NULL || *err == 0) { spin->update(); } } } void TimeEntry::on_changed() { if (!millis) { update(hrs); update(mins); } update(secs); } void TimeEntry::on_value_changed() { sig_value_changed.emit(); } workrave-1.10.50/frontend/gtkmm/src/IconListNotebook.hh0000644000175100001710000000323514221624107021720 0ustar00gdm00000000000000// IconListNotebook.hh --- Notebook like widget // // Copyright (C) 2003, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICON_LIST_NOTEBOOK_HH #define ICON_LIST_NOTEBOOK_HH #include #include #include #include #include #include class IconListNotebook : public Gtk::HBox { public: IconListNotebook(); void add_page(const char *name, Glib::RefPtr, Gtk::Widget &widget); private: void on_page_changed(); struct ModelColumns : public Gtk::TreeModel::ColumnRecord { Gtk::TreeModelColumn text; Gtk::TreeModelColumn page; Gtk::TreeModelColumn> pixbuf; ModelColumns() { add(text); add(page); add(pixbuf); } }; Gtk::Notebook notebook; Gtk::TreeView icon_list; Glib::RefPtr list_store; ModelColumns model_columns; }; #endif // ICON_LIST_NOTEBOOK_HH workrave-1.10.50/frontend/gtkmm/src/MainGtkMenu.cc0000644000175100001710000002757014221624107020650 0ustar00gdm00000000000000// MainGtkMenu.cc --- Menus using Gtk+ // // Copyright (C) 2001 - 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "GUI.hh" #include "MainGtkMenu.hh" #include #include #include #include "MainWindow.hh" #include "Menus.hh" #include "GtkUtil.hh" using namespace std; //! Constructor. MainGtkMenu::MainGtkMenu(bool show_open) : popup_menu(NULL) , show_open(show_open) { } //! Destructor. MainGtkMenu::~MainGtkMenu() {} void MainGtkMenu::add_stock_item(const Glib::RefPtr &factory, const std::string &path, const Glib::ustring &icon_id, const Glib::ustring &label) { Gtk::IconSource source; #ifdef HAVE_GTK3 Glib::RefPtr icon_set = Gtk::IconSet::create(); #else Gtk::IconSet icon_set; #endif source.set_pixbuf(GtkUtil::create_pixbuf(path)); source.set_size(Gtk::ICON_SIZE_SMALL_TOOLBAR); source.set_size_wildcarded(); #ifdef HAVE_GTK3 icon_set->add_source(source); #else icon_set.add_source(source); #endif const Gtk::StockID stock_id(icon_id); factory->add(stock_id, icon_set); Gtk::Stock::add(Gtk::StockItem(stock_id, label)); } void MainGtkMenu::register_stock_items() { Glib::RefPtr factory = Gtk::IconFactory::create(); add_stock_item(factory, "timer-rest-break.png", "restbreak", _("_Rest break")); factory->add_default(); } void MainGtkMenu::init() { if (popup_menu == NULL) { register_stock_items(); create_actions(); create_ui(); post_init(); } else { // Re-init. ui_manager->remove_action_group(action_group); create_actions(); ui_manager->insert_action_group(action_group); } IGUI *gui = GUI::get_instance(); MainWindow *main_window = gui->get_main_window(); main_window->add_accel_group(ui_manager->get_accel_group()); } void MainGtkMenu::create_actions() { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); action_group = Gtk::ActionGroup::create(); action_group->add(Gtk::Action::create("Main", "_Tools")); // Mode menu Gtk::RadioAction::Group group_mode; action_group->add(Gtk::Action::create("Mode", _("_Mode"))); action_group->add(Gtk::RadioAction::create(group_mode, "Normal", _("_Normal")), sigc::mem_fun(*this, &MainGtkMenu::on_menu_normal)); action_group->add(Gtk::RadioAction::create(group_mode, "Quiet", _("Q_uiet")), sigc::mem_fun(*this, &MainGtkMenu::on_menu_quiet)); action_group->add(Gtk::RadioAction::create(group_mode, "Suspended", _("_Suspended")), sigc::mem_fun(*this, &MainGtkMenu::on_menu_suspend)); action_group->add(Gtk::ToggleAction::create("Reading", _("_Reading mode")), sigc::mem_fun(*this, &MainGtkMenu::on_menu_reading)); // Networking menu #ifdef HAVE_DISTRIBUTION action_group->add(Gtk::Action::create("Network", _("_Network"))); action_group->add(Gtk::Action::create("Join", _("_Connect")), sigc::mem_fun(*menus, &Menus::on_menu_network_join)); action_group->add(Gtk::Action::create("Disconnect", _("_Disconnect")), sigc::mem_fun(*menus, &Menus::on_menu_network_leave)); action_group->add(Gtk::Action::create("Reconnect", _("_Reconnect")), sigc::mem_fun(*menus, &Menus::on_menu_network_reconnect)); action_group->add(Gtk::ToggleAction::create("ShowLog", _("Show _log")), sigc::mem_fun(*this, &MainGtkMenu::on_menu_network_log)); #endif // Open action_group->add(Gtk::Action::create("Open", Gtk::Stock::OPEN), sigc::mem_fun(*menus, &Menus::on_menu_open_main_window)); // Restbreak now // Gtk::AccelKey("r"), action_group->add(Gtk::Action::create("Restbreak", Gtk::StockID("restbreak"), _("_Rest break")), sigc::mem_fun(*menus, &Menus::on_menu_restbreak_now)); // Preferences action_group->add(Gtk::Action::create("Preferences", Gtk::Stock::PREFERENCES, _("_Preferences")), sigc::mem_fun(*menus, &Menus::on_menu_preferences)); #ifdef HAVE_EXERCISES action_group->add(Gtk::Action::create("Exercises", _("Exercises")), sigc::mem_fun(*menus, &Menus::on_menu_exercises)); #endif action_group->add(Gtk::Action::create("Statistics", _("Statistics")), sigc::mem_fun(*menus, &Menus::on_menu_statistics)); action_group->add(Gtk::Action::create("About", Gtk::Stock::ABOUT, _("_About")), sigc::mem_fun(*menus, &Menus::on_menu_about)); action_group->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT, _("_Quit")), sigc::mem_fun(*menus, &Menus::on_menu_quit)); } void MainGtkMenu::create_ui() { Glib::ustring open_ui_info; if (show_open) { open_ui_info = " "; } // Layout the actions in a menubar and toolbar: Glib::ustring ui_info = "" " " + open_ui_info + " " + " " #ifdef HAVE_EXERCISES " " #endif " " " " " " " " " " " " #ifdef HAVE_DISTRIBUTION " " " " " " " " " " " " #endif " " " " " " " " " " " " ""; ui_manager = Gtk::UIManager::create(); ui_manager->insert_action_group(action_group); try { ui_manager->add_ui_from_string(ui_info); } catch (const Glib::Error &) { } popup_menu = dynamic_cast(ui_manager->get_widget("/Menu")); #ifdef PLATFORM_OS_MACOS macos_popup_hack_connect(popup_menu); #endif } void MainGtkMenu::popup(const guint button, const guint activate_time) { (void)button; if (popup_menu != NULL) { popup_menu->popup(button, activate_time); } } void MainGtkMenu::resync(OperationMode mode, UsageMode usage, bool show_log) { Gtk::CheckMenuItem *item = NULL; const char *menu_name = NULL; switch (mode) { case OPERATION_MODE_NORMAL: menu_name = "/Menu/Mode/Normal"; break; case OPERATION_MODE_SUSPENDED: menu_name = "/Menu/Mode/Suspended"; break; case OPERATION_MODE_QUIET: menu_name = "/Menu/Mode/Quiet"; break; default: break; } if (menu_name) { item = dynamic_cast(ui_manager->get_widget(menu_name)); if (item && !item->get_active()) { item->set_active(); } } item = dynamic_cast(ui_manager->get_widget("/Menu/Network/ShowLog")); if (item != NULL) { item->set_active(show_log); } item = dynamic_cast(ui_manager->get_widget("/Menu/Reading")); if (item) { bool reading = (usage == USAGE_MODE_READING); if (reading != item->get_active()) item->set_active(reading); } } void MainGtkMenu::on_menu_network_log() { Glib::RefPtr act = ui_manager->get_action("/Menu/Network/ShowLog"); Glib::RefPtr ract = Glib::RefPtr::cast_dynamic(act); if (ract) { bool active = ract->get_active(); IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_network_log(active); } } void MainGtkMenu::on_menu_normal() { Glib::RefPtr act = ui_manager->get_action("/Menu/Mode/Normal"); Glib::RefPtr ract = Glib::RefPtr::cast_dynamic(act); if (ract) { bool active = ract->get_active(); if (active) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_normal(); } } } void MainGtkMenu::on_menu_suspend() { Glib::RefPtr act = ui_manager->get_action("/Menu/Mode/Suspended"); Glib::RefPtr ract = Glib::RefPtr::cast_dynamic(act); if (ract) { bool active = ract->get_active(); if (active) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_suspend(); } } } void MainGtkMenu::on_menu_quiet() { Glib::RefPtr act = ui_manager->get_action("/Menu/Mode/Quiet"); Glib::RefPtr ract = Glib::RefPtr::cast_dynamic(act); if (ract) { bool active = ract->get_active(); if (active) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_quiet(); } } } void MainGtkMenu::on_menu_reading() { Glib::RefPtr act = ui_manager->get_action("/Menu/Reading"); Glib::RefPtr ract = Glib::RefPtr::cast_dynamic(act); if (ract) { bool active = ract->get_active(); IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_reading(active); } } #ifdef PLATFORM_OS_MACOS // /* Taken from Gaim. needs to be gtkmm-ified. */ // /* This is a workaround for a bug in windows GTK+. Clicking outside of the // menu does not get rid of it, so instead we get rid of it as soon as the // pointer leaves the menu. */ void MainGtkMenu::macos_popup_hack_connect(Gtk::Menu *menu) { TRACE_ENTER("W32TrayMenu::macos_popup_hack_connect"); GtkWidget *widget = (GtkWidget *)menu->gobj(); g_signal_connect(widget, "leave-notify-event", G_CALLBACK(macos_popup_hack_leave_enter), NULL); g_signal_connect(widget, "enter-notify-event", G_CALLBACK(macos_popup_hack_leave_enter), NULL); TRACE_EXIT(); } gboolean MainGtkMenu::macos_popup_hack_hide(gpointer data) { TRACE_ENTER("W32TrayMenu::macos_popup_hack_hide"); if (data != NULL) { gtk_menu_popdown(GTK_MENU(data)); } TRACE_EXIT(); return FALSE; } gboolean MainGtkMenu::macos_popup_hack_leave_enter(GtkWidget *menu, GdkEventCrossing *event, void *data) { TRACE_ENTER("W32TrayMenu::macos_popup_hack_leave_enter"); TRACE_MSG(event->type << " " << event->detail); (void)data; static guint hide_docklet_timer = 0; if (event->type == GDK_LEAVE_NOTIFY /* RC: it seems gtk now generate a GDK_NOTIFY_UNKNOWN when the menu if left...*/ && (event->detail == GDK_NOTIFY_ANCESTOR || event->detail == GDK_NOTIFY_UNKNOWN)) { /* Add some slop so that the menu doesn't annoyingly disappear when mousing around */ TRACE_MSG("leave " << hide_docklet_timer); if (hide_docklet_timer == 0) { hide_docklet_timer = g_timeout_add(500, macos_popup_hack_hide, menu); } } else if (event->type == GDK_ENTER_NOTIFY && event->detail == GDK_NOTIFY_ANCESTOR) { TRACE_MSG("enter " << hide_docklet_timer); if (hide_docklet_timer != 0) { /* Cancel the hiding if we reenter */ g_source_remove(hide_docklet_timer); hide_docklet_timer = 0; } } TRACE_EXIT(); return FALSE; } #endif workrave-1.10.50/frontend/gtkmm/src/DailyLimitWindow.cc0000644000175100001710000000530014221624107021705 0ustar00gdm00000000000000// DailyLimitWindow.cc --- window for the daily limit // // Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2008 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #include "DailyLimitWindow.hh" #include #include #include #include #include "GUI.hh" #include "IBreakResponse.hh" #include "WindowHints.hh" #include "GtkUtil.hh" #include "Hig.hh" using namespace workrave; //! Construct a new Daily limit window. DailyLimitWindow::DailyLimitWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode) : BreakWindow(BREAK_ID_DAILY_LIMIT, head, break_flags, mode) { set_title(_("Daily limit")); } Gtk::Widget * DailyLimitWindow::create_gui() { // label Glib::ustring txt = HigUtil::create_alert_text(_("Daily limit"), _("You have reached your daily limit. Please stop working\n" "behind the computer. If your working day is not over yet,\n" "find something else to do, such as reviewing a document.")); Gtk::Label *label = Gtk::manage(new Gtk::Label()); label->set_markup(txt); // Icon Gtk::Image *img = GtkUtil::create_image("daily-limit.png"); img->set_alignment(0.0, 0.0); // HBox Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 12)); hbox->pack_start(*img, false, false, 0); hbox->pack_start(*label, Gtk::EXPAND | Gtk::FILL, 0); // Overall vbox Gtk::VBox *box = new Gtk::VBox(false, 12); box->pack_start(*hbox, Gtk::EXPAND | Gtk::FILL, 0); // Button box at the bottom. Gtk::Box *bottom_box = create_bottom_box(true, true); if (bottom_box) { box->pack_start(*Gtk::manage(bottom_box), Gtk::EXPAND | Gtk::FILL, 0); } return box; } //! Destructor. DailyLimitWindow::~DailyLimitWindow() {} void DailyLimitWindow::set_progress(int value, int max_value) { (void)value; (void)max_value; } workrave-1.10.50/frontend/gtkmm/src/IconListCellRenderer.hh0000644000175100001710000000636514221624107022515 0ustar00gdm00000000000000// IconListCellRenderer.hh --- Notebook like widget cell renderer // // Copyright (C) 2003, 2007, 2011, 2013 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICON_LIST_CELL_RENDERER_HH #define ICON_LIST_CELL_RENDERER_HH #include #include #include class IconListCellRenderer : public Gtk::CellRenderer { public: IconListCellRenderer(); virtual ~IconListCellRenderer(); Glib::PropertyProxy property_text(); Glib::PropertyProxy> property_pixbuf(); protected: #ifdef HAVE_GTK3 virtual void get_preferred_width_vfunc(Gtk::Widget &widget, int &minimum_width, int &natural_width) const; virtual void get_preferred_height_for_width_vfunc(Gtk::Widget &widget, int width, int &minimum_height, int &natural_height) const; virtual void get_preferred_height_vfunc(Gtk::Widget &widget, int &minimum_height, int &natural_height) const; virtual void get_preferred_width_for_height_vfunc(Gtk::Widget &widget, int height, int &minimum_width, int &natural_width) const; virtual void render_vfunc(const Cairo::RefPtr &cr, Gtk::Widget &widget, const Gdk::Rectangle &background_area, const Gdk::Rectangle &cell_area, Gtk::CellRendererState flags); #else virtual void get_size_vfunc(Gtk::Widget &widget, const Gdk::Rectangle *cell_area, int *x_offset, int *y_offset, int *width, int *height) const; virtual void get_size_vfunc(Gtk::Widget &widget, const Gdk::Rectangle *cell_area, int *x_offset, int *y_offset, int *width, int *height); virtual void render_vfunc(const Glib::RefPtr &window, Gtk::Widget &widget, const Gdk::Rectangle &background_area, const Gdk::Rectangle &cell_area, const Gdk::Rectangle &expose_area, Gtk::CellRendererState flags); #endif private: void update_properties(); Gtk::CellRendererPixbuf pixbuf_renderer; Gtk::CellRendererText text_renderer; Glib::Property property_text_; Glib::Property> property_pixbuf_; }; #endif // ICON_LIST_CELL_RENDERER_HH workrave-1.10.50/frontend/gtkmm/src/eggsmclient.h0000644000175100001710000000667714221624107020641 0ustar00gdm00000000000000/* eggsmclient.h * Copyright (C) 2007 Novell, Inc. * * 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 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __EGG_SM_CLIENT_H__ #define __EGG_SM_CLIENT_H__ #include G_BEGIN_DECLS #define EGG_TYPE_SM_CLIENT (egg_sm_client_get_type()) #define EGG_SM_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), EGG_TYPE_SM_CLIENT, EggSMClient)) #define EGG_SM_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), EGG_TYPE_SM_CLIENT, EggSMClientClass)) #define EGG_IS_SM_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), EGG_TYPE_SM_CLIENT)) #define EGG_IS_SM_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), EGG_TYPE_SM_CLIENT)) #define EGG_SM_CLIENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EGG_TYPE_SM_CLIENT, EggSMClientClass)) typedef struct _EggSMClient EggSMClient; typedef struct _EggSMClientClass EggSMClientClass; typedef struct _EggSMClientPrivate EggSMClientPrivate; typedef enum { EGG_SM_CLIENT_END_SESSION_DEFAULT, EGG_SM_CLIENT_LOGOUT, EGG_SM_CLIENT_REBOOT, EGG_SM_CLIENT_SHUTDOWN } EggSMClientEndStyle; typedef enum { EGG_SM_CLIENT_MODE_DISABLED, EGG_SM_CLIENT_MODE_NO_RESTART, EGG_SM_CLIENT_MODE_NORMAL } EggSMClientMode; struct _EggSMClient { GObject parent; }; struct _EggSMClientClass { GObjectClass parent_class; /* signals */ void (*save_state)(EggSMClient *client, GKeyFile *state_file); void (*quit_requested)(EggSMClient *client); void (*quit_cancelled)(EggSMClient *client); void (*quit)(EggSMClient *client); /* virtual methods */ void (*startup)(EggSMClient *client, const char *client_id); void (*set_restart_command)(EggSMClient *client, int argc, const char **argv); void (*will_quit)(EggSMClient *client, gboolean will_quit); gboolean (*end_session)(EggSMClient *client, EggSMClientEndStyle style, gboolean request_confirmation); /* Padding for future expansion */ void (*_egg_reserved1)(void); void (*_egg_reserved2)(void); void (*_egg_reserved3)(void); void (*_egg_reserved4)(void); }; GType egg_sm_client_get_type(void) G_GNUC_CONST; GOptionGroup *egg_sm_client_get_option_group(void); /* Initialization */ void egg_sm_client_set_mode(EggSMClientMode mode); EggSMClientMode egg_sm_client_get_mode(void); EggSMClient *egg_sm_client_get(void); /* Resuming a saved session */ gboolean egg_sm_client_is_resumed(EggSMClient *client); GKeyFile *egg_sm_client_get_state_file(EggSMClient *client); /* Alternate means of saving state */ void egg_sm_client_set_restart_command(EggSMClient *client, int argc, const char **argv); /* Handling "quit_requested" signal */ void egg_sm_client_will_quit(EggSMClient *client, gboolean will_quit); /* Initiate a logout/reboot/shutdown */ gboolean egg_sm_client_end_session(EggSMClientEndStyle style, gboolean request_confirmation); G_END_DECLS #endif /* __EGG_SM_CLIENT_H__ */ workrave-1.10.50/frontend/gtkmm/src/EventImage.cc0000644000175100001710000000574414221624107020514 0ustar00gdm00000000000000// EventImage.cc --- // // Copyright (C) 2003, 2004, 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "EventImage.hh" void EventImage::on_realize() { GtkWidget *widget = GTK_WIDGET(gobj()); GdkWindowAttr attributes; attributes.window_type = GDK_WINDOW_CHILD; #ifdef HAVE_GTK3 GtkAllocation allocation; gtk_widget_get_allocation(widget, &allocation); attributes.x = allocation.x; attributes.y = allocation.y; attributes.width = allocation.width; attributes.height = allocation.height; #else // needed for 2.16 attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; #endif attributes.wclass = GDK_INPUT_ONLY; attributes.event_mask = gtk_widget_get_events(widget); attributes.event_mask |= (GDK_EXPOSURE_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK); gint attributes_mask = GDK_WA_X | GDK_WA_Y; Gtk::Image::on_realize(); event_window = gdk_window_new(gtk_widget_get_parent_window(widget), &attributes, attributes_mask); gdk_window_set_user_data(event_window, widget); gdk_window_show(event_window); } void EventImage::on_unrealize() { if (event_window) { gdk_window_set_user_data(event_window, NULL); gdk_window_destroy(event_window); event_window = NULL; } Gtk::Image::on_unrealize(); } bool EventImage::on_map_event(GdkEventAny *event) { bool ret = Gtk::Image::on_map_event(event); if (event_window) { gdk_window_show(event_window); } return ret; } bool EventImage::on_unmap_event(GdkEventAny *event) { if (event_window) { gdk_window_hide(event_window); } return Gtk::Image::on_unmap_event(event); } void EventImage::on_size_allocate(Gtk::Allocation &allocation) { Gtk::Image::on_size_allocate(allocation); GtkWidget *widget = GTK_WIDGET(gobj()); #ifdef HAVE_GTK3 if (gtk_widget_get_realized(widget)) #else // needed for 2.16 if (GTK_WIDGET_REALIZED(widget)) #endif { gdk_window_move_resize(event_window, allocation.get_x(), allocation.get_y(), allocation.get_width(), allocation.get_height()); } } workrave-1.10.50/frontend/gtkmm/src/DataConnector.hh0000644000175100001710000001426614221624107021225 0ustar00gdm00000000000000// DataConnector.hh --- Connect widget with the configurator // // Copyright (C) 2007, 2008, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DATACONNECTOR_HH #define DATACONNECTOR_HH #include #include #include #include "IConfiguratorListener.hh" #include "ICore.hh" namespace workrave { class IConfigurator; } class TimeEntry; namespace Gtk { class Object; class Widget; class Entry; class SpinButton; class ComboBox; class Adjustment; } // namespace Gtk class DataConnection; namespace dc { enum Flags { NONE = 0, NO_CONFIG = 1, NO_WIDGET = 2, }; } // namespace dc class DataConnector { public: DataConnector(); ~DataConnector(); void connect(const std::string &setting, DataConnection *connection, dc::Flags flags = dc::NONE); void connect(const std::string &setting, DataConnection *connection, sigc::slot slot, dc::Flags flags = dc::NONE); private: struct MonitoredWidget { MonitoredWidget() { connection = NULL; } DataConnection *connection; }; typedef std::list Widgets; typedef Widgets::iterator WidgetIter; //! Widgets connections; //! workrave::IConfigurator *config; }; class DataConnection : public workrave::IConfiguratorListener { public: DataConnection(); virtual ~DataConnection(); void set(dc::Flags flags, const std::string &key); virtual void init() = 0; sigc::signal intercept; protected: workrave::IConfigurator *config; std::string key; dc::Flags flags; }; #define DECLARE_DATA_TYPE(WidgetType, WrapperType, WidgetDataType /*, ConfigDataType */) \ class WrapperType : public DataConnection \ { \ public: \ WrapperType(WidgetType widget) \ : widget(widget) \ { \ } \ virtual ~WrapperType() {} \ \ void init(); \ void widget_changed_notify(); \ void config_changed_notify(const std::string &key); \ \ private: \ WidgetType widget; \ }; \ \ namespace dc \ { \ WrapperType *wrap(WidgetType t); \ } #define DEFINE_DATA_TYPE(WidgetType, WrapperType) \ namespace dc \ { \ WrapperType *wrap(WidgetType t) { return new WrapperType(t); } \ } #define DEFINE_DATA_TYPE_PTR(WidgetType, WrapperType) \ namespace dc \ { \ WrapperType *wrap(WidgetType *t) \ { \ if (t != NULL) \ { \ return new WrapperType(t); \ } \ else \ { \ return NULL; \ } \ } \ } DECLARE_DATA_TYPE(Gtk::Entry *, DataConnectionGtkEntry, std::string); DECLARE_DATA_TYPE(Gtk::CheckButton *, DataConnectionGtkCheckButton, bool); DECLARE_DATA_TYPE(Gtk::SpinButton *, DataConnectionGtkSpinButton, int); DECLARE_DATA_TYPE(Gtk::ComboBox *, DataConnectionGtkComboBox, int); #ifdef HAVE_GTK3 DECLARE_DATA_TYPE(Glib::RefPtr, DataConnectionGtkAdjustment, int); #else DECLARE_DATA_TYPE(Gtk::Adjustment *, DataConnectionGtkAdjustment, int); #endif DECLARE_DATA_TYPE(TimeEntry *, DataConnectionTimeEntry, int); class DataConnectionGtkEntryTwin : public DataConnection { public: DataConnectionGtkEntryTwin(Gtk::Entry *widget1, Gtk::Entry *widget2) : widget1(widget1) , widget2(widget2) { } virtual ~DataConnectionGtkEntryTwin() {} void init(); void widget_changed_notify(); void config_changed_notify(const std::string &key); private: Gtk::Entry *widget1; Gtk::Entry *widget2; }; namespace dc { DataConnectionGtkEntryTwin *wrap(Gtk::Entry *w1, Gtk::Entry *w2); } #endif workrave-1.10.50/frontend/gtkmm/src/IconListCellRenderer.cc0000644000175100001710000002135514221624107022477 0ustar00gdm00000000000000// IconListCellRenderer.cc --- Icon list cell renderer // // Copyright (C) 2001, 2002, 2003, 2007, 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "debug.hh" #include "IconListCellRenderer.hh" #define PAD 3 #define SPACE 5 IconListCellRenderer::IconListCellRenderer() : Glib::ObjectBase(typeid(IconListCellRenderer)) , Gtk::CellRenderer() , property_text_(*this, "text") , property_pixbuf_(*this, "pixbuf") { update_properties(); } IconListCellRenderer::~IconListCellRenderer() {} Glib::PropertyProxy IconListCellRenderer::property_text() { return property_text_.get_proxy(); } Glib::PropertyProxy> IconListCellRenderer::property_pixbuf() { return property_pixbuf_.get_proxy(); } void IconListCellRenderer::update_properties() { text_renderer.property_text() = property_text_; pixbuf_renderer.property_pixbuf() = property_pixbuf_; } #ifdef HAVE_GTK3 void IconListCellRenderer::get_preferred_width_vfunc(Gtk::Widget &widget, int &minimum_width, int &natural_width) const { TRACE_ENTER("IconListCellRenderer::get_preferred_width_vfunc"); int text_minimum_width, text_natural_width; int pixbuf_minimum_width, pixbuf_natural_width; // FIXME: const_cast(this)->update_properties(); text_renderer.get_preferred_width(widget, text_minimum_width, text_natural_width); pixbuf_renderer.get_preferred_width(widget, pixbuf_minimum_width, pixbuf_natural_width); minimum_width = MAX(text_minimum_width, pixbuf_minimum_width) + 2 * SPACE; natural_width = MAX(text_natural_width, pixbuf_natural_width) + 2 * SPACE; TRACE_MSG(minimum_width << " " << natural_width); TRACE_EXIT(); } void IconListCellRenderer::get_preferred_height_for_width_vfunc(Gtk::Widget &widget, int width, int &minimum_height, int &natural_height) const { (void)width; TRACE_ENTER("IconListCellRenderer::get_preferred_height_for_width_vfunc"); get_preferred_height_vfunc(widget, minimum_height, natural_height); TRACE_MSG(minimum_height << " " << natural_height); TRACE_EXIT(); } void IconListCellRenderer::get_preferred_height_vfunc(Gtk::Widget &widget, int &minimum_height, int &natural_height) const { TRACE_ENTER("IconListCellRenderer::get_preferred_height_vfunc"); int text_minimum_height, text_natural_height; int pixbuf_minimum_height, pixbuf_natural_height; // FIXME: const_cast(this)->update_properties(); text_renderer.get_preferred_height(widget, text_minimum_height, text_natural_height); pixbuf_renderer.get_preferred_height(widget, pixbuf_minimum_height, pixbuf_natural_height); minimum_height = text_minimum_height + pixbuf_minimum_height + PAD; natural_height = text_natural_height + pixbuf_natural_height + PAD; TRACE_MSG(minimum_height << " " << natural_height); TRACE_EXIT(); } void IconListCellRenderer::get_preferred_width_for_height_vfunc(Gtk::Widget &widget, int height, int &minimum_width, int &natural_width) const { (void)height; TRACE_ENTER("IconListCellRenderer::get_preferred_width_for_height_vfunc"); get_preferred_width_vfunc(widget, minimum_width, natural_width); TRACE_MSG(minimum_width << " " << natural_width); TRACE_EXIT(); } void IconListCellRenderer::render_vfunc(const Cairo::RefPtr &cr, Gtk::Widget &widget, const Gdk::Rectangle &background_area, const Gdk::Rectangle &cell_area, Gtk::CellRendererState flags) { update_properties(); Gdk::Rectangle text_area; Gdk::Rectangle pixbuf_area; Gtk::Requisition minimum_size, natural_size; pixbuf_renderer.get_preferred_size(widget, minimum_size, natural_size); pixbuf_area.set_x(cell_area.get_x()); pixbuf_area.set_y(cell_area.get_y()); pixbuf_area.set_width(cell_area.get_width()); pixbuf_area.set_height(natural_size.height); text_renderer.get_preferred_size(widget, minimum_size, natural_size); text_area.set_x(cell_area.get_x() + (cell_area.get_width() - natural_size.width) / 2); text_area.set_y(cell_area.get_y() + (pixbuf_area.get_height() + PAD)); text_area.set_height(natural_size.height); text_area.set_width(natural_size.width); pixbuf_renderer.render(cr, widget, background_area, pixbuf_area, flags); text_renderer.render(cr, widget, background_area, text_area, flags); } #else void IconListCellRenderer::get_size_vfunc(Gtk::Widget &widget, const Gdk::Rectangle *cell_area, int *x_offset, int *y_offset, int *width, int *height) const { // FIXME: gtkmm 2.4 changed their API. this method now needs to be const. // This is a (temporary) hack to get thing working again. IconListCellRenderer *r = const_cast(this); r->get_size_vfunc(widget, cell_area, x_offset, y_offset, width, height); } void IconListCellRenderer::get_size_vfunc(Gtk::Widget &widget, const Gdk::Rectangle *cell_area, int *x_offset, int *y_offset, int *width, int *height) { (void)x_offset; (void)y_offset; int text_x_offset; int text_y_offset; int text_width; int text_height; update_properties(); GdkRectangle *rect = NULL; if (cell_area) { rect = (GdkRectangle *)cell_area->gobj(); } GtkCellRenderer *rend = GTK_CELL_RENDERER(text_renderer.gobj()); gtk_cell_renderer_get_size(rend, widget.gobj(), rect, NULL, NULL, width, height); rend = GTK_CELL_RENDERER(pixbuf_renderer.gobj()); gtk_cell_renderer_get_size(rend, widget.gobj(), rect, &text_x_offset, &text_y_offset, &text_width, &text_height); if (height) { *height = *height + text_height + PAD; } if (width) { *width = MAX(*width, text_width); *width += SPACE * 2; } } void IconListCellRenderer::render_vfunc(const Glib::RefPtr &window, Gtk::Widget &widget, const Gdk::Rectangle &bg_area, const Gdk::Rectangle &cell_area, const Gdk::Rectangle &expose_area, Gtk::CellRendererState flags) { update_properties(); GdkRectangle text_area; GdkRectangle pixbuf_area; int width, height; GdkRectangle *ca = (GdkRectangle *)cell_area.gobj(); GtkWidget *widg = widget.gobj(); GdkWindow *wind = window->gobj(); GtkCellRenderer *prend = GTK_CELL_RENDERER(pixbuf_renderer.gobj()); gtk_cell_renderer_get_size(prend, widg, ca, NULL, NULL, &width, &height); pixbuf_area.y = ca->y; pixbuf_area.x = ca->x; pixbuf_area.height = height; pixbuf_area.width = ca->width; GtkCellRenderer *trend = GTK_CELL_RENDERER(text_renderer.gobj()); gtk_cell_renderer_get_size(trend, widg, ca, NULL, NULL, &width, &height); text_area.x = ca->x + (ca->width - width) / 2; text_area.y = ca->y + (pixbuf_area.height + PAD); text_area.height = height; text_area.width = width; gtk_cell_renderer_render(prend, wind, widg, (GdkRectangle *)bg_area.gobj(), &pixbuf_area, (GdkRectangle *)expose_area.gobj(), (GtkCellRendererState)flags); gtk_cell_renderer_render( trend, wind, widg, (GdkRectangle *)bg_area.gobj(), &text_area, (GdkRectangle *)expose_area.gobj(), (GtkCellRendererState)flags); } #endif workrave-1.10.50/frontend/gtkmm/src/eggsmclient.c0000644000175100001710000004623214221624107020623 0ustar00gdm00000000000000/* * Copyright (C) 2007 Novell, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include "config.h" #include #include #include #include "eggsmclient.h" #include "eggsmclient-private.h" static void egg_sm_client_debug_handler(const char *log_domain, GLogLevelFlags log_level, const char *message, gpointer user_data); enum { SAVE_STATE, QUIT_REQUESTED, QUIT_CANCELLED, QUIT, LAST_SIGNAL }; static guint signals[LAST_SIGNAL]; struct _EggSMClientPrivate { GKeyFile *state_file; }; #define EGG_SM_CLIENT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), EGG_TYPE_SM_CLIENT, EggSMClientPrivate)) G_DEFINE_TYPE(EggSMClient, egg_sm_client, G_TYPE_OBJECT) static EggSMClient *global_client; static EggSMClientMode global_client_mode = EGG_SM_CLIENT_MODE_NORMAL; static void egg_sm_client_init(EggSMClient *client) { ; } static void egg_sm_client_class_init(EggSMClientClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS(klass); g_type_class_add_private(klass, sizeof(EggSMClientPrivate)); /** * EggSMClient::save_state: * @client: the client * @state_file: a #GKeyFile to save state information into * * Emitted when the session manager has requested that the * application save information about its current state. The * application should save its state into @state_file, and then the * session manager may then restart the application in a future * session and tell it to initialize itself from that state. * * You should not save any data into @state_file's "start group" * (ie, the %NULL group). Instead, applications should save their * data into groups with names that start with the application name, * and libraries that connect to this signal should save their data * into groups with names that start with the library name. * * Alternatively, rather than (or in addition to) using @state_file, * the application can save its state by calling * egg_sm_client_set_restart_command() during the processing of this * signal (eg, to include a list of files to open). **/ signals[SAVE_STATE] = g_signal_new("save_state", G_OBJECT_CLASS_TYPE(object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(EggSMClientClass, save_state), NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); /** * EggSMClient::quit_requested: * @client: the client * * Emitted when the session manager requests that the application * exit (generally because the user is logging out). The application * should decide whether or not it is willing to quit (perhaps after * asking the user what to do with documents that have unsaved * changes) and then call egg_sm_client_will_quit(), passing %TRUE * or %FALSE to give its answer to the session manager. (It does not * need to give an answer before returning from the signal handler; * it can interact with the user asynchronously and then give its * answer later on.) If the application does not connect to this * signal, then #EggSMClient will automatically return %TRUE on its * behalf. * * The application should not save its session state as part of * handling this signal; if the user has requested that the session * be saved when logging out, then ::save_state will be emitted * separately. * * If the application agrees to quit, it should then wait for either * the ::quit_cancelled or ::quit signals to be emitted. **/ signals[QUIT_REQUESTED] = g_signal_new("quit_requested", G_OBJECT_CLASS_TYPE(object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(EggSMClientClass, quit_requested), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); /** * EggSMClient::quit_cancelled: * @client: the client * * Emitted when the session manager decides to cancel a logout after * the application has already agreed to quit. After receiving this * signal, the application can go back to what it was doing before * receiving the ::quit_requested signal. **/ signals[QUIT_CANCELLED] = g_signal_new("quit_cancelled", G_OBJECT_CLASS_TYPE(object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(EggSMClientClass, quit_cancelled), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); /** * EggSMClient::quit: * @client: the client * * Emitted when the session manager wants the application to quit * (generally because the user is logging out). The application * should exit as soon as possible after receiving this signal; if * it does not, the session manager may choose to forcibly kill it. * * Normally a GUI application would only be sent a ::quit if it * agreed to quit in response to a ::quit_requested signal. However, * this is not guaranteed; in some situations the session manager * may decide to end the session without giving applications a * chance to object. **/ signals[QUIT] = g_signal_new("quit", G_OBJECT_CLASS_TYPE(object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(EggSMClientClass, quit), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static gboolean sm_client_disable = FALSE; static char *sm_client_state_file = NULL; static char *sm_client_id = NULL; static char *sm_config_prefix = NULL; static gboolean sm_client_post_parse_func(GOptionContext *context, GOptionGroup *group, gpointer data, GError **error) { EggSMClient *client = egg_sm_client_get(); if (sm_client_id == NULL) { const gchar *desktop_autostart_id; desktop_autostart_id = g_getenv("DESKTOP_AUTOSTART_ID"); if (desktop_autostart_id != NULL) sm_client_id = g_strdup(desktop_autostart_id); } /* Unset DESKTOP_AUTOSTART_ID in order to avoid child processes to * use the same client id. */ g_unsetenv("DESKTOP_AUTOSTART_ID"); if (global_client_mode != EGG_SM_CLIENT_MODE_DISABLED && EGG_SM_CLIENT_GET_CLASS(client)->startup) EGG_SM_CLIENT_GET_CLASS(client)->startup(client, sm_client_id); return TRUE; } /** * egg_sm_client_get_option_group: * * Creates a %GOptionGroup containing the session-management-related * options. You should add this group to the application's * %GOptionContext if you want to use #EggSMClient. * * Return value: the %GOptionGroup **/ GOptionGroup * egg_sm_client_get_option_group(void) { const GOptionEntry entries[] = { {"sm-client-disable", 0, 0, G_OPTION_ARG_NONE, &sm_client_disable, N_("Disable connection to session manager"), NULL}, {"sm-client-state-file", 0, 0, G_OPTION_ARG_FILENAME, &sm_client_state_file, N_("Specify file containing saved configuration"), N_("FILE")}, {"sm-client-id", 0, 0, G_OPTION_ARG_STRING, &sm_client_id, N_("Specify session management ID"), N_("ID")}, /* GnomeClient compatibility option */ {"sm-disable", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &sm_client_disable, NULL, NULL}, /* GnomeClient compatibility option. This is a dummy option that only * exists so that sessions saved by apps with GnomeClient can be restored * later when they've switched to EggSMClient. See bug #575308. */ {"sm-config-prefix", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_STRING, &sm_config_prefix, NULL, NULL}, {NULL}}; GOptionGroup *group; /* Use our own debug handler for the "EggSMClient" domain. */ g_log_set_handler(G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, egg_sm_client_debug_handler, NULL); group = g_option_group_new("sm-client", _("Session management options:"), _("Show session management options"), NULL, NULL); g_option_group_add_entries(group, entries); g_option_group_set_parse_hooks(group, NULL, sm_client_post_parse_func); return group; } /** * egg_sm_client_set_mode: * @mode: an #EggSMClient mode * * Sets the "mode" of #EggSMClient as follows: * * %EGG_SM_CLIENT_MODE_DISABLED: Session management is completely * disabled, until the mode is changed again. The application will * not even connect to the session manager. (egg_sm_client_get() * will still return an #EggSMClient object.) * * %EGG_SM_CLIENT_MODE_NO_RESTART: The application will connect to * the session manager (and thus will receive notification when the * user is logging out, etc), but will request to not be * automatically restarted with saved state in future sessions. * * %EGG_SM_CLIENT_MODE_NORMAL: The default. #EggSMCLient will * function normally. * * This must be called before the application's main loop begins and * before any call to egg_sm_client_get(), unless the mode was set * earlier to %EGG_SM_CLIENT_MODE_DISABLED and this call enables * session management. Note that option parsing will call * egg_sm_client_get(). **/ void egg_sm_client_set_mode(EggSMClientMode mode) { EggSMClientMode old_mode = global_client_mode; g_return_if_fail(global_client == NULL || global_client_mode == EGG_SM_CLIENT_MODE_DISABLED); g_return_if_fail(!(global_client != NULL && mode == EGG_SM_CLIENT_MODE_DISABLED)); global_client_mode = mode; if (global_client != NULL && old_mode == EGG_SM_CLIENT_MODE_DISABLED) { if (EGG_SM_CLIENT_GET_CLASS(global_client)->startup) EGG_SM_CLIENT_GET_CLASS(global_client)->startup(global_client, sm_client_id); } } /** * egg_sm_client_get_mode: * * Gets the global #EggSMClientMode. See egg_sm_client_set_mode() * for details. * * Return value: the global #EggSMClientMode **/ EggSMClientMode egg_sm_client_get_mode(void) { return global_client_mode; } /** * egg_sm_client_get: * * Returns the master #EggSMClient for the application. * * On platforms that support saved sessions (ie, POSIX/X11), the * application will only request to be restarted by the session * manager if you call egg_set_desktop_file() to set an application * desktop file. In particular, if the desktop file contains the key * "X * * Return value: the master #EggSMClient. **/ EggSMClient * egg_sm_client_get(void) { if (!global_client) { if (!sm_client_disable) { #if defined(GDK_WINDOWING_WIN32) global_client = egg_sm_client_win32_new(); #elif defined(GDK_WINDOWING_QUARTZ) global_client = egg_sm_client_osx_new(); #else /* If both D-Bus and XSMP are compiled in, try XSMP first * (since it supports state saving) and fall back to D-Bus * if XSMP isn't available. */ # ifdef EGG_SM_CLIENT_BACKEND_XSMP global_client = egg_sm_client_xsmp_new(); # endif # if defined(EGG_SM_CLIENT_BACKEND_DBUS) && !defined(PLATFORM_OS_WINDOWS) if (!global_client) global_client = egg_sm_client_dbus_new(); # endif #endif } /* Fallback: create a dummy client, so that callers don't have * to worry about a %NULL return value. */ if (!global_client) global_client = (EggSMClient *)g_object_new(EGG_TYPE_SM_CLIENT, NULL); } return global_client; } /** * egg_sm_client_is_resumed: * @client: the client * * Checks whether or not the current session has been resumed from * a previous saved session. If so, the application should call * egg_sm_client_get_state_file() and restore its state from the * returned #GKeyFile. * * Return value: %TRUE if the session has been resumed **/ gboolean egg_sm_client_is_resumed(EggSMClient *client) { g_return_val_if_fail(client == global_client, FALSE); return sm_client_state_file != NULL; } /** * egg_sm_client_get_state_file: * @client: the client * * If the application was resumed by the session manager, this will * return the #GKeyFile containing its state from the previous * session. * * Note that other libraries and #EggSMClient itself may also store * state in the key file, so if you call egg_sm_client_get_groups(), * on it, the return value will likely include groups that you did not * put there yourself. (It is also not guaranteed that the first * group created by the application will still be the "start group" * when it is resumed.) * * Return value: the #GKeyFile containing the application's earlier * state, or %NULL on error. You should not free this key file; it * is owned by @client. **/ GKeyFile * egg_sm_client_get_state_file(EggSMClient *client) { EggSMClientPrivate *priv = EGG_SM_CLIENT_GET_PRIVATE(client); char *state_file_path; GError *err = NULL; g_return_val_if_fail(client == global_client, NULL); if (!sm_client_state_file) return NULL; if (priv->state_file) return priv->state_file; if (!strncmp(sm_client_state_file, "file://", 7)) state_file_path = g_filename_from_uri(sm_client_state_file, NULL, NULL); else state_file_path = g_strdup(sm_client_state_file); priv->state_file = g_key_file_new(); if (!g_key_file_load_from_file(priv->state_file, state_file_path, (GKeyFileFlags)0, &err)) { g_warning("Could not load SM state file '%s': %s", sm_client_state_file, err->message); g_clear_error(&err); g_key_file_free(priv->state_file); priv->state_file = NULL; } g_free(state_file_path); return priv->state_file; } /** * egg_sm_client_set_restart_command: * @client: the client * @argc: the length of @argv * @argv: argument vector * * Sets the command used to restart @client if it does not have a * .desktop file that can be used to find its restart command. * * This can also be used when handling the ::save_state signal, to * save the current state via an updated command line. (Eg, providing * a list of filenames to open when the application is resumed.) **/ void egg_sm_client_set_restart_command(EggSMClient *client, int argc, const char **argv) { g_return_if_fail(EGG_IS_SM_CLIENT(client)); if (EGG_SM_CLIENT_GET_CLASS(client)->set_restart_command) EGG_SM_CLIENT_GET_CLASS(client)->set_restart_command(client, argc, argv); } /** * egg_sm_client_will_quit: * @client: the client * @will_quit: whether or not the application is willing to quit * * This MUST be called in response to the ::quit_requested signal, to * indicate whether or not the application is willing to quit. The * application may call it either directly from the signal handler, or * at some later point (eg, after asynchronously interacting with the * user). * * If the application does not connect to ::quit_requested, * #EggSMClient will call this method on its behalf (passing %TRUE * for @will_quit). * * After calling this method, the application should wait to receive * either ::quit_cancelled or ::quit. **/ void egg_sm_client_will_quit(EggSMClient *client, gboolean will_quit) { g_return_if_fail(EGG_IS_SM_CLIENT(client)); if (EGG_SM_CLIENT_GET_CLASS(client)->will_quit) EGG_SM_CLIENT_GET_CLASS(client)->will_quit(client, will_quit); } /** * egg_sm_client_end_session: * @style: a hint at how to end the session * @request_confirmation: whether or not the user should get a chance * to confirm the action * * Requests that the session manager end the current session. @style * indicates how the session should be ended, and * @request_confirmation indicates whether or not the user should be * given a chance to confirm the logout/reboot/shutdown. Both of these * flags are merely hints though; the session manager may choose to * ignore them. * * Return value: %TRUE if the request was sent; %FALSE if it could not * be (eg, because it could not connect to the session manager). **/ gboolean egg_sm_client_end_session(EggSMClientEndStyle style, gboolean request_confirmation) { EggSMClient *client = egg_sm_client_get(); g_return_val_if_fail(EGG_IS_SM_CLIENT(client), FALSE); if (EGG_SM_CLIENT_GET_CLASS(client)->end_session) { return EGG_SM_CLIENT_GET_CLASS(client)->end_session(client, style, request_confirmation); } else return FALSE; } /* Signal-emitting callbacks from platform-specific code */ GKeyFile * egg_sm_client_save_state(EggSMClient *client) { GKeyFile *state_file; char *group; g_return_val_if_fail(client == global_client, NULL); state_file = g_key_file_new(); g_debug("Emitting save_state"); g_signal_emit(client, signals[SAVE_STATE], 0, state_file); g_debug("Done emitting save_state"); group = g_key_file_get_start_group(state_file); if (group) { g_free(group); return state_file; } else { g_key_file_free(state_file); return NULL; } } void egg_sm_client_quit_requested(EggSMClient *client) { g_return_if_fail(client == global_client); if (!g_signal_has_handler_pending(client, signals[QUIT_REQUESTED], 0, FALSE)) { g_debug("Not emitting quit_requested because no one is listening"); egg_sm_client_will_quit(client, TRUE); return; } g_debug("Emitting quit_requested"); g_signal_emit(client, signals[QUIT_REQUESTED], 0); g_debug("Done emitting quit_requested"); } void egg_sm_client_quit_cancelled(EggSMClient *client) { g_return_if_fail(client == global_client); g_debug("Emitting quit_cancelled"); g_signal_emit(client, signals[QUIT_CANCELLED], 0); g_debug("Done emitting quit_cancelled"); } void egg_sm_client_quit(EggSMClient *client) { g_return_if_fail(client == global_client); g_debug("Emitting quit"); g_signal_emit(client, signals[QUIT], 0); g_debug("Done emitting quit"); /* FIXME: should we just call gtk_main_quit() here? */ } static void egg_sm_client_debug_handler(const char *log_domain, GLogLevelFlags log_level, const char *message, gpointer user_data) { static int debug = -1; if (debug < 0) debug = (g_getenv("EGG_SM_CLIENT_DEBUG") != NULL); if (debug) g_log_default_handler(log_domain, log_level, message, NULL); } workrave-1.10.50/frontend/gtkmm/src/resource.rc.in0000644000175100001710000000213414221624107020731 0ustar00gdm00000000000000#include VS_VERSION_INFO VERSIONINFO FILEVERSION @WORKRAVE_RESOURCE_VERSION@ PRODUCTVERSION @WORKRAVE_RESOURCE_VERSION@ FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904B0" BEGIN VALUE "CompanyName", "The Workrave development team" VALUE "FileDescription", "Workrave" VALUE "FileVersion", "@WORKRAVE_VERSION@" VALUE "InternalName", "workrave" VALUE "LegalCopyright", "Copyright (C) 2001-2020 The Workrave development team." VALUE "OriginalFilename", "workrave.exe" VALUE "ProductName", "Workrave" VALUE "ProductVersion", "@WORKRAVE_VERSION@" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END workrave ICON DISCARDABLE "../../common/share/images/win32/workrave.ico" workravequiet ICON DISCARDABLE "../../common/share/images/win32/workrave-quiet.ico" workravesusp ICON DISCARDABLE "../../common/share/images/win32/workrave-suspended.ico" workrave-1.10.50/frontend/gtkmm/src/preinclude.h0000644000175100001710000000202314221624107020447 0ustar00gdm00000000000000// preinclude.h --- Patch includes // // Copyright (C) 2002, 2003, 2004, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef NOMINMAX #define NOMINMAX #endif #undef THREAD_PRIORITY_NORMAL #undef THREAD_PRIORITY_LOW #undef THREAD_PRIORITY_HIGH #undef THREAD_PRIORITY_URGENT #undef DELETE #undef ERROR #undef OK #if defined(interface) #undef interface #endif workrave-1.10.50/frontend/gtkmm/src/IPreludeWindow.hh0000644000175100001710000000326414221624107021376 0ustar00gdm00000000000000// IPreludeWindow.hh --- base class for the break windows // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IPRELUDEWINDOW_HH #define IPRELUDEWINDOW_HH #include #include "IApp.hh" class IPreludeWindow { public: virtual ~IPreludeWindow() {} //! Starts (i.e. shows) the prelude window. virtual void start() = 0; //! Stops (i.e. hides) the prelude window. virtual void stop() = 0; //! Destroys the prelude window. /*! \warn this will 'delete' the window. */ virtual void destroy() = 0; //! Refreshes the content of the prelude window. virtual void refresh() = 0; //! Sets the progress to the specified value and maximum value. virtual void set_progress(int value, int max_value) = 0; //! Sets the alert stage of the prelude window. virtual void set_stage(IApp::PreludeStage stage) = 0; //! Sets the progress text of the prelude window. virtual void set_progress_text(IApp::PreludeProgressText text) = 0; }; #endif // IRESTPRELUDEWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/main.cc0000644000175100001710000000516314221624107017407 0ustar00gdm00000000000000// main.cc --- Main // // Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include #include #include "GUI.hh" #ifdef PLATFORM_OS_WINDOWS # include # include # include "crashlog.h" # include "dll_hell.h" # include "W32ActiveSetup.hh" #endif extern "C" int run(int argc, char **argv); int run(int argc, char **argv) { #ifdef PLATFORM_OS_WINDOWS W32ActiveSetup::update_all(); #endif #if defined(PLATFORM_OS_WINDOWS) && !defined(PLATFORM_OS_WINDOWS_NATIVE) SetUnhandledExceptionFilter(exception_filter); # if defined(THIS_SEEMS_TO_CAUSE_PROBLEMS_ON_WINDOWS_SERVER) // Enable Windows structural exception handling. __try1(exception_handler); # endif #endif #ifdef TRACING Debug::init(); #endif GUI *gui = new GUI(argc, argv); #if defined(PLATFORM_OS_WINDOWS) dll_hell_check(); #endif gui->main(); delete gui; #if defined(THIS_SEEMS_TO_CAUSE_PROBLEMS_ON_WINDOWS_SERVER) # if defined(PLATFORM_OS_WINDOWS) && !defined(PLATFORM_OS_WINDOWS_NATIVE) // Disable Windows structural exception handling. __except1; # endif #endif return 0; } #if !defined(PLATFORM_OS_WINDOWS) // || (!defined(PLATFORM_OS_WINDOWS_NATIVE) && !defined(NDEBUG)) int main(int argc, char **argv) { int ret = run(argc, argv); return ret; } #else # include int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { (void)hInstance; (void)hPrevInstance; (void)iCmdShow; char *argv[] = {szCmdLine}; // InnoSetup: [...] requires that you add code to your application // which creates a mutex with the name you specify in this // directive. HANDLE mtx = CreateMutex(NULL, FALSE, "WorkraveMutex"); if (mtx != NULL && GetLastError() != ERROR_ALREADY_EXISTS) { run(sizeof(argv) / sizeof(argv[0]), argv); } return (0); } #endif workrave-1.10.50/frontend/gtkmm/src/GUIConfig.cc0000644000175100001710000001711314221624107020233 0ustar00gdm00000000000000// GUIConfig.cc --- The WorkRave GUI Configuration // // Copyright (C) 2007, 2008, 2010, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #include "GUIConfig.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "ICore.hh" #include "IBreak.hh" const std::string GUIConfig::CFG_KEY_BREAK_IGNORABLE = "gui/breaks/%b/ignorable_break"; const std::string GUIConfig::CFG_KEY_BREAK_SKIPPABLE = "gui/breaks/%b/skippable_break"; const std::string GUIConfig::CFG_KEY_BREAK_EXERCISES = "gui/breaks/%b/exercises"; const std::string GUIConfig::CFG_KEY_BREAK_AUTO_NATURAL = "gui/breaks/%b/auto_natural"; const std::string GUIConfig::CFG_KEY_BREAK_ENABLE_SHUTDOWN = "gui/breaks/%b/enable_shutdown"; const std::string GUIConfig::CFG_KEY_BLOCK_MODE = "gui/breaks/block_mode"; const std::string GUIConfig::CFG_KEY_LOCALE = "gui/locale"; const std::string GUIConfig::CFG_KEY_TRAYICON_ENABLED = "gui/trayicon_enabled"; const std::string GUIConfig::CFG_KEY_CLOSEWARN_ENABLED = "gui/closewarn_enabled"; const std::string GUIConfig::CFG_KEY_AUTOSTART = "gui/autostart"; const std::string GUIConfig::CFG_KEY_ICONTHEME = "gui/icontheme"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW = "gui/main_window"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP = "gui/main_window/always_on_top"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW_START_IN_TRAY = "gui/main_window/start_in_tray"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW_X = "gui/main_window/x"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW_Y = "gui/main_window/y"; const std::string GUIConfig::CFG_KEY_MAIN_WINDOW_HEAD = "gui/main_window/head"; const std::string GUIConfig::CFG_KEY_APPLET_FALLBACK_ENABLED = "gui/applet/fallback_enabled"; const std::string GUIConfig::CFG_KEY_APPLET_ICON_ENABLED = "gui/applet/icon_enabled"; //! void GUIConfig::init() { IConfigurator *config = CoreFactory::get_configurator(); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakId breakId = (BreakId)i; config->set_value(CFG_KEY_BREAK_IGNORABLE % breakId, true, CONFIG_FLAG_DEFAULT); config->set_value(CFG_KEY_BREAK_EXERCISES % breakId, i == BREAK_ID_REST_BREAK ? 3 : 0, CONFIG_FLAG_DEFAULT); config->set_value(CFG_KEY_BREAK_AUTO_NATURAL % breakId, false, CONFIG_FLAG_DEFAULT); // for backward compatibility with settings of older versions, we set the default // default value of `skippable` to whatever `ignorable`. This works because the old // meaning of `ignorable` was "show postpone and skip"; the new meaning is // "show postpone". bool ignorable; config->get_value_with_default(CFG_KEY_BREAK_IGNORABLE % breakId, ignorable, true); config->set_value(CFG_KEY_BREAK_SKIPPABLE % breakId, ignorable, CONFIG_FLAG_DEFAULT); config->set_value(CFG_KEY_BREAK_ENABLE_SHUTDOWN % breakId, true, CONFIG_FLAG_DEFAULT); } config->set_value(CFG_KEY_BLOCK_MODE, BLOCK_MODE_INPUT, CONFIG_FLAG_DEFAULT); config->set_value(CFG_KEY_TRAYICON_ENABLED, true, CONFIG_FLAG_DEFAULT); config->set_value(CFG_KEY_CLOSEWARN_ENABLED, true, CONFIG_FLAG_DEFAULT); } //! bool GUIConfig::get_ignorable(BreakId id) { bool rc; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_BREAK_IGNORABLE % id, rc, true); return rc; } //! bool GUIConfig::get_skippable(BreakId id) { bool rc; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_BREAK_SKIPPABLE % id, rc, true); return rc; } //! void GUIConfig::set_ignorable(BreakId id, bool b) { CoreFactory::get_configurator()->set_value(CFG_KEY_BREAK_IGNORABLE % id, b); } bool GUIConfig::get_shutdown_enabled(BreakId id) { bool rc; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_BREAK_ENABLE_SHUTDOWN % id, rc, true); return rc; } //! bool GUIConfig::get_trayicon_enabled() { bool rc; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_TRAYICON_ENABLED, rc, true); return rc; } //! void GUIConfig::set_trayicon_enabled(bool b) { CoreFactory::get_configurator()->set_value(CFG_KEY_TRAYICON_ENABLED, b); } //! int GUIConfig::get_number_of_exercises(BreakId id) { int num; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_BREAK_EXERCISES % id, num, 0); return num; } //! void GUIConfig::set_number_of_exercises(BreakId id, int num) { CoreFactory::get_configurator()->set_value(CFG_KEY_BREAK_EXERCISES % id, num); } GUIConfig::BlockMode GUIConfig::get_block_mode() { int mode; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_BLOCK_MODE, mode, BLOCK_MODE_INPUT); return (BlockMode)mode; } void GUIConfig::set_block_mode(BlockMode mode) { CoreFactory::get_configurator()->set_value(CFG_KEY_BLOCK_MODE, int(mode)); } std::string GUIConfig::get_locale() { std::string ret = ""; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_LOCALE, ret, ""); return ret; } void GUIConfig::set_locale(std::string locale) { CoreFactory::get_configurator()->set_value(CFG_KEY_LOCALE, locale); } std::string GUIConfig::expand(const std::string &key, BreakId id) { IBreak *b = CoreFactory::get_core()->get_break(id); std::string str = key; std::string::size_type pos = 0; std::string name = b->get_name(); while ((pos = str.find("%b", pos)) != std::string::npos) { str.replace(pos, 2, name); pos++; } return str; } bool GUIConfig::get_always_on_top() { bool rc; CoreFactory::get_configurator()->get_value_with_default(GUIConfig::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP, rc, false); return rc; } void GUIConfig::set_always_on_top(bool b) { CoreFactory::get_configurator()->set_value(GUIConfig::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP, b); } bool GUIConfig::get_start_in_tray() { bool rc; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_MAIN_WINDOW_START_IN_TRAY, rc, false); return rc; } void GUIConfig::set_start_in_tray(bool b) { CoreFactory::get_configurator()->set_value(CFG_KEY_MAIN_WINDOW_START_IN_TRAY, b); } std::string GUIConfig::get_icon_theme() { std::string ret = ""; CoreFactory::get_configurator()->get_value_with_default(CFG_KEY_ICONTHEME, ret, ""); return ret; } void GUIConfig::set_icon_theme(std::string theme) { CoreFactory::get_configurator()->set_value(CFG_KEY_ICONTHEME, theme); } bool GUIConfig::is_applet_fallback_enabled() { bool ret = true; if (!CoreFactory::get_configurator()->get_value(CFG_KEY_APPLET_FALLBACK_ENABLED, ret)) { ret = false; } return ret; } void GUIConfig::set_applet_fallback_enabled(bool enabled) { CoreFactory::get_configurator()->set_value(CFG_KEY_APPLET_FALLBACK_ENABLED, enabled); } bool GUIConfig::is_applet_icon_enabled() { bool ret = true; if (!CoreFactory::get_configurator()->get_value(CFG_KEY_APPLET_ICON_ENABLED, ret)) { ret = true; } return ret; } void GUIConfig::set_applet_icon_enabled(bool enabled) { CoreFactory::get_configurator()->set_value(CFG_KEY_APPLET_ICON_ENABLED, enabled); } workrave-1.10.50/frontend/gtkmm/src/HeadInfo.cc0000644000175100001710000000206014221624107020131 0ustar00gdm00000000000000// HeadInfo.hh --- Multi head info // // Copyright (C) 2001, 2002, 2003, 2004, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "HeadInfo.hh" int HeadInfo::get_width() const { return geometry.get_width(); } int HeadInfo::get_height() const { return geometry.get_height(); } int HeadInfo::get_x() const { return geometry.get_x(); } int HeadInfo::get_y() const { return geometry.get_y(); } workrave-1.10.50/frontend/gtkmm/src/StatusIcon.cc0000644000175100001710000001515414221624107020560 0ustar00gdm00000000000000// StatusIcon.cc --- Status icon // // Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #ifdef PLATFORM_OS_MACOS # if HAVE_IGE_MAC_INTEGRATION # include "ige-mac-dock.h" # endif # if HAVE_GTK_MAC_INTEGRATION # include "gtk-mac-dock.h" # endif #endif #ifdef PLATFORM_OS_WINDOWS # include "W32StatusIcon.hh" #endif #include "StatusIcon.hh" #include "GUI.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "GUIConfig.hh" #include "Menus.hh" #include "GtkUtil.hh" #include "TimerBoxControl.hh" using namespace std; StatusIcon::StatusIcon() { TRACE_ENTER("StatusIcon::StatusIcon"); #if !defined(USE_W32STATUSICON) && defined(PLATFORM_OS_WINDOWS) wm_taskbarcreated = RegisterWindowMessage("TaskbarCreated"); #endif TRACE_EXIT(); } StatusIcon::~StatusIcon() {} void StatusIcon::init() { // Preload icons const char *mode_files[] = { "workrave-icon-medium.png", "workrave-suspended-icon-medium.png", "workrave-quiet-icon-medium.png", }; assert(sizeof(mode_files) / sizeof(mode_files[0]) == OPERATION_MODE_SIZEOF); for (size_t i = 0; i < OPERATION_MODE_SIZEOF; i++) { mode_icons[(OperationMode)i] = GtkUtil::create_pixbuf(mode_files[i]); } insert_icon(); CoreFactory::get_configurator()->add_listener(GUIConfig::CFG_KEY_TRAYICON_ENABLED, this); bool tray_icon_enabled = GUIConfig::get_trayicon_enabled(); status_icon->set_visible(tray_icon_enabled); } void StatusIcon::insert_icon() { // Create status icon ICore *core = CoreFactory::get_core(); OperationMode mode = core->get_operation_mode_regular(); #ifdef USE_W32STATUSICON status_icon = new W32StatusIcon(); set_operation_mode(mode); #else status_icon = Gtk::StatusIcon::create(mode_icons[mode]); #endif #ifdef USE_W32STATUSICON status_icon->signal_balloon_activate().connect(sigc::mem_fun(*this, &StatusIcon::on_balloon_activate)); status_icon->signal_activate().connect(sigc::mem_fun(*this, &StatusIcon::on_activate)); status_icon->signal_popup_menu().connect(sigc::mem_fun(*this, &StatusIcon::on_popup_menu)); #else # if !defined(HAVE_STATUSICON_SIGNAL) || !defined(HAVE_EMBEDDED_SIGNAL) // Hook up signals, missing from gtkmm GtkStatusIcon *gobj = status_icon->gobj(); # endif # ifdef HAVE_STATUSICON_SIGNAL status_icon->signal_activate().connect(sigc::mem_fun(*this, &StatusIcon::on_activate)); status_icon->signal_popup_menu().connect(sigc::mem_fun(*this, &StatusIcon::on_popup_menu)); # else g_signal_connect(gobj, "activate", reinterpret_cast(activate_callback), this); g_signal_connect(gobj, "popup-menu", reinterpret_cast(popup_menu_callback), this); # endif # ifdef HAVE_EMBEDDED_SIGNAL status_icon->property_embedded().signal_changed().connect(sigc::mem_fun(*this, &StatusIcon::on_embedded_changed)); # else g_signal_connect(gobj, "notify::embedded", reinterpret_cast(embedded_changed_callback), this); # endif #endif } void StatusIcon::set_operation_mode(OperationMode m) { TRACE_ENTER_MSG("StatusIcon::set_operation_mode", (int)m); if (mode_icons[m]) { status_icon->set(mode_icons[m]); } TRACE_EXIT(); } bool StatusIcon::is_visible() const { return status_icon->is_embedded() && status_icon->get_visible(); } void StatusIcon::set_tooltip(std::string &tip) { #if defined(HAVE_GTK3) && !defined(USE_W32STATUSICON) status_icon->set_tooltip_text(tip); #else status_icon->set_tooltip(tip); #endif } void StatusIcon::show_balloon(string id, const string &balloon) { #ifdef USE_W32STATUSICON status_icon->show_balloon(id, balloon); #else (void)id; (void)balloon; #endif } void StatusIcon::on_popup_menu(guint button, guint activate_time) { (void)button; // Note the 1 is a hack. It used to be 'button'. See bugzilla 598 IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->popup(Menus::MENU_MAINAPPLET, 1, activate_time); } void StatusIcon::on_embedded_changed() { visibility_changed_signal.emit(); } #ifndef HAVE_STATUSICON_SIGNAL void StatusIcon::activate_callback(GtkStatusIcon *, gpointer callback_data) { static_cast(callback_data)->on_activate(); } void StatusIcon::popup_menu_callback(GtkStatusIcon *, guint button, guint activate_time, gpointer callback_data) { static_cast(callback_data)->on_popup_menu(button, activate_time); } #endif #ifndef HAVE_EMBEDDED_SIGNAL void StatusIcon::embedded_changed_callback(GObject *gobject, GParamSpec *pspec, gpointer callback_data) { (void)pspec; (void)gobject; static_cast(callback_data)->on_embedded_changed(); } #endif #if defined(PLATFORM_OS_WINDOWS) && defined(USE_W32STATUSICON) void StatusIcon::on_balloon_activate(string id) { balloon_activate_signal.emit(id); } #endif void StatusIcon::on_activate() { activate_signal.emit(); } #if !defined(USE_W32STATUSICON) && defined(PLATFORM_OS_WINDOWS) GdkFilterReturn StatusIcon::win32_filter_func(void *xevent, GdkEvent *event) { (void)event; MSG *msg = (MSG *)xevent; GdkFilterReturn ret = GDK_FILTER_CONTINUE; if (msg->message == wm_taskbarcreated) { insert_icon(); ret = GDK_FILTER_REMOVE; } return ret; } #endif void StatusIcon::config_changed_notify(const std::string &key) { TRACE_ENTER_MSG("StatusIcon::config_changed_notify", key); if (key == GUIConfig::CFG_KEY_TRAYICON_ENABLED) { bool visible = GUIConfig::get_trayicon_enabled(); if (status_icon->get_visible() != visible) { visibility_changed_signal.emit(); status_icon->set_visible(visible); } } TRACE_EXIT(); } sigc::signal & StatusIcon::signal_visibility_changed() { return visibility_changed_signal; } sigc::signal & StatusIcon::signal_activate() { return activate_signal; } sigc::signal & StatusIcon::signal_balloon_activate() { return balloon_activate_signal; } workrave-1.10.50/frontend/gtkmm/src/IconListNotebook.cc0000644000175100001710000000540614221624107021710 0ustar00gdm00000000000000// IconListNotebook.hh --- Notebook like widget // // Copyright (C) 2003, 2004, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include "nls.h" #include #include #include "IconListNotebook.hh" #include "IconListCellRenderer.hh" IconListNotebook::IconListNotebook() : Gtk::HBox(false, 6) { icon_list.show(); icon_list.set_headers_visible(false); Gtk::ScrolledWindow *scroller = Gtk::manage(new Gtk::ScrolledWindow()); scroller->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_ALWAYS); scroller->set_shadow_type(Gtk::SHADOW_IN); scroller->show(); scroller->add(icon_list); list_store = Gtk::ListStore::create(model_columns); icon_list.set_model(list_store); IconListCellRenderer *renderer = new IconListCellRenderer(); Gtk::TreeViewColumn *tvc = new Gtk::TreeViewColumn("Bla", *Gtk::manage(renderer)); icon_list.append_column(*Gtk::manage(tvc)); tvc->add_attribute(renderer->property_text(), model_columns.text); tvc->add_attribute(renderer->property_pixbuf(), model_columns.pixbuf); Glib::RefPtr selection = icon_list.get_selection(); selection->set_mode(Gtk::SELECTION_SINGLE); selection->signal_changed().connect(sigc::mem_fun(*this, &IconListNotebook::on_page_changed)); notebook.set_show_tabs(false); notebook.set_show_border(false); pack_start(*scroller, false, false, 0); pack_start(notebook, true, true, 0); } void IconListNotebook::on_page_changed() { if (const Gtk::TreeModel::iterator selected = icon_list.get_selection()->get_selected()) { Gtk::Widget *page = (*selected)[model_columns.page]; int page_num = gtk_notebook_page_num(notebook.gobj(), page->gobj()); notebook.set_current_page(page_num); } } void IconListNotebook::add_page(const char *name, Glib::RefPtr pixbuf, Gtk::Widget &widget) { notebook.append_page(widget, name); Gtk::TreeRow row = *list_store->append(); row[model_columns.text] = Glib::ustring(name); row[model_columns.pixbuf] = pixbuf; row[model_columns.page] = &widget; } workrave-1.10.50/frontend/gtkmm/src/EventLabel.cc0000644000175100001710000000574414221624107020511 0ustar00gdm00000000000000// EventLabel.cc --- // // Copyright (C) 2003, 2004, 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "EventLabel.hh" void EventLabel::on_realize() { GtkWidget *widget = GTK_WIDGET(gobj()); GdkWindowAttr attributes; attributes.window_type = GDK_WINDOW_CHILD; #ifdef HAVE_GTK3 GtkAllocation allocation; gtk_widget_get_allocation(widget, &allocation); attributes.x = allocation.x; attributes.y = allocation.y; attributes.width = allocation.width; attributes.height = allocation.height; #else // needed for 2.16 attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; #endif attributes.wclass = GDK_INPUT_ONLY; attributes.event_mask = gtk_widget_get_events(widget); attributes.event_mask |= (GDK_EXPOSURE_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK); gint attributes_mask = GDK_WA_X | GDK_WA_Y; Gtk::Label::on_realize(); event_window = gdk_window_new(gtk_widget_get_parent_window(widget), &attributes, attributes_mask); gdk_window_set_user_data(event_window, widget); gdk_window_show(event_window); } void EventLabel::on_unrealize() { if (event_window) { gdk_window_set_user_data(event_window, NULL); gdk_window_destroy(event_window); event_window = NULL; } Gtk::Label::on_unrealize(); } bool EventLabel::on_map_event(GdkEventAny *event) { bool ret = Gtk::Label::on_map_event(event); if (event_window) { gdk_window_show(event_window); } return ret; } bool EventLabel::on_unmap_event(GdkEventAny *event) { if (event_window) { gdk_window_hide(event_window); } return Gtk::Label::on_unmap_event(event); } void EventLabel::on_size_allocate(Gtk::Allocation &allocation) { Gtk::Label::on_size_allocate(allocation); GtkWidget *widget = GTK_WIDGET(gobj()); #ifdef HAVE_GTK3 if (gtk_widget_get_realized(widget)) #else // needed for 2.16 if (GTK_WIDGET_REALIZED(widget)) #endif { gdk_window_move_resize(event_window, allocation.get_x(), allocation.get_y(), allocation.get_width(), allocation.get_height()); } } workrave-1.10.50/frontend/gtkmm/src/gtktrayicon3.c0000644000175100001710000007733214221624107020750 0ustar00gdm00000000000000/* gtktrayicon.c * Copyright (C) 2002 Anders Carlsson * * 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 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, see . */ /* * This is an implementation of the freedesktop.org “system tray” spec, * http://www.freedesktop.org/wiki/Standards/systemtray-spec */ #include "config.h" #include #include #include "nls.h" #include #include #include "gtk/gtk.h" #include "gtk/gtkx.h" #include "gdk/gdk.h" #include "gtktrayicon.h" #define SYSTEM_TRAY_REQUEST_DOCK 0 #define SYSTEM_TRAY_BEGIN_MESSAGE 1 #define SYSTEM_TRAY_CANCEL_MESSAGE 2 #define SYSTEM_TRAY_ORIENTATION_HORZ 0 #define SYSTEM_TRAY_ORIENTATION_VERT 1 enum { PROP_0, PROP_ORIENTATION, PROP_FG_COLOR, PROP_ERROR_COLOR, PROP_WARNING_COLOR, PROP_SUCCESS_COLOR, PROP_PADDING, PROP_ICON_SIZE }; struct _WRGtkTrayIconPrivate { guint stamp; Atom selection_atom; Atom manager_atom; Atom system_tray_opcode_atom; Atom orientation_atom; Atom visual_atom; Atom colors_atom; Atom padding_atom; Atom icon_size_atom; Window manager_window; GdkVisual *manager_visual; gboolean manager_visual_rgba; GtkOrientation orientation; GdkRGBA fg_color; GdkRGBA error_color; GdkRGBA warning_color; GdkRGBA success_color; gint padding; gint icon_size; }; static void wrgtk_tray_icon_constructed(GObject *object); static void wrgtk_tray_icon_dispose(GObject *object); static void wrgtk_tray_icon_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); static void wrgtk_tray_icon_realize(GtkWidget *widget); static void wrgtk_tray_icon_style_updated(GtkWidget *widget); static gboolean wrgtk_tray_icon_delete(GtkWidget *widget, GdkEventAny *event); static gboolean wrgtk_tray_icon_draw(GtkWidget *widget, cairo_t *cr); static void wrgtk_tray_icon_clear_manager_window(WRGtkTrayIcon *icon); static void wrgtk_tray_icon_update_manager_window(WRGtkTrayIcon *icon); static void wrgtk_tray_icon_manager_window_destroyed(WRGtkTrayIcon *icon); static GdkFilterReturn wrgtk_tray_icon_manager_filter(GdkXEvent *xevent, GdkEvent *event, gpointer user_data); G_DEFINE_TYPE_WITH_PRIVATE(WRGtkTrayIcon, wrgtk_tray_icon, GTK_TYPE_PLUG) static void wrgtk_tray_icon_class_init(WRGtkTrayIconClass *class) { GObjectClass *gobject_class = (GObjectClass *)class; GtkWidgetClass *widget_class = (GtkWidgetClass *)class; gobject_class->get_property = wrgtk_tray_icon_get_property; gobject_class->constructed = wrgtk_tray_icon_constructed; gobject_class->dispose = wrgtk_tray_icon_dispose; widget_class->realize = wrgtk_tray_icon_realize; widget_class->style_updated = wrgtk_tray_icon_style_updated; widget_class->delete_event = wrgtk_tray_icon_delete; widget_class->draw = wrgtk_tray_icon_draw; g_object_class_install_property(gobject_class, PROP_ORIENTATION, g_param_spec_enum("orientation", _("Orientation"), _("The orientation of the tray"), GTK_TYPE_ORIENTATION, GTK_ORIENTATION_HORIZONTAL, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_FG_COLOR, g_param_spec_boxed( "fg-color", _("Foreground color"), _("Foreground color for symbolic icons"), GDK_TYPE_RGBA, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_ERROR_COLOR, g_param_spec_boxed("error-color", _("Error color"), _("Error color for symbolic icons"), GDK_TYPE_RGBA, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_WARNING_COLOR, g_param_spec_boxed( "warning-color", _("Warning color"), _("Warning color for symbolic icons"), GDK_TYPE_RGBA, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_SUCCESS_COLOR, g_param_spec_boxed( "success-color", _("Success color"), _("Success color for symbolic icons"), GDK_TYPE_RGBA, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_PADDING, g_param_spec_int( "padding", _("Padding"), _("Padding that should be put around icons in the tray"), 0, G_MAXINT, 0, G_PARAM_READABLE)); g_object_class_install_property( gobject_class, PROP_ICON_SIZE, g_param_spec_int( "icon-size", _("Icon Size"), _("The pixel size that icons should be forced to, or zero"), 0, G_MAXINT, 0, G_PARAM_READABLE)); } static void wrgtk_tray_icon_init(WRGtkTrayIcon *icon) { icon->priv = wrgtk_tray_icon_get_instance_private(icon); icon->priv->stamp = 1; icon->priv->orientation = GTK_ORIENTATION_HORIZONTAL; icon->priv->fg_color.red = 0.0; icon->priv->fg_color.green = 0.0; icon->priv->fg_color.blue = 0.0; icon->priv->fg_color.alpha = 1.0; icon->priv->error_color.red = 0.7968; icon->priv->error_color.green = 0.0; icon->priv->error_color.blue = 0.0; icon->priv->error_color.alpha = 1.0; icon->priv->warning_color.red = 0.9570; icon->priv->warning_color.green = 0.4726; icon->priv->warning_color.blue = 0.2421; icon->priv->warning_color.alpha = 1.0; icon->priv->success_color.red = 0.3047; icon->priv->success_color.green = 0.6016; icon->priv->success_color.blue = 0.0234; icon->priv->success_color.alpha = 1.0; icon->priv->padding = 0; icon->priv->icon_size = 0; gtk_widget_set_app_paintable(GTK_WIDGET(icon), TRUE); gtk_widget_add_events(GTK_WIDGET(icon), GDK_PROPERTY_CHANGE_MASK); } static void wrgtk_tray_icon_constructed(GObject *object) { /* Do setup that depends on the screen; screen has been set at this point */ WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(object); GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(object)); GdkWindow *root_window = gdk_screen_get_root_window(screen); GdkDisplay *display = gtk_widget_get_display(GTK_WIDGET(object)); Display *xdisplay = gdk_x11_display_get_xdisplay(display); char buffer[256]; G_GNUC_BEGIN_IGNORE_DEPRECATIONS g_snprintf(buffer, sizeof(buffer), "_NET_SYSTEM_TRAY_S%d", gdk_screen_get_number(screen)); G_GNUC_END_IGNORE_DEPRECATIONS icon->priv->selection_atom = XInternAtom(xdisplay, buffer, False); icon->priv->manager_atom = XInternAtom(xdisplay, "MANAGER", False); icon->priv->system_tray_opcode_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_OPCODE", False); icon->priv->orientation_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_ORIENTATION", False); icon->priv->visual_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_VISUAL", False); icon->priv->colors_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_COLORS", False); icon->priv->padding_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_PADDING", False); icon->priv->icon_size_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_ICON_SIZE", False); /* Add a root window filter so that we get changes on MANAGER */ gdk_window_add_filter(root_window, wrgtk_tray_icon_manager_filter, icon); wrgtk_tray_icon_update_manager_window(icon); } static void wrgtk_tray_icon_clear_manager_window(WRGtkTrayIcon *icon) { GdkDisplay *display = gtk_widget_get_display(GTK_WIDGET(icon)); if (icon->priv->manager_window != None) { GdkWindow *gdkwin; gdkwin = gdk_x11_window_lookup_for_display(display, icon->priv->manager_window); gdk_window_remove_filter(gdkwin, wrgtk_tray_icon_manager_filter, icon); icon->priv->manager_window = None; icon->priv->manager_visual = NULL; } } static void wrgtk_tray_icon_dispose(GObject *object) { WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(object); GtkWidget *widget = GTK_WIDGET(object); GdkWindow *root_window = gdk_screen_get_root_window(gtk_widget_get_screen(widget)); wrgtk_tray_icon_clear_manager_window(icon); gdk_window_remove_filter(root_window, wrgtk_tray_icon_manager_filter, icon); G_OBJECT_CLASS(wrgtk_tray_icon_parent_class)->dispose(object); } static void wrgtk_tray_icon_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(object); switch (prop_id) { case PROP_ORIENTATION: g_value_set_enum(value, icon->priv->orientation); break; case PROP_FG_COLOR: g_value_set_boxed(value, &icon->priv->fg_color); break; case PROP_ERROR_COLOR: g_value_set_boxed(value, &icon->priv->error_color); break; case PROP_WARNING_COLOR: g_value_set_boxed(value, &icon->priv->warning_color); break; case PROP_SUCCESS_COLOR: g_value_set_boxed(value, &icon->priv->success_color); break; case PROP_PADDING: g_value_set_int(value, icon->priv->padding); break; case PROP_ICON_SIZE: g_value_set_int(value, icon->priv->icon_size); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); break; } } static gboolean wrgtk_tray_icon_draw(GtkWidget *widget, cairo_t *cr) { WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(widget); GtkWidget *focus_child; GdkWindow *window; gint border_width; gboolean retval = FALSE; cairo_surface_t *target; window = gtk_widget_get_window(widget); target = cairo_get_group_target(cr); if (icon->priv->manager_visual_rgba || cairo_surface_get_type(target) != CAIRO_SURFACE_TYPE_XLIB || cairo_xlib_surface_get_drawable(target) != GDK_WINDOW_XID(window)) { /* Clear to transparent */ cairo_set_source_rgba(cr, 0, 0, 0, 0); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_paint(cr); } else { GdkRectangle clip; if (gdk_cairo_get_clip_rectangle(cr, &clip)) { /* Clear to parent-relative pixmap * We need to use direct X access here because GDK doesn't know about * the parent realtive pixmap. */ cairo_surface_flush(target); XClearArea(GDK_WINDOW_XDISPLAY(window), GDK_WINDOW_XID(window), clip.x, clip.y, clip.width, clip.height, False); cairo_surface_mark_dirty_rectangle(target, clip.x, clip.y, clip.width, clip.height); } } if (GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->draw) retval = GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->draw(widget, cr); focus_child = gtk_container_get_focus_child(GTK_CONTAINER(widget)); if (focus_child && gtk_widget_has_visible_focus(focus_child)) { GtkStyleContext *context; border_width = gtk_container_get_border_width(GTK_CONTAINER(widget)); context = gtk_widget_get_style_context(widget); gtk_render_focus(context, cr, border_width, border_width, gtk_widget_get_allocated_width(widget) - 2 * border_width, gtk_widget_get_allocated_height(widget) - 2 * border_width); } return retval; } static void wrgtk_tray_icon_get_orientation_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_x11_display_error_trap_push(display); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->orientation_atom, 0, G_MAXLONG, FALSE, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_x11_display_error_trap_pop(display); if (error || result != Success) return; if (type == XA_CARDINAL && nitems == 1 && format == 32) { GtkOrientation orientation; orientation = (prop.prop[0] == SYSTEM_TRAY_ORIENTATION_HORZ) ? GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL; if (icon->priv->orientation != orientation) { icon->priv->orientation = orientation; g_object_notify(G_OBJECT(icon), "orientation"); } } if (type != None) XFree(prop.prop); } static void wrgtk_tray_icon_get_visual_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_x11_display_error_trap_push(display); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->visual_atom, 0, G_MAXLONG, FALSE, XA_VISUALID, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_x11_display_error_trap_pop(display); if (!error && result == Success && type == XA_VISUALID && nitems == 1 && format == 32) { VisualID visual_id; GdkVisual *visual; gint red_prec, green_prec, blue_prec; visual_id = prop.prop[0]; visual = gdk_x11_screen_lookup_visual(screen, visual_id); gdk_visual_get_red_pixel_details(visual, NULL, NULL, &red_prec); gdk_visual_get_green_pixel_details(visual, NULL, NULL, &green_prec); gdk_visual_get_blue_pixel_details(visual, NULL, NULL, &blue_prec); icon->priv->manager_visual = visual; icon->priv->manager_visual_rgba = (red_prec + blue_prec + green_prec < gdk_visual_get_depth(visual)); } else { icon->priv->manager_visual = NULL; icon->priv->manager_visual_rgba = FALSE; } G_GNUC_BEGIN_IGNORE_DEPRECATIONS /* For the background-relative hack we use when we aren't * using a real RGBA visual, we can't be double-buffered */ gtk_widget_set_double_buffered(GTK_WIDGET(icon), icon->priv->manager_visual_rgba); G_GNUC_END_IGNORE_DEPRECATIONS if (type != None) XFree(prop.prop); } static void wrgtk_tray_icon_get_colors_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_x11_display_error_trap_push(display); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->colors_atom, 0, G_MAXLONG, FALSE, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_x11_display_error_trap_pop(display); if (error || result != Success) return; if (type == XA_CARDINAL && nitems == 12 && format == 32) { GdkRGBA color; color.alpha = 1.0; g_object_freeze_notify(G_OBJECT(icon)); color.red = prop.prop[0] / 65535.0; color.green = prop.prop[1] / 65535.0; color.blue = prop.prop[2] / 65535.0; if (!gdk_rgba_equal(&icon->priv->fg_color, &color)) { icon->priv->fg_color = color; g_object_notify(G_OBJECT(icon), "fg-color"); } color.red = prop.prop[3] / 65535.0; color.green = prop.prop[4] / 65535.0; color.blue = prop.prop[5] / 65535.0; if (!gdk_rgba_equal(&icon->priv->error_color, &color)) { icon->priv->error_color = color; g_object_notify(G_OBJECT(icon), "error-color"); } color.red = prop.prop[6] / 65535.0; color.green = prop.prop[7] / 65535.0; color.blue = prop.prop[8] / 65535.0; if (!gdk_rgba_equal(&icon->priv->warning_color, &color)) { icon->priv->warning_color = color; g_object_notify(G_OBJECT(icon), "warning-color"); } color.red = prop.prop[9] / 65535.0; color.green = prop.prop[10] / 65535.0; color.blue = prop.prop[11] / 65535.0; if (!gdk_rgba_equal(&icon->priv->success_color, &color)) { icon->priv->success_color = color; g_object_notify(G_OBJECT(icon), "success-color"); } g_object_thaw_notify(G_OBJECT(icon)); } if (type != None) XFree(prop.prop); } static void wrgtk_tray_icon_get_padding_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_x11_display_error_trap_push(display); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->padding_atom, 0, G_MAXLONG, FALSE, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_x11_display_error_trap_pop(display); if (!error && result == Success && type == XA_CARDINAL && nitems == 1 && format == 32) { gint padding; padding = prop.prop[0]; if (icon->priv->padding != padding) { icon->priv->padding = padding; g_object_notify(G_OBJECT(icon), "padding"); } } if (type != None) XFree(prop.prop); } static void wrgtk_tray_icon_get_icon_size_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_x11_display_error_trap_push(display); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->icon_size_atom, 0, G_MAXLONG, FALSE, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_x11_display_error_trap_pop(display); if (!error && result == Success && type == XA_CARDINAL && nitems == 1 && format == 32) { gint icon_size; icon_size = prop.prop[0]; if (icon->priv->icon_size != icon_size) { icon->priv->icon_size = icon_size; g_object_notify(G_OBJECT(icon), "icon-size"); } } if (type != None) XFree(prop.prop); } static GdkFilterReturn wrgtk_tray_icon_manager_filter(GdkXEvent *xevent, GdkEvent *event, gpointer user_data) { WRGtkTrayIcon *icon = user_data; XEvent *xev = (XEvent *)xevent; if (xev->xany.type == ClientMessage && xev->xclient.message_type == icon->priv->manager_atom && xev->xclient.data.l[1] == icon->priv->selection_atom) { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: tray manager appeared", icon)); wrgtk_tray_icon_update_manager_window(icon); } else if (xev->xany.window == icon->priv->manager_window) { if (xev->xany.type == PropertyNotify && xev->xproperty.atom == icon->priv->orientation_atom) { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: got PropertyNotify on manager window for orientation atom", icon)); wrgtk_tray_icon_get_orientation_property(icon); } else if (xev->xany.type == PropertyNotify && xev->xproperty.atom == icon->priv->colors_atom) { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: got PropertyNotify on manager window for colors atom", icon)); wrgtk_tray_icon_get_colors_property(icon); } else if (xev->xany.type == PropertyNotify && xev->xproperty.atom == icon->priv->padding_atom) { wrgtk_tray_icon_get_padding_property(icon); } else if (xev->xany.type == PropertyNotify && xev->xproperty.atom == icon->priv->icon_size_atom) { wrgtk_tray_icon_get_icon_size_property(icon); } else if (xev->xany.type == DestroyNotify) { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: got DestroyNotify for manager window", icon)); wrgtk_tray_icon_manager_window_destroyed(icon); } else { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: got other message on manager window", icon)); } } return GDK_FILTER_CONTINUE; } static void wrgtk_tray_icon_send_manager_message(WRGtkTrayIcon *icon, long message, Window window, long data1, long data2, long data3) { GtkWidget *widget; XClientMessageEvent ev; GdkDisplay *display; Display *xdisplay; widget = GTK_WIDGET(icon); memset(&ev, 0, sizeof(ev)); ev.type = ClientMessage; ev.window = window; ev.message_type = icon->priv->system_tray_opcode_atom; ev.format = 32; ev.data.l[0] = gdk_x11_get_server_time(gtk_widget_get_window(widget)); ev.data.l[1] = message; ev.data.l[2] = data1; ev.data.l[3] = data2; ev.data.l[4] = data3; display = gtk_widget_get_display(widget); xdisplay = GDK_DISPLAY_XDISPLAY(display); gdk_x11_display_error_trap_push(display); XSendEvent(xdisplay, icon->priv->manager_window, False, NoEventMask, (XEvent *)&ev); gdk_x11_display_error_trap_pop_ignored(display); } static void wrgtk_tray_icon_send_dock_request(WRGtkTrayIcon *icon) { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: sending dock request to manager window %lx", icon, (gulong)icon->priv->manager_window)); wrgtk_tray_icon_send_manager_message( icon, SYSTEM_TRAY_REQUEST_DOCK, icon->priv->manager_window, gtk_plug_get_id(GTK_PLUG(icon)), 0, 0); } static void wrgtk_tray_icon_update_manager_window(WRGtkTrayIcon *icon) { GtkWidget *widget = GTK_WIDGET(icon); GdkScreen *screen = gtk_widget_get_screen(widget); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: updating tray icon manager window, current manager window: %lx", icon, (gulong)icon->priv->manager_window)); if (icon->priv->manager_window != None) return; GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: trying to find manager window", icon)); XGrabServer(xdisplay); icon->priv->manager_window = XGetSelectionOwner(xdisplay, icon->priv->selection_atom); if (icon->priv->manager_window != None) XSelectInput(xdisplay, icon->priv->manager_window, StructureNotifyMask | PropertyChangeMask); XUngrabServer(xdisplay); XFlush(xdisplay); if (icon->priv->manager_window != None) { GdkWindow *gdkwin; GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: is being managed by window %lx", icon, (gulong)icon->priv->manager_window)); gdkwin = gdk_x11_window_lookup_for_display(display, icon->priv->manager_window); gdk_window_add_filter(gdkwin, wrgtk_tray_icon_manager_filter, icon); wrgtk_tray_icon_get_orientation_property(icon); wrgtk_tray_icon_get_visual_property(icon); wrgtk_tray_icon_get_colors_property(icon); wrgtk_tray_icon_get_padding_property(icon); wrgtk_tray_icon_get_icon_size_property(icon); if (gtk_widget_get_realized(GTK_WIDGET(icon))) { if ((icon->priv->manager_visual == NULL && gtk_widget_get_visual(widget) == gdk_screen_get_system_visual(screen)) || (icon->priv->manager_visual == gtk_widget_get_visual(widget))) { /* Already have the right visual, can just dock */ wrgtk_tray_icon_send_dock_request(icon); } else { /* Need to re-realize the widget to get the right visual */ gtk_widget_hide(widget); gtk_widget_unrealize(widget); gtk_widget_show(widget); } } } else { GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: no tray manager found", icon)); } } static void wrgtk_tray_icon_manager_window_destroyed(WRGtkTrayIcon *icon) { g_return_if_fail(icon->priv->manager_window != None); GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: tray manager window destroyed", icon)); wrgtk_tray_icon_clear_manager_window(icon); } static gboolean wrgtk_tray_icon_delete(GtkWidget *widget, GdkEventAny *event) { #ifdef G_ENABLE_DEBUG WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(widget); #endif GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: delete notify, tray manager window %lx", widget, (gulong)WRGTK_TRAY_ICON(widget)->priv->manager_window)); /* A bug in X server versions up to x.org 1.5.0 means that: * XFixesChangeSaveSet(...., SaveSetRoot, SaveSetUnmap) doesn't work properly * and we'll left mapped in a separate toplevel window if the tray is destroyed. * For simplicity just get rid of our X window and start over. */ gtk_widget_hide(widget); gtk_widget_unrealize(widget); gtk_widget_show(widget); /* Handled it, don't destroy the tray icon */ return TRUE; } static void wrgtk_tray_icon_set_visual(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkVisual *visual = icon->priv->manager_visual; /* To avoid uncertainty about colormaps, _NET_SYSTEM_TRAY_VISUAL is supposed * to be either the screen default visual or a TrueColor visual; ignore it * if it is something else */ if (visual && gdk_visual_get_visual_type(visual) != GDK_VISUAL_TRUE_COLOR) visual = NULL; if (visual == NULL) visual = gdk_screen_get_system_visual(screen); gtk_widget_set_visual(GTK_WIDGET(icon), visual); } static void wrgtk_tray_icon_realize(GtkWidget *widget) { WRGtkTrayIcon *icon = WRGTK_TRAY_ICON(widget); GdkWindow *window; /* Set our visual before realizing */ wrgtk_tray_icon_set_visual(icon); GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->realize(widget); window = gtk_widget_get_window(widget); G_GNUC_BEGIN_IGNORE_DEPRECATIONS if (icon->priv->manager_visual_rgba) { /* Set a transparent background */ GdkRGBA transparent = {0.0, 0.0, 0.0, 0.0}; gdk_window_set_background_rgba(window, &transparent); } else { /* Set a parent-relative background pixmap */ gdk_window_set_background_pattern(window, NULL); } G_GNUC_END_IGNORE_DEPRECATIONS GTK_NOTE(PLUGSOCKET, g_message("GtkStatusIcon %p: realized, window: %lx, socket window: %lx", widget, (gulong)GDK_WINDOW_XID(window), gtk_plug_get_socket_window(GTK_PLUG(icon)) ? (gulong)GDK_WINDOW_XID(gtk_plug_get_socket_window(GTK_PLUG(icon))) : 0UL)); if (icon->priv->manager_window != None) wrgtk_tray_icon_send_dock_request(icon); } static void wrgtk_tray_icon_style_updated(GtkWidget *widget) { /* The default handler resets the background according to the style. We either * use a transparent background or a parent-relative background and ignore the * style background. So, just don't chain up. */ } guint _wrgtk_tray_icon_send_message(WRGtkTrayIcon *icon, gint timeout, const gchar *message, gint len) { guint stamp; GdkDisplay *display; Display *xdisplay; g_return_val_if_fail(WRGTK_IS_TRAY_ICON(icon), 0); g_return_val_if_fail(timeout >= 0, 0); g_return_val_if_fail(message != NULL, 0); if (icon->priv->manager_window == None) return 0; if (len < 0) len = strlen(message); stamp = icon->priv->stamp++; /* Get ready to send the message */ wrgtk_tray_icon_send_manager_message( icon, SYSTEM_TRAY_BEGIN_MESSAGE, (Window)gtk_plug_get_id(GTK_PLUG(icon)), timeout, len, stamp); /* Now to send the actual message */ display = gtk_widget_get_display(GTK_WIDGET(icon)); xdisplay = GDK_DISPLAY_XDISPLAY(display); gdk_x11_display_error_trap_push(display); while (len > 0) { XClientMessageEvent ev; memset(&ev, 0, sizeof(ev)); ev.type = ClientMessage; ev.window = (Window)gtk_plug_get_id(GTK_PLUG(icon)); ev.format = 8; ev.message_type = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_MESSAGE_DATA", False); if (len > 20) { memcpy(&ev.data, message, 20); len -= 20; message += 20; } else { memcpy(&ev.data, message, len); len = 0; } XSendEvent(xdisplay, icon->priv->manager_window, False, StructureNotifyMask, (XEvent *)&ev); } gdk_x11_display_error_trap_pop_ignored(display); return stamp; } void _wrgtk_tray_icon_cancel_message(WRGtkTrayIcon *icon, guint id) { g_return_if_fail(WRGTK_IS_TRAY_ICON(icon)); g_return_if_fail(id > 0); wrgtk_tray_icon_send_manager_message(icon, SYSTEM_TRAY_CANCEL_MESSAGE, (Window)gtk_plug_get_id(GTK_PLUG(icon)), id, 0, 0); } WRGtkTrayIcon * _wrgtk_tray_icon_new_for_screen(GdkScreen *screen, const gchar *name) { g_return_val_if_fail(GDK_IS_SCREEN(screen), NULL); return g_object_new(WRGTK_TYPE_TRAY_ICON, "screen", screen, "title", name, NULL); } WRGtkTrayIcon * wrgtk_tray_icon_new(const gchar *name) { return g_object_new(WRGTK_TYPE_TRAY_ICON, "title", name, NULL); } GtkOrientation wrgtk_tray_icon_get_orientation(WRGtkTrayIcon *icon) { g_return_val_if_fail(WRGTK_IS_TRAY_ICON(icon), GTK_ORIENTATION_HORIZONTAL); return icon->priv->orientation; } gint wrgtk_tray_icon_get_padding(WRGtkTrayIcon *icon) { g_return_val_if_fail(WRGTK_IS_TRAY_ICON(icon), 0); return icon->priv->padding; } gint wrgtk_tray_icon_get_icon_size(WRGtkTrayIcon *icon) { g_return_val_if_fail(WRGTK_IS_TRAY_ICON(icon), 0); return icon->priv->icon_size; } workrave-1.10.50/frontend/gtkmm/src/DebugDialog.cc0000644000175100001710000000566714221624107020642 0ustar00gdm00000000000000// Copyright (C) 2020 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #include "DebugDialog.hh" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #include "nls.h" #include "debug.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "Util.hh" #include "Hig.hh" using namespace workrave; DebugDialog::DebugDialog() #ifdef HAVE_GTK3 : Gtk::Dialog(_("Debug log"), false) #else : Gtk::Dialog(_("Debug log"), false, true) #endif { TRACE_ENTER("DebugDialog::DebugDialog"); set_default_size(1024, 800); text_buffer = Gtk::TextBuffer::create(); text_view = Gtk::manage(new Gtk::TextView(text_buffer)); text_view->set_cursor_visible(false); text_view->set_editable(false); scrolled_window.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scrolled_window.add(*text_view); Gtk::HBox *box = Gtk::manage(new Gtk::HBox(false, 6)); box->pack_start(scrolled_window, true, true, 0); get_vbox()->pack_start(*box, true, true, 0); add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); show_all(); TRACE_EXIT(); } DebugDialog::~DebugDialog() { TRACE_ENTER("DebugDialog::~DebugDialog"); Diagnostics::instance().disable(); TRACE_EXIT(); } void DebugDialog::diagnostics_log(const std::string &log) { Gtk::TextIter iter = text_buffer->end(); iter = text_buffer->insert(iter, log + "\n"); #ifdef HAVE_GTK3 Glib::RefPtr a = scrolled_window.get_vadjustment(); #else Gtk::Adjustment *a = scrolled_window.get_vadjustment(); #endif a->set_value(a->get_upper()); } void DebugDialog::init() { // ICore *core = CoreFactory::get_core(); Diagnostics::instance().enable(this); // Gtk::TextIter iter = text_buffer->end(); // #ifdef HAVE_GTK3 // Glib::RefPtr a = scrolled_window.get_vadjustment(); // #else // Gtk::Adjustment *a = scrolled_window.get_vadjustment(); // #endif // a->set_value(a->get_upper()); } int DebugDialog::run() { TRACE_ENTER("DebugDialog::run") init(); show_all(); TRACE_EXIT(); return 0; } void DebugDialog::on_response(int response) { (void)response; TRACE_ENTER("DebugDialog::on_response") Diagnostics::instance().disable(); TRACE_EXIT(); } workrave-1.10.50/frontend/gtkmm/src/TimeEntry.hh0000644000175100001710000000356414221624107020420 0ustar00gdm00000000000000// TimeEntry.hh --- Entry widget for time // // Copyright (C) 2002, 2003, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMEENTRY_HH #define TIMEENTRY_HH #include "preinclude.h" #include #include namespace Gtk { class SpinButton; } class TimeEntry : public Gtk::HBox { public: TimeEntry(bool millis = false); ~TimeEntry(); time_t get_value(); void set_value(time_t time); typedef sigc::signal0 signal_value_changed_t; signal_value_changed_t &signal_value_changed(); protected: virtual void on_changed(); virtual void on_value_changed(); signal_value_changed_t sig_value_changed; private: void update(Gtk::SpinButton *spin); private: Gtk::SpinButton *hrs; Gtk::SpinButton *mins; Gtk::SpinButton *secs; #ifdef HAVE_GTK3 Glib::RefPtr hours_adjustment; Glib::RefPtr mins_adjustment; Glib::RefPtr secs_adjustment; #else Gtk::Adjustment hours_adjustment; Gtk::Adjustment mins_adjustment; Gtk::Adjustment secs_adjustment; #endif bool millis; }; inline TimeEntry::signal_value_changed_t & TimeEntry::signal_value_changed() { return sig_value_changed; } #endif // TIMEENTRY_HH workrave-1.10.50/frontend/gtkmm/src/Frame.cc0000644000175100001710000002210214221624107017505 0ustar00gdm00000000000000// FrameWindow.hh --- Gtk::Frame like widget // // Copyright (C) 2001, 2002, 2003, 2004, 2007, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include "Frame.hh" Frame::Frame() : frame_width(1) , frame_color(Gdk::Color("black")) , frame_style(STYLE_SOLID) , frame_visible(true) , flash_delay(-1) { } Frame::~Frame() { if (flash_signal.connected()) { flash_signal.disconnect(); } // FIXME: delete gc? } void Frame::set_frame_visible(bool visible) { frame_visible = visible; queue_draw(); } void Frame::set_frame_style(const Style style) { frame_style = style; int dfw = 1; switch (style) { case STYLE_BREAK_WINDOW: dfw = 3; break; case STYLE_SOLID: dfw = 1; break; } set_frame_width(dfw); } void Frame::set_frame_color(const Gdk::Color &col) { frame_color = col; #ifndef HAVE_GTK3 if (color_map) { # if 1 // FIXME: bug66 color_map->alloc_color(frame_color); # endif } #endif } void Frame::set_frame_width(guint width) { frame_width = width; } void Frame::set_frame_flashing(int delay) { if (delay != 0) { if (flash_delay != delay) { if (flash_signal.connected()) { flash_signal.disconnect(); } flash_signal = Glib::signal_timeout().connect(sigc::mem_fun(*this, &Frame::on_timer), delay); } } else { if (flash_signal.connected()) { flash_signal.disconnect(); set_frame_visible(true); } } flash_delay = delay; } bool Frame::on_timer() { set_frame_visible(!frame_visible); flash_signal_src(frame_visible); return true; } void Frame::on_size_allocate(Gtk::Allocation &allocation) { Gtk::Widget *widget = get_child(); guint b = get_border_width() + frame_width; Gtk::Allocation alloc; alloc.set_x(allocation.get_x() + b); alloc.set_y(allocation.get_y() + b); alloc.set_width(allocation.get_width() - 2 * b); alloc.set_height(allocation.get_height() - 2 * b); widget->size_allocate(alloc); set_allocation(allocation); } #ifdef HAVE_GTK3 Gtk::SizeRequestMode Frame::get_request_mode_vfunc() const { return Gtk::Widget::get_request_mode_vfunc(); } void Frame::get_preferred_width_vfunc(int &minimum_width, int &natural_width) const { TRACE_ENTER("Frame::get_preferred_width_vfunc"); const Gtk::Widget *widget = get_child(); widget->get_preferred_width(minimum_width, natural_width); guint d = 2 * (get_border_width() + frame_width); minimum_width += d; natural_width += d; TRACE_MSG(minimum_width << " " << natural_width); TRACE_EXIT(); } void Frame::get_preferred_height_vfunc(int &minimum_height, int &natural_height) const { TRACE_ENTER("Frame::get_preferred_height_vfunc"); const Gtk::Widget *widget = get_child(); widget->get_preferred_height(minimum_height, natural_height); guint d = 2 * (get_border_width() + frame_width); minimum_height += d; natural_height += d; TRACE_MSG(minimum_height << " " << natural_height); TRACE_EXIT(); } void Frame::get_preferred_width_for_height_vfunc(int /* height */, int &minimum_width, int &natural_width) const { TRACE_ENTER("Frame::get_preferred_width_for_height_vfunc"); get_preferred_width_vfunc(minimum_width, natural_width); TRACE_EXIT(); } void Frame::get_preferred_height_for_width_vfunc(int /* width */, int &minimum_height, int &natural_height) const { TRACE_ENTER("Frame::get_preferred_height_for_width_vfunc"); get_preferred_height_vfunc(minimum_height, natural_height); TRACE_EXIT(); } bool Frame::on_draw(const Cairo::RefPtr &cr) { Glib::RefPtr style_context = get_style_context(); // Physical width/height Gtk::Allocation allocation = get_allocation(); int width = allocation.get_width(); int height = allocation.get_height(); switch (frame_style) { case STYLE_SOLID: if (frame_visible) { set_color(cr, frame_color); cr->rectangle(0, 0, frame_width, height); cr->fill(); cr->rectangle(0 + width - frame_width, 0, frame_width, height); cr->fill(); cr->rectangle(0 + frame_width, 0, width - 2 * frame_width, frame_width); cr->fill(); cr->rectangle(0 + frame_width, 0 + height - frame_width, width - 2 * frame_width, frame_width); cr->fill(); } break; case STYLE_BREAK_WINDOW: style_context->context_save(); style_context->set_state((Gtk::StateFlags)0); style_context->add_class(GTK_STYLE_CLASS_BACKGROUND); style_context->render_background(cr, 0, 0, width, height); style_context->remove_class(GTK_STYLE_CLASS_BACKGROUND); style_context->add_class(GTK_STYLE_CLASS_FRAME); style_context->render_frame(cr, 0, 0, width, height); style_context->remove_class(GTK_STYLE_CLASS_FRAME); style_context->add_class(GTK_STYLE_CLASS_BACKGROUND); style_context->render_background(cr, 1, 1, width - 2, height - 2); style_context->remove_class(GTK_STYLE_CLASS_BACKGROUND); style_context->add_class(GTK_STYLE_CLASS_FRAME); style_context->render_frame(cr, 1, 1, width - 2, height - 2); style_context->context_restore(); break; } Gtk::Widget::on_draw(cr); return true; } void Frame::set_color(const Cairo::RefPtr &cr, const Gdk::Color &color) { cr->set_source_rgb(color.get_red_p(), color.get_green_p(), color.get_blue_p()); } void Frame::set_color(const Cairo::RefPtr &cr, const Gdk::RGBA &color) { cr->set_source_rgb(color.get_red(), color.get_green(), color.get_blue()); } #else void Frame::on_realize() { Gtk::Bin::on_realize(); Glib::RefPtr window = get_window(); gc = Gdk::GC::create(window); color_black.set_rgb(0, 0, 0); # if 1 // FIXME: bug66 color_map = get_colormap(); color_map->alloc_color(color_black); # endif set_frame_color(frame_color); } void Frame::on_size_request(Gtk::Requisition *requisition) { Gtk::Widget *widget = get_child(); widget->size_request(*requisition); guint d = 2 * (get_border_width() + frame_width); requisition->width += d; requisition->height += d; } bool Frame::on_expose_event(GdkEventExpose *e) { Glib::RefPtr window = get_window(); Glib::RefPtr style = get_style(); Gdk::Color bgCol = style->get_background(Gtk::STATE_NORMAL); // FIXME: Gtk::Allocation gtkmmalloc = get_allocation(); GtkAllocation alloc; alloc.x = gtkmmalloc.get_x(); alloc.y = gtkmmalloc.get_y(); alloc.width = gtkmmalloc.get_width(); alloc.height = gtkmmalloc.get_height(); switch (frame_style) { case STYLE_SOLID: gc->set_foreground(frame_visible ? frame_color : bgCol); window->draw_rectangle(gc, true, alloc.x, alloc.y, frame_width, alloc.height); window->draw_rectangle(gc, true, alloc.x + alloc.width - frame_width, alloc.y, frame_width, alloc.height); window->draw_rectangle(gc, true, alloc.x + frame_width, alloc.y, alloc.width - 2 * frame_width, frame_width); window->draw_rectangle( gc, true, alloc.x + frame_width, alloc.y + alloc.height - frame_width, alloc.width - 2 * frame_width, frame_width); break; case STYLE_BREAK_WINDOW: # ifdef OLD_STYLE_BORDER gc->set_foreground(color_black); window->draw_rectangle(gc, true, alloc.x, alloc.y, alloc.width, alloc.height); Gdk::Rectangle area(&e->area); style->paint_box( window, Gtk::STATE_NORMAL, Gtk::SHADOW_OUT, area, *this, "", alloc.x + 1, alloc.y + 1, alloc.width - 1, alloc.height - 1); style->paint_box( window, Gtk::STATE_NORMAL, Gtk::SHADOW_OUT, area, *this, "", alloc.x + 2, alloc.y + 2, alloc.width - 3, alloc.height - 3); # else Gdk::Rectangle area(&e->area); style->paint_box( window, Gtk::STATE_NORMAL, Gtk::SHADOW_OUT, area, *this, "base", alloc.x, alloc.y, alloc.width, alloc.height); style->paint_box(window, Gtk::STATE_NORMAL, Gtk::SHADOW_OUT, area, *this, "base", alloc.x + 1, alloc.y + 1, alloc.width - 2, alloc.height - 2); # endif break; } bool rc = Gtk::Bin::on_expose_event(e); return rc; } #endif sigc::signal1 & Frame::signal_flash() { return flash_signal_src; } workrave-1.10.50/frontend/gtkmm/src/PreferencesDialog.cc0000644000175100001710000007506114221624107022050 0ustar00gdm00000000000000// Copyright (C) 2002 - 2020 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #ifdef HAVE_UNISTD_H # include #endif #include #include #include #include #include #include #include #include #include #include "StringUtil.hh" #include "Locale.hh" #include "GtkUtil.hh" #include "Hig.hh" #include "PreferencesDialog.hh" #include "TimeEntry.hh" #include "TimerBoxPreferencePage.hh" #include "TimerPreferencesPanel.hh" #include "Util.hh" #include "GUI.hh" #include "GUIConfig.hh" #include "DataConnector.hh" #include "Menus.hh" #include "CoreFactory.hh" #include "CoreConfig.hh" #include "IConfigurator.hh" #ifdef HAVE_DISTRIBUTION # include "NetworkPreferencePage.hh" #endif #ifndef WR_CHECK_VERSION # define WR_CHECK_VERSION(comp, major, minor, micro) \ (comp##_MAJOR_VERSION > (major) || (comp##_MAJOR_VERSION == (major) && comp##_MINOR_VERSION > (minor)) \ || (comp##_MAJOR_VERSION == (major) && comp##_MINOR_VERSION == (minor) && comp##_MICRO_VERSION >= (micro))) #endif #define RUNKEY "Software\\Microsoft\\Windows\\CurrentVersion\\Run" using namespace std; PreferencesDialog::PreferencesDialog() : HigDialog(_("Preferences"), false, false) , sound_button(NULL) , block_button(NULL) , sound_theme_button(NULL) , icon_theme_button(NULL) , connector(NULL) , sound_volume_scale(NULL) , sound_play_button(NULL) , fsbutton(NULL) , filefilter(NULL) #ifdef PLATFORM_OS_WINDOWS , sensitivity_adjustment(3, 0, 100) , sensitivity_box(NULL) #endif { TRACE_ENTER("PreferencesDialog::PreferencesDialog"); connector = new DataConnector(); inhibit_events = 0; // Pages Gtk::Widget *timer_page = Gtk::manage(create_timer_page()); Gtk::Notebook *gui_page = Gtk::manage(new Gtk::Notebook()); #if !defined(PLATFORM_OS_MACOS) Gtk::Widget *gui_general_page = Gtk::manage(create_gui_page()); gui_page->append_page(*gui_general_page, _("General")); #endif #if 1 Gtk::Widget *gui_sounds_page = Gtk::manage(create_sounds_page()); gui_page->append_page(*gui_sounds_page, _("Sounds")); #endif Gtk::Widget *gui_mainwindow_page = Gtk::manage(create_mainwindow_page()); gui_page->append_page(*gui_mainwindow_page, _("Status Window")); #if !defined(PLATFORM_OS_MACOS) Gtk::Widget *gui_applet_page = Gtk::manage(create_applet_page()); gui_page->append_page(*gui_applet_page, _("Applet")); #endif #ifdef HAVE_DISTRIBUTION Gtk::Widget *network_page = Gtk::manage(create_network_page()); #endif // Notebook add_page(_("Timers"), "time.png", *timer_page); add_page(_("User interface"), "display.png", *gui_page); #ifdef HAVE_DISTRIBUTION add_page(_("Network"), "network.png", *network_page); #endif // Gtk::Widget *plugins_page = Gtk::manage( new PluginsPreferencePage() ); // add_page( _("Plugins"), "workrave-icon-huge.png", *plugins_page ); // Dialog get_vbox()->pack_start(notebook, true, true, 0); add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); show_all(); TRACE_EXIT(); } //! Destructor. PreferencesDialog::~PreferencesDialog() { TRACE_ENTER("PreferencesDialog::~PreferencesDialog"); #if defined(HAVE_LANGUAGE_SELECTION) const Gtk::TreeModel::iterator &iter = languages_combo.get_active(); const Gtk::TreeModel::Row row = *iter; const Glib::ustring code = row[languages_columns.code]; GUIConfig::set_locale(code); #endif ICore *core = CoreFactory::get_core(); core->remove_operation_mode_override("preferences"); delete connector; #ifndef HAVE_GTK3 delete filefilter; #endif TRACE_EXIT(); } Gtk::Widget * PreferencesDialog::create_gui_page() { // Block types block_button = Gtk::manage(new Gtk::ComboBoxText()); #if GTKMM_CHECK_VERSION(2, 24, 0) block_button->append(_("No blocking")); block_button->append(_("Block input")); block_button->append(_("Block input and screen")); #else block_button->append_text(_("No blocking")); block_button->append_text(_("Block input")); block_button->append_text(_("Block input and screen")); #endif int block_idx; switch (GUIConfig::get_block_mode()) { case GUIConfig::BLOCK_MODE_NONE: block_idx = 0; break; case GUIConfig::BLOCK_MODE_INPUT: block_idx = 1; break; default: block_idx = 2; } block_button->set_active(block_idx); block_button->signal_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_block_changed)); // Options HigCategoryPanel *panel = Gtk::manage(new HigCategoryPanel(_("Options"))); panel->add_label(_("Block mode:"), *block_button); #if defined(HAVE_LANGUAGE_SELECTION) string current_locale = GUIConfig::get_locale(); languages_model = Gtk::ListStore::create(languages_columns); languages_combo.set_model(languages_model); std::vector all_linguas; StringUtil::split(string(ALL_LINGUAS), ' ', all_linguas); all_linguas.push_back("en"); Locale::LanguageMap languages_current_locale; Locale::LanguageMap languages_native_locale; Locale::get_all_languages_in_current_locale(languages_current_locale); Locale::get_all_languages_in_native_locale(languages_native_locale); Gtk::TreeModel::iterator iter = languages_model->append(); Gtk::TreeModel::Row row = *iter; row[languages_columns.current] = _("System default"); row[languages_columns.native] = ""; row[languages_columns.code] = ""; row[languages_columns.enabled] = true; Gtk::TreeModel::iterator selected = iter; for (vector::iterator i = all_linguas.begin(); i != all_linguas.end(); i++) { string code = *i; iter = languages_model->append(); row = *iter; row[languages_columns.code] = code; row[languages_columns.enabled] = true; if (current_locale == code) { selected = iter; } string txt = languages_current_locale[code].language_name; if (txt.empty()) { txt = "Unrecognized language: (" + code + ")"; } else if (languages_current_locale[code].country_name != "") { txt += " (" + languages_current_locale[code].country_name + ")"; } row[languages_columns.current] = txt; if (languages_current_locale[code].language_name != languages_native_locale[code].language_name) { txt = languages_native_locale[code].language_name; if (languages_native_locale[code].country_name != "") { txt += " (" + languages_native_locale[code].country_name + ")"; } Glib::RefPtr pl = create_pango_layout(txt); if (pl->get_unknown_glyphs_count() > 0) { txt = _("(font not available)"); row[languages_columns.enabled] = false; } row[languages_columns.native] = txt; } } languages_model->set_sort_column(languages_columns.current, Gtk::SORT_ASCENDING); languages_model->set_sort_func(languages_columns.current, sigc::mem_fun(*this, &PreferencesDialog::on_cell_data_compare)); languages_combo.pack_start(current_cellrenderer, true); languages_combo.pack_start(native_cellrenderer, false); languages_combo.set_cell_data_func(native_cellrenderer, sigc::mem_fun(*this, &PreferencesDialog::on_native_cell_data)); languages_combo.set_cell_data_func(current_cellrenderer, sigc::mem_fun(*this, &PreferencesDialog::on_current_cell_data)); languages_combo.set_active(selected); panel->add_label(_("Language:"), languages_combo); #endif bool show_autostart = false; #if defined(PLATFORM_OS_WINDOWS) show_autostart = true; #elif defined(PLATFORM_OS_UNIX) const char *desktop = g_getenv("XDG_CURRENT_DESKTOP"); show_autostart = (g_strcmp0(desktop, "Unity") == 0); #endif if (show_autostart) { Gtk::Label *autostart_lab = Gtk::manage(GtkUtil::create_label(_("Start Workrave on logon"), false)); autostart_cb = Gtk::manage(new Gtk::CheckButton()); autostart_cb->add(*autostart_lab); autostart_cb->signal_toggled().connect(sigc::mem_fun(*this, &PreferencesDialog::on_autostart_toggled)); panel->add_widget(*autostart_cb); connector->connect(GUIConfig::CFG_KEY_AUTOSTART, dc::wrap(autostart_cb)); #if defined(PLATFORM_OS_WINDOWS) char value[MAX_PATH]; bool rc = Util::registry_get_value(RUNKEY, "Workrave", value); autostart_cb->set_active(rc); #endif } Gtk::Label *trayicon_lab = Gtk::manage(GtkUtil::create_label(_("Show system tray icon"), false)); trayicon_cb = Gtk::manage(new Gtk::CheckButton()); trayicon_cb->add(*trayicon_lab); connector->connect(GUIConfig::CFG_KEY_TRAYICON_ENABLED, dc::wrap(trayicon_cb)); panel->add_widget(*trayicon_cb, false, false); update_icon_theme_combo(); if (icon_theme_button != NULL) { panel->add_label(_("Icon Theme:"), *icon_theme_button); } panel->set_border_width(12); return panel; } Gtk::Widget * PreferencesDialog::create_sounds_page() { Gtk::VBox *panel = Gtk::manage(new Gtk::VBox(false, 6)); // Options HigCategoryPanel *hig = Gtk::manage(new HigCategoryPanel(_("Sound Options"))); panel->pack_start(*hig, false, false, 0); // Sound types sound_button = Gtk::manage(new Gtk::ComboBoxText()); #if GTKMM_CHECK_VERSION(2, 24, 0) sound_button->append(_("No sounds")); sound_button->append(_("Play sounds using sound card")); sound_button->append(_("Play sounds using built-in speaker")); #else sound_button->append_text(_("No sounds")); sound_button->append_text(_("Play sounds using sound card")); sound_button->append_text(_("Play sounds using built-in speaker")); #endif int idx; if (!SoundPlayer::is_enabled()) idx = 0; else { if (SoundPlayer::DEVICE_SPEAKER == SoundPlayer::get_device()) idx = 2; else idx = 1; } sound_button->set_active(idx); sound_button->signal_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_changed)); IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); if (snd->capability(SOUND_CAP_VOLUME)) { // Volume sound_volume_scale = Gtk::manage(new Gtk::HScale(0.0, 100.0, 0.0)); sound_volume_scale->set_increments(1.0, 5.0); connector->connect(SoundPlayer::CFG_KEY_SOUND_VOLUME, dc::wrap(sound_volume_scale->get_adjustment())); hig->add_label(_("Volume:"), *sound_volume_scale, true, true); } hig->add_label(_("Sound:"), *sound_button); if (snd->capability(SOUND_CAP_MUTE)) { // Volume mute_cb = Gtk::manage(new Gtk::CheckButton(_("Mute sounds during rest break and daily limit"))); connector->connect(SoundPlayer::CFG_KEY_SOUND_MUTE, dc::wrap(mute_cb)); hig->add_widget(*mute_cb, true, true); } if (snd->capability(SOUND_CAP_EDIT)) { // Sound themes hig = Gtk::manage(new HigCategoryPanel(_("Sound Events"), true)); panel->pack_start(*hig, true, true, 0); sound_theme_button = Gtk::manage(new Gtk::ComboBoxText()); update_sound_theme_selection(); sound_theme_button->signal_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_theme_changed)); hig->add_label(_("Sound Theme:"), *sound_theme_button); sound_store = Gtk::ListStore::create(sound_model); sound_treeview.set_model(sound_store); for (unsigned int i = 0; i < SOUND_MAX; i++) { Gtk::TreeModel::iterator iter = sound_store->append(); Gtk::TreeModel::Row row = *iter; bool sound_enabled = false; snd->get_sound_enabled((SoundEvent)i, sound_enabled); row[sound_model.enabled] = sound_enabled; row[sound_model.selectable] = true; row[sound_model.description] = _(SoundPlayer::sound_registry[i].friendly_name); row[sound_model.label] = SoundPlayer::sound_registry[i].id; row[sound_model.event] = i; } sound_treeview.set_rules_hint(); sound_treeview.set_search_column(sound_model.description.index()); int cols_count = sound_treeview.append_column_editable(_("Play"), sound_model.enabled); Gtk::TreeViewColumn *column = sound_treeview.get_column(cols_count - 1); Gtk::CellRendererToggle *cell = dynamic_cast(sound_treeview.get_column_cell_renderer(cols_count - 1)); cols_count = sound_treeview.append_column(_("Event"), sound_model.description); column = sound_treeview.get_column(cols_count - 1); column->set_fixed_width(40); Gtk::ScrolledWindow *sound_scroll = Gtk::manage(new Gtk::ScrolledWindow()); sound_scroll->add(sound_treeview); sound_scroll->set_size_request(-1, 200); sound_treeview.set_size_request(-1, 200); hig->add_widget(*sound_scroll, true, true); Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 6)); sound_play_button = Gtk::manage(new Gtk::Button(_("Play"))); hbox->pack_start(*sound_play_button, false, false, 0); fsbutton = Gtk::manage(new Gtk::FileChooserButton(_("Choose a sound"), Gtk::FILE_CHOOSER_ACTION_OPEN)); hbox->pack_start(*fsbutton, true, true, 0); #ifdef HAVE_GTK3 filefilter = Gtk::FileFilter::create(); #else filefilter = new Gtk::FileFilter(); #endif filefilter->set_name(_("Wavefiles")); #ifdef PLATFORM_OS_WINDOWS filefilter->add_pattern("*.wav"); #else filefilter->add_mime_type("audio/x-wav"); #endif #ifdef HAVE_GTK3 fsbutton->add_filter(filefilter); #else fsbutton->add_filter(*filefilter); #endif hig->add_widget(*hbox); Gtk::HBox *selector_hbox = Gtk::manage(new Gtk::HBox(false, 0)); Gtk::Button *selector_playbutton = Gtk::manage(new Gtk::Button(_("Play"))); selector_hbox->pack_end(*selector_playbutton, false, false, 0); selector_playbutton->show(); fsbutton->set_extra_widget(*selector_hbox); cell->signal_toggled().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_enabled)); sound_play_button->signal_clicked().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_play)); selector_playbutton->signal_clicked().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_filechooser_play)); #if WR_CHECK_VERSION(GTKMM, 2, 22, 0) fsbutton->signal_file_set().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_filechooser_select)); #else fsbutton->signal_selection_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_filechooser_select)); #endif Glib::RefPtr selection = sound_treeview.get_selection(); selection->signal_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_sound_events_changed)); Gtk::TreeModel::iterator iter = sound_store->children().begin(); if (iter) { selection->select(iter); } update_senstives(); } panel->set_border_width(12); return panel; } Gtk::Widget * PreferencesDialog::create_timer_page() { // Timers page Gtk::Notebook *tnotebook = Gtk::manage(new Gtk::Notebook()); tnotebook->set_tab_pos(Gtk::POS_TOP); Glib::RefPtr hsize_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_HORIZONTAL); Glib::RefPtr vsize_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_VERTICAL); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { // Label Gtk::Widget *box = Gtk::manage(GtkUtil::create_label_for_break((BreakId)i)); TimerPreferencesPanel *tp = Gtk::manage(new TimerPreferencesPanel(BreakId(i), hsize_group, vsize_group)); box->show_all(); #ifdef HAVE_GTK3 tnotebook->append_page(*tp, *box); #else tnotebook->pages().push_back(Gtk::Notebook_Helpers::TabElem(*tp, *box)); #endif } Gtk::Widget *box = Gtk::manage(GtkUtil::create_label("Monitoring", false)); Gtk::Widget *monitoring_page = create_monitoring_page(); #ifdef HAVE_GTK3 tnotebook->append_page(*monitoring_page, *box); #else tnotebook->pages().push_back(Gtk::Notebook_Helpers::TabElem(*monitoring_page, *box)); #endif return tnotebook; } Gtk::Widget * PreferencesDialog::create_monitoring_page() { Gtk::VBox *panel = Gtk::manage(new Gtk::VBox(false, 6)); panel->set_border_width(12); #if defined(PLATFORM_OS_WINDOWS) Gtk::Label *monitor_type_lab = Gtk::manage(GtkUtil::create_label(_("Use alternate monitor"), false)); monitor_type_cb = Gtk::manage(new Gtk::CheckButton()); monitor_type_cb->add(*monitor_type_lab); monitor_type_cb->signal_toggled().connect(sigc::mem_fun(*this, &PreferencesDialog::on_monitor_type_toggled)); panel->pack_start(*monitor_type_cb, false, false, 0); Gtk::Label *monitor_type_help1 = Gtk::manage(GtkUtil::create_label(_("Enable this option if Workrave fails to detect when you are using your computer"), false)); panel->pack_start(*monitor_type_help1, false, false, 0); Gtk::Label *monitor_type_help2 = Gtk::manage(GtkUtil::create_label(_("Workrave needs to be restarted manually after changing this setting"), false)); panel->pack_start(*monitor_type_help2, false, false, 0); sensitivity_box = Gtk::manage(new Gtk::HBox()); Gtk::Widget *sensitivity_lab = Gtk::manage(GtkUtil::create_label_with_tooltip( _("Mouse sensitivity:"), _("Number of pixels the mouse should move before it is considered activity."))); Gtk::SpinButton *sensitivity_spin = Gtk::manage(new Gtk::SpinButton(sensitivity_adjustment)); sensitivity_box->pack_start(*sensitivity_lab, false, false, 0); sensitivity_box->pack_start(*sensitivity_spin, false, false, 0); panel->pack_start(*sensitivity_box, false, false, 0); connector->connect(CoreConfig::CFG_KEY_MONITOR_SENSITIVITY, dc::wrap(&sensitivity_adjustment)); string monitor_type; CoreFactory::get_configurator()->get_value_with_default("advanced/monitor", monitor_type, "default"); monitor_type_cb->set_active(monitor_type != "default"); sensitivity_box->set_sensitive(monitor_type != "default"); #endif debug_btn = Gtk::manage(new Gtk::Button(_("Debug monitoring"))); debug_btn->signal_clicked().connect(sigc::mem_fun(*this, &PreferencesDialog::on_debug_pressed)); panel->pack_start(*debug_btn, false, false, 0); return panel; } Gtk::Widget * PreferencesDialog::create_mainwindow_page() { // Timers page return new TimerBoxPreferencePage("main_window"); } Gtk::Widget * PreferencesDialog::create_applet_page() { // Timers page return new TimerBoxPreferencePage("applet"); } #ifdef HAVE_DISTRIBUTION Gtk::Widget * PreferencesDialog::create_network_page() { return new NetworkPreferencePage(); } #endif void PreferencesDialog::add_page(const char *label, const char *image, Gtk::Widget &widget) { Glib::RefPtr pixbuf = GtkUtil::create_pixbuf(image); notebook.add_page(label, pixbuf, widget); } void PreferencesDialog::on_sound_changed() { int idx = sound_button->get_active_row_number(); SoundPlayer::set_enabled(idx > 0); if (idx > 0) { SoundPlayer::Device dev = idx == 1 ? SoundPlayer::DEVICE_SOUNDCARD : SoundPlayer::DEVICE_SPEAKER; SoundPlayer::set_device(dev); } update_senstives(); } void PreferencesDialog::update_senstives() { int idx = sound_button->get_active_row_number(); if (idx > 0) { SoundPlayer::Device dev = idx == 1 ? SoundPlayer::DEVICE_SOUNDCARD : SoundPlayer::DEVICE_SPEAKER; sound_treeview.set_sensitive(dev == SoundPlayer::DEVICE_SOUNDCARD); if (sound_theme_button != NULL) { sound_theme_button->set_sensitive(dev == SoundPlayer::DEVICE_SOUNDCARD); } if (sound_volume_scale != NULL) { sound_volume_scale->set_sensitive(dev == SoundPlayer::DEVICE_SOUNDCARD); } if (sound_play_button != NULL) { sound_play_button->set_sensitive(dev == SoundPlayer::DEVICE_SOUNDCARD); } if (fsbutton != NULL) { fsbutton->set_sensitive(dev == SoundPlayer::DEVICE_SOUNDCARD); } } } void PreferencesDialog::on_block_changed() { int idx = block_button->get_active_row_number(); GUIConfig::BlockMode m; switch (idx) { case 0: m = GUIConfig::BLOCK_MODE_NONE; break; case 1: m = GUIConfig::BLOCK_MODE_INPUT; break; default: m = GUIConfig::BLOCK_MODE_ALL; } GUIConfig::set_block_mode(m); } int PreferencesDialog::run() { show_all(); return 0; } bool PreferencesDialog::on_focus_in_event(GdkEventFocus *event) { TRACE_ENTER("PreferencesDialog::focus_in"); GUIConfig::BlockMode block_mode = GUIConfig::get_block_mode(); if (block_mode != GUIConfig::BLOCK_MODE_NONE) { ICore *core = CoreFactory::get_core(); OperationMode mode = core->get_operation_mode(); if (mode == OPERATION_MODE_NORMAL) { core->set_operation_mode_override(OPERATION_MODE_QUIET, "preferences"); } } TRACE_EXIT(); return HigDialog::on_focus_in_event(event); } bool PreferencesDialog::on_focus_out_event(GdkEventFocus *event) { TRACE_ENTER("PreferencesDialog::focus_out"); ICore *core = CoreFactory::get_core(); core->remove_operation_mode_override("preferences"); TRACE_EXIT(); return HigDialog::on_focus_out_event(event); } #if defined(HAVE_LANGUAGE_SELECTION) void PreferencesDialog::on_current_cell_data(const Gtk::TreeModel::const_iterator &iter) { if (iter) { Gtk::TreeModel::Row row = *iter; Glib::ustring name = row[languages_columns.current]; bool enabled = row[languages_columns.enabled]; current_cellrenderer.set_property("text", name); current_cellrenderer.set_property("sensitive", enabled); } } void PreferencesDialog::on_native_cell_data(const Gtk::TreeModel::const_iterator &iter) { if (iter) { Gtk::TreeModel::Row row = *iter; Glib::ustring name = row[languages_columns.native]; bool enabled = row[languages_columns.enabled]; native_cellrenderer.set_property("text", name); native_cellrenderer.set_property("sensitive", enabled); } } int PreferencesDialog::on_cell_data_compare(const Gtk::TreeModel::iterator &iter1, const Gtk::TreeModel::iterator &iter2) { Gtk::TreeModel::Row row1 = *iter1; Gtk::TreeModel::Row row2 = *iter2; Glib::ustring name1 = row1[languages_columns.current]; Glib::ustring name2 = row2[languages_columns.current]; Glib::ustring code1 = row1[languages_columns.code]; Glib::ustring code2 = row2[languages_columns.code]; if (code1 == "") { return -1; } else if (code2 == "") { return 1; } else { return g_utf8_collate(name1.c_str(), name2.c_str()); } } #endif void PreferencesDialog::on_autostart_toggled() { #if defined(PLATFORM_OS_WINDOWS) bool on = autostart_cb->get_active(); gchar *value = NULL; if (on) { string appdir = Util::get_application_directory(); value = g_strdup_printf("%s" G_DIR_SEPARATOR_S "lib" G_DIR_SEPARATOR_S "workrave.exe", appdir.c_str()); } Util::registry_set_value(RUNKEY, "Workrave", value); #endif } #if defined(PLATFORM_OS_WINDOWS) void PreferencesDialog::on_monitor_type_toggled() { bool on = monitor_type_cb->get_active(); CoreFactory::get_configurator()->set_value("advanced/monitor", on ? "lowlevel" : "default"); sensitivity_box->set_sensitive(on); } #endif void PreferencesDialog::on_sound_enabled(const Glib::ustring &path_string) { Gtk::TreePath path(path_string); const Gtk::TreeModel::iterator iter = sound_store->get_iter(path); if (iter) { Gtk::TreeRow row = *iter; IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); snd->set_sound_enabled((SoundEvent)(int)row[sound_model.event], row[sound_model.enabled]); } } void PreferencesDialog::on_sound_play() { Glib::RefPtr selection = sound_treeview.get_selection(); Gtk::TreeModel::iterator iter = selection->get_selected(); if (iter) { IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); Gtk::TreeModel::Row row = *iter; string filename; bool valid = snd->get_sound_wav_file((SoundEvent)(int)row[sound_model.event], filename); if (valid && filename != "") { snd->play_sound(filename); } } } void PreferencesDialog::on_sound_filechooser_play() { string filename = fsbutton->get_filename(); IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); snd->play_sound(filename); } void PreferencesDialog::on_sound_filechooser_select() { TRACE_ENTER("PreferencesDialog::on_sound_filechooser_select"); string filename = fsbutton->get_filename(); TRACE_MSG(filename << " " << fsbutton_filename << " " << inhibit_events); if (inhibit_events == 0 && filename != "" && fsbutton_filename != filename) { TRACE_MSG("ok"); Glib::RefPtr selection = sound_treeview.get_selection(); Gtk::TreeModel::iterator iter = selection->get_selected(); if (iter) { Gtk::TreeModel::Row row = *iter; TRACE_MSG(row[sound_model.label]); IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); snd->set_sound_wav_file((SoundEvent)(int)row[sound_model.event], filename); TRACE_MSG(filename); update_sound_theme_selection(); } fsbutton_filename = filename; TRACE_EXIT(); } } void PreferencesDialog::on_sound_events_changed() { TRACE_ENTER("PreferencesDialog::on_sound_events_changed"); Glib::RefPtr selection = sound_treeview.get_selection(); Gtk::TreeModel::iterator iter = selection->get_selected(); if (iter) { Gtk::TreeModel::Row row = *iter; IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); string filename; bool valid = snd->get_sound_wav_file((SoundEvent)(int)row[sound_model.event], filename); TRACE_MSG(filename); if (valid && filename != "") { inhibit_events++; fsbutton_filename = filename; fsbutton->set_filename(filename); inhibit_events--; } } TRACE_EXIT(); } void PreferencesDialog::on_sound_theme_changed() { TRACE_ENTER("PreferencesDialog::on_sound_theme_changed"); int idx = sound_theme_button->get_active_row_number(); if (idx >= 0 && idx < (int)sound_themes.size()) { SoundPlayer::Theme &theme = sound_themes[idx]; IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); snd->activate_theme(theme); Glib::RefPtr selection = sound_treeview.get_selection(); Gtk::TreeModel::iterator iter = selection->get_selected(); if (iter) { Gtk::TreeModel::Row row = *iter; string event = (Glib::ustring)row[sound_model.label]; string filename; bool valid = snd->get_sound_wav_file((SoundEvent)(int)row[sound_model.event], filename); if (valid && filename != "") { TRACE_MSG(filename << " " << row[sound_model.label]); inhibit_events++; fsbutton_filename = filename; fsbutton->set_filename(filename); inhibit_events--; } } } TRACE_EXIT(); } void PreferencesDialog::update_sound_theme_selection() { TRACE_ENTER("PreferencesDialog::update_sound_theme_selection"); sound_themes.erase(sound_themes.begin(), sound_themes.end()); IGUI *gui = GUI::get_instance(); SoundPlayer *snd = gui->get_sound_player(); snd->get_sound_themes(sound_themes); #if GTKMM_CHECK_VERSION(2, 24, 0) sound_theme_button->remove_all(); #else sound_theme_button->clear_items(); #endif int idx = 0; for (vector::iterator it = sound_themes.begin(); it != sound_themes.end(); it++) { #if GTKMM_CHECK_VERSION(2, 24, 0) sound_theme_button->append(it->description); #else sound_theme_button->append_text(it->description); #endif if (it->active) { sound_theme_button->set_active(idx); } idx++; } TRACE_EXIT(); } void PreferencesDialog::on_icon_theme_changed() { TRACE_ENTER("PreferencesDialog::on_icon_theme_changed"); int idx = icon_theme_button->get_active_row_number(); if (idx == 0) { GUIConfig::set_icon_theme(""); } else { GUIConfig::set_icon_theme(icon_theme_button->get_active_text()); } TRACE_EXIT(); } void PreferencesDialog::update_icon_theme_combo() { TRACE_ENTER("PreferencesDialog::update_icon_theme_combo"); std::list themes; for (const auto &dirname: Util::get_search_path(Util::SEARCH_PATH_IMAGES)) { if (!g_str_has_suffix(dirname.c_str(), "images")) { continue; } GDir *dir = g_dir_open(dirname.c_str(), 0, NULL); if (dir != NULL) { const char *file; while ((file = g_dir_read_name(dir)) != NULL) { gchar *test_path = g_build_filename(dirname.c_str(), file, NULL); if (test_path != NULL && g_file_test(test_path, G_FILE_TEST_IS_DIR)) { themes.push_back(file); } g_free(test_path); } g_dir_close(dir); } } if (themes.size() > 0) { icon_theme_button = Gtk::manage(new Gtk::ComboBoxText()); #if GTKMM_CHECK_VERSION(2, 24, 0) icon_theme_button->append(_("Default")); #else icon_theme_button->append_text(_("Default")); #endif icon_theme_button->set_active(0); std::string current_icontheme = GUIConfig::get_icon_theme(); int idx = 1; for (auto &theme: themes) { #if GTKMM_CHECK_VERSION(2, 24, 0) icon_theme_button->append(theme); #else icon_theme_button->append_text(theme); #endif if (current_icontheme == theme) { icon_theme_button->set_active(idx); } idx++; } icon_theme_button->signal_changed().connect(sigc::mem_fun(*this, &PreferencesDialog::on_icon_theme_changed)); } TRACE_EXIT(); } void PreferencesDialog::on_debug_pressed() { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->on_menu_debug(); } workrave-1.10.50/frontend/gtkmm/src/DataConnector.cc0000644000175100001710000003154714221624107021214 0ustar00gdm00000000000000// DataConnector.cc --- Connect Gtkmm widget with Configuration items // // Copyright (C) 2007, 2008, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include #include "TimeEntry.hh" #include "DataConnector.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" using namespace workrave; using namespace std; // Define connector for standard gtkmm widgets. DEFINE_DATA_TYPE_PTR(Gtk::Entry, DataConnectionGtkEntry); DEFINE_DATA_TYPE_PTR(Gtk::CheckButton, DataConnectionGtkCheckButton); DEFINE_DATA_TYPE_PTR(Gtk::SpinButton, DataConnectionGtkSpinButton); DEFINE_DATA_TYPE_PTR(Gtk::ComboBox, DataConnectionGtkComboBox); #ifdef HAVE_GTK3 DEFINE_DATA_TYPE(Glib::RefPtr, DataConnectionGtkAdjustment); #else DEFINE_DATA_TYPE_PTR(Gtk::Adjustment, DataConnectionGtkAdjustment); #endif DEFINE_DATA_TYPE_PTR(TimeEntry, DataConnectionTimeEntry); namespace dc { DataConnectionGtkEntryTwin *wrap(Gtk::Entry *w1, Gtk::Entry *w2) { return new DataConnectionGtkEntryTwin(w1, w2); } } // namespace dc //! Construct a new data connector. DataConnector::DataConnector() { config = CoreFactory::get_configurator(); } //! Destruct data connector. DataConnector::~DataConnector() { for (WidgetIter i = connections.begin(); i != connections.end(); i++) { delete i->connection; } } //! Connect a widget to a configuration item. void DataConnector::connect(const string &setting, DataConnection *connection, dc::Flags flags) { if (connection != NULL) { MonitoredWidget mw; mw.connection = connection; connection->set(flags, setting); connection->init(); connections.push_back(mw); } } //! Connect a widget to a configuration item. void DataConnector::connect(const string &setting, DataConnection *connection, sigc::slot slot, dc::Flags flags) { if (connection != NULL) { MonitoredWidget mw; mw.connection = connection; connection->set(flags, setting); connection->intercept.connect(slot); connection->init(); connections.push_back(mw); } } //! Construct a new data connection DataConnection::DataConnection() { config = CoreFactory::get_configurator(); } //! Destruct data connection. DataConnection::~DataConnection() { config->remove_listener(key, this); } //! Set connection flags and configuration key. void DataConnection::set(dc::Flags flags, const string &key) { this->flags = flags; this->key = key; if ((flags & dc::NO_CONFIG) == 0) { config->add_listener(key, this); } } /*********************************************************************** * * * Text Entry * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkEntry::init() { widget->signal_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkEntry::widget_changed_notify)); config_changed_notify(key); } //! Widget changed value. void DataConnectionGtkEntry::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { string value = widget->get_text(); config->set_value(key, value); } } //! Configuration item changed value. void DataConnectionGtkEntry::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { string value; if (config->get_value(key, value)) { widget->set_text(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkSpinButton::init() { widget->signal_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkSpinButton::widget_changed_notify)); widget->signal_value_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkSpinButton::widget_changed_notify)); config_changed_notify(key); } //! Widget changed value. void DataConnectionGtkSpinButton::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { int value = widget->get_value_as_int(); config->set_value(key, value); } } //! Configuration item changed value. void DataConnectionGtkSpinButton::config_changed_notify(const string &key) { int value; bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { if (config->get_value(key, value)) { widget->set_value(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkCheckButton::init() { widget->signal_toggled().connect(sigc::mem_fun(*this, &DataConnectionGtkCheckButton::widget_changed_notify)); config_changed_notify(key); } //! Configuration item changed value. void DataConnectionGtkCheckButton::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { bool value = widget->get_active(); config->set_value(key, value); } } //! Configuration item changed value. void DataConnectionGtkCheckButton::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { bool value; if (config->get_value(key, value)) { widget->set_active(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkComboBox::init() { widget->signal_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkComboBox::widget_changed_notify)); config_changed_notify(key); } //! Configuration item changed value. void DataConnectionGtkComboBox::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { int value = widget->get_active_row_number(); config->set_value(key, value); } } //! Configuration item changed value. void DataConnectionGtkComboBox::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { int value; if (config->get_value(key, value)) { widget->set_active(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkAdjustment::init() { widget->signal_value_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkAdjustment::widget_changed_notify)); config_changed_notify(key); } //! Widget changed value. void DataConnectionGtkAdjustment::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { int value = (int)widget->get_value(); config->set_value(key, value); } } //! Configuration item changed value. void DataConnectionGtkAdjustment::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { int value; if (config->get_value(key, value)) { widget->set_value(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionTimeEntry::init() { widget->signal_value_changed().connect(sigc::mem_fun(*this, &DataConnectionTimeEntry::widget_changed_notify)); config_changed_notify(key); } //! Widget changed value. void DataConnectionTimeEntry::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { time_t value = widget->get_value(); config->set_value(key, (int)value); } } //! Configuration item changed value. void DataConnectionTimeEntry::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { int value; if (config->get_value(key, value)) { widget->set_value(value); } } } /*********************************************************************** * * * Spin Button * * * ***********************************************************************/ //! Initialize connection. void DataConnectionGtkEntryTwin::init() { widget1->signal_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkEntryTwin::widget_changed_notify)); widget2->signal_changed().connect(sigc::mem_fun(*this, &DataConnectionGtkEntryTwin::widget_changed_notify)); config_changed_notify(key); } //! Widget changed value. void DataConnectionGtkEntryTwin::widget_changed_notify() { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, true); } if (!skip) { string value1 = widget1->get_text(); string value2 = widget2->get_text(); bool verified = true; #ifdef HAVE_GTK3 if (value1 == value2) { widget1->unset_background_color(); widget2->unset_background_color(); } else { widget1->override_background_color(Gdk::RGBA("orange")); widget2->override_background_color(Gdk::RGBA("orange")); verified = false; } #else if (value1 == value2) { widget1->unset_base(Gtk::STATE_NORMAL); widget2->unset_base(Gtk::STATE_NORMAL); } else { widget1->modify_base(Gtk::STATE_NORMAL, Gdk::Color("orange")); widget2->modify_base(Gtk::STATE_NORMAL, Gdk::Color("orange")); verified = false; } #endif if (verified) { config->set_value(key, value1); } } } //! Configuration item changed value. void DataConnectionGtkEntryTwin::config_changed_notify(const string &key) { bool skip = false; if (!intercept.empty()) { skip = intercept.emit(key, false); } if (!skip) { string value; if (config->get_value(key, value)) { widget1->set_text(value); widget2->set_text(value); } } } workrave-1.10.50/frontend/gtkmm/src/TimeBar.hh0000644000175100001710000000710114221624107020012 0ustar00gdm00000000000000// TimeBar.hh --- Time Bar // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2009, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMEBAR_HH #define TIMEBAR_HH #include #include #include #include "ITimeBar.hh" class TimeBar : public Gtk::DrawingArea , public ITimeBar { public: TimeBar(); virtual ~TimeBar(); void set_progress(int value, int max_value); void set_secondary_progress(int value, int max_value); void set_text(std::string text); void update(); void set_bar_color(ColorId color); void set_secondary_bar_color(ColorId color); void set_text_alignment(int align); void set_border_size(int size); void set_rotation(int r); void get_minimum_size(int &width, int &height) const; void get_preferred_size(int &width, int &height) const; private: #ifdef HAVE_GTK3 void draw_bar(const Cairo::RefPtr &cr, int x, int y, int width, int height, int winw, int winh); void set_color(const Cairo::RefPtr &cr, const Gdk::Color &color); void set_color(const Cairo::RefPtr &cr, const Gdk::RGBA &color); #else void draw_bar(Glib::RefPtr &window, const Glib::RefPtr &gc, bool filled, int x, int y, int width, int height, int winw, int winh); #endif void set_text_color(Gdk::Color color); protected: #ifdef HAVE_GTK3 virtual Gtk::SizeRequestMode get_request_mode_vfunc() const; virtual void get_preferred_width_vfunc(int &minimum_width, int &natural_width) const; virtual void get_preferred_height_vfunc(int &minimum_height, int &natural_height) const; virtual void get_preferred_width_for_height_vfunc(int height, int &minimum_width, int &natural_width) const; virtual void get_preferred_height_for_width_vfunc(int width, int &minimum_height, int &natural_height) const; virtual void on_size_allocate(Gtk::Allocation &allocation); virtual bool on_draw(const Cairo::RefPtr &cr); #else virtual void on_realize(); virtual bool on_expose_event(GdkEventExpose *event); virtual void on_size_request(GtkRequisition *requisition); virtual void on_size_allocate(Gtk::Allocation &allocation); #endif private: static Gdk::Color bar_colors[COLOR_ID_SIZEOF]; #ifndef HAVE_GTK3 //! Graphic context. Glib::RefPtr window_gc; #endif //! Color of the time-bar. ColorId bar_color; //! Color of the time-bar. ColorId secondary_bar_color; //! Color of the text. Gdk::Color bar_text_color; //! The current value. int bar_value; //! The maximum value. int bar_max_value; //! The current value. int secondary_bar_value; //! The maximum value. int secondary_bar_max_value; //! Text to show; std::string bar_text; //! Text alignment int bar_text_align; //! Bar rotation (clockwise degrees) int rotation; }; #endif // TIMEBAR_HH workrave-1.10.50/frontend/gtkmm/src/MainGtkMenu.hh0000644000175100001710000000435114221624107020652 0ustar00gdm00000000000000// MainGtkMenu.hh --- Menu using Gtk+ // // Copyright (C) 2001 - 2009, 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MAINGTKMENU_HH #define MAINGTKMENU_HH #include #include #include #include #include #include #include #include #include "MenuBase.hh" class MainGtkMenu : public MenuBase { public: MainGtkMenu(bool show_open); virtual ~MainGtkMenu(); void add_stock_item(const Glib::RefPtr &factory, const std::string &path, const Glib::ustring &id, const Glib::ustring &label); void register_stock_items(); virtual void create_actions(); virtual void create_ui(); virtual void post_init() {} virtual void init(); virtual void popup(const guint button, const guint activate_time); virtual void resync(workrave::OperationMode mode, workrave::UsageMode usage, bool show_log); private: void on_menu_network_log(); void on_menu_normal(); void on_menu_suspend(); void on_menu_quiet(); void on_menu_reading(); #ifdef PLATFORM_OS_MACOS void macos_popup_hack_connect(Gtk::Menu *menu); static gboolean macos_popup_hack_hide(gpointer data); static gboolean macos_popup_hack_leave_enter(GtkWidget *menu, GdkEventCrossing *event, void *data); #endif protected: Glib::RefPtr ui_manager; Glib::RefPtr action_group; //! Gtk::Menu *popup_menu; //! bool show_open; }; #endif // MAINGTKMENU_HH workrave-1.10.50/frontend/gtkmm/src/resource.rc0000644000000000000000000000204214221624432021414 0ustar00rootroot00000000000000#include VS_VERSION_INFO VERSIONINFO FILEVERSION 1,10,50,0 PRODUCTVERSION 1,10,50,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904B0" BEGIN VALUE "CompanyName", "The Workrave development team" VALUE "FileDescription", "Workrave" VALUE "FileVersion", "1.10.50" VALUE "InternalName", "workrave" VALUE "LegalCopyright", "Copyright (C) 2001-2020 The Workrave development team." VALUE "OriginalFilename", "workrave.exe" VALUE "ProductName", "Workrave" VALUE "ProductVersion", "1.10.50" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END workrave ICON DISCARDABLE "../../common/share/images/win32/workrave.ico" workravequiet ICON DISCARDABLE "../../common/share/images/win32/workrave-quiet.ico" workravesusp ICON DISCARDABLE "../../common/share/images/win32/workrave-suspended.ico" workrave-1.10.50/frontend/gtkmm/src/TimerPreferencesPanel.cc0000644000175100001710000002726314221624107022712 0ustar00gdm00000000000000// TimerPreferencesPanel.cc --- Preferences widgets for a timer // // Copyright (C) 2002 - 2013 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #ifdef HAVE_UNISTD_H # include #endif #include #include #include "nls.h" #include "debug.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "IConfigurator.hh" #include "IBreak.hh" #include "TimeEntry.hh" #include "TimerPreferencesPanel.hh" #include "GtkUtil.hh" #include "Hig.hh" #include "GUIConfig.hh" #include "CoreConfig.hh" #include "DataConnector.hh" using namespace std; TimerPreferencesPanel::TimerPreferencesPanel(BreakId t, Glib::RefPtr hsize_group, Glib::RefPtr vsize_group) : Gtk::VBox(false, 6) #ifdef HAVE_GTK3 , max_prelude_adjustment(Gtk::Adjustment::create(0, 1, 100)) # ifdef HAVE_EXERCISES , exercises_adjustment(Gtk::Adjustment::create(0, 0, 10)) # endif #else , max_prelude_adjustment(0, 1, 100) # ifdef HAVE_EXERCISES , exercises_adjustment(0, 0, 10) # endif #endif { connector = new DataConnector(); break_id = t; Gtk::HBox *box = Gtk::manage(new Gtk::HBox(false, 6)); // Enabled/Disabled checkbox Gtk::Label *enabled_lab = Gtk::manage(GtkUtil::create_label(_("Enable timer"), true)); enabled_cb = Gtk::manage(new Gtk::CheckButton()); enabled_cb->add(*enabled_lab); enabled_cb->signal_toggled().connect(sigc::mem_fun(*this, &TimerPreferencesPanel::on_enabled_toggled)); HigCategoriesPanel *categories = Gtk::manage(new HigCategoriesPanel()); Gtk::Widget *prelude_frame = Gtk::manage(create_prelude_panel()); Gtk::Widget *timers_frame = Gtk::manage(create_timers_panel(hsize_group, vsize_group)); Gtk::Widget *opts_frame = Gtk::manage(create_options_panel()); categories->add(*timers_frame); categories->add(*opts_frame); enable_buttons(); // Overall box box->pack_start(*categories, false, false, 0); box->pack_start(*prelude_frame, false, false, 0); pack_start(*enabled_cb, false, false, 0); pack_start(*box, false, false, 0); connector->connect(CoreConfig::CFG_KEY_BREAK_ENABLED % break_id, dc::wrap(enabled_cb)); set_border_width(12); } TimerPreferencesPanel::~TimerPreferencesPanel() { delete connector; } Gtk::Widget * TimerPreferencesPanel::create_prelude_panel() { // Prelude frame HigCategoryPanel *hig = Gtk::manage(new HigCategoryPanel(_("Break prompting"))); prelude_cb = Gtk::manage(new Gtk::CheckButton(_("Prompt before breaking"))); hig->add_widget(*prelude_cb); Gtk::HBox *max_box = Gtk::manage(new Gtk::HBox()); has_max_prelude_cb = Gtk::manage(new Gtk::CheckButton(_("Maximum number of prompts:"))); max_prelude_spin = Gtk::manage(new Gtk::SpinButton(max_prelude_adjustment)); max_box->pack_start(*has_max_prelude_cb, false, false, 0); max_box->pack_start(*max_prelude_spin, false, false, 0); hig->add_widget(*max_box); connector->connect(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, dc::wrap(prelude_cb), sigc::mem_fun(*this, &TimerPreferencesPanel::on_preludes_changed)); connector->connect(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, dc::wrap(has_max_prelude_cb), sigc::mem_fun(*this, &TimerPreferencesPanel::on_preludes_changed), dc::NO_CONFIG); connector->connect(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, dc::wrap(max_prelude_spin), sigc::mem_fun(*this, &TimerPreferencesPanel::on_preludes_changed), dc::NO_CONFIG); return hig; } Gtk::Widget * TimerPreferencesPanel::create_options_panel() { HigCategoryPanel *hig = Gtk::manage(new HigCategoryPanel(_("Options"))); // Ignorable ignorable_cb = Gtk::manage(new Gtk::CheckButton(_("Show 'Postpone' button"))); hig->add_widget(*ignorable_cb); // Skippable skippable_cb = Gtk::manage(new Gtk::CheckButton(_("Show 'Skip' button"))); hig->add_widget(*skippable_cb); // Sensitive for activity activity_sensitive_cb = Gtk::manage(new Gtk::CheckButton(_("Suspend timer when inactive"))); #if REMOVED_IN_FAVOR_OF_READING_MODE__REMOVE_LATER hig->add(*activity_sensitive_cb); #endif // Break specific options #ifdef HAVE_EXERCISES exercises_spin = NULL; #endif #ifdef HAVE_MICRO_BREAK_ACTIVITY monitor_cb = NULL; auto_natural_cb = NULL; allow_shutdown_cb = NULL; if (break_id == BREAK_ID_DAILY_LIMIT) { monitor_cb = Gtk::manage(new Gtk::CheckButton(_("Regard micro-breaks as activity"))); hig->add_widget(*monitor_cb); } #endif #ifdef HAVE_EXERCISES if (break_id == BREAK_ID_REST_BREAK) { exercises_spin = Gtk::manage(new Gtk::SpinButton(exercises_adjustment)); hig->add_label(_("Number of exercises:"), *exercises_spin); } #endif if (break_id == BREAK_ID_REST_BREAK) { auto_natural_cb = Gtk::manage(new Gtk::CheckButton(_("Start restbreak when screen is locked"))); hig->add_widget(*auto_natural_cb); connector->connect(GUIConfig::CFG_KEY_BREAK_AUTO_NATURAL % break_id, dc::wrap(auto_natural_cb)); allow_shutdown_cb = Gtk::manage(new Gtk::CheckButton(_("Enable shutting down the computer from the rest screen"))); hig->add_widget(*allow_shutdown_cb); connector->connect(GUIConfig::CFG_KEY_BREAK_ENABLE_SHUTDOWN % break_id, dc::wrap(allow_shutdown_cb)); } connector->connect(CoreConfig::CFG_KEY_TIMER_ACTIVITY_SENSITIVE % break_id, dc::wrap(activity_sensitive_cb)); connector->connect(GUIConfig::CFG_KEY_BREAK_IGNORABLE % break_id, dc::wrap(ignorable_cb)); connector->connect(GUIConfig::CFG_KEY_BREAK_SKIPPABLE % break_id, dc::wrap(skippable_cb)); #ifdef HAVE_EXERCISES if (break_id == BREAK_ID_REST_BREAK) { connector->connect(GUIConfig::CFG_KEY_BREAK_EXERCISES % break_id, dc::wrap(exercises_spin)); } #endif connector->connect(CoreConfig::CFG_KEY_TIMER_MONITOR % break_id, dc::wrap(monitor_cb), sigc::mem_fun(*this, &TimerPreferencesPanel::on_monitor_changed)); return hig; } Gtk::Widget * TimerPreferencesPanel::create_timers_panel(Glib::RefPtr hsize_group, Glib::RefPtr vsize_group) { HigCategoryPanel *hig = Gtk::manage(new HigCategoryPanel(_("Timers"))); // Limit time limit_tim = Gtk::manage(new TimeEntry()); Gtk::Label *limit_lab = hig->add_label(break_id == BREAK_ID_DAILY_LIMIT ? _("Time before end:") : _("Time between breaks:"), *limit_tim); hsize_group->add_widget(*limit_lab); // Auto-reset time if (break_id != BREAK_ID_DAILY_LIMIT) { const char *auto_reset_txt = _("Break duration:"); auto_reset_tim = Gtk::manage(new TimeEntry()); Gtk::Label *auto_reset_lab = Gtk::manage(new Gtk::Label(auto_reset_txt)); hsize_group->add_widget(*auto_reset_lab); hig->add_label(*auto_reset_lab, *auto_reset_tim); } else { auto_reset_tim = NULL; } // Snooze time snooze_tim = Gtk::manage(new TimeEntry()); Gtk::Label *snooze_lab = hig->add_label(_("Postpone time:"), *snooze_tim); hsize_group->add_widget(*snooze_lab); vsize_group->add_widget(*hig); connector->connect(CoreConfig::CFG_KEY_TIMER_LIMIT % break_id, dc::wrap(limit_tim)); connector->connect(CoreConfig::CFG_KEY_TIMER_AUTO_RESET % break_id, dc::wrap(auto_reset_tim)); connector->connect(CoreConfig::CFG_KEY_TIMER_SNOOZE % break_id, dc::wrap(snooze_tim)); return hig; } void TimerPreferencesPanel::set_prelude_sensitivity() { bool on = enabled_cb->get_active(); bool has_preludes = prelude_cb->get_active(); bool has_max = has_max_prelude_cb->get_active(); has_max_prelude_cb->set_sensitive(has_preludes && on); max_prelude_spin->set_sensitive(has_preludes && has_max && on); } bool TimerPreferencesPanel::on_preludes_changed(const std::string &key, bool write) { static bool inside = false; if (inside) return true; inside = true; IConfigurator *config = CoreFactory::get_configurator(); if (write) { int mp; if (prelude_cb->get_active()) { if (has_max_prelude_cb->get_active()) { #ifdef HAVE_GTK3 mp = (int)max_prelude_adjustment->get_value(); #else mp = (int)max_prelude_adjustment.get_value(); #endif } else { mp = -1; } } else { mp = 0; } config->set_value(key, mp); set_prelude_sensitivity(); } else { int value; bool ok = config->get_value(key, value); if (ok) { if (value == -1) { prelude_cb->set_active(true); has_max_prelude_cb->set_active(false); } else if (value == 0) { prelude_cb->set_active(false); has_max_prelude_cb->set_active(false); } else { prelude_cb->set_active(true); has_max_prelude_cb->set_active(true); #ifdef HAVE_GTK3 max_prelude_adjustment->set_value(value); #else max_prelude_adjustment.set_value(value); #endif } set_prelude_sensitivity(); } } inside = false; return true; } #ifdef HAVE_MICRO_BREAK_ACTIVITY bool TimerPreferencesPanel::on_monitor_changed(const string &key, bool write) { IConfigurator *config = CoreFactory::get_configurator(); if (write) { string val; if (monitor_cb->get_active()) { ICore *core = CoreFactory::get_core(); IBreak *mp_break = core->get_break(BREAK_ID_MICRO_BREAK); val = mp_break->get_name(); } config->set_value(key, val); } else { string monitor_name; bool ok = config->get_value(key, monitor_name); if (ok && monitor_name != "") { bool s = monitor_cb->is_sensitive(); monitor_cb->set_active(monitor_name != ""); monitor_cb->set_sensitive(s); } } return true; } #endif void TimerPreferencesPanel::on_enabled_toggled() { enable_buttons(); set_prelude_sensitivity(); } //! Enable widgets void TimerPreferencesPanel::enable_buttons() { bool on = enabled_cb->get_active(); ignorable_cb->set_sensitive(on); skippable_cb->set_sensitive(on); activity_sensitive_cb->set_sensitive(on); #ifdef HAVE_MICRO_BREAK_ACTIVITY if (monitor_cb != nullptr) { monitor_cb->set_sensitive(on); } #endif prelude_cb->set_sensitive(on); has_max_prelude_cb->set_sensitive(on); limit_tim->set_sensitive(on); if (auto_reset_tim != nullptr) { auto_reset_tim->set_sensitive(on); } snooze_tim->set_sensitive(on); #ifdef HAVE_EXERCISES if (exercises_spin != NULL) { exercises_spin->set_sensitive(on); } #endif if (auto_natural_cb != nullptr) { auto_natural_cb->set_sensitive(on); } if (allow_shutdown_cb != nullptr) { allow_shutdown_cb->set_sensitive(on); } // max_prelude_spin->set_sensitive(on); } workrave-1.10.50/frontend/gtkmm/src/EventImage.hh0000644000175100001710000000242214221624107020514 0ustar00gdm00000000000000// EventImage.hh --- Image that receives events. // // Copyright (C) 2003, 2004, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EVENTIMAGE_HH #define EVENTIMAGE_HH #include class EventImage : public Gtk::Image { public: EventImage() {} EventImage(const Glib::ustring &file, bool mnemonic = false) : Gtk::Image(file) { (void)mnemonic; } private: void on_realize(); void on_unrealize(); bool on_map_event(GdkEventAny *event); bool on_unmap_event(GdkEventAny *event); void on_size_allocate(Gtk::Allocation &allocation); GdkWindow *event_window; }; #endif // EVENTIMAGE_HH workrave-1.10.50/frontend/gtkmm/src/Session.cc0000644000175100001710000001024314221624107020101 0ustar00gdm00000000000000// Session.cc --- Monitor the user session // // Copyright (C) 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "Session.hh" #include "nls.h" #include "debug.hh" #include "IConfigurator.hh" #include "GUIConfig.hh" #include "CoreFactory.hh" #include "IBreak.hh" using namespace workrave; using namespace std; Session::Session() : is_idle(false) , taking(false) { } void Session::init() { #if defined(HAVE_DBUS) init_gnome(); #endif } void Session::set_idle(bool new_idle) { TRACE_ENTER_MSG("Session::set_idle", new_idle); bool auto_natural = false; IConfigurator *config = CoreFactory::get_configurator(); config->get_value(GUIConfig::CFG_KEY_BREAK_AUTO_NATURAL % BREAK_ID_REST_BREAK, auto_natural); ICore *core = CoreFactory::get_core(); if (core->get_usage_mode() == USAGE_MODE_READING) { core->force_idle(); } if (new_idle && !is_idle) { TRACE_MSG("Now idle"); IBreak *rest_break = core->get_break(BREAK_ID_REST_BREAK); taking = rest_break->is_taking(); TRACE_MSG("taking " << taking); if (!taking) { core->set_operation_mode_override(OPERATION_MODE_SUSPENDED, "screensaver"); } } else if (!new_idle && is_idle && !taking) { TRACE_MSG("No longer idle"); core->remove_operation_mode_override("screensaver"); if (auto_natural) { TRACE_MSG("Automatic natural break enabled"); IBreak *rest_break = core->get_break(BREAK_ID_REST_BREAK); if (core->get_operation_mode() == OPERATION_MODE_NORMAL && rest_break->get_elapsed_idle_time() < rest_break->get_auto_reset() && rest_break->is_enabled() && !rest_break->is_taking()) { bool overdue = (rest_break->get_limit() < rest_break->get_elapsed_time()); if (overdue) { core->force_break(BREAK_ID_REST_BREAK, BREAK_HINT_NONE); } else { core->force_break(BREAK_ID_REST_BREAK, BREAK_HINT_NATURAL_BREAK); } } } } is_idle = new_idle; TRACE_EXIT(); } #if defined(HAVE_DBUS) void Session::on_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data) { (void)proxy; (void)sender_name; Session *self = (Session *)user_data; int session_status; if (g_strcmp0(signal_name, "StatusChanged") == 0) { g_variant_get(parameters, "(u)", &session_status); self->set_idle(session_status == 3); } } void Session::init_gnome() { TRACE_ENTER("Session::init_gnome"); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.gnome.SessionManager", "/org/gnome/SessionManager/Presence", "org.gnome.SessionManager.Presence", NULL, &error); if (error != NULL) { TRACE_MSG("Error: " << error->message); g_error_free(error); } if (error == NULL && proxy != NULL) { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_signal), this); } } #endif workrave-1.10.50/frontend/gtkmm/src/Hig.hh0000644000175100001710000000402314221624107017176 0ustar00gdm00000000000000// Hig.hh --- Gnome HIG stuff // // Copyright (C) 2003, 2004, 2007, 2008, 2012, 2013 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef HIG_HH #define HIG_HH #include #include #include class HigDialog : public Gtk::Dialog { public: HigDialog(); HigDialog(const Glib::ustring &title, bool modal = false, bool use_separator = false); Gtk::VBox *get_vbox(); private: void set_hig_defaults(); Gtk::VBox *vbox; }; class HigCategoryPanel : public Gtk::VBox { public: HigCategoryPanel(Gtk::Widget &lab, bool fill = false); HigCategoryPanel(const char *lab, bool fill = false); HigCategoryPanel(); Gtk::Label *add_label(const char *lab, Gtk::Widget &widget, bool expand = false, bool fill = false); void add_label(Gtk::Label &label, Gtk::Widget &widget, bool expand = false, bool fill = false); void add_widget(Gtk::Widget &widget, bool expand = false, bool fill = false); void add_caption(Gtk::Widget &lab); void add_caption(const char *lab); private: void init(Gtk::Widget &lab, bool fill = false); Gtk::VBox *options_box; Glib::RefPtr size_group; }; class HigCategoriesPanel : public Gtk::VBox { public: HigCategoriesPanel(); void add(Gtk::Widget &panel); }; class HigUtil { public: static Glib::ustring create_alert_text(const char *caption, const char *body); }; #endif // HIG_HH workrave-1.10.50/frontend/gtkmm/src/X11SystrayAppletWindow.cc0000644000175100001710000002263014221624107022767 0ustar00gdm00000000000000// X11SystrayAppletWindow.cc --- Applet info Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "X11SystrayAppletWindow.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "GUI.hh" #include "TimerBoxGtkView.hh" #include "TimerBoxControl.hh" #include "Menus.hh" #include "gtktrayicon.h" //! Constructor. /*! * \param gui the main GUI entry point. * \param control Interface to the controller. */ X11SystrayAppletWindow::X11SystrayAppletWindow() { IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(GUIConfig::CFG_KEY_APPLET_FALLBACK_ENABLED, this); read_configuration(); } //! Destructor. X11SystrayAppletWindow::~X11SystrayAppletWindow() { delete plug; delete container; delete timer_box_control; delete timer_box_view; } void X11SystrayAppletWindow::static_notify_callback(GObject *gobject, GParamSpec *arg, gpointer user_data) { (void)gobject; (void)arg; X11SystrayAppletWindow *applet = (X11SystrayAppletWindow *)user_data; applet->notify_callback(); } void X11SystrayAppletWindow::notify_callback() { TRACE_ENTER("X11SystrayAppletWindow::notify_callback"); if (tray_icon != NULL && embedded) { GtkOrientation o = wrgtk_tray_icon_get_orientation(tray_icon); Orientation orientation; if (o != GTK_ORIENTATION_VERTICAL) { orientation = ORIENTATION_UP; TRACE_MSG("up"); } else { orientation = ORIENTATION_LEFT; TRACE_MSG("left"); } if (applet_orientation != orientation) { TRACE_MSG("orientation " << orientation); applet_orientation = orientation; view->set_geometry(applet_orientation, applet_size); } } TRACE_EXIT(); } //! Initializes the applet. void X11SystrayAppletWindow::activate() { TRACE_ENTER("X11SystrayAppletWindow::activate"); #if defined(GDK_WINDOWING_X11) && defined(HAVE_GTK3) GdkDisplay *display = gdk_display_manager_get_default_display(gdk_display_manager_get()); if (!GDK_IS_X11_DISPLAY(display)) { TRACE_EXIT(); return; } #endif if (applet_active) { TRACE_RETURN("already active, embedded: " << embedded); return; } tray_icon = wrgtk_tray_icon_new("Workrave Tray Icon"); if (tray_icon != NULL) { g_signal_connect(tray_icon, "notify", G_CALLBACK(static_notify_callback), this); plug = Glib::wrap(GTK_PLUG(tray_icon)); Gtk::EventBox *eventbox = new Gtk::EventBox; eventbox->set_visible_window(false); eventbox->set_events(eventbox->get_events() | Gdk::BUTTON_PRESS_MASK); eventbox->signal_button_press_event().connect(sigc::mem_fun(*this, &X11SystrayAppletWindow::on_button_press_event)); container = eventbox; view = new TimerBoxGtkView(Menus::MENU_MAINAPPLET); timer_box_view = view; timer_box_control = new TimerBoxControl("applet", *timer_box_view); Gtk::VBox *box = manage(new Gtk::VBox()); box->set_spacing(1); box->pack_start(*view, true, true, 0); container->add(*box); plug->signal_embedded().connect(sigc::mem_fun(*this, &X11SystrayAppletWindow::on_embedded)); plug->signal_delete_event().connect(sigc::mem_fun(*this, &X11SystrayAppletWindow::on_delete_event)); plug->signal_size_allocate().connect(sigc::mem_fun(*this, &X11SystrayAppletWindow::on_size_allocate)); plug->add(*container); plug->show_all(); applet_orientation = ORIENTATION_UP; #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; plug->get_preferred_size(min_size, natural_size); applet_size = min_size.height; #else Gtk::Requisition req; plug->size_request(req); applet_size = req.height; #endif view->set_geometry(applet_orientation, applet_size); applet_active = true; } TRACE_EXIT(); return; } //! Destroys the applet. void X11SystrayAppletWindow::deactivate() { TRACE_ENTER("X11SystrayAppletWindow::deactivate"); if (applet_active) { if (plug != NULL) { plug->remove(); delete plug; plug = NULL; } if (container != NULL) { container->remove(); delete container; container = NULL; } delete timer_box_control; timer_box_control = NULL; delete timer_box_view; timer_box_view = NULL; view = NULL; visibility_changed_signal.emit(false); } applet_active = false; TRACE_EXIT(); } //! Applet window is deleted. Destroy applet. bool X11SystrayAppletWindow::on_delete_event(GdkEventAny *event) { (void)event; deactivate(); visibility_changed_signal.emit(false); return true; } //! Notification of the system tray that the applet has been embedded. void X11SystrayAppletWindow::on_embedded() { TRACE_ENTER("X11SystrayAppletWindow::on_embedded"); if (applet_active) { GtkOrientation o = wrgtk_tray_icon_get_orientation(tray_icon); Orientation orientation; if (o != GTK_ORIENTATION_VERTICAL) { orientation = ORIENTATION_UP; } else { orientation = ORIENTATION_LEFT; } embedded = true; applet_size = 24; applet_orientation = orientation; view->set_geometry(applet_orientation, applet_size); #ifdef HAVE_GTK3 gint icon_size = wrgtk_tray_icon_get_icon_size(tray_icon); TRACE_MSG("icon size " << icon_size); #endif } visibility_changed_signal.emit(true); TRACE_EXIT(); } //! User pressed some mouse button in the main window. bool X11SystrayAppletWindow::on_button_press_event(GdkEventButton *event) { bool ret = false; if (applet_active && event->type == GDK_BUTTON_PRESS && embedded) { if (event->button == 3) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->popup(Menus::MENU_MAINAPPLET, 0 /*event->button */, event->time); ret = true; } if (event->button == 1) { button_clicked(1); ret = true; } } return ret; } //! User clicked left mouse button. void X11SystrayAppletWindow::button_clicked(int button) { (void)button; timer_box_control->force_cycle(); } void X11SystrayAppletWindow::on_size_allocate(Gtk::Allocation &allocation) { TRACE_ENTER("X11SystrayAppletWindow::on_size_allocate"); if (embedded) { TRACE_MSG(allocation.get_x() << " " << allocation.get_y() << " " << allocation.get_width() << " " << allocation.get_height()); #ifdef HAVE_GTK3 gint icon_size = wrgtk_tray_icon_get_icon_size(tray_icon); TRACE_MSG("icon size " << icon_size); #endif GtkOrientation o = wrgtk_tray_icon_get_orientation(tray_icon); Orientation orientation; if (o == GTK_ORIENTATION_VERTICAL) { orientation = ORIENTATION_UP; } else { orientation = ORIENTATION_LEFT; } if (orientation == ORIENTATION_UP || orientation == ORIENTATION_DOWN) { if (applet_size != allocation.get_width()) { applet_size = allocation.get_width(); TRACE_MSG("New size = " << applet_size); view->set_geometry(applet_orientation, applet_size); } } else { if (applet_size != allocation.get_height()) { applet_size = allocation.get_height(); TRACE_MSG("New size = " << applet_size); view->set_geometry(applet_orientation, applet_size); } } #ifdef HAVE_GTK3 Gtk::Requisition my_size; GtkRequisition natural_size; view->get_preferred_size(my_size, natural_size); TRACE_MSG("my_size = " << my_size.width << " " << my_size.height); TRACE_MSG("natural_size = " << natural_size.width << " " << natural_size.height); // hack... if (!view->is_sheep_only()) { view->set_sheep_only(allocation.get_width() < my_size.width || allocation.get_height() < my_size.height); } #endif } TRACE_EXIT(); } void X11SystrayAppletWindow::read_configuration() { bool previous_enabled = enabled; enabled = GUIConfig::is_applet_fallback_enabled(); if (!previous_enabled && enabled) { activate(); } else if (previous_enabled && !enabled) { deactivate(); } } void X11SystrayAppletWindow::config_changed_notify(const std::string &key) { TRACE_ENTER_MSG("X11SystrayAppletWindow::config_changed_notify", key); (void)key; read_configuration(); TRACE_EXIT(); } bool X11SystrayAppletWindow::is_visible() const { return applet_active && embedded; } workrave-1.10.50/frontend/gtkmm/src/GUIConfig.hh0000644000175100001710000000607414221624107020251 0ustar00gdm00000000000000// GUI.hh --- The WorkRave GUI // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GUICONFIG_HH #define GUICONFIG_HH #include "ICore.hh" using namespace workrave; class GUIConfig { public: static const std::string CFG_KEY_BREAK_AUTO_NATURAL; static const std::string CFG_KEY_BREAK_IGNORABLE; static const std::string CFG_KEY_BREAK_SKIPPABLE; static const std::string CFG_KEY_BREAK_EXERCISES; static const std::string CFG_KEY_BREAK_ENABLE_SHUTDOWN; static const std::string CFG_KEY_BLOCK_MODE; static const std::string CFG_KEY_LOCALE; static const std::string CFG_KEY_TRAYICON_ENABLED; static const std::string CFG_KEY_AUTOSTART; static const std::string CFG_KEY_CLOSEWARN_ENABLED; static const std::string CFG_KEY_ICONTHEME; static const std::string CFG_KEY_MAIN_WINDOW; static const std::string CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP; static const std::string CFG_KEY_MAIN_WINDOW_START_IN_TRAY; static const std::string CFG_KEY_MAIN_WINDOW_X; static const std::string CFG_KEY_MAIN_WINDOW_Y; static const std::string CFG_KEY_MAIN_WINDOW_HEAD; static const std::string CFG_KEY_APPLET_FALLBACK_ENABLED; static const std::string CFG_KEY_APPLET_ICON_ENABLED; static void init(); enum BlockMode { BLOCK_MODE_NONE = 0, BLOCK_MODE_INPUT, BLOCK_MODE_ALL }; static BlockMode get_block_mode(); static void set_block_mode(BlockMode mode); static std::string get_locale(); static void set_locale(std::string locale); static bool get_trayicon_enabled(); static void set_trayicon_enabled(bool enabled); static bool get_ignorable(BreakId id); static bool get_skippable(BreakId id); static void set_ignorable(BreakId id, bool b); static bool get_shutdown_enabled(BreakId id); static int get_number_of_exercises(BreakId id); static void set_number_of_exercises(BreakId id, int num); static bool get_always_on_top(); static void set_always_on_top(bool b); static void set_start_in_tray(bool b); static bool get_start_in_tray(); static std::string get_icon_theme(); static void set_icon_theme(std::string theme); static bool is_applet_fallback_enabled(); static void set_applet_fallback_enabled(bool enabled); static bool is_applet_icon_enabled(); static void set_applet_icon_enabled(bool enabled); private: static std::string expand(const std::string &str, BreakId id); }; #endif workrave-1.10.50/frontend/gtkmm/src/Makefile.am0000644000175100001710000001675314221624107020217 0ustar00gdm00000000000000 # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners # SUBDIRS = win32 unix macos MAINTAINERCLEANFILES = Makefile.in \ org.workrave.Workrave.service \ workrave.desktop \ resource.rc DISTCLEANFILES = workrave.desktop org.workrave.gui.gschema.xml if HAVE_APP_GTKMM bin_PROGRAMS = workrave endif DEFS = @DEFS@ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -I$(top_srcdir)/intl extrasources = extranodistsources = # Additional Indicator applet sources sourcesindicator = IndicatorAppletMenu.cc # Additional X11 sources. if HAVE_GTK3 sourcesx = X11SystrayAppletWindow.cc gtktrayicon3.c else sourcesx = X11SystrayAppletWindow.cc gtktrayicon.c endif # Additional Win32 sources. sourceswin32 = resource.rc resource.rc: resource.rc.in sed -e 's/@WORKRAVE_VERSION@/$(VERSION)/g' \ -e 's/@WORKRAVE_RESOURCE_VERSION@/$(RESOURCE_VERSION)/g' \ $(srcdir)/$@.in > $@ # Additional distribution sources. DISTRIBUTION_HOME = $(top_srcdir)/frontend/plugin/distribution sourcesdistribution = ../../plugin/distribution/gtkmm/src/NetworkJoinDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkLogDialog.cc \ ../../plugin/distribution/gtkmm/src/NetworkPreferencePage.cc # Additional exercises sources. EXERCISES_HOME = $(top_srcdir)/frontend/plugin/exercises sourcesexercises = ../../plugin/exercises/gtkmm/src/ExercisesDialog.cc \ ../../plugin/exercises/gtkmm/src/ExercisesPanel.cc \ ../../plugin/exercises/common/src/Exercise.cc # Statistics. STATISTICS_HOME = $(top_srcdir)/frontend/plugin/statistics sourcesstatistics = ../../plugin/statistics/gtkmm/src/StatisticsDialog.cc if HAVE_APP_GTKMM if HAVE_INDICATOR extrasources += $(sourcesindicator) indicatorflags = -I$(top_srcdir)/frontend/applets/indicator/include endif if PLATFORM_OS_UNIX extrasources += $(sourcesx) includesx = -I$(top_srcdir)/frontend/gtkmm/src/unix/ ldflags = -L$(top_builddir)/frontend/gtkmm/src/unix/ endif if PLATFORM_OS_WINDOWS extrasources += eggsmclient-win32.c eggsmclient.c includeswin32 = -I$(top_srcdir)/common/win32/harpoon/include \ -I$(top_srcdir)/frontend/gtkmm/src/win32/ \ -I$(top_srcdir)/frontend/applets/win32/include \ -I$(top_srcdir)/backend/src/win32 ldflags = -L$(top_builddir)/frontend/gtkmm/src/win32/ win32cflags = -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0600 endif if HAVE_DISTRIBUTION extrasources += $(sourcesdistribution) endif if HAVE_EXERCISES extrasources += $(sourcesexercises) endif extrasources += $(sourcesstatistics) if PLATFORM_OS_WINDOWS WINDRES ?= "windres" .rc.o: ${WINDRES} -o $@ $< extrasources += $(sourceswin32) includesinput = -I$(top_srcdir)/common/win32/harpoon/include WIN32LIBS = $(top_builddir)/common/win32/harpoon/src/Release/harpoon.dll \ $(top_builddir)/frontend/gtkmm/src/win32/libworkrave-frontend-gtkmm-win32.la \ -lshell32 -lole32 -lwinmm -lshlwapi -lwtsapi32 WIN32LDFLAGS = -static-libgcc -static-libstdc++ endif if PLATFORM_OS_UNIX X11LIBS = -lworkrave-frontend-gtkmm-unix -lX11 endif if PLATFORM_OS_MACOS includesmacos = -I$(top_srcdir)/frontend/gtkmm/src/macos ldflags = -L$(top_builddir)/frontend/gtkmm/src/macos MacOSLIBS = $(top_builddir)/frontend/gtkmm/src/macos/libworkrave-frontend-gtkmm-macos.la endif # DBus service file if HAVE_DBUS servicedir = $(DBUS_SERVICES_DIR) service_in_files = org.workrave.Workrave.service.in service_DATA = $(service_in_files:.service.in=.service) # Rule to make the service file with bindir expanded $(service_DATA): $(service_in_files) Makefile sed -e "s|@workravebindir@|$(bindir)|" $< > $@ # Correctly clean the generated headers, but keep the xml description CLEANFILES = org.workrave.Workrave.service dbussources = DBusGUI.cc DBusGUI.hh if HAVE_DBUS dbussources += GenericDBusApplet.cc endif BUILT_SOURCES = DBusGUI.cc DBusGUI.hh DBusGUI.cc: workrave-gui.xml \ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ $(top_srcdir)/libs/dbus/data/gio-cc.jinja $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-gui.xml $(top_srcdir)/libs/dbus/data/gio-cc.jinja DBusGUI.cc DBusGUI.hh: workrave-gui.xml \ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ $(top_srcdir)/libs/dbus/data/gio-hh.jinja $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-gui.xml $(top_srcdir)/libs/dbus/data/gio-hh.jinja DBusGUI.hh else # HAVE_DBUS dbussources = endif # HAVE_DBUS if HAVE_GSETTINGS gsettings_ENUM_NAMESPACE = gsettings_ENUM_FILES = gsettings_SCHEMAS = org.workrave.gui.gschema.xml @INTLTOOL_XML_NOMERGE_RULE@ @GSETTINGS_RULES@ endif iconsdir = $(datadir)/pixmaps/workrave desktopdir = ${datadir}/applications desktop_in_files = workrave.desktop.in desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) @INTLTOOL_DESKTOP_RULE@ appdatadir = $(datarootdir)/metainfo dist_appdata_DATA = workrave.appdata.xml workrave_SOURCES = \ AppletControl.cc \ AppletWindow.cc \ BreakWindow.cc \ DailyLimitWindow.cc \ DataConnector.cc \ DebugDialog.cc \ EventButton.cc \ EventImage.cc \ EventLabel.cc \ Frame.cc \ GUI.cc \ GUIConfig.cc \ GtkUtil.cc \ HeadInfo.cc \ Hig.cc \ IconListCellRenderer.cc \ IconListNotebook.cc \ MainGtkMenu.cc \ MainWindow.cc \ Menus.cc \ MicroBreakWindow.cc \ PreferencesDialog.cc \ PreludeWindow.cc \ RestBreakWindow.cc \ Session.cc \ StatusIcon.cc \ TimeBar.cc \ TimeEntry.cc \ TimerBoxGtkView.cc \ TimerBoxPreferencePage.cc \ TimerPreferencesPanel.cc \ WindowHints.cc \ main.cc \ $(extrasources) \ ${dbussources} nodist_workrave_SOURCES = \ $(extranodistsources) workrave_CXXFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -W \ -DWORKRAVE_DATADIR="\"${datadir}\"" \ -I$(top_srcdir)/frontend/gtkmm/src/ \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @X_CFLAGS@ @GTK_CFLAGS@ @GLIB_CFLAGS@ \ @GCONF_CFLAGS@ -D_XOPEN_SOURCE=600 @GNET_CFLAGS@ \ @IGE_CFLAGS@ \ $(includeswin32) $(win32cflags) $(includesinput) $(includesmacos) \ $(includesx) $(INDICATOR_CFLAGS) $(indicatorflags) \ -I${DISTRIBUTION_HOME}/gtkmm/src \ -I${STATISTICS_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/common/src if PLATFORM_OS_MACOS AM_CFLAGS = -xobjective-c AM_CPPFLAGS = -xobjective-c++ endif workrave_CFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -I$(top_srcdir)/frontend/gtkmm/src/ @GLIB_CFLAGS@ \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @X_CFLAGS@ @GTK_CFLAGS@ @X11SM_CFLAGS@\ -D_XOPEN_SOURCE=600 \ -I${DISTRIBUTION_HOME}/gtkmm/src \ -I${STATISTICS_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/common/src \ $(win32cflags) endif $(bin_PROGRAMS): $(top_builddir)/backend/src/libworkrave-backend.la \ $(top_builddir)/common/src/libworkrave-common.la \ $(top_builddir)/frontend/common/src/libworkrave-frontend-common.la workrave_LDFLAGS = @WR_LDFLAGS@ ${ldflags} ${WIN32LDFLAGS} workrave_LDADD = @WR_LDADD@ @X_LIBS@ @X11SM_LIBS@ @GLIB_LIBS@ \ @GTK_LIBS@ @GNET_LIBS@ @X_LIBS@ @GCONF_LIBS@ @GDOME_LIBS@ \ @PULSE_LIBS@ @IGE_LIBS@ @GSTREAMER_LIBS@ \ ${X11LIBS} ${WIN32LIBS} @GTK_LIBS@ ${MacOSLIBS} ${WIN32CONSOLE} \ ${DIRECTSOUNDLIBS} $(INDICATOR_LIBS) EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) \ workrave.desktop.in org.workrave.Workrave.service.in workrave-gui.xml resource.rc.in workrave-1.10.50/frontend/gtkmm/src/Session.hh0000644000175100001710000000227514221624107020121 0ustar00gdm00000000000000// Session.cc --- Monitor the gnome session // // Copyright (C) 2010, 2011, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SESSION_HH #define SESSION_HH #include #include "ICore.hh" class Session { public: Session(); void init(); void set_idle(bool idle); #if defined(HAVE_DBUS) public: void init_gnome(); private: static void on_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data); #endif private: bool is_idle; bool taking; }; #endif // SESSION_HH workrave-1.10.50/frontend/gtkmm/src/BreakWindow.hh0000644000175100001710000001366614221624107020720 0ustar00gdm00000000000000// BreakWindow.hh --- base class for the break windows // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef BREAKWINDOW_HH #define BREAKWINDOW_HH #ifdef HAVE_CONFIG # include "config.h" #endif #include #include "preinclude.h" #include #include "ICore.hh" #include "IBreakWindow.hh" #include "HeadInfo.hh" #include "WindowHints.hh" #include "GUIConfig.hh" #include "System.hh" #ifdef PLATFORM_OS_WINDOWS class DesktopWindow; #endif namespace workrave { class IBreakResponse; } namespace Gtk { class Button; class Box; } // namespace Gtk class Frame; class BreakWindow : public Gtk::Window , public IBreakWindow { friend class W32Compat; public: enum BreakFlags { BREAK_FLAGS_NONE = 0, BREAK_FLAGS_POSTPONABLE = 1 << 0, BREAK_FLAGS_SKIPPABLE = 1 << 1, BREAK_FLAGS_NO_EXERCISES = 1 << 2, BREAK_FLAGS_NATURAL = 1 << 3, BREAK_FLAGS_USER_INITIATED = 1 << 4 }; BreakWindow(BreakId break_id, HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode block_mode); virtual ~BreakWindow(); void set_response(IBreakResponse *bri); virtual void init(); virtual void start(); virtual void stop(); virtual void destroy(); virtual void refresh(); virtual void update_break_window(); Glib::RefPtr get_gdk_window(); protected: virtual Gtk::Widget *create_gui() = 0; void init_gui(); void center(); Gtk::Box *create_bottom_box(bool lockable, bool shutdownable); void update_skip_postpone_lock(); void check_skip_postpone_lock(bool &skip_locked, bool &postpone_locked, BreakId &break_id); void on_shutdown_button_clicked(); void on_skip_button_clicked(); bool on_delete_event(GdkEventAny *); void on_postpone_button_clicked(); void on_lock_button_clicked(); Gtk::Button *create_skip_button(); Gtk::Button *create_postpone_button(); Gtk::Button *create_lock_button(); Gtk::ComboBox *create_sysoper_combobox(); //! Information about the (multi)head. HeadInfo head; //! Insist GUIConfig::BlockMode block_mode; //! Ignorable BreakFlags break_flags; //! Flash frame Frame *frame; private: class SysoperModelColumns : public Gtk::TreeModelColumnRecord { public: Gtk::TreeModelColumn> icon; Gtk::TreeModelColumn name; Gtk::TreeModelColumn id; bool has_button_images; SysoperModelColumns(bool has_button_images) : has_button_images(has_button_images) { if (has_button_images) { add(icon); } add(name); add(id); } }; //! Send response to this interface. IBreakResponse *break_response; //! Break ID BreakId break_id; //! GUI Gtk::Widget *gui; //! Break windows visible? bool visible; // Supported system operations (like suspend, hibernate, shutdown) std::vector supported_system_operations; SysoperModelColumns *sysoper_model_columns; bool accel_added; Glib::RefPtr accel_group; Gtk::Button *lock_button; Gtk::Button *postpone_button; Gtk::Button *skip_button; Gtk::ComboBox *sysoper_combobox; Gtk::ProgressBar *progress_bar; Glib::RefPtr box_size_group; Glib::RefPtr button_size_group; #ifdef PLATFORM_OS_WINDOWS DesktopWindow *desktop_window; bool force_focus_on_break_start; long parent; #endif void get_operation_name_and_icon(System::SystemOperation::SystemOperationType type, const char **name, const char **icon_name); void append_row_to_sysoper_model(Glib::RefPtr &model, System::SystemOperation::SystemOperationType type); void on_sysoper_combobox_changed(); #ifdef HAVE_GTK3 virtual bool on_draw(const ::Cairo::RefPtr<::Cairo::Context> &cr); void on_screen_changed(const Glib::RefPtr &previous_screen); #endif }; inline BreakWindow::BreakFlags operator|(BreakWindow::BreakFlags lhs, BreakWindow::BreakFlags rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } inline BreakWindow::BreakFlags operator&(BreakWindow::BreakFlags lhs, BreakWindow::BreakFlags rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } inline BreakWindow::BreakFlags operator^(BreakWindow::BreakFlags lhs, BreakWindow::BreakFlags rhs) { return static_cast(static_cast(lhs) ^ static_cast(rhs)); } inline BreakWindow::BreakFlags operator~(BreakWindow::BreakFlags flags) { return static_cast(~static_cast(flags)); } inline BreakWindow::BreakFlags & operator|=(BreakWindow::BreakFlags &lhs, BreakWindow::BreakFlags rhs) { return (lhs = static_cast(static_cast(lhs) | static_cast(rhs))); } inline BreakWindow::BreakFlags & operator&=(BreakWindow::BreakFlags &lhs, BreakWindow::BreakFlags rhs) { return (lhs = static_cast(static_cast(lhs) & static_cast(rhs))); } inline BreakWindow::BreakFlags & operator^=(BreakWindow::BreakFlags &lhs, BreakWindow::BreakFlags rhs) { return (lhs = static_cast(static_cast(lhs) ^ static_cast(rhs))); } #endif // BREAKWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/Menus.cc0000644000175100001710000003365514221624107017561 0ustar00gdm00000000000000// Menus.cc --- Timer info Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "credits.h" #ifdef HAVE_UNISTD_H # include #endif #include #include "Menus.hh" #include "GUI.hh" #include "GtkUtil.hh" #include "PreferencesDialog.hh" #include "StatisticsDialog.hh" #include "DebugDialog.hh" #include "IStatistics.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "IConfigurator.hh" #ifdef HAVE_DISTRIBUTION # include "IDistributionManager.hh" # include "NetworkJoinDialog.hh" # include "NetworkLogDialog.hh" #endif #ifdef HAVE_EXERCISES # include "ExercisesDialog.hh" # include "Exercise.hh" #endif #include "MainGtkMenu.hh" #include "AppletControl.hh" #ifdef HAVE_INDICATOR # include "IndicatorAppletMenu.hh" #endif #ifdef HAVE_DBUS # include "GenericDBusApplet.hh" #endif #ifdef PLATFORM_OS_WINDOWS # include # include "W32AppletWindow.hh" # include "W32TrayMenu.hh" # include "W32AppletMenu.hh" #endif #if defined(PLATFORM_OS_MACOS) # include "MacOSGtkMenu.hh" #endif #include "MenuEnums.hh" //! Constructor. /*! * \param gui the main GUI entry point. * \param control Interface to the controller. */ Menus::Menus() : #ifdef HAVE_DISTRIBUTION network_log_dialog(NULL) , network_join_dialog(NULL) , #endif statistics_dialog(NULL) , preferences_dialog(NULL) , debug_dialog(NULL) , #ifdef HAVE_EXERCISES exercises_dialog(NULL) , #endif about(NULL) { gui = GUI::get_instance(); for (int i = 0; i < MENU_SIZEOF; i++) { menus[i] = NULL; } } //! Destructor. Menus::~Menus() { TRACE_ENTER("Menus::~Menus"); TRACE_EXIT(); } void Menus::init(AppletControl *applet_control) { std::shared_ptr applet_window; #if defined(PLATFORM_OS_MACOS) menus[MENU_MAINWINDOW] = new MacOSGtkMenu(true); #else menus[MENU_MAINWINDOW] = new MainGtkMenu(false); #endif #ifdef PLATFORM_OS_WINDOWS menus[MENU_MAINAPPLET] = new W32TrayMenu(); #else menus[MENU_MAINAPPLET] = new MainGtkMenu(true); #endif #if defined(PLATFORM_OS_WINDOWS) applet_window = applet_control->get_applet_window(AppletControl::AppletType::Windows); std::shared_ptr w32_applet_window = std::dynamic_pointer_cast(applet_window); menus[MENU_APPLET_W32] = new W32AppletMenu(w32_applet_window.get()); #endif #if defined(HAVE_DBUS) applet_window = applet_control->get_applet_window(AppletControl::AppletType::GenericDBus); std::shared_ptr indicator_applet = std::dynamic_pointer_cast(applet_window); menus[MENU_APPLET_GENERICDBUS] = indicator_applet.get(); # if defined(HAVE_INDICATOR) menus[MENU_APPLET_INDICATOR] = new IndicatorAppletMenu(); # endif #endif for (int i = 0; i < MENU_SIZEOF; i++) { if (menus[i] != nullptr) { menus[i]->init(); } } resync(); } void Menus::popup(const MenuKind kind, const guint button, const guint activate_time) { IMenu *pop_menu = menus[kind]; if (pop_menu) { pop_menu->popup(button, activate_time); } } void Menus::on_menu_open_main_window() { gui->open_main_window(); } //! User requested application quit.... void Menus::on_menu_quit() { TRACE_ENTER("Menus::on_menu_quit"); gui->terminate(); TRACE_EXIT(); } //! User requested immediate restbreak. void Menus::on_menu_restbreak_now() { gui->restbreak_now(); } void Menus::on_set_operation_mode(OperationMode m) { ICore *core = CoreFactory::get_core(); core->set_operation_mode(m); resync(); } void Menus::set_usage_mode(UsageMode m) { ICore *core = CoreFactory::get_core(); core->set_usage_mode(m); resync(); } void Menus::on_menu_quiet() { TRACE_ENTER("Menus::on_menu_quiet"); on_set_operation_mode(OPERATION_MODE_QUIET); TRACE_EXIT(); } void Menus::on_menu_suspend() { TRACE_ENTER("Menus::on_menu_suspend"); on_set_operation_mode(OPERATION_MODE_SUSPENDED); TRACE_EXIT(); } void Menus::on_menu_normal() { TRACE_ENTER("Menus::on_menu_normal"); on_set_operation_mode(OPERATION_MODE_NORMAL); TRACE_EXIT(); } void Menus::on_menu_reading(bool reading) { TRACE_ENTER("Menus::on_menu_reading"); set_usage_mode(reading ? USAGE_MODE_READING : USAGE_MODE_NORMAL); resync(); TRACE_EXIT(); } //! Preferences Dialog. void Menus::on_menu_preferences() { if (preferences_dialog == NULL) { preferences_dialog = new PreferencesDialog(); preferences_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_preferences_response)); preferences_dialog->run(); } else { preferences_dialog->present(); } } #ifdef HAVE_EXERCISES //! Exercises Dialog. void Menus::on_menu_exercises() { TRACE_ENTER("Menus::on_menu_exercises"); if (exercises_dialog == NULL) { exercises_dialog = new ExercisesDialog(); exercises_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_exercises_response)); exercises_dialog->run(); } else { exercises_dialog->present(); } TRACE_EXIT(); } void Menus::on_exercises_response(int response) { (void)response; assert(exercises_dialog != NULL); exercises_dialog->hide(); delete exercises_dialog; exercises_dialog = NULL; } #endif //! Statistics Dialog. void Menus::on_menu_statistics() { if (statistics_dialog == NULL) { ICore *core = CoreFactory::get_core(); IStatistics *stats = core->get_statistics(); stats->update(); statistics_dialog = new StatisticsDialog(); statistics_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_statistics_response)); statistics_dialog->run(); } else { statistics_dialog->present(); } } //! Debug Dialog. void Menus::on_menu_debug() { if (debug_dialog == NULL) { debug_dialog = new DebugDialog(); debug_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_debug_response)); debug_dialog->run(); } else { debug_dialog->present(); } } //! About Dialog. void Menus::on_menu_about() { if (about == NULL) { Glib::RefPtr pixbuf = GtkUtil::create_pixbuf("workrave.png"); about = new Gtk::AboutDialog; about->set_name("Workrave"); #ifdef HAVE_GTK3 std::vector authors; for (int index = 0; workrave_authors[index] != NULL; index++) { authors.push_back(workrave_authors[index]); } about->set_authors(authors); #else about->set_authors(workrave_authors); #endif about->set_copyright(workrave_copyright); about->set_comments( _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI).")); about->set_logo(pixbuf); about->set_translator_credits(workrave_translators); #if defined(PLATFORM_OS_WINDOWS) && !defined(HAVE_GTK3) about->set_url_hook(sigc::mem_fun(*this, &Menus::on_about_link_activate)); #endif #ifdef GIT_VERSION about->set_version(PACKAGE_VERSION "\n(" GIT_VERSION ")"); #else about->set_version(PACKAGE_VERSION); #endif about->set_website("http://www.workrave.org/"); about->set_website_label("www.workrave.org"); about->signal_response().connect(sigc::mem_fun(*this, &Menus::on_about_response)); } about->present(); } #ifdef PLATFORM_OS_WINDOWS void Menus::on_about_link_activate(Gtk::AboutDialog &about, const Glib::ustring &link) { (void)about; ShellExecute(NULL, "open", link.c_str(), NULL, NULL, SW_SHOWNORMAL); } #endif void Menus::on_about_response(int response) { (void)response; delete about; about = NULL; } void Menus::on_menu_network_join() { #ifdef HAVE_DISTRIBUTION if (network_join_dialog == NULL) { network_join_dialog = new NetworkJoinDialog(); network_join_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_network_join_response)); } network_join_dialog->present(); #endif } #ifdef HAVE_DISTRIBUTION void Menus::on_network_join_response(int response) { (void)response; assert(network_join_dialog != NULL); network_join_dialog->hide(); if (response == Gtk::RESPONSE_OK) { ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); std::string peer = network_join_dialog->get_connect_url(); dist_manager->connect(peer); CoreFactory::get_configurator()->save(); } delete network_join_dialog; network_join_dialog = NULL; } #endif void Menus::on_menu_network_leave() { #ifdef HAVE_DISTRIBUTION ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { dist_manager->disconnect_all(); } #endif } void Menus::on_menu_network_reconnect() { #ifdef HAVE_DISTRIBUTION ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { dist_manager->reconnect_all(); } #endif } void Menus::on_menu_network_log(bool active) { #ifdef HAVE_DISTRIBUTION TRACE_ENTER("Menus::on_menu_network_log"); if (active) { if (network_log_dialog == NULL) { network_log_dialog = new NetworkLogDialog(); network_log_dialog->signal_response().connect(sigc::mem_fun(*this, &Menus::on_network_log_response)); resync(); network_log_dialog->run(); } } else if (network_log_dialog != NULL) { network_log_dialog->hide(); delete network_log_dialog; network_log_dialog = NULL; resync(); } TRACE_EXIT(); #endif } #ifdef HAVE_DISTRIBUTION void Menus::on_network_log_response(int response) { TRACE_ENTER_MSG("Menus::on_network_log_response", response); (void)response; assert(network_log_dialog != NULL); network_log_dialog->hide(); // done by gtkmm ??? delete network_log_dialog; network_log_dialog = NULL; resync(); TRACE_EXIT(); } #endif void Menus::on_statistics_response(int response) { (void)response; assert(statistics_dialog != NULL); statistics_dialog->hide(); delete statistics_dialog; statistics_dialog = NULL; } void Menus::on_preferences_response(int response) { (void)response; assert(preferences_dialog != NULL); preferences_dialog->hide(); CoreFactory::get_configurator()->save(); delete preferences_dialog; preferences_dialog = NULL; } void Menus::on_debug_response(int response) { (void)response; assert(debug_dialog != NULL); debug_dialog->hide(); delete debug_dialog; debug_dialog = NULL; } void Menus::applet_command(short cmd) { switch (cmd) { case MENU_COMMAND_OPEN: on_menu_open_main_window(); break; case MENU_COMMAND_PREFERENCES: on_menu_preferences(); break; #ifdef HAVE_EXERCISES case MENU_COMMAND_EXERCISES: on_menu_exercises(); break; #endif case MENU_COMMAND_REST_BREAK: on_menu_restbreak_now(); break; case MENU_COMMAND_MODE_NORMAL: on_menu_normal(); break; case MENU_COMMAND_MODE_QUIET: on_menu_quiet(); break; case MENU_COMMAND_MODE_SUSPENDED: on_menu_suspend(); break; case MENU_COMMAND_NETWORK_CONNECT: on_menu_network_join(); break; case MENU_COMMAND_NETWORK_DISCONNECT: on_menu_network_leave(); break; #ifdef HAVE_DISTRIBUTION case MENU_COMMAND_NETWORK_LOG: on_menu_network_log(network_log_dialog == NULL); break; case MENU_COMMAND_NETWORK_RECONNECT: on_menu_network_reconnect(); break; #endif case MENU_COMMAND_STATISTICS: on_menu_statistics(); break; case MENU_COMMAND_ABOUT: on_menu_about(); break; case MENU_COMMAND_MODE_READING: { ICore *core = CoreFactory::get_core(); on_menu_reading(core->get_usage_mode() == USAGE_MODE_NORMAL); } break; case MENU_COMMAND_QUIT: on_menu_quit(); break; } } void Menus::resync() { static bool syncing = false; if (syncing) return; syncing = true; for (int i = 0; i < MENU_SIZEOF; i++) { if (menus[i] != NULL) { ICore *core = CoreFactory::get_core(); /* Use operation_mode_regular here to show the mode that will be restored if an override is in place. That is also necessary because if get_operation_mode() were called instead then that would cause a mode that's possibly an override to be returned. If that then the override mode menu item would be set_active() during the resync, and cause a signal that then calls back into core with the override mode as a regular mode. That would erase whatever the user's regular mode was. */ menus[i]->resync(core->get_operation_mode_regular(), core->get_usage_mode(), #ifdef HAVE_DISTRIBUTION network_log_dialog != NULL); #else false); #endif } } syncing = false; } void Menus::locale_changed() { static bool syncing = false; if (syncing) return; syncing = true; for (int i = 0; i < MENU_SIZEOF; i++) { if (menus[i] != NULL) { menus[i]->init(); } } resync(); syncing = false; } workrave-1.10.50/frontend/gtkmm/src/EventButton.hh0000644000175100001710000000206614221624107020751 0ustar00gdm00000000000000// EventButton.hh --- Button that receives events. // // Copyright (C) 2003, 2004, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EVENTBUTTON_HH #define EVENTBUTTON_HH #include class EventButton : public Gtk::Button { public: EventButton() {} sigc::signal button_pressed; private: bool on_button_press_event(GdkEventButton *event); }; #endif // EVENTBUTTON_HH workrave-1.10.50/frontend/gtkmm/src/unix/0000755000000000000000000000000014221624440020223 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/src/unix/desktop-window.c0000644000175100001710000000667514221624107022272 0ustar00gdm00000000000000#ifdef HAVE_CONFIG_H # include "config.h" #endif #include "desktop-window.h" #ifdef PLATFORM_OS_UNIX # include # include # include # include # ifdef HAVE_GTK3 # include # include // GTK3 compatibility # undef GDK_DISPLAY # define GDK_DISPLAY() GDK_DISPLAY_XDISPLAY(gdk_display_get_default()) # endif # ifndef GDK_WINDOW_XWINDOW # define GDK_WINDOW_XWINDOW(w) GDK_WINDOW_XID(w) # endif static Window get_desktop_window(Window the_window) { Atom prop, type, prop2; int format; unsigned long length, after; unsigned char *data; unsigned int nchildren; Window w, root, *children, parent; prop = XInternAtom(GDK_DISPLAY(), "_XROOTPMAP_ID", True); prop2 = XInternAtom(GDK_DISPLAY(), "_XROOTCOLOR_PIXEL", True); if (prop == None && prop2 == None) return None; for (w = the_window; w; w = parent) { if ((XQueryTree(GDK_DISPLAY(), w, &root, &parent, &children, &nchildren)) == False) return None; if (nchildren) XFree(children); if (prop != None) { XGetWindowProperty(GDK_DISPLAY(), w, prop, 0L, 1L, False, AnyPropertyType, &type, &format, &length, &after, &data); } else if (prop2 != None) { XGetWindowProperty(GDK_DISPLAY(), w, prop2, 0L, 1L, False, AnyPropertyType, &type, &format, &length, &after, &data); } else { continue; } if (type != None) { return w; } } return None; } static Pixmap get_pixmap_prop(Window the_window, char *prop_id) { Atom prop, type; int format; unsigned long length, after; unsigned char *data; Window desktop_window = get_desktop_window(the_window); if (desktop_window == None) desktop_window = GDK_ROOT_WINDOW(); if (desktop_window == None) return None; prop = XInternAtom(GDK_DISPLAY(), prop_id, True); if (prop == None) return None; XGetWindowProperty(GDK_DISPLAY(), desktop_window, prop, 0L, 1L, False, AnyPropertyType, &type, &format, &length, &after, &data); if (type == XA_PIXMAP) return *((Pixmap *)data); return None; } void set_desktop_background(GdkWindow *window) { Pixmap xpm = get_pixmap_prop(GDK_WINDOW_XWINDOW(window), "_XROOTPMAP_ID"); # ifdef HAVE_GTK3 if (xpm != None) { GdkScreen *screen = gdk_window_get_screen(window); GdkDisplay *display = gdk_window_get_display(window); Window root_return; int x, y; unsigned int width, height, bw, depth_ret; cairo_surface_t *surface = NULL; gdk_x11_display_error_trap_push(display); if (XGetGeometry(GDK_SCREEN_XDISPLAY(screen), xpm, &root_return, &x, &y, &width, &height, &bw, &depth_ret)) { surface = cairo_xlib_surface_create( GDK_SCREEN_XDISPLAY(screen), xpm, GDK_VISUAL_XVISUAL(gdk_screen_get_system_visual(screen)), width, height); } gdk_x11_display_error_trap_pop_ignored(display); cairo_pattern_t *pattern = cairo_pattern_create_for_surface(surface); gdk_window_set_background_pattern(window, pattern); cairo_surface_destroy(surface); } else { GdkRGBA black = {0.0, 0.0, 0.0, 1.0}; gdk_window_set_background_rgba(window, &black); } # else if (xpm != None) { GdkPixmap *gpm = gdk_pixmap_foreign_new(xpm); gdk_window_set_back_pixmap(window, gpm, FALSE); g_object_unref(gpm); } # endif } #endif workrave-1.10.50/frontend/gtkmm/src/unix/Makefile.in0000644000000000000000000006445414221624202022301 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/src/unix ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libworkrave_frontend_gtkmm_unix_a_AR = $(AR) $(ARFLAGS) libworkrave_frontend_gtkmm_unix_a_LIBADD = am__libworkrave_frontend_gtkmm_unix_a_SOURCES_DIST = desktop-window.c @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@am_libworkrave_frontend_gtkmm_unix_a_OBJECTS = libworkrave_frontend_gtkmm_unix_a-desktop-window.$(OBJEXT) libworkrave_frontend_gtkmm_unix_a_OBJECTS = \ $(am_libworkrave_frontend_gtkmm_unix_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_frontend_gtkmm_unix_a_SOURCES) DIST_SOURCES = $(am__libworkrave_frontend_gtkmm_unix_a_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@noinst_LIBRARIES = libworkrave-frontend-gtkmm-unix.a @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@libworkrave_frontend_gtkmm_unix_a_SOURCES = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ desktop-window.c @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@libworkrave_frontend_gtkmm_unix_a_CFLAGS = \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ @X_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ -W -I$(top_srcdir)/frontend/common/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ -I$(top_srcdir)/backend/include \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ -I $(top_srcdir)/common/include/unix \ @HAVE_APP_GTKMM_TRUE@@PLATFORM_OS_UNIX_TRUE@ -I $(top_srcdir)/common/include all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/src/unix/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/src/unix/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libworkrave-frontend-gtkmm-unix.a: $(libworkrave_frontend_gtkmm_unix_a_OBJECTS) $(libworkrave_frontend_gtkmm_unix_a_DEPENDENCIES) $(EXTRA_libworkrave_frontend_gtkmm_unix_a_DEPENDENCIES) $(AM_V_at)-rm -f libworkrave-frontend-gtkmm-unix.a $(AM_V_AR)$(libworkrave_frontend_gtkmm_unix_a_AR) libworkrave-frontend-gtkmm-unix.a $(libworkrave_frontend_gtkmm_unix_a_OBJECTS) $(libworkrave_frontend_gtkmm_unix_a_LIBADD) $(AM_V_at)$(RANLIB) libworkrave-frontend-gtkmm-unix.a mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_frontend_gtkmm_unix_a-desktop-window.o: desktop-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_unix_a_CFLAGS) $(CFLAGS) -MT libworkrave_frontend_gtkmm_unix_a-desktop-window.o -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Tpo -c -o libworkrave_frontend_gtkmm_unix_a-desktop-window.o `test -f 'desktop-window.c' || echo '$(srcdir)/'`desktop-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='desktop-window.c' object='libworkrave_frontend_gtkmm_unix_a-desktop-window.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) $(libworkrave_frontend_gtkmm_unix_a_CFLAGS) $(CFLAGS) -c -o libworkrave_frontend_gtkmm_unix_a-desktop-window.o `test -f 'desktop-window.c' || echo '$(srcdir)/'`desktop-window.c libworkrave_frontend_gtkmm_unix_a-desktop-window.obj: desktop-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_frontend_gtkmm_unix_a_CFLAGS) $(CFLAGS) -MT libworkrave_frontend_gtkmm_unix_a-desktop-window.obj -MD -MP -MF $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Tpo -c -o libworkrave_frontend_gtkmm_unix_a-desktop-window.obj `if test -f 'desktop-window.c'; then $(CYGPATH_W) 'desktop-window.c'; else $(CYGPATH_W) '$(srcdir)/desktop-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Tpo $(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='desktop-window.c' object='libworkrave_frontend_gtkmm_unix_a-desktop-window.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) $(libworkrave_frontend_gtkmm_unix_a_CFLAGS) $(CFLAGS) -c -o libworkrave_frontend_gtkmm_unix_a-desktop-window.obj `if test -f 'desktop-window.c'; then $(CYGPATH_W) 'desktop-window.c'; else $(CYGPATH_W) '$(srcdir)/desktop-window.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/libworkrave_frontend_gtkmm_unix_a-desktop-window.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/src/unix/desktop-window.h0000644000175100001710000000041214221624107022256 0ustar00gdm00000000000000#ifndef DESKTOP_WINDOW_H #define DESKTOP_WINDOW_H #ifdef PLATFORM_OS_UNIX # include # ifdef __cplusplus extern "C" { # endif void set_desktop_background(GdkWindow *window); # ifdef __cplusplus } # endif #endif #endif /* DESKTOP_WINDOW_H */ workrave-1.10.50/frontend/gtkmm/src/unix/Makefile.am0000644000175100001710000000150514221624107021167 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.cc) \ $(wildcard $(srcdir)/*.c) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) if HAVE_APP_GTKMM if PLATFORM_OS_UNIX noinst_LIBRARIES = libworkrave-frontend-gtkmm-unix.a libworkrave_frontend_gtkmm_unix_a_SOURCES = \ desktop-window.c libworkrave_frontend_gtkmm_unix_a_CFLAGS = \ @X_CFLAGS@ \ -W -I$(top_srcdir)/frontend/common/include \ -I$(top_srcdir)/backend/include \ -I $(top_srcdir)/frontend/gtkmm/src @GTK_CFLAGS@ \ -I $(top_srcdir)/common/include/unix \ -I $(top_srcdir)/common/include endif endif workrave-1.10.50/frontend/gtkmm/src/AppletControl.hh0000644000175100001710000000315414221624107021261 0ustar00gdm00000000000000// AppletControl.hh --- Applet window // // Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef APPLETCONTROL_HH #define APPLETCONTROL_HH #include "preinclude.h" #include #include #include "IAppletWindow.hh" class AppletControl { public: enum class AppletType { Tray, GenericDBus, Windows, MacOS, }; AppletControl() = default; ~AppletControl() = default; void init(); void heartbeat(); void set_tooltip(std::string &tip); std::shared_ptr get_applet_window(AppletType type); bool is_visible() const; sigc::signal &signal_visibility_changed(); private: std::map> applets; bool enabled{false}; bool visible{false}; sigc::signal visibility_changed_signal; private: void on_applet_visibility_changed(AppletType type, bool visible); void check_visible(); }; #endif // APPLETCONTROL_HH workrave-1.10.50/frontend/gtkmm/src/Hig.cc0000644000175100001710000000631314221624107017170 0ustar00gdm00000000000000#ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "Hig.hh" #include "GtkUtil.hh" HigDialog::HigDialog() { set_hig_defaults(); } HigDialog::HigDialog(const Glib::ustring &title, bool modal, bool use_separator) #ifdef HAVE_GTK3 : Gtk::Dialog(title, modal) #else : Gtk::Dialog(title, modal, use_separator) #endif { (void)use_separator; set_hig_defaults(); vbox = NULL; } Gtk::VBox * HigDialog::get_vbox() { if (vbox == NULL) { vbox = Gtk::manage(new Gtk::VBox()); vbox->set_border_width(6); Gtk::Dialog::get_vbox()->pack_start(*vbox, true, true, 0); } return vbox; } void HigDialog::set_hig_defaults() { set_border_width(6); } HigCategoryPanel::HigCategoryPanel(Gtk::Widget &lab, bool fill) { init(lab, fill); } HigCategoryPanel::HigCategoryPanel(const char *lab, bool fill) { Gtk::Label *widg = Gtk::manage(GtkUtil::create_label(std::string(lab), true)); widg->set_alignment(0.0); init(*widg, fill); } void HigCategoryPanel::init(Gtk::Widget &lab, bool fill) { size_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_HORIZONTAL); set_spacing(6); pack_start(lab, false, false, 0); Gtk::HBox *ibox = Gtk::manage(new Gtk::HBox()); pack_start(*ibox, fill, fill, 0); Gtk::Label *indent_lab = Gtk::manage(new Gtk::Label(" ")); ibox->pack_start(*indent_lab, false, false, 0); options_box = Gtk::manage(new Gtk::VBox()); ibox->pack_start(*options_box, true, true, 0); options_box->set_spacing(6); } Gtk::Label * HigCategoryPanel::add_label(const char *text, Gtk::Widget &widget, bool expand, bool fill) { Gtk::Label *lab = Gtk::manage(new Gtk::Label(text)); add_label(*lab, widget, expand, fill); return lab; } void HigCategoryPanel::add_label(Gtk::Label &label, Gtk::Widget &widget, bool expand, bool fill) { label.set_alignment(0.0); size_group->add_widget(label); Gtk::HBox *box = Gtk::manage(new Gtk::HBox()); box->set_spacing(6); box->pack_start(label, false, true, 0); box->pack_start(widget, expand, fill, 0); options_box->pack_start(*box, false, false, 0); } void HigCategoryPanel::add_widget(Gtk::Widget &widget, bool expand, bool fill) { options_box->pack_start(widget, expand, fill, 0); } void HigCategoryPanel::add_caption(const char *text) { Gtk::Label *lab = Gtk::manage(GtkUtil::create_label(std::string(text), true)); lab->set_alignment(0.0); add_caption(*lab); } void HigCategoryPanel::add_caption(Gtk::Widget &lab) { pack_start(lab, false, false, 0); Gtk::HBox *ibox = Gtk::manage(new Gtk::HBox()); pack_start(*ibox, false, false, 0); Gtk::Label *indent_lab = Gtk::manage(new Gtk::Label(" ")); ibox->pack_start(*indent_lab, false, false, 0); options_box = Gtk::manage(new Gtk::VBox()); ibox->pack_start(*options_box, false, false, 0); options_box->set_spacing(6); } HigCategoriesPanel::HigCategoriesPanel() { set_spacing(18); } void HigCategoriesPanel::add(Gtk::Widget &panel) { pack_start(panel, false, false, 0); } Glib::ustring HigUtil::create_alert_text(const char *caption, const char *body) { Glib::ustring txt = ""; txt += caption; txt += ""; if (body != NULL) { txt += "\n\n"; txt += body; } return txt; } workrave-1.10.50/frontend/gtkmm/src/org.workrave.Workrave.service.in0000644000175100001710000000011214221624107024355 0ustar00gdm00000000000000[D-BUS Service] Name=org.workrave.Workrave Exec=@workravebindir@/workrave workrave-1.10.50/frontend/gtkmm/src/TimeBar.cc0000644000175100001710000004746714221624107020023 0ustar00gdm00000000000000// TimeBar.cc --- Time Bar // // Copyright (C) 2002 - 2009, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include #include #include #include #include "TimeBar.hh" #include "Text.hh" #include "GtkUtil.hh" const int MARGINX = 4; const int MARGINY = 2; const int MIN_HORIZONTAL_BAR_WIDTH = 12; const int MIN_HORIZONTAL_BAR_HEIGHT = 20; // stolen from gtk's progress bar using namespace std; Gdk::Color TimeBar::bar_colors[TimeBar::COLOR_ID_SIZEOF] = { Gdk::Color("lightblue"), Gdk::Color("lightgreen"), Gdk::Color("orange"), Gdk::Color("red"), Gdk::Color("#e00000"), Gdk::Color("#00d4b2"), Gdk::Color("lightgreen"), }; //! Constructor TimeBar::TimeBar() : bar_value(0) , bar_max_value(0) , secondary_bar_value(0) , secondary_bar_max_value(0) , bar_text_align(0) , rotation(0) { add_events(Gdk::EXPOSURE_MASK); add_events(Gdk::BUTTON_PRESS_MASK); set_bar_color(COLOR_ID_INACTIVE); set_secondary_bar_color(COLOR_ID_INACTIVE); set_text_color(Gdk::Color("black")); GtkUtil::set_theme_fg_color(this); } //! Destructor TimeBar::~TimeBar() {} //! Sets the time progress to be displayed. void TimeBar::set_progress(int value, int max_value) { if (value > max_value) { value = max_value; } bar_value = value; bar_max_value = max_value; } //! Sets the secondary time progress to be displayed. void TimeBar::set_secondary_progress(int value, int max_value) { if (value > max_value) { value = max_value; } secondary_bar_value = value; secondary_bar_max_value = max_value; } //! Sets the text to be displayed. void TimeBar::set_text(string text) { bar_text = text; } //! Sets text alignment void TimeBar::set_text_alignment(int align) { bar_text_align = align; } //! Sets the color of the bar. void TimeBar::set_bar_color(ColorId color) { bar_color = color; } //! Sets the color of the secondary bar. void TimeBar::set_secondary_bar_color(ColorId color) { secondary_bar_color = color; } //! Sets the text color. void TimeBar::set_text_color(Gdk::Color color) { bar_text_color = color; } void TimeBar::set_rotation(int r) { rotation = r; queue_resize(); } //! Updates the screen. void TimeBar::update() { queue_draw(); } void TimeBar::on_size_allocate(Gtk::Allocation &allocation) { // Use the offered allocation for this container: set_allocation(allocation); if ( #ifdef HAVE_GTK3 get_realized() #else is_realized() #endif ) { get_window()->move_resize(allocation.get_x(), allocation.get_y(), allocation.get_width(), allocation.get_height()); } } //! Returns the preferred size. void TimeBar::get_preferred_size(int &width, int &height) const { // Not sure why create_pango_layout is not const... Glib::RefPtr pl = const_cast(this)->create_pango_layout(bar_text); string min_string = Text::time_to_string(-(59 + 59 * 60 + 9 * 60 * 60)); Glib::RefPtr plmin = const_cast(this)->create_pango_layout(min_string); Glib::RefPtr pcl = pl->get_context(); Glib::RefPtr pcmin = plmin->get_context(); Pango::Matrix matrix = PANGO_MATRIX_INIT; pango_matrix_rotate(&matrix, 360 - rotation); pcl->set_matrix(matrix); pcmin->set_matrix(matrix); pl->get_pixel_size(width, height); int mwidth, mheight; plmin->get_pixel_size(mwidth, mheight); if (mwidth > width) width = mwidth; if (mheight > height) height = mheight; width = width + 2 * MARGINX; height = max(height + 2 * MARGINY, MIN_HORIZONTAL_BAR_HEIGHT); } #ifndef HAVE_GTK3 void TimeBar::on_realize() { // FIXME: for some reason, the timebar get realized EACH TIME // the timerbox is cycled... // We need to call the base on_realize() Gtk::DrawingArea::on_realize(); // Now we can allocate any additional resources we need Glib::RefPtr window = get_window(); window_gc = Gdk::GC::create(window); Glib::RefPtr style = get_style(); Gdk::Color bg = style->get_bg(Gtk::STATE_NORMAL); bar_colors[COLOR_ID_BG] = bg; Glib::RefPtr colormap = get_colormap(); for (int i = 0; i < COLOR_ID_SIZEOF; i++) { colormap->alloc_color(bar_colors[i]); } window->clear(); } void TimeBar::on_size_request(GtkRequisition *requisition) { int width, height; get_preferred_size(width, height); if (rotation == 0 || rotation == 180) { requisition->width = width; requisition->height = height; } else { requisition->width = height; requisition->height = width; } } //! Draws the timebar bool TimeBar::on_expose_event(GdkEventExpose *e) { const int border_size = 2; Gtk::Allocation allocation = get_allocation(); Glib::RefPtr window = get_window(); Glib::RefPtr colormap = get_colormap(); for (int i = 0; i < COLOR_ID_SIZEOF; i++) { colormap->alloc_color(bar_colors[i]); } // Physical width/height int win_w = allocation.get_width(); int win_h = allocation.get_height(); // Logical width/height // width = direction of bar int win_lw, win_lh; if (rotation == 0 || rotation == 180) { win_lw = win_w; win_lh = win_h; } else { win_lw = win_h; win_lh = win_w; } // Border Gdk::Rectangle area(&e->area); Glib::RefPtr style = get_style(); Gdk::Color bg = style->get_bg(Gtk::STATE_NORMAL); bar_colors[COLOR_ID_BG] = bg; // Draw background window_gc->set_foreground(bar_colors[COLOR_ID_BG]); style->paint_shadow(window, Gtk::STATE_NORMAL, Gtk::SHADOW_IN, area, *this, "", 0, 0, win_w - 1, win_h - 1); window->draw_rectangle(window_gc, true, e->area.x + border_size, e->area.y + border_size, e->area.width - 2 * border_size, e->area.height - 2 * border_size); // Bar int bar_width = 0; if (bar_max_value > 0) { bar_width = (bar_value * (win_lw - 2 * border_size)) / bar_max_value; } // Secondary bar int sbar_width = 0; if (secondary_bar_max_value > 0) { sbar_width = (secondary_bar_value * (win_lw - 2 * border_size)) / secondary_bar_max_value; } int bar_height = win_lh - 2 * border_size; if (sbar_width > 0) { // Overlap // We should assert() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. // assert(secondary_bar_color == COLOR_ID_INACTIVE); ColorId overlap_color; switch (bar_color) { case COLOR_ID_ACTIVE: overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; break; case COLOR_ID_OVERDUE: overlap_color = COLOR_ID_INACTIVE_OVER_OVERDUE; break; default: // We could abort() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; } if (sbar_width >= bar_width) { if (bar_width) { window_gc->set_foreground(bar_colors[overlap_color]); draw_bar(window, window_gc, true, border_size, border_size, bar_width, bar_height, win_lw, win_lh); } if (sbar_width > bar_width) { window_gc->set_foreground(bar_colors[secondary_bar_color]); draw_bar( window, window_gc, true, border_size + bar_width, border_size, sbar_width - bar_width, bar_height, win_lw, win_lh); } } else { if (sbar_width) { window_gc->set_foreground(bar_colors[overlap_color]); draw_bar(window, window_gc, true, border_size, border_size, sbar_width, bar_height, win_lw, win_lh); } window_gc->set_foreground(bar_colors[bar_color]); draw_bar( window, window_gc, true, border_size + sbar_width, border_size, bar_width - sbar_width, bar_height, win_lw, win_lh); } } else { // No overlap window_gc->set_foreground(bar_colors[bar_color]); draw_bar(window, window_gc, true, border_size, border_size, bar_width, bar_height, win_lw, win_lh); } // Text window_gc->set_foreground(bar_text_color); Glib::RefPtr pl1 = create_pango_layout(bar_text); Glib::RefPtr pc1 = pl1->get_context(); Pango::Matrix matrix = PANGO_MATRIX_INIT; pango_matrix_rotate(&matrix, 360 - rotation); pc1->set_matrix(matrix); int text_width, text_height; pl1->get_pixel_size(text_width, text_height); int text_x, text_y; Gdk::Rectangle rect1, rect2; if (rotation == 0 || rotation == 180) { if (win_w - text_width - MARGINX > 0) { if (bar_text_align > 0) text_x = (win_w - text_width - MARGINX); else if (bar_text_align < 0) text_x = MARGINX; else text_x = (win_w - text_width) / 2; } else { text_x = MARGINX; } text_y = (win_h - text_height) / 2; int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; left_width += border_size; Gdk::Rectangle left_rect(0, 0, left_width, win_h); Gdk::Rectangle right_rect(left_width, 0, win_w - left_width, win_h); rect1 = left_rect; rect2 = right_rect; } else { if (win_h - text_width - MARGINY > 0) { int a = bar_text_align; if (rotation == 270) { a *= -1; } if (a > 0) text_y = (win_h - text_width - MARGINY); else if (a < 0) text_y = MARGINY; else text_y = (win_h - text_width) / 2; } else { text_y = MARGINY; } text_x = (win_w - text_height) / 2; int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; left_width += border_size; Gdk::Rectangle up_rect(0, 0, win_w, left_width); Gdk::Rectangle down_rect(0, left_width, win_w, win_h - left_width); rect1 = up_rect; rect2 = down_rect; } Gdk::Color textcolor = style->get_fg(Gtk::STATE_NORMAL); Glib::RefPtr window_gc1 = Gdk::GC::create(window); window_gc1->set_clip_origin(0, 0); window_gc1->set_clip_rectangle(rect1); window_gc1->set_foreground(bar_text_color); window->draw_layout(window_gc1, text_x, text_y, pl1); window_gc1->set_foreground(textcolor); window_gc1->set_clip_rectangle(rect2); window->draw_layout(window_gc1, text_x, text_y, pl1); return true; } void TimeBar::draw_bar(Glib::RefPtr &window, const Glib::RefPtr &gc, bool filled, int x, int y, int width, int height, int winw, int winh) { (void)winh; if (rotation == 0 || rotation == 180) { window->draw_rectangle(gc, filled, x, y, width, height); } else { window->draw_rectangle(gc, filled, y, winw - x - width, height, width); } } #else Gtk::SizeRequestMode TimeBar::get_request_mode_vfunc() const { return Gtk::Widget::get_request_mode_vfunc(); } void TimeBar::get_preferred_width_vfunc(int &minimum_width, int &natural_width) const { int width, height; get_preferred_size(width, height); if (rotation == 0 || rotation == 180) { minimum_width = natural_width = width; } else { minimum_width = natural_width = height; } } void TimeBar::get_preferred_height_vfunc(int &minimum_height, int &natural_height) const { int width, height; get_preferred_size(width, height); if (rotation == 0 || rotation == 180) { minimum_height = natural_height = height; } else { minimum_height = natural_height = width; } } void TimeBar::get_preferred_width_for_height_vfunc(int /* height */, int &minimum_width, int &natural_width) const { get_preferred_width_vfunc(minimum_width, natural_width); } void TimeBar::get_preferred_height_for_width_vfunc(int /* width */, int &minimum_height, int &natural_height) const { get_preferred_height_vfunc(minimum_height, natural_height); } bool TimeBar::on_draw(const Cairo::RefPtr &cr) { const int border_size = 1; Glib::RefPtr style_context = get_style_context(); Gtk::Allocation allocation = get_allocation(); style_context->context_save(); style_context->add_class(GTK_STYLE_CLASS_FRAME); // Physical width/height int win_w = allocation.get_width() - 2; // FIXME: int win_h = allocation.get_height(); // Logical width/height // width = direction of bar int win_lw, win_lh; if (rotation == 0 || rotation == 180) { win_lw = win_w; win_lh = win_h; } else { win_lw = win_h; win_lh = win_w; } // Draw background style_context->set_state(Gtk::STATE_FLAG_ACTIVE); Gdk::RGBA back_color = style_context->get_background_color(); set_color(cr, back_color); // clip to the area indicated by the expose event so that we only redraw // the portion of the window that needs to be redrawn cr->rectangle(0, 0, win_w, win_h); cr->clip(); style_context->context_save(); style_context->set_state((Gtk::StateFlags)Gtk::STATE_FLAG_ACTIVE); style_context->render_background(cr, 0, 0, win_w - 1, win_h - 1); style_context->render_frame(cr, 0, 0, win_w - 1, win_h - 1); style_context->context_restore(); // set_color(cr, back_color); // cr->rectangle(border_size, border_size, win_w - 2*border_size, win_h - 2*border_size); // cr->fill(); // Bar int bar_width = 0; if (bar_max_value > 0) { bar_width = (bar_value * (win_lw - 2 * border_size - 1)) / bar_max_value; } // Secondary bar int sbar_width = 0; if (secondary_bar_max_value > 0) { sbar_width = (secondary_bar_value * (win_lw - 2 * border_size - 1)) / secondary_bar_max_value; } int bar_height = win_lh - 2 * border_size - 1; if (sbar_width > 0) { // Overlap // We should assert() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. // assert(secondary_bar_color == COLOR_ID_INACTIVE); ColorId overlap_color; switch (bar_color) { case COLOR_ID_ACTIVE: overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; break; case COLOR_ID_OVERDUE: overlap_color = COLOR_ID_INACTIVE_OVER_OVERDUE; break; default: // We could abort() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; } if (sbar_width >= bar_width) { if (bar_width) { set_color(cr, bar_colors[overlap_color]); draw_bar(cr, border_size, border_size, bar_width, bar_height, win_lw, win_lh); } if (sbar_width > bar_width) { set_color(cr, bar_colors[secondary_bar_color]); draw_bar(cr, border_size + bar_width, border_size, sbar_width - bar_width, bar_height, win_lw, win_lh); } } else { if (sbar_width) { set_color(cr, bar_colors[overlap_color]); draw_bar(cr, border_size, border_size, sbar_width, bar_height, win_lw, win_lh); } set_color(cr, bar_colors[bar_color]); draw_bar(cr, border_size + sbar_width, border_size, bar_width - sbar_width, bar_height, win_lw, win_lh); } } else { // No overlap set_color(cr, bar_colors[bar_color]); draw_bar(cr, border_size, border_size, bar_width, bar_height, win_lw, win_lh); } style_context->context_restore(); style_context->context_save(); // Text Pango::Matrix matrix = PANGO_MATRIX_INIT; pango_matrix_rotate(&matrix, 360 - rotation); Glib::RefPtr pl1 = create_pango_layout(bar_text); Glib::RefPtr pc1 = pl1->get_context(); pc1->set_matrix(matrix); int text_width, text_height; pl1->get_pixel_size(text_width, text_height); int text_x, text_y; Gdk::Rectangle rect1, rect2; if (rotation == 0 || rotation == 180) { if (win_w - text_width - MARGINX > 0) { if (bar_text_align > 0) text_x = (win_w - text_width - MARGINX); else if (bar_text_align < 0) text_x = MARGINX; else text_x = (win_w - text_width) / 2; } else { text_x = MARGINX; } text_y = (win_h - text_height) / 2; int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; left_width += border_size; Gdk::Rectangle left_rect(0, 0, left_width, win_h); Gdk::Rectangle right_rect(left_width, 0, win_w - left_width, win_h); rect1 = left_rect; rect2 = right_rect; } else { if (win_h - text_width - MARGINY > 0) { int a = bar_text_align; if (rotation == 270) { a *= -1; } if (a > 0) text_y = (win_h - text_width - MARGINY); else if (a < 0) text_y = MARGINY; else text_y = (win_h - text_width) / 2; } else { text_y = MARGINY; } text_x = (win_w - text_height) / 2; int left_width = (bar_width > sbar_width) ? bar_width : sbar_width; left_width += border_size; Gdk::Rectangle up_rect(0, 0, win_w, left_width); Gdk::Rectangle down_rect(0, left_width, win_w, win_h - left_width); rect1 = up_rect; rect2 = down_rect; } cr->reset_clip(); cr->rectangle(rect1.get_x(), rect1.get_y(), rect1.get_width(), rect1.get_height()); cr->clip(); cr->move_to(text_x, text_y); set_color(cr, bar_text_color); pl1->show_in_cairo_context(cr); cr->reset_clip(); cr->rectangle(rect2.get_x(), rect2.get_y(), rect2.get_width(), rect2.get_height()); cr->clip(); set_color(cr, style_context->get_color(Gtk::STATE_FLAG_ACTIVE)); cr->move_to(text_x, text_y); pl1->show_in_cairo_context(cr); style_context->context_restore(); return Gtk::Widget::on_draw(cr); } void TimeBar::set_color(const Cairo::RefPtr &cr, const Gdk::Color &color) { cr->set_source_rgba(color.get_red_p(), color.get_green_p(), color.get_blue_p(), 1); } void TimeBar::set_color(const Cairo::RefPtr &cr, const Gdk::RGBA &color) { cr->set_source_rgba(color.get_red(), color.get_green(), color.get_blue(), 1); } void TimeBar::draw_bar(const Cairo::RefPtr &cr, int x, int y, int width, int height, int winw, int winh) { (void)winh; if (rotation == 0 || rotation == 180) { cr->rectangle(x, y, width, height); cr->fill(); } else { cr->rectangle(y, winw - x - width, height, width); cr->fill(); } } #endif workrave-1.10.50/frontend/gtkmm/src/TimerBoxPreferencePage.cc0000644000175100001710000002751714221624107023017 0ustar00gdm00000000000000// TimerBoxPreferencePage.cc --- Preferences widgets for a timer // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include #include "nls.h" #include "debug.hh" #include "TimerBoxPreferencePage.hh" #include "IBreak.hh" #include "IConfigurator.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "CoreConfig.hh" #include "GtkUtil.hh" #include "Hig.hh" #include "GUIConfig.hh" #include "TimerBoxControl.hh" //! Constructs the Applet Preference Notebook page. TimerBoxPreferencePage::TimerBoxPreferencePage(std::string n) : Gtk::HBox(false, 6) , name(n) , ontop_cb(nullptr) { TRACE_ENTER("TimerBoxPreferencePage::TimerBoxPreferencePage"); create_page(); init_page_values(); enable_buttons(); init_page_callbacks(); IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(TimerBoxControl::CFG_KEY_TIMERBOX + name, this); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { ICore *core = CoreFactory::get_core(); assert(core != NULL); config->add_listener(CoreConfig::CFG_KEY_BREAK_ENABLED % BreakId(i), this); } TRACE_EXIT(); } //! Destructs the Applet Preference Notebook page. TimerBoxPreferencePage::~TimerBoxPreferencePage() { TRACE_ENTER("TimerBoxPreferencePage::~TimerBoxPreferencePage"); IConfigurator *config = CoreFactory::get_configurator(); config->remove_listener(this); TRACE_EXIT(); } //! Initializes all widgets. void TimerBoxPreferencePage::create_page() { // Placement place_button = Gtk::manage(new Gtk::ComboBoxText()); #if GTKMM_CHECK_VERSION(2, 24, 0) place_button->append(_("Place timers next to each other")); place_button->append(_("Place micro-break and rest break in one spot")); place_button->append(_("Place rest break and daily limit in one spot")); place_button->append(_("Place all timers in one spot")); #else place_button->append_text(_("Place timers next to each other")); place_button->append_text(_("Place micro-break and rest break in one spot")); place_button->append_text(_("Place rest break and daily limit in one spot")); place_button->append_text(_("Place all timers in one spot")); #endif // Cycle time spin button. cycle_entry = Gtk::manage(new Gtk::SpinButton()); cycle_entry->set_range(1, 999); cycle_entry->set_increments(1, 10); cycle_entry->set_numeric(true); cycle_entry->set_width_chars(3); cycle_entry->signal_changed().connect(sigc::mem_fun(*this, &TimerBoxPreferencePage::on_cycle_time_changed)); // Timer display for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Gtk::ComboBoxText *display_button = Gtk::manage(new Gtk::ComboBoxText()); timer_display_button[i] = display_button; #if GTKMM_CHECK_VERSION(2, 24, 0) display_button->append(_("Hide")); display_button->append(_("Show")); display_button->append(_("Show only when this timer is first due")); #else display_button->append_text(_("Hide")); display_button->append_text(_("Show")); display_button->append_text(_("Show only when this timer is first due")); #endif } HigCategoryPanel *hig = Gtk::manage(new HigCategoryPanel(_("Display"))); if (name == "main_window") { // Always-on-top if (!GtkUtil::running_on_wayland()) { ontop_cb = Gtk::manage(new Gtk::CheckButton(_("The status window stays always on top of other windows"))); ontop_cb->signal_toggled().connect(sigc::mem_fun(*this, &TimerBoxPreferencePage::on_always_on_top_toggled)); ontop_cb->set_active(GUIConfig::get_always_on_top()); } Gtk::Label *enabled_lab = Gtk::manage(GtkUtil::create_label(_("Show status window"), false)); enabled_cb = Gtk::manage(new Gtk::CheckButton()); enabled_cb->add(*enabled_lab); hig->add_widget(*enabled_cb); } if (ontop_cb != nullptr) { hig->add_widget(*ontop_cb); } hig->add_label(_("Placement:"), *place_button); hig->add_label(_("Cycle time:"), *cycle_entry); hig->add_caption(_("Timers")); // Layout hig->add_label(_("Micro-break:"), *timer_display_button[0]); hig->add_label(_("Rest break:"), *timer_display_button[1]); hig->add_label(_("Daily limit:"), *timer_display_button[2]); if (name == "applet") { Gtk::Label *applet_fallback_enabled_lab = Gtk::manage(GtkUtil::create_label(_("Fallback applet enabled"), false)); applet_fallback_enabled_cb = Gtk::manage(new Gtk::CheckButton()); applet_fallback_enabled_cb->add(*applet_fallback_enabled_lab); hig->add_widget(*applet_fallback_enabled_cb); Gtk::Label *applet_icon_enabled_lab = Gtk::manage(GtkUtil::create_label(_("Show status icon"), false)); applet_icon_enabled_cb = Gtk::manage(new Gtk::CheckButton()); applet_icon_enabled_cb->add(*applet_icon_enabled_lab); hig->add_widget(*applet_icon_enabled_cb); } pack_end(*hig, true, true, 0); set_border_width(12); } //! Retrieves the applet configuration and sets the widgets. void TimerBoxPreferencePage::init_page_values() { int mp_slot = TimerBoxControl::get_timer_slot(name, BREAK_ID_MICRO_BREAK); int rb_slot = TimerBoxControl::get_timer_slot(name, BREAK_ID_REST_BREAK); int dl_slot = TimerBoxControl::get_timer_slot(name, BREAK_ID_DAILY_LIMIT); int place; if (mp_slot < rb_slot && rb_slot < dl_slot) { place = 0; } else if (mp_slot == rb_slot && rb_slot == dl_slot) { place = 3; } else if (mp_slot == rb_slot) { place = 1; } else { place = 2; } place_button->set_active(place); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { int flags = TimerBoxControl::get_timer_flags(name, (BreakId)i); int showhide; if (flags & TimerBoxControl::BREAK_HIDE) { showhide = 0; } else if (flags & TimerBoxControl::BREAK_WHEN_FIRST) { showhide = 2; } else { showhide = 1; } timer_display_button[i]->set_active(showhide); } cycle_entry->set_value(TimerBoxControl::get_cycle_time(name)); if (enabled_cb != nullptr) { enabled_cb->set_active(TimerBoxControl::is_enabled(name)); } if (name == "applet") { applet_fallback_enabled_cb->set_active(GUIConfig::is_applet_fallback_enabled()); applet_icon_enabled_cb->set_active(GUIConfig::is_applet_icon_enabled()); } enable_buttons(); } void TimerBoxPreferencePage::init_page_callbacks() { place_button->signal_changed().connect(sigc::mem_fun(*this, &TimerBoxPreferencePage::on_place_changed)); if (enabled_cb != nullptr) { enabled_cb->signal_toggled().connect(sigc::mem_fun(*this, &TimerBoxPreferencePage::on_enabled_toggled)); } if (applet_fallback_enabled_cb != nullptr) { applet_fallback_enabled_cb->signal_toggled().connect( sigc::mem_fun(*this, &TimerBoxPreferencePage::on_applet_fallback_enabled_toggled)); } if (applet_icon_enabled_cb != nullptr) { applet_icon_enabled_cb->signal_toggled().connect( sigc::mem_fun(*this, &TimerBoxPreferencePage::on_applet_icon_enabled_toggled)); } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { timer_display_button[i]->signal_changed().connect(bind(sigc::mem_fun(*this, &TimerBoxPreferencePage::on_display_changed), i)); } } //! The applet on/off checkbox has been toggled. void TimerBoxPreferencePage::on_enabled_toggled() { bool on = enabled_cb->get_active(); TimerBoxControl::set_enabled(name, on); enable_buttons(); } void TimerBoxPreferencePage::on_applet_fallback_enabled_toggled() { bool on = applet_fallback_enabled_cb->get_active(); GUIConfig::set_applet_fallback_enabled(on); } void TimerBoxPreferencePage::on_applet_icon_enabled_toggled() { bool on = applet_icon_enabled_cb->get_active(); GUIConfig::set_applet_icon_enabled(on); } //! The placement is changed. void TimerBoxPreferencePage::on_place_changed() { int slots[BREAK_ID_SIZEOF]; int idx = place_button->get_active_row_number(); switch (idx) { case 0: slots[BREAK_ID_MICRO_BREAK] = 0; slots[BREAK_ID_REST_BREAK] = 1; slots[BREAK_ID_DAILY_LIMIT] = 2; break; case 1: slots[BREAK_ID_MICRO_BREAK] = 0; slots[BREAK_ID_REST_BREAK] = 0; slots[BREAK_ID_DAILY_LIMIT] = 1; break; case 2: slots[BREAK_ID_MICRO_BREAK] = 0; slots[BREAK_ID_REST_BREAK] = 1; slots[BREAK_ID_DAILY_LIMIT] = 1; break; case 3: slots[BREAK_ID_MICRO_BREAK] = 0; slots[BREAK_ID_REST_BREAK] = 0; slots[BREAK_ID_DAILY_LIMIT] = 0; break; default: slots[BREAK_ID_MICRO_BREAK] = -1; slots[BREAK_ID_REST_BREAK] = -1; slots[BREAK_ID_DAILY_LIMIT] = -1; } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { TimerBoxControl::set_timer_slot(name, (BreakId)i, slots[i]); } } //! The display of the specified break is changed. void TimerBoxPreferencePage::on_display_changed(int break_id) { int sel = timer_display_button[break_id]->get_active_row_number(); int flags = 0; switch (sel) { case 0: flags |= TimerBoxControl::BREAK_HIDE; break; case 1: flags = 0; break; default: flags = TimerBoxControl::BREAK_WHEN_FIRST; break; } TimerBoxControl::set_timer_flags(name, (BreakId)break_id, flags); enable_buttons(); } //! Enable widgets void TimerBoxPreferencePage::enable_buttons() { int count = 0; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (timer_display_button[i]->get_active() == 0) { count++; } } if (name == "applet") { place_button->set_sensitive(count != 3); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { ICore *core = CoreFactory::get_core(); assert(core != NULL); IBreak *b = core->get_break(BreakId(i)); bool timer_on = b->is_enabled(); timer_display_button[i]->set_sensitive(timer_on); } cycle_entry->set_sensitive(count != 3); } else if (name == "main_window") { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { ICore *core = CoreFactory::get_core(); assert(core != NULL); IBreak *b = core->get_break(BreakId(i)); timer_display_button[i]->set_sensitive(b->is_enabled()); } if (count == 3) { if (TimerBoxControl::is_enabled(name)) { TimerBoxControl::set_enabled(name, false); } enabled_cb->set_active(false); } enabled_cb->set_sensitive(count != 3); place_button->set_sensitive(count != 3); cycle_entry->set_sensitive(count != 3); if (ontop_cb != NULL) { ontop_cb->set_sensitive(count != 3); } } } //! The applet cycle time has been changed. void TimerBoxPreferencePage::on_cycle_time_changed() { int value = (int)cycle_entry->get_value(); TimerBoxControl::set_cycle_time(name, value); } void TimerBoxPreferencePage::on_always_on_top_toggled() { GUIConfig::set_always_on_top(ontop_cb->get_active()); } void TimerBoxPreferencePage::config_changed_notify(const string &key) { TRACE_ENTER("TimerBoxPreferencePage::config_changed_notify"); (void)key; enable_buttons(); TRACE_EXIT(); } workrave-1.10.50/frontend/gtkmm/src/workrave.desktop.in0000644000175100001710000000037714221624107022016 0ustar00gdm00000000000000[Desktop Entry] Version=1.0 Name=Workrave Type=Application _Comment=Assists in the prevention and recovery of Repetitive Strain Injury (RSI) _Keywords=typing;break;timer;wrists;health;rsi; Categories=Utility;GTK;Accessibility; Exec=workrave Icon=workrave workrave-1.10.50/frontend/gtkmm/src/X11SystrayAppletWindow.hh0000644000175100001710000000502514221624107023000 0ustar00gdm00000000000000// X11SystrayAppletWindow.hh --- X11 Applet Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef X11SYSTRAYAPPLETWINDOW_HH #define X11SYSTRAYAPPLETWINDOW_HH #include "preinclude.h" #include #include "IConfiguratorListener.hh" #include "AppletWindow.hh" #include "Orientation.hh" #include #include #include #include #include #include "gtktrayicon.h" class TimerBoxControl; class TimerBoxGtkView; class AppletControl; using namespace workrave; class X11SystrayAppletWindow : public IConfiguratorListener , public sigc::trackable , public AppletWindow { public: X11SystrayAppletWindow(); virtual ~X11SystrayAppletWindow(); bool is_visible() const override; private: //! Gtk timerbox viewer TimerBoxGtkView *view{nullptr}; //! The Gtk+ plug in the panel. Gtk::Plug *plug{nullptr}; //! Container to put the timers in.. Gtk::Bin *container{nullptr}; //! Align break orientationly. Orientation applet_orientation{ORIENTATION_UP}; //! Size of the applet int applet_size{0}; //! Applet currently visible? bool applet_active{false}; //! Applet embedded? bool embedded{false}; bool enabled{false}; //! The tray icon WRGtkTrayIcon *tray_icon{nullptr}; private: void activate(); void deactivate(); static void static_notify_callback(GObject *gobject, GParamSpec *arg, gpointer user_data); void notify_callback(); void on_menu_restbreak_now(); void button_clicked(int button); // Events. void on_embedded(); bool on_button_press_event(GdkEventButton *event); bool on_delete_event(GdkEventAny *); void on_size_allocate(Gtk::Allocation &allocation); void config_changed_notify(const std::string &key); void read_configuration(); }; #endif // X11SYSTRAYAPPLETWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/AppletControl.cc0000644000175100001710000000704014221624107021245 0ustar00gdm00000000000000// AppletControl.cc --- Applet info Control // // Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "debug.hh" #include "AppletControl.hh" #ifdef PLATFORM_OS_UNIX # include "X11SystrayAppletWindow.hh" #endif #ifdef PLATFORM_OS_WINDOWS # include "W32AppletWindow.hh" #endif #ifdef HAVE_DBUS # include "GenericDBusApplet.hh" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSAppletWindow.hh" #endif #include "GUI.hh" #include "TimerBoxControl.hh" #include "Menus.hh" // REFACTOR using namespace workrave; void AppletControl::init() { #ifdef PLATFORM_OS_UNIX applets[AppletType::Tray] = std::make_shared(); #endif #if defined(PLATFORM_OS_WINDOWS) applets[AppletType::Windows] = std::make_shared(); #elif defined(PLATFORM_OS_MACOS) applets[AppletType::MacOS] = std::make_shared(); #elif defined(HAVE_DBUS) applets[AppletType::GenericDBus] = std::make_shared(); #endif for (const auto &kv: applets) { kv.second->init_applet(); kv.second->signal_visibility_changed().connect( sigc::bind<0>(sigc::mem_fun(*this, &AppletControl::on_applet_visibility_changed), kv.first)); } check_visible(); } void AppletControl::on_applet_visibility_changed(AppletType type, bool visible) { TRACE_ENTER_MSG("AppletControl::on_applet_visibility_changed", static_cast::type>(type) << " " << visible); // TODO: REFACTOR if (visible) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->resync(); } check_visible(); TRACE_EXIT(); } void AppletControl::heartbeat() { TRACE_ENTER("AppletControl::heartbeat"); for (const auto &kv: applets) { kv.second->update_applet(); } TRACE_EXIT(); } void AppletControl::set_tooltip(std::string &tip) { for (const auto &kv: applets) { kv.second->set_applet_tooltip(tip); } } bool AppletControl::is_visible() const { TRACE_ENTER("AppletControl::is_visible"); int count = 0; for (const auto &kv: applets) { if (kv.second->is_visible()) { TRACE_MSG(static_cast::type>(kv.first) << " is visible"); count++; } } TRACE_RETURN(count); return count > 0; } void AppletControl::check_visible() { TRACE_ENTER("AppletControl::check_visible"); bool new_visible = is_visible(); if (new_visible != visible) { visible = new_visible; visibility_changed_signal.emit(); } TRACE_EXIT(); } std::shared_ptr AppletControl::get_applet_window(AppletType type) { return applets[type]; } sigc::signal & AppletControl::signal_visibility_changed() { return visibility_changed_signal; } workrave-1.10.50/frontend/gtkmm/src/Menus.hh0000644000175100001710000000645214221624107017566 0ustar00gdm00000000000000// Menus.hh --- Main info Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MENUS_HH #define MENUS_HH #include #include #include "ICore.hh" class IGUI; class NetworkLogDialog; class NetworkJoinDialog; class StatisticsDialog; class PreferencesDialog; class AppletControl; class ExercisesDialog; class DebugDialog; class IMenu; namespace Gtk { class Menu; } using namespace workrave; class Menus : public sigc::trackable { public: Menus(); ~Menus(); //! Menus items to be synced. enum MenuKind { MENU_NONE, MENU_MAINWINDOW, MENU_MAINAPPLET, MENU_APPLET_W32, MENU_APPLET_INDICATOR, MENU_APPLET_GENERICDBUS, MENU_SIZEOF, }; void init(AppletControl *applet_control); void applet_command(short cmd); void resync(); void locale_changed(); void popup(const MenuKind kind, const guint button, const guint activate_time); private: void set_usage_mode(UsageMode m); void on_menu_response(int response); void on_about_response(int response); #ifdef HAVE_DISTRIBUTION void on_network_log_response(int response); void on_network_join_response(int response); #endif void on_statistics_response(int response); void on_debug_response(int response); void on_preferences_response(int response); #ifdef HAVE_EXERCISES void on_exercises_response(int response); #endif public: // Menu actions. void on_menu_open_main_window(); void on_menu_restbreak_now(); void on_menu_about(); void on_menu_quit(); void on_menu_preferences(); void on_menu_exercises(); void on_menu_statistics(); void on_menu_normal(); void on_menu_suspend(); void on_menu_quiet(); void on_menu_reading(bool reading); void on_menu_network_join(); void on_menu_network_leave(); void on_menu_network_reconnect(); void on_menu_network_log(bool show); void on_set_operation_mode(OperationMode m); void on_menu_debug(); #ifdef PLATFORM_OS_WINDOWS void on_about_link_activate(Gtk::AboutDialog &about, const Glib::ustring &link); #endif private: //! Interface to the GUI. IGUI *gui; #ifdef HAVE_DISTRIBUTION NetworkLogDialog *network_log_dialog; NetworkJoinDialog *network_join_dialog; #endif // The Statistics dialog. StatisticsDialog *statistics_dialog; // The Statistics dialog. PreferencesDialog *preferences_dialog; // The Debug dialog. DebugDialog *debug_dialog; #ifdef HAVE_EXERCISES // The exercises dialog. ExercisesDialog *exercises_dialog; #endif //! Different kind of menus IMenu *menus[MENU_SIZEOF]; Gtk::AboutDialog *about; }; #endif // MENUS_HH workrave-1.10.50/frontend/gtkmm/src/RestBreakWindow.cc0000644000175100001710000001711314221624107021533 0ustar00gdm00000000000000// RestBreakWindow.cc --- window for the microbreak // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // const int TIMEOUT = 1000; #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #ifdef HAVE_UNISTD_H # include #endif #ifdef PLATFORM_OS_WINDOWS # include "W32Compat.hh" # include "W32ForceFocus.hh" #endif #include #include #include #include "debug.hh" #include "nls.h" #include "Hig.hh" #include "RestBreakWindow.hh" #include "Text.hh" #include "TimeBar.hh" #include "Util.hh" #include "WindowHints.hh" #include "IBreak.hh" #include "IBreakResponse.hh" #include "GtkUtil.hh" #include "Frame.hh" #include "ICore.hh" #include "IConfigurator.hh" #include "CoreFactory.hh" #ifdef HAVE_EXERCISES # include "Exercise.hh" # include "ExercisesPanel.hh" #endif const int MARGINX = 8; const int MARGINY = 8; //! Constructor /*! * \param control The controller. */ RestBreakWindow::RestBreakWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode) : BreakWindow(BREAK_ID_REST_BREAK, head, break_flags, mode) , timebar(NULL) , progress_value(0) , progress_max_value(0) , is_flashing(false) { TRACE_ENTER("RestBreakWindow::RestBreakWindow"); set_title(_("Rest break")); TRACE_EXIT(); } Gtk::Widget * RestBreakWindow::create_gui() { // Add other widgets. Gtk::VBox *vbox = new Gtk::VBox(false, 6); #ifdef HAVE_EXERCISES pluggable_panel = Gtk::manage(new Gtk::HBox); #endif vbox->pack_start( #ifdef HAVE_EXERCISES *pluggable_panel #else *create_info_panel() #endif , false, false, 0); // Timebar timebar = Gtk::manage(new TimeBar); vbox->pack_start(*timebar, false, false, 6); Gtk::Box *bottom_box = create_bottom_box(true, GUIConfig::get_shutdown_enabled(BREAK_ID_REST_BREAK)); if (bottom_box) { vbox->pack_end(*Gtk::manage(bottom_box), Gtk::PACK_SHRINK, 6); } return vbox; } //! Destructor. RestBreakWindow::~RestBreakWindow() { TRACE_ENTER("RestBreakWindow::~RestBreakWindow"); TRACE_EXIT(); } //! Starts the restbreak. void RestBreakWindow::start() { TRACE_ENTER("RestBreakWindow::start"); init_gui(); #ifdef HAVE_EXERCISES if (get_exercise_count() > 0) { install_exercises_panel(); } else { install_info_panel(); } #else set_ignore_activity(false); #endif update_break_window(); BreakWindow::start(); TRACE_EXIT(); } //! Period timer callback. void RestBreakWindow::update_break_window() { draw_time_bar(); } void RestBreakWindow::set_progress(int value, int max_value) { progress_max_value = max_value; progress_value = value; } //! Draws the timer bar. void RestBreakWindow::draw_time_bar() { timebar->set_progress(progress_value, progress_max_value); time_t time = progress_max_value - progress_value; char s[128]; sprintf(s, _("Rest break for %s"), Text::time_to_string(time, true).c_str()); timebar->set_text(s); ICore *core = CoreFactory::get_core(); bool user_active = core->is_user_active(); if (frame != NULL) { if (user_active && !is_flashing) { frame->set_frame_color(Gdk::Color("orange")); frame->set_frame_visible(true); frame->set_frame_flashing(500); is_flashing = true; } else if (!user_active && is_flashing) { frame->set_frame_flashing(0); frame->set_frame_visible(false); is_flashing = false; } } timebar->update(); } Gtk::Widget * RestBreakWindow::create_info_panel() { Gtk::HBox *info_box = Gtk::manage(new Gtk::HBox(false, 12)); Gtk::Image *info_img = GtkUtil::create_image("rest-break.png"); info_img->set_alignment(0.0, 0.0); Gtk::Label *info_lab = Gtk::manage(new Gtk::Label()); Glib::ustring txt; if (break_flags & BREAK_FLAGS_NATURAL) { txt = HigUtil::create_alert_text(_("Natural rest break"), _("This is your natural rest break.")); } else { txt = HigUtil::create_alert_text(_("Rest break"), _("This is your rest break. Make sure you stand up and\n" "walk away from your computer on a regular basis. Just\n" "walk around for a few minutes, stretch, and relax.")); } GtkUtil::set_theme_fg_color(info_lab); info_lab->set_markup(txt); info_box->pack_start(*info_img, false, false, 0); info_box->pack_start(*info_lab, false, true, 0); return info_box; } #ifdef HAVE_EXERCISES void RestBreakWindow::clear_pluggable_panel() { TRACE_ENTER("RestBreakWindow::clear_pluggable_panel"); Glib::ListHandle children = pluggable_panel->get_children(); if (children.size() > 0) { TRACE_MSG("Clearing"); pluggable_panel->remove(*(*(children.begin()))); } TRACE_EXIT(); } int RestBreakWindow::get_exercise_count() { int ret = 0; if (Exercise::has_exercises()) { ret = GUIConfig::get_number_of_exercises(BREAK_ID_REST_BREAK); } return ret; } void RestBreakWindow::install_exercises_panel() { if (head.count != 0 || (break_flags & BREAK_FLAGS_NO_EXERCISES)) { install_info_panel(); } else { set_ignore_activity(true); clear_pluggable_panel(); ExercisesPanel *exercises_panel = Gtk::manage(new ExercisesPanel(NULL)); pluggable_panel->pack_start(*exercises_panel, false, false, 0); exercises_panel->set_exercise_count(get_exercise_count()); exercises_panel->signal_stop().connect(sigc::mem_fun(*this, &RestBreakWindow::install_info_panel)); pluggable_panel->show_all(); pluggable_panel->queue_resize(); } center(); } void RestBreakWindow::install_info_panel() { # ifdef HAVE_GTK3 Gtk::Requisition old_size; Gtk::Requisition natural_size; get_preferred_size(old_size, natural_size); # else Gtk::Requisition old_size = size_request(); # endif set_ignore_activity(false); clear_pluggable_panel(); pluggable_panel->pack_start(*(create_info_panel()), false, false, 0); pluggable_panel->show_all(); pluggable_panel->queue_resize(); GUIConfig::BlockMode block_mode = GUIConfig::get_block_mode(); if (block_mode == GUIConfig::BLOCK_MODE_NONE && head.count == 0) { # ifdef HAVE_GTK3 Gtk::Requisition new_size; get_preferred_size(new_size, natural_size); # else Gtk::Requisition new_size = size_request(); # endif int width_delta = (new_size.width - old_size.width) / 2; int height_delta = (new_size.height - old_size.height) / 2; int x, y; get_position(x, y); move(x - width_delta, y - height_delta); } else { center(); } } #endif void RestBreakWindow::set_ignore_activity(bool i) { ICore *core = CoreFactory::get_core(); assert(core != NULL); #ifdef PLATFORM_OS_WINDOWS if (W32ForceFocus::GetForceFocusValue()) { i = true; } #endif core->set_insist_policy(i ? ICore::INSIST_POLICY_IGNORE : ICore::INSIST_POLICY_HALT); } workrave-1.10.50/frontend/gtkmm/src/WindowHints.cc0000644000175100001710000001744514221624107020746 0ustar00gdm00000000000000// Copyright (C) 2001 - 2008, 2011, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "WindowHints.hh" #include "debug.hh" #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef max #endif #include #ifdef PLATFORM_OS_WINDOWS # include # include # include # include "Harpoon.hh" # ifdef PLATFORM_OS_WINDOWS_NATIVE # undef max # endif # include # include "harpoon.h" # include "W32Compat.hh" #endif #ifdef HAVE_GTK3 # include "GtkUtil.hh" # if GTK_CHECK_VERSION(3, 24, 0) GdkSeat *WindowHints::seat = NULL; # else GdkDevice *WindowHints::keyboard = NULL; GdkDevice *WindowHints::pointer = NULL; # endif #endif void WindowHints::set_always_on_top(Gtk::Window *window, bool on_top) { #if defined(PLATFORM_OS_WINDOWS) HWND hwnd = (HWND)GDK_WINDOW_HWND(gtk_widget_get_window(GTK_WIDGET(window->gobj()))); W32Compat::SetWindowOnTop(hwnd, on_top); #else window->set_keep_above(on_top); #endif } #ifdef PLATFORM_OS_WINDOWS static void win32_block_input(BOOL block) { if (block) Harpoon::block_input(); else Harpoon::unblock_input(); UINT uPreviousState; SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, block, &uPreviousState, 0); } #endif //! Grabs the pointer and the keyboard. WindowHints::Grab * WindowHints::grab(int num_windows, GdkWindow **windows) { TRACE_ENTER("WindowHints::grab"); WindowHints::Grab *handle = NULL; #if defined(PLATFORM_OS_WINDOWS) if (num_windows > 0) { HWND *unblocked_windows = new HWND[num_windows + 1]; for (int i = 0; i < num_windows; i++) { unblocked_windows[i] = (HWND)GDK_WINDOW_HWND(windows[i]); SetWindowPos(unblocked_windows[i], HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); BringWindowToTop(unblocked_windows[i]); } unblocked_windows[num_windows] = NULL; win32_block_input(TRUE); handle = (WindowHints::Grab *)0xdeadf00d; delete[] unblocked_windows; } #elif defined(HAVE_GTK3) && GTK_CHECK_VERSION(3, 24, 0) // gdk_device_grab is deprecated since 3.20. // However, an issue that was solved in gtk 3.24 causes windows to be hidden // when a grab fails: https://github.com/GNOME/gtk/commit/2c8b95a518bea2192145efe11219f2e36091b37a if (!GtkUtil::running_on_wayland()) { if (num_windows > 0) { GdkDisplay *display = gdk_window_get_display(windows[0]); seat = gdk_display_get_default_seat(display); GdkGrabStatus grabStatus = gdk_seat_grab(seat, windows[0], GDK_SEAT_CAPABILITY_ALL, TRUE, NULL, NULL, NULL, NULL); if (grabStatus == GDK_GRAB_SUCCESS) { // A bit of a hack, but GTK does not need any data in the handle. // So, let's not waste memory and simply return a bogus non-NULL ptr. handle = (WindowHints::Grab *)0xdeadf00d; } } } #elif defined(HAVE_GTK3) if (!GtkUtil::running_on_wayland()) { if (num_windows > 0) { GdkDevice *device = gtk_get_current_event_device(); if (device == NULL) { GdkDisplay *display = gdk_window_get_display(windows[0]); GdkDeviceManager *device_manager = gdk_display_get_device_manager(display); device = gdk_device_manager_get_client_pointer(device_manager); } if (device != NULL) { if (gdk_device_get_source(device) == GDK_SOURCE_KEYBOARD) { keyboard = device; pointer = gdk_device_get_associated_device(device); } else { pointer = device; keyboard = gdk_device_get_associated_device(device); } } GdkGrabStatus keybGrabStatus; keybGrabStatus = gdk_device_grab(keyboard, windows[0], GDK_OWNERSHIP_NONE, TRUE, (GdkEventMask)(GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK), NULL, GDK_CURRENT_TIME); if (keybGrabStatus == GDK_GRAB_SUCCESS) { GdkGrabStatus pointerGrabStatus; pointerGrabStatus = gdk_device_grab(pointer, windows[0], GDK_OWNERSHIP_NONE, TRUE, (GdkEventMask)(GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK), NULL, GDK_CURRENT_TIME); if (pointerGrabStatus != GDK_GRAB_SUCCESS) { gdk_device_ungrab(keyboard, GDK_CURRENT_TIME); } else { // A bit of a hack, but GTK does not need any data in the handle. // So, let's not waste memory and simply return a bogus non-NULL ptr. handle = (WindowHints::Grab *)0xdeadf00d; } } } } #else if (num_windows > 0) { // Only grab first window. // Grab keyboard. GdkGrabStatus keybGrabStatus; keybGrabStatus = gdk_keyboard_grab(windows[0], TRUE, GDK_CURRENT_TIME); // Grab pointer GdkGrabStatus pointerGrabStatus; pointerGrabStatus = gdk_pointer_grab(windows[0], TRUE, (GdkEventMask)(GDK_BUTTON_RELEASE_MASK | GDK_BUTTON_PRESS_MASK | GDK_POINTER_MOTION_MASK), NULL, NULL, GDK_CURRENT_TIME); if (pointerGrabStatus == GDK_GRAB_SUCCESS && keybGrabStatus == GDK_GRAB_SUCCESS) { // A bit of a hack, but GTK does not need any data in the handle. // So, let's not waste memory and simply return a bogus non-NULL ptr. handle = (WindowHints::Grab *)0xdeadf00d; } else { // Ungrab both gdk_keyboard_ungrab(GDK_CURRENT_TIME); gdk_pointer_ungrab(GDK_CURRENT_TIME); } TRACE_MSG(keybGrabStatus << " " << pointerGrabStatus); } #endif TRACE_EXIT(); return handle; } //! Releases the pointer and keyboard grab void WindowHints::ungrab(WindowHints::Grab *handle) { if (!handle) return; #if defined(PLATFORM_OS_WINDOWS) win32_block_input(FALSE); #elif defined(HAVE_GTK3) && GTK_CHECK_VERSION(3, 24, 0) if (!GtkUtil::running_on_wayland()) { gdk_seat_ungrab(seat); } #elif defined(HAVE_GTK3) if (!GtkUtil::running_on_wayland()) { if (keyboard != NULL) { gdk_device_ungrab(keyboard, GDK_CURRENT_TIME); keyboard = NULL; } if (pointer != NULL) { gdk_device_ungrab(pointer, GDK_CURRENT_TIME); pointer = NULL; } } #else gdk_keyboard_ungrab(GDK_CURRENT_TIME); gdk_pointer_ungrab(GDK_CURRENT_TIME); #endif } workrave-1.10.50/frontend/gtkmm/src/workrave-gui.xml0000644000175100001710000000740414221624107021320 0ustar00gdm00000000000000 workrave-1.10.50/frontend/gtkmm/src/TimerBoxGtkView.cc0000644000175100001710000003534514221624107021522 0ustar00gdm00000000000000// TimerBoxGtkView.cc --- Timers Widgets // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #ifdef HAVE_UNISTD_H # include #endif #include #include #include #include #include "nls.h" #include "debug.hh" #include "EventButton.hh" #include "TimerBoxGtkView.hh" #include "TimeBar.hh" #include "Util.hh" #include "Text.hh" #include "Menus.hh" #include "GUI.hh" #include "GtkUtil.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "IBreak.hh" using namespace std; //! Constructor. TimerBoxGtkView::TimerBoxGtkView(Menus::MenuKind menu, bool transparent) : menu(menu) , transparent(transparent) , reconfigure(true) , sheep(NULL) , sheep_eventbox(NULL) , orientation(ORIENTATION_UP) , size(0) , table_rows(-1) , table_columns(-1) , table_reverse(false) , visible_count(-1) , rotation(0) , sheep_only(false) { init(); } //! Destructor. TimerBoxGtkView::~TimerBoxGtkView() { TRACE_ENTER("TimerBoxGtkView::~TimerBoxGtkView"); IConfigurator *config = CoreFactory::get_configurator(); config->remove_listener(this); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (labels[i] != NULL) labels[i]->unreference(); delete labels[i]; if (bars[i] != NULL) bars[i]->unreference(); delete bars[i]; } if (sheep != NULL) sheep->unreference(); if (sheep_eventbox != NULL) { sheep_eventbox->unreference(); // FIXME: check if this is needed/Okay. delete sheep_eventbox; } TRACE_EXIT(); } //! Sets the geometry of the timerbox. void TimerBoxGtkView::set_geometry(Orientation orientation, int size) { TRACE_ENTER_MSG("TimerBoxGtkView::set_geometry", orientation << " " << size); this->orientation = orientation; this->size = size; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { bars[i]->queue_resize(); } init_table(); TRACE_EXIT(); } //! Initializes the timerbox. void TimerBoxGtkView::init() { TRACE_ENTER("TimerBoxGtkView::init"); if (sheep != NULL) sheep->unreference(); if (sheep_eventbox != NULL) sheep_eventbox->unreference(); sheep_eventbox = new Gtk::EventBox; sheep_eventbox->set_events(sheep_eventbox->get_events() | Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK); sheep_eventbox->property_visible_window() = false; string sheep_file = Util::complete_directory("workrave-icon-medium.png", Util::SEARCH_PATH_IMAGES); sheep = Gtk::manage(new Gtk::Image(sheep_file)); sheep_eventbox->set_tooltip_text("Workrave"); sheep_eventbox->add(*sheep); sheep->reference(); sheep_eventbox->reference(); init_widgets(); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { current_content[i] = new_content[i] = BREAK_ID_NONE; labels[i]->reference(); bars[i]->reference(); } IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(GUIConfig::CFG_KEY_ICONTHEME, this); reconfigure = true; TRACE_EXIT(); } //! Initializes the widgets. void TimerBoxGtkView::init_widgets() { Glib::RefPtr size_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_BOTH); const char *icons[] = {"timer-micro-break.png", "timer-rest-break.png", "timer-daily.png"}; for (int count = 0; count < BREAK_ID_SIZEOF; count++) { Gtk::Image *img = GtkUtil::create_image(icons[count]); Gtk::Widget *w; if (count == BREAK_ID_REST_BREAK) { img->set_padding(0, 0); EventButton *b = new EventButton(); b->set_relief(Gtk::RELIEF_NONE); b->set_border_width(0); b->add(*Gtk::manage(img)); #if GTK_CHECK_VERSION(3, 0, 0) b->set_can_focus(false); #else GTK_WIDGET_UNSET_FLAGS(b->gobj(), GTK_CAN_FOCUS); #endif #if GTK_CHECK_VERSION(3, 0, 0) static const char button_style[] = "* {\n" "padding-top: 1px;\n" "padding-bottom: 1px;\n" "}"; Glib::RefPtr css_provider = Gtk::CssProvider::create(); Glib::RefPtr style_context = b->get_style_context(); css_provider->load_from_data(button_style); style_context->add_provider(css_provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); #endif b->set_tooltip_text(_("Take rest break now")); IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); b->signal_clicked().connect(sigc::mem_fun(*menus, &Menus::on_menu_restbreak_now)); b->button_pressed.connect(sigc::mem_fun(*this, &TimerBoxGtkView::on_restbreak_button_press_event)); w = b; } else { w = img; img->set_padding(0, 2); } size_group->add_widget(*w); labels[count] = w; images[count] = img; bars[count] = new TimeBar; bars[count]->set_text_alignment(1); bars[count]->set_progress(0, 60); bars[count]->set_text(_("Wait")); } } //! Update the widgets. void TimerBoxGtkView::update_widgets() { const char *icons[] = {"timer-micro-break.png", "timer-rest-break.png", "timer-daily.png"}; for (int count = 0; count < BREAK_ID_SIZEOF; count++) { std::string filename = GtkUtil::get_image_filename(icons[count]); images[count]->set(filename); } } int TimerBoxGtkView::get_number_of_timers() const { int number_of_timers = 0; if (!sheep_only) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (new_content[i] != BREAK_ID_NONE) { number_of_timers++; } } } return number_of_timers; } //! Initializes the applet. void TimerBoxGtkView::init_table() { TRACE_ENTER("TimerBoxGtkView::init_table"); // Compute number of visible breaks. int number_of_timers = get_number_of_timers(); TRACE_MSG("number_of_timers = " << number_of_timers); // Compute table dimensions. int rows = number_of_timers; int columns = 1; int reverse = false; int tsize = size; rotation = 0; if (rows == 0) { // Show sheep. rows = 1; } Gtk::Requisition label_size; Gtk::Requisition bar_size; Gtk::Requisition my_size; #ifdef HAVE_GTK3 GtkRequisition natural_size; labels[0]->get_preferred_size(label_size, natural_size); get_preferred_size(my_size, natural_size); TRACE_MSG("my_size = " << my_size.width << " " << my_size.height); TRACE_MSG("natural_size = " << natural_size.width << " " << natural_size.height); #else labels[0]->size_request(label_size); size_request(my_size); #endif for (int i = 0; i < BREAK_ID_SIZEOF; i++) { bars[i]->set_rotation(0); } bars[0]->get_preferred_size(bar_size.width, bar_size.height); TRACE_MSG("bar_size = " << bar_size.width << " " << bar_size.height); TRACE_MSG("label_size = " << label_size.width << " " << label_size.height); if (size == -1 && (orientation == ORIENTATION_LEFT)) { tsize = label_size.width + bar_size.width + 9; } if (tsize != -1) { if ((orientation == ORIENTATION_LEFT || orientation == ORIENTATION_RIGHT)) { set_size_request(tsize, -1); } else { set_size_request(-1, tsize); } TRACE_MSG("size request = " << tsize); } if (orientation == ORIENTATION_LEFT || orientation == ORIENTATION_RIGHT) { if (tsize > bar_size.width + label_size.width + 8) { columns = 2; rows = number_of_timers; } else if (tsize > bar_size.width + 2) { columns = 1; rows = 2 * number_of_timers; } else { columns = 1; rows = 2 * number_of_timers; if (orientation == ORIENTATION_LEFT) { rotation = 90; } else { rotation = 270; reverse = true; } } if (rows <= 0) { TRACE_MSG("too small: rows"); rows = 1; } } else { rows = tsize / (bar_size.height); if (rows <= 0) { TRACE_MSG("too small: rows"); rows = 1; } columns = 2 * ((number_of_timers + rows - 1) / rows); if (columns <= 0) { columns = 1; } } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { bars[i]->set_rotation(rotation); } TRACE_MSG("c/r " << columns << " " << rows << " " << rotation); bool remove_all = rows != table_rows || columns != table_columns || number_of_timers != visible_count || reverse != table_reverse; // Remove old for (int i = 0; i < BREAK_ID_SIZEOF; i++) { int id = current_content[i]; if (id != -1 && (id != new_content[i] || remove_all)) { TRACE_MSG("remove " << i << " " << id); Gtk::Widget *child = labels[id]; remove(*child); child = bars[id]; remove(*child); current_content[i] = -1; } } // Remove sheep if ((number_of_timers > 0 || remove_all) && visible_count == 0) { TRACE_MSG("remove sheep"); remove(*sheep_eventbox); visible_count = -1; } TRACE_MSG(rows << " " << table_rows << " " << columns << " " << table_columns); // if (rows != table_rows || columns != table_columns || number_of_timers != visible_count) { TRACE_MSG("resize"); resize(rows, columns); set_spacings(0); // show_all(); table_columns = columns; table_rows = rows; table_reverse = reverse; } // Add sheep. if (number_of_timers == 0 && visible_count != 0) { TRACE_MSG("add sheep"); attach(*sheep_eventbox, 0, 2, 0, 1, Gtk::FILL, Gtk::SHRINK); } // Fill table. for (int i = 0; i < number_of_timers; i++) { int id = new_content[i]; int cid = current_content[i]; if (id != cid) { int item = i; if (reverse) { item = number_of_timers - i + 1; } current_content[i] = id; int cur_row = (2 * item) / columns; int cur_col = (2 * item) % columns; attach(*labels[id], cur_col, cur_col + 1, cur_row, cur_row + 1, Gtk::SHRINK, Gtk::EXPAND); int bias = 1; if (reverse) { bias = -1; } cur_row = (2 * item + bias) / columns; cur_col = (2 * item + bias) % columns; attach(*bars[id], cur_col, cur_col + 1, cur_row, cur_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::EXPAND); } } for (int i = number_of_timers; i < BREAK_ID_SIZEOF; i++) { current_content[i] = -1; } visible_count = number_of_timers; show_all(); #ifdef HAVE_GTK3 get_preferred_size(my_size, natural_size); TRACE_MSG("my_size = " << my_size.width << " " << my_size.height); TRACE_MSG("natural_size = " << natural_size.width << " " << natural_size.height); #endif TRACE_EXIT(); } void TimerBoxGtkView::set_slot(BreakId id, int slot) { if (current_content[slot] != id) { new_content[slot] = id; reconfigure = true; } } void TimerBoxGtkView::set_time_bar(BreakId id, std::string text, TimeBar::ColorId primary_color, int primary_val, int primary_max, TimeBar::ColorId secondary_color, int secondary_val, int secondary_max) { TRACE_ENTER_MSG("TimerBoxGtkView::set_time_bar", id); TRACE_MSG(text); TRACE_MSG(primary_val << " " << primary_max << " " << int(primary_color)); TRACE_MSG(secondary_val << " " << secondary_max << " " << int(secondary_color)); TimeBar *bar = bars[id]; bar->set_text(text); bar->set_bar_color(primary_color); bar->set_progress(primary_val, primary_max); bar->set_secondary_bar_color(secondary_color); bar->set_secondary_progress(secondary_val, secondary_max); TRACE_EXIT(); } void TimerBoxGtkView::set_tip(string tip) { sheep_eventbox->set_tooltip_text(tip.c_str()); } void TimerBoxGtkView::set_icon(IconType icon) { string file; switch (icon) { case ICON_NORMAL: file = GtkUtil::get_image_filename("workrave-icon-medium.png"); break; case ICON_QUIET: file = GtkUtil::get_image_filename("workrave-quiet-icon-medium.png"); break; case ICON_SUSPENDED: file = GtkUtil::get_image_filename("workrave-suspended-icon-medium.png"); break; } if (file != "") { sheep->set(file); } } void TimerBoxGtkView::update_view() { if (reconfigure) { init_table(); reconfigure = false; } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { bars[i]->update(); } } void TimerBoxGtkView::set_enabled(bool enabled) { (void)enabled; // Status window disappears, no need to do anything here. } void TimerBoxGtkView::set_sheep_only(bool sheep_only) { TRACE_ENTER_MSG("TimerBoxGtkView::set_sheep_only", sheep_only); if (this->sheep_only != sheep_only) { this->sheep_only = sheep_only; reconfigure = true; update_view(); } TRACE_EXIT(); } bool TimerBoxGtkView::is_sheep_only() const { return sheep_only || get_number_of_timers() == 0; } //! User pressed some mouse button in the main window. bool TimerBoxGtkView::on_restbreak_button_press_event(int button) { bool ret = false; if (button == 3 && menu != Menus::MENU_NONE) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->popup(menu, 0 /*event->button */, 0); ret = true; } return ret; } #ifdef HAVE_GTK3 bool TimerBoxGtkView::on_draw(const Cairo::RefPtr &cr) { if (transparent) { cr->set_source_rgba(0, 0, 0, 0); cr->set_operator(Cairo::OPERATOR_SOURCE); cr->paint(); }; return Gtk::Widget::on_draw(cr); } #endif void TimerBoxGtkView::config_changed_notify(const string &key) { TRACE_ENTER_MSG("MainWindow::config_changed_notify", key); if (key == GUIConfig::CFG_KEY_ICONTHEME) { update_widgets(); } TRACE_EXIT(); } workrave-1.10.50/frontend/gtkmm/src/WindowHints.hh0000644000175100001710000000262014221624107020745 0ustar00gdm00000000000000// WindowHints.hh // // Copyright (C) 2001, 2002, 2003, 2007, 2008, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WINDOWHINTS_HH #define WINDOWHINTS_HH #include #ifdef PLATFORM_OS_WINDOWS # include #endif namespace Gtk { class Window; } class WindowHints { private: public: typedef void *Grab; static void set_always_on_top(Gtk::Window *window, bool ontop); static Grab *grab(int num_windows, GdkWindow **window); static void ungrab(Grab *grab); #if defined(PLATFORM_OS_WINDOWS) static void attach_thread_input(bool enabled); #endif #if defined(HAVE_GTK3) # if GTK_CHECK_VERSION(3, 24, 0) static GdkSeat *seat; # else static GdkDevice *keyboard, *pointer; # endif #endif }; #endif // WINDOWHINTS_HH workrave-1.10.50/frontend/gtkmm/src/GUI.hh0000644000175100001710000001720214221624107017116 0ustar00gdm00000000000000// GUI.hh --- The WorkRave GUI // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GUI_HH #define GUI_HH #include "preinclude.h" #include #include #if defined(PLATFORM_OS_WINDOWS) # include "eggsmclient.h" #endif #include "HeadInfo.hh" #include "ICoreEventListener.hh" #include "IConfiguratorListener.hh" #include "IApp.hh" #include "BreakWindow.hh" #include "WindowHints.hh" #ifdef HAVE_DBUS # include "dbus/IDBusWatch.hh" #endif namespace workrave { class IBreakResponse; class IConfigurator; } // namespace workrave // GTKMM classes class MainWindow; class MicroBreakWindow; class RestBreakWindow; class PreludeWindow; class Dispatcher; class StatusIcon; class AppletControl; class Menus; // Generic GUI class BreakControl; class IBreakWindow; class SoundPlayer; class Session; using namespace workrave; class IGUI { public: virtual ~IGUI() {} virtual sigc::signal0 &signal_heartbeat() = 0; virtual Menus *get_menus() const = 0; virtual MainWindow *get_main_window() const = 0; virtual SoundPlayer *get_sound_player() const = 0; virtual void open_main_window() = 0; virtual void restbreak_now() = 0; virtual void interrupt_grab() = 0; virtual int get_number_of_heads() const = 0; virtual HeadInfo &get_head(int head) = 0; virtual int map_to_head(int &x, int &y) = 0; virtual void map_from_head(int &x, int &y, int head) = 0; virtual bool bound_head(int &x, int &y, int width, int height, int &head) = 0; virtual void terminate() = 0; }; class GUI : public IGUI , public IApp , public ICoreEventListener , public IConfiguratorListener , #ifdef HAVE_DBUS public workrave::dbus::IDBusWatch , #endif public sigc::trackable { public: GUI(int argc, char **argv); virtual ~GUI(); static IGUI *get_instance(); AppletControl *get_applet_control() const; MainWindow *get_main_window() const; SoundPlayer *get_sound_player() const; Menus *get_menus() const; void main(); // GUIFactoryInterface methods virtual void set_break_response(IBreakResponse *rep); virtual void create_prelude_window(BreakId break_id); virtual void create_break_window(BreakId break_id, BreakHint break_hint); virtual void hide_break_window(); virtual void show_break_window(); virtual void refresh_break_window(); virtual void set_break_progress(int value, int max_value); virtual void set_prelude_stage(PreludeStage stage); virtual void set_prelude_progress_text(PreludeProgressText text); virtual void terminate(); // void core_event_notify(const CoreEvent event); void core_event_operation_mode_changed(const OperationMode m); void core_event_usage_mode_changed(const UsageMode m); #ifdef HAVE_DBUS virtual void bus_name_presence(const std::string &name, bool present); #endif // Internal public methods void restbreak_now(); void open_main_window(); void close_main_window(); void init_multihead(); // Prefs // Misc sigc::signal0 &signal_heartbeat(); HeadInfo &get_head(int head); int get_number_of_heads() const; int map_to_head(int &x, int &y); void map_from_head(int &x, int &y, int head); bool bound_head(int &x, int &y, int width, int height, int &head); void interrupt_grab(); private: std::string get_timers_tooltip(); bool on_timer(); void init_platform(); void init_debug(); void init_nls(); void init_core(); void init_sound_player(); void init_multihead_mem(int new_num_heads); void init_multihead_desktop(); void init_gui(); #ifdef HAVE_DBUS void init_dbus(); #endif void init_session(); void init_operation_mode_warning(); void init_gtk_multihead(); #if defined(PLATFORM_OS_WINDOWS) static void session_quit_cb(EggSMClient *client, GUI *gui); static void session_save_state_cb(EggSMClient *client, GKeyFile *key_file, GUI *gui); void cleanup_session(); #endif void collect_garbage(); IBreakWindow *create_break_window(HeadInfo &head, BreakId break_id, BreakWindow::BreakFlags break_flags); void config_changed_notify(const std::string &key); bool grab(); void ungrab(); void process_visibility(); void on_status_icon_balloon_activate(const std::string &id); void on_status_icon_activate(); void on_visibility_changed(); void on_main_window_closed(); #if defined(PLATFORM_OS_UNIX) bool on_grab_retry_timer(); #endif bool on_operational_mode_warning_timer(); #if defined(PLATFORM_OS_WINDOWS) void win32_init_filter(); static GdkFilterReturn win32_filter_func(void *xevent, GdkEvent *event, gpointer data); #endif private: //! The one and only instance static GUI *instance; #ifdef HAVE_GTK3 // ! Glib::RefPtr app; #endif //! The Core controller ICore *core; //! The sound player SoundPlayer *sound_player; //! Interface to the break window. IBreakWindow **break_windows; //! Interface to the prelude windows. PreludeWindow **prelude_windows; //! Number of active prelude windows; int active_break_count; //! Number of active prelude windows; int active_prelude_count; //! Response interface for breaks IBreakResponse *response; //! Current active break. BreakId active_break_id; //! The number of command line arguments. int argc; //! The command line arguments. char **argv; //! The main window, shows the timers. MainWindow *main_window; //! Menus Menus *menus; //! Heartbeat signal sigc::signal0 heartbeat_signal; //! Destroy break window on next heartbeat? bool break_window_destroy; //! Destroy prelude window on next heartbeat? bool prelude_window_destroy; //! Information on all heads. HeadInfo *heads; //! Number of heads int num_heads; //! Width of the screen. int screen_width; //! Height of the screen. int screen_height; #ifdef PLATFORM_OS_UNIX //! Do we want a keyboard/pointer grab bool grab_wanted; //! Connection to the grab retry timeout timer. sigc::connection grab_retry_connection; #endif //! Grab WindowHints::Grab *grab_handle; //! Status icon StatusIcon *status_icon; //! The applet controller AppletControl *applet_control; //! Session *session; // bool muted; // bool closewarn_shown; // UI Event connections std::list event_connections; }; //! Returns the only instance of GUI inline IGUI * GUI::get_instance() { return instance; } //! Returns the applet window. inline AppletControl * GUI::get_applet_control() const { return applet_control; } //! Returns the main window. inline MainWindow * GUI::get_main_window() const { return main_window; } //! Returns the sound player inline SoundPlayer * GUI::get_sound_player() const { return sound_player; } //! Returns the sound player inline Menus * GUI::get_menus() const { return menus; } //! Returns the GUI Heartbeat signal. inline sigc::signal0 & GUI::signal_heartbeat() { return heartbeat_signal; } //! Number of heads. inline int GUI::get_number_of_heads() const { return num_heads; } #endif // GUI_HH workrave-1.10.50/frontend/gtkmm/src/PreludeWindow.hh0000644000175100001710000000522414221624107021263 0ustar00gdm00000000000000// Copyright (C) 2001 - 2017 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef PRELUDEWINDOW_HH #define PRELUDEWINDOW_HH #include "BreakWindow.hh" #include "IPreludeWindow.hh" class TimeBar; class Frame; namespace Gtk { class Image; class Label; } // namespace Gtk class PreludeWindow : public Gtk::Window , public IPreludeWindow { public: PreludeWindow(HeadInfo &head, BreakId break_id); virtual ~PreludeWindow(); void start(); void stop(); void destroy(); void refresh(); void set_progress(int value, int max_value); void set_stage(IApp::PreludeStage stage); void set_progress_text(IApp::PreludeProgressText text); private: void on_frame_flash_event(bool frame_visible); void add(Gtk::Widget &widget); #ifdef PLATFORM_OS_WINDOWS void init_avoid_pointer_polling(); bool on_avoid_pointer_timer_event(); #else bool on_enter_notify_event(GdkEventCrossing *event); #endif void get_pointer_location(int &x, int &y); void avoid_pointer(); #ifdef HAVE_GTK3 bool on_draw_event(const ::Cairo::RefPtr<::Cairo::Context> &cr); void on_screen_changed_event(const Glib::RefPtr &previous_screen); void update_input_region(Gtk::Allocation &allocation); void on_size_allocate_event(Gtk::Allocation &allocation); #endif private: #ifdef PLATFORM_OS_WINDOWS //! Avoid time signal sigc::connection avoid_signal; int gdk_offset_x; int gdk_offset_y; #endif //! Avoid margin. const int SCREEN_MARGIN; //! Did we avoid the pointer? bool did_avoid; //! Time bar TimeBar *time_bar; //! Frame Frame *frame; //! Frame Frame *window_frame; //! Warn color Gdk::Color color_warn; //! Alert color Gdk::Color color_alert; //! Label Gtk::Label *label; //! Icon Gtk::Image *image_icon; //! Final prelude std::string progress_text; //! Progress values int progress_value; int progress_max_value; //! Flash bool flash_visible; //! Head HeadInfo head; // Alignment in Waylang Gtk::Alignment *align; }; #endif // PRELUDEWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/MicroBreakWindow.cc0000644000175100001710000001721014221624107021665 0ustar00gdm00000000000000// MicroBreakWindow.cc --- window for the microbreak // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include #include #include #include "nls.h" #include "debug.hh" #include "IBreak.hh" #include "GUI.hh" #include "CoreFactory.hh" #include "MicroBreakWindow.hh" #include "WindowHints.hh" #include "TimeBar.hh" #include "IBreakResponse.hh" #include "Util.hh" #include "GtkUtil.hh" #include "Text.hh" #include "Hig.hh" #include "Frame.hh" using namespace std; //! Construct a new Microbreak window. MicroBreakWindow::MicroBreakWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode) : BreakWindow(BREAK_ID_MICRO_BREAK, head, break_flags, mode) , progress_value(0) , progress_max_value(0) , is_flashing(false) , fixed_size(false) { set_title(_("Micro-break")); } Gtk::Widget * MicroBreakWindow::create_gui() { // Time bar time_bar = Gtk::manage(new TimeBar); time_bar->set_text("Microbreak 0:32"); // FIXME: // Label label = Gtk::manage(new Gtk::Label()); // Icon Gtk::Image *img = GtkUtil::create_image("micro-break.png"); img->set_alignment(0.0, 0.0); // HBox Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 12)); hbox->pack_start(*img, false, false, 0); hbox->pack_start(*label, Gtk::PACK_EXPAND_PADDING, 0); // Overall vbox Gtk::VBox *box = new Gtk::VBox(false, 12); box->pack_start(*hbox, Gtk::PACK_EXPAND_WIDGET, 0); box->pack_start(*time_bar, Gtk::PACK_EXPAND_WIDGET, 0); // Button box at the bottom. ICore *core = CoreFactory::get_core(); IBreak *restbreak = core->get_break(BREAK_ID_REST_BREAK); if ((break_flags != BREAK_FLAGS_NONE) || restbreak->is_enabled()) { Gtk::HBox *button_box; if (break_flags != BREAK_FLAGS_NONE) { button_box = Gtk::manage(new Gtk::HBox(false, 6)); Gtk::HBox *bbox = Gtk::manage(new Gtk::HBox(true, 6)); if ((break_flags & BREAK_FLAGS_POSTPONABLE) != 0) { Gtk::Button *postpone_button = create_postpone_button(); bbox->pack_end(*postpone_button, Gtk::PACK_EXPAND_WIDGET, 0); } if ((break_flags & BREAK_FLAGS_SKIPPABLE) != 0) { Gtk::Button *skip_button = create_skip_button(); bbox->pack_end(*skip_button, Gtk::PACK_EXPAND_WIDGET, 0); } Gtk::Alignment *bboxa = Gtk::manage(new Gtk::Alignment(1.0, 0.0, 0.0, 0.0)); bboxa->add(*bbox); if (restbreak->is_enabled()) { button_box->pack_start(*Gtk::manage(create_restbreaknow_button(false)), Gtk::PACK_SHRINK, 0); } button_box->pack_end(*bboxa, Gtk::PACK_EXPAND_WIDGET, 0); } else { button_box = Gtk::manage(new Gtk::HBox(false, 6)); button_box->pack_end(*Gtk::manage(create_restbreaknow_button(true)), Gtk::PACK_SHRINK, 0); } box->pack_start(*button_box, Gtk::PACK_EXPAND_WIDGET, 0); } fixed_size = false; return box; } //! Destructor. MicroBreakWindow::~MicroBreakWindow() { TRACE_ENTER("MicroBreakWindow::~MicroBreakWindow"); TRACE_EXIT(); } Gtk::Button * MicroBreakWindow::create_restbreaknow_button(bool label) { Gtk::Button *ret; ret = Gtk::manage(GtkUtil::create_image_button(_("Rest break"), "timer-rest-break.png", label)); ret->signal_clicked().connect(sigc::mem_fun(*this, &MicroBreakWindow::on_restbreaknow_button_clicked)); #ifdef HAVE_GTK3 ret->set_can_focus(false); #else ret->unset_flags(Gtk::CAN_FOCUS); #endif return ret; } //! The restbreak button was clicked. void MicroBreakWindow::on_restbreaknow_button_clicked() { ICore *core = CoreFactory::get_core(); core->force_break(BREAK_ID_REST_BREAK, BREAK_HINT_NONE); } void MicroBreakWindow::update_time_bar() { TRACE_ENTER("MicroBreakWindow::refresh_time_bar"); time_t time = progress_max_value - progress_value; string s = _("Micro-break"); s += ' '; s += Text::time_to_string(time); time_bar->set_progress(progress_value, progress_max_value - 1); time_bar->set_text(s); ICore *core = CoreFactory::get_core(); bool user_active = core->is_user_active(); if (frame != NULL) { if (user_active && !is_flashing) { frame->set_frame_color(Gdk::Color("orange")); frame->set_frame_visible(true); frame->set_frame_flashing(500); is_flashing = true; } else if (!user_active && is_flashing) { frame->set_frame_flashing(0); frame->set_frame_visible(false); is_flashing = false; } } time_bar->update(); TRACE_MSG(progress_value << " " << progress_max_value); TRACE_EXIT(); } void MicroBreakWindow::update_label() { TRACE_ENTER("MicroBreakWindow::refresh_label"); ICore *core = CoreFactory::get_core(); IBreak *restbreak_timer = core->get_break(BREAK_ID_REST_BREAK); IBreak *daily_timer = core->get_break(BREAK_ID_DAILY_LIMIT); BreakId show_next = BREAK_ID_NONE; time_t rb = restbreak_timer->get_limit() - restbreak_timer->get_elapsed_time(); time_t dl = daily_timer->get_limit() - daily_timer->get_elapsed_time(); if (restbreak_timer->is_enabled()) { show_next = BREAK_ID_REST_BREAK; } if (daily_timer->is_enabled()) { if (show_next == BREAK_ID_NONE || dl < rb) { show_next = BREAK_ID_DAILY_LIMIT; } } Glib::ustring txt(_("Please relax for a few seconds")); if (show_next == BREAK_ID_REST_BREAK) { char s[128]; if (rb >= 0) { sprintf(s, _("Next rest break in %s"), Text::time_to_string(rb, true).c_str()); } else { sprintf(s, _("Rest break %s overdue"), Text::time_to_string(-rb, true).c_str()); } txt += "\n"; txt += s; } else if (show_next == BREAK_ID_DAILY_LIMIT) { char s[128]; if (dl >= 0) { sprintf(s, _("Daily limit in %s"), Text::time_to_string(dl, true).c_str()); } else { sprintf(s, _("Daily limit %s overdue"), Text::time_to_string(-dl, true).c_str()); } txt += "\n"; txt += s; } label->set_markup(HigUtil::create_alert_text(_("Micro-break"), txt.c_str())); TRACE_EXIT(); } //! Refresh window. void MicroBreakWindow::update_break_window() { update_time_bar(); update_label(); if (!fixed_size) { // Make sure the label doesn't resize anymore. // There has to be a better way to do this... #ifdef HAVE_GTK3 GtkRequisition min_size; GtkRequisition natural_size; label->get_preferred_size(min_size, natural_size); #else Gtk::Requisition min_size = label->size_request(); #endif label->set_size_request(min_size.width, min_size.height); fixed_size = true; center(); } } void MicroBreakWindow::set_progress(int value, int max_value) { progress_max_value = max_value; progress_value = value; } workrave-1.10.50/frontend/gtkmm/src/GtkUtil.cc0000644000175100001710000003002714221624107020043 0ustar00gdm00000000000000// GtkUtil.cc --- Gtk utilities // // Copyright (C) 2003, 2004, 2005, 2007, 2008, 2011 Raymond Penners // Copyright (C) 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #include #include #include #ifdef GDK_WINDOWING_WAYLAND # include #endif #include "GUI.hh" #include "Util.hh" #include "GtkUtil.hh" #include "EventLabel.hh" #include "EventImage.hh" #include "HeadInfo.hh" #include "GUIConfig.hh" using namespace std; Glib::Quark *GtkUtil::label_quark = new Glib::Quark("workrave-button-label"); bool GtkUtil::has_button_images() { // Bypassing gtkmm is necessary, because it does not offer // a find_property method yet. GtkSettings *settings = gtk_settings_get_default(); GObjectClass *klazz = G_OBJECT_GET_CLASS(G_OBJECT(settings)); bool ret = true; if (g_object_class_find_property(klazz, "gtk-button-images")) { gboolean gbi; g_object_get(G_OBJECT(settings), "gtk-button-images", &gbi, NULL); ret = gbi; } return ret; } Gtk::Button * GtkUtil::create_custom_stock_button(const char *label_text, const Gtk::StockID &stock_id) { Gtk::Button *ret = new Gtk::Button(); update_custom_stock_button(ret, label_text, stock_id); return ret; } void GtkUtil::update_custom_stock_button(Gtk::Button *btn, const char *label_text, const Gtk::StockID &stock_id) { Gtk::Image *img = NULL; if (has_button_images() || !label_text) { img = Gtk::manage(new Gtk::Image(stock_id, Gtk::ICON_SIZE_BUTTON)); } btn->remove(); if (label_text != NULL) { Gtk::Label *label = Gtk::manage(new Gtk::Label(label_text)); Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 2)); Gtk::Alignment *align = Gtk::manage(new Gtk::Alignment(0.5, 0.5, 0.0, 0.0)); if (img != NULL) { hbox->pack_start(*img, false, false, 0); } label->set_use_underline(); btn->set_data(*label_quark, (void *)label); hbox->pack_end(*label, false, false, 0); btn->add(*align); align->add(*hbox); align->show_all(); } else { btn->add(*img); img->show_all(); } } Gtk::Button * GtkUtil::create_image_button(const char *label_text, const char *image_file, bool label) { Gtk::Button *btn = new Gtk::Button(); Gtk::Image *img = NULL; if (has_button_images()) { string icon = Util::complete_directory(image_file, Util::SEARCH_PATH_IMAGES); img = Gtk::manage(new Gtk::Image(icon)); } else { /* Button without images must have a label */ label = true; } if (label_text != NULL && label) { Gtk::Label *label = Gtk::manage(new Gtk::Label(label_text)); Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 2)); Gtk::Alignment *align = Gtk::manage(new Gtk::Alignment(0.5, 0.5, 0.0, 0.0)); if (img != NULL) { hbox->pack_start(*img, false, false, 0); } label->set_use_underline(); btn->set_data(*label_quark, (void *)label); hbox->pack_end(*label, false, false, 0); btn->add(*align); align->add(*hbox); align->show_all(); } else { btn->add(*img); img->show_all(); } return btn; } Gtk::Widget * GtkUtil::create_label_with_icon(string text, const char *icon) { Gtk::HBox *box = new Gtk::HBox(false, 3); Gtk::Label *lab = Gtk::manage(new Gtk::Label(text)); Gtk::Image *img = Gtk::manage(new Gtk::Image(icon)); box->pack_start(*img, false, false, 0); box->pack_start(*lab, false, false, 0); return box; } Gtk::Widget * GtkUtil::create_label_for_break(BreakId id) { // FIXME: duplicate: const char *icons[] = {"timer-micro-break.png", "timer-rest-break.png", "timer-daily.png"}; const char *labels[] = {_("Micro-break"), _("Rest break"), _("Daily limit")}; string icon = Util::complete_directory(string(icons[id]), Util::SEARCH_PATH_IMAGES); Gtk::Widget *label = GtkUtil::create_label_with_icon(labels[id], icon.c_str()); return label; } void GtkUtil::table_attach_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach, bool left) { Gtk::Alignment *a = Gtk::manage(new Gtk::Alignment #ifdef HAVE_GTK3 (left ? Gtk::ALIGN_START : Gtk::ALIGN_END, Gtk::ALIGN_START, #else (left ? Gtk::ALIGN_LEFT : Gtk::ALIGN_RIGHT, Gtk::ALIGN_BOTTOM, #endif 0.0, 0.0)); a->add(child); table.attach(*a, left_attach, left_attach + 1, top_attach, top_attach + 1, Gtk::FILL, Gtk::SHRINK); } void GtkUtil::table_attach_left_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach) { table_attach_aligned(table, child, left_attach, top_attach, true); } void GtkUtil::table_attach_right_aligned(Gtk::Table &table, Gtk::Widget &child, guint left_attach, guint top_attach) { table_attach_aligned(table, child, left_attach, top_attach, false); } Gtk::Widget * GtkUtil::create_label_with_tooltip(string text, string tooltip) { #if 0 // This doesn't (didn't ?) work. Gtk::Label *label = Gtk::manage(new Gtk::Label(text)); Gtk::EventBox *eventbox = Gtk::manage(new Gtk::EventBox()); eventbox->add(*label); eventbox->set_tooltip_text(tooltip); return eventbox; #else EventLabel *label = Gtk::manage(new EventLabel(text)); label->set_tooltip_text(tooltip); return label; #endif } EventImage * GtkUtil::create_image_with_tooltip(string file, string tooltip) { EventImage *image = Gtk::manage(new EventImage(file)); image->set_tooltip_text(tooltip); return image; } Gtk::Label * GtkUtil::create_label(string text, bool bold) { Gtk::Label *label = new Gtk::Label(); if (bold) { label->set_markup(string("") + text + ""); } else { label->set_text(text); } return label; } /* * Returns a copy of pixbuf mirrored and or flipped. * TO do a 180 degree rotations set both mirror and flipped TRUE * if mirror and flip are FALSE, result is a simple copy. */ static GdkPixbuf * pixbuf_copy_mirror(GdkPixbuf *src, gint mirror, gint flip) { GdkPixbuf *dest; gint has_alpha; gint w, h, srs; gint drs; guchar *s_pix; guchar *d_pix; guchar *sp; guchar *dp; gint i, j; gint a; if (!src) return NULL; w = gdk_pixbuf_get_width(src); h = gdk_pixbuf_get_height(src); has_alpha = gdk_pixbuf_get_has_alpha(src); srs = gdk_pixbuf_get_rowstride(src); s_pix = gdk_pixbuf_get_pixels(src); dest = gdk_pixbuf_new(GDK_COLORSPACE_RGB, has_alpha, 8, w, h); drs = gdk_pixbuf_get_rowstride(dest); d_pix = gdk_pixbuf_get_pixels(dest); a = has_alpha ? 4 : 3; for (i = 0; i < h; i++) { sp = s_pix + (i * srs); if (flip) { dp = d_pix + ((h - i - 1) * drs); } else { dp = d_pix + (i * drs); } if (mirror) { dp += (w - 1) * a; for (j = 0; j < w; j++) { *(dp++) = *(sp++); /* r */ *(dp++) = *(sp++); /* g */ *(dp++) = *(sp++); /* b */ if (has_alpha) *(dp) = *(sp++); /* a */ dp -= (a + 3); } } else { for (j = 0; j < w; j++) { *(dp++) = *(sp++); /* r */ *(dp++) = *(sp++); /* g */ *(dp++) = *(sp++); /* b */ if (has_alpha) *(dp++) = *(sp++); /* a */ } } } return dest; } Glib::RefPtr GtkUtil::flip_pixbuf(Glib::RefPtr pixbuf, bool horizontal, bool vertical) { GdkPixbuf *pb = pixbuf->gobj(); GdkPixbuf *pbflip = pixbuf_copy_mirror(pb, horizontal, vertical); return Glib::wrap(pbflip, false); } //! Centers the window. void GtkUtil::center_window(Gtk::Window &window, HeadInfo &head) { TRACE_ENTER("GtkUtil::center_window"); Gtk::Requisition size; #ifdef HAVE_GTK3 Gtk::Requisition minsize; window.get_preferred_size(minsize, size); #else window.size_request(size); #endif int x = head.geometry.get_x() + (head.geometry.get_width() - size.width) / 2; int y = head.geometry.get_y() + (head.geometry.get_height() - size.height) / 2; TRACE_MSG(head.geometry.get_x() << " " << head.geometry.get_width() << " " << size.width); TRACE_MSG(head.geometry.get_y() << " " << head.geometry.get_height() << " " << size.height); window.set_position(Gtk::WIN_POS_NONE); window.move(x, y); TRACE_EXIT(); } void GtkUtil::update_mnemonic(Gtk::Widget *widget, Glib::RefPtr accel_group) { Gtk::Label *label = (Gtk::Label *)widget->get_data(*label_quark); if (label != NULL) { guint mnemonic = label->get_mnemonic_keyval(); #ifdef HAVE_GTK3 if (mnemonic != GDK_KEY_VoidSymbol) #else if (mnemonic != GDK_VoidSymbol) #endif { widget->add_accelerator("activate", accel_group, mnemonic, (Gdk::ModifierType)0, Gtk::ACCEL_VISIBLE); } } } /* GtkUtil::get_visible_tooltip_window() returns the visible tooltip window or NULL */ GtkWindow * GtkUtil::get_visible_tooltip_window() { GtkWindow *func_retval = NULL; GList *list = gtk_window_list_toplevels(); for (GList *item = list; item; item = item->next) { GtkWidget *widget = (GtkWidget *)item->data; if (!widget || !GTK_IS_WINDOW(widget) || !gtk_widget_get_visible(widget)) continue; const char *widget_name = gtk_widget_get_name(widget); if (!widget_name) continue; if (!strcmp(widget_name, "gtk-tooltip")) { func_retval = (GtkWindow *)widget; break; } } g_list_free(list); return func_retval; } bool GtkUtil::running_on_wayland() { #ifdef GDK_WINDOWING_WAYLAND GdkDisplay *display = gdk_display_manager_get_default_display(gdk_display_manager_get()); return GDK_IS_WAYLAND_DISPLAY(display); #else return false; #endif } void GtkUtil::set_theme_fg_color(Gtk::Widget *widget) { #if GTK_CHECK_VERSION(3, 0, 0) const char style[] = "* {\n" "color: @theme_fg_color;\n" "}"; Glib::RefPtr css_provider = Gtk::CssProvider::create(); Glib::RefPtr style_context = widget->get_style_context(); css_provider->load_from_data(style); style_context->add_provider(css_provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); #endif } std::string GtkUtil::get_image_filename(const std::string &image) { std::string theme = GUIConfig::get_icon_theme(); if (theme != "") { theme += G_DIR_SEPARATOR_S; } std::string path; bool found = Util::complete_directory(theme + image, Util::SEARCH_PATH_IMAGES, path); if (!found) { found = Util::complete_directory(image, Util::SEARCH_PATH_IMAGES, path); } return path; } Glib::RefPtr GtkUtil::create_pixbuf(const std::string &name) { std::string filename = get_image_filename(name); Glib::RefPtr ret; try { ret = Gdk::Pixbuf::create_from_file(filename); } catch (const Glib::Exception &) { } return ret; } Gtk::Image * GtkUtil::create_image(const std::string &name) { std::string filename = get_image_filename(name); Gtk::Image *ret = NULL; try { ret = Gtk::manage(new Gtk::Image(filename)); } catch (const Glib::Exception &) { } return ret; }workrave-1.10.50/frontend/gtkmm/src/PreludeWindow.cc0000644000175100001710000003145514221624107021256 0ustar00gdm00000000000000// Copyright (C) 2001 - 2017 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include #ifdef HAVE_GTK3 # include #endif #include "debug.hh" #include "nls.h" #include "Text.hh" #include "Util.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "IBreakResponse.hh" #include "PreludeWindow.hh" #include "WindowHints.hh" #include "Frame.hh" #include "TimeBar.hh" #include "Hig.hh" #include "GtkUtil.hh" #ifdef PLATFORM_OS_WINDOWS # include #endif //! Construct a new Microbreak window. PreludeWindow::PreludeWindow(HeadInfo &head, BreakId break_id) : Gtk::Window(Gtk::WINDOW_POPUP) , #ifdef PLATFORM_OS_WINDOWS gdk_offset_x(0) , gdk_offset_y(0) , #endif SCREEN_MARGIN(20) , did_avoid(false) , time_bar(NULL) , frame(NULL) , window_frame(NULL) , label(NULL) , image_icon(NULL) , progress_value(0) , progress_max_value(0) , flash_visible(false) , align(NULL) { TRACE_ENTER("PreludeWindow::PreludeWindow"); // On W32, must be *before* realize, otherwise a border is drawn. set_resizable(false); set_decorated(false); set_position(Gtk::WIN_POS_CENTER_ALWAYS); Gtk::Window::set_border_width(0); #ifdef HAVE_GTK3 if (GtkUtil::running_on_wayland()) { set_app_paintable(true); signal_draw().connect(sigc::mem_fun(*this, &PreludeWindow::on_draw_event)); signal_screen_changed().connect(sigc::mem_fun(*this, &PreludeWindow::on_screen_changed_event)); on_screen_changed_event(get_screen()); set_size_request(head.get_width(), head.get_height()); } #endif #ifdef PLATFORM_OS_WINDOWS init_avoid_pointer_polling(); #endif realize(); time_bar = Gtk::manage(new TimeBar); label = Gtk::manage(new Gtk::Label()); Gtk::VBox *vbox = Gtk::manage(new Gtk::VBox(false, 6)); vbox->pack_start(*label, false, false, 0); vbox->pack_start(*time_bar, false, false, 0); image_icon = Gtk::manage(new Gtk::Image()); Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 6)); hbox->pack_start(*image_icon, false, false, 0); hbox->pack_start(*vbox, false, false, 0); frame = Gtk::manage(new Frame); frame->set_frame_style(Frame::STYLE_SOLID); frame->set_frame_width(6); frame->set_border_width(6); frame->add(*hbox); frame->signal_flash().connect(sigc::mem_fun(*this, &PreludeWindow::on_frame_flash_event)); flash_visible = true; color_warn = Gdk::Color("orange"); color_alert = Gdk::Color("red"); add(*frame); switch (break_id) { case BREAK_ID_MICRO_BREAK: label->set_markup(HigUtil::create_alert_text(_("Time for a micro-break?"), NULL)); break; case BREAK_ID_REST_BREAK: label->set_markup(HigUtil::create_alert_text(_("You need a rest break..."), NULL)); break; case BREAK_ID_DAILY_LIMIT: label->set_markup(HigUtil::create_alert_text(_("You should stop for today..."), NULL)); break; default: break; } #ifdef HAVE_GTK3 set_can_focus(false); #else unset_flags(Gtk::CAN_FOCUS); #endif show_all_children(); stick(); this->head = head; Gtk::Window::set_screen(head.screen); TRACE_EXIT(); } PreludeWindow::~PreludeWindow() { #ifdef PLATFORM_OS_WINDOWS if (avoid_signal.connected()) { avoid_signal.disconnect(); } #endif } void PreludeWindow::start() { TRACE_ENTER("PreludeWindow::start"); // Need to realize window before it is shown // Otherwise, there is not gobj()... realize_if_needed(); // Set some window hints. set_skip_pager_hint(true); set_skip_taskbar_hint(true); WindowHints::set_always_on_top(this, true); refresh(); GtkUtil::center_window(*this, head); show_all(); WindowHints::set_always_on_top(this, true); time_bar->set_bar_color(TimeBar::COLOR_ID_OVERDUE); TRACE_EXIT(); } //! Adds a child to the window. void PreludeWindow::add(Gtk::Widget &widget) { if (!window_frame) { window_frame = Gtk::manage(new Frame()); window_frame->set_border_width(0); window_frame->set_frame_style(Frame::STYLE_BREAK_WINDOW); if (GtkUtil::running_on_wayland()) { align = Gtk::manage(new Gtk::Alignment(0.5, 0.5, 0.0, 0.0)); align->add(*window_frame); Gtk::Window::add(*align); #ifdef HAVE_GTK3 widget.signal_size_allocate().connect(sigc::mem_fun(*this, &PreludeWindow::on_size_allocate_event)); #endif } else { Gtk::Window::add(*window_frame); } #ifndef PLATFORM_OS_WINDOWS window_frame->add_events(Gdk::ENTER_NOTIFY_MASK); window_frame->signal_enter_notify_event().connect(sigc::mem_fun(*this, &PreludeWindow::on_enter_notify_event)); #endif } window_frame->add(widget); } //! Self-Destruct /*! * This method MUST be used to destroy the objects through the * IPreludeWindow. it is NOT possible to do a delete on * this interface... */ void PreludeWindow::destroy() { TRACE_ENTER("PreludeWindow::destroy"); delete this; TRACE_EXIT(); } //! Stops the microbreak. void PreludeWindow::stop() { TRACE_ENTER("PreludeWindow::stop"); frame->set_frame_flashing(0); #ifdef HAVE_GTK3 hide(); #else hide_all(); #endif TRACE_EXIT(); } //! Refresh window. void PreludeWindow::refresh() { char s[128] = ""; time_bar->set_progress(progress_value, progress_max_value); int tminus = progress_max_value - progress_value; if (tminus >= 0 || (tminus < 0 && flash_visible)) { if (tminus < 0) tminus = 0; sprintf(s, progress_text.c_str(), Text::time_to_string(tminus).c_str()); } time_bar->set_text(s); time_bar->update(); #if defined(PLATFORM_OS_WINDOWS) // Vista GTK phantom toplevel parent kludge: HWND hwnd = (HWND)GDK_WINDOW_HWND(gtk_widget_get_window(Gtk::Widget::gobj())); if (hwnd) { HWND hAncestor = GetAncestor(hwnd, GA_ROOT); HWND hDesktop = GetDesktopWindow(); if (hAncestor && hDesktop && hAncestor != hDesktop) hwnd = hAncestor; // Set toplevel window topmost! SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE); } #endif } void PreludeWindow::set_progress(int value, int max_value) { progress_value = value; progress_max_value = max_value; refresh(); } void PreludeWindow::set_progress_text(IApp::PreludeProgressText text) { switch (text) { case IApp::PROGRESS_TEXT_BREAK_IN: progress_text = _("Break in %s"); break; case IApp::PROGRESS_TEXT_DISAPPEARS_IN: progress_text = _("Disappears in %s"); break; case IApp::PROGRESS_TEXT_SILENT_IN: progress_text = _("Silent in %s"); break; } } void PreludeWindow::set_stage(IApp::PreludeStage stage) { const char *icon = NULL; switch (stage) { case IApp::STAGE_INITIAL: frame->set_frame_flashing(0); frame->set_frame_visible(false); icon = "prelude-hint.png"; break; case IApp::STAGE_WARN: frame->set_frame_visible(true); frame->set_frame_flashing(500); frame->set_frame_color(color_warn); icon = "prelude-hint-sad.png"; break; case IApp::STAGE_ALERT: frame->set_frame_flashing(500); frame->set_frame_color(color_alert); icon = "prelude-hint-sad.png"; break; case IApp::STAGE_MOVE_OUT: if (!did_avoid) { int winx, winy; get_position(winx, winy); set_position(Gtk::WIN_POS_NONE); move(winx, head.get_y() + SCREEN_MARGIN); } break; } if (icon != NULL) { string file = GtkUtil::get_image_filename(icon); image_icon->set(file); } } void PreludeWindow::on_frame_flash_event(bool frame_visible) { TRACE_ENTER("PreludeWindow::on_frame_flash_event"); flash_visible = frame_visible; refresh(); TRACE_EXIT(); } #ifdef PLATFORM_OS_WINDOWS // Sets whether the window should run away for the mouse pointer. void PreludeWindow::init_avoid_pointer_polling() { TRACE_ENTER("PreludeWindow::init_avoid_pointer_polling"); if (!avoid_signal.connected()) { int x, y; get_pointer_location(x, y); TRACE_MSG("d " << x << " " << y); POINT p; GetCursorPos(&p); TRACE_MSG("p " << p.x << " " << p.y); gdk_offset_x = p.x - x; gdk_offset_y = p.y - y; TRACE_MSG("offset " << gdk_offset_x << " " << gdk_offset_y); avoid_signal = Glib::signal_timeout().connect(sigc::mem_fun(*this, &PreludeWindow::on_avoid_pointer_timer_event), 150); } did_avoid = false; TRACE_EXIT(); } bool PreludeWindow::on_avoid_pointer_timer_event() { TRACE_ENTER("PreludeWindow::on_avoid_pointer_timer"); /* display->get_pointer reads low-level keyboard state, and that's a problem for anti-hook monitors. use GetCursorPos() instead. */ POINT p; GetCursorPos(&p); int winx, winy; set_gravity(Gdk::GRAVITY_STATIC); get_position(winx, winy); int width, height; Gtk::Allocation a = frame->get_allocation(); width = a.get_width(); height = a.get_height(); int px = p.x - gdk_offset_x; int py = p.y - gdk_offset_y; if (px >= winx && px < winx + width && py >= winy && py < winy + height) { avoid_pointer(); } TRACE_EXIT(); return true; } #endif // PLATFORM_OS_WINDOWS #ifndef PLATFORM_OS_WINDOWS //! GDK EventNotifyEvent notification. bool PreludeWindow::on_enter_notify_event(GdkEventCrossing *event) { (void)event; avoid_pointer(); return false; } #endif //! Move window if pointer is neat specified location. void PreludeWindow::avoid_pointer() { TRACE_ENTER("PreludeWindow::avoid_pointer"); Glib::RefPtr window = get_window(); did_avoid = true; #ifdef HAVE_GTK3 int winx, winy, width, height; if (GtkUtil::running_on_wayland()) { Gtk::Allocation a = frame->get_allocation(); winx = a.get_x(); winy = a.get_y(); width = a.get_width(); height = a.get_height(); } else { window->get_geometry(winx, winy, width, height); } #else int winx, winy, width, height, wind; window->get_geometry(winx, winy, width, height, wind); #endif int screen_height = head.get_height(); int top_y = head.get_y() + SCREEN_MARGIN; int bottom_y = head.get_y() + screen_height - height - SCREEN_MARGIN; if (winy > screen_height / 2) { winy = top_y; } else { winy = bottom_y; } #ifdef HAVE_GTK3 if (GtkUtil::running_on_wayland()) { if (winy == bottom_y) { align->set(0.5, 0.9, 0.0, 0.0); } else { align->set(0.5, 0.1, 0.0, 0.0); } return; } #endif set_position(Gtk::WIN_POS_NONE); move(winx, winy); TRACE_EXIT(); } #ifdef HAVE_GTK3 bool PreludeWindow::on_draw_event(const Cairo::RefPtr &cr) { cr->save(); cr->set_source_rgba(0.0, 0.0, 0.0, 0.0); cr->set_operator(Cairo::OPERATOR_SOURCE); cr->paint(); cr->restore(); return Gtk::Window::on_draw(cr); } void PreludeWindow::on_screen_changed_event(const Glib::RefPtr &previous_screen) { (void)previous_screen; const Glib::RefPtr screen = get_screen(); const Glib::RefPtr visual = screen->get_rgba_visual(); if (visual) { gtk_widget_set_visual(GTK_WIDGET(gobj()), visual->gobj()); } } void PreludeWindow::update_input_region(Gtk::Allocation &allocation) { if (GtkUtil::running_on_wayland()) { Glib::RefPtr window = get_window(); if (window) { Cairo::RectangleInt rect = {allocation.get_x(), allocation.get_y(), allocation.get_width(), allocation.get_height()}; window->input_shape_combine_region(Cairo::Region::create(rect), 0, 0); } } } void PreludeWindow::on_size_allocate_event(Gtk::Allocation &allocation) { update_input_region(allocation); } #endif void PreludeWindow::get_pointer_location(int &x, int &y) { #ifdef HAVE_GTK3 Glib::RefPtr display = Gdk::Display::get_default(); Glib::RefPtr device_manager = display->get_device_manager(); Glib::RefPtr device = device_manager->get_client_pointer(); device->get_position(x, y); #else // HAVE_GTK3 Glib::RefPtr display = Gdk::Display::get_default(); Gdk::ModifierType mod; display->get_pointer(x, y, mod); #endif // HAVE_GTK3 } workrave-1.10.50/frontend/gtkmm/src/gtktrayicon.c0000644000175100001710000005237514221624107020665 0ustar00gdm00000000000000/* gtktrayicon.c * Copyright (C) 2002 Anders Carlsson * * 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 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* * This is an implementation of the freedesktop.org "system tray" spec, * http://www.freedesktop.org/wiki/Standards/systemtray-spec */ /* * Ripped from Gtk+ because it is not a public API. * Workrave abuses the trayicon by putting more than a simple icon * in the tray. Gtk+ only has a statusicon as public API. * * Renamed to avoid naming conflicts. * * -- Rob Caelers */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include #include "gtktrayicon.h" #include #include #define SYSTEM_TRAY_REQUEST_DOCK 0 #define SYSTEM_TRAY_BEGIN_MESSAGE 1 #define SYSTEM_TRAY_CANCEL_MESSAGE 2 #define SYSTEM_TRAY_ORIENTATION_HORZ 0 #define SYSTEM_TRAY_ORIENTATION_VERT 1 enum { PROP_0, PROP_ORIENTATION }; struct _WRGtkTrayIconPrivate { guint stamp; Atom selection_atom; Atom manager_atom; Atom system_tray_opcode_atom; Atom orientation_atom; Atom visual_atom; Window manager_window; GdkVisual *manager_visual; gboolean manager_visual_rgba; GtkOrientation orientation; }; static void wrgtk_tray_icon_constructed(GObject *object); static void wrgtk_tray_icon_dispose(GObject *object); static void wrgtk_tray_icon_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); static void wrgtk_tray_icon_realize(GtkWidget *widget); static void wrgtk_tray_icon_style_set(GtkWidget *widget, GtkStyle *previous_style); static gboolean wrgtk_tray_icon_delete(GtkWidget *widget, GdkEventAny *event); static gboolean wrgtk_tray_icon_expose(GtkWidget *widget, GdkEventExpose *event); static void wrgtk_tray_icon_clear_manager_window(WRGtkTrayIcon *icon); static void wrgtk_tray_icon_update_manager_window(WRGtkTrayIcon *icon); static void wrgtk_tray_icon_manager_window_destroyed(WRGtkTrayIcon *icon); static GdkFilterReturn wrgtk_tray_icon_manager_filter(GdkXEvent *xevent, GdkEvent *event, gpointer user_data); G_DEFINE_TYPE(WRGtkTrayIcon, wrgtk_tray_icon, GTK_TYPE_PLUG) static void wrgtk_tray_icon_class_init(WRGtkTrayIconClass *class) { GObjectClass *gobject_class = (GObjectClass *)class; GtkWidgetClass *widget_class = (GtkWidgetClass *)class; gobject_class->get_property = wrgtk_tray_icon_get_property; gobject_class->constructed = wrgtk_tray_icon_constructed; gobject_class->dispose = wrgtk_tray_icon_dispose; widget_class->realize = wrgtk_tray_icon_realize; widget_class->style_set = wrgtk_tray_icon_style_set; widget_class->delete_event = wrgtk_tray_icon_delete; widget_class->expose_event = wrgtk_tray_icon_expose; g_object_class_install_property(gobject_class, PROP_ORIENTATION, g_param_spec_enum("orientation", _("Orientation"), _("The orientation of the tray"), GTK_TYPE_ORIENTATION, GTK_ORIENTATION_HORIZONTAL, G_PARAM_READABLE)); g_type_class_add_private(class, sizeof(WRGtkTrayIconPrivate)); } static void wrgtk_tray_icon_init(WRGtkTrayIcon *icon) { icon->priv = G_TYPE_INSTANCE_GET_PRIVATE(icon, GTK_TYPE_TRAY_ICON, WRGtkTrayIconPrivate); icon->priv->stamp = 1; icon->priv->orientation = GTK_ORIENTATION_HORIZONTAL; gtk_widget_set_app_paintable(GTK_WIDGET(icon), TRUE); gtk_widget_add_events(GTK_WIDGET(icon), GDK_PROPERTY_CHANGE_MASK); } static void wrgtk_tray_icon_constructed(GObject *object) { /* Do setup that depends on the screen; screen has been set at this point */ WRGtkTrayIcon *icon = GTK_TRAY_ICON(object); GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(object)); GdkWindow *root_window = gdk_screen_get_root_window(screen); GdkDisplay *display = gtk_widget_get_display(GTK_WIDGET(object)); Display *xdisplay = gdk_x11_display_get_xdisplay(display); char buffer[256]; g_snprintf(buffer, sizeof(buffer), "_NET_SYSTEM_TRAY_S%d", gdk_screen_get_number(screen)); icon->priv->selection_atom = XInternAtom(xdisplay, buffer, False); icon->priv->manager_atom = XInternAtom(xdisplay, "MANAGER", False); icon->priv->system_tray_opcode_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_OPCODE", False); icon->priv->orientation_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_ORIENTATION", False); icon->priv->visual_atom = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_VISUAL", False); /* Add a root window filter so that we get changes on MANAGER */ gdk_window_add_filter(root_window, wrgtk_tray_icon_manager_filter, icon); wrgtk_tray_icon_update_manager_window(icon); } static void wrgtk_tray_icon_clear_manager_window(WRGtkTrayIcon *icon) { GdkDisplay *display = gtk_widget_get_display(GTK_WIDGET(icon)); if (icon->priv->manager_window != None) { GdkWindow *gdkwin; gdkwin = gdk_window_lookup_for_display(display, icon->priv->manager_window); gdk_window_remove_filter(gdkwin, wrgtk_tray_icon_manager_filter, icon); icon->priv->manager_window = None; icon->priv->manager_visual = NULL; } } static void wrgtk_tray_icon_dispose(GObject *object) { WRGtkTrayIcon *icon = GTK_TRAY_ICON(object); GtkWidget *widget = GTK_WIDGET(object); GdkWindow *root_window = gdk_screen_get_root_window(gtk_widget_get_screen(widget)); wrgtk_tray_icon_clear_manager_window(icon); gdk_window_remove_filter(root_window, wrgtk_tray_icon_manager_filter, icon); } static void wrgtk_tray_icon_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { WRGtkTrayIcon *icon = GTK_TRAY_ICON(object); switch (prop_id) { case PROP_ORIENTATION: g_value_set_enum(value, icon->priv->orientation); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); break; } } static gboolean wrgtk_tray_icon_expose(GtkWidget *widget, GdkEventExpose *event) { WRGtkTrayIcon *icon = GTK_TRAY_ICON(widget); GtkWidget *focus_child; gint border_width, x, y, width, height; gboolean retval = FALSE; if (icon->priv->manager_visual_rgba) { /* Clear to transparent */ cairo_t *cr = gdk_cairo_create(widget->window); cairo_set_source_rgba(cr, 0, 0, 0, 0); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); gdk_cairo_region(cr, event->region); cairo_fill(cr); cairo_destroy(cr); } else { /* Clear to parent-relative pixmap */ gdk_window_clear_area(widget->window, event->area.x, event->area.y, event->area.width, event->area.height); } if (GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->expose_event) retval = GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->expose_event(widget, event); focus_child = GTK_CONTAINER(widget)->focus_child; if (focus_child && GTK_WIDGET_HAS_FOCUS(focus_child)) { border_width = GTK_CONTAINER(widget)->border_width; x = widget->allocation.x + border_width; y = widget->allocation.y + border_width; width = widget->allocation.width - 2 * border_width; height = widget->allocation.height - 2 * border_width; gtk_paint_focus( widget->style, widget->window, GTK_WIDGET_STATE(widget), &event->area, widget, "tray_icon", x, y, width, height); } return retval; } static void wrgtk_tray_icon_get_orientation_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; g_assert(icon->priv->manager_window != None); gdk_error_trap_push(); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->orientation_atom, 0, G_MAXLONG, FALSE, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_error_trap_pop(); if (error || result != Success) return; if (type == XA_CARDINAL && nitems == 1 && format == 32) { GtkOrientation orientation; orientation = (prop.prop[0] == SYSTEM_TRAY_ORIENTATION_HORZ) ? GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL; if (icon->priv->orientation != orientation) { icon->priv->orientation = orientation; g_object_notify(G_OBJECT(icon), "orientation"); } } if (type != None) XFree(prop.prop); } void wrgtk_tray_icon_get_visual_property(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); Atom type; int format; union { gulong *prop; guchar *prop_ch; } prop = {NULL}; gulong nitems; gulong bytes_after; int error, result; GdkVisual *visual; g_assert(icon->priv->manager_window != None); gdk_error_trap_push(); type = None; result = XGetWindowProperty(xdisplay, icon->priv->manager_window, icon->priv->visual_atom, 0, G_MAXLONG, FALSE, XA_VISUALID, &type, &format, &nitems, &bytes_after, &(prop.prop_ch)); error = gdk_error_trap_pop(); visual = NULL; if (!error && result == Success && type == XA_VISUALID && nitems == 1 && format == 32) { VisualID visual_id = prop.prop[0]; visual = gdk_x11_screen_lookup_visual(screen, visual_id); } icon->priv->manager_visual = visual; icon->priv->manager_visual_rgba = visual != NULL && (visual->red_prec + visual->blue_prec + visual->green_prec < visual->depth); /* For the background-relative hack we use when we aren't using a real RGBA * visual, we can't be double-buffered */ gtk_widget_set_double_buffered(GTK_WIDGET(icon), icon->priv->manager_visual_rgba); if (type != None) XFree(prop.prop); } static GdkFilterReturn wrgtk_tray_icon_manager_filter(GdkXEvent *xevent, GdkEvent *event, gpointer user_data) { WRGtkTrayIcon *icon = user_data; XEvent *xev = (XEvent *)xevent; if (xev->xany.type == ClientMessage && xev->xclient.message_type == icon->priv->manager_atom && xev->xclient.data.l[1] == icon->priv->selection_atom) { GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: tray manager appeared\n", icon)); wrgtk_tray_icon_update_manager_window(icon); } else if (xev->xany.window == icon->priv->manager_window) { if (xev->xany.type == PropertyNotify && xev->xproperty.atom == icon->priv->orientation_atom) { GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: got PropertyNotify on manager window for orientation atom\n", icon)); wrgtk_tray_icon_get_orientation_property(icon); } else if (xev->xany.type == DestroyNotify) { GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: got DestroyNotify for manager window\n", icon)); wrgtk_tray_icon_manager_window_destroyed(icon); } else GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: got other message on manager window\n", icon)); } return GDK_FILTER_CONTINUE; } static void wrgtk_tray_icon_send_manager_message(WRGtkTrayIcon *icon, long message, Window window, long data1, long data2, long data3) { XClientMessageEvent ev; Display *display; memset(&ev, 0, sizeof(ev)); ev.type = ClientMessage; ev.window = window; ev.message_type = icon->priv->system_tray_opcode_atom; ev.format = 32; ev.data.l[0] = gdk_x11_get_server_time(GTK_WIDGET(icon)->window); ev.data.l[1] = message; ev.data.l[2] = data1; ev.data.l[3] = data2; ev.data.l[4] = data3; display = GDK_DISPLAY_XDISPLAY(gtk_widget_get_display(GTK_WIDGET(icon))); gdk_error_trap_push(); XSendEvent(display, icon->priv->manager_window, False, NoEventMask, (XEvent *)&ev); XSync(display, False); gdk_error_trap_pop(); } static void wrgtk_tray_icon_send_dock_request(WRGtkTrayIcon *icon) { GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: sending dock request to manager window %lx\n", icon, (gulong)icon->priv->manager_window)); wrgtk_tray_icon_send_manager_message( icon, SYSTEM_TRAY_REQUEST_DOCK, icon->priv->manager_window, gtk_plug_get_id(GTK_PLUG(icon)), 0, 0); } static void wrgtk_tray_icon_update_manager_window(WRGtkTrayIcon *icon) { GtkWidget *widget = GTK_WIDGET(icon); GdkScreen *screen = gtk_widget_get_screen(widget); GdkDisplay *display = gdk_screen_get_display(screen); Display *xdisplay = GDK_DISPLAY_XDISPLAY(display); GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: updating tray icon manager window, current manager window: %lx\n", icon, (gulong)icon->priv->manager_window)); if (icon->priv->manager_window != None) return; GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: trying to find manager window\n", icon)); XGrabServer(xdisplay); icon->priv->manager_window = XGetSelectionOwner(xdisplay, icon->priv->selection_atom); if (icon->priv->manager_window != None) XSelectInput(xdisplay, icon->priv->manager_window, StructureNotifyMask | PropertyChangeMask); XUngrabServer(xdisplay); XFlush(xdisplay); if (icon->priv->manager_window != None) { GdkWindow *gdkwin; GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: is being managed by window %lx\n", icon, (gulong)icon->priv->manager_window)); gdkwin = gdk_window_lookup_for_display(display, icon->priv->manager_window); gdk_window_add_filter(gdkwin, wrgtk_tray_icon_manager_filter, icon); wrgtk_tray_icon_get_orientation_property(icon); wrgtk_tray_icon_get_visual_property(icon); if (GTK_WIDGET_REALIZED(icon)) { if ((icon->priv->manager_visual == NULL && gtk_widget_get_visual(widget) == gdk_screen_get_system_visual(screen)) || (icon->priv->manager_visual == gtk_widget_get_visual(widget))) { /* Already have the right visual, can just dock */ wrgtk_tray_icon_send_dock_request(icon); } else { /* Need to re-realize the widget to get the right visual */ gtk_widget_hide(widget); gtk_widget_unrealize(widget); gtk_widget_show(widget); } } } else GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: no tray manager found\n", icon)); } static void wrgtk_tray_icon_manager_window_destroyed(WRGtkTrayIcon *icon) { g_return_if_fail(icon->priv->manager_window != None); GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: tray manager window destroyed\n", icon)); wrgtk_tray_icon_clear_manager_window(icon); } static gboolean wrgtk_tray_icon_delete(GtkWidget *widget, GdkEventAny *event) { // WRGtkTrayIcon *icon = GTK_TRAY_ICON (widget); GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: delete notify, tray manager window %lx\n", icon, (gulong)icon->priv->manager_window)); /* A bug in X server versions up to x.org 1.5.0 means that: * XFixesChangeSaveSet(...., SaveSetRoot, SaveSetUnmap) doesn't work properly * and we'll left mapped in a separate toplevel window if the tray is destroyed. * For simplicity just get rid of our X window and start over. */ gtk_widget_hide(widget); gtk_widget_unrealize(widget); gtk_widget_show(widget); /* Handled it, don't destroy the tray icon */ return TRUE; } static void wrgtk_tray_icon_set_colormap(WRGtkTrayIcon *icon) { GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(icon)); GdkColormap *colormap; GdkVisual *visual = icon->priv->manager_visual; gboolean new_colormap = FALSE; /* To avoid uncertainty about colormaps, _NET_SYSTEM_TRAY_VISUAL is supposed * to be either the screen default visual or a TrueColor visual; ignore it * if it is something else */ if (visual && visual->type != GDK_VISUAL_TRUE_COLOR) visual = NULL; if (visual == NULL || visual == gdk_screen_get_system_visual(screen)) colormap = gdk_screen_get_system_colormap(screen); else if (visual == gdk_screen_get_rgb_visual(screen)) colormap = gdk_screen_get_rgb_colormap(screen); else if (visual == gdk_screen_get_rgba_visual(screen)) colormap = gdk_screen_get_rgba_colormap(screen); else { colormap = gdk_colormap_new(visual, FALSE); new_colormap = TRUE; } gtk_widget_set_colormap(GTK_WIDGET(icon), colormap); if (new_colormap) g_object_unref(colormap); } static void wrgtk_tray_icon_realize(GtkWidget *widget) { WRGtkTrayIcon *icon = GTK_TRAY_ICON(widget); /* Set our colormap before realizing */ wrgtk_tray_icon_set_colormap(icon); GTK_WIDGET_CLASS(wrgtk_tray_icon_parent_class)->realize(widget); if (icon->priv->manager_visual_rgba) { /* Set a transparent background */ GdkColor transparent = {0, 0, 0, 0}; /* Only pixel=0 matters */ gdk_window_set_background(widget->window, &transparent); } else { /* Set a parent-relative background pixmap */ gdk_window_set_back_pixmap(widget->window, NULL, TRUE); } GTK_NOTE(PLUGSOCKET, g_print("GtkStatusIcon %p: realized, window: %lx, socket window: %lx\n", widget, (gulong)GDK_WINDOW_XWINDOW(widget->window), GTK_PLUG(icon)->socket_window ? (gulong)GDK_WINDOW_XWINDOW(GTK_PLUG(icon)->socket_window) : 0UL)); if (icon->priv->manager_window != None) wrgtk_tray_icon_send_dock_request(icon); } static void wrgtk_tray_icon_style_set(GtkWidget *widget, GtkStyle *previous_style) { /* The default handler resets the background according to the style. We either * use a transparent background or a parent-relative background and ignore the * style background. So, just don't chain up. */ } guint _wrgtk_tray_icon_send_message(WRGtkTrayIcon *icon, gint timeout, const gchar *message, gint len) { guint stamp; g_return_val_if_fail(GTK_IS_TRAY_ICON(icon), 0); g_return_val_if_fail(timeout >= 0, 0); g_return_val_if_fail(message != NULL, 0); if (icon->priv->manager_window == None) return 0; if (len < 0) len = strlen(message); stamp = icon->priv->stamp++; /* Get ready to send the message */ wrgtk_tray_icon_send_manager_message( icon, SYSTEM_TRAY_BEGIN_MESSAGE, (Window)gtk_plug_get_id(GTK_PLUG(icon)), timeout, len, stamp); /* Now to send the actual message */ gdk_error_trap_push(); while (len > 0) { XClientMessageEvent ev; Display *xdisplay; xdisplay = GDK_DISPLAY_XDISPLAY(gtk_widget_get_display(GTK_WIDGET(icon))); memset(&ev, 0, sizeof(ev)); ev.type = ClientMessage; ev.window = (Window)gtk_plug_get_id(GTK_PLUG(icon)); ev.format = 8; ev.message_type = XInternAtom(xdisplay, "_NET_SYSTEM_TRAY_MESSAGE_DATA", False); if (len > 20) { memcpy(&ev.data, message, 20); len -= 20; message += 20; } else { memcpy(&ev.data, message, len); len = 0; } XSendEvent(xdisplay, icon->priv->manager_window, False, StructureNotifyMask, (XEvent *)&ev); XSync(xdisplay, False); } gdk_error_trap_pop(); return stamp; } void _wrgtk_tray_icon_cancel_message(WRGtkTrayIcon *icon, guint id) { g_return_if_fail(GTK_IS_TRAY_ICON(icon)); g_return_if_fail(id > 0); wrgtk_tray_icon_send_manager_message(icon, SYSTEM_TRAY_CANCEL_MESSAGE, (Window)gtk_plug_get_id(GTK_PLUG(icon)), id, 0, 0); } WRGtkTrayIcon * wrgtk_tray_icon_new_for_screen(GdkScreen *screen, const gchar *name) { g_return_val_if_fail(GDK_IS_SCREEN(screen), NULL); return g_object_new(GTK_TYPE_TRAY_ICON, "screen", screen, "title", name, NULL); } WRGtkTrayIcon * wrgtk_tray_icon_new(const gchar *name) { return g_object_new(GTK_TYPE_TRAY_ICON, "title", name, NULL); } GtkOrientation wrgtk_tray_icon_get_orientation(WRGtkTrayIcon *icon) { g_return_val_if_fail(GTK_IS_TRAY_ICON(icon), GTK_ORIENTATION_HORIZONTAL); return icon->priv->orientation; } workrave-1.10.50/frontend/gtkmm/src/IndicatorAppletMenu.cc0000644000175100001710000001274314221624107022374 0ustar00gdm00000000000000// IndicatorAppletMenu.cc --- Menus using IndicatorApplet+ // // Copyright (C) 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include "indicator-applet.h" #include #ifdef HAVE_INDICATOR_AYATANA # include #else # include #endif #include "IndicatorAppletMenu.hh" #include "GenericDBusApplet.hh" #include "GUI.hh" #include "Menus.hh" using namespace std; //! Constructor. IndicatorAppletMenu::IndicatorAppletMenu() {} //! Destructor. IndicatorAppletMenu::~IndicatorAppletMenu() { // FIXME: cleanup. } DbusmenuMenuitem * IndicatorAppletMenu::menu_item_append(DbusmenuMenuitem *parent, const char *label) { return menu_item_append(parent, label, Normal, -1); } DbusmenuMenuitem * IndicatorAppletMenu::menu_item_append(DbusmenuMenuitem *parent, const char *label, int cmd) { return menu_item_append(parent, label, Normal, cmd); } DbusmenuMenuitem * IndicatorAppletMenu::menu_item_append(DbusmenuMenuitem *parent, const char *label, MenuItemType type, int cmd) { DbusmenuMenuitem *item = dbusmenu_menuitem_new(); dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_LABEL, label); switch (type) { case Radio: dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE, DBUSMENU_MENUITEM_TOGGLE_RADIO); break; case Check: dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE, DBUSMENU_MENUITEM_TOGGLE_CHECK); break; case Normal: break; } dbusmenu_menuitem_child_append(parent, item); g_signal_connect(G_OBJECT(item), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(static_menu_item_activated), this); if (cmd != -1) { menu_items[cmd] = item; } return item; } void IndicatorAppletMenu::menu_item_set_checked(int cmd, bool checked) { dbusmenu_menuitem_property_set_int(menu_items[cmd], DBUSMENU_MENUITEM_PROP_TOGGLE_STATE, checked ? DBUSMENU_MENUITEM_TOGGLE_STATE_CHECKED : DBUSMENU_MENUITEM_TOGGLE_STATE_UNCHECKED); } void IndicatorAppletMenu::init() { server = dbusmenu_server_new(WORKRAVE_INDICATOR_MENU_OBJ); root = dbusmenu_menuitem_new(); dbusmenu_server_set_root(server, root); dbusmenu_menuitem_property_set_bool(root, DBUSMENU_MENUITEM_PROP_VISIBLE, TRUE); menu_item_append(root, _("Open"), MENU_COMMAND_OPEN); menu_item_append(root, _("Preferences"), MENU_COMMAND_PREFERENCES); menu_item_append(root, _("_Rest break"), MENU_COMMAND_REST_BREAK); menu_item_append(root, _("Exercises"), MENU_COMMAND_EXERCISES); DbusmenuMenuitem *mode_menu = menu_item_append(root, _("_Mode")); menu_item_append(mode_menu, _("_Normal"), Radio, MENU_COMMAND_MODE_NORMAL); menu_item_append(mode_menu, _("Q_uiet"), Radio, MENU_COMMAND_MODE_QUIET); menu_item_append(mode_menu, _("_Suspended"), Radio, MENU_COMMAND_MODE_SUSPENDED); DbusmenuMenuitem *network_menu = menu_item_append(root, _("_Network")); menu_item_append(network_menu, _("_Connect"), MENU_COMMAND_NETWORK_CONNECT); menu_item_append(network_menu, _("_Disconnect"), MENU_COMMAND_NETWORK_DISCONNECT); menu_item_append(network_menu, _("_Reconnect"), MENU_COMMAND_NETWORK_RECONNECT); menu_item_append(network_menu, _("Show _log"), Check, MENU_COMMAND_NETWORK_LOG); menu_item_append(root, _("Reading mode"), Check, MENU_COMMAND_MODE_READING); menu_item_append(root, _("Statistics"), MENU_COMMAND_STATISTICS); menu_item_append(root, _("About..."), MENU_COMMAND_ABOUT); menu_item_append(root, _("Quit"), MENU_COMMAND_QUIT); } void IndicatorAppletMenu::resync(OperationMode mode, UsageMode usage, bool show_log) { menu_item_set_checked(MENU_COMMAND_MODE_NORMAL, mode == OPERATION_MODE_NORMAL); menu_item_set_checked(MENU_COMMAND_MODE_QUIET, mode == OPERATION_MODE_QUIET); menu_item_set_checked(MENU_COMMAND_MODE_SUSPENDED, mode == OPERATION_MODE_SUSPENDED); menu_item_set_checked(MENU_COMMAND_MODE_READING, usage == USAGE_MODE_READING); menu_item_set_checked(MENU_COMMAND_NETWORK_LOG, show_log); } int IndicatorAppletMenu::find_menu_item(DbusmenuMenuitem *item) const { for (int i = 0; i < MENU_COMMAND_SIZEOF; i++) { if (menu_items[i] == item) { return i; } } return -1; } void IndicatorAppletMenu::static_menu_item_activated(DbusmenuMenuitem *mi, guint timestamp, gpointer user_data) { (void)timestamp; IndicatorAppletMenu *menu = (IndicatorAppletMenu *)user_data; menu->menu_item_activated(mi); } void IndicatorAppletMenu::menu_item_activated(DbusmenuMenuitem *mi) { int command = find_menu_item(mi); if (command != -1) { IGUI *gui = GUI::get_instance(); Menus *menus = gui->get_menus(); menus->applet_command(command); } } workrave-1.10.50/frontend/gtkmm/src/eggsmclient-win32.c0000644000175100001710000002253614221624107021564 0ustar00gdm00000000000000/* * Copyright (C) 2007 Novell, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* EggSMClientWin32 * * For details on the Windows XP logout process, see: * http://msdn.microsoft.com/en-us/library/aa376876.aspx. * * Vista adds some new APIs which EggSMClient does not make use of; see * http://msdn.microsoft.com/en-us/library/ms700677(VS.85).aspx * * When shutting down, Windows sends every top-level window a * WM_QUERYENDSESSION event, which the application must respond to * synchronously, saying whether or not it will quit. To avoid main * loop re-entrancy problems (and to avoid having to muck about too * much with the guts of the gdk-win32 main loop), we watch for this * event in a separate thread, which then signals the main thread and * waits for the main thread to handle the event. Since we don't want * to require g_thread_init() to be called, we do this all using * Windows-specific thread methods. * * After the application handles the WM_QUERYENDSESSION event, * Windows then sends it a WM_ENDSESSION event with a TRUE or FALSE * parameter indicating whether the session is or is not actually * going to end now. We handle this from the other thread as well. * * As mentioned above, Vista introduces several additional new APIs * that don't fit into the (current) EggSMClient API. Windows also has * an entirely separate shutdown-notification scheme for non-GUI apps, * which we also don't handle here. */ #include "config.h" #include "eggsmclient-private.h" #include #define WIN32_LEAN_AND_MEAN #define UNICODE #include #include #define EGG_TYPE_SM_CLIENT_WIN32 (egg_sm_client_win32_get_type()) #define EGG_SM_CLIENT_WIN32(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), EGG_TYPE_SM_CLIENT_WIN32, EggSMClientWin32)) #define EGG_SM_CLIENT_WIN32_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), EGG_TYPE_SM_CLIENT_WIN32, EggSMClientWin32Class)) #define EGG_IS_SM_CLIENT_WIN32(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), EGG_TYPE_SM_CLIENT_WIN32)) #define EGG_IS_SM_CLIENT_WIN32_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), EGG_TYPE_SM_CLIENT_WIN32)) #define EGG_SM_CLIENT_WIN32_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EGG_TYPE_SM_CLIENT_WIN32, EggSMClientWin32Class)) typedef struct _EggSMClientWin32 EggSMClientWin32; typedef struct _EggSMClientWin32Class EggSMClientWin32Class; struct _EggSMClientWin32 { EggSMClient parent; HANDLE message_event, response_event; volatile GSourceFunc event; volatile gboolean will_quit; }; struct _EggSMClientWin32Class { EggSMClientClass parent_class; }; static void sm_client_win32_startup(EggSMClient *client, const char *client_id); static void sm_client_win32_will_quit(EggSMClient *client, gboolean will_quit); static gboolean sm_client_win32_end_session(EggSMClient *client, EggSMClientEndStyle style, gboolean request_confirmation); static GSource *g_win32_handle_source_add(HANDLE handle, GSourceFunc callback, gpointer user_data); static gboolean got_message(gpointer user_data); static void sm_client_thread(gpointer data); G_DEFINE_TYPE(EggSMClientWin32, egg_sm_client_win32, EGG_TYPE_SM_CLIENT) static void egg_sm_client_win32_init(EggSMClientWin32 *win32) { ; } static void egg_sm_client_win32_class_init(EggSMClientWin32Class *klass) { EggSMClientClass *sm_client_class = EGG_SM_CLIENT_CLASS(klass); sm_client_class->startup = sm_client_win32_startup; sm_client_class->will_quit = sm_client_win32_will_quit; sm_client_class->end_session = sm_client_win32_end_session; } EggSMClient * egg_sm_client_win32_new(void) { return g_object_new(EGG_TYPE_SM_CLIENT_WIN32, NULL); } static void sm_client_win32_startup(EggSMClient *client, const char *client_id) { EggSMClientWin32 *win32 = (EggSMClientWin32 *)client; win32->message_event = CreateEvent(NULL, FALSE, FALSE, NULL); win32->response_event = CreateEvent(NULL, FALSE, FALSE, NULL); g_win32_handle_source_add(win32->message_event, got_message, win32); _beginthread(sm_client_thread, 0, client); } static void sm_client_win32_will_quit(EggSMClient *client, gboolean will_quit) { EggSMClientWin32 *win32 = (EggSMClientWin32 *)client; win32->will_quit = will_quit; SetEvent(win32->response_event); } static gboolean sm_client_win32_end_session(EggSMClient *client, EggSMClientEndStyle style, gboolean request_confirmation) { UINT uFlags = EWX_LOGOFF; switch (style) { case EGG_SM_CLIENT_END_SESSION_DEFAULT: case EGG_SM_CLIENT_LOGOUT: uFlags = EWX_LOGOFF; break; case EGG_SM_CLIENT_REBOOT: uFlags = EWX_REBOOT; break; case EGG_SM_CLIENT_SHUTDOWN: uFlags = EWX_POWEROFF; break; } /* There's no way to make ExitWindowsEx() show a logout dialog, so * we ignore @request_confirmation. */ #ifdef SHTDN_REASON_FLAG_PLANNED ExitWindowsEx(uFlags, SHTDN_REASON_FLAG_PLANNED); #else ExitWindowsEx(uFlags, 0); #endif return TRUE; } /* callbacks from logout-listener thread */ static gboolean emit_quit_requested(gpointer smclient) { gdk_threads_enter(); egg_sm_client_quit_requested(smclient); gdk_threads_leave(); return FALSE; } static gboolean emit_quit(gpointer smclient) { EggSMClientWin32 *win32 = smclient; gdk_threads_enter(); egg_sm_client_quit(smclient); gdk_threads_leave(); SetEvent(win32->response_event); return FALSE; } static gboolean emit_quit_cancelled(gpointer smclient) { EggSMClientWin32 *win32 = smclient; gdk_threads_enter(); egg_sm_client_quit_cancelled(smclient); gdk_threads_leave(); SetEvent(win32->response_event); return FALSE; } static gboolean got_message(gpointer smclient) { EggSMClientWin32 *win32 = smclient; win32->event(win32); return TRUE; } /* Windows HANDLE GSource */ typedef struct { GSource source; GPollFD pollfd; } GWin32HandleSource; static gboolean g_win32_handle_source_prepare(GSource *source, gint *timeout) { *timeout = -1; return FALSE; } static gboolean g_win32_handle_source_check(GSource *source) { GWin32HandleSource *hsource = (GWin32HandleSource *)source; return hsource->pollfd.revents; } static gboolean g_win32_handle_source_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { return (*callback)(user_data); } static void g_win32_handle_source_finalize(GSource *source) { ; } GSourceFuncs g_win32_handle_source_funcs = {g_win32_handle_source_prepare, g_win32_handle_source_check, g_win32_handle_source_dispatch, g_win32_handle_source_finalize}; static GSource * g_win32_handle_source_add(HANDLE handle, GSourceFunc callback, gpointer user_data) { GWin32HandleSource *hsource; GSource *source; source = g_source_new(&g_win32_handle_source_funcs, sizeof(GWin32HandleSource)); hsource = (GWin32HandleSource *)source; hsource->pollfd.fd = (int)handle; hsource->pollfd.events = G_IO_IN; hsource->pollfd.revents = 0; g_source_add_poll(source, &hsource->pollfd); g_source_set_callback(source, callback, user_data, NULL); g_source_attach(source, NULL); return source; } /* logout-listener thread */ LRESULT CALLBACK sm_client_win32_window_procedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { EggSMClientWin32 *win32 = (EggSMClientWin32 *)GetWindowLongPtr(hwnd, GWLP_USERDATA); switch (message) { case WM_QUERYENDSESSION: win32->event = emit_quit_requested; SetEvent(win32->message_event); WaitForSingleObject(win32->response_event, INFINITE); return win32->will_quit; case WM_ENDSESSION: if (wParam) { /* The session is ending */ win32->event = emit_quit; } else { /* Nope, the session *isn't* ending */ win32->event = emit_quit_cancelled; } SetEvent(win32->message_event); WaitForSingleObject(win32->response_event, INFINITE); return 0; default: return DefWindowProc(hwnd, message, wParam, lParam); } } static void sm_client_thread(gpointer smclient) { HINSTANCE instance; WNDCLASSEXW wcl; ATOM klass; HWND window; MSG msg; instance = GetModuleHandle(NULL); memset(&wcl, 0, sizeof(WNDCLASSEX)); wcl.cbSize = sizeof(WNDCLASSEX); wcl.lpfnWndProc = sm_client_win32_window_procedure; wcl.hInstance = instance; wcl.lpszClassName = L"EggSmClientWindow"; klass = RegisterClassEx(&wcl); window = CreateWindowEx(0, MAKEINTRESOURCE(klass), L"EggSmClientWindow", 0, 10, 10, 50, 50, GetDesktopWindow(), NULL, instance, NULL); SetWindowLongPtr(window, GWLP_USERDATA, (LONG_PTR)smclient); /* main loop */ while (GetMessage(&msg, NULL, 0, 0)) DispatchMessage(&msg); } workrave-1.10.50/frontend/gtkmm/src/IBreakWindow.hh0000644000175100001710000000343414221624107021021 0ustar00gdm00000000000000// IBreakWindow.hh --- base class for the break windows // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IBREAKWINDOW_HH #define IBREAKWINDOW_HH #include namespace workrave { class IBreakResponse; } using namespace workrave; class IBreakWindow { public: virtual ~IBreakWindow() {} //! Initializes the break window. virtual void init() = 0; //! Starts (i.e. shows) the break window. virtual void start() = 0; //! Stops (i.e. hides) the break window. virtual void stop() = 0; //! Refreshes the content of the break window. virtual void refresh() = 0; //! Destroys the break window. /*! \warn this will 'delete' the window, so all pointers to the * IBreakWindow will become invalid. */ virtual void destroy() = 0; //! Sets the progress to the specified value and maximum value. virtual void set_progress(int value, int max_value) = 0; //! Sets the response callback. virtual void set_response(IBreakResponse *bri) = 0; // virtual Glib::RefPtr get_gdk_window() = 0; }; #endif // RESTBREAKWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/AppletWindow.hh0000644000175100001710000000303714221624107021110 0ustar00gdm00000000000000// AppletWindow.hh --- Applet window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2011, 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef APPLETWINDOW_HH #define APPLETWINDOW_HH #include "preinclude.h" #include "IAppletWindow.hh" class TimerBoxControl; class ITimerBoxView; class AppletWindow : public IAppletWindow { public: AppletWindow(); virtual ~AppletWindow() = default; void init_applet() override; void update_applet() override; void set_applet_tooltip(const std::string &tip) override; sigc::signal &signal_visibility_changed() override; protected: //! Box container all the timers. ITimerBoxView *timer_box_view; //! Box container controller. TimerBoxControl *timer_box_control; //! Signal to indicate that the applet changed visibility. sigc::signal visibility_changed_signal; }; #endif // APPLETWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/DebugDialog.hh0000644000175100001710000000254614221624107020645 0ustar00gdm00000000000000// Copyright (C) 2020 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DEBUGDIALOG_HH #define DEBUGDIALOG_HH #include "preinclude.h" #include #include #include #include #include "Diagnostics.hh" using namespace std; namespace Gtk { class TextView; } class DebugDialog : public Gtk::Dialog , public DiagnosticsSink { public: DebugDialog(); ~DebugDialog(); int run(); void diagnostics_log(const std::string &log) override; private: void init(); void on_response(int response); Gtk::TextView *text_view; Gtk::ScrolledWindow scrolled_window; Glib::RefPtr text_buffer; }; #endif // DEBUGWINDOW_HH workrave-1.10.50/frontend/gtkmm/src/GUI.cc0000644000175100001710000011165014221624107017106 0ustar00gdm00000000000000// GUI.cc --- The WorkRave GUI // // Copyright (C) 2001 - 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #include #include #include #include #ifdef PLATFORM_OS_WINDOWS_NATIVE # undef HAVE_UNISTD_H #endif #ifdef HAVE_UNISTD_H # include #endif #include #include #include #include "GUI.hh" // Backend includes. #include "IBreak.hh" #include "IBreakResponse.hh" #include "IBreakWindow.hh" #include "IConfigurator.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "Exception.hh" #include "AppletControl.hh" #include "AppletWindow.hh" #include "BreakWindow.hh" #include "DailyLimitWindow.hh" #include "GUIConfig.hh" #include "MainWindow.hh" #include "Menus.hh" #include "MicroBreakWindow.hh" #include "PreludeWindow.hh" #include "RestBreakWindow.hh" #include "SoundPlayer.hh" #include "StatusIcon.hh" #include "System.hh" #include "Text.hh" #include "Util.hh" #include "WindowHints.hh" #include "Locale.hh" #include "Session.hh" #include "TimerBoxControl.hh" #if defined(PLATFORM_OS_WINDOWS) # include "W32AppletWindow.hh" # include # include # include #endif #if defined(PLATFORM_OS_MACOS) # include "MacOSUtil.hh" # include # include # include # import # import "AppController.h" # include #endif #if defined(PLATFORM_OS_UNIX) # include #endif #if defined(HAVE_GCONF) # include #endif #if defined(HAVE_DBUS) # if defined(interface) # undef interface # endif # include "dbus/IDBus.hh" # include "dbus/DBusException.hh" #endif #ifdef HAVE_GTK_MAC_INTEGRATION # include "gtkosxapplication.h" #endif GUI *GUI::instance = NULL; //! GUI Constructor. /*! * \param argc number of command line parameters. * \param argv all command line parameters. */ GUI::GUI(int argc, char **argv) : core(NULL) , sound_player(NULL) , break_windows(NULL) , prelude_windows(NULL) , active_break_count(0) , active_prelude_count(0) , response(NULL) , active_break_id(BREAK_ID_NONE) , main_window(NULL) , menus(0) , break_window_destroy(false) , prelude_window_destroy(false) , heads(NULL) , num_heads(-1) , screen_width(-1) , screen_height(-1) , #if defined(PLATFORM_OS_UNIX) grab_wanted(false) , #endif grab_handle(NULL) , status_icon(NULL) , applet_control(NULL) , muted(false) , closewarn_shown(false) { TRACE_ENTER("GUI:GUI"); assert(!instance); instance = this; this->argc = argc; this->argv = argv; TRACE_EXIT(); } //! Destructor. GUI::~GUI() { TRACE_ENTER("GUI:~GUI"); assert(instance); instance = NULL; ungrab(); delete core; delete main_window; delete applet_control; delete menus; delete[] prelude_windows; delete[] break_windows; delete[] heads; delete sound_player; TRACE_EXIT(); } //! Forces a restbreak. void GUI::restbreak_now() { core->force_break(BREAK_ID_REST_BREAK, BREAK_HINT_USER_INITIATED); } //! The main entry point. void GUI::main() { TRACE_ENTER("GUI::main"); #ifdef PLATFORM_OS_UNIX XInitThreads(); #endif #ifdef HAVE_GTK3 app = Gtk::Application::create(argc, argv, "org.workrave.WorkraveApplication"); app->hold(); #else # if defined(PLATFORM_OS_WINDOWS) Glib::OptionContext option_ctx; Glib::OptionGroup *option_group = new Glib::OptionGroup(egg_sm_client_get_option_group()); option_ctx.add_group(*option_group); # endif Gtk::Main *kit = NULL; try { # if defined(PLATFORM_OS_WINDOWS) kit = new Gtk::Main(argc, argv, option_ctx); # else kit = new Gtk::Main(argc, argv); # endif } catch (const Glib::OptionError &e) { std::cout << "Failed to initialize: " << e.what() << std::endl; exit(1); } #endif init_core(); init_nls(); init_debug(); init_sound_player(); init_multihead(); #ifdef HAVE_DBUS init_dbus(); #endif init_platform(); init_session(); init_gui(); init_operation_mode_warning(); #ifdef HAVE_GTK_MAC_INTEGRATION GtkosxApplication *theApp = (GtkosxApplication *)g_object_new(GTKMacOS_TYPE_APPLICATION, NULL); gtkosx_application_set_dock_icon_pixbuf(theApp, gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL)); gtkosx_application_ready(theApp); #endif on_timer(); #ifdef HAVE_GTK3 app->run(); #else Gtk::Main::run(); #endif TRACE_MSG("loop ended"); System::clear(); #if defined(PLATFORM_OS_WINDOWS) cleanup_session(); #endif for (list::iterator i = event_connections.begin(); i != event_connections.end(); i++) { i->disconnect(); } delete main_window; main_window = NULL; delete applet_control; applet_control = NULL; #if !defined(HAVE_GTK3) delete kit; #endif TRACE_EXIT(); } //! Terminates the GUI. void GUI::terminate() { TRACE_ENTER("GUI::terminate"); // HACK: Without it status icon keeps on dangling in tray // Nicer solution: nicely cleanup complete gui ~GUI() delete status_icon; status_icon = 0; CoreFactory::get_configurator()->save(); collect_garbage(); #ifdef HAVE_GTK3 app->release(); #else Gtk::Main::quit(); #endif TRACE_EXIT(); } //! Opens the main window. void GUI::open_main_window() { main_window->open_window(); } //! Closes the main window. void GUI::close_main_window() { main_window->close_window(); } //! The user close the main window. void GUI::on_main_window_closed() { TRACE_ENTER("GUI::on_main_window_closed"); bool closewarn = false; CoreFactory::get_configurator()->get_value(GUIConfig::CFG_KEY_CLOSEWARN_ENABLED, closewarn); TRACE_MSG(closewarn); if (closewarn && !closewarn_shown) { status_icon->show_balloon("closewarn", _("Workrave is still running. " "You can access Workrave by clicking on the white sheep icon. " "Click on this balloon to disable this message")); closewarn_shown = true; } TRACE_EXIT(); } //! Periodic heartbeat. bool GUI::on_timer() { std::string tip = get_timers_tooltip(); core->heartbeat(); main_window->update(); applet_control->heartbeat(); applet_control->set_tooltip(tip); status_icon->set_tooltip(tip); heartbeat_signal(); collect_garbage(); if (active_break_count == 0 && muted) { bool user_active = core->is_user_active(); if (user_active) { sound_player->restore_mute(); muted = false; } } return true; } #if defined(NDEBUG) static void my_log_handler(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { } #endif void GUI::init_platform() { TRACE_ENTER("GUI::init_platform"); #if defined(PLATFORM_OS_MACOS) [[AppController alloc] init]; #endif #if defined(PLATFORM_OS_UNIX) const char *display = gdk_display_get_name(gdk_display_get_default()); System::init(display); #else System::init(); #endif srand((unsigned int)time(NULL)); TRACE_EXIT(); } #if defined(PLATFORM_OS_WINDOWS) void GUI::session_quit_cb(EggSMClient *client, GUI *gui) { (void)client; (void)gui; TRACE_ENTER("GUI::session_quit_cb"); CoreFactory::get_configurator()->save(); Gtk::Main::quit(); TRACE_EXIT(); } void GUI::session_save_state_cb(EggSMClient *client, GKeyFile *key_file, GUI *gui) { (void)client; (void)key_file; (void)gui; CoreFactory::get_configurator()->save(); } void GUI::cleanup_session() { EggSMClient *client = NULL; client = egg_sm_client_get(); if (client) { g_signal_handlers_disconnect_by_func(client, (gpointer)G_CALLBACK(session_quit_cb), this); g_signal_handlers_disconnect_by_func(client, (gpointer)G_CALLBACK(session_save_state_cb), this); } } #endif void GUI::init_session() { TRACE_ENTER("GUI::init_session"); #if defined(PLATFORM_OS_WINDOWS) EggSMClient *client = NULL; client = egg_sm_client_get(); if (client) { g_signal_connect(client, "quit", G_CALLBACK(session_quit_cb), this); g_signal_connect(client, "save-state", G_CALLBACK(session_save_state_cb), this); } #endif session = new Session(); session->init(); TRACE_EXIT(); } //! Initializes messages hooks. void GUI::init_debug() { #if defined(NDEBUG) TRACE_ENTER("GUI::init_debug"); const char *domains[] = {NULL, "Gtk", "GLib", "Gdk", "gtkmm", "GLib-GObject"}; for (unsigned int i = 0; i < sizeof(domains) / sizeof(char *); i++) { g_log_set_handler( domains[i], (GLogLevelFlags)(G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION), my_log_handler, NULL); } TRACE_EXIT(); #endif } //! Initializes i18n. void GUI::init_nls() { #if defined(ENABLE_NLS) string language = GUIConfig::get_locale(); if (language != "") { g_setenv("LANGUAGE", language.c_str(), 1); } # if !defined(HAVE_GTK3) gtk_set_locale(); # endif const char *locale_dir; # if defined(PLATFORM_OS_WINDOWS) string dir = Util::get_application_directory(); // Use the pre-install locale location if workrave is running from its MSVC build directory. dir += Util::file_exists(dir + "\\..\\Workrave.sln") ? "\\..\\frontend" : "\\lib\\locale"; locale_dir = dir.c_str(); # elif defined(PLATFORM_OS_MACOS) char locale_path[MAXPATHLEN * 4]; char execpath[MAXPATHLEN + 1]; uint32_t pathsz = sizeof(execpath); _NSGetExecutablePath(execpath, &pathsz); gchar *dir_path = g_path_get_dirname(execpath); strcpy(locale_path, dir_path); g_free(dir_path); // Locale strcat(locale_path, "/../Resources/locale"); locale_dir = locale_path; # else locale_dir = GNOMELOCALEDIR; # endif # ifdef HAVE_SETLOCALE setlocale(LC_ALL, ""); # endif # if defined(PLATFORM_OS_WINDOWS) bindtextdomain("gtk20", locale_dir); bindtextdomain("iso_3166", locale_dir); bindtextdomain("iso_639", locale_dir); bindtextdomain("glib20", locale_dir); bind_textdomain_codeset("gk20", "UTF-8"); bind_textdomain_codeset("glib20", "UTF-8"); bind_textdomain_codeset("iso_3166", "UTF-8"); bind_textdomain_codeset("iso_639", "UTF-8"); CoreFactory::get_configurator()->add_listener(GUIConfig::CFG_KEY_LOCALE, this); # endif bindtextdomain(PACKAGE, locale_dir); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); #endif } //! Initializes the core. void GUI::init_core() { const char *display_name = NULL; #if defined(PLATFORM_OS_UNIX) display_name = gdk_display_get_name(gdk_display_get_default()); #endif core = CoreFactory::get_core(); core->init(argc, argv, this, display_name); core->set_core_events_listener(this); GUIConfig::init(); } void GUI::init_multihead() { TRACE_ENTER("GUI::init_multihead"); init_gtk_multihead(); init_multihead_desktop(); TRACE_EXIT(); } void GUI::init_multihead_mem(int new_num_heads) { TRACE_ENTER("GUI::init_multihead_mem"); if (new_num_heads != num_heads || num_heads <= 0) { delete[] heads; heads = new HeadInfo[new_num_heads]; PreludeWindow **old_prelude_windows = prelude_windows; IBreakWindow **old_break_windows = break_windows; prelude_windows = new PreludeWindow *[new_num_heads]; /* LEAK */ break_windows = new IBreakWindow *[new_num_heads]; /* LEAK */ int max_heads = new_num_heads > num_heads ? new_num_heads : num_heads; // Copy existing breaks windows. for (int i = 0; i < max_heads; i++) { if (i < new_num_heads) { if (i < num_heads) { prelude_windows[i] = old_prelude_windows[i]; break_windows[i] = old_break_windows[i]; } else { prelude_windows[i] = NULL; break_windows[i] = NULL; } } if (new_num_heads < num_heads && i >= new_num_heads) { // Number of heads get smaller, // destroy breaks/preludes if (old_prelude_windows != NULL && old_prelude_windows[i] != NULL) { old_prelude_windows[i]->destroy(); } if (old_break_windows != NULL && old_break_windows[i] != NULL) { old_break_windows[i]->destroy(); } } } if (active_prelude_count > new_num_heads) { active_prelude_count = new_num_heads; } if (active_break_count > new_num_heads) { active_break_count = new_num_heads; } delete[] old_prelude_windows; delete[] old_break_windows; num_heads = new_num_heads; } TRACE_EXIT(); } void GUI::init_multihead_desktop() { TRACE_ENTER("GUI::init_multihead_desktop"); int width = 0; int height = 0; for (int i = 0; i < num_heads; i++) { int w = heads[i].geometry.get_x() + heads[i].geometry.get_width(); int h = heads[i].geometry.get_y() + heads[i].geometry.get_height(); if (w > width) { width = w; } if (h > height) { height = h; } } TRACE_MSG("width x height " << width << " " << height); if (screen_width != width || screen_height != height) { if (main_window != NULL) { main_window->relocate_window(width, height); } screen_width = width; screen_height = height; } } void GUI::init_gtk_multihead() { TRACE_ENTER("GUI::init_gtk_multihead"); int new_num_heads = 0; Glib::RefPtr display = Gdk::Display::get_default(); int num_screens = display->get_n_screens(); TRACE_MSG("screens = " << num_screens); if (num_screens >= 1) { for (int i = 0; i < num_screens; i++) { Glib::RefPtr screen = display->get_screen(i); if (screen) { new_num_heads += screen->get_n_monitors(); TRACE_MSG("num monitors on screen " << i << " = " << screen->get_n_monitors()); } } init_multihead_mem(new_num_heads); int count = 0; for (int i = 0; i < num_screens; i++) { Glib::RefPtr screen = display->get_screen(i); if (screen) { int num_monitors = screen->get_n_monitors(); TRACE_MSG("monitors = " << num_monitors); for (int j = 0; j < num_monitors && count < new_num_heads; j++) { Gdk::Rectangle rect; screen->get_monitor_geometry(j, rect); #ifdef HAVE_GTK3 gint scale = screen->get_monitor_scale_factor(j); rect = Gdk::Rectangle(rect.get_x() / scale, rect.get_y() / scale, rect.get_width() / scale, rect.get_height() / scale); #endif bool overlap = false; for (int k = 0; !overlap && k < count; k++) { Gdk::Rectangle irect = rect; if (heads[k].screen->get_number() == i) { irect.intersect(heads[k].geometry, overlap); } } if (!overlap) { heads[count].screen = screen; heads[count].monitor = j; heads[count].count = count; heads[count].geometry = rect; count++; } TRACE_MSG("Screen #" << i << " Monitor #" << j << " " << rect.get_x() << " " << rect.get_y() << " " << rect.get_width() << " " << rect.get_height() << " " << " intersects " << overlap); } } } num_heads = count; TRACE_MSG("# Heads = " << num_heads); } TRACE_EXIT(); } //! Initializes the GUI void GUI::init_gui() { menus = new Menus(); // The main status window. main_window = new MainWindow(); main_window->init(); // The applet window. applet_control = new AppletControl(); applet_control->init(); // Menus menus->init(applet_control); menus->resync(); // Status Icon status_icon = new StatusIcon(); status_icon->init(); // Events event_connections.push_back(main_window->signal_closed().connect(sigc::mem_fun(*this, &GUI::on_main_window_closed))); event_connections.push_back(main_window->signal_visibility_changed().connect(sigc::mem_fun(*this, &GUI::on_visibility_changed))); event_connections.push_back( applet_control->signal_visibility_changed().connect(sigc::mem_fun(*this, &GUI::on_visibility_changed))); event_connections.push_back( status_icon->signal_balloon_activate().connect(sigc::mem_fun(*this, &GUI::on_status_icon_balloon_activate))); event_connections.push_back(status_icon->signal_activate().connect(sigc::mem_fun(*this, &GUI::on_status_icon_activate))); event_connections.push_back(status_icon->signal_visibility_changed().connect(sigc::mem_fun(*this, &GUI::on_visibility_changed))); process_visibility(); #ifdef HAVE_DBUS workrave::dbus::IDBus::Ptr dbus = CoreFactory::get_dbus(); if (dbus->is_available()) { dbus->connect("/org/workrave/Workrave/UI", "org.workrave.ControlInterface", menus); } #endif #if defined(PLATFORM_OS_WINDOWS) win32_init_filter(); #endif // Periodic timer. Glib::signal_timeout().connect(sigc::mem_fun(*this, &GUI::on_timer), 1000); #ifndef HAVE_GTK3 static const gchar *rc_string = { "style \"progressBarWidth\"\n" "{\n" " GtkProgressBar::min-horizontal-bar-width = 10\n" " GtkProgressBar::min-horizontal-bar-height = 2\n" "}\n" "\n" "widget \"*.locked-progress\" style \"progressBarWidth\"\n" // "class \"GtkProgressBar\" style \"progressBarWidth\"\n" }; gtk_rc_parse_string(rc_string); #endif } #ifdef HAVE_DBUS void GUI::init_dbus() { workrave::dbus::IDBus::Ptr dbus = CoreFactory::get_dbus(); if (dbus->is_available()) { if (dbus->is_running("org.workrave.Workrave")) { Gtk::MessageDialog dialog(_("Workrave failed to start"), false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true); dialog.set_secondary_text(_("Is Workrave already running?")); dialog.show(); dialog.run(); exit(1); } try { dbus->register_object_path("/org/workrave/Workrave/UI"); dbus->register_service("org.workrave.Workrave", this); extern void init_DBusGUI(workrave::dbus::IDBus::Ptr dbus); init_DBusGUI(dbus); } catch (workrave::dbus::DBusException &) { } } } void GUI::bus_name_presence(const std::string &name, bool present) { if (name == "org.workrave.Workrave" && !present) { // Silent exit exit(1); } } #endif void GUI::init_operation_mode_warning() { OperationMode mode = core->get_operation_mode(); if (mode != OPERATION_MODE_NORMAL) { Glib::signal_timeout().connect(sigc::mem_fun(*this, &GUI::on_operational_mode_warning_timer), 5000); } } //! Returns a break window for the specified break. IBreakWindow * GUI::create_break_window(HeadInfo &head, BreakId break_id, BreakWindow::BreakFlags break_flags) { IBreakWindow *ret = NULL; GUIConfig::BlockMode block_mode = GUIConfig::get_block_mode(); if (break_id == BREAK_ID_MICRO_BREAK) { ret = new MicroBreakWindow(head, break_flags, block_mode); } else if (break_id == BREAK_ID_REST_BREAK) { ret = new RestBreakWindow(head, break_flags, block_mode); } else if (break_id == BREAK_ID_DAILY_LIMIT) { ret = new DailyLimitWindow(head, break_flags, block_mode); } return ret; } //! Initializes the sound player. void GUI::init_sound_player() { TRACE_ENTER("GUI:init_sound_player"); try { // Tell pulseaudio were are playing sound events g_setenv("PULSE_PROP_media.role", "event", TRUE); sound_player = new SoundPlayer(); /* LEAK */ sound_player->init(); } catch (Exception &) { TRACE_MSG("No sound"); } TRACE_EXIT(); } void GUI::core_event_notify(const CoreEvent event) { TRACE_ENTER_MSG("GUI::core_event_sound_notify", event); if (sound_player != NULL) { if (event >= CORE_EVENT_SOUND_FIRST && event <= CORE_EVENT_SOUND_LAST) { bool mute = false; SoundEvent snd = (SoundEvent)((int)event - CORE_EVENT_SOUND_FIRST); TRACE_MSG("play " << event); if (event == CORE_EVENT_SOUND_REST_BREAK_STARTED || event == CORE_EVENT_SOUND_DAILY_LIMIT) { CoreFactory::get_configurator()->get_value(SoundPlayer::CFG_KEY_SOUND_MUTE, mute); if (mute) { muted = true; } } TRACE_MSG("Mute after playback " << mute); sound_player->play_sound(snd, mute); } } if (event == CORE_EVENT_MONITOR_FAILURE) { string msg = _("Workrave could not monitor your keyboard and mouse activity.\n"); #ifdef PLATFORM_OS_UNIX msg += _("Make sure that the RECORD extension is enabled in the X server."); #endif Gtk::MessageDialog dialog(_("Workrave failed to start"), false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true); dialog.set_secondary_text(msg); dialog.show(); dialog.run(); terminate(); } TRACE_EXIT(); } void GUI::core_event_operation_mode_changed(const OperationMode m) { if (status_icon) { status_icon->set_operation_mode(m); } menus->resync(); } void GUI::core_event_usage_mode_changed(const UsageMode m) { (void)m; menus->resync(); } void GUI::config_changed_notify(const std::string &key) { TRACE_ENTER_MSG("GUI::config_changed_notify", key); #if defined(HAVE_LANGUAGE_SELECTION) if (key == GUIConfig::CFG_KEY_LOCALE) { string locale = GUIConfig::get_locale(); Locale::set_locale(locale); menus->locale_changed(); } #endif TRACE_EXIT(); } void GUI::set_break_response(IBreakResponse *rep) { response = rep; } void GUI::create_prelude_window(BreakId break_id) { TRACE_ENTER_MSG("GUI::create_prelude_window", break_id); hide_break_window(); init_multihead(); collect_garbage(); active_break_id = break_id; for (int i = 0; i < num_heads; i++) { prelude_windows[i] = new PreludeWindow(heads[i], break_id); } active_prelude_count = num_heads; TRACE_EXIT(); } void GUI::create_break_window(BreakId break_id, BreakHint break_hint) { TRACE_ENTER_MSG("GUI::create_break_window", break_id << " " << break_hint); hide_break_window(); init_multihead(); collect_garbage(); BreakWindow::BreakFlags break_flags = BreakWindow::BREAK_FLAGS_NONE; bool ignorable = GUIConfig::get_ignorable(break_id); bool skippable = GUIConfig::get_skippable(break_id); if (break_hint & BREAK_HINT_USER_INITIATED) { break_flags = (BreakWindow::BREAK_FLAGS_POSTPONABLE | BreakWindow::BREAK_FLAGS_USER_INITIATED); if (skippable) { break_flags |= BreakWindow::BREAK_FLAGS_SKIPPABLE; } } else { if (ignorable) { break_flags |= BreakWindow::BREAK_FLAGS_POSTPONABLE; } if (skippable) { break_flags |= BreakWindow::BREAK_FLAGS_SKIPPABLE; } } if (break_hint & BREAK_HINT_NATURAL_BREAK) { break_flags |= (BreakWindow::BREAK_FLAGS_NO_EXERCISES | BreakWindow::BREAK_FLAGS_NATURAL | BreakWindow::BREAK_FLAGS_POSTPONABLE); } active_break_id = break_id; for (int i = 0; i < num_heads; i++) { IBreakWindow *break_window = create_break_window(heads[i], break_id, break_flags); break_windows[i] = break_window; break_window->set_response(response); break_window->init(); } active_break_count = num_heads; TRACE_EXIT(); } void GUI::hide_break_window() { TRACE_ENTER("GUI::hide_break_window"); active_break_id = BREAK_ID_NONE; for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->stop(); } } if (active_prelude_count > 0) { prelude_window_destroy = true; } for (int i = 0; i < active_break_count; i++) { if (break_windows[i] != NULL) { break_windows[i]->stop(); } } if (active_break_count > 0) { TRACE_MSG("break_window_destroy = true"); break_window_destroy = true; } ungrab(); TRACE_EXIT(); } void GUI::show_break_window() { TRACE_ENTER("GUI::hide_break_window"); for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->start(); } } for (int i = 0; i < active_break_count; i++) { if (break_windows[i] != NULL) { break_windows[i]->start(); } } if (GUIConfig::get_block_mode() != GUIConfig::BLOCK_MODE_NONE) { grab(); } TRACE_EXIT(); } void GUI::refresh_break_window() { for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->refresh(); } } for (int i = 0; i < active_break_count; i++) { if (break_windows[i] != NULL) { break_windows[i]->refresh(); } } } void GUI::set_break_progress(int value, int max_value) { for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->set_progress(value, max_value); } } for (int i = 0; i < active_break_count; i++) { if (break_windows[i] != NULL) { break_windows[i]->set_progress(value, max_value); } } } void GUI::set_prelude_stage(PreludeStage stage) { for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->set_stage(stage); } } } void GUI::set_prelude_progress_text(PreludeProgressText text) { for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->set_progress_text(text); } } } //! Destroys the break/prelude windows, if requested. void GUI::collect_garbage() { TRACE_ENTER("GUI::collect_garbage"); if (prelude_window_destroy) { if (prelude_windows != NULL) { for (int i = 0; i < active_prelude_count; i++) { if (prelude_windows[i] != NULL) { prelude_windows[i]->destroy(); prelude_windows[i] = NULL; } } } prelude_window_destroy = false; active_prelude_count = 0; } if (break_window_destroy) { if (break_windows != NULL) { TRACE_MSG("1"); for (int i = 0; i < active_break_count; i++) { TRACE_MSG("2 " << i); if (break_windows[i] != NULL) { TRACE_MSG("3"); break_windows[i]->destroy(); break_windows[i] = NULL; } } } break_window_destroy = false; active_break_count = 0; } TRACE_EXIT(); } //! Grabs the pointer and the keyboard. bool GUI::grab() { if (break_windows != NULL && active_break_count > 0) { GdkWindow **windows = new GdkWindow *[active_break_count]; for (int i = 0; i < active_break_count; i++) { Glib::RefPtr window = break_windows[i]->get_gdk_window(); windows[i] = window->gobj(); } #if defined(PLATFORM_OS_UNIX) grab_wanted = true; #endif if (!grab_handle) { grab_handle = WindowHints::grab(active_break_count, windows); #if defined(PLATFORM_OS_UNIX) if (!grab_handle && !grab_retry_connection.connected()) { grab_retry_connection = Glib::signal_timeout().connect(sigc::mem_fun(*this, &GUI::on_grab_retry_timer), 2000); } #endif } delete[] windows; } return grab_handle != NULL; } //! Releases the pointer and keyboard grab void GUI::ungrab() { #if defined(PLATFORM_OS_UNIX) grab_wanted = false; #endif if (grab_handle) { #if defined(PLATFORM_OS_UNIX) grab_retry_connection.disconnect(); #endif WindowHints::ungrab(grab_handle); grab_handle = NULL; } } void GUI::interrupt_grab() { if (grab_handle) { #if defined(PLATFORM_OS_UNIX) grab_wanted = true; WindowHints::ungrab(grab_handle); grab_handle = NULL; if (!grab_retry_connection.connected()) { Glib::signal_timeout().connect(sigc::mem_fun(*this, &GUI::on_grab_retry_timer), 2000); } #endif } } #if defined(PLATFORM_OS_UNIX) //! Reattempt to get the grab bool GUI::on_grab_retry_timer() { TRACE_ENTER("GUI::on_grab_retry_timer"); bool ret = false; if (grab_wanted) { ret = !grab(); } else { ret = false; } TRACE_MSG(ret); TRACE_EXIT(); return ret; } #endif bool GUI::on_operational_mode_warning_timer() { OperationMode mode = core->get_operation_mode(); if (mode == OPERATION_MODE_SUSPENDED) { status_icon->show_balloon("operation_mode", _("Workrave is in suspended mode. " "Mouse and keyboard activity will not be monitored.")); } else if (mode == OPERATION_MODE_QUIET) { status_icon->show_balloon("operation_mode", _("Workrave is in quiet mode. " "No break windows will appear.")); } return false; } HeadInfo & GUI::get_head(int head) { return heads[head < num_heads ? head : 0]; } int GUI::map_to_head(int &x, int &y) { int head = -1; for (int i = 0; i < num_heads; i++) { int left, top, width, height; left = heads[i].get_x(); top = heads[i].get_y(); width = heads[i].get_width(); height = heads[i].get_height(); if (x >= left && y >= top && x < left + width && y < top + height) { x -= left; y -= top; // Use coordinates relative to right and butto edges of the // screen if the mainwindow is closer to those edges than to // the left/top edges. if (x >= width / 2) { x -= width; } if (y >= height / 2) { y -= height; } head = i; break; } } if (head < 0) { head = 0; x = y = 256; } return head; } void GUI::map_from_head(int &x, int &y, int head) { HeadInfo &h = get_head(head); if (x < 0) { x += h.get_width(); } if (y < 0) { y += h.get_height(); } x += h.get_x(); y += h.get_y(); } bool GUI::bound_head(int &x, int &y, int width, int height, int &head) { bool ret = false; if (head >= num_heads) { head = 0; } HeadInfo &h = get_head(head); if (x < -h.get_width()) { x = 0; ret = true; } if (y < -h.get_height()) { y = 0; ret = true; } // Make sure something remains visible.. if (x > -10 && x < 0) { x = -10; ret = true; } if (y > -10 && y < 0) { y = -10; ret = true; } if (x + width >= h.get_width()) { x = h.get_width() - width - 10; ret = true; } if (y + height >= h.get_height()) { y = h.get_height() - height - 10; ret = true; } return ret; } std::string GUI::get_timers_tooltip() { // FIXME: duplicate const char *labels[] = {_("Micro-break"), _("Rest break"), _("Daily limit")}; string tip = ""; OperationMode mode = core->get_operation_mode(); switch (mode) { case OPERATION_MODE_SUSPENDED: tip = string(_("Mode: ")) + _("Suspended"); break; case OPERATION_MODE_QUIET: tip = string(_("Mode: ")) + _("Quiet"); break; case OPERATION_MODE_NORMAL: default: #if !defined(PLATFORM_OS_WINDOWS) // Win32 tip is limited in length tip = "Workrave"; #endif break; } for (int count = 0; count < BREAK_ID_SIZEOF; count++) { IBreak *b = core->get_break(BreakId(count)); bool on = b->is_enabled(); if (b != NULL && on) { // Collect some data. time_t maxActiveTime = b->get_limit(); time_t activeTime = b->get_elapsed_time(); std::string text; // Set the text if (b->is_limit_enabled() && maxActiveTime != 0) { text = Text::time_to_string(maxActiveTime - activeTime); } else { text = Text::time_to_string(activeTime); } if (tip != "") { tip += "\n"; } tip += labels[count]; tip += ": " + text; } } return tip; } void GUI::on_status_icon_balloon_activate(const std::string &id) { if (id == "closewarn") { CoreFactory::get_configurator()->set_value(GUIConfig::CFG_KEY_CLOSEWARN_ENABLED, false); } } void GUI::on_status_icon_activate() { main_window->toggle_window(); } void GUI::on_visibility_changed() { TRACE_ENTER("GUI::on_visibility_changed"); process_visibility(); TRACE_EXIT(); } void GUI::process_visibility() { TRACE_ENTER("GUI::process_visibility"); TRACE_MSG(main_window->is_visible() << " " << applet_control->is_visible() << " " << status_icon->is_visible()); #ifdef PLATFORM_OS_WINDOWS if (!main_window->is_visible() && !applet_control->is_visible()) { GUIConfig::set_trayicon_enabled(true); } #else bool can_close_main_window = applet_control->is_visible() || status_icon->is_visible(); main_window->set_can_close(can_close_main_window); #endif TRACE_EXIT(); } #if defined(PLATFORM_OS_WINDOWS) void GUI::win32_init_filter() { GtkWidget *window = (GtkWidget *)main_window->gobj(); GdkWindow *gdk_window = gtk_widget_get_window(window); gdk_window_add_filter(gdk_window, win32_filter_func, this); HWND hwnd = (HWND)GDK_WINDOW_HWND(gdk_window); WTSRegisterSessionNotification(hwnd, NOTIFY_FOR_THIS_SESSION); } GdkFilterReturn GUI::win32_filter_func(void *xevent, GdkEvent *event, gpointer data) { TRACE_ENTER("GUI::win32_filter_func"); (void)event; GUI *gui = static_cast(data); MSG *msg = (MSG *)xevent; GdkFilterReturn ret = GDK_FILTER_CONTINUE; switch (msg->message) { case WM_WTSSESSION_CHANGE: { if (msg->wParam == WTS_SESSION_LOCK) { gui->session->set_idle(true); } if (msg->wParam == WTS_SESSION_UNLOCK) { gui->session->set_idle(false); gui->init_operation_mode_warning(); } } break; case WM_POWERBROADCAST: { TRACE_MSG("WM_POWERBROADCAST " << msg->wParam << " " << msg->lParam); switch (msg->wParam) { case PBT_APMQUERYSUSPEND: TRACE_MSG("Query Suspend"); break; case PBT_APMQUERYSUSPENDFAILED: TRACE_MSG("Query Suspend Failed"); break; case PBT_APMRESUMESUSPEND: case PBT_APMRESUMEAUTOMATIC: case PBT_APMRESUMECRITICAL: { TRACE_MSG("Resume suspend"); ICore *core = CoreFactory::get_core(); core->set_powersave(false); } break; case PBT_APMSUSPEND: { TRACE_MSG("Suspend"); ICore *core = CoreFactory::get_core(); core->set_powersave(true); } break; } } break; case WM_DISPLAYCHANGE: { TRACE_MSG("WM_DISPLAYCHANGE " << msg->wParam << " " << msg->lParam); gui->init_multihead(); } break; case WM_TIMECHANGE: { TRACE_MSG("WM_TIMECHANGE " << msg->wParam << " " << msg->lParam); ICore *core = CoreFactory::get_core(); core->time_changed(); } break; default: std::shared_ptr applet_window = std::dynamic_pointer_cast(gui->applet_control->get_applet_window(AppletControl::AppletType::Windows)); if (applet_window) { ret = applet_window->win32_filter_func(xevent, event); } } # ifndef USE_W32STATUSICON if (ret != GDK_FILTER_REMOVE && gui->status_icon) { ret = gui->status_icon->win32_filter_func(xevent, event); } # endif TRACE_EXIT(); return ret; } #endif workrave-1.10.50/frontend/gtkmm/src/DailyLimitWindow.hh0000644000175100001710000000232114221624107021717 0ustar00gdm00000000000000// DailyLimitWindow.hh --- window for the daily limit // // Copyright (C) 2001, 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DAILYLIMITWINDOW_HH #define DAILYLIMITWINDOW_HH #include #include "BreakWindow.hh" #include "GUIConfig.hh" class DailyLimitWindow : public BreakWindow { public: DailyLimitWindow(HeadInfo &head, BreakFlags break_flags, GUIConfig::BlockMode mode); virtual ~DailyLimitWindow(); void set_progress(int value, int max_value); protected: Gtk::Widget *create_gui(); }; #endif // DAILYLIMITWINDOW_HH workrave-1.10.50/frontend/gtkmm/Makefile.in0000644000000000000000000005524114221624202020521 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src win32 macos all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/gtkmm/macos/0000755000000000000000000000000014221624440017553 5ustar00rootroot00000000000000workrave-1.10.50/frontend/gtkmm/macos/Makefile.in0000644000000000000000000004110514221624202021615 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/gtkmm/macos ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in Info.plist install.log tmp.r Workrave.dmg all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/gtkmm/macos/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/gtkmm/macos/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ clean-local cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile clean-local: -rm -rf Workrave.app -rm -rf workrave-image dmg: ./make-app.sh ./make-image.sh # 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: workrave-1.10.50/frontend/gtkmm/macos/Makefile.am0000644000175100001710000000045514221624107020522 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in Info.plist install.log tmp.r Workrave.dmg clean-local: -rm -rf Workrave.app -rm -rf workrave-image dmg: ./make-app.sh ./make-image.sh workrave-1.10.50/frontend/gtkmm/Makefile.am0000644000175100001710000000027714221624107017422 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src win32 macos workrave-1.10.50/frontend/applets/0000755000000000000000000000000014221624441017003 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/win32/0000755000000000000000000000000014221624440017744 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/win32/include/0000755000000000000000000000000014221624440021367 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/win32/include/Applet.hh0000644000175100001710000000465714221624107022060 0ustar00gdm00000000000000// Applet.h --- Applet // // Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef APPLET_H #define APPLET_H #include "ICore.hh" using namespace workrave; #define APPLET_WINDOW_CLASS_NAME "WorkraveApplet" #define APPLET_BAR_TEXT_MAX_LENGTH 16 #define APPLET_MESSAGE_HEARTBEAT 0 #define APPLET_MESSAGE_MENU 1 /*!!!!!!!!!!!!!!!!!!! On Windows x64, the installed Applet will be 64-bit. Therefore Workrave (32-bit) could be passing structures to a 64-bit applet. And so we must ensure that all members of any passed structure have types that are the same size on both 32 and 64 bit Windows. All structures declared in this file are used by both Workrave (x86) and the applet (x86 & x64). */ struct AppletHeartbeatData { volatile bool enabled; short slots[BREAK_ID_SIZEOF]; char bar_text[BREAK_ID_SIZEOF][APPLET_BAR_TEXT_MAX_LENGTH]; short bar_secondary_color[BREAK_ID_SIZEOF]; int bar_secondary_val[BREAK_ID_SIZEOF]; int bar_secondary_max[BREAK_ID_SIZEOF]; short bar_primary_color[BREAK_ID_SIZEOF]; int bar_primary_val[BREAK_ID_SIZEOF]; int bar_primary_max[BREAK_ID_SIZEOF]; }; #define APPLET_MAX_MENU_ITEMS 16 #define APPLET_MENU_TEXT_MAX_LENGTH 48 #define APPLET_MENU_FLAG_TOGGLE 1 #define APPLET_MENU_FLAG_SELECTED 2 #define APPLET_MENU_FLAG_POPUP 4 struct AppletMenuItemData { char text[APPLET_MENU_TEXT_MAX_LENGTH]; // mbs int flags; short command; }; struct AppletMenuData { short num_items; /* MSDN notes: Handles have 32 significant bits on 64-bit Windows . We must ensure that our types are the same size on both 64 and 32 bit systems (see x64 comment). We will pass the command_window HWND as a LONG: */ LONG command_window; AppletMenuItemData items[APPLET_MAX_MENU_ITEMS]; }; #endif /* APPLET_H */ workrave-1.10.50/frontend/applets/win32/include/Makefile.in0000644000000000000000000004074714221624201023443 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/win32/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/win32/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/win32/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/win32/include/Makefile.am0000644000175100001710000000031714221624107022333 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) workrave-1.10.50/frontend/applets/win32/src/0000755000000000000000000000000014221624440020533 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/win32/src/Util.h0000644000175100001710000000260014221624107020526 0ustar00gdm00000000000000// Util.h --- Utils // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef UTIL_H #define UTIL_H #include #define TRANSPARENT_DAMAGE_CONTROL_BUF_SIZE 16 class TransparentDamageControl { public: void BeginPaint(BOOL repaint); void HideWindow(HWND hwnd); void ShowWindow(HWND hwnd, int x, int y); void EndPaint(); private: int hide_windows_num{0}; HWND hide_windows[TRANSPARENT_DAMAGE_CONTROL_BUF_SIZE]{}; struct ShowWindowData { HWND hwnd; int x, y; }; ShowWindowData show_windows[TRANSPARENT_DAMAGE_CONTROL_BUF_SIZE]{}; int show_windows_num{0}; BOOL repaint{false}; }; class Util { public: static UINT GetDpiForWindow(HWND window); }; #endif // UTIL_H workrave-1.10.50/frontend/applets/win32/src/TimeBar.cpp0000644000175100001710000002346114221624107021477 0ustar00gdm00000000000000// TimeBar.cpp --- Time bar // // Copyright (C) 2004, 2005, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include #include "TimeBar.h" #include "DeskBand.h" #include "Debug.h" #include "PaintHelper.h" const int BORDER_SIZE = 2; const int MARGINX = 4; const int MARGINY = 0; const int MINIMAL_HEIGHT = 16; #define TIME_BAR_CLASS_NAME "WorkraveTimeBar" #define GDK_TO_COLORREF(r, g, b) (((r) >> 8) | (((g) >> 8) << 8) | (((b) >> 8) << 16)) HBRUSH TimeBar::bar_colors[ITimeBar::COLOR_ID_SIZEOF]; HFONT TimeBar::bar_font = NULL; TimeBar::TimeBar(HWND parent, HINSTANCE hinst, CDeskBand *deskband) : deskband(deskband) { init(hinst); hwnd = CreateWindowEx(0, TIME_BAR_CLASS_NAME, "", WS_CHILD | WS_CLIPSIBLINGS, 0, 0, 56, 16, parent, NULL, hinst, (LPVOID)this); paint_helper = new PaintHelper(hwnd); compute_size(width, height); SetWindowPos(hwnd, NULL, 0, 0, width, height, SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE); } TimeBar::~TimeBar() { DestroyWindow(hwnd); } LRESULT CALLBACK TimeBar::wnd_proc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam) { TimeBar *pThis = (TimeBar *)GetWindowLongPtr(hWnd, GWLP_USERDATA); switch (uMessage) { case WM_NCCREATE: { LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam; pThis = (TimeBar *)(lpcs->lpCreateParams); SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)pThis); SetWindowPos(hWnd, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); } break; case WM_PAINT: return pThis->on_paint(); case WM_LBUTTONUP: SendMessage(pThis->deskband->get_command_window(), WM_USER + 1, 0, NULL); break; } return DefWindowProc(hWnd, uMessage, wParam, lParam); } void TimeBar::get_size(int &w, int &h) { w = width; h = height; } void TimeBar::compute_size(int &w, int &h) { TRACE_ENTER("TimeBar::compute_size"); HDC dc = GetDC(hwnd); SelectObject(dc, (HGDIOBJ)bar_font); char buf[80]; time_to_string(-(59 + 59 * 60 + 9 * 60 * 60), buf, sizeof(buf)); RECT rect; rect.left = 0; rect.top = 0; rect.bottom = 0; rect.right = 0; h = DrawText(dc, buf, (int)strlen(buf), &rect, DT_CALCRECT); if (!h) { w = 32; h = 16; } else { w = rect.right; } w += 2 * MARGINX + 2 * BORDER_SIZE; h += 2 * MARGINY + 2 * BORDER_SIZE; if (h < MINIMAL_HEIGHT) h = MINIMAL_HEIGHT; ReleaseDC(hwnd, dc); TRACE_MSG(w << " " << h); TRACE_EXIT(); } LRESULT TimeBar::on_paint() { TRACE_ENTER("TimeBar::on_paint"); RECT rc; HDC dc = paint_helper->BeginPaint(); GetClientRect(hwnd, &rc); RECT r; int winx = rc.left, winy = rc.top, winw = rc.right - rc.left, winh = rc.bottom - rc.top; SelectObject(dc, (HGDIOBJ)bar_font); r.left = r.top = r.bottom = r.right = 0; TRACE_MSG("1" << winx << " " << winy << " " << winw << " " << winh); // Bar int bar_width = 0; int border_size = BORDER_SIZE; if (bar_max_value > 0) { bar_width = (bar_value * (winw - 2 * border_size)) / bar_max_value; } // Secondary bar int sbar_width = 0; if (secondary_bar_max_value > 0) { sbar_width = (secondary_bar_value * (winw - 2 * border_size)) / secondary_bar_max_value; } int bar_h = winh - 2 * border_size; TRACE_MSG("2"); if (sbar_width > 0) { // Overlap // assert(secondary_bar_color == COLOR_ID_INACTIVE); ITimeBar::ColorId overlap_color; switch (bar_color) { case ITimeBar::COLOR_ID_ACTIVE: overlap_color = ITimeBar::COLOR_ID_INACTIVE_OVER_ACTIVE; break; case ITimeBar::COLOR_ID_OVERDUE: overlap_color = ITimeBar::COLOR_ID_INACTIVE_OVER_OVERDUE; break; default: overlap_color = ITimeBar::COLOR_ID_BG; } if (sbar_width >= bar_width) { if (bar_width) { r.left = winx + border_size; r.top = winy + border_size; r.right = r.left + bar_width; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[overlap_color]); } if (sbar_width > bar_width) { r.left = winx + bar_width + border_size; r.top = winy + border_size; r.right = r.left + sbar_width - bar_width; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[secondary_bar_color]); } } else { if (sbar_width) { r.left = winx + border_size; r.top = winy + border_size; r.right = r.left + sbar_width; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[overlap_color]); } r.left = winx + border_size + sbar_width; r.top = winy + border_size; r.right = r.left + bar_width - sbar_width; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[bar_color]); } } else { // No overlap r.left = winx + border_size; r.top = winy + border_size; r.right = r.left + bar_width; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[bar_color]); } TRACE_MSG("3"); r.left = winx + border_size + __max(bar_width, sbar_width); r.top = winy + border_size; r.right = winx + winw - border_size; r.bottom = r.top + bar_h; FillRect(dc, &r, bar_colors[ITimeBar::COLOR_ID_BG]); r.left = winx; r.top = winy; r.bottom = r.top + winh; r.right = r.left + winw; DrawEdge(dc, &r, BF_ADJUST | EDGE_SUNKEN, BF_RECT); SetBkMode(dc, TRANSPARENT); r.right -= border_size + MARGINX; r.left += border_size + MARGINX; DrawText(dc, bar_text, (int)strlen(bar_text), &r, DT_SINGLELINE | DT_VCENTER | DT_RIGHT); TRACE_MSG("4"); paint_helper->EndPaint(); TRACE_EXIT(); return 0; } void TimeBar::init(HINSTANCE hinst) { TRACE_ENTER("TimeBar::init"); // If the window class has not been registered, then do so. WNDCLASS wc; if (!GetClassInfo(hinst, TIME_BAR_CLASS_NAME, &wc)) { ZeroMemory(&wc, sizeof(wc)); wc.style = CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS; wc.lpfnWndProc = (WNDPROC)wnd_proc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hinst; wc.hIcon = NULL; wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH)CreateSolidBrush(RGB(192, 0, 0)); wc.lpszMenuName = NULL; wc.lpszClassName = TIME_BAR_CLASS_NAME; RegisterClass(&wc); HBRUSH green_mix_blue = CreateSolidBrush(0x00b2d400); HBRUSH light_green = CreateSolidBrush(GDK_TO_COLORREF(37008, 61166, 37008)); HBRUSH orange = CreateSolidBrush(GDK_TO_COLORREF(65535, 42405, 0)); HBRUSH light_blue = CreateSolidBrush(GDK_TO_COLORREF(44461, 55512, 59110)); HBRUSH bg = CreateSolidBrush(GetSysColor(COLOR_3DLIGHT)); bar_colors[ITimeBar::COLOR_ID_ACTIVE] = light_blue; bar_colors[ITimeBar::COLOR_ID_INACTIVE] = light_green; bar_colors[ITimeBar::COLOR_ID_OVERDUE] = orange; bar_colors[ITimeBar::COLOR_ID_INACTIVE_OVER_ACTIVE] = green_mix_blue; bar_colors[ITimeBar::COLOR_ID_INACTIVE_OVER_OVERDUE] = light_green; bar_colors[ITimeBar::COLOR_ID_BG] = bg; NONCLIENTMETRICS_PRE_VISTA_STRUCT ncm; LOGFONT lfDefault = // the default status font info on my system: { -12, 0, 0, 0, 400, 0, 0, 0, '\1', 0, 0, 0, 0, TEXT("Tahoma") // 0, 0x00146218, 0, 0x001461F0, 0, '@', 0, 0, 0, 0, 0, 0, 0, TEXT( "~" ) }; ZeroMemory(&ncm, sizeof(ncm)); ncm.cbSize = sizeof(ncm); ncm.lfStatusFont = lfDefault; if (!SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(ncm), &ncm, 0)) // If SystemParametersInfo fails, use my default. // Now that we're filling a pre-vista NCM struct, there // shouldn't be any problem though, regardless of target. { ncm.lfStatusFont = lfDefault; } bar_font = CreateFontIndirect(&ncm.lfStatusFont); } TRACE_EXIT(); } //! Converts the specified time to a string void TimeBar::time_to_string(time_t time, char *buf, int len) { char t[2]; if (time < 0) { t[0] = '-'; t[1] = 0; time = -time; } else { t[0] = 0; } int hrs = (int)(time / 3600); int min = (int)((time / 60) % 60); int sec = (int)(time % 60); if (hrs > 0) { _snprintf_s(buf, len, _TRUNCATE, "%s%d:%02d:%02d", t, hrs, min, sec); } else { _snprintf_s(buf, len, _TRUNCATE, "%s%d:%02d", t, min, sec); } } void TimeBar::set_progress(int value, int max_value) { bar_value = value; bar_max_value = max_value; } void TimeBar::set_secondary_progress(int value, int max_value) { secondary_bar_value = value; secondary_bar_max_value = max_value; } void TimeBar::set_text(const char *text) { TRACE_ENTER("TimeBar::set_text"); strncpy_s(bar_text, APPLET_BAR_TEXT_MAX_LENGTH, text, _TRUNCATE); TRACE_EXIT(); } void TimeBar::update() { TRACE_ENTER("TimeBar::update"); InvalidateRect(hwnd, NULL, FALSE); TRACE_EXIT(); } void TimeBar::set_bar_color(ITimeBar::ColorId color) { bar_color = color; } void TimeBar::set_secondary_bar_color(ITimeBar::ColorId color) { secondary_bar_color = color; } workrave-1.10.50/frontend/applets/win32/src/ClsFact.h0000644000175100001710000000301314221624107021127 0ustar00gdm00000000000000// ClsFact.h --- CClassFactory definitions. // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CLASSFACTORY_H #define CLASSFACTORY_H #include #include "Globals.h" #include "DeskBand.h" /************************************************************************** CClassFactory class definition **************************************************************************/ class CClassFactory : public IClassFactory { protected: DWORD m_ObjRefCount; public: CClassFactory(CLSID); ~CClassFactory(); // IUnknown methods STDMETHODIMP QueryInterface(REFIID, LPVOID *); STDMETHODIMP_(DWORD) AddRef(); STDMETHODIMP_(DWORD) Release(); // IClassFactory methods STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID, LPVOID *); STDMETHODIMP LockServer(BOOL); private: CLSID m_clsidObject; }; #endif // CLASSFACTORY_H workrave-1.10.50/frontend/applets/win32/src/DeskBand.cpp0000644000175100001710000004566714221624107021643 0ustar00gdm00000000000000// DeskBand.cpp --- CDeskBand implementation // // Copyright (C) 2004, 2005, 2006, 2007, 2010 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include #include "DeskBand.h" #include "TimeBar.h" #include "TimerBox.h" #include "Guid.h" #include "Applet.hh" #include "Debug.h" #include "PaintHelper.h" CDeskBand::CDeskBand() { g_DllRefCount++; } CDeskBand::~CDeskBand() { TRACE_ENTER("CDeskBand::~CDeskBand"); // this should have been freed in a call to SetSite(NULL), but just to be safe if (m_pSite) { m_pSite->Release(); m_pSite = NULL; } g_DllRefCount--; TRACE_MSG(g_DllRefCount); TRACE_EXIT(); } STDMETHODIMP CDeskBand::QueryInterface(REFIID riid, LPVOID *ppReturn) { *ppReturn = NULL; // IUnknown if (IsEqualIID(riid, IID_IUnknown)) { *ppReturn = this; } // IOleWindow else if (IsEqualIID(riid, IID_IOleWindow)) { *ppReturn = (IOleWindow *)this; } // IDockingWindow else if (IsEqualIID(riid, IID_IDockingWindow)) { *ppReturn = (IDockingWindow *)this; } // IInputObject else if (IsEqualIID(riid, IID_IInputObject)) { *ppReturn = (IInputObject *)this; } // IObjectWithSite else if (IsEqualIID(riid, IID_IObjectWithSite)) { *ppReturn = (IObjectWithSite *)this; } // IDeskBand else if (IsEqualIID(riid, IID_IDeskBand)) { *ppReturn = (IDeskBand *)this; } // IDeskBand2 else if (IsEqualIID(riid, IID_IDeskBand2)) { *ppReturn = (IDeskBand2 *)this; } // IPersist else if (IsEqualIID(riid, IID_IPersist)) { *ppReturn = (IPersist *)this; } // IPersistStream else if (IsEqualIID(riid, IID_IPersistStream)) { *ppReturn = (IPersistStream *)this; } // IContextMenu else if (IsEqualIID(riid, IID_IContextMenu)) { *ppReturn = (IContextMenu *)this; } if (*ppReturn) { (*(LPUNKNOWN *)ppReturn)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(DWORD) CDeskBand::AddRef() { return ++m_ObjRefCount; } STDMETHODIMP_(DWORD) CDeskBand::Release() { if (--m_ObjRefCount == 0) { delete this; return 0; } return m_ObjRefCount; } STDMETHODIMP CDeskBand::GetWindow(HWND *phWnd) { TRACE_ENTER("CDeskBand::GetWindow"); *phWnd = m_hWnd; TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::ContextSensitiveHelp(BOOL fEnterMode) { TRACE_ENTER_MSG("CDeskBand::ContextSensitiveHelp", fEnterMode); TRACE_EXIT(); return E_NOTIMPL; } STDMETHODIMP CDeskBand::ShowDW(BOOL fShow) { TRACE_ENTER_MSG("CDeskBand::ShowDW", fShow); if (m_hWnd) { if (fShow) { // show our window ShowWindow(m_hWnd, SW_SHOW); } else { // hide our window ShowWindow(m_hWnd, SW_HIDE); } } TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::CloseDW(DWORD dwReserved) { TRACE_ENTER("CDeskBand::CloseDW"); ShowDW(FALSE); delete m_TimerBox; m_TimerBox = NULL; if (IsWindow(m_hWnd)) DestroyWindow(m_hWnd); m_hWnd = NULL; TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::ResizeBorderDW(LPCRECT prcBorder, IUnknown *punkSite, BOOL fReserved) { TRACE_ENTER("CDeskBand::ResizeBorderDW"); TRACE_EXIT(); return E_NOTIMPL; } STDMETHODIMP CDeskBand::UIActivateIO(BOOL fActivate, LPMSG pMsg) { TRACE_ENTER_MSG("CDeskBand::UIActivateIO", fActivate); if (fActivate) SetFocus(m_hWnd); TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::HasFocusIO() { TRACE_ENTER("CDeskBand::HasFocusIO"); if (m_bFocus) { TRACE_RETURN("OK"); return S_OK; } TRACE_RETURN("FALSE"); return S_FALSE; } STDMETHODIMP CDeskBand::TranslateAcceleratorIO(LPMSG pMsg) { TRACE_ENTER("CDeskBand::TranslateAcceleratorIO"); TRACE_EXIT(); return S_FALSE; } STDMETHODIMP CDeskBand::SetSite(IUnknown *punkSite) { TRACE_ENTER("CDeskBand::SetSite"); // If a site is being held, release it. if (m_pSite) { m_pSite->Release(); m_pSite = NULL; } // If punkSite is not NULL, a new site is being set. if (punkSite) { // Get the parent window. IOleWindow *pOleWindow; m_hwndParent = NULL; if (SUCCEEDED(punkSite->QueryInterface(IID_IOleWindow, (LPVOID *)&pOleWindow))) { pOleWindow->GetWindow(&m_hwndParent); pOleWindow->Release(); } if (!m_hwndParent) return E_FAIL; if (!RegisterAndCreateWindow()) return E_FAIL; // Get and keep the IInputObjectSite pointer. if (SUCCEEDED(punkSite->QueryInterface(IID_IInputObjectSite, (LPVOID *)&m_pSite))) { return S_OK; } return E_FAIL; } TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::GetSite(REFIID riid, LPVOID *ppvReturn) { TRACE_ENTER("CDeskBand::GetSite"); *ppvReturn = NULL; if (m_pSite) return m_pSite->QueryInterface(riid, ppvReturn); TRACE_EXIT(); return E_FAIL; } STDMETHODIMP CDeskBand::GetBandInfo(DWORD dwBandID, DWORD dwViewMode, DESKBANDINFO *pdbi) { TRACE_ENTER_MSG("CDeskBand::GetBandInfo", dwBandID << " " << dwViewMode); if (pdbi) { m_dwBandID = dwBandID; m_dwViewMode = dwViewMode; if (pdbi->dwMask & DBIM_MINSIZE) { if (DBIF_VIEWMODE_FLOATING & dwViewMode) { pdbi->ptMinSize.x = 200; pdbi->ptMinSize.y = 400; } else { TRACE_MSG("min w x h: " << m_minimumWidth << " " << m_minimumHeight); pdbi->ptMinSize.x = m_minimumWidth; pdbi->ptMinSize.y = m_minimumHeight; } } if (pdbi->dwMask & DBIM_MAXSIZE) { pdbi->ptMaxSize.x = -1; pdbi->ptMaxSize.y = -1; } if (pdbi->dwMask & DBIM_INTEGRAL) { pdbi->ptIntegral.x = 1; pdbi->ptIntegral.y = 1; } if (pdbi->dwMask & DBIM_ACTUAL) { TRACE_MSG("ideal w x h: " << m_preferredWidth << " " << m_preferredHeight); pdbi->ptActual.x = m_preferredWidth; pdbi->ptActual.y = m_preferredHeight; } if (pdbi->dwMask & DBIM_TITLE) { if (dwViewMode & DBIF_VIEWMODE_FLOATING) { lstrcpyW(pdbi->wszTitle, L"Workrave"); } else { pdbi->dwMask &= ~DBIM_TITLE; } } if (pdbi->dwMask & DBIM_MODEFLAGS) { pdbi->dwModeFlags = DBIMF_NORMAL; pdbi->dwModeFlags |= DBIMF_VARIABLEHEIGHT; } if (pdbi->dwMask & DBIM_BKCOLOR) { // Use the default background color by removing this flag. pdbi->dwMask &= ~DBIM_BKCOLOR; } return S_OK; } TRACE_EXIT(); return E_INVALIDARG; } STDMETHODIMP CDeskBand::CanRenderComposited(BOOL *pfCanRenderComposited) { TRACE_ENTER("CDeskBand::CanRenderComposited"); if (!pfCanRenderComposited) return E_INVALIDARG; *pfCanRenderComposited = TRUE; TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::GetCompositionState(BOOL *pfCompositionEnabled) { TRACE_ENTER("CDeskBand::GetCompositionState"); if (!pfCompositionEnabled) return E_INVALIDARG; *pfCompositionEnabled = m_CompositionEnabled; TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::SetCompositionState(BOOL fCompositionEnabled) { TRACE_ENTER_MSG("CDeskBand::SetCompositionState", fCompositionEnabled); m_CompositionEnabled = fCompositionEnabled; PaintHelper::SetCompositionEnabled(fCompositionEnabled != FALSE); TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::GetClassID(LPCLSID pClassID) { *pClassID = CLSID_WorkraveDeskBand; return S_OK; } STDMETHODIMP CDeskBand::IsDirty() { TRACE_ENTER("CDeskBand::IsDirty"); TRACE_EXIT(); return S_FALSE; } STDMETHODIMP CDeskBand::Load(LPSTREAM pStream) { TRACE_ENTER("CDeskBand::Load"); TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::Save(LPSTREAM pStream, BOOL fClearDirty) { TRACE_ENTER("CDeskBand::Save"); TRACE_EXIT(); return S_OK; } STDMETHODIMP CDeskBand::GetSizeMax(ULARGE_INTEGER *pul) { TRACE_ENTER("CDeskBand::GetSizeMax"); TRACE_EXIT(); return E_NOTIMPL; } STDMETHODIMP CDeskBand::QueryContextMenu(HMENU hMenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags) { TRACE_ENTER("CDeskBand::QueryContextMenu"); if ((!m_HasAppletMenu) || (CMF_DEFAULTONLY & uFlags) || !IsWindow(get_command_window())) return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(0)); int m = 0; HMENU popup = NULL; while (m < m_AppletMenu.num_items) { AppletMenuItemData *d = &m_AppletMenu.items[m]; wchar_t textw[APPLET_MENU_TEXT_MAX_LENGTH * 2]; MultiByteToWideChar(CP_UTF8, 0, d->text, -1, textw, sizeof(textw) / sizeof(textw[0])); wchar_t *abbrev = wcschr(textw, '_'); UINT flags = MF_STRING | MF_BYPOSITION; if (d->flags & APPLET_MENU_FLAG_SELECTED) { flags |= MF_CHECKED; } if (abbrev != NULL) { *abbrev = '&'; } if (d->flags & APPLET_MENU_FLAG_POPUP) { if (popup == NULL) { popup = CreatePopupMenu(); } AppendMenuW(popup, flags, idCmdFirst + m, textw); } else { if (popup != NULL) { InsertMenuW(hMenu, indexMenu++, MF_POPUP | flags, (UINT_PTR)popup, textw); popup = NULL; } else { InsertMenuW(hMenu, indexMenu++, flags, idCmdFirst + m, textw); } } m++; } TRACE_EXIT(); return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(m_AppletMenu.num_items + 1)); } STDMETHODIMP CDeskBand::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi) { TRACE_ENTER("CDeskBand::InvokeCommand"); int cmd = LOWORD(lpcmi->lpVerb); HRESULT ret; if (m_HasAppletMenu && cmd >= 0 && cmd < m_AppletMenu.num_items && IsWindow(get_command_window())) { SendMessage(get_command_window(), WM_USER, m_AppletMenu.items[cmd].command, NULL); ret = NOERROR; } else { ret = E_INVALIDARG; } TRACE_EXIT(); return ret; } STDMETHODIMP CDeskBand::GetCommandString(UINT_PTR idCommand, UINT uFlags, LPUINT lpReserved, LPSTR lpszName, UINT uMaxNameLen) { HRESULT hr = E_INVALIDARG; return hr; } LRESULT CALLBACK CDeskBand::WndProc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam) { TRACE_ENTER("CDeskBand::WndProc"); LRESULT lResult = 0; CDeskBand *pThis = (CDeskBand *)GetWindowLongPtr(hWnd, GWLP_USERDATA); switch (uMessage) { case WM_NCCREATE: { LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam; pThis = (CDeskBand *)(lpcs->lpCreateParams); SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)pThis); SetWindowPos(hWnd, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); // set the window handle pThis->m_hWnd = hWnd; SetTimer(hWnd, 0xdeadf00d, 3000, NULL); PaintHelper::Init(); } break; case WM_ERASEBKGND: if (pThis->m_CompositionEnabled) { lResult = 1; } break; case WM_COMMAND: pThis->OnCommand(wParam, lParam); break; case WM_TIMER: pThis->OnTimer(wParam, lParam); break; case WM_COPYDATA: pThis->OnCopyData((PCOPYDATASTRUCT)lParam); break; case WM_SETFOCUS: pThis->OnSetFocus(); break; case WM_KILLFOCUS: pThis->OnKillFocus(); break; case WM_SIZE: pThis->OnSize(lParam); break; case WM_WINDOWPOSCHANGING: pThis->OnWindowPosChanging(wParam, lParam); break; case WM_LBUTTONUP: SendMessage((HWND)LongToHandle(pThis->m_AppletMenu.command_window), WM_USER + 1, 0, NULL); break; case WM_DPICHANGED: pThis->OnDPIChanged(); } if (uMessage != WM_ERASEBKGND) { lResult = DefWindowProc(hWnd, uMessage, wParam, lParam); } TRACE_EXIT(); return lResult; } LRESULT CDeskBand::OnCommand(WPARAM wParam, LPARAM lParam) { return 0; } LRESULT CDeskBand::OnTimer(WPARAM wParam, LPARAM lParam) { TRACE_ENTER_MSG("CDeskBand::OnTimer", wParam << " " << lParam); if (m_TimerBox != NULL) { if (m_LastCopyData == 0 || difftime(time(NULL), m_LastCopyData) > 2) { m_TimerBox->set_enabled(false); m_TimerBox->update(false); UpdateDeskband(); } } TRACE_EXIT(); return 0; } LRESULT CDeskBand::OnCopyData(PCOPYDATASTRUCT copy_data) { TRACE_ENTER("CDeskBand::OnCopyData"); m_LastCopyData = time(NULL); if (copy_data->dwData == APPLET_MESSAGE_MENU && copy_data->cbData == sizeof(AppletMenuData)) { m_AppletMenu = *((AppletMenuData *)copy_data->lpData); m_HasAppletMenu = TRUE; } else if (m_TimerBox != NULL && copy_data->dwData == APPLET_MESSAGE_HEARTBEAT && copy_data->cbData == sizeof(AppletHeartbeatData)) { AppletHeartbeatData *data = (AppletHeartbeatData *)copy_data->lpData; m_TimerBox->set_enabled(data->enabled); for (int s = 0; s < BREAK_ID_SIZEOF; s++) { m_TimerBox->set_slot(s, (BreakId)data->slots[s]); } for (int b = 0; b < BREAK_ID_SIZEOF; b++) { TimeBar *bar = m_TimerBox->get_time_bar(BreakId(b)); if (bar != NULL) { bar->set_text(data->bar_text[b]); bar->set_bar_color((ITimeBar::ColorId)data->bar_primary_color[b]); bar->set_secondary_bar_color((ITimeBar::ColorId)data->bar_secondary_color[b]); bar->set_progress(data->bar_primary_val[b], data->bar_primary_max[b]); bar->set_secondary_progress(data->bar_secondary_val[b], data->bar_secondary_max[b]); } } m_TimerBox->update(false); UpdateDeskband(); } TRACE_EXIT(); return 0; } LRESULT CDeskBand::OnSize(LPARAM lParam) { TRACE_ENTER_MSG("CDeskBand::OnSize", lParam); int cx, cy; cx = LOWORD(lParam); cy = HIWORD(lParam); TRACE_MSG(cx << " " << cy); if (m_TimerBox != NULL) { m_TimerBox->set_size(cx, cy); m_TimerBox->update(true); } TRACE_EXIT(); return 0; } void CDeskBand::FocusChange(BOOL bFocus) { TRACE_ENTER_MSG("CDeskBand::OnWindowPosChanging", bFocus); m_bFocus = bFocus; // inform the input object site that the focus has changed if (m_pSite) { m_pSite->OnFocusChangeIS((IDockingWindow *)this, bFocus); } TRACE_EXIT(); } LRESULT CDeskBand::OnSetFocus() { TRACE_ENTER("CDeskBand::OnSetFocus"); FocusChange(TRUE); TRACE_EXIT(); return 0; } LRESULT CDeskBand::OnKillFocus() { TRACE_ENTER("CDeskBand::OnKillFocus"); FocusChange(FALSE); TRACE_EXIT(); return 0; } BOOL CDeskBand::RegisterAndCreateWindow() { TRACE_ENTER("CDeskBand::RegisterAndCreateWindow"); // If the window doesn't exist yet, create it now. if (!m_hWnd) { // Can't create a child window without a parent. if (!m_hwndParent) { return FALSE; } // If the window class has not been registered, then do so. WNDCLASS wc; if (!GetClassInfo(g_hInst, DB_CLASS_NAME, &wc)) { ZeroMemory(&wc, sizeof(wc)); wc.style = CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS; wc.lpfnWndProc = (WNDPROC)WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = g_hInst; wc.hIcon = NULL; wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = NULL; //(HBRUSH)(COLOR_WINDOWFRAME+1); wc.lpszMenuName = NULL; wc.lpszClassName = DB_CLASS_NAME; if (!RegisterClass(&wc)) { // If RegisterClass fails, CreateWindow below will fail. } } RECT rc; GetClientRect(m_hwndParent, &rc); TRACE_MSG(rc.left << " " << rc.top << " " << rc.right << " " << rc.bottom); // Create the window. The WndProc will set m_hWnd. HWND h = CreateWindowEx(WS_EX_TRANSPARENT, DB_CLASS_NAME, NULL, WS_CHILD | WS_CLIPSIBLINGS, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top, m_hwndParent, NULL, g_hInst, (LPVOID)this); m_TimerBox = new TimerBox(h, g_hInst, this); } return (NULL != m_hWnd); TRACE_EXIT(); } LRESULT CDeskBand::OnWindowPosChanging(WPARAM wParam, LPARAM lParam) { TRACE_ENTER_MSG("CDeskBand::OnWindowPosChanging", wParam << " " << lParam); if (m_TimerBox != NULL) { m_TimerBox->update(true); } TRACE_EXIT(); return 0; } LRESULT CDeskBand::OnDPIChanged() { TRACE_ENTER("CDeskBand::OnDPIChanged"); if (m_TimerBox != NULL) { m_TimerBox->update_dpi(); } TRACE_EXIT(); return 0; } void CDeskBand::UpdateDeskband() { TRACE_ENTER("CDeskBand::UpdateDeskband"); int preferredWidth, preferredHeight; m_TimerBox->get_preferred_size(preferredWidth, preferredHeight); preferredWidth = __max(DB_MIN_SIZE_X, preferredWidth); preferredHeight = __max(DB_MIN_SIZE_Y, preferredHeight); int minimumWidth, minimumHeight; m_TimerBox->get_minimum_size(minimumWidth, minimumHeight); minimumWidth = __max(DB_MIN_SIZE_X, minimumWidth); minimumHeight = __max(DB_MIN_SIZE_Y, minimumHeight); TRACE_MSG("w x h: " << preferredWidth << " " << preferredHeight << " old: " << m_preferredWidth << " " << m_preferredHeight); TRACE_MSG("w x h: " << minimumWidth << " " << minimumHeight << " old: " << m_minimumWidth << " " << m_minimumHeight); if (preferredWidth != m_preferredWidth || preferredHeight != m_preferredHeight || minimumWidth != m_minimumWidth || minimumHeight != m_minimumHeight) { m_preferredWidth = preferredWidth; m_preferredHeight = preferredHeight; m_minimumWidth = minimumWidth; m_minimumHeight = minimumHeight; IOleCommandTarget *oleCommandTarget; HRESULT hr = GetSite(IID_IOleCommandTarget, (LPVOID *)&oleCommandTarget); if (SUCCEEDED(hr)) { VARIANTARG v = {0}; v.vt = VT_I4; v.lVal = m_dwBandID; oleCommandTarget->Exec(&CGID_DeskBand, DBID_BANDINFOCHANGED, OLECMDEXECOPT_DODEFAULT, &v, NULL); oleCommandTarget->Release(); } } } workrave-1.10.50/frontend/applets/win32/src/PaintHelper.h0000644000175100001710000000502714221624107022032 0ustar00gdm00000000000000// TimeBar.h --- Time bar // // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef PAINTHELPER_H #define PAINTHELPER_H #define TMSCHEMA_H #include #include #include typedef HRESULT(__stdcall *BUFFERED_PAINT_INIT)(VOID); typedef HRESULT(__stdcall *BUFFERED_PAINT_UNINIT)(VOID); typedef HPAINTBUFFER(__stdcall *BEGIN_BUFFERED_PAINT)(HDC hdcTarget, const RECT *prcTarget, BP_BUFFERFORMAT dwFormat, BP_PAINTPARAMS *pPaintParams, HDC *phdc); typedef HRESULT(__stdcall *END_BUFFERED_PAINT)(HPAINTBUFFER hBufferedPaint, BOOL fUpdateTarget); typedef HRESULT(__stdcall *BUFFERED_PAINT_SET_ALPHA)(HPAINTBUFFER hBufferedPaint, const RECT *prc, BYTE alpha); typedef HRESULT(__stdcall *GET_BUFFERED_PAINT_BITS)(HPAINTBUFFER hBufferedPaint, RGBQUAD **ppbBuffer, int *pcxRow); class PaintHelper { public: PaintHelper(HWND hwnd); ~PaintHelper(); HDC BeginPaint(); void EndPaint(); void DrawIcon(int x, int y, HICON icon, int width, int height); void FixIconAlpha(HICON icon); static void SetCompositionEnabled(bool enabled); static bool GetCompositionEnabled(); static void Init(); private: HPAINTBUFFER paint_buffer{nullptr}; PAINTSTRUCT ps{}; HWND hwnd{}; HDC hdc{}; HDC paint_hdc{}; bool alpha_set{false}; static bool composition_enabled; static bool composition_available; public: static BUFFERED_PAINT_UNINIT BufferedPaintUnInit; static BUFFERED_PAINT_INIT BufferedPaintInit; static BEGIN_BUFFERED_PAINT BeginBufferedPaint; static END_BUFFERED_PAINT EndBufferedPaint; static BUFFERED_PAINT_SET_ALPHA BufferedPaintSetAlpha; static GET_BUFFERED_PAINT_BITS GetBufferedPaintBits; }; #endif // PAINTHELPER_H workrave-1.10.50/frontend/applets/win32/src/Debug.h0000644000175100001710000000447514221624107020653 0ustar00gdm00000000000000// Debug.hh // // Copyright (C) 2001 - 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DEBUG_HH #define DEBUG_HH #include #ifndef TRACING # define TRACE_ENTER(x) # define TRACE_ENTER_MSG(x, y) # define TRACE_RETURN(x) # define TRACE_EXIT() # define TRACE_MSG(x) #else # include # include # include # include extern std::ofstream g_log_stream; class Debug { public: static void init(); static std::string trace_get_time(); }; # define TRACE_ENTER(x) \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << std::endl; \ std::cerr.flush(); # define TRACE_ENTER_MSG(x, y) \ const char *_trace_method_name = x; \ std::cerr << Debug::trace_get_time() << ">>> " << x << " " << y << std::endl; \ std::cerr.flush(); # define TRACE_RETURN(y) \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << y << std::endl; \ std::cerr.flush(); # define TRACE_EXIT() \ std::cerr << Debug::trace_get_time() << "<<< " << _trace_method_name << std::endl; \ std::cerr.flush(); # define TRACE_MSG(msg) \ std::cerr << Debug::trace_get_time() << " " << _trace_method_name << " " << msg << std::endl; \ std::cerr.flush(); #endif // TRACING #endif // DEBUG_H workrave-1.10.50/frontend/applets/win32/src/TimerBox.h0000644000175100001710000000416214221624107021347 0ustar00gdm00000000000000// TimerBox.h --- Timer box // // Copyright (C) 2004, 2005, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERBOX_H #define TIMERBOX_H #include #include #include "ICore.hh" #include "Util.h" class TimeBar; class Icon; class CDeskBand; using namespace workrave; class TimerBox { public: TimerBox(HWND parent, HINSTANCE hinst, CDeskBand *deskband); ~TimerBox(); void set_slot(int slot, BreakId brk); TimeBar *get_time_bar(BreakId timer) const; void set_size(int width, int height); void get_preferred_size(int &width, int &height) const; void get_minimum_size(int &width, int &height) const; void update(bool repaint); void update_dpi(); void set_enabled(bool enabled); private: void init_icons(); void update_sheep(TransparentDamageControl &ctrl); void update_time_bars(TransparentDamageControl &ctrl); void update_dimensions(); TimeBar *slot_to_time_bar[BREAK_ID_SIZEOF]{}; CDeskBand *deskband{nullptr}; HWND parent_window{}; HINSTANCE hinstance{}; Icon *sheep_icon{nullptr}; Icon *break_to_icon[BREAK_ID_SIZEOF]; BreakId slot_to_break[BREAK_ID_SIZEOF]; short break_to_slot[BREAK_ID_SIZEOF]; bool break_visible[BREAK_ID_SIZEOF]; bool enabled{false}; short filled_slots{0}; int width{0}; int height{0}; int preferred_width{-1}; int preferred_height{-1}; int minimum_width{-1}; int minimum_height{-1}; int icon_bar_width; int rows{0}; int columns{0}; }; #endif // TIMERBOX_H workrave-1.10.50/frontend/applets/win32/src/Applet.sln0000644000175100001710000000263014221624107021406 0ustar00gdm00000000000000 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30717.126 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Applet", "Applet.vcxproj", "{319F28B8-69E2-452D-AC84-ED2094F893F5}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {319F28B8-69E2-452D-AC84-ED2094F893F5}.Debug|x64.ActiveCfg = Debug|x64 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Debug|x64.Build.0 = Debug|x64 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Debug|x86.ActiveCfg = Debug|Win32 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Debug|x86.Build.0 = Debug|Win32 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Release|x64.ActiveCfg = Release|x64 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Release|x64.Build.0 = Release|x64 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Release|x86.ActiveCfg = Release|Win32 {319F28B8-69E2-452D-AC84-ED2094F893F5}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {EA25DA26-F424-42BA-BF16-33B14E3F4D1E} EndGlobalSection EndGlobal workrave-1.10.50/frontend/applets/win32/src/TimeBar.h0000644000175100001710000000532514221624107021143 0ustar00gdm00000000000000// TimeBar.h --- Time bar // // Copyright (C) 2004, 2005, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMEBAR_H #define TIMEBAR_H #include #include #include "ITimeBar.hh" #include "Applet.hh" class CDeskBand; class PaintHelper; class TimeBar { public: TimeBar(HWND hwnd, HINSTANCE hinst, CDeskBand *deskband); ~TimeBar(); void set_progress(int value, int max_value); void set_secondary_progress(int value, int max_value); void set_text(const char *text); void update(); void set_bar_color(ITimeBar::ColorId color); void set_secondary_bar_color(ITimeBar::ColorId color); void get_size(int &width, int &height); HWND get_handle() const { return hwnd; }; private: CDeskBand *deskband{nullptr}; HWND hwnd{}; int width{0}, height{0}; int bar_max_value{100}; int bar_value{0}; int secondary_bar_max_value{0}; int secondary_bar_value{100}; ITimeBar::ColorId secondary_bar_color{ITimeBar::COLOR_ID_INACTIVE}; ITimeBar::ColorId bar_color{ITimeBar::COLOR_ID_ACTIVE}; char bar_text[APPLET_BAR_TEXT_MAX_LENGTH]{ 0, }; PaintHelper *paint_helper{nullptr}; static HFONT bar_font; static HBRUSH bar_colors[ITimeBar::COLOR_ID_SIZEOF]; static void init(HINSTANCE hinst); static LRESULT CALLBACK wnd_proc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam); void compute_size(int &width, int &height); LRESULT on_paint(); void time_to_string(time_t time, char *buf, int len); }; struct NONCLIENTMETRICS_PRE_VISTA_STRUCT { UINT cbSize; int iBorderWidth; int iScrollWidth; int iScrollHeight; int iCaptionWidth; int iCaptionHeight; LOGFONT lfCaptionFont; int iSmCaptionWidth; int iSmCaptionHeight; LOGFONT lfSmCaptionFont; int iMenuWidth; int iMenuHeight; LOGFONT lfMenuFont; LOGFONT lfStatusFont; LOGFONT lfMessageFont; /* This is a pre-vista structure for compatibility across platforms. Normally, when Vista is the target build (WINVER 0x0600), NONCLIENTMETRICS structs contain an ifdef WINVER >= 0x0600: int iPaddedBorderWidth; */ }; #endif // TIMEBAR_H workrave-1.10.50/frontend/applets/win32/src/TimerBox.cpp0000644000175100001710000002047714221624107021711 0ustar00gdm00000000000000// TimerBox.cpp --- Timer box // // Copyright (C) 2004, 2005, 2009, 2010 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include "TimerBox.h" #include "TimeBar.h" #include "Util.h" #include "Icon.h" #include "Debug.h" using namespace workrave; const int PADDING_X = 2; const int PADDING_Y = 2; TimerBox::TimerBox(HWND parent, HINSTANCE hinst, CDeskBand *deskband) : parent_window(parent) , hinstance(hinst) , deskband(deskband) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { slot_to_time_bar[i] = new TimeBar(parent, hinst, deskband); break_to_icon[i] = NULL; break_visible[i] = false; slot_to_break[i] = BREAK_ID_NONE; break_to_slot[i] = -1; } init_icons(); } TimerBox::~TimerBox() { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { delete break_to_icon[i]; delete slot_to_time_bar[i]; } delete sheep_icon; } void TimerBox::set_slot(int slot, BreakId brk) { TRACE_ENTER_MSG("TimerBox::set_slot", slot << " " << brk); BreakId old_brk = slot_to_break[slot]; TRACE_MSG(old_brk); if (old_brk != brk) { if (old_brk != BREAK_ID_NONE) { break_visible[old_brk] = false; break_to_slot[old_brk] = -1; filled_slots--; } slot_to_break[slot] = brk; if (brk != BREAK_ID_NONE) { int old_slot = break_to_slot[brk]; if (old_slot >= 0) { slot_to_break[old_slot] = BREAK_ID_NONE; } else { filled_slots++; } break_visible[brk] = true; break_to_slot[brk] = static_cast(slot); } } TRACE_EXIT(); } void TimerBox::set_size(int w, int h) { TRACE_ENTER_MSG("TimerBox::set_size", w << " " << h); width = w; height = h; TRACE_EXIT(); } void TimerBox::get_preferred_size(int &w, int &h) const { TRACE_ENTER("TimerBox::get_preferred_size"); w = preferred_width; h = preferred_height; TRACE_RETURN(w << " " << h); } void TimerBox::get_minimum_size(int &w, int &h) const { TRACE_ENTER("TimerBox::get_preferred_size"); w = minimum_width; h = minimum_height; TRACE_RETURN(w << " " << h); } void TimerBox::update(bool repaint) { TRACE_ENTER_MSG("TimerBox::update", repaint); update_dimensions(); TransparentDamageControl ctrl; TRACE_MSG("begin paint"); ctrl.BeginPaint(repaint); TRACE_MSG("bars"); update_time_bars(ctrl); TRACE_MSG("sheep"); update_sheep(ctrl); TRACE_MSG("end paint"); ctrl.EndPaint(); TRACE_EXIT(); } void TimerBox::update_dpi() { init_icons(); } void TimerBox::init_icons() { TRACE_ENTER("TimerBox::update_icons"); const char *icon_ids[] = {"micropause", "restbreak", "dailylimit"}; UINT dpi = Util::GetDpiForWindow(parent_window); TRACE_MSG("dpi " << dpi); int size = 16; if (dpi >= 192) { size = 32; } else if (dpi >= 144) { size = 24; } TRACE_MSG("size " << size); if (sheep_icon != nullptr) { delete sheep_icon; } sheep_icon = new Icon(parent_window, hinstance, "workrave", size, deskband); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (break_to_icon[i] != NULL) { delete break_to_icon[i]; } break_to_icon[i] = new Icon(parent_window, hinstance, icon_ids[i], size, deskband); } TRACE_EXIT(); } void TimerBox::update_sheep(TransparentDamageControl &ctrl) { TRACE_ENTER("TimerBox::update_sheep"); if (enabled && (filled_slots != 0)) { TRACE_MSG("hide"); ctrl.HideWindow(sheep_icon->get_handle()); } else { TRACE_MSG("show"); int w, h; sheep_icon->get_size(w, h); int x = (width - w) / 2; int y = (height - h) / 2; ctrl.ShowWindow(sheep_icon->get_handle(), x, y); } TRACE_EXIT(); } void TimerBox::update_dimensions() { TRACE_ENTER("TimerBox::update_dimensions"); if (enabled && (filled_slots != 0)) { int bar_w, bar_h; int icon_width, icon_height; slot_to_time_bar[0]->get_size(bar_w, bar_h); break_to_icon[0]->get_size(icon_width, icon_height); icon_bar_width = icon_width + 2 * PADDING_X + bar_w; int max_columns = __max(1, width / icon_bar_width); int max_rows = __max(1, (height + PADDING_Y) / (__max(icon_height, bar_h) + PADDING_Y)); rows = __max(1, __min(max_rows, (filled_slots + max_columns - 1) / max_columns)); columns = (filled_slots + rows - 1) / rows; int min_columns = (filled_slots + max_rows - 1) / max_rows; preferred_width = columns * icon_bar_width + (columns - 1) * PADDING_X; preferred_height = rows * __max(icon_height, bar_h) + (rows - 1) * PADDING_Y; minimum_width = min_columns * icon_bar_width + (min_columns - 1) * PADDING_X; minimum_height = preferred_height; TRACE_MSG("icon: " << icon_width << " " << icon_height); TRACE_MSG("bar: " << bar_w << " " << bar_h); TRACE_MSG("icon_bar_w " << icon_bar_width); TRACE_MSG("max r/c " << max_rows << " " << max_columns); TRACE_MSG("r/c " << rows << " " << columns); TRACE_MSG("pref" << preferred_width << " " << preferred_height); TRACE_MSG("min" << minimum_width << " " << minimum_height); } else { sheep_icon->get_size(preferred_width, preferred_height); minimum_width = preferred_width; minimum_height = preferred_height; TRACE_MSG("only sheep"); TRACE_MSG("pref" << preferred_width << " " << preferred_height); TRACE_MSG("min" << minimum_width << " " << minimum_height); } TRACE_EXIT(); } void TimerBox::update_time_bars(TransparentDamageControl &ctrl) { TRACE_ENTER("TimerBox::update_time_bars"); if (enabled) { int x = 0, y = 0; int bar_w, bar_h; int icon_width, icon_height; slot_to_time_bar[0]->get_size(bar_w, bar_h); break_to_icon[0]->get_size(icon_width, icon_height); y = __max(0, (height - preferred_height) / 2); int icon_dy = 0; int bar_dy = 0; if (bar_h > icon_height) { icon_dy = (bar_h - icon_height + 1) / 2; } else { bar_dy = (icon_height - bar_h + 1) / 2; } int current_column = 0; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakId bid = slot_to_break[i]; if (bid != BREAK_ID_NONE) { TimeBar *bar = get_time_bar(bid); ctrl.ShowWindow(break_to_icon[bid]->get_handle(), x, y + icon_dy); ctrl.ShowWindow(bar->get_handle(), x + icon_width + PADDING_X, y + bar_dy); bar->update(); x += icon_bar_width + 2 * PADDING_X; current_column++; if (current_column >= columns) { current_column = 0; x = 0; y += __max(icon_height, bar_h) + PADDING_Y; } } } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakId bid = slot_to_break[i]; break_to_icon[bid]->update(); } } for (int h = 0; h < BREAK_ID_SIZEOF; h++) { if ((!enabled) || (!break_visible[h])) { ctrl.HideWindow(break_to_icon[h]->get_handle()); } } for (int j = enabled ? filled_slots : 0; j < BREAK_ID_SIZEOF; j++) { ctrl.HideWindow(slot_to_time_bar[j]->get_handle()); } TRACE_EXIT(); } TimeBar * TimerBox::get_time_bar(BreakId timer) const { TRACE_ENTER_MSG("TimerBox::get_time_bat", timer); TimeBar *ret = NULL; int slot = break_to_slot[timer]; if (slot >= 0) { ret = slot_to_time_bar[slot]; } TRACE_EXIT(); return ret; } void TimerBox::set_enabled(bool ena) { TRACE_ENTER_MSG("TimerBox::set_enabled", ena); enabled = ena; TRACE_EXIT(); } workrave-1.10.50/frontend/applets/win32/src/Icon.h0000644000175100001710000000255014221624107020505 0ustar00gdm00000000000000// Icon.h --- Icon // // Copyright (C) 2004, 2005, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICON_H #define ICON_H #include class CDeskBand; class PaintHelper; class Icon { public: Icon(HWND hwnd, HINSTANCE hinst, const char *resource, int size, CDeskBand *deskband); ~Icon(); HWND get_handle() const { return hwnd; }; void get_size(int &w, int &h) const; void update(); private: CDeskBand *deskband{nullptr}; HWND hwnd{}; HICON icon{}; PaintHelper *paint_helper{nullptr}; int size{16}; static void init(HINSTANCE hinst); static LRESULT CALLBACK wnd_proc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam); LRESULT on_paint(); }; #endif // ICON_H workrave-1.10.50/frontend/applets/win32/src/Makefile.in0000644000000000000000000004204014221624201022573 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/win32/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = Applet.cpp \ Applet.def \ Applet.sln \ Applet.vcxproj \ ClsFact.cpp \ ClsFact.h \ Debug.cpp \ Debug.h \ DeskBand.cpp \ DeskBand.h \ Globals.h \ Guid.h \ Icon.cpp \ Icon.h \ PaintHelper.cpp \ PaintHelper.h \ TimeBar.cpp \ TimeBar.h \ TimerBox.cpp \ TimerBox.h \ Util.cpp \ Util.h \ resource.rc all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/win32/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/win32/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/win32/src/Icon.cpp0000644000175100001710000000661014221624107021041 0ustar00gdm00000000000000// Icon.cpp --- Icon // // Copyright (C) 2004, 2005, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include #include "Icon.h" #include "DeskBand.h" #include "Debug.h" #include "PaintHelper.h" #define ICON_CLASS_NAME "WorkraveIcon" Icon::Icon(HWND parent, HINSTANCE hinst, const char *resource, int size, CDeskBand *deskband) : deskband(deskband) , size(size) { init(hinst); icon = (HICON)LoadImage(hinst, resource, IMAGE_ICON, size, size, LR_DEFAULTCOLOR); hwnd = CreateWindowEx(0, ICON_CLASS_NAME, "", WS_CHILD | WS_CLIPSIBLINGS, 0, 0, size, size, parent, NULL, hinst, (LPVOID)this); paint_helper = new PaintHelper(hwnd); } Icon::~Icon() { DestroyWindow(hwnd); delete paint_helper; } LRESULT CALLBACK Icon::wnd_proc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam) { TRACE_ENTER("Icon::WndProc"); LRESULT lResult = 0; Icon *pThis = (Icon *)GetWindowLongPtr(hWnd, GWLP_USERDATA); switch (uMessage) { case WM_NCCREATE: { LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam; pThis = (Icon *)(lpcs->lpCreateParams); SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)pThis); SetWindowPos(hWnd, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); } break; case WM_PAINT: pThis->on_paint(); break; case WM_ERASEBKGND: if (PaintHelper::GetCompositionEnabled()) { lResult = 1; } break; case WM_LBUTTONUP: SendMessage(pThis->deskband->get_command_window(), WM_USER + 1, 0, NULL); break; } if (uMessage != WM_ERASEBKGND) { lResult = DefWindowProc(hWnd, uMessage, wParam, lParam); } TRACE_EXIT(); return lResult; } void Icon::get_size(int &w, int &h) const { w = size; h = size; } LRESULT Icon::on_paint() { TRACE_ENTER("Icon::OnPaint"); HDC dc = paint_helper->BeginPaint(); if (dc != NULL) { paint_helper->DrawIcon(0, 0, icon, size, size); paint_helper->EndPaint(); } TRACE_EXIT(); return 0; } void Icon::init(HINSTANCE hinst) { // If the window class has not been registered, then do so. WNDCLASS wc; if (!GetClassInfo(hinst, ICON_CLASS_NAME, &wc)) { ZeroMemory(&wc, sizeof(wc)); wc.style = CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS; wc.lpfnWndProc = (WNDPROC)wnd_proc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hinst; wc.hIcon = NULL; wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH)GetStockObject(HOLLOW_BRUSH); wc.lpszMenuName = NULL; wc.lpszClassName = ICON_CLASS_NAME; RegisterClass(&wc); } } void Icon::update() { TRACE_ENTER("Icon::update"); InvalidateRect(hwnd, NULL, FALSE); TRACE_EXIT(); } workrave-1.10.50/frontend/applets/win32/src/DeskBand.h0000644000175100001710000000723014221624107021270 0ustar00gdm00000000000000// DeskBand.h --- CDeskBand definitions // // Copyright (C) 2004, 2005, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #include #include #include "Globals.h" #include "Applet.hh" #ifndef DESKBAND_H # define DESKBAND_H # define DB_CLASS_NAME (TEXT("WorkraveApplet")) # define DB_MIN_SIZE_X 10 # define DB_MIN_SIZE_Y 10 class TimerBox; class CDeskBand : public IDeskBand2 , public IInputObject , public IObjectWithSite , public IPersistStream , public IContextMenu { protected: DWORD m_ObjRefCount{1}; public: CDeskBand(); ~CDeskBand(); // IUnknown methods STDMETHODIMP QueryInterface(REFIID, LPVOID *); STDMETHODIMP_(DWORD) AddRef(); STDMETHODIMP_(DWORD) Release(); // IOleWindow methods STDMETHOD(GetWindow)(HWND *); STDMETHOD(ContextSensitiveHelp)(BOOL); // IDockingWindow methods STDMETHOD(ShowDW)(BOOL fShow); STDMETHOD(CloseDW)(DWORD dwReserved); STDMETHOD(ResizeBorderDW)(LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved); // IDeskBand methods STDMETHOD(GetBandInfo)(DWORD, DWORD, DESKBANDINFO *); // IDeskBand2 methods STDMETHOD(CanRenderComposited)(BOOL *); STDMETHOD(GetCompositionState)(BOOL *); STDMETHOD(SetCompositionState)(BOOL); // IInputObject methods STDMETHOD(UIActivateIO)(BOOL, LPMSG); STDMETHOD(HasFocusIO)(); STDMETHOD(TranslateAcceleratorIO)(LPMSG); // IObjectWithSite methods STDMETHOD(SetSite)(IUnknown *); STDMETHOD(GetSite)(REFIID, LPVOID *); // IPersistStream methods STDMETHOD(GetClassID)(LPCLSID); STDMETHOD(IsDirty)(); STDMETHOD(Load)(LPSTREAM); STDMETHOD(Save)(LPSTREAM, BOOL); STDMETHOD(GetSizeMax)(ULARGE_INTEGER *); // IContextMenu methods STDMETHOD(QueryContextMenu)(HMENU, UINT, UINT, UINT, UINT); STDMETHOD(InvokeCommand)(LPCMINVOKECOMMANDINFO); STDMETHOD(GetCommandString)(UINT_PTR, UINT, LPUINT, LPSTR, UINT); HWND get_command_window() const; private: BOOL m_bFocus{FALSE}; HWND m_hwndParent{nullptr}; HWND m_hWnd{nullptr}; DWORD m_dwViewMode{0}; DWORD m_dwBandID{0}; IInputObjectSite *m_pSite{nullptr}; TimerBox *m_TimerBox{nullptr}; time_t m_LastCopyData{0}; AppletMenuData m_AppletMenu{}; BOOL m_HasAppletMenu{FALSE}; BOOL m_CompositionEnabled{FALSE}; int m_preferredWidth{DB_MIN_SIZE_X}; int m_preferredHeight{DB_MIN_SIZE_Y}; int m_minimumWidth{DB_MIN_SIZE_X}; int m_minimumHeight{DB_MIN_SIZE_Y}; private: void FocusChange(BOOL); LRESULT OnKillFocus(); LRESULT OnSetFocus(); static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam); LRESULT OnCommand(WPARAM wParam, LPARAM lParam); LRESULT OnCopyData(PCOPYDATASTRUCT data); LRESULT OnSize(LPARAM); LRESULT OnTimer(WPARAM wParam, LPARAM lParam); LRESULT OnWindowPosChanging(WPARAM wParam, LPARAM lParam); LRESULT OnDPIChanged(); BOOL RegisterAndCreateWindow(); void UpdateDeskband(); }; inline HWND CDeskBand::get_command_window() const { return (HWND)LongToHandle(m_AppletMenu.command_window); } #endif // DESKBAND_H workrave-1.10.50/frontend/applets/win32/src/Applet.vcxproj0000644000175100001710000002673714221624107022323 0ustar00gdm00000000000000 Debug Win32 Debug x64 Release Win32 Release x64 {319F28B8-69E2-452D-AC84-ED2094F893F5} 10.0 DynamicLibrary v142 DynamicLibrary v142 DynamicLibrary v142 DynamicLibrary v142 <_ProjectFileVersion>16.0.30712.155 MinimumRecommendedRules.ruleset workrave-applet MinimumRecommendedRules.ruleset workrave-applet64 MinimumRecommendedRules.ruleset workrave-applet MinimumRecommendedRules.ruleset workrave-applet64 _DEBUG;%(PreprocessorDefinitions) true true Win32 .\Debug/Applet.tlb ../include;..\..\..\..\backend\include;..\..\..\common\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;TRACING;_WIN32_WINNT=0x603;WINVER=0x603;%(PreprocessorDefinitions) MultiThreadedDebug Disabled Level3 _DEBUG;%(PreprocessorDefinitions) Windows shlwapi.lib;%(AdditionalDependencies) Applet.def _DEBUG;%(PreprocessorDefinitions) true true .\Debug/Applet.tlb ../include;..\..\..\..\backend\include;..\..\..\common\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;TRACING;_WIN32_WINNT=0x603;WINVER=0x603;%(PreprocessorDefinitions) MultiThreadedDebug Disabled Level3 _DEBUG;%(PreprocessorDefinitions) Windows shlwapi.lib;%(AdditionalDependencies) Applet.def NDEBUG;%(PreprocessorDefinitions) true true Win32 .\Release/Applet.tlb ../include;..\..\..\..\backend\include;..\..\..\common\include;%(AdditionalIncludeDirectories) MultiThreaded WIN32;NDEBUG;_WINDOWS;_WIN32_WINNT=0x603;WINVER=0x603;%(PreprocessorDefinitions) Level3 NDEBUG;%(PreprocessorDefinitions) Windows shlwapi.lib;%(AdditionalDependencies) Applet.def NDEBUG;%(PreprocessorDefinitions) true true .\Release/Applet.tlb ../include;..\..\..\..\backend\include;..\..\..\common\include;%(AdditionalIncludeDirectories) MultiThreaded WIN32;NDEBUG;_WINDOWS;_WIN32_WINNT=0x603;WINVER=0x603;%(PreprocessorDefinitions) Level3 NDEBUG;%(PreprocessorDefinitions) Windows shlwapi.lib;%(AdditionalDependencies) Applet.def workrave-1.10.50/frontend/applets/win32/src/Util.cpp0000644000175100001710000000572014221624107021067 0ustar00gdm00000000000000// Util.cpp --- Utils // // Copyright (C) 2004, 2007, 2010 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "Util.h" static void MapWindowRect(HWND hwnd, HWND parent, RECT *rect) { GetClientRect(hwnd, rect); MapWindowPoints(hwnd, parent, (LPPOINT)rect, 2); } static void TransparentHideWindow(HWND hwnd) { if (IsWindowVisible(hwnd)) { RECT r; HWND bg = GetParent(GetParent(hwnd)); MapWindowRect(hwnd, bg, &r); ShowWindow(hwnd, SW_HIDE); InvalidateRect(bg, &r, TRUE); } } static void TransparentPrepareShowWindow(HWND hwnd, int x, int y, BOOL repaint) { if (IsWindowVisible(hwnd)) { RECT r; POINT p; GetWindowRect(hwnd, &r); p.x = r.left; p.y = r.top; ScreenToClient(GetParent(hwnd), &p); if (repaint || p.x != x || p.y != y) { TransparentHideWindow(hwnd); } } } void TransparentDamageControl::BeginPaint(BOOL rp) { hide_windows_num = 0; show_windows_num = 0; repaint = rp; } void TransparentDamageControl::HideWindow(HWND hwnd) { if (hide_windows_num < TRANSPARENT_DAMAGE_CONTROL_BUF_SIZE) { hide_windows[hide_windows_num++] = hwnd; } } void TransparentDamageControl::ShowWindow(HWND hwnd, int x, int y) { if (hide_windows_num < TRANSPARENT_DAMAGE_CONTROL_BUF_SIZE) { ShowWindowData *d = &show_windows[show_windows_num++]; d->hwnd = hwnd; d->x = x; d->y = y; } } void TransparentDamageControl::EndPaint() { for (int h = 0; h < hide_windows_num; h++) { TransparentHideWindow(hide_windows[h]); } for (int s = 0; s < show_windows_num; s++) { ShowWindowData *d = &show_windows[s]; TransparentPrepareShowWindow(d->hwnd, d->x, d->y, repaint); } for (int p = 0; p < show_windows_num; p++) { ShowWindowData *d = &show_windows[p]; SetWindowPos(d->hwnd, NULL, d->x, d->y, 0, 0, SWP_SHOWWINDOW | SWP_NOZORDER | SWP_NOSIZE); } } UINT Util::GetDpiForWindow(HWND window) { typedef UINT (WINAPI *GetDpiForWindowFunction)(HWND); static GetDpiForWindowFunction getDpiForWindow = (GetDpiForWindowFunction)GetProcAddress(LoadLibraryW(L"user32.dll"), "GetDpiForWindow"); if (getDpiForWindow != nullptr) { int dpi = getDpiForWindow(window); if (dpi != 0) { return dpi; } } return 96; } workrave-1.10.50/frontend/applets/win32/src/Applet.cpp0000644000175100001710000001717014221624107021401 0ustar00gdm00000000000000// Applet.cpp --- COM stuff // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include #include #include #include "ClsFact.h" #include #pragma data_seg(".text") #define INITGUID #include #include #include "Guid.h" #include "Debug.h" #pragma data_seg() extern "C" BOOL WINAPI DllMain(HINSTANCE, DWORD, LPVOID); BOOL RegisterServer(CLSID, LPTSTR, BOOL reg); BOOL RegisterComCat(CLSID, CATID, BOOL reg); HINSTANCE g_hInst; UINT g_DllRefCount; extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) { switch (dwReason) { case DLL_PROCESS_ATTACH: g_hInst = hInstance; break; case DLL_PROCESS_DETACH: break; } return TRUE; } STDAPI DllCanUnloadNow() { TRACE_ENTER("DllCanUnloadNow"); TRACE_RETURN(g_DllRefCount); return (g_DllRefCount ? S_FALSE : S_OK); } STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppReturn) { *ppReturn = NULL; // if we don't support this classid, return the proper error code if (!IsEqualCLSID(rclsid, CLSID_WorkraveDeskBand)) return CLASS_E_CLASSNOTAVAILABLE; // create a CClassFactory object and check it for validity CClassFactory *pClassFactory = new CClassFactory(rclsid); if (NULL == pClassFactory) return E_OUTOFMEMORY; // get the QueryInterface return for our return value HRESULT hResult = pClassFactory->QueryInterface(riid, ppReturn); // call Release to decement the ref count - creating the object set it to one // and QueryInterface incremented it - since its being used externally (not by // us), we only want the ref count to be 1 pClassFactory->Release(); // return the result from QueryInterface return hResult; } static void ClearDeskBandCache() { /* Remove the cache of the deskbands on Windows 2000. This will cause the new deskband to be displayed in the toolbar menu the next time the user brings it up. See KB article Q214842 for more information on this. */ TCHAR szSubKey[MAX_PATH]; TCHAR szCATID[MAX_PATH]; LPWSTR pwszCATID; StringFromCLSID(CATID_DeskBand, &pwszCATID); if (pwszCATID) { #ifdef UNICODE lstrcpy(szCATID, pwszCATID); #else WideCharToMultiByte(CP_ACP, 0, pwszCATID, -1, szCATID, ARRAYSIZE(szCATID), NULL, NULL); #endif // free the string CoTaskMemFree(pwszCATID); wsprintf(szSubKey, TEXT("Component Categories\\%s\\Enum"), szCATID); RegDeleteKey(HKEY_CLASSES_ROOT, szSubKey); } } STDAPI DllUnregisterServer() { RegisterComCat(CLSID_WorkraveDeskBand, CATID_DeskBand, FALSE); RegisterServer(CLSID_WorkraveDeskBand, TEXT("Workrave"), FALSE); ClearDeskBandCache(); return S_OK; } STDAPI DllRegisterServer() { // Register the desk band object. if (!RegisterServer(CLSID_WorkraveDeskBand, TEXT("Workrave"), TRUE)) return SELFREG_E_CLASS; // Register the component categories for the desk band object. if (!RegisterComCat(CLSID_WorkraveDeskBand, CATID_DeskBand, TRUE)) return SELFREG_E_CLASS; ClearDeskBandCache(); return S_OK; } typedef struct { HKEY hRootKey; LPTSTR szSubKey; // TCHAR szSubKey[MAX_PATH]; LPTSTR lpszValueName; LPTSTR szData; // TCHAR szData[MAX_PATH]; } DOREGSTRUCT, *LPDOREGSTRUCT; BOOL RegisterServer(CLSID clsid, LPTSTR lpszTitle, BOOL reg) { int i; HKEY hKey; LRESULT lResult; DWORD dwDisp; TCHAR szSubKey[MAX_PATH]; TCHAR szCLSID[MAX_PATH]; TCHAR szModule[MAX_PATH]; LPWSTR pwsz; // get the CLSID in string form StringFromIID(clsid, &pwsz); if (pwsz) { #ifdef UNICODE lstrcpy(szCLSID, pwsz); #else WideCharToMultiByte(CP_ACP, 0, pwsz, -1, szCLSID, ARRAYSIZE(szCLSID), NULL, NULL); #endif // free the string CoTaskMemFree(pwsz); } // get this app's path and file name GetModuleFileName(g_hInst, szModule, ARRAYSIZE(szModule)); DOREGSTRUCT ClsidEntries[] = {HKEY_CLASSES_ROOT, TEXT("CLSID\\%s"), NULL, lpszTitle, HKEY_CLASSES_ROOT, TEXT("CLSID\\%s\\InprocServer32"), NULL, szModule, HKEY_CLASSES_ROOT, TEXT("CLSID\\%s\\InprocServer32"), TEXT("ThreadingModel"), TEXT("Apartment")}; if (reg) { // register the CLSID entries for (i = 0; i < sizeof(ClsidEntries) / sizeof(ClsidEntries[0]); i++) { // create the sub key string - for this case, insert the file extension wsprintf(szSubKey, ClsidEntries[i].szSubKey, szCLSID); lResult = RegCreateKeyEx(ClsidEntries[i].hRootKey, szSubKey, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, &dwDisp); if (NOERROR == lResult) { TCHAR szData[MAX_PATH]; // if necessary, create the value string wsprintf(szData, ClsidEntries[i].szData, szModule); lResult = RegSetValueEx(hKey, ClsidEntries[i].lpszValueName, 0, REG_SZ, (LPBYTE)szData, lstrlen(szData) + 1); RegCloseKey(hKey); } else return FALSE; } } else { // create the sub key string - for this case, insert the file extension wsprintf(szSubKey, ClsidEntries[0].szSubKey, szCLSID); SHDeleteKey(ClsidEntries[0].hRootKey, szSubKey); } // If running on NT, register the extension as approved. OSVERSIONINFO osvi; osvi.dwOSVersionInfoSize = sizeof(osvi); GetVersionEx(&osvi); if (VER_PLATFORM_WIN32_NT == osvi.dwPlatformId) { lstrcpy(szSubKey, TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Approved")); lResult = RegCreateKeyEx(HKEY_LOCAL_MACHINE, szSubKey, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, &dwDisp); if (NOERROR == lResult) { TCHAR szData[MAX_PATH]; // Create the value string. lstrcpy(szData, lpszTitle); if (reg) { lResult = RegSetValueEx(hKey, szCLSID, 0, REG_SZ, (LPBYTE)szData, (lstrlen(szData) + 1) * sizeof(TCHAR)); } else { lResult = RegDeleteValue(hKey, szCLSID); } RegCloseKey(hKey); } else return FALSE; } return TRUE; } BOOL RegisterComCat(CLSID clsid, CATID CatID, BOOL reg) { ICatRegister *pcr; HRESULT hr = S_OK; CoInitialize(NULL); hr = CoCreateInstance(CLSID_StdComponentCategoriesMgr, NULL, CLSCTX_INPROC_SERVER, IID_ICatRegister, (LPVOID *)&pcr); if (SUCCEEDED(hr)) { if (reg) { hr = pcr->RegisterClassImplCategories(clsid, 1, &CatID); } else { hr = pcr->UnRegisterClassImplCategories(clsid, 1, &CatID); } pcr->Release(); } CoUninitialize(); return SUCCEEDED(hr); } workrave-1.10.50/frontend/applets/win32/src/ClsFact.cpp0000644000175100001710000000511514221624107021467 0ustar00gdm00000000000000// ClsFact.h --- CClassFactory implementation // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // $Id$ #include "ClsFact.h" #include "Guid.h" #include "Debug.h" CClassFactory::CClassFactory(CLSID clsid) { TRACE_ENTER("CClassFactory::CClassFactory"); m_clsidObject = clsid; m_ObjRefCount = 1; g_DllRefCount++; TRACE_EXIT(); } CClassFactory::~CClassFactory() { TRACE_ENTER("CClassFactory::CClassFactory"); g_DllRefCount--; TRACE_MSG(g_DllRefCount); TRACE_EXIT(); } STDMETHODIMP CClassFactory::QueryInterface(REFIID riid, LPVOID *ppReturn) { *ppReturn = NULL; if (IsEqualIID(riid, IID_IUnknown)) { *ppReturn = this; } else if (IsEqualIID(riid, IID_IClassFactory)) { *ppReturn = (IClassFactory *)this; } if (*ppReturn) { (*(LPUNKNOWN *)ppReturn)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(DWORD) CClassFactory::AddRef() { return ++m_ObjRefCount; } STDMETHODIMP_(DWORD) CClassFactory::Release() { if (--m_ObjRefCount == 0) { delete this; return 0; } return m_ObjRefCount; } STDMETHODIMP CClassFactory::CreateInstance(LPUNKNOWN pUnknown, REFIID riid, LPVOID *ppObject) { HRESULT hResult = E_FAIL; LPVOID pTemp = NULL; *ppObject = NULL; if (pUnknown != NULL) return CLASS_E_NOAGGREGATION; // create the proper object if (IsEqualCLSID(m_clsidObject, CLSID_WorkraveDeskBand)) { #ifdef TRACING Debug::init(); #endif CDeskBand *pDeskBand = new CDeskBand(); if (NULL == pDeskBand) return E_OUTOFMEMORY; pTemp = pDeskBand; } if (pTemp) { // get the QueryInterface return for our return value hResult = ((LPUNKNOWN)pTemp)->QueryInterface(riid, ppObject); // call Release to decement the ref count ((LPUNKNOWN)pTemp)->Release(); } return hResult; } STDMETHODIMP CClassFactory::LockServer(BOOL) { return E_NOTIMPL; } workrave-1.10.50/frontend/applets/win32/src/resource.rc0000644000175100001710000000054314221624107021621 0ustar00gdm00000000000000dailylimit ICON DISCARDABLE "../../../common/share/images/win32/timer-daily.ico" micropause ICON DISCARDABLE "../../../common/share/images/win32/timer-micropause.ico" restbreak ICON DISCARDABLE "../../../common/share/images/win32/timer-restbreak.ico" workrave ICON DISCARDABLE "../../../common/share/images/win32/workrave.ico" workrave-1.10.50/frontend/applets/win32/src/Makefile.am0000644000175100001710000000141714221624107021501 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2006 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = Applet.cpp \ Applet.def \ Applet.sln \ Applet.vcxproj \ ClsFact.cpp \ ClsFact.h \ Debug.cpp \ Debug.h \ DeskBand.cpp \ DeskBand.h \ Globals.h \ Guid.h \ Icon.cpp \ Icon.h \ PaintHelper.cpp \ PaintHelper.h \ TimeBar.cpp \ TimeBar.h \ TimerBox.cpp \ TimerBox.h \ Util.cpp \ Util.h \ resource.rc workrave-1.10.50/frontend/applets/win32/src/Guid.h0000644000175100001710000000172514221624107020510 0ustar00gdm00000000000000// Guid.h --- Private GUID definition. // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GUID_H #define GUID_H // {B6407CFF-FCB5-4883-90D2-3B4E7B2756BF} DEFINE_GUID(CLSID_WorkraveDeskBand, 0xb6407cff, 0xfcb5, 0x4883, 0x90, 0xd2, 0x3b, 0x4e, 0x7b, 0x27, 0x56, 0xbf); #endif workrave-1.10.50/frontend/applets/win32/src/Globals.h0000644000175100001710000000157414221624107021205 0ustar00gdm00000000000000// Globals.h --- Globals // // Copyright (C) 2004, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // extern HINSTANCE g_hInst; extern UINT g_DllRefCount; #undef ARRAYSIZE #define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0])) workrave-1.10.50/frontend/applets/win32/src/PaintHelper.cpp0000644000175100001710000001311214221624107022357 0ustar00gdm00000000000000#include "PaintHelper.h" #include "Debug.h" #include #include #include using namespace std; BEGIN_BUFFERED_PAINT PaintHelper::BeginBufferedPaint = NULL; END_BUFFERED_PAINT PaintHelper::EndBufferedPaint = NULL; BUFFERED_PAINT_SET_ALPHA PaintHelper::BufferedPaintSetAlpha = NULL; BUFFERED_PAINT_UNINIT PaintHelper::BufferedPaintUnInit = NULL; BUFFERED_PAINT_INIT PaintHelper::BufferedPaintInit = NULL; GET_BUFFERED_PAINT_BITS PaintHelper::GetBufferedPaintBits = NULL; bool PaintHelper::composition_enabled = false; bool PaintHelper::composition_available = false; PaintHelper::PaintHelper(HWND hwnd) { TRACE_ENTER_MSG("PaintHelper::PaintHelper", hwnd); this->hwnd = hwnd; TRACE_EXIT(); } PaintHelper::~PaintHelper() {} HDC PaintHelper::BeginPaint() { TRACE_ENTER("PaintHelper::BeginPaint"); hdc = ::BeginPaint(hwnd, &ps); paint_hdc = hdc; if (hdc) { if (composition_enabled && composition_available) { RECT rc; BP_PAINTPARAMS paint_params = {0}; GetClientRect(hwnd, &rc); paint_params.dwFlags = BPPF_ERASE; paint_params.cbSize = sizeof(paint_params); paint_buffer = BeginBufferedPaint(hdc, &rc, BPBF_TOPDOWNDIB, &paint_params, &paint_hdc); PatBlt(paint_hdc, 0, 0, rc.right - rc.left, rc.bottom - rc.top, BLACKNESS); BufferedPaintSetAlpha(paint_buffer, 0, 255); alpha_set = false; } else { paint_buffer = NULL; } } TRACE_EXIT(); return paint_hdc; } void PaintHelper::EndPaint() { TRACE_ENTER("PaintHelper::EndPaint"); if (paint_buffer != NULL) { if (!alpha_set) { BufferedPaintSetAlpha(paint_buffer, 0, 255); } EndBufferedPaint(paint_buffer, TRUE); paint_buffer = NULL; } ::EndPaint(hwnd, &ps); TRACE_EXIT(); } void PaintHelper::FixIconAlpha(HICON icon) { TRACE_ENTER("PaintHelper::FixIconAlpha"); ICONINFO icon_info; RGBQUAD *paint_bits; Gdiplus::ARGB *paint_bits_argb; int row_size; HRESULT hr = (paint_buffer != NULL) ? S_OK : E_FAIL; if (SUCCEEDED(hr)) { hr = GetBufferedPaintBits(paint_buffer, &paint_bits, &row_size); } if (SUCCEEDED(hr)) { paint_bits_argb = (Gdiplus::ARGB *)paint_bits; if (!GetIconInfo(icon, &icon_info)) { hr = E_FAIL; } } if (SUCCEEDED(hr)) { HDC hdc = GetDC(0); BITMAPINFO bmi = { 0, }; bmi.bmiHeader.biSize = sizeof(bmi.bmiHeader); if (GetDIBits(hdc, icon_info.hbmColor, 0, 0, 0, &bmi, DIB_RGB_COLORS)) { int icon_width = abs(bmi.bmiHeader.biWidth); int icon_height = abs(bmi.bmiHeader.biHeight); bmi.bmiHeader.biWidth = icon_width; bmi.bmiHeader.biHeight = -icon_height; bmi.bmiHeader.biCompression = BI_RGB; bmi.bmiHeader.biBitCount = 32; bmi.bmiHeader.biPlanes = 1; int row_delta = row_size - bmi.bmiHeader.biWidth; unsigned char *mask_data = (unsigned char *)malloc(icon_width * icon_height * 4); if (GetDIBits(hdc, icon_info.hbmMask, 0, abs(bmi.bmiHeader.biHeight), mask_data, &bmi, DIB_RGB_COLORS)) { unsigned char *mask_ptr = mask_data; for (int y = 0; y < icon_height; y++) { for (int x = 0; x < icon_width; x++) { if (mask_ptr[0]) { *paint_bits_argb++ = 0x40000000; } else { *paint_bits_argb++ |= 0xff000000; } mask_ptr += 4; } paint_bits_argb += row_delta; } alpha_set = true; } free(mask_data); } ReleaseDC(0, hdc); DeleteObject(icon_info.hbmColor); DeleteObject(icon_info.hbmMask); } TRACE_EXIT(); } void PaintHelper::DrawIcon(int x, int y, HICON hIcon, int width, int height) { TRACE_ENTER("PaintHelper::DrawIcon"); DrawIconEx(paint_hdc, x, y, hIcon, width, height, 0, NULL, DI_NORMAL); FixIconAlpha(hIcon); TRACE_EXIT(); } void PaintHelper::Init() { TRACE_ENTER("PaintHelper::Init"); HINSTANCE handle = LoadLibrary("UxTheme.dll"); composition_available = false; composition_enabled = false; if (handle != NULL) { BeginBufferedPaint = (BEGIN_BUFFERED_PAINT)::GetProcAddress(handle, "BeginBufferedPaint"); EndBufferedPaint = (END_BUFFERED_PAINT)::GetProcAddress(handle, "EndBufferedPaint"); BufferedPaintSetAlpha = (BUFFERED_PAINT_SET_ALPHA)::GetProcAddress(handle, "BufferedPaintSetAlpha"); BufferedPaintUnInit = (BUFFERED_PAINT_UNINIT)::GetProcAddress(handle, "BufferedPaintUnInit"); BufferedPaintInit = (BUFFERED_PAINT_INIT)::GetProcAddress(handle, "BufferedPaintInit"); GetBufferedPaintBits = (GET_BUFFERED_PAINT_BITS)::GetProcAddress(handle, "GetBufferedPaintBits"); if (BeginBufferedPaint != NULL && EndBufferedPaint != NULL && BufferedPaintSetAlpha != NULL && BufferedPaintUnInit != NULL && BufferedPaintInit != NULL && GetBufferedPaintBits != NULL) { TRACE_MSG("composition available"); composition_available = true; } } TRACE_EXIT(); } void PaintHelper::SetCompositionEnabled(bool enabled) { TRACE_ENTER_MSG("PaintHelper::SetCompositionEnabled", enabled); composition_enabled = enabled; TRACE_EXIT(); } bool PaintHelper::GetCompositionEnabled() { return composition_enabled; } workrave-1.10.50/frontend/applets/win32/src/Applet.def0000644000175100001710000000031014221624107021341 0ustar00gdm00000000000000LIBRARY workrave-applet DESCRIPTION "Workrave Taskbar Integration" EXPORTS DllCanUnloadNow PRIVATE DllGetClassObject PRIVATE DllRegisterServer PRIVATE DllUnregisterServer PRIVATE workrave-1.10.50/frontend/applets/win32/src/Debug.cpp0000644000175100001710000000337314221624107021202 0ustar00gdm00000000000000// debug.cc // // Copyright (C) 2001, 2002, 2003, 2007, 2009, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef TRACING # define WIN32_LEAN_AND_MEAN # include /* for GetFileAttributes */ # include "Debug.h" using namespace std; std::ofstream g_log_stream; std::string Debug::trace_get_time() { char logtime[128]; time_t ltime; time(<ime); struct tm tmlt; localtime_s(&tmlt, <ime); strftime(logtime, 128, "%d%b%Y %H:%M:%S ", &tmlt); return logtime; } void Debug::init() { std::string debug_filename; char path_buffer[MAX_PATH]; DWORD ret = GetTempPath(MAX_PATH, path_buffer); if (ret > MAX_PATH || ret == 0) { debug_filename = "C:\\temp\\"; } else { debug_filename = path_buffer; } char logfile[128]; time_t ltime; time(<ime); struct tm tmlt; localtime_s(&tmlt, <ime); strftime(logfile, 128, "workrave-applet-%d%b%Y-%H%M%S", &tmlt); debug_filename += logfile; g_log_stream.open(debug_filename.c_str(), std::ios::app); if (g_log_stream.is_open()) { std::cerr.rdbuf(g_log_stream.rdbuf()); } } #endif workrave-1.10.50/frontend/applets/win32/Makefile.in0000644000000000000000000005526514221624201022021 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/win32/Makefile.am0000644000175100001710000000027414221624107020712 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include workrave-1.10.50/frontend/applets/gnome3/0000755000000000000000000000000014221624440020172 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome3/src/0000755000000000000000000000000014221624441020762 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome3/src/Makefile.in0000644000000000000000000013471214221624201023031 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/gnome3/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/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)$(appletdir)" \ "$(DESTDIR)$(libapplet_libdir)" "$(DESTDIR)$(appletdir)" \ "$(DESTDIR)$(xmluidir)" LTLIBRARIES = $(applet_LTLIBRARIES) $(libapplet_lib_LTLIBRARIES) libworkrave_applet_la_DEPENDENCIES = am__libworkrave_applet_la_SOURCES_DIST = \ libgnome-panel/WorkraveApplet.c \ libgnome-panel/WorkraveApplet.h \ libgnome-panel/WorkraveModule.c v5/WorkraveApplet.c \ v4/WorkraveApplet.c am__dirstamp = $(am__leading_dot)dirstamp @HAVE_LIBGNOME_PANEL_FALSE@@HAVE_PANELAPPLET4_FALSE@@HAVE_PANELAPPLET_TRUE@am__objects_1 = v5/libworkrave_applet_la-WorkraveApplet.lo @HAVE_LIBGNOME_PANEL_FALSE@@HAVE_PANELAPPLET4_TRUE@@HAVE_PANELAPPLET_TRUE@am__objects_1 = v4/libworkrave_applet_la-WorkraveApplet.lo @HAVE_LIBGNOME_PANEL_TRUE@am__objects_1 = libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo \ @HAVE_LIBGNOME_PANEL_TRUE@ libgnome-panel/libworkrave_applet_la-WorkraveModule.lo @HAVE_LIBGNOME_PANEL_FALSE@@HAVE_PANELAPPLET_TRUE@am_libworkrave_applet_la_OBJECTS = $(am__objects_1) @HAVE_LIBGNOME_PANEL_TRUE@am_libworkrave_applet_la_OBJECTS = \ @HAVE_LIBGNOME_PANEL_TRUE@ $(am__objects_1) libworkrave_applet_la_OBJECTS = $(am_libworkrave_applet_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_applet_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libworkrave_applet_la_CFLAGS) $(CFLAGS) \ $(libworkrave_applet_la_LDFLAGS) $(LDFLAGS) -o $@ @HAVE_LIBGNOME_PANEL_TRUE@am_libworkrave_applet_la_rpath = -rpath \ @HAVE_LIBGNOME_PANEL_TRUE@ $(appletdir) @HAVE_PANELAPPLET_TRUE@am_libworkrave_applet_la_rpath = -rpath \ @HAVE_PANELAPPLET_TRUE@ $(libapplet_libdir) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo \ libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Plo \ v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo \ v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_applet_la_SOURCES) DIST_SOURCES = $(am__libworkrave_applet_la_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(applet_DATA) $(xmlui_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = org.workrave.WorkraveApplet.panel-applet.in.in \ libgnome-panel/WorkraveApplet.c \ libgnome-panel/WorkraveApplet.h \ libgnome-panel/WorkraveModule.c \ libgnome-panel/workrave-gnome-applet-menu.xml \ v4/WorkraveApplet.c \ v5/WorkraveApplet.c \ WorkraveApplet.h \ v4/workrave-gnome-applet-menu.xml \ v5/workrave-gnome-applet-menu.xml BUILT_SOURCES = CLEANFILES = $(applet_DATA) $(applet_DATA).in $(schemas_DATA) MAINTAINERCLEANFILES = Makefile.in DBusGnomeApplet.xml DBusGUI.xml SUBDIRS = @HAVE_LIBGNOME_PANEL_TRUE@appletdir = $(LIBGNOME_PANEL_MODULES_DIR) @HAVE_PANELAPPLET4_FALSE@@HAVE_PANELAPPLET_TRUE@@LOCALINSTALL_FALSE@appletdir = `$(PKG_CONFIG) --variable=libpanel_applet_dir libpanel-applet` # V5 @HAVE_PANELAPPLET4_FALSE@@HAVE_PANELAPPLET_TRUE@@LOCALINSTALL_TRUE@appletdir = $(datadir)/gnome-panel/applets # V4 @HAVE_PANELAPPLET4_TRUE@@HAVE_PANELAPPLET_TRUE@appletdir = $(datadir)/gnome-panel/4.0/applets @HAVE_LIBGNOME_PANEL_TRUE@applet_LTLIBRARIES = libworkrave-applet.la @HAVE_LIBGNOME_PANEL_TRUE@xmluidir = $(pkgdatadir)/ui # Common @HAVE_PANELAPPLET_TRUE@xmluidir = $(datadir)/gnome-panel/ui @HAVE_LIBGNOME_PANEL_TRUE@xmlui_DATA = libgnome-panel/workrave-gnome-applet-menu.xml @HAVE_PANELAPPLET4_FALSE@@HAVE_PANELAPPLET_TRUE@xmlui_DATA = v5/workrave-gnome-applet-menu.xml @HAVE_PANELAPPLET4_TRUE@@HAVE_PANELAPPLET_TRUE@xmlui_DATA = v4/workrave-gnome-applet-menu.xml @HAVE_LIBGNOME_PANEL_TRUE@applet_source = \ @HAVE_LIBGNOME_PANEL_TRUE@ libgnome-panel/WorkraveApplet.c \ @HAVE_LIBGNOME_PANEL_TRUE@ libgnome-panel/WorkraveApplet.h \ @HAVE_LIBGNOME_PANEL_TRUE@ libgnome-panel/WorkraveModule.c @HAVE_PANELAPPLET4_FALSE@@HAVE_PANELAPPLET_TRUE@applet_source = v5/WorkraveApplet.c @HAVE_PANELAPPLET4_TRUE@@HAVE_PANELAPPLET_TRUE@applet_source = v4/WorkraveApplet.c @HAVE_LIBGNOME_PANEL_TRUE@AM_CPPFLAGS = -I$(srcdir) @HAVE_PANELAPPLET_TRUE@AM_CPPFLAGS = -I$(srcdir) @HAVE_LIBGNOME_PANEL_TRUE@FLAGS = \ @HAVE_LIBGNOME_PANEL_TRUE@ @GNOME3_CFLAGS@ \ @HAVE_LIBGNOME_PANEL_TRUE@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_LIBGNOME_PANEL_TRUE@ @WR_COMMON_INCLUDES@ \ @HAVE_LIBGNOME_PANEL_TRUE@ @WR_BACKEND_INCLUDES@ \ @HAVE_LIBGNOME_PANEL_TRUE@ -std=c99 \ @HAVE_LIBGNOME_PANEL_TRUE@ -I$(srcdir)/../include \ @HAVE_LIBGNOME_PANEL_TRUE@ -I$(srcdir)/../../common/include \ @HAVE_LIBGNOME_PANEL_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_LIBGNOME_PANEL_TRUE@ -DWORKRAVE_UIDATADIR="\"${xmluidir}\"" \ @HAVE_LIBGNOME_PANEL_TRUE@ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" @HAVE_PANELAPPLET_TRUE@FLAGS = @GNOME3_CFLAGS@ @WR_FRONTEND_COMMON_INCLUDES@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ @HAVE_PANELAPPLET_TRUE@ -std=c99 -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_PANELAPPLET_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_PANELAPPLET_TRUE@ -DWORKRAVE_UIDATADIR="\"${xmluidir}\"" \ @HAVE_PANELAPPLET_TRUE@ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" @HAVE_LIBGNOME_PANEL_TRUE@libworkrave_applet_la_SOURCES = ${applet_source} @HAVE_PANELAPPLET_TRUE@libworkrave_applet_la_SOURCES = ${applet_source} @HAVE_LIBGNOME_PANEL_TRUE@libworkrave_applet_la_LIBADD = @GNOME3_LIBS@ -L$(builddir)/../../common/src -lworkrave-private-1.0 @HAVE_PANELAPPLET_TRUE@libworkrave_applet_la_LIBADD = @GNOME3_LIBS@ -L$(builddir)/../../common/src -lworkrave-private-1.0 @HAVE_LIBGNOME_PANEL_TRUE@libworkrave_applet_la_CXXFLAGS = ${FLAGS} @HAVE_PANELAPPLET_TRUE@libworkrave_applet_la_CXXFLAGS = ${FLAGS} @HAVE_LIBGNOME_PANEL_TRUE@libworkrave_applet_la_CFLAGS = ${FLAGS} @HAVE_PANELAPPLET_TRUE@libworkrave_applet_la_CFLAGS = ${FLAGS} @HAVE_LIBGNOME_PANEL_TRUE@libworkrave_applet_la_LDFLAGS = -module -avoid-version @HAVE_PANELAPPLET_TRUE@libworkrave_applet_la_LDFLAGS = -module -avoid-version @HAVE_PANELAPPLET_TRUE@applet_in_files = org.workrave.WorkraveApplet.panel-applet.in @HAVE_PANELAPPLET_TRUE@applet_DATA = $(applet_in_files:.panel-applet.in=.panel-applet) # Comnmon @HAVE_PANELAPPLET_TRUE@APPLET_IN_PROCESS = true @HAVE_PANELAPPLET_TRUE@APPLET_LOCATION = ${pkglibdir}/libworkrave-applet.so @HAVE_PANELAPPLET_TRUE@libapplet_libdir = ${pkglibdir} @HAVE_PANELAPPLET_TRUE@libapplet_lib_LTLIBRARIES = libworkrave-applet.la all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/gnome3/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/gnome3/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-appletLTLIBRARIES: $(applet_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(applet_LTLIBRARIES)'; test -n "$(appletdir)" || 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)$(appletdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appletdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(appletdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(appletdir)"; \ } uninstall-appletLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(applet_LTLIBRARIES)'; test -n "$(appletdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(appletdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(appletdir)/$$f"; \ done clean-appletLTLIBRARIES: -test -z "$(applet_LTLIBRARIES)" || rm -f $(applet_LTLIBRARIES) @list='$(applet_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } install-libapplet_libLTLIBRARIES: $(libapplet_lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(libapplet_lib_LTLIBRARIES)'; test -n "$(libapplet_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)$(libapplet_libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libapplet_libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libapplet_libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libapplet_libdir)"; \ } uninstall-libapplet_libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(libapplet_lib_LTLIBRARIES)'; test -n "$(libapplet_libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libapplet_libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libapplet_libdir)/$$f"; \ done clean-libapplet_libLTLIBRARIES: -test -z "$(libapplet_lib_LTLIBRARIES)" || rm -f $(libapplet_lib_LTLIBRARIES) @list='$(libapplet_lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libgnome-panel/$(am__dirstamp): @$(MKDIR_P) libgnome-panel @: > libgnome-panel/$(am__dirstamp) libgnome-panel/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) libgnome-panel/$(DEPDIR) @: > libgnome-panel/$(DEPDIR)/$(am__dirstamp) libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo: \ libgnome-panel/$(am__dirstamp) \ libgnome-panel/$(DEPDIR)/$(am__dirstamp) libgnome-panel/libworkrave_applet_la-WorkraveModule.lo: \ libgnome-panel/$(am__dirstamp) \ libgnome-panel/$(DEPDIR)/$(am__dirstamp) v5/$(am__dirstamp): @$(MKDIR_P) v5 @: > v5/$(am__dirstamp) v5/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) v5/$(DEPDIR) @: > v5/$(DEPDIR)/$(am__dirstamp) v5/libworkrave_applet_la-WorkraveApplet.lo: v5/$(am__dirstamp) \ v5/$(DEPDIR)/$(am__dirstamp) v4/$(am__dirstamp): @$(MKDIR_P) v4 @: > v4/$(am__dirstamp) v4/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) v4/$(DEPDIR) @: > v4/$(DEPDIR)/$(am__dirstamp) v4/libworkrave_applet_la-WorkraveApplet.lo: v4/$(am__dirstamp) \ v4/$(DEPDIR)/$(am__dirstamp) libworkrave-applet.la: $(libworkrave_applet_la_OBJECTS) $(libworkrave_applet_la_DEPENDENCIES) $(EXTRA_libworkrave_applet_la_DEPENDENCIES) $(AM_V_CCLD)$(libworkrave_applet_la_LINK) $(am_libworkrave_applet_la_rpath) $(libworkrave_applet_la_OBJECTS) $(libworkrave_applet_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f libgnome-panel/*.$(OBJEXT) -rm -f libgnome-panel/*.lo -rm -f v4/*.$(OBJEXT) -rm -f v4/*.lo -rm -f v5/*.$(OBJEXT) -rm -f v5/*.lo distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo: libgnome-panel/WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -MT libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo -MD -MP -MF libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo -c -o libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo `test -f 'libgnome-panel/WorkraveApplet.c' || echo '$(srcdir)/'`libgnome-panel/WorkraveApplet.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libgnome-panel/WorkraveApplet.c' object='libgnome-panel/libworkrave_applet_la-WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -c -o libgnome-panel/libworkrave_applet_la-WorkraveApplet.lo `test -f 'libgnome-panel/WorkraveApplet.c' || echo '$(srcdir)/'`libgnome-panel/WorkraveApplet.c libgnome-panel/libworkrave_applet_la-WorkraveModule.lo: libgnome-panel/WorkraveModule.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -MT libgnome-panel/libworkrave_applet_la-WorkraveModule.lo -MD -MP -MF libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Tpo -c -o libgnome-panel/libworkrave_applet_la-WorkraveModule.lo `test -f 'libgnome-panel/WorkraveModule.c' || echo '$(srcdir)/'`libgnome-panel/WorkraveModule.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Tpo libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libgnome-panel/WorkraveModule.c' object='libgnome-panel/libworkrave_applet_la-WorkraveModule.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -c -o libgnome-panel/libworkrave_applet_la-WorkraveModule.lo `test -f 'libgnome-panel/WorkraveModule.c' || echo '$(srcdir)/'`libgnome-panel/WorkraveModule.c v5/libworkrave_applet_la-WorkraveApplet.lo: v5/WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -MT v5/libworkrave_applet_la-WorkraveApplet.lo -MD -MP -MF v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo -c -o v5/libworkrave_applet_la-WorkraveApplet.lo `test -f 'v5/WorkraveApplet.c' || echo '$(srcdir)/'`v5/WorkraveApplet.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='v5/WorkraveApplet.c' object='v5/libworkrave_applet_la-WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -c -o v5/libworkrave_applet_la-WorkraveApplet.lo `test -f 'v5/WorkraveApplet.c' || echo '$(srcdir)/'`v5/WorkraveApplet.c v4/libworkrave_applet_la-WorkraveApplet.lo: v4/WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -MT v4/libworkrave_applet_la-WorkraveApplet.lo -MD -MP -MF v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo -c -o v4/libworkrave_applet_la-WorkraveApplet.lo `test -f 'v4/WorkraveApplet.c' || echo '$(srcdir)/'`v4/WorkraveApplet.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Tpo v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='v4/WorkraveApplet.c' object='v4/libworkrave_applet_la-WorkraveApplet.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) $(libworkrave_applet_la_CFLAGS) $(CFLAGS) -c -o v4/libworkrave_applet_la-WorkraveApplet.lo `test -f 'v4/WorkraveApplet.c' || echo '$(srcdir)/'`v4/WorkraveApplet.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs -rm -rf libgnome-panel/.libs libgnome-panel/_libs -rm -rf v4/.libs v4/_libs -rm -rf v5/.libs v5/_libs install-appletDATA: $(applet_DATA) @$(NORMAL_INSTALL) @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appletdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appletdir)" || 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)$(appletdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appletdir)" || exit $$?; \ done uninstall-appletDATA: @$(NORMAL_UNINSTALL) @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appletdir)'; $(am__uninstall_files_from_dir) install-xmluiDATA: $(xmlui_DATA) @$(NORMAL_INSTALL) @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(xmluidir)'"; \ $(MKDIR_P) "$(DESTDIR)$(xmluidir)" || 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)$(xmluidir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(xmluidir)" || exit $$?; \ done uninstall-xmluiDATA: @$(NORMAL_UNINSTALL) @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(xmluidir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(libapplet_libdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(xmluidir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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: -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) -rm -f libgnome-panel/$(DEPDIR)/$(am__dirstamp) -rm -f libgnome-panel/$(am__dirstamp) -rm -f v4/$(DEPDIR)/$(am__dirstamp) -rm -f v4/$(am__dirstamp) -rm -f v5/$(DEPDIR)/$(am__dirstamp) -rm -f v5/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-appletLTLIBRARIES clean-generic \ clean-libapplet_libLTLIBRARIES clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Plo -rm -f v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-appletDATA install-appletLTLIBRARIES \ install-libapplet_libLTLIBRARIES install-xmluiDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f libgnome-panel/$(DEPDIR)/libworkrave_applet_la-WorkraveModule.Plo -rm -f v4/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f v5/$(DEPDIR)/libworkrave_applet_la-WorkraveApplet.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-appletDATA uninstall-appletLTLIBRARIES \ uninstall-libapplet_libLTLIBRARIES uninstall-xmluiDATA .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-appletLTLIBRARIES \ clean-generic clean-libapplet_libLTLIBRARIES clean-libtool \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-appletDATA install-appletLTLIBRARIES 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-libapplet_libLTLIBRARIES install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip install-xmluiDATA installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-appletDATA \ uninstall-appletLTLIBRARIES uninstall-libapplet_libLTLIBRARIES \ uninstall-xmluiDATA .PRECIOUS: Makefile @HAVE_PANELAPPLET_TRUE@$(applet_in_files): $(applet_in_files).in Makefile @HAVE_PANELAPPLET_TRUE@ $(AM_V_GEN)sed \ @HAVE_PANELAPPLET_TRUE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @HAVE_PANELAPPLET_TRUE@ -e "s|\@IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \ @HAVE_PANELAPPLET_TRUE@ -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ @HAVE_PANELAPPLET_TRUE@ $< > $@ @HAVE_PANELAPPLET_TRUE@%.panel-applet: %.panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache # 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: workrave-1.10.50/frontend/applets/gnome3/src/org.workrave.WorkraveApplet.panel-applet.in.in0000644000175100001710000000040214221624107030575 0ustar00gdm00000000000000[Applet Factory] Id=WorkraveAppletFactory InProcess=@IN_PROCESS@ Location=@LOCATION@ _Name=Workrave Applet Factory _Description=Workrave Applet [WorkraveApplet] _Name=Workrave _Description=Workrave Applet Icon=workrave BonoboId=OAFIID:GNOME_WorkraveApplet; workrave-1.10.50/frontend/applets/gnome3/src/v5/0000755000000000000000000000000014221624441021314 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome3/src/v5/WorkraveApplet.c0000644000175100001710000003376714221624107023354 0ustar00gdm00000000000000// Copyright (C) 2002 - 2014 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "WorkraveApplet.h" #include "control.h" #include "MenuEnums.hh" #include "credits.h" #include "nls.h" #include #include #include #include struct _WorkraveAppletPrivate { GSimpleActionGroup *action_group; WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveApplet, workrave_applet, PANEL_TYPE_APPLET); static void workrave_applet_fill(WorkraveApplet *applet); static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); struct Menuitems { enum MenuCommand id; gboolean autostart; gboolean visible_when_not_running; char *action; char *state; char *dbuscmd; }; static struct Menuitems menu_data[] = {{MENU_COMMAND_OPEN, TRUE, TRUE, "open", NULL, "OpenMain"}, {MENU_COMMAND_PREFERENCES, FALSE, FALSE, "preferences", NULL, "Preferences"}, {MENU_COMMAND_EXERCISES, FALSE, FALSE, "exercises", NULL, "Exercises"}, {MENU_COMMAND_REST_BREAK, FALSE, FALSE, "restbreak", NULL, "RestBreak"}, {MENU_COMMAND_MODE_NORMAL, FALSE, FALSE, "mode", "normal", NULL}, {MENU_COMMAND_MODE_QUIET, FALSE, FALSE, "mode", "quiet", NULL}, {MENU_COMMAND_MODE_SUSPENDED, FALSE, FALSE, "mode", "suspended", NULL}, {MENU_COMMAND_NETWORK_CONNECT, FALSE, FALSE, "join", NULL, "NetworkConnect"}, {MENU_COMMAND_NETWORK_DISCONNECT, FALSE, FALSE, "disconnect", NULL, "NetworkDisconnect"}, {MENU_COMMAND_NETWORK_LOG, FALSE, FALSE, "showlog", NULL, "NetworkLog"}, {MENU_COMMAND_NETWORK_RECONNECT, FALSE, FALSE, "reconnect", NULL, "NetworkReconnect"}, {MENU_COMMAND_STATISTICS, FALSE, FALSE, "statistics", NULL, "Statistics"}, {MENU_COMMAND_ABOUT, FALSE, TRUE, "about", NULL, NULL}, {MENU_COMMAND_MODE_READING, FALSE, FALSE, "readingmode", NULL, "ReadingMode"}, {MENU_COMMAND_QUIT, FALSE, FALSE, "quit", NULL, "Quit"}}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_action(const char *action) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (g_strcmp0(menu_data[i].action, action) == 0) { return i; } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); applet->priv->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GAction *action = g_action_map_lookup_action(G_ACTION_MAP(applet->priv->action_group), menu_data[i].action); g_simple_action_set_enabled(G_SIMPLE_ACTION(action), menu_data[i].visible_when_not_running); } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; gboolean visible[sizeof(menu_data) / sizeof(struct Menuitems)]; for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { visible[i] = menu_data[i].visible_when_not_running; } while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GAction *action = g_action_map_lookup_action(G_ACTION_MAP(applet->priv->action_group), menu_data[index].action); if (flags & MENU_ITEM_FLAG_SUBMENU_END || flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { continue; } visible[index] = TRUE; if (g_action_get_state_type(G_ACTION(action)) != NULL) { if (menu_data[index].state == NULL) { g_simple_action_set_state(G_SIMPLE_ACTION(action), g_variant_new_boolean(flags & MENU_ITEM_FLAG_ACTIVE)); } else { if (flags & MENU_ITEM_FLAG_ACTIVE) { g_simple_action_set_state(G_SIMPLE_ACTION(action), g_variant_new_string(menu_data[index].state)); } } } } g_variant_iter_free(iter); for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GAction *action = g_action_map_lookup_action(G_ACTION_MAP(applet->priv->action_group), menu_data[i].action); g_simple_action_set_enabled(G_SIMPLE_ACTION(action), visible[i]); } } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_about(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_command(GSimpleAction *action, GVariant *parameter, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); int index = lookup_menu_index_by_action(g_action_get_name(G_ACTION(action))); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, NULL, menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } static void on_menu_mode(GSimpleAction *action, GVariant *parameter, gpointer user_data) { g_action_change_state(G_ACTION(action), parameter); } static void on_menu_toggle(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GVariant *state = g_action_get_state(G_ACTION(action)); gboolean new_state = !g_variant_get_boolean(state); g_action_change_state(G_ACTION(action), g_variant_new_boolean(new_state)); g_variant_unref(state); } static void on_menu_toggle_changed(GSimpleAction *action, GVariant *value, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); gboolean new_state = g_variant_get_boolean(value); int index = lookup_menu_index_by_action(g_action_get_name(G_ACTION(action))); if (index == -1) { return; } g_simple_action_set_state(action, value); GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, g_variant_new("(b)", new_state), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static void on_menu_mode_changed(GSimpleAction *action, GVariant *value, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); const gchar *mode = g_variant_get_string(value, 0); g_simple_action_set_state(action, value); GDBusProxy *proxy = workrave_timerbox_control_get_core_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "SetOperationMode", g_variant_new("(s)", mode), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static const GActionEntry menu_actions[] = { {"open", on_menu_command}, {"statistics", on_menu_command}, {"preferences", on_menu_command}, {"exercises", on_menu_command}, {"restbreak", on_menu_command}, {"mode", on_menu_mode, "s", "'normal'", on_menu_mode_changed}, {"join", on_menu_command}, {"disconnect", on_menu_command}, {"reconnect", on_menu_command}, {"showlog", on_menu_toggle, NULL, "false", on_menu_toggle_changed}, {"readingmode", on_menu_toggle, NULL, "false", on_menu_toggle_changed}, {"about", on_menu_about}, {"quit", on_menu_command}, }; static gboolean button_pressed(GtkWidget *widget, GdkEventButton *event, WorkraveApplet *applet) { gboolean ret = FALSE; if (event->button == 1) { GDBusProxy *proxy = workrave_timerbox_control_get_applet_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "ButtonClicked", g_variant_new("(u)", event->button), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); ret = TRUE; } } return ret; } static void workrave_applet_class_init(WorkraveAppletClass *class) { } static void workrave_applet_fill(WorkraveApplet *applet) { applet->priv->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->priv->image = workrave_timerbox_control_get_image(applet->priv->timerbox_control); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->priv->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->priv->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); applet->priv->action_group = g_simple_action_group_new(); g_action_map_add_action_entries(G_ACTION_MAP(applet->priv->action_group), menu_actions, G_N_ELEMENTS(menu_actions), applet); gchar *ui_path = g_build_filename(WORKRAVE_UIDATADIR, "workrave-gnome-applet-menu.xml", NULL); panel_applet_setup_menu_from_file(PANEL_APPLET(applet), ui_path, applet->priv->action_group, GETTEXT_PACKAGE); g_free(ui_path); gtk_widget_insert_action_group(GTK_WIDGET(applet), "workrave", G_ACTION_GROUP(applet->priv->action_group)); panel_applet_set_flags(PANEL_APPLET(applet), PANEL_APPLET_EXPAND_MINOR); gtk_container_set_border_width(GTK_CONTAINER(applet), 0); gtk_widget_set_events(GTK_WIDGET(applet), gtk_widget_get_events(GTK_WIDGET(applet)) | GDK_BUTTON_PRESS_MASK); g_signal_connect(G_OBJECT(applet), "button_press_event", G_CALLBACK(button_pressed), applet); gtk_container_add(GTK_CONTAINER(applet), GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet)); on_alive_changed(NULL, FALSE, applet); } static void workrave_applet_init(WorkraveApplet *applet) { applet->priv = workrave_applet_get_instance_private(applet); applet->priv->action_group = NULL; applet->priv->image = NULL; applet->priv->timerbox_control = NULL; applet->priv->alive = FALSE; workrave_applet_fill(applet); } static gboolean applet_factory(PanelApplet *applet, const gchar *iid, gpointer user_data) { if (g_strcmp0(iid, "WorkraveApplet") == 0) { gtk_widget_show_all(GTK_WIDGET(applet)); return TRUE; } return FALSE; } PANEL_APPLET_IN_PROCESS_FACTORY("WorkraveAppletFactory", WORKRAVE_TYPE_APPLET, applet_factory, NULL) workrave-1.10.50/frontend/applets/gnome3/src/v5/workrave-gnome-applet-menu.xml0000644000175100001710000000520514221624107026136 0ustar00gdm00000000000000
    _Open workrave.open
    _Restbreak workrave.restbreak _Exercises workrave.exercises _Statistics workrave.statistics
    _Mode
    Normal workrave.mode normal Suspended workrave.mode suspended Quiet workrave.mode quiet
    _Network
    _Join workrave.join _Disconnect workrave.disconnect _Reconnect workrave.reconnect Show log workrave.showlog
    Reading mode workrave.readingmode
    _Preferences workrave.preferences _About workrave.about _Quit workrave.quit
    workrave-1.10.50/frontend/applets/gnome3/src/Makefile.am0000644000175100001710000000656014221624107021733 0ustar00gdm00000000000000EXTRA_DIST = org.workrave.WorkraveApplet.panel-applet.in.in \ libgnome-panel/WorkraveApplet.c \ libgnome-panel/WorkraveApplet.h \ libgnome-panel/WorkraveModule.c \ libgnome-panel/workrave-gnome-applet-menu.xml \ v4/WorkraveApplet.c \ v5/WorkraveApplet.c \ WorkraveApplet.h \ v4/workrave-gnome-applet-menu.xml \ v5/workrave-gnome-applet-menu.xml BUILT_SOURCES = CLEANFILES = $(applet_DATA) $(applet_DATA).in $(schemas_DATA) MAINTAINERCLEANFILES = Makefile.in DBusGnomeApplet.xml DBusGUI.xml SUBDIRS = if HAVE_LIBGNOME_PANEL appletdir = $(LIBGNOME_PANEL_MODULES_DIR) applet_LTLIBRARIES = libworkrave-applet.la xmluidir = $(pkgdatadir)/ui xmlui_DATA = libgnome-panel/workrave-gnome-applet-menu.xml applet_source = \ libgnome-panel/WorkraveApplet.c \ libgnome-panel/WorkraveApplet.h \ libgnome-panel/WorkraveModule.c AM_CPPFLAGS = -I$(srcdir) FLAGS = \ @GNOME3_CFLAGS@ \ @WR_FRONTEND_COMMON_INCLUDES@ \ @WR_COMMON_INCLUDES@ \ @WR_BACKEND_INCLUDES@ \ -std=c99 \ -I$(srcdir)/../include \ -I$(srcdir)/../../common/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -DWORKRAVE_UIDATADIR="\"${xmluidir}\"" \ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" libworkrave_applet_la_SOURCES = ${applet_source} libworkrave_applet_la_LIBADD = @GNOME3_LIBS@ -L$(builddir)/../../common/src -lworkrave-private-1.0 libworkrave_applet_la_CXXFLAGS = ${FLAGS} libworkrave_applet_la_CFLAGS = ${FLAGS} libworkrave_applet_la_LDFLAGS = -module -avoid-version endif # HAVE_LIBGNOME_PANEL if HAVE_PANELAPPLET # Common xmluidir = $(datadir)/gnome-panel/ui applet_in_files = org.workrave.WorkraveApplet.panel-applet.in applet_DATA = $(applet_in_files:.panel-applet.in=.panel-applet) if HAVE_PANELAPPLET4 # V4 appletdir = $(datadir)/gnome-panel/4.0/applets xmlui_DATA = v4/workrave-gnome-applet-menu.xml applet_source = v4/WorkraveApplet.c else # V5 if LOCALINSTALL appletdir = $(datadir)/gnome-panel/applets else appletdir = `$(PKG_CONFIG) --variable=libpanel_applet_dir libpanel-applet` endif xmlui_DATA = v5/workrave-gnome-applet-menu.xml applet_source = v5/WorkraveApplet.c endif # Comnmon APPLET_IN_PROCESS = true APPLET_LOCATION = ${pkglibdir}/libworkrave-applet.so $(applet_in_files): $(applet_in_files).in Makefile $(AM_V_GEN)sed \ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ -e "s|\@IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \ -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ $< > $@ %.panel-applet: %.panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache AM_CPPFLAGS = -I$(srcdir) FLAGS = @GNOME3_CFLAGS@ @WR_FRONTEND_COMMON_INCLUDES@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ \ -std=c99 -I$(srcdir)/../include -I$(srcdir)/../../common/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -DWORKRAVE_UIDATADIR="\"${xmluidir}\"" \ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" libapplet_libdir = ${pkglibdir} libapplet_lib_LTLIBRARIES = libworkrave-applet.la libworkrave_applet_la_SOURCES = ${applet_source} libworkrave_applet_la_LIBADD = @GNOME3_LIBS@ -L$(builddir)/../../common/src -lworkrave-private-1.0 libworkrave_applet_la_CXXFLAGS = ${FLAGS} libworkrave_applet_la_CFLAGS = ${FLAGS} libworkrave_applet_la_LDFLAGS = -module -avoid-version endif workrave-1.10.50/frontend/applets/gnome3/src/v4/0000755000000000000000000000000014221624441021313 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome3/src/v4/WorkraveApplet.c0000644000175100001710000003477614221624107023354 0ustar00gdm00000000000000// Copyright (C) 2002 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "WorkraveApplet.h" #include "control.h" #include "MenuEnums.hh" #include "credits.h" #include "nls.h" #include #include #include #include struct _WorkraveAppletPrivate { GtkActionGroup *action_group; WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveApplet, workrave_applet, PANEL_TYPE_APPLET); static void workrave_applet_fill(WorkraveApplet *applet); static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); struct Menuitems { enum MenuCommand id; gboolean autostart; gboolean visible_when_not_running; char *action; char *dbuscmd; }; static struct Menuitems menu_data[] = {{MENU_COMMAND_OPEN, TRUE, TRUE, "Open", "OpenMain"}, {MENU_COMMAND_PREFERENCES, FALSE, FALSE, "Preferences", "Preferences"}, {MENU_COMMAND_EXERCISES, FALSE, FALSE, "Exercises", "Exercises"}, {MENU_COMMAND_REST_BREAK, FALSE, FALSE, "Restbreak", "RestBreak"}, {MENU_COMMAND_MODE_NORMAL, FALSE, FALSE, "Normal", NULL}, {MENU_COMMAND_MODE_QUIET, FALSE, FALSE, "Quiet", NULL}, {MENU_COMMAND_MODE_SUSPENDED, FALSE, FALSE, "Suspended", NULL}, {MENU_COMMAND_NETWORK_CONNECT, FALSE, FALSE, "Join", "NetworkConnect"}, {MENU_COMMAND_NETWORK_DISCONNECT, FALSE, FALSE, "Disconnect", "NetworkDisconnect"}, {MENU_COMMAND_NETWORK_LOG, FALSE, FALSE, "ShowLog", "NetworkLog"}, {MENU_COMMAND_NETWORK_RECONNECT, FALSE, FALSE, "Reconnect", "NetworkReconnect"}, {MENU_COMMAND_STATISTICS, FALSE, FALSE, "Statistics", "Statistics"}, {MENU_COMMAND_ABOUT, FALSE, TRUE, "About", NULL}, {MENU_COMMAND_MODE_READING, FALSE, FALSE, "ReadingMode", "ReadingMode"}, {MENU_COMMAND_QUIT, FALSE, FALSE, "Quit", "Quit"}}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_action(const char *action) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (g_strcmp0(menu_data[i].action, action) == 0) { return i; } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); applet->priv->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->priv->action_group, menu_data[i].action); gtk_action_set_visible(action, menu_data[i].visible_when_not_running); } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; gboolean visible[sizeof(menu_data) / sizeof(struct Menuitems)]; for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { visible[i] = menu_data[i].visible_when_not_running; } while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GtkAction *action = gtk_action_group_get_action(applet->priv->action_group, menu_data[index].action); if (flags & MENU_ITEM_FLAG_SUBMENU_END || flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { continue; } visible[index] = TRUE; if (GTK_IS_TOGGLE_ACTION(action)) { GtkToggleAction *toggle = GTK_TOGGLE_ACTION(action); gtk_toggle_action_set_active(toggle, flags & MENU_ITEM_FLAG_ACTIVE); } } g_variant_iter_free(iter); for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->priv->action_group, menu_data[i].action); gtk_action_set_visible(action, visible[i]); } } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_about(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_command(GtkAction *action, WorkraveApplet *applet) { int index = lookup_menu_index_by_action(gtk_action_get_name(action)); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, NULL, menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } static void on_menu_toggle(GtkAction *action, WorkraveApplet *applet) { gboolean new_state = FALSE; if (GTK_IS_TOGGLE_ACTION(action)) { GtkToggleAction *toggle = GTK_TOGGLE_ACTION(action); new_state = gtk_toggle_action_get_active(toggle); } int index = lookup_menu_index_by_action(gtk_action_get_name(action)); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, g_variant_new("(b)", new_state), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static void on_menu_mode_changed(GtkRadioAction *action, GtkRadioAction *current, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); const char *modes[] = {"normal", "suspended", "quiet"}; int mode = 0; if (GTK_IS_RADIO_ACTION(action)) { GtkRadioAction *toggle = GTK_RADIO_ACTION(action); mode = gtk_radio_action_get_current_value(toggle); } if (mode >= 0 && mode < G_N_ELEMENTS(modes)) { GDBusProxy *proxy = workrave_timerbox_control_get_core_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "SetOperationMode", g_variant_new("(s)", modes[mode]), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } } static const GtkActionEntry menu_actions[] = { {"Open", GTK_STOCK_OPEN, N_("_Open"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Statistics", NULL, N_("_Statistics"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Preferences", GTK_STOCK_PREFERENCES, N_("_Preferences"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Exercises", NULL, N_("_Exercises"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Restbreak", NULL, N_("_Restbreak"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Mode", NULL, N_("_Mode"), NULL, NULL, NULL}, {"Network", NULL, N_("_Network"), NULL, NULL, NULL}, {"Join", NULL, N_("_Join"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Disconnect", NULL, N_("_Disconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Reconnect", NULL, N_("_Reconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK(on_menu_about)}, {"Quit", GTK_STOCK_QUIT, N_("_Quit"), NULL, NULL, G_CALLBACK(on_menu_command)}, }; static const GtkToggleActionEntry toggle_actions[] = { {"ShowLog", NULL, N_("Show log"), NULL, NULL, G_CALLBACK(on_menu_toggle), FALSE}, {"ReadingMode", NULL, N_("Reading mode"), NULL, NULL, G_CALLBACK(on_menu_toggle), FALSE}, }; static const GtkRadioActionEntry mode_actions[] = { {"Normal", NULL, N_("Normal"), NULL, NULL, 0}, {"Suspended", NULL, N_("Suspended"), NULL, NULL, 1}, {"Quiet", NULL, N_("Quiet"), NULL, NULL, 2}, }; static gboolean button_pressed(GtkWidget *widget, GdkEventButton *event, WorkraveApplet *applet) { gboolean ret = FALSE; if (event->button == 1) { GDBusProxy *proxy = workrave_timerbox_control_get_applet_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "ButtonClicked", g_variant_new("(u)", event->button), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); ret = TRUE; } } return ret; } static void workrave_applet_class_init(WorkraveAppletClass *class) { g_type_class_add_private(class, sizeof(WorkraveAppletPrivate)); } static void workrave_applet_fill(WorkraveApplet *applet) { applet->priv->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->priv->image = workrave_timerbox_control_get_image(applet->priv->timerbox_control); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->priv->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->priv->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); applet->priv->action_group = gtk_action_group_new("WorkraveAppletActions"); gtk_action_group_set_translation_domain(applet->priv->action_group, GETTEXT_PACKAGE); gtk_action_group_add_actions(applet->priv->action_group, menu_actions, G_N_ELEMENTS(menu_actions), applet); gtk_action_group_add_toggle_actions(applet->priv->action_group, toggle_actions, G_N_ELEMENTS(toggle_actions), applet); gtk_action_group_add_radio_actions( applet->priv->action_group, mode_actions, G_N_ELEMENTS(mode_actions), 0, G_CALLBACK(on_menu_mode_changed), applet); gchar *ui_path = g_build_filename(WORKRAVE_UIDATADIR, "workrave-gnome-applet-menu.xml", NULL); panel_applet_setup_menu_from_file(PANEL_APPLET(applet), ui_path, applet->priv->action_group); g_free(ui_path); panel_applet_set_flags(PANEL_APPLET(applet), PANEL_APPLET_EXPAND_MINOR); gtk_container_set_border_width(GTK_CONTAINER(applet), 0); panel_applet_set_background_widget(PANEL_APPLET(applet), GTK_WIDGET(applet)); gtk_widget_set_events(GTK_WIDGET(applet), gtk_widget_get_events(GTK_WIDGET(applet)) | GDK_BUTTON_PRESS_MASK); g_signal_connect(G_OBJECT(applet), "button_press_event", G_CALLBACK(button_pressed), applet); gtk_container_add(GTK_CONTAINER(applet), GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet)); on_alive_changed(NULL, FALSE, applet); } static void workrave_applet_init(WorkraveApplet *applet) { applet->priv = G_TYPE_INSTANCE_GET_PRIVATE(applet, WORKRAVE_TYPE_APPLET, WorkraveAppletPrivate); WorkraveAppletPrivate *priv = applet->priv; priv->action_group = NULL; priv->image = NULL; priv->timerbox_control = NULL; priv->alive = FALSE; workrave_applet_fill(applet); } static gboolean applet_factory(PanelApplet *applet, const gchar *iid, gpointer user_data) { if (g_strcmp0(iid, "WorkraveApplet") == 0) { gtk_widget_show_all(GTK_WIDGET(applet)); return TRUE; } return FALSE; } PANEL_APPLET_OUT_PROCESS_FACTORY("WorkraveAppletFactory", WORKRAVE_TYPE_APPLET, applet_factory, NULL) workrave-1.10.50/frontend/applets/gnome3/src/v4/workrave-gnome-applet-menu.xml0000644000175100001710000000145314221624107026136 0ustar00gdm00000000000000 workrave-1.10.50/frontend/applets/gnome3/src/libgnome-panel/0000755000000000000000000000000014221624441023653 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome3/src/libgnome-panel/WorkraveApplet.c0000644000175100001710000003375214221624107025705 0ustar00gdm00000000000000// Copyright (C) 2002 - 2014 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "WorkraveApplet.h" #include "control.h" #include "MenuEnums.hh" #include "credits.h" #include "nls.h" #include #include #include struct _WorkraveAppletPrivate { WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveApplet, workrave_applet, GP_TYPE_APPLET) static void workrave_applet_fill(WorkraveApplet *applet); static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); struct Menuitems { enum MenuCommand id; gboolean autostart; gboolean visible_when_not_running; char *action; char *state; char *dbuscmd; }; static struct Menuitems menu_data[] = {{MENU_COMMAND_OPEN, TRUE, TRUE, "open", NULL, "OpenMain"}, {MENU_COMMAND_PREFERENCES, FALSE, FALSE, "preferences", NULL, "Preferences"}, {MENU_COMMAND_EXERCISES, FALSE, FALSE, "exercises", NULL, "Exercises"}, {MENU_COMMAND_REST_BREAK, FALSE, FALSE, "restbreak", NULL, "RestBreak"}, {MENU_COMMAND_MODE_NORMAL, FALSE, FALSE, "mode", "normal", NULL}, {MENU_COMMAND_MODE_QUIET, FALSE, FALSE, "mode", "quiet", NULL}, {MENU_COMMAND_MODE_SUSPENDED, FALSE, FALSE, "mode", "suspended", NULL}, {MENU_COMMAND_NETWORK_CONNECT, FALSE, FALSE, "join", NULL, "NetworkConnect"}, {MENU_COMMAND_NETWORK_DISCONNECT, FALSE, FALSE, "disconnect", NULL, "NetworkDisconnect"}, {MENU_COMMAND_NETWORK_LOG, FALSE, FALSE, "showlog", NULL, "NetworkLog"}, {MENU_COMMAND_NETWORK_RECONNECT, FALSE, FALSE, "reconnect", NULL, "NetworkReconnect"}, {MENU_COMMAND_STATISTICS, FALSE, FALSE, "statistics", NULL, "Statistics"}, {MENU_COMMAND_ABOUT, FALSE, TRUE, "about", NULL, NULL}, {MENU_COMMAND_MODE_READING, FALSE, FALSE, "readingmode", NULL, "ReadingMode"}, {MENU_COMMAND_QUIT, FALSE, FALSE, "quit", NULL, "Quit"}}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_action(const char *action) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (g_strcmp0(menu_data[i].action, action) == 0) { return i; } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); applet->priv->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GAction *action = gp_applet_menu_lookup_action(GP_APPLET(applet), menu_data[i].action); g_simple_action_set_enabled(G_SIMPLE_ACTION(action), menu_data[i].visible_when_not_running); } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; gboolean visible[sizeof(menu_data) / sizeof(struct Menuitems)]; for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { visible[i] = menu_data[i].visible_when_not_running; } while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GAction *action = gp_applet_menu_lookup_action(GP_APPLET(applet), menu_data[index].action); if (flags & MENU_ITEM_FLAG_SUBMENU_END || flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { continue; } visible[index] = TRUE; if (g_action_get_state_type(G_ACTION(action)) != NULL) { if (menu_data[index].state == NULL) { g_simple_action_set_state(G_SIMPLE_ACTION(action), g_variant_new_boolean(flags & MENU_ITEM_FLAG_ACTIVE)); } else { if (flags & MENU_ITEM_FLAG_ACTIVE) { g_simple_action_set_state(G_SIMPLE_ACTION(action), g_variant_new_string(menu_data[index].state)); } } } } g_variant_iter_free(iter); for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GAction *action = gp_applet_menu_lookup_action(GP_APPLET(applet), menu_data[i].action); g_simple_action_set_enabled(G_SIMPLE_ACTION(action), visible[i]); } } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_about(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_command(GSimpleAction *action, GVariant *parameter, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); int index = lookup_menu_index_by_action(g_action_get_name(G_ACTION(action))); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, NULL, menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } static void on_menu_mode(GSimpleAction *action, GVariant *parameter, gpointer user_data) { g_action_change_state(G_ACTION(action), parameter); } static void on_menu_toggle(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GVariant *state = g_action_get_state(G_ACTION(action)); gboolean new_state = !g_variant_get_boolean(state); g_action_change_state(G_ACTION(action), g_variant_new_boolean(new_state)); g_variant_unref(state); } static void on_menu_toggle_changed(GSimpleAction *action, GVariant *value, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); gboolean new_state = g_variant_get_boolean(value); int index = lookup_menu_index_by_action(g_action_get_name(G_ACTION(action))); if (index == -1) { return; } g_simple_action_set_state(action, value); GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, g_variant_new("(b)", new_state), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static void on_menu_mode_changed(GSimpleAction *action, GVariant *value, gpointer user_data) { WorkraveApplet *applet = WORKRAVE_APPLET(user_data); const gchar *mode = g_variant_get_string(value, 0); g_simple_action_set_state(action, value); GDBusProxy *proxy = workrave_timerbox_control_get_core_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "SetOperationMode", g_variant_new("(s)", mode), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static const GActionEntry menu_actions[] = {{"open", on_menu_command}, {"statistics", on_menu_command}, {"preferences", on_menu_command}, {"exercises", on_menu_command}, {"restbreak", on_menu_command}, {"mode", on_menu_mode, "s", "'normal'", on_menu_mode_changed}, {"join", on_menu_command}, {"disconnect", on_menu_command}, {"reconnect", on_menu_command}, {"showlog", on_menu_toggle, NULL, "false", on_menu_toggle_changed}, {"readingmode", on_menu_toggle, NULL, "false", on_menu_toggle_changed}, {"about", on_menu_about}, {"quit", on_menu_command}, {NULL}}; static gboolean button_pressed(GtkWidget *widget, GdkEventButton *event, WorkraveApplet *applet) { gboolean ret = FALSE; if (event->button == 1) { GDBusProxy *proxy = workrave_timerbox_control_get_applet_proxy(applet->priv->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "ButtonClicked", g_variant_new("(u)", event->button), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); ret = TRUE; } } return ret; } static void workrave_applet_fill(WorkraveApplet *applet) { applet->priv->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->priv->image = workrave_timerbox_control_get_image(applet->priv->timerbox_control); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->priv->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->priv->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->priv->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); gchar *ui_path = g_build_filename(WORKRAVE_UIDATADIR, "workrave-gnome-applet-menu.xml", NULL); gp_applet_setup_menu_from_file(GP_APPLET(applet), ui_path, menu_actions); g_free(ui_path); gp_applet_set_flags(GP_APPLET(applet), GP_APPLET_FLAGS_EXPAND_MINOR); gtk_container_set_border_width(GTK_CONTAINER(applet), 0); gtk_widget_set_events(GTK_WIDGET(applet), gtk_widget_get_events(GTK_WIDGET(applet)) | GDK_BUTTON_PRESS_MASK); g_signal_connect(G_OBJECT(applet), "button_press_event", G_CALLBACK(button_pressed), applet); gtk_container_add(GTK_CONTAINER(applet), GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet->priv->image)); gtk_widget_show(GTK_WIDGET(applet)); on_alive_changed(NULL, FALSE, applet); } static void workrave_applet_constructed(GObject *object) { G_OBJECT_CLASS(workrave_applet_parent_class)->constructed(object); workrave_applet_fill(WORKRAVE_APPLET(object)); } static void workrave_applet_class_init(WorkraveAppletClass *class) { GObjectClass *object_class; object_class = G_OBJECT_CLASS(class); object_class->constructed = workrave_applet_constructed; } static void workrave_applet_init(WorkraveApplet *applet) { applet->priv = workrave_applet_get_instance_private(applet); applet->priv->image = NULL; applet->priv->timerbox_control = NULL; applet->priv->alive = FALSE; } workrave-1.10.50/frontend/applets/gnome3/src/libgnome-panel/WorkraveModule.c0000644000175100001710000000331614221624107025676 0ustar00gdm00000000000000// Copyright (C) 2003 - 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "config.h" #include "WorkraveApplet.h" #include #include static GpAppletInfo * get_applet_info(const gchar *id) { return gp_applet_info_new(workrave_applet_get_type, _("Workrave"), _("Workrave Applet"), "workrave"); } static const gchar * get_applet_id_from_iid(const gchar *iid) { if (g_strcmp0(iid, "WorkraveAppletFactory::WorkraveApplet") == 0) return "workrave"; return NULL; } void gp_module_load(GpModule *module) { bindtextdomain(GETTEXT_PACKAGE, GNOMELOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); gp_module_set_gettext_domain(module, GETTEXT_PACKAGE); gp_module_set_abi_version(module, GP_MODULE_ABI_VERSION); gp_module_set_id(module, "org.workrave.workrave-applet"); gp_module_set_version(module, PACKAGE_VERSION); gp_module_set_applet_ids(module, "workrave", NULL); gp_module_set_get_applet_info(module, get_applet_info); gp_module_set_compatibility(module, get_applet_id_from_iid); } workrave-1.10.50/frontend/applets/gnome3/src/libgnome-panel/workrave-gnome-applet-menu.xml0000644000175100001710000000601014221624107030470 0ustar00gdm00000000000000
    _Open workrave.open
    _Restbreak workrave.restbreak _Exercises workrave.exercises _Statistics workrave.statistics
    _Mode
    Normal workrave.mode normal Suspended workrave.mode suspended Quiet workrave.mode quiet
    _Network
    _Join workrave.join _Disconnect workrave.disconnect _Reconnect workrave.reconnect Show log workrave.showlog
    Reading mode workrave.readingmode
    _Preferences workrave.preferences _About workrave.about _Quit workrave.quit
    workrave-1.10.50/frontend/applets/gnome3/src/libgnome-panel/WorkraveApplet.h0000644000175100001710000000353514221624107025706 0ustar00gdm00000000000000// WorkraveApplet.h // // Copyright (C) 2003 - 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef __WORKRAVEAPPLET_H__ #define __WORKRAVEAPPLET_H__ #include G_BEGIN_DECLS #define WORKRAVE_TYPE_APPLET (workrave_applet_get_type()) #define WORKRAVE_APPLET(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WORKRAVE_TYPE_APPLET, WorkraveApplet)) #define WORKRAVE_APPLET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WORKRAVE_TYPE_APPLET, WorkraveAppletClass)) #define WORKRAVE_IS_APPLET(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WORKRAVE_TYPE_APPLET)) #define WORKRAVE_IS_APPLET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WORKRAVE_TYPE_APPLET)) #define WORKRAVE_APPLET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WORKRAVE_TYPE_APPLET, WorkraveAppletClass)) typedef struct _WorkraveApplet WorkraveApplet; typedef struct _WorkraveAppletClass WorkraveAppletClass; typedef struct _WorkraveAppletPrivate WorkraveAppletPrivate; struct _WorkraveApplet { GpApplet parent_object; /*< private >*/ WorkraveAppletPrivate *priv; }; struct _WorkraveAppletClass { GpAppletClass parent_class; }; GType workrave_applet_get_type(void) G_GNUC_CONST; G_END_DECLS #endif /*__WORKRAVEAPPLET_H__*/ workrave-1.10.50/frontend/applets/gnome3/src/WorkraveApplet.h0000644000175100001710000000352714221624107023016 0ustar00gdm00000000000000// WorkraveApplet.h // // Copyright (C) 2003 - 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef __WORKRAVEAPPLET_H__ #define __WORKRAVEAPPLET_H__ #include G_BEGIN_DECLS #define WORKRAVE_TYPE_APPLET (workrave_applet_get_type()) #define WORKRAVE_APPLET(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WORKRAVE_TYPE_APPLET, WorkraveApplet)) #define WORKRAVE_APPLET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WORKRAVE_TYPE_APPLET, WorkraveAppletClass)) #define WORKRAVE_IS_APPLET(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WORKRAVE_TYPE_APPLET)) #define WORKRAVE_IS_APPLET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WORKRAVE_TYPE_APPLET)) #define WORKRAVE_APPLET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WORKRAVE_TYPE_APPLET, WorkraveAppletClass)) typedef struct _WorkraveApplet WorkraveApplet; typedef struct _WorkraveAppletClass WorkraveAppletClass; typedef struct _WorkraveAppletPrivate WorkraveAppletPrivate; struct _WorkraveApplet { PanelApplet parent_object; /*< private >*/ WorkraveAppletPrivate *priv; }; struct _WorkraveAppletClass { PanelAppletClass parent_class; }; GType workrave_applet_get_type(void) G_GNUC_CONST; G_END_DECLS #endif /*__WORKRAVEAPPLET_H__*/ workrave-1.10.50/frontend/applets/gnome3/Makefile.in0000644000000000000000000005526614221624201022250 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/gnome3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/gnome3/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/gnome3/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/gnome3/Makefile.am0000644000175100001710000000027214221624107021136 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/applets/common/0000755000000000000000000000000014221624440020272 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/common/include/0000755000000000000000000000000014221624440021715 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/common/include/Makefile.in0000644000000000000000000004075714221624201023772 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/common/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/common/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/common/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/common/include/timerbox.h0000644000175100001710000000530414221624107022630 0ustar00gdm00000000000000/* * workrave-timerbox.h * * Copyright (C) 2011, 2013 Rob Caelers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef __WORKRAVE_TIMERBOX_H__ #define __WORKRAVE_TIMERBOX_H__ #include #include #include #include "timebar.h" #define WORKRAVE_TYPE_TIMERBOX (workrave_timerbox_get_type()) #define WORKRAVE_TIMERBOX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WORKRAVE_TYPE_TIMERBOX, WorkraveTimerbox)) #define WORKRAVE_IS_TIMERBOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WORKRAVE_TYPE_TIMERBOX)) #define WORKRAVE_TIMERBOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WORKRAVE_TYPE_TIMERBOX, WorkraveTimerboxClass)) #define WORKRAVE_IS_TIMERBOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WORKRAVE_TYPE_TIMERBOX)) #define WORKRAVE_TIMERBOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WORKRAVE_TYPE_TIMERBOX, WorkraveTimerboxClass)) typedef struct _WorkraveTimerbox WorkraveTimerbox; typedef struct _WorkraveTimerboxClass WorkraveTimerboxClass; typedef struct _WorkraveTimerboxPrivate WorkraveTimerboxPrivate; struct _WorkraveTimerbox { GObject parent_instance; }; struct _WorkraveTimerboxClass { GObjectClass parent_class; }; GType workrave_timerbox_get_type(void); typedef enum WorkraveBreakId { BREAK_ID_NONE = -1, BREAK_ID_MICRO_BREAK = 0, BREAK_ID_REST_BREAK, BREAK_ID_DAILY_LIMIT, BREAK_ID_SIZEOF } WorkraveBreakId; /* * Method definitions. */ void workrave_timerbox_update(WorkraveTimerbox *self, GtkImage *image); void workrave_timerbox_draw(WorkraveTimerbox *self, cairo_t *cr); void workrave_timerbox_set_slot(WorkraveTimerbox *self, int slot, WorkraveBreakId brk); void workrave_timerbox_set_enabled(WorkraveTimerbox *self, gboolean enabled); void workrave_timerbox_set_force_icon(WorkraveTimerbox *self, gboolean force); void workrave_timerbox_set_operation_mode(WorkraveTimerbox *self, gchar *mode); int workrave_timerbox_get_width(WorkraveTimerbox *self); int workrave_timerbox_get_height(WorkraveTimerbox *self); WorkraveTimebar *workrave_timerbox_get_time_bar(WorkraveTimerbox *self, WorkraveBreakId timer); #endif /* __WORKRAVE_TIMERBOX_H__ */ workrave-1.10.50/frontend/applets/common/include/timebar.h0000644000175100001710000000512214221624107022420 0ustar00gdm00000000000000/* * workrave-timebar.h * * Copyright (C) 2011 Rob Caelers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef __WORKRAVE_TIMEBAR_H__ #define __WORKRAVE_TIMEBAR_H__ #include #include #define WORKRAVE_TYPE_TIMEBAR (workrave_timebar_get_type()) #define WORKRAVE_TIMEBAR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WORKRAVE_TYPE_TIMEBAR, WorkraveTimebar)) #define WORKRAVE_IS_TIMEBAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WORKRAVE_TYPE_TIMEBAR)) #define WORKRAVE_TIMEBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WORKRAVE_TYPE_TIMEBAR, WorkraveTimebarClass)) #define WORKRAVE_IS_TIMEBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WORKRAVE_TYPE_TIMEBAR)) #define WORKRAVE_TIMEBAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WORKRAVE_TYPE_TIMEBAR, WorkraveTimebarClass)) typedef struct _WorkraveTimebar WorkraveTimebar; typedef struct _WorkraveTimebarClass WorkraveTimebarClass; typedef struct _WorkraveTimebarPrivate WorkraveTimebarPrivate; typedef enum WorkraveColorId { COLOR_ID_ACTIVE = 0, COLOR_ID_INACTIVE, COLOR_ID_OVERDUE, COLOR_ID_1_ACTIVE_DURING_BREAK, COLOR_ID_2_ACTIVE_DURING_BREAK, COLOR_ID_INACTIVE_OVER_ACTIVE, COLOR_ID_INACTIVE_OVER_OVERDUE, COLOR_ID_BG, COLOR_ID_SIZEOF } WorkraveColorId; struct _WorkraveTimebar { GObject parent_instance; }; struct _WorkraveTimebarClass { GObjectClass parent_class; }; GType workrave_timebar_get_type(void); /* * Method definitions. */ void workrave_timebar_do_action(WorkraveTimebar *self, int param); void workrave_timebar_draw(WorkraveTimebar *self, cairo_t *cr); void workrave_timebar_set_progress(WorkraveTimebar *self, int value, int max_value, WorkraveColorId color); void workrave_timebar_set_secondary_progress(WorkraveTimebar *self, int value, int max_value, WorkraveColorId color); void workrave_timebar_set_text(WorkraveTimebar *self, const gchar *text); void workrave_timebar_get_dimensions(WorkraveTimebar *self, int *width, int *height); #endif /* __WORKRAVE_TIMEBAR_H__ */ workrave-1.10.50/frontend/applets/common/include/control.h0000644000175100001710000000556414221624107022467 0ustar00gdm00000000000000/* * Copyright (C) 2014 Rob Caelers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef __WORKRAVE_TIMERBOX_CONTROL_H__ #define __WORKRAVE_TIMERBOX_CONTROL_H__ #include #include "timerbox.h" #define WORKRAVE_TIMERBOX_CONTROL_TYPE (workrave_timerbox_control_get_type()) #define WORKRAVE_TIMERBOX_CONTROL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WORKRAVE_TIMERBOX_CONTROL_TYPE, WorkraveTimerboxControl)) #define WORKRAVE_IS_TIMERBOX_CONTROL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WORKRAVE_TIMERBOX_CONTROL_TYPE)) #define WORKRAVE_TIMERBOX_CONTROL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass), WORKRAVE_TIMERBOX_CONTROL_TYPE, WorkraveTimerboxControlClass)) #define WORKRAVE_IS_TIMERBOX_CONTROL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WORKRAVE_TIMERBOX_CONTROL_TYPE)) #define WORKRAVE_TIMERBOX_CONTROL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS((obj), WORKRAVE_TIMERBOX_CONTROL_TYPE, WorkraveTimerboxControlClass)) typedef struct _WorkraveTimerboxControl WorkraveTimerboxControl; typedef struct _WorkraveTimerboxControlClass WorkraveTimerboxControlClass; typedef struct _WorkraveTimerboxControlPrivate WorkraveTimerboxControlPrivate; struct _WorkraveTimerboxControl { GObject parent_instance; }; struct _WorkraveTimerboxControlClass { GObjectClass parent_class; }; GType workrave_timerbox_control_get_type(void); enum WorkraveTimerboxControlTrayIconMode { WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_ALWAYS, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_NEVER, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW, }; /* * Method definitions. */ GtkImage *workrave_timerbox_control_get_image(WorkraveTimerboxControl *self); WorkraveTimerbox *workrave_timerbox_control_get_timerbox(WorkraveTimerboxControl *self); GDBusProxy *workrave_timerbox_control_get_applet_proxy(WorkraveTimerboxControl *self); GDBusProxy *workrave_timerbox_control_get_core_proxy(WorkraveTimerboxControl *self); GDBusProxy *workrave_timerbox_control_get_control_proxy(WorkraveTimerboxControl *self); void workrave_timerbox_control_set_tray_icon_mode(WorkraveTimerboxControl *self, enum WorkraveTimerboxControlTrayIconMode mode); void workrave_timerbox_control_set_tray_icon_visible_when_not_running(WorkraveTimerboxControl *self, gboolean show); #endif /* __WORKRAVE_TIMERBOX_CONTROL_H__ */ workrave-1.10.50/frontend/applets/common/include/Makefile.am0000644000175100001710000000033414221624107022660 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/frontend/applets/common/src/0000755000000000000000000000000014221624440021061 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/common/src/compat.c0000644000175100001710000001106614221624107021423 0ustar00gdm00000000000000#include "compat.h" /* Copy functions from GTK 3.0 to be used if GTK 2.x is used */ static cairo_format_t gdk_cairo_format_for_content(cairo_content_t content) { switch (content) { case CAIRO_CONTENT_COLOR: return CAIRO_FORMAT_RGB24; case CAIRO_CONTENT_ALPHA: return CAIRO_FORMAT_A8; case CAIRO_CONTENT_COLOR_ALPHA: default: return CAIRO_FORMAT_ARGB32; } } static cairo_surface_t * gdk_cairo_surface_coerce_to_image(cairo_surface_t *surface, cairo_content_t content, int src_x, int src_y, int width, int height) { cairo_surface_t *copy; cairo_t *cr; copy = cairo_image_surface_create(gdk_cairo_format_for_content(content), width, height); cr = cairo_create(copy); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_set_source_surface(cr, surface, -src_x, -src_y); cairo_paint(cr); cairo_destroy(cr); return copy; } static void convert_alpha(guchar *dest_data, int dest_stride, guchar *src_data, int src_stride, int src_x, int src_y, int width, int height) { int x, y; src_data += src_stride * src_y + src_x * 4; for (y = 0; y < height; y++) { guint32 *src = (guint32 *)src_data; for (x = 0; x < width; x++) { guint alpha = src[x] >> 24; if (alpha == 0) { dest_data[x * 4 + 0] = 0; dest_data[x * 4 + 1] = 0; dest_data[x * 4 + 2] = 0; } else { dest_data[x * 4 + 0] = (((src[x] & 0xff0000) >> 16) * 255 + alpha / 2) / alpha; dest_data[x * 4 + 1] = (((src[x] & 0x00ff00) >> 8) * 255 + alpha / 2) / alpha; dest_data[x * 4 + 2] = (((src[x] & 0x0000ff) >> 0) * 255 + alpha / 2) / alpha; } dest_data[x * 4 + 3] = alpha; } src_data += src_stride; dest_data += dest_stride; } } static void convert_no_alpha(guchar *dest_data, int dest_stride, guchar *src_data, int src_stride, int src_x, int src_y, int width, int height) { int x, y; src_data += src_stride * src_y + src_x * 4; for (y = 0; y < height; y++) { guint32 *src = (guint32 *)src_data; for (x = 0; x < width; x++) { dest_data[x * 3 + 0] = src[x] >> 16; dest_data[x * 3 + 1] = src[x] >> 8; dest_data[x * 3 + 2] = src[x]; } src_data += src_stride; dest_data += dest_stride; } } /** * gdk_pixbuf_get_from_surface: * @surface: surface to copy from * @src_x: Source X coordinate within @surface * @src_y: Source Y coordinate within @surface * @width: Width in pixels of region to get * @height: Height in pixels of region to get * * Transfers image data from a #cairo_surface_t and converts it to an RGB(A) * representation inside a #GdkPixbuf. This allows you to efficiently read * individual pixels from cairo surfaces. For #GdkWindows, use * gdk_pixbuf_get_from_window() instead. * * This function will create an RGB pixbuf with 8 bits per channel. * The pixbuf will contain an alpha channel if the @surface contains one. * * Return value: (transfer full): A newly-created pixbuf with a reference * count of 1, or %NULL on error */ GdkPixbuf * gdk_pixbuf_get_from_surface(cairo_surface_t *surface, gint src_x, gint src_y, gint width, gint height) { cairo_content_t content; GdkPixbuf *dest; /* General sanity checks */ g_return_val_if_fail(surface != NULL, NULL); g_return_val_if_fail(width > 0 && height > 0, NULL); content = (cairo_content_t)(cairo_surface_get_content(surface) | CAIRO_CONTENT_COLOR); dest = gdk_pixbuf_new(GDK_COLORSPACE_RGB, !!(content & CAIRO_CONTENT_ALPHA), 8, width, height); surface = gdk_cairo_surface_coerce_to_image(surface, content, src_x, src_y, width, height); cairo_surface_flush(surface); if (cairo_surface_status(surface) || dest == NULL) { cairo_surface_destroy(surface); return NULL; } if (gdk_pixbuf_get_has_alpha(dest)) convert_alpha(gdk_pixbuf_get_pixels(dest), gdk_pixbuf_get_rowstride(dest), cairo_image_surface_get_data(surface), cairo_image_surface_get_stride(surface), 0, 0, width, height); else convert_no_alpha(gdk_pixbuf_get_pixels(dest), gdk_pixbuf_get_rowstride(dest), cairo_image_surface_get_data(surface), cairo_image_surface_get_stride(surface), 0, 0, width, height); cairo_surface_destroy(surface); return dest; } workrave-1.10.50/frontend/applets/common/src/timerbox.c0000644000175100001710000003542214221624107021773 0ustar00gdm00000000000000/* * workrave-timerbox.c * * Copyright (C) 2011, 2012, 2013 Rob Caelers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "timerbox.h" #include #include "timebar.h" #ifdef USE_GTK2 # include "compat.h" #endif static void workrave_timerbox_class_init(WorkraveTimerboxClass *klass); static void workrave_timerbox_init(WorkraveTimerbox *self); static void workrave_timerbox_dispose(GObject *gobject); static void workrave_timerbox_finalize(GObject *gobject); static void workrave_timerbox_set_property(GObject *gobject, guint property_id, const GValue *value, GParamSpec *pspec); static void workrave_timerbox_get_property(GObject *gobject, guint property_id, GValue *value, GParamSpec *pspec); static void workrave_timerbox_update_sheep(WorkraveTimerbox *self, cairo_t *cr); static void workrave_timerbox_update_time_bars(WorkraveTimerbox *self, cairo_t *cr); static void workrave_timerbox_compute_dimensions(WorkraveTimerbox *self, int *width, int *height); static GdkPixbuf *workrave_load_image(WorkraveTimerbox *self, const char *name); static void workrave_timerbox_init_images(WorkraveTimerbox *self); static void workrave_on_settings_changed(GSettings *gsettings, const gchar *key, void *user_data); enum { PROP_0, PROP_NAME }; const int PADDING_X = 2; const int PADDING_Y = 2; struct _WorkraveTimerboxPrivate { gchar *name; GdkPixbuf *normal_sheep_icon; GdkPixbuf *quiet_sheep_icon; GdkPixbuf *suspended_sheep_icon; WorkraveTimebar *slot_to_time_bar[BREAK_ID_SIZEOF]; GdkPixbuf *break_to_icon[BREAK_ID_SIZEOF]; WorkraveBreakId slot_to_break[BREAK_ID_SIZEOF]; short break_to_slot[BREAK_ID_SIZEOF]; gboolean break_visible[BREAK_ID_SIZEOF]; gboolean enabled; short filled_slots; gboolean force_icon; gchar *mode; GSettings *settings; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveTimerbox, workrave_timerbox, G_TYPE_OBJECT); static void workrave_timerbox_class_init(WorkraveTimerboxClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS(klass); GParamSpec *pspec; gobject_class->dispose = workrave_timerbox_dispose; gobject_class->finalize = workrave_timerbox_finalize; gobject_class->set_property = workrave_timerbox_set_property; gobject_class->get_property = workrave_timerbox_get_property; pspec = g_param_spec_string("workrave", "Workrave construct prop", "Set workrave's name", "no-name-set" /* default value */, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE); g_object_class_install_property(gobject_class, PROP_NAME, pspec); } static void workrave_timerbox_init(WorkraveTimerbox *self) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { priv->slot_to_time_bar[i] = g_object_new(WORKRAVE_TYPE_TIMEBAR, NULL); priv->break_visible[i] = FALSE; priv->slot_to_break[i] = BREAK_ID_NONE; priv->break_to_slot[i] = -1; priv->break_to_icon[i] = NULL; } priv->filled_slots = 0; priv->enabled = FALSE; priv->force_icon = FALSE; priv->mode = g_strdup("normal"); priv->settings = g_settings_new("org.workrave.gui"); g_signal_connect(priv->settings, "changed", G_CALLBACK(workrave_on_settings_changed), self); priv->normal_sheep_icon = NULL; priv->quiet_sheep_icon = NULL; priv->suspended_sheep_icon = NULL; workrave_timerbox_init_images(self); } static void workrave_timerbox_dispose(GObject *gobject) { WorkraveTimerbox *self = WORKRAVE_TIMERBOX(gobject); WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); g_object_unref(priv->normal_sheep_icon); g_object_unref(priv->quiet_sheep_icon); g_object_unref(priv->suspended_sheep_icon); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { g_object_unref(priv->break_to_icon[i]); g_object_unref(priv->slot_to_time_bar[i]); } /* Chain up to the parent class */ G_OBJECT_CLASS(workrave_timerbox_parent_class)->dispose(gobject); } static void workrave_timerbox_finalize(GObject *gobject) { /* Chain up to the parent class */ G_OBJECT_CLASS(workrave_timerbox_parent_class)->finalize(gobject); } static void workrave_timerbox_set_property(GObject *gobject, guint property_id, const GValue *value, GParamSpec *pspec) { WorkraveTimerbox *self = WORKRAVE_TIMERBOX(gobject); WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); switch (property_id) { case PROP_NAME: g_free(priv->name); priv->name = g_value_dup_string(value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(gobject, property_id, pspec); break; } } static void workrave_timerbox_get_property(GObject *gobject, guint property_id, GValue *value, GParamSpec *pspec) { WorkraveTimerbox *self = WORKRAVE_TIMERBOX(gobject); WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); switch (property_id) { case PROP_NAME: g_value_set_string(value, priv->name); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(gobject, property_id, pspec); break; } } static void workrave_timerbox_update_sheep(WorkraveTimerbox *self, cairo_t *cr) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); if ((priv->enabled && priv->filled_slots == 0) || priv->force_icon) { if (!priv->enabled || g_strcmp0("normal", priv->mode) == 0) { gdk_cairo_set_source_pixbuf(cr, priv->normal_sheep_icon, 0, 0); } else if (g_strcmp0("suspended", priv->mode) == 0) { gdk_cairo_set_source_pixbuf(cr, priv->suspended_sheep_icon, 0, 0); } else if (g_strcmp0("quiet", priv->mode) == 0) { gdk_cairo_set_source_pixbuf(cr, priv->quiet_sheep_icon, 0, 0); } cairo_paint(cr); } } static void workrave_timerbox_update_time_bars(WorkraveTimerbox *self, cairo_t *cr) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); if (priv->enabled) { int x = 0, y = 0; int bar_width, bar_height; if (priv->force_icon) { x += gdk_pixbuf_get_width(priv->normal_sheep_icon); } workrave_timebar_get_dimensions(priv->slot_to_time_bar[0], &bar_width, &bar_height); int icon_width = gdk_pixbuf_get_width(priv->break_to_icon[0]); int icon_height = gdk_pixbuf_get_height(priv->break_to_icon[0]); int icon_bar_width = icon_width + 2 * PADDING_X + bar_width; int icon_dy = 0; int bar_dy = 0; if (bar_height > icon_height) { icon_dy = (bar_height - icon_height + 1) / 2; } else { bar_dy = (icon_height - bar_height + 1) / 2; } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { WorkraveBreakId bid = priv->slot_to_break[i]; if (bid != BREAK_ID_NONE) { WorkraveTimebar *bar = priv->slot_to_time_bar[bid]; cairo_surface_t *surface = cairo_get_target(cr); cairo_surface_t *bar_surface = cairo_surface_create_for_rectangle(surface, x + icon_width + PADDING_X, y + bar_dy, bar_width, bar_height); cairo_t *bar_cr = cairo_create(bar_surface); workrave_timebar_draw(bar, bar_cr); cairo_surface_destroy(bar_surface); cairo_destroy(bar_cr); gdk_cairo_set_source_pixbuf(cr, priv->break_to_icon[bid], x, y + icon_dy); cairo_fill(cr); cairo_paint(cr); x += icon_bar_width + 2 * PADDING_X; } } } } static void workrave_timerbox_compute_dimensions(WorkraveTimerbox *self, int *width, int *height) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); int bar_width, bar_height; workrave_timebar_get_dimensions(priv->slot_to_time_bar[0], &bar_width, &bar_height); int icon_width = gdk_pixbuf_get_width(priv->break_to_icon[0]); int icon_height = gdk_pixbuf_get_height(priv->break_to_icon[0]); if (priv->enabled && priv->filled_slots > 0) { *width = priv->filled_slots * (icon_width + 4 * PADDING_X + bar_width) - 2 * PADDING_X; *height = MAX(icon_height, bar_height); if (priv->force_icon) { *width += gdk_pixbuf_get_width(priv->normal_sheep_icon) + PADDING_X; } } else { *width = gdk_pixbuf_get_width(priv->normal_sheep_icon); *height = gdk_pixbuf_get_height(priv->normal_sheep_icon); } } /** * workrave_timerbox_set_slot: * @self: a @WorkraveTimerbox * @slot: slot to set * @brk: break to put in slot * */ void workrave_timerbox_set_slot(WorkraveTimerbox *self, int slot, WorkraveBreakId brk) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); WorkraveBreakId old_brk = priv->slot_to_break[slot]; if (old_brk != brk) { if (old_brk != BREAK_ID_NONE) { priv->break_visible[old_brk] = FALSE; priv->break_to_slot[old_brk] = -1; priv->filled_slots--; } priv->slot_to_break[slot] = brk; if (brk != BREAK_ID_NONE) { int old_slot = priv->break_to_slot[brk]; if (old_slot >= 0) { priv->slot_to_break[old_slot] = BREAK_ID_NONE; } else { priv->filled_slots++; } priv->break_visible[brk] = TRUE; priv->break_to_slot[brk] = slot; } } } /** * workrave_timerbox_update: * @self: a @WorkraveTimerbox * @image: a @GtkImage where the timerbox will be drawn into * */ void workrave_timerbox_update(WorkraveTimerbox *self, GtkImage *image) { int width = 24; int height = 24; workrave_timerbox_compute_dimensions(self, &width, &height); cairo_surface_t *surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height); cairo_t *cr = cairo_create(surface); workrave_timerbox_draw(self, cr); GdkPixbuf *pixbuf = gdk_pixbuf_get_from_surface(surface, 0, 0, width, height); gtk_image_set_from_pixbuf(image, pixbuf); g_object_unref(pixbuf); cairo_surface_destroy(surface); cairo_destroy(cr); } /** * workrave_timerbox_draw: * @self: a @WorkraveTimerbox * @cr: a @cairo_t where the timerbox will be drawn into * */ void workrave_timerbox_draw(WorkraveTimerbox *self, cairo_t *cr) { cairo_save(cr); cairo_set_source_rgba(cr, 0, 0, 0, 0); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_paint(cr); cairo_restore(cr); workrave_timerbox_update_time_bars(self, cr); workrave_timerbox_update_sheep(self, cr); } /** * workrave_timerbox_get_width: * @self: a @WorkraveTimerbox * * Return value: The width of the @WorkraveTimerbox * */ int workrave_timerbox_get_width(WorkraveTimerbox *self) { int width; int height; workrave_timerbox_compute_dimensions(self, &width, &height); return width; } /** * workrave_timerbox_get_height: * @self: a @WorkraveTimerbox * * Return value: The width of the @WorkraveTimerbox * */ int workrave_timerbox_get_height(WorkraveTimerbox *self) { int width; int height; workrave_timerbox_compute_dimensions(self, &width, &height); return height; } /** * workrave_timerbox_get_time_bar: * @self: a @WorkraveTimerbox * @timer: the ID of the #WorkraveTimebar to return * * Return value: (transfer none): The @WorkraveTimebar of the specified timer * */ WorkraveTimebar * workrave_timerbox_get_time_bar(WorkraveTimerbox *self, WorkraveBreakId timer) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); return priv->slot_to_time_bar[timer]; } /** * workrave_timerbox_set_enabled: * @self: a @WorkraveTimerbox * @enabled: * */ void workrave_timerbox_set_enabled(WorkraveTimerbox *self, gboolean enabled) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); priv->enabled = enabled; } /** * workrave_timerbox_set_force_icon: * @self: a @WorkraveTimerbox * @force: Whether the icon is always visible * */ void workrave_timerbox_set_force_icon(WorkraveTimerbox *self, gboolean force) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); priv->force_icon = force; } /** * workrave_timerbox_set_operation_mode: * @self: a @WorkraveTimerbox * @mode: * */ void workrave_timerbox_set_operation_mode(WorkraveTimerbox *self, gchar *mode) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); g_free(priv->mode); priv->mode = g_strdup(mode); } static GdkPixbuf * workrave_load_image(WorkraveTimerbox *self, const char *name) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); GdkPixbuf *ret = NULL; char *theme = g_settings_get_string(priv->settings, "icontheme"); char *file = g_build_filename(WORKRAVE_PKGDATADIR, "images", theme, name, NULL); if (!g_file_test(file, G_FILE_TEST_EXISTS)) { g_free(file); file = g_build_filename(WORKRAVE_PKGDATADIR, "images", name, NULL); } ret = gdk_pixbuf_new_from_file(file, NULL); g_free(file); return ret; } static void workrave_timerbox_init_images(WorkraveTimerbox *self) { WorkraveTimerboxPrivate *priv = workrave_timerbox_get_instance_private(self); const char *icons[] = {"timer-micro-break.png", "timer-rest-break.png", "timer-daily.png"}; if (priv->normal_sheep_icon != NULL) { g_object_unref(priv->normal_sheep_icon); } if (priv->quiet_sheep_icon != NULL) { g_object_unref(priv->quiet_sheep_icon); } if (priv->suspended_sheep_icon != NULL) { g_object_unref(priv->suspended_sheep_icon); } priv->normal_sheep_icon = workrave_load_image(self, "workrave-icon-medium.png"); priv->quiet_sheep_icon = workrave_load_image(self, "workrave-quiet-icon-medium.png"); priv->suspended_sheep_icon = workrave_load_image(self, "workrave-suspended-icon-medium.png"); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (priv->break_to_icon[i] != NULL) { g_object_unref(priv->break_to_icon[i]); } priv->break_to_icon[i] = workrave_load_image(self, icons[i]); } } static void workrave_on_settings_changed(GSettings *gsettings, const gchar *key, void *user_data) { WorkraveTimerbox *self = WORKRAVE_TIMERBOX(user_data); workrave_timerbox_init_images(self); } workrave-1.10.50/frontend/applets/common/src/Makefile.in0000644000000000000000000012724214221624201023131 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@am__append_1 = Workrave-1.0.gir subdir = frontend/applets/common/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/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)$(workravegtk2libdir)" \ "$(DESTDIR)$(workravelibdir)" "$(DESTDIR)$(girdir)" \ "$(DESTDIR)$(typelibdir)" LTLIBRARIES = $(workravegtk2lib_LTLIBRARIES) \ $(workravelib_LTLIBRARIES) am__DEPENDENCIES_1 = @HAVE_GTK2_TRUE@libworkrave_gtk2_private_1_0_la_DEPENDENCIES = \ @HAVE_GTK2_TRUE@ $(am__DEPENDENCIES_1) am__libworkrave_gtk2_private_1_0_la_SOURCES_DIST = timebar.c \ timerbox.c control.c compat.c @HAVE_GTK2_TRUE@am_libworkrave_gtk2_private_1_0_la_OBJECTS = \ @HAVE_GTK2_TRUE@ libworkrave_gtk2_private_1_0_la-timebar.lo \ @HAVE_GTK2_TRUE@ libworkrave_gtk2_private_1_0_la-timerbox.lo \ @HAVE_GTK2_TRUE@ libworkrave_gtk2_private_1_0_la-control.lo \ @HAVE_GTK2_TRUE@ libworkrave_gtk2_private_1_0_la-compat.lo libworkrave_gtk2_private_1_0_la_OBJECTS = \ $(am_libworkrave_gtk2_private_1_0_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_gtk2_private_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ @HAVE_GTK2_TRUE@am_libworkrave_gtk2_private_1_0_la_rpath = -rpath \ @HAVE_GTK2_TRUE@ $(workravegtk2libdir) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@libworkrave_private_1_0_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am__libworkrave_private_1_0_la_SOURCES_DIST = timebar.c timerbox.c \ control.c @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@am_libworkrave_private_1_0_la_OBJECTS = libworkrave_private_1_0_la-timebar.lo \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ libworkrave_private_1_0_la-timerbox.lo \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ libworkrave_private_1_0_la-control.lo libworkrave_private_1_0_la_OBJECTS = \ $(am_libworkrave_private_1_0_la_OBJECTS) libworkrave_private_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@am_libworkrave_private_1_0_la_rpath = \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ -rpath \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ $(workravelibdir) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Plo \ ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Plo \ ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Plo \ ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Plo \ ./$(DEPDIR)/libworkrave_private_1_0_la-control.Plo \ ./$(DEPDIR)/libworkrave_private_1_0_la-timebar.Plo \ ./$(DEPDIR)/libworkrave_private_1_0_la-timerbox.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_gtk2_private_1_0_la_SOURCES) \ $(libworkrave_private_1_0_la_SOURCES) DIST_SOURCES = $(am__libworkrave_gtk2_private_1_0_la_SOURCES_DIST) \ $(am__libworkrave_private_1_0_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(gir_DATA) $(typelib_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ INTROSPECTION_GIRS = $(am__append_1) INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --add-include-path=$(srcdir)/../include --warn-all \ --include GObject-2.0 \ --include Gtk-3.0 \ --include cairo-1.0 INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) --includedir=$(srcdir)/../include @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@workravelibdir = $(libdir) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@workravelib_LTLIBRARIES = libworkrave-private-1.0.la @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@libworkrave_private_1_0_la_SOURCES = \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ timebar.c \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ timerbox.c \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ control.c @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@libworkrave_private_1_0_la_CFLAGS = \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ -Wall -std=c99 $(GTK_CFLAGS) -I$(srcdir)/../include \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@libworkrave_private_1_0_la_LIBADD = \ @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@ $(GTK_LIBS) @HAVE_GTK2_TRUE@introspection_sources = $(libworkrave_private_1_0_la_SOURCES) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@introspection_sources = $(libworkrave_private_1_0_la_SOURCES) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@Workrave_1_0_gir_INCLUDES = GObject-2.0 @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@Workrave_1_0_gir_CFLAGS = $(INCLUDES) $(GTK_CFLAGS) -I$(srcdir)/../include @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@Workrave_1_0_gir_LIBS = libworkrave-private-1.0.la @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@Workrave_1_0_gir_FILES = $(introspection_sources) $(srcdir)/../include/timerbox.h $(srcdir)/../include/timebar.h @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0 @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@gir_DATA = $(INTROSPECTION_GIRS) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@typelibdir = $(libdir)/girepository-1.0 @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@CLEANFILES = $(gir_DATA) $(typelib_DATA) @HAVE_GTK2_TRUE@workravegtk2libdir = $(libdir) @HAVE_GTK2_TRUE@workravegtk2lib_LTLIBRARIES = libworkrave-gtk2-private-1.0.la @HAVE_GTK2_TRUE@libworkrave_gtk2_private_1_0_la_SOURCES = \ @HAVE_GTK2_TRUE@ timebar.c \ @HAVE_GTK2_TRUE@ timerbox.c \ @HAVE_GTK2_TRUE@ control.c \ @HAVE_GTK2_TRUE@ compat.c @HAVE_GTK2_TRUE@libworkrave_gtk2_private_1_0_la_CFLAGS = \ @HAVE_GTK2_TRUE@ -Wall -DUSE_GTK2 -std=c99 $(GTK2_CFLAGS) -I$(srcdir)/../include \ @HAVE_GTK2_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" @HAVE_GTK2_TRUE@libworkrave_gtk2_private_1_0_la_LIBADD = \ @HAVE_GTK2_TRUE@ $(GTK2_LIBS) EXTRA_DIST = compat.h all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/common/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/common/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-workravegtk2libLTLIBRARIES: $(workravegtk2lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(workravegtk2lib_LTLIBRARIES)'; test -n "$(workravegtk2libdir)" || 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)$(workravegtk2libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(workravegtk2libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(workravegtk2libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(workravegtk2libdir)"; \ } uninstall-workravegtk2libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(workravegtk2lib_LTLIBRARIES)'; test -n "$(workravegtk2libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(workravegtk2libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(workravegtk2libdir)/$$f"; \ done clean-workravegtk2libLTLIBRARIES: -test -z "$(workravegtk2lib_LTLIBRARIES)" || rm -f $(workravegtk2lib_LTLIBRARIES) @list='$(workravegtk2lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } install-workravelibLTLIBRARIES: $(workravelib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(workravelib_LTLIBRARIES)'; test -n "$(workravelibdir)" || 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)$(workravelibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(workravelibdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(workravelibdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(workravelibdir)"; \ } uninstall-workravelibLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(workravelib_LTLIBRARIES)'; test -n "$(workravelibdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(workravelibdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(workravelibdir)/$$f"; \ done clean-workravelibLTLIBRARIES: -test -z "$(workravelib_LTLIBRARIES)" || rm -f $(workravelib_LTLIBRARIES) @list='$(workravelib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-gtk2-private-1.0.la: $(libworkrave_gtk2_private_1_0_la_OBJECTS) $(libworkrave_gtk2_private_1_0_la_DEPENDENCIES) $(EXTRA_libworkrave_gtk2_private_1_0_la_DEPENDENCIES) $(AM_V_CCLD)$(libworkrave_gtk2_private_1_0_la_LINK) $(am_libworkrave_gtk2_private_1_0_la_rpath) $(libworkrave_gtk2_private_1_0_la_OBJECTS) $(libworkrave_gtk2_private_1_0_la_LIBADD) $(LIBS) libworkrave-private-1.0.la: $(libworkrave_private_1_0_la_OBJECTS) $(libworkrave_private_1_0_la_DEPENDENCIES) $(EXTRA_libworkrave_private_1_0_la_DEPENDENCIES) $(AM_V_CCLD)$(libworkrave_private_1_0_la_LINK) $(am_libworkrave_private_1_0_la_rpath) $(libworkrave_private_1_0_la_OBJECTS) $(libworkrave_private_1_0_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_private_1_0_la-control.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_private_1_0_la-timebar.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_private_1_0_la-timerbox.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_gtk2_private_1_0_la-timebar.lo: timebar.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_gtk2_private_1_0_la-timebar.lo -MD -MP -MF $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Tpo -c -o libworkrave_gtk2_private_1_0_la-timebar.lo `test -f 'timebar.c' || echo '$(srcdir)/'`timebar.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Tpo $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timebar.c' object='libworkrave_gtk2_private_1_0_la-timebar.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_gtk2_private_1_0_la-timebar.lo `test -f 'timebar.c' || echo '$(srcdir)/'`timebar.c libworkrave_gtk2_private_1_0_la-timerbox.lo: timerbox.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_gtk2_private_1_0_la-timerbox.lo -MD -MP -MF $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Tpo -c -o libworkrave_gtk2_private_1_0_la-timerbox.lo `test -f 'timerbox.c' || echo '$(srcdir)/'`timerbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Tpo $(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timerbox.c' object='libworkrave_gtk2_private_1_0_la-timerbox.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_gtk2_private_1_0_la-timerbox.lo `test -f 'timerbox.c' || echo '$(srcdir)/'`timerbox.c libworkrave_gtk2_private_1_0_la-control.lo: control.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_gtk2_private_1_0_la-control.lo -MD -MP -MF $(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Tpo -c -o libworkrave_gtk2_private_1_0_la-control.lo `test -f 'control.c' || echo '$(srcdir)/'`control.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Tpo $(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='control.c' object='libworkrave_gtk2_private_1_0_la-control.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_gtk2_private_1_0_la-control.lo `test -f 'control.c' || echo '$(srcdir)/'`control.c libworkrave_gtk2_private_1_0_la-compat.lo: compat.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_gtk2_private_1_0_la-compat.lo -MD -MP -MF $(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Tpo -c -o libworkrave_gtk2_private_1_0_la-compat.lo `test -f 'compat.c' || echo '$(srcdir)/'`compat.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Tpo $(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='compat.c' object='libworkrave_gtk2_private_1_0_la-compat.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) $(libworkrave_gtk2_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_gtk2_private_1_0_la-compat.lo `test -f 'compat.c' || echo '$(srcdir)/'`compat.c libworkrave_private_1_0_la-timebar.lo: timebar.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_private_1_0_la-timebar.lo -MD -MP -MF $(DEPDIR)/libworkrave_private_1_0_la-timebar.Tpo -c -o libworkrave_private_1_0_la-timebar.lo `test -f 'timebar.c' || echo '$(srcdir)/'`timebar.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_private_1_0_la-timebar.Tpo $(DEPDIR)/libworkrave_private_1_0_la-timebar.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timebar.c' object='libworkrave_private_1_0_la-timebar.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_private_1_0_la-timebar.lo `test -f 'timebar.c' || echo '$(srcdir)/'`timebar.c libworkrave_private_1_0_la-timerbox.lo: timerbox.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_private_1_0_la-timerbox.lo -MD -MP -MF $(DEPDIR)/libworkrave_private_1_0_la-timerbox.Tpo -c -o libworkrave_private_1_0_la-timerbox.lo `test -f 'timerbox.c' || echo '$(srcdir)/'`timerbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_private_1_0_la-timerbox.Tpo $(DEPDIR)/libworkrave_private_1_0_la-timerbox.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timerbox.c' object='libworkrave_private_1_0_la-timerbox.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_private_1_0_la-timerbox.lo `test -f 'timerbox.c' || echo '$(srcdir)/'`timerbox.c libworkrave_private_1_0_la-control.lo: control.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -MT libworkrave_private_1_0_la-control.lo -MD -MP -MF $(DEPDIR)/libworkrave_private_1_0_la-control.Tpo -c -o libworkrave_private_1_0_la-control.lo `test -f 'control.c' || echo '$(srcdir)/'`control.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_private_1_0_la-control.Tpo $(DEPDIR)/libworkrave_private_1_0_la-control.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='control.c' object='libworkrave_private_1_0_la-control.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) $(libworkrave_private_1_0_la_CFLAGS) $(CFLAGS) -c -o libworkrave_private_1_0_la-control.lo `test -f 'control.c' || echo '$(srcdir)/'`control.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-girDATA: $(gir_DATA) @$(NORMAL_INSTALL) @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(girdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(girdir)" || 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)$(girdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \ done uninstall-girDATA: @$(NORMAL_UNINSTALL) @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir) install-typelibDATA: $(typelib_DATA) @$(NORMAL_INSTALL) @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(typelibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(typelibdir)" || 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)$(typelibdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \ done uninstall-typelibDATA: @$(NORMAL_UNINSTALL) @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: for dir in "$(DESTDIR)$(workravegtk2libdir)" "$(DESTDIR)$(workravelibdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)"; 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-workravegtk2libLTLIBRARIES \ clean-workravelibLTLIBRARIES mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-control.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-timebar.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-timerbox.Plo -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-girDATA install-typelibDATA \ install-workravegtk2libLTLIBRARIES \ install-workravelibLTLIBRARIES install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-compat.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-control.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timebar.Plo -rm -f ./$(DEPDIR)/libworkrave_gtk2_private_1_0_la-timerbox.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-control.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-timebar.Plo -rm -f ./$(DEPDIR)/libworkrave_private_1_0_la-timerbox.Plo -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-girDATA uninstall-typelibDATA \ uninstall-workravegtk2libLTLIBRARIES \ uninstall-workravelibLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-workravegtk2libLTLIBRARIES \ clean-workravelibLTLIBRARIES cscopelist-am ctags ctags-am \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-girDATA install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ install-typelibDATA install-workravegtk2libLTLIBRARIES \ install-workravelibLTLIBRARIES installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-girDATA uninstall-typelibDATA \ uninstall-workravegtk2libLTLIBRARIES \ uninstall-workravelibLTLIBRARIES .PRECIOUS: Makefile -include $(INTROSPECTION_MAKEFILE) @HAVE_GTK3_TRUE@@HAVE_INTROSPECTION_TRUE@Workrave-1.0.gir: libworkrave-private-1.0.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: workrave-1.10.50/frontend/applets/common/src/compat.h0000644000175100001710000000052714221624107021430 0ustar00gdm00000000000000#ifndef __WORKRAVE_TIMERBOX_COMPAT_H__ #define __WORKRAVE_TIMERBOX_COMPAT_H__ #include GdkPixbuf *gdk_pixbuf_get_from_surface(cairo_surface_t *surface, gint src_x, gint src_y, gint width, gint height); #define GdkRGBA GdkColor #define gdk_rgba_parse(x, y) gdk_color_parse((y), (x)); #endif /* __WORKRAVE_TIMERBOX_COMPAT_H__ */ workrave-1.10.50/frontend/applets/common/src/timebar.c0000644000175100001710000002704014221624107021562 0ustar00gdm00000000000000/* * workrave-timebar.c * * Copyright (C) 2011 Rob Caelers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "timebar.h" #include #include static void workrave_timebar_class_init(WorkraveTimebarClass *klass); static void workrave_timebar_init(WorkraveTimebar *self); static void workrave_timebar_prepare(WorkraveTimebar *self); static void workrave_timebar_draw_filled_box(WorkraveTimebar *self, cairo_t *cr, int x, int y, int width, int height); static void workrave_timebar_draw_frame(WorkraveTimebar *self, cairo_t *cr, int width, int height); static void workrave_timebar_compute_bar_dimensions(WorkraveTimebar *self, int *bar_width, int *sbar_width, int *bar_height); const int MARGINX = 4; const int MARGINY = 2; const int MIN_HORIZONTAL_BAR_WIDTH = 12; const int MIN_HORIZONTAL_BAR_HEIGHT = 20; // stolen from gtk's progress bar const int BORDER_SIZE = 2; enum { PROP_0, PROP_NAME }; #ifdef USE_GTK2 # include "compat.h" #endif struct _WorkraveTimebarPrivate { //! Color of the time-bar. WorkraveColorId bar_color; //! Color of the time-bar. WorkraveColorId secondary_bar_color; //! Color of the text. GdkRGBA bar_text_color; //! The current value. int bar_value; //! The maximum value. int bar_max_value; //! The current value. int secondary_bar_value; //! The maximum value. int secondary_bar_max_value; //! Text to show; gchar *bar_text; int width; int height; PangoContext *pango_context; PangoLayout *pango_layout; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveTimebar, workrave_timebar, G_TYPE_OBJECT); static GdkRGBA bar_colors[COLOR_ID_SIZEOF]; #ifdef USE_GTK2 static void set_color(cairo_t *cr, GdkColor color) { cairo_set_source_rgb(cr, color.red / 65535.0, color.green / 65535.0, color.blue / 65535.0); } #else static void set_color(cairo_t *cr, GdkRGBA color) { cairo_set_source_rgb(cr, color.red, color.green, color.blue); } #endif static void workrave_timebar_class_init(WorkraveTimebarClass *klass) { gdk_rgba_parse(&bar_colors[COLOR_ID_ACTIVE], "lightblue"); gdk_rgba_parse(&bar_colors[COLOR_ID_INACTIVE], "lightgreen"); gdk_rgba_parse(&bar_colors[COLOR_ID_OVERDUE], "orange"); gdk_rgba_parse(&bar_colors[COLOR_ID_1_ACTIVE_DURING_BREAK], "red"); gdk_rgba_parse(&bar_colors[COLOR_ID_2_ACTIVE_DURING_BREAK], "#e00000"); gdk_rgba_parse(&bar_colors[COLOR_ID_INACTIVE_OVER_ACTIVE], "#00d4b2"); gdk_rgba_parse(&bar_colors[COLOR_ID_INACTIVE_OVER_OVERDUE], "lightgreen"); gdk_rgba_parse(&bar_colors[COLOR_ID_BG], "#eeeeee"); } static void workrave_timebar_init(WorkraveTimebar *self) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); priv->bar_color = COLOR_ID_INACTIVE_OVER_OVERDUE; priv->secondary_bar_color = COLOR_ID_2_ACTIVE_DURING_BREAK; gdk_rgba_parse(&priv->bar_text_color, "black"); priv->bar_value = 20; priv->bar_max_value = 50; priv->secondary_bar_value = 100; priv->secondary_bar_max_value = 600; priv->bar_text = g_strdup(""); priv->width = 0; priv->height = 0; priv->pango_context = NULL; priv->pango_layout = NULL; workrave_timebar_prepare(self); } void workrave_timebar_draw_bar(WorkraveTimebar *self, cairo_t *cr) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_rectangle(cr, 0, 0, priv->width, priv->height); cairo_clip(cr); // Frame workrave_timebar_draw_frame(self, cr, priv->width, priv->height); int bar_width = 0; int sbar_width = 0; int bar_height = 0; workrave_timebar_compute_bar_dimensions(self, &bar_width, &sbar_width, &bar_height); // g_debug("bar_width %d %d", bar_width, sbar_width); if (sbar_width > 0) { // Overlap // We should assert() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. // assert(secondary_bar_color == COLOR_ID_INACTIVE); int overlap_color; switch (priv->bar_color) { case COLOR_ID_ACTIVE: overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; break; case COLOR_ID_OVERDUE: overlap_color = COLOR_ID_INACTIVE_OVER_OVERDUE; break; default: // We could abort() because this is not supported // but there are some weird boundary cases // in which this still happens.. need to check // this out some time. overlap_color = COLOR_ID_INACTIVE_OVER_ACTIVE; } if (sbar_width >= bar_width) { if (bar_width) { GdkRGBA color = bar_colors[overlap_color]; set_color(cr, color); workrave_timebar_draw_filled_box(self, cr, BORDER_SIZE, BORDER_SIZE, bar_width, bar_height); } if (sbar_width > bar_width) { GdkRGBA color = bar_colors[priv->secondary_bar_color]; set_color(cr, color); workrave_timebar_draw_filled_box(self, cr, BORDER_SIZE + bar_width, BORDER_SIZE, sbar_width - bar_width, bar_height); } } else { if (sbar_width) { GdkRGBA color = bar_colors[overlap_color]; set_color(cr, color); workrave_timebar_draw_filled_box(self, cr, BORDER_SIZE, BORDER_SIZE, sbar_width, bar_height); } GdkRGBA color = bar_colors[priv->bar_color]; set_color(cr, color); workrave_timebar_draw_filled_box(self, cr, BORDER_SIZE + sbar_width, BORDER_SIZE, bar_width - sbar_width, bar_height); } } else { // No overlap GdkRGBA color = bar_colors[priv->bar_color]; set_color(cr, color); workrave_timebar_draw_filled_box(self, cr, BORDER_SIZE, BORDER_SIZE, bar_width, bar_height); } } void workrave_timebar_draw_text(WorkraveTimebar *self, cairo_t *cr) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); // g_debug("bar_text %s", priv->bar_text); pango_layout_set_text(priv->pango_layout, priv->bar_text, -1); int text_width, text_height; pango_layout_get_pixel_size(priv->pango_layout, &text_width, &text_height); int text_x, text_y; text_x = priv->width - text_width - MARGINX; if (text_x < 0) { text_x = MARGINX; } text_y = (priv->height - text_height) / 2; cairo_move_to(cr, text_x, text_y); set_color(cr, priv->bar_text_color); pango_cairo_show_layout(cr, priv->pango_layout); } static PangoFontDescription * workrave_timebar_get_font(void) { PangoFontDescription *font_desc; #ifndef USE_GTK2 if (gdk_screen_get_default()) { GtkStyleContext *style = gtk_style_context_new(); GtkWidgetPath *path = gtk_widget_path_new(); gtk_widget_path_append_type(path, GTK_TYPE_BUTTON); gtk_style_context_set_path(style, path); gtk_widget_path_unref(path); gtk_style_context_get(style, GTK_STATE_FLAG_NORMAL, GTK_STYLE_PROPERTY_FONT, &font_desc, NULL); g_object_unref(style); } else #endif { font_desc = pango_font_description_from_string("Sans 10"); } return font_desc; } static void workrave_timebar_prepare(WorkraveTimebar *self) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); if (priv->pango_layout == NULL) { PangoFontDescription *font_desc = workrave_timebar_get_font(); cairo_surface_t *surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 10, 10); cairo_t *cr = cairo_create(surface); priv->pango_layout = pango_cairo_create_layout(cr); priv->pango_context = pango_layout_get_context(priv->pango_layout); pango_context_set_language(priv->pango_context, gtk_get_default_language()); pango_context_set_font_description(priv->pango_context, font_desc); pango_layout_set_text(priv->pango_layout, "-9:59:59", -1); pango_layout_get_pixel_size(priv->pango_layout, &priv->width, &priv->height); priv->width = MAX(priv->width + 2 * MARGINX, MIN_HORIZONTAL_BAR_WIDTH); priv->height = MAX(priv->height + 2 * MARGINY, MIN_HORIZONTAL_BAR_HEIGHT); cairo_surface_destroy(surface); cairo_destroy(cr); } } static void workrave_timebar_draw_frame(WorkraveTimebar *self, cairo_t *cr, int width, int height) { cairo_set_source_rgb(cr, 0.6, 0.6, 0.6); cairo_set_line_width(cr, 1); cairo_rectangle(cr, 0, 0, width, height); cairo_fill(cr); cairo_set_source_rgb(cr, 0.5, 0.5, 0.5); cairo_move_to(cr, 1.5, 1.5); cairo_line_to(cr, width - 1.5, 1.5); cairo_move_to(cr, 1.5, 1.5); cairo_line_to(cr, 1.5, height - 1.5); cairo_stroke(cr); cairo_set_source_rgb(cr, 0.8, 0.8, 0.8); cairo_move_to(cr, 1.5, height - 1.5); cairo_line_to(cr, width - 1.5, height - 1.5); cairo_move_to(cr, width - 1.5, 1.5); cairo_line_to(cr, width - 1.5, height - 1.5); cairo_stroke(cr); GdkRGBA color = bar_colors[COLOR_ID_BG]; set_color(cr, color); cairo_rectangle(cr, 2, 2, width - 4, height - 4); cairo_fill(cr); } static void workrave_timebar_draw_filled_box(WorkraveTimebar *self, cairo_t *cr, int x, int y, int width, int height) { cairo_rectangle(cr, x, y, width, height); cairo_fill(cr); } static void workrave_timebar_compute_bar_dimensions(WorkraveTimebar *self, int *bar_width, int *sbar_width, int *bar_height) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); // Primary bar *bar_width = 0; if (priv->bar_max_value > 0) { *bar_width = (priv->bar_value * (priv->width - 2 * BORDER_SIZE)) / priv->bar_max_value; } // Secondary bar *sbar_width = 0; if (priv->secondary_bar_max_value > 0) { *sbar_width = (priv->secondary_bar_value * (priv->width - 2 * BORDER_SIZE)) / priv->secondary_bar_max_value; } *bar_height = priv->height - 2 * BORDER_SIZE; } void workrave_timebar_set_progress(WorkraveTimebar *self, int value, int max_value, WorkraveColorId color) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); priv->bar_value = value <= max_value ? value : max_value; priv->bar_max_value = max_value; priv->bar_color = color; } void workrave_timebar_set_secondary_progress(WorkraveTimebar *self, int value, int max_value, WorkraveColorId color) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); priv->secondary_bar_value = value <= max_value ? value : max_value; priv->secondary_bar_max_value = max_value; priv->secondary_bar_color = color; } void workrave_timebar_set_text(WorkraveTimebar *self, const gchar *text) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); g_free(priv->bar_text); priv->bar_text = g_strdup(text); } void workrave_timebar_draw(WorkraveTimebar *self, cairo_t *cr) { workrave_timebar_draw_bar(self, cr); workrave_timebar_draw_text(self, cr); } void workrave_timebar_get_dimensions(WorkraveTimebar *self, int *width, int *height) { WorkraveTimebarPrivate *priv = workrave_timebar_get_instance_private(self); *width = priv->width; *height = priv->height; } workrave-1.10.50/frontend/applets/common/src/Makefile.am0000644000175100001710000000350514221624107022027 0ustar00gdm00000000000000-include $(INTROSPECTION_MAKEFILE) INTROSPECTION_GIRS = INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --add-include-path=$(srcdir)/../include --warn-all \ --include GObject-2.0 \ --include Gtk-3.0 \ --include cairo-1.0 INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) --includedir=$(srcdir)/../include if HAVE_INTROSPECTION if HAVE_GTK3 workravelibdir = $(libdir) workravelib_LTLIBRARIES = libworkrave-private-1.0.la libworkrave_private_1_0_la_SOURCES = \ timebar.c \ timerbox.c \ control.c libworkrave_private_1_0_la_CFLAGS = \ -Wall -std=c99 $(GTK_CFLAGS) -I$(srcdir)/../include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" libworkrave_private_1_0_la_LIBADD = \ $(GTK_LIBS) introspection_sources = $(libworkrave_private_1_0_la_SOURCES) Workrave-1.0.gir: libworkrave-private-1.0.la Workrave_1_0_gir_INCLUDES = GObject-2.0 Workrave_1_0_gir_CFLAGS = $(INCLUDES) $(GTK_CFLAGS) -I$(srcdir)/../include Workrave_1_0_gir_LIBS = libworkrave-private-1.0.la Workrave_1_0_gir_FILES = $(introspection_sources) $(srcdir)/../include/timerbox.h $(srcdir)/../include/timebar.h INTROSPECTION_GIRS += Workrave-1.0.gir girdir = $(datadir)/gir-1.0 gir_DATA = $(INTROSPECTION_GIRS) typelibdir = $(libdir)/girepository-1.0 typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) CLEANFILES = $(gir_DATA) $(typelib_DATA) endif endif if HAVE_GTK2 workravegtk2libdir = $(libdir) workravegtk2lib_LTLIBRARIES = libworkrave-gtk2-private-1.0.la libworkrave_gtk2_private_1_0_la_SOURCES = \ timebar.c \ timerbox.c \ control.c \ compat.c libworkrave_gtk2_private_1_0_la_CFLAGS = \ -Wall -DUSE_GTK2 -std=c99 $(GTK2_CFLAGS) -I$(srcdir)/../include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" libworkrave_gtk2_private_1_0_la_LIBADD = \ $(GTK2_LIBS) introspection_sources = $(libworkrave_private_1_0_la_SOURCES) endif EXTRA_DIST = compat.h workrave-1.10.50/frontend/applets/common/src/control.c0000644000175100001710000005626214221624107021627 0ustar00gdm00000000000000/* Copyright (C) 2011 - 2014 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "control.h" #include "timerbox.h" #define WORKRAVE_DBUS_NAME "org.workrave.Applet" #define WORKRAVE_DBUS_APPLET_NAME "org.workrave.Workrave" #define WORKRAVE_DBUS_APPLET_IFACE "org.workrave.AppletInterface" #define WORKRAVE_DBUS_APPLET_OBJ "/org/workrave/Workrave/UI" #define WORKRAVE_DBUS_CONTROL_NAME "org.workrave.Workrave" #define WORKRAVE_DBUS_CONTROL_IFACE "org.workrave.ControlInterface" #define WORKRAVE_DBUS_CONTROL_OBJ "/org/workrave/Workrave/UI" #define WORKRAVE_DBUS_CORE_NAME "org.workrave.Workrave" #define WORKRAVE_DBUS_CORE_IFACE "org.workrave.CoreInterface" #define WORKRAVE_DBUS_CORE_OBJ "/org/workrave/Workrave/Core" enum { MENU_CHANGED, ALIVE_CHANGED, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = {0}; struct _WorkraveTimerboxControlPrivate { GtkImage *image; GCancellable *applet_proxy_cancel; GDBusProxy *applet_proxy; GCancellable *control_proxy_cancel; GDBusProxy *control_proxy; GCancellable *core_proxy_cancel; GDBusProxy *core_proxy; guint owner_id; guint watch_id; gboolean workrave_running; gboolean alive; gboolean tray_icon_enabled; enum WorkraveTimerboxControlTrayIconMode tray_icon_mode; gboolean tray_icon_visible_when_not_running; guint timer; guint startup_timer; guint startup_count; guint update_count; WorkraveTimerbox *timerbox; }; typedef struct _TimerData TimerData; struct _TimerData { char *bar_text; int slot; int bar_secondary_color; int bar_secondary_val; int bar_secondary_max; int bar_primary_color; int bar_primary_val; int bar_primary_max; }; G_DEFINE_TYPE_WITH_PRIVATE(WorkraveTimerboxControl, workrave_timerbox_control, G_TYPE_OBJECT); static void workrave_timerbox_control_class_init(WorkraveTimerboxControlClass *klass); static void workrave_timerbox_control_init(WorkraveTimerboxControl *self); static void workrave_timerbox_control_dispose(GObject *object); static void workrave_timerbox_control_finalize(GObject *object); static void workrave_timerbox_control_check(WorkraveTimerboxControl *self); static void workrave_timerbox_control_create_dbus(WorkraveTimerboxControl *self); static gboolean on_timer(gpointer user_data); static void on_dbus_applet_ready(GObject *object, GAsyncResult *res, gpointer user_data); static void on_dbus_core_ready(GObject *object, GAsyncResult *res, gpointer user_data); static void on_dbus_control_ready(GObject *object, GAsyncResult *res, gpointer user_data); static void on_dbus_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data); static void on_update_timers(WorkraveTimerboxControl *self, GVariant *parameters); static void on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data); static void on_workrave_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data); static void on_workrave_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data); GDBusProxy * workrave_timerbox_control_get_applet_proxy(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); return priv->applet_proxy; } GDBusProxy * workrave_timerbox_control_get_core_proxy(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); return priv->core_proxy; } GDBusProxy * workrave_timerbox_control_get_control_proxy(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); return priv->control_proxy; } WorkraveTimerbox * workrave_timerbox_control_get_timerbox(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); return priv->timerbox; } GtkImage * workrave_timerbox_control_get_image(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->image == NULL) { priv->image = GTK_IMAGE(gtk_image_new()); workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_set_force_icon(priv->timerbox, FALSE); workrave_timerbox_update(priv->timerbox, priv->image); gtk_widget_show(GTK_WIDGET(priv->image)); } return priv->image; } static void workrave_timerbox_control_update_show_tray_icon(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->alive) { switch (priv->tray_icon_mode) { case WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_ALWAYS: workrave_timerbox_set_force_icon(priv->timerbox, TRUE); break; case WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_NEVER: workrave_timerbox_set_force_icon(priv->timerbox, FALSE); break; case WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW: workrave_timerbox_set_force_icon(priv->timerbox, priv->tray_icon_enabled); break; } } else { workrave_timerbox_set_force_icon(priv->timerbox, priv->tray_icon_visible_when_not_running); } } void workrave_timerbox_control_set_tray_icon_mode(WorkraveTimerboxControl *self, enum WorkraveTimerboxControlTrayIconMode mode) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); priv->tray_icon_mode = mode; workrave_timerbox_control_update_show_tray_icon(self); } void workrave_timerbox_control_set_tray_icon_visible_when_not_running(WorkraveTimerboxControl *self, gboolean show) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); priv->tray_icon_visible_when_not_running = show; workrave_timerbox_control_update_show_tray_icon(self); workrave_timerbox_update(priv->timerbox, priv->image); gtk_widget_show(GTK_WIDGET(priv->image)); } static void workrave_timerbox_control_class_init(WorkraveTimerboxControlClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS(klass); signals[MENU_CHANGED] = g_signal_new("menu-changed", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST | G_SIGNAL_MUST_COLLECT, 0, NULL, NULL, g_cclosure_marshal_VOID__VARIANT, G_TYPE_NONE, 1, G_TYPE_VARIANT); signals[ALIVE_CHANGED] = g_signal_new("alive-changed", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST | G_SIGNAL_MUST_COLLECT, 0, NULL, NULL, g_cclosure_marshal_VOID__BOOLEAN, G_TYPE_NONE, 1, G_TYPE_BOOLEAN); object_class->dispose = workrave_timerbox_control_dispose; object_class->finalize = workrave_timerbox_control_finalize; } static void workrave_timerbox_control_init(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); priv->image = NULL; priv->applet_proxy = NULL; priv->applet_proxy_cancel = NULL; priv->core_proxy = NULL; priv->core_proxy_cancel = NULL; priv->control_proxy = NULL; priv->control_proxy_cancel = NULL; priv->owner_id = 0; priv->watch_id = 0; priv->workrave_running = FALSE; priv->alive = FALSE; priv->tray_icon_enabled = FALSE; priv->tray_icon_mode = WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW; priv->tray_icon_visible_when_not_running = FALSE; priv->timer = 0; priv->startup_timer = 0; priv->startup_count = 0; priv->timerbox = NULL; priv->update_count = 0; priv->timerbox = g_object_new(WORKRAVE_TYPE_TIMERBOX, NULL); workrave_timerbox_control_create_dbus(self); priv->watch_id = g_bus_watch_name(G_BUS_TYPE_SESSION, "org.workrave.Workrave", G_BUS_NAME_WATCHER_FLAGS_NONE, on_workrave_appeared, on_workrave_vanished, self, NULL); } static void workrave_timerbox_control_dispose(GObject *object) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(object); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->watch_id != 0) { g_bus_unwatch_name(priv->watch_id); } if (priv->owner_id != 0) { g_bus_unown_name(priv->owner_id); } if (priv->timer != 0) { g_source_remove(priv->timer); priv->timer = 0; } if (priv->image != NULL) { g_object_unref(priv->image); priv->image = NULL; } G_OBJECT_CLASS(workrave_timerbox_control_parent_class)->dispose(object); return; } static void workrave_timerbox_control_finalize(GObject *object) { // WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(object); G_OBJECT_CLASS(workrave_timerbox_control_parent_class)->finalize(object); return; } static void workrave_timerbox_control_start(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->alive) { return; } priv->owner_id = g_bus_own_name(G_BUS_TYPE_SESSION, WORKRAVE_DBUS_NAME, G_BUS_NAME_OWNER_FLAGS_NONE, on_bus_acquired, NULL, NULL, self, NULL); GError *error = NULL; if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync( priv->applet_proxy, "Embed", g_variant_new("(bs)", TRUE, WORKRAVE_DBUS_NAME), G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request embedding for %s: %s", WORKRAVE_DBUS_APPLET_NAME, error->message); } else { if (result != NULL) { g_variant_unref(result); } } } if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync(priv->applet_proxy, "GetTrayIconEnabled", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request tray icon enabled for %s: %s", WORKRAVE_DBUS_APPLET_NAME, error->message); } else { if (result != NULL) { g_variant_get(result, "(b)", &priv->tray_icon_enabled); g_variant_unref(result); } } } if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync(priv->core_proxy, "GetOperationMode", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request operation mode for %s: %s", WORKRAVE_DBUS_APPLET_NAME, error->message); } else { gchar *mode; g_variant_get(result, "(s)", &mode); workrave_timerbox_set_operation_mode(priv->timerbox, mode); g_variant_unref(result); } } if (error == NULL) { priv->timer = g_timeout_add_seconds(10, on_timer, self); priv->alive = TRUE; priv->update_count = 0; g_signal_emit(self, signals[ALIVE_CHANGED], 0, TRUE); } else { g_error_free(error); } } static void workrave_timerbox_control_stop(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->alive) { if (priv->timer != 0) { g_source_remove(priv->timer); priv->timer = 0; } if (priv->startup_timer != 0) { g_source_remove(priv->startup_timer); priv->startup_timer = 0; } if (priv->owner_id != 0) { g_bus_unown_name(priv->owner_id); priv->owner_id = 0; } priv->alive = FALSE; workrave_timerbox_control_update_show_tray_icon(self); workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_update(priv->timerbox, priv->image); g_signal_emit(self, signals[ALIVE_CHANGED], 0, FALSE); } } static gboolean on_start_delay(gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); workrave_timerbox_control_start(self); priv->startup_count++; return !priv->alive && priv->startup_count < 15; } static void workrave_timerbox_control_check(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->workrave_running && priv->applet_proxy != NULL && priv->core_proxy != NULL && priv->control_proxy != NULL) { // The Workrave interface may be started after the service becomes // available, so introduce a delay. priv->startup_count = 0; priv->startup_timer = g_timeout_add_seconds(2, on_start_delay, self); } } static void workrave_timerbox_control_create_dbus(WorkraveTimerboxControl *self) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); GSettings *settings = g_settings_new("org.workrave.gui"); gboolean autostart = g_settings_get_boolean(settings, "autostart"); g_object_unref(settings); GDBusProxyFlags flags = autostart ? 0 : G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START; priv->applet_proxy_cancel = g_cancellable_new(); g_dbus_proxy_new_for_bus(G_BUS_TYPE_SESSION, flags, NULL, WORKRAVE_DBUS_APPLET_NAME, WORKRAVE_DBUS_APPLET_OBJ, WORKRAVE_DBUS_APPLET_IFACE, priv->applet_proxy_cancel, on_dbus_applet_ready, self); priv->core_proxy_cancel = g_cancellable_new(); g_dbus_proxy_new_for_bus(G_BUS_TYPE_SESSION, flags, NULL, WORKRAVE_DBUS_CORE_NAME, WORKRAVE_DBUS_CORE_OBJ, WORKRAVE_DBUS_CORE_IFACE, priv->core_proxy_cancel, on_dbus_core_ready, self); priv->control_proxy_cancel = g_cancellable_new(); g_dbus_proxy_new_for_bus(G_BUS_TYPE_SESSION, flags, NULL, WORKRAVE_DBUS_CONTROL_NAME, WORKRAVE_DBUS_CONTROL_OBJ, WORKRAVE_DBUS_CONTROL_IFACE, priv->control_proxy_cancel, on_dbus_control_ready, self); } static gboolean on_timer(gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (priv->alive && priv->update_count == 0) { workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_set_force_icon(priv->timerbox, priv->tray_icon_visible_when_not_running); workrave_timerbox_update(priv->timerbox, priv->image); } priv->update_count = 0; return priv->alive; } static void on_dbus_applet_ready(GObject *object, GAsyncResult *res, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (priv->applet_proxy_cancel != NULL) { g_object_unref(priv->applet_proxy_cancel); priv->applet_proxy_cancel = NULL; } if (error != NULL) { g_warning("Could not grab DBus proxy for %s: %s", WORKRAVE_DBUS_APPLET_NAME, error->message); g_error_free(error); } else { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_dbus_signal), self); priv->applet_proxy = proxy; } workrave_timerbox_control_check(self); } static void on_dbus_core_ready(GObject *object, GAsyncResult *res, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (priv->core_proxy_cancel != NULL) { g_object_unref(priv->core_proxy_cancel); priv->core_proxy_cancel = NULL; } if (error != NULL) { g_warning("Could not grab DBus proxy for %s: %s", WORKRAVE_DBUS_CORE_NAME, error->message); g_error_free(error); } else { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_dbus_signal), self); priv->core_proxy = proxy; } workrave_timerbox_control_check(self); } static void on_dbus_control_ready(GObject *object, GAsyncResult *res, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (priv->control_proxy_cancel != NULL) { g_object_unref(priv->control_proxy_cancel); priv->control_proxy_cancel = NULL; } if (error != NULL) { g_warning("Could not grab DBus proxy for %s: %s", WORKRAVE_DBUS_CONTROL_NAME, error->message); g_error_free(error); } else { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_dbus_signal), self); priv->control_proxy = proxy; } workrave_timerbox_control_check(self); } static void on_dbus_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (g_strcmp0(signal_name, "TimersUpdated") == 0) { on_update_timers(self, parameters); } if (g_strcmp0(signal_name, "MenuUpdated") == 0) { g_signal_emit(self, signals[MENU_CHANGED], 0, parameters); } else if (g_strcmp0(signal_name, "TrayIconUpdated") == 0) { g_variant_get(parameters, "(b)", &priv->tray_icon_enabled); workrave_timerbox_control_update_show_tray_icon(self); workrave_timerbox_update(priv->timerbox, priv->image); } else if (g_strcmp0(signal_name, "OperationModeChanged") == 0) { gchar *mode; g_variant_get(parameters, "(s)", &mode); workrave_timerbox_set_operation_mode(priv->timerbox, mode); workrave_timerbox_update(priv->timerbox, priv->image); } } static void on_update_timers(WorkraveTimerboxControl *self, GVariant *parameters) { WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); if (!priv->alive) { workrave_timerbox_control_start(self); } priv->update_count++; TimerData td[BREAK_ID_SIZEOF]; g_variant_get(parameters, "((siuuuuuu)(siuuuuuu)(siuuuuuu))", &td[BREAK_ID_MICRO_BREAK].bar_text, &td[BREAK_ID_MICRO_BREAK].slot, &td[BREAK_ID_MICRO_BREAK].bar_secondary_color, &td[BREAK_ID_MICRO_BREAK].bar_secondary_val, &td[BREAK_ID_MICRO_BREAK].bar_secondary_max, &td[BREAK_ID_MICRO_BREAK].bar_primary_color, &td[BREAK_ID_MICRO_BREAK].bar_primary_val, &td[BREAK_ID_MICRO_BREAK].bar_primary_max, &td[BREAK_ID_REST_BREAK].bar_text, &td[BREAK_ID_REST_BREAK].slot, &td[BREAK_ID_REST_BREAK].bar_secondary_color, &td[BREAK_ID_REST_BREAK].bar_secondary_val, &td[BREAK_ID_REST_BREAK].bar_secondary_max, &td[BREAK_ID_REST_BREAK].bar_primary_color, &td[BREAK_ID_REST_BREAK].bar_primary_val, &td[BREAK_ID_REST_BREAK].bar_primary_max, &td[BREAK_ID_DAILY_LIMIT].bar_text, &td[BREAK_ID_DAILY_LIMIT].slot, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_color, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_val, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_max, &td[BREAK_ID_DAILY_LIMIT].bar_primary_color, &td[BREAK_ID_DAILY_LIMIT].bar_primary_val, &td[BREAK_ID_DAILY_LIMIT].bar_primary_max); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { workrave_timerbox_set_slot(priv->timerbox, i, td[i].slot); } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { WorkraveTimebar *timebar = workrave_timerbox_get_time_bar(priv->timerbox, i); if (timebar != NULL) { workrave_timerbox_set_enabled(priv->timerbox, TRUE); workrave_timerbox_control_update_show_tray_icon(self); workrave_timebar_set_progress(timebar, td[i].bar_primary_val, td[i].bar_primary_max, td[i].bar_primary_color); workrave_timebar_set_secondary_progress( timebar, td[i].bar_secondary_val, td[i].bar_secondary_max, td[i].bar_secondary_color); workrave_timebar_set_text(timebar, td[i].bar_text); } } workrave_timerbox_update(priv->timerbox, priv->image); } static void on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)connection; (void)name; (void)user_data; } static void on_workrave_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); priv->workrave_running = TRUE; workrave_timerbox_control_check(self); } static void on_workrave_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data) { WorkraveTimerboxControl *self = WORKRAVE_TIMERBOX_CONTROL(user_data); WorkraveTimerboxControlPrivate *priv = workrave_timerbox_control_get_instance_private(self); priv->workrave_running = FALSE; workrave_timerbox_control_stop(self); } workrave-1.10.50/frontend/applets/common/Makefile.in0000644000000000000000000005527614221624201022351 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/common ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/common/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/common/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/common/Makefile.am0000644000175100001710000000030014221624107021226 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include workrave-1.10.50/frontend/applets/cinnamon/0000755000000000000000000000000014221624441020605 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/cinnamon/src/0000755000000000000000000000000014221624441021374 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/cinnamon/src/Makefile.in0000644000000000000000000005022114221624201023433 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/cinnamon/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_extension_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(extensiondir)" \ "$(DESTDIR)$(extensiondir)" DATA = $(dist_extension_DATA) $(nodist_extension_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ topextensiondir = $(datadir)/cinnamon/applets extensionurl = http://www.workrave.org uuid = workrave@workrave.org extensiondir = $(topextensiondir)/$(uuid) dist_extension_DATA = applet.js nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION) EXTRA_DIST = metadata.json.in CLEANFILES = metadata.json all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/cinnamon/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/cinnamon/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_extensionDATA: $(dist_extension_DATA) @$(NORMAL_INSTALL) @list='$(dist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(extensiondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(extensiondir)" || 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)$(extensiondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(extensiondir)" || exit $$?; \ done uninstall-dist_extensionDATA: @$(NORMAL_UNINSTALL) @list='$(dist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(extensiondir)'; $(am__uninstall_files_from_dir) install-nodist_extensionDATA: $(nodist_extension_DATA) @$(NORMAL_INSTALL) @list='$(nodist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(extensiondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(extensiondir)" || 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)$(extensiondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(extensiondir)" || exit $$?; \ done uninstall-nodist_extensionDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(extensiondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(extensiondir)" "$(DESTDIR)$(extensiondir)"; 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 mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_extensionDATA \ install-nodist_extensionDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_extensionDATA \ uninstall-nodist_extensionDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_extensionDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-nodist_extensionDATA install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_extensionDATA \ uninstall-nodist_extensionDATA .PRECIOUS: Makefile metadata.json: metadata.json.in $(top_builddir)/config.status $(AM_V_GEN) sed -e "s|[@]LOCALEDIR@|$(datadir)/locale|" \ -e "s|[@]uuid@|$(uuid)|" \ -e "s|[@]shell_current@|$(GNOME_SHELL_VERSION)|" \ -e "s|[@]url@|$(extensionurl)|" $< > $@ # 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: workrave-1.10.50/frontend/applets/cinnamon/src/metadata.json.in0000644000175100001710000000017614221624107023366 0ustar00gdm00000000000000{ "uuid": "@uuid@", "name": "Workrave", "description": "Applet that shows all the Workrave timers.", "icon": "workrave" } workrave-1.10.50/frontend/applets/cinnamon/src/applet.js0000644000175100001710000003534214221624107022134 0ustar00gdm00000000000000const Applet = imports.ui.applet; const St = imports.gi.St; const Mainloop = imports.mainloop; const Lang = imports.lang; const PopupMenu = imports.ui.popupMenu; const Gettext = imports.gettext; const GLib = imports.gi.GLib; const Gio = imports.gi.Gio; const Workrave = imports.gi.Workrave; const _ = Gettext.gettext; let start = GLib.get_monotonic_time(); global.log('workrave-applet: start @ ' + start); const IndicatorIface = '\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '; let IndicatorProxy = Gio.DBusProxy.makeProxyWrapper(IndicatorIface); const CoreIface = '\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '; let CoreProxy = Gio.DBusProxy.makeProxyWrapper(CoreIface); function MyApplet(metadata, orientation, panel_height, instanceId) { this._init(metadata, orientation, panel_height, instanceId); } MyApplet.prototype = { __proto__: Applet.Applet.prototype, _init: function(metadata, orientation, panel_height) { Applet.Applet.prototype._init.call(this, orientation, panel_height); this.menuManager = new PopupMenu.PopupMenuManager(this); this.menu = new Applet.AppletPopupMenu(this, orientation); this.menuManager.addMenu(this.menu); this._timerbox = new Workrave.Timerbox(); this._force_icon = false; this._height = panel_height; this._padding = 0; this._bus_name = 'org.workrave.CinnamonApplet'; this._bus_id = 0; this._area = new St.DrawingArea(); this._area.set_width(this.width=24); this._area.set_height(this.height=this.panel_height); this._area.connect('repaint', Lang.bind(this, this._draw)); this.actor.add_actor(this._area, { y_align: St.Align.MIDDLE, y_fill: false }); this.actor.show(); this.actor.connect('destroy', Lang.bind(this, this._onDestroy)); this._ui_proxy = new IndicatorProxy(Gio.DBus.session, 'org.workrave.Workrave', '/org/workrave/Workrave/UI'); this._timers_updated_id = this._ui_proxy.connectSignal("TimersUpdated", Lang.bind(this, this._onTimersUpdated)); this._menu_updated_id = this._ui_proxy.connectSignal("MenuUpdated", Lang.bind(this, this._onMenuUpdated)); this._trayicon_updated_id = this._ui_proxy.connectSignal("TrayIconUpdated", Lang.bind(this, this._onTrayIconUpdated)); this._core_proxy = new CoreProxy(Gio.DBus.session, 'org.workrave.Workrave', '/org/workrave/Workrave/Core'); this._operation_mode_changed_id = this._core_proxy.connectSignal("OperationModeChanged", Lang.bind(this, this._onOperationModeChanged)); this._updateMenu(null); Gio.DBus.session.watch_name('org.workrave.Workrave', Gio.BusNameWatcherFlags.NONE, // no auto launch Lang.bind(this, this._onWorkraveAppeared), Lang.bind(this, this._onWorkraveVanished)); }, on_applet_removed_from_panel: function() { this._onDestroy(); }, on_applet_clicked: function(event) { this.menu.toggle(); }, _onDestroy: function() { this._ui_proxy.EmbedRemote(false, 'CinnamonApplet'); this._stop(); this._destroy(); }, _destroy: function() { this._ui_proxy.disconnectSignal(this._timers_updated_id); this._ui_proxy.disconnectSignal(this._menu_updated_id); this._ui_proxy.disconnectSignal(this._trayicon_updated_id); this._ui_proxy = null; this._core_proxy.disconnectSignal(this._operation_mode_changed_id); this._core_proxy = null; this.actor.destroy(); }, _start: function() { if (! this._alive) { this._bus_id = Gio.DBus.session.own_name(this._bus_name, Gio.BusNameOwnerFlags.NONE, null, null); this._ui_proxy.GetMenuRemote(Lang.bind(this, this._onGetMenuReply)); this._ui_proxy.GetTrayIconEnabledRemote(Lang.bind(this, this._onGetTrayIconEnabledReply)); this._ui_proxy.EmbedRemote(true, this._bus_name); this._core_proxy.GetOperationModeRemote(Lang.bind(this, this._onGetOperationModeReply)); this._timeoutId = Mainloop.timeout_add(5000, Lang.bind(this, this._onTimer)); this._alive = true; this._update_count = 0; } }, _stop: function() { if (this._alive) { Mainloop.source_remove(this._timeoutId); Gio.DBus.session.unown_name(this._bus_id); this._bus_id = 0; this._timerbox.set_enabled(false); this._timerbox.set_force_icon(false); this._area.queue_repaint(); this._alive = false; this._updateMenu(null); this._area.set_width(this.width=24); } }, _draw: function(area) { let [width, height] = area.get_surface_size(); let cr = area.get_context(); let bar_height = this._timerbox.get_height(); let padding = Math.floor((height + this._padding - bar_height) / 2); this.actor.style = "padding-top: " + padding + "px;"; this._padding = padding; this._timerbox.draw(cr); }, _onTimer: function() { if (! this._alive) { return false; } if (this._update_count == 0) { this._timerbox.set_enabled(false); this._timerbox.set_force_icon(false); this._area.queue_repaint(); } this._update_count = 0; return this._alive; }, _onWorkraveAppeared: function(owner) { this._start(); }, _onWorkraveVanished: function(oldOwner) { this._stop(); }, _onTimersUpdated : function(emitter, senderName, [microbreak, restbreak, daily]) { if (! this._alive) { this._start(); } this._update_count++; this._timerbox.set_slot(0, microbreak[1]); this._timerbox.set_slot(1, restbreak[1]); this._timerbox.set_slot(2, daily[1]); var timebar = this._timerbox.get_time_bar(0); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(microbreak[6], microbreak[7], microbreak[5]); timebar.set_secondary_progress(microbreak[3], microbreak[4], microbreak[2]); timebar.set_text(microbreak[0]); } timebar = this._timerbox.get_time_bar(1); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(restbreak[6], restbreak[7], restbreak[5]); timebar.set_secondary_progress(restbreak[3], restbreak[4], restbreak[2]); timebar.set_text(restbreak[0]); } timebar = this._timerbox.get_time_bar(2); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(daily[6], daily[7], daily[5]); timebar.set_secondary_progress(daily[3], daily[4], daily[2]); timebar.set_text(daily[0]); } let width = this._timerbox.get_width(); this._area.set_width(this.width=width); this._area.queue_repaint(); }, _onGetMenuReply : function([menuitems], excp) { this._updateMenu(menuitems); }, _onGetTrayIconEnabledReply : function([enabled], excp) { this._updateTrayIcon(enabled); }, _onGetOperationModeReply : function([mode], excp) { this._timerbox.set_operation_mode(mode); }, _onMenuUpdated : function(emitter, senderName, [menuitems]) { this._updateMenu(menuitems); }, _onTrayIconUpdated : function(emitter, senderName, [enabled]) { this._updateTrayIcon(enabled); }, _onOperationModeChanged : function(emitter, senderName, [mode]) { this._timerbox.set_operation_mode(mode); }, _onCommandReply : function(menuitems) { }, _onMenuCommand : function(item, event, dummy, command) { this._ui_proxy.CommandRemote(command, Lang.bind(this, this._onCommandReply)); }, _onMenuOpenCommand: function(item, event) { this._ui_proxy.GetMenuRemote(); // A dummy method call to re-activate the service }, _updateTrayIcon : function(enabled) { this._force_icon = enabled; this._timerbox.set_force_icon(this._force_icon); }, _updateMenu : function(menuitems) { this.menu.removeAll(); let current_menu = this.menu; let indent = ""; if (menuitems == null || menuitems.length == 0) { let popup = new PopupMenu.PopupMenuItem(_("Open Workrave")); popup.connect('activate', Lang.bind(this, this._onMenuOpenCommand)); current_menu.addMenuItem(popup); } else { for (var item in menuitems) { let text = indent + menuitems[item][0]; let command = menuitems[item][1]; let flags = menuitems[item][2]; if ((flags & 1) != 0) { let popup = new PopupMenu.PopupSubMenuMenuItem(text); this.menu.addMenuItem(popup); current_menu = popup.menu; indent = " "; // Look at CSS?? } else if ((flags & 2) != 0) { current_menu = this.menu; indent = ""; } else { let active = ((flags & 16) != 0); let popup; if (text == "") { popup = new PopupSub.PopupSeparatorMenuItem(); } else if ((flags & 4) != 0) { popup = new PopupMenu.PopupSwitchMenuItem(text); popup.setToggleState(active); } else if ((flags & 8) != 0) { popup = new PopupMenu.PopupMenuItem(text); // Gnome 3.6 & 3.8 if (typeof popup.setShowDot === "function") { popup.setShowDot(active); } // Gnome 3.10 & newer else if (typeof popup.setOrnament === "function") { popup.setOrnament(active ? PopupMenu.Ornament.DOT : PopupMenu.Ornament.NONE); } } else { popup = new PopupMenu.PopupMenuItem(text); } popup.connect('activate', Lang.bind(this, this._onMenuCommand, command)); current_menu.addMenuItem(popup); } } } } }; function main(metadata, orientation, panel_height, instanceId) { let myApplet = new MyApplet(metadata, orientation, panel_height, instanceId); return myApplet; } workrave-1.10.50/frontend/applets/cinnamon/src/Makefile.am0000644000175100001710000000106114221624107022334 0ustar00gdm00000000000000topextensiondir = $(datadir)/cinnamon/applets extensionurl = http://www.workrave.org uuid = workrave@workrave.org extensiondir = $(topextensiondir)/$(uuid) dist_extension_DATA = applet.js nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION) EXTRA_DIST = metadata.json.in metadata.json: metadata.json.in $(top_builddir)/config.status $(AM_V_GEN) sed -e "s|[@]LOCALEDIR@|$(datadir)/locale|" \ -e "s|[@]uuid@|$(uuid)|" \ -e "s|[@]shell_current@|$(GNOME_SHELL_VERSION)|" \ -e "s|[@]url@|$(extensionurl)|" $< > $@ CLEANFILES = metadata.json workrave-1.10.50/frontend/applets/cinnamon/Makefile.in0000644000000000000000000005527414221624201022661 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/cinnamon ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/cinnamon/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/cinnamon/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/cinnamon/Makefile.am0000644000175100001710000000027014221624107021546 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/applets/xfce/0000755000000000000000000000000014221624441017730 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/xfce/include/0000755000000000000000000000000014221624441021353 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/xfce/include/Makefile.in0000644000000000000000000004075114221624201023421 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/xfce/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/xfce/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/xfce/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/xfce/include/Makefile.am0000644000175100001710000000032414221624107022314 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/frontend/applets/xfce/src/0000755000000000000000000000000014221624441020517 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/xfce/src/workrave-xfce-applet-2.0.desktop.in.in0000644000175100001710000000027114221624107026375 0ustar00gdm00000000000000[Xfce Panel] Type=X-XFCE-PanelPlugin Encoding=UTF-8 _Name=Workrave _Comment=Workrave Icon=workrave X-XFCE-Module=workrave-plugin X-XFCE-Internal=false X-XFCE-Unique=true X-XFCE-API=2.0 workrave-1.10.50/frontend/applets/xfce/src/Makefile.in0000644000000000000000000010712314221624201022562 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@plugin_PROGRAMS = xfce4-workrave-plugin$(EXEEXT) subdir = frontend/applets/xfce/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" \ "$(DESTDIR)$(desktopdir)" PROGRAMS = $(plugin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@libworkrave_plugin_la_DEPENDENCIES = \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ $(am__DEPENDENCIES_1) am__libworkrave_plugin_la_SOURCES_DIST = main.c @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@am_libworkrave_plugin_la_OBJECTS = libworkrave_plugin_la-main.lo libworkrave_plugin_la_OBJECTS = $(am_libworkrave_plugin_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libworkrave_plugin_la_CFLAGS) $(CFLAGS) \ $(libworkrave_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@am_libworkrave_plugin_la_rpath = \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -rpath $(plugindir) am__xfce4_workrave_plugin_SOURCES_DIST = main.c @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@am_xfce4_workrave_plugin_OBJECTS = xfce4_workrave_plugin-main.$(OBJEXT) xfce4_workrave_plugin_OBJECTS = $(am_xfce4_workrave_plugin_OBJECTS) @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@xfce4_workrave_plugin_DEPENDENCIES = \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ $(am__DEPENDENCIES_1) xfce4_workrave_plugin_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(xfce4_workrave_plugin_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_plugin_la-main.Plo \ ./$(DEPDIR)/xfce4_workrave_plugin-main.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_plugin_la_SOURCES) \ $(xfce4_workrave_plugin_SOURCES) DIST_SOURCES = $(am__libworkrave_plugin_la_SOURCES_DIST) \ $(am__xfce4_workrave_plugin_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(desktop_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@plugindir = $(libdir)/xfce4/panel-plugins @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@plugindir = $(XFCE4LIBDIR)/xfce4/panel/plugins @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@xfce4_workrave_plugin_SOURCES = main.c @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@xfce4_workrave_plugin_CFLAGS = -Wall -std=c99 \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ $(LIBXFCE4UTIL_CFLAGS) $(LIBXFCEGUI4_CFLAGS) $(LIBXFCE4PANEL_CFLAGS) \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@xfce4_workrave_plugin_LDADD = $(LIBXFCE4UTIL_LIBS) $(LIBXFCEGUI4_LIBS) $(LIBXFCE4PANEL_LIBS) \ @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ @GTK2_LIBS@ -L$(builddir)/../../common/src -lworkrave-gtk2-private-1.0 @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@plugin_LTLIBRARIES = libworkrave-plugin.la @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@libworkrave_plugin_la_SOURCES = main.c @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@libworkrave_plugin_la_CFLAGS = -Wall -std=c99 \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ $(LIBXFCE4UTIL_CFLAGS) $(LIBXFCEGUI4_CFLAGS) $(LIBXFCE4PANEL_CFLAGS) \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@libworkrave_plugin_la_LIBADD = $(LIBXFCE4UTIL_LIBS) $(LIBXFCEGUI4_LIBS) $(LIBXFCE4PANEL_LIBS) \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -L$(builddir)/../../common/src -lworkrave-private-1.0 @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@libworkrave_plugin_la_LDFLAGS = \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -avoid-version \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -module \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -no-undefined \ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' @HAVE_XFCE_TRUE@desktopdir = $(datadir)/xfce4/panel/plugins @HAVE_XFCE_TRUE@desktop_DATA = workrave-xfce-applet.desktop desktop_in_in_files = workrave-xfce-applet-1.0.desktop.in.in workrave-xfce-applet-2.0.desktop.in.in desktop_in_files = $(desktop_in_in_files:.desktop.in.in=.desktop.in) EXTRA_DIST = \ $(desktop_in_in_files) CLEANFILES = \ workrave-xfce-applet.desktop.in \ $(desktop_in_files) \ $(desktop_DATA) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/xfce/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/xfce/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-pluginPROGRAMS: $(plugin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(plugin_PROGRAMS)'; test -n "$(plugindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(plugindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(plugindir)" || 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)$(plugindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(plugindir)$$dir" || exit $$?; \ } \ ; done uninstall-pluginPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(plugin_PROGRAMS)'; test -n "$(plugindir)" || 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)$(plugindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(plugindir)" && rm -f $$files clean-pluginPROGRAMS: @list='$(plugin_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 install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(plugin_LTLIBRARIES)'; test -n "$(plugindir)" || 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)$(plugindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(plugindir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(plugindir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(plugindir)"; \ } uninstall-pluginLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(plugin_LTLIBRARIES)'; test -n "$(plugindir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(plugindir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(plugindir)/$$f"; \ done clean-pluginLTLIBRARIES: -test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES) @list='$(plugin_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-plugin.la: $(libworkrave_plugin_la_OBJECTS) $(libworkrave_plugin_la_DEPENDENCIES) $(EXTRA_libworkrave_plugin_la_DEPENDENCIES) $(AM_V_CCLD)$(libworkrave_plugin_la_LINK) $(am_libworkrave_plugin_la_rpath) $(libworkrave_plugin_la_OBJECTS) $(libworkrave_plugin_la_LIBADD) $(LIBS) xfce4-workrave-plugin$(EXEEXT): $(xfce4_workrave_plugin_OBJECTS) $(xfce4_workrave_plugin_DEPENDENCIES) $(EXTRA_xfce4_workrave_plugin_DEPENDENCIES) @rm -f xfce4-workrave-plugin$(EXEEXT) $(AM_V_CCLD)$(xfce4_workrave_plugin_LINK) $(xfce4_workrave_plugin_OBJECTS) $(xfce4_workrave_plugin_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_plugin_la-main.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xfce4_workrave_plugin-main.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_plugin_la-main.lo: main.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) $(libworkrave_plugin_la_CFLAGS) $(CFLAGS) -MT libworkrave_plugin_la-main.lo -MD -MP -MF $(DEPDIR)/libworkrave_plugin_la-main.Tpo -c -o libworkrave_plugin_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_plugin_la-main.Tpo $(DEPDIR)/libworkrave_plugin_la-main.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libworkrave_plugin_la-main.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) $(libworkrave_plugin_la_CFLAGS) $(CFLAGS) -c -o libworkrave_plugin_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c xfce4_workrave_plugin-main.o: main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xfce4_workrave_plugin_CFLAGS) $(CFLAGS) -MT xfce4_workrave_plugin-main.o -MD -MP -MF $(DEPDIR)/xfce4_workrave_plugin-main.Tpo -c -o xfce4_workrave_plugin-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xfce4_workrave_plugin-main.Tpo $(DEPDIR)/xfce4_workrave_plugin-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='xfce4_workrave_plugin-main.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) $(xfce4_workrave_plugin_CFLAGS) $(CFLAGS) -c -o xfce4_workrave_plugin-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c xfce4_workrave_plugin-main.obj: main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xfce4_workrave_plugin_CFLAGS) $(CFLAGS) -MT xfce4_workrave_plugin-main.obj -MD -MP -MF $(DEPDIR)/xfce4_workrave_plugin-main.Tpo -c -o xfce4_workrave_plugin-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xfce4_workrave_plugin-main.Tpo $(DEPDIR)/xfce4_workrave_plugin-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='xfce4_workrave_plugin-main.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) $(xfce4_workrave_plugin_CFLAGS) $(CFLAGS) -c -o xfce4_workrave_plugin-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || 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)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(DATA) installdirs: for dir in "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(desktopdir)"; 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-pluginLTLIBRARIES \ clean-pluginPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_plugin_la-main.Plo -rm -f ./$(DEPDIR)/xfce4_workrave_plugin-main.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-desktopDATA install-pluginLTLIBRARIES \ install-pluginPROGRAMS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/libworkrave_plugin_la-main.Plo -rm -f ./$(DEPDIR)/xfce4_workrave_plugin-main.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-desktopDATA uninstall-pluginLTLIBRARIES \ uninstall-pluginPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-pluginLTLIBRARIES \ clean-pluginPROGRAMS cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-desktopDATA 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-pluginLTLIBRARIES install-pluginPROGRAMS 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 tags-am uninstall \ uninstall-am uninstall-desktopDATA uninstall-pluginLTLIBRARIES \ uninstall-pluginPROGRAMS .PRECIOUS: Makefile @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@workrave-xfce-applet.desktop.in: workrave-xfce-applet-1.0.desktop.in.in @HAVE_XFCE_GTK2_TRUE@@HAVE_XFCE_TRUE@ sed -e "s,\@libexecdir\@,$(libdir),g" < $< > $@ @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@workrave-xfce-applet.desktop.in: workrave-xfce-applet-2.0.desktop.in.in @HAVE_XFCE_GTK3_TRUE@@HAVE_XFCE_TRUE@ sed -e "s,\@libexecdir\@,$(libdir),g" < $< > $@ @HAVE_XFCE_TRUE@@INTLTOOL_DESKTOP_RULE@ # 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: workrave-1.10.50/frontend/applets/xfce/src/workrave-xfce-applet-1.0.desktop.in.in0000644000175100001710000000027014221624107026373 0ustar00gdm00000000000000[Xfce Panel] Type=X-XFCE-PanelPlugin Encoding=UTF-8 _Name=Workrave _Comment=Workrave Icon=workrave X-XFCE-Exec=@libexecdir@/xfce4/panel-plugins/xfce4-workrave-plugin X-XFCE-Unique=trueworkrave-1.10.50/frontend/applets/xfce/src/Makefile.am0000644000175100001710000000411414221624107021461 0ustar00gdm00000000000000if HAVE_XFCE if HAVE_XFCE_GTK2 plugin_PROGRAMS = xfce4-workrave-plugin plugindir = $(libdir)/xfce4/panel-plugins xfce4_workrave_plugin_SOURCES = main.c xfce4_workrave_plugin_CFLAGS = -Wall -std=c99 \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ $(LIBXFCE4UTIL_CFLAGS) $(LIBXFCEGUI4_CFLAGS) $(LIBXFCE4PANEL_CFLAGS) \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" xfce4_workrave_plugin_LDADD = $(LIBXFCE4UTIL_LIBS) $(LIBXFCEGUI4_LIBS) $(LIBXFCE4PANEL_LIBS) \ @GTK2_LIBS@ -L$(builddir)/../../common/src -lworkrave-gtk2-private-1.0 workrave-xfce-applet.desktop.in: workrave-xfce-applet-1.0.desktop.in.in sed -e "s,\@libexecdir\@,$(libdir),g" < $< > $@ endif if HAVE_XFCE_GTK3 plugin_LTLIBRARIES = libworkrave-plugin.la plugindir = $(XFCE4LIBDIR)/xfce4/panel/plugins libworkrave_plugin_la_SOURCES = main.c libworkrave_plugin_la_CFLAGS = -Wall -std=c99 \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ $(LIBXFCE4UTIL_CFLAGS) $(LIBXFCEGUI4_CFLAGS) $(LIBXFCE4PANEL_CFLAGS) \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" libworkrave_plugin_la_LIBADD = $(LIBXFCE4UTIL_LIBS) $(LIBXFCEGUI4_LIBS) $(LIBXFCE4PANEL_LIBS) \ -L$(builddir)/../../common/src -lworkrave-private-1.0 libworkrave_plugin_la_LDFLAGS = \ -avoid-version \ -module \ -no-undefined \ -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' workrave-xfce-applet.desktop.in: workrave-xfce-applet-2.0.desktop.in.in sed -e "s,\@libexecdir\@,$(libdir),g" < $< > $@ endif desktopdir = $(datadir)/xfce4/panel/plugins desktop_DATA = workrave-xfce-applet.desktop @INTLTOOL_DESKTOP_RULE@ endif desktop_in_in_files = workrave-xfce-applet-1.0.desktop.in.in workrave-xfce-applet-2.0.desktop.in.in desktop_in_files = $(desktop_in_in_files:.desktop.in.in=.desktop.in) EXTRA_DIST = \ $(desktop_in_in_files) CLEANFILES = \ workrave-xfce-applet.desktop.in \ $(desktop_in_files) \ $(desktop_DATA) workrave-1.10.50/frontend/applets/xfce/src/main.c0000644000175100001710000003146714221624107020530 0ustar00gdm00000000000000// Copyright (C) 2002 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "control.h" #include "credits.h" #include "nls.h" #include "MenuEnums.hh" typedef struct _WorkraveApplet { XfcePanelPlugin *plugin; WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; int inhibit; GtkMenuItem *menu_items[MENU_COMMAND_SIZEOF]; } WorkraveApplet; static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); static void on_menu_command(GtkMenuItem *menuitem, gpointer user_data); static void on_menu_check_changed(GtkMenuItem *item, gpointer user_data); static void on_menu_radio_changed(GtkMenuItem *item, gpointer user_data); static void on_menu_about(GtkMenuItem *item, WorkraveApplet *applet); static void on_menu_mode_changed(const char *mode, WorkraveApplet *applet); struct Menuitems { enum MenuCommand id; gboolean autostart; char *dbuscmd; }; static struct Menuitems menu_data[] = {{MENU_COMMAND_OPEN, TRUE, "OpenMain"}, {MENU_COMMAND_PREFERENCES, FALSE, "Preferences"}, {MENU_COMMAND_EXERCISES, FALSE, "Exercises"}, {MENU_COMMAND_REST_BREAK, FALSE, "RestBreak"}, {MENU_COMMAND_MODE_SUBMENU, FALSE, NULL}, {MENU_COMMAND_MODE_NORMAL, FALSE, NULL}, {MENU_COMMAND_MODE_QUIET, FALSE, NULL}, {MENU_COMMAND_MODE_SUSPENDED, FALSE, NULL}, {MENU_COMMAND_NETWORK_SUBMENU, FALSE, NULL}, {MENU_COMMAND_NETWORK_CONNECT, FALSE, "NetworkConnect"}, {MENU_COMMAND_NETWORK_DISCONNECT, FALSE, "NetworkDisconnect"}, {MENU_COMMAND_NETWORK_LOG, FALSE, "NetworkLog"}, {MENU_COMMAND_NETWORK_RECONNECT, FALSE, "NetworkReconnect"}, {MENU_COMMAND_STATISTICS, FALSE, "Statistics"}, {MENU_COMMAND_ABOUT, FALSE, NULL}, {MENU_COMMAND_MODE_READING, FALSE, "ReadingMode"}, {MENU_COMMAND_QUIT, FALSE, "Quit"}}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_menu_item(WorkraveApplet *applet, GtkMenuItem *item) { for (int i = 0; i < MENU_COMMAND_SIZEOF; i++) { if (applet->menu_items[i] == item) { return lookup_menu_index_by_id(i); } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; applet->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkMenuItem *item = applet->menu_items[i]; if (item != NULL) { gtk_widget_set_visible(GTK_WIDGET(item), FALSE); } } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; GSList *radio_group = NULL; GtkWidget *menu = NULL; while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GtkMenuItem *item = applet->menu_items[id]; if (flags & MENU_ITEM_FLAG_SUBMENU_END) { radio_group = NULL; menu = NULL; } else if (item == NULL) { if (flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { menu = gtk_menu_new(); item = GTK_MENU_ITEM(gtk_menu_item_new_with_label(text)); gtk_menu_item_set_submenu(item, menu); } else if (flags & MENU_ITEM_FLAG_RADIO) { item = GTK_MENU_ITEM(gtk_radio_menu_item_new_with_label(radio_group, text)); radio_group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(item)); g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(on_menu_radio_changed), applet); } else if (flags & MENU_ITEM_FLAG_CHECK) { item = GTK_MENU_ITEM(gtk_check_menu_item_new_with_label(text)); g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(on_menu_check_changed), applet); } else { item = GTK_MENU_ITEM(gtk_menu_item_new_with_label(text)); g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(on_menu_command), applet); } if (item == NULL) { continue; } applet->menu_items[id] = item; if (menu != NULL && !(flags & MENU_ITEM_FLAG_SUBMENU_BEGIN)) { gtk_menu_shell_append(GTK_MENU_SHELL(menu), GTK_WIDGET(item)); } else if (!(flags & MENU_ITEM_FLAG_SUBMENU_END)) { xfce_panel_plugin_menu_insert_item(applet->plugin, item); } } if (item != NULL) { applet->inhibit++; if (GTK_IS_CHECK_MENU_ITEM(item)) { gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), flags & MENU_ITEM_FLAG_ACTIVE); } applet->inhibit--; gtk_widget_show(GTK_WIDGET(item)); } } g_variant_iter_free(iter); } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_command(GtkMenuItem *item, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; if (applet->inhibit > 0) { return; } int index = lookup_menu_index_by_menu_item(applet, item); if (index == -1) { return; } switch (menu_data[index].id) { case MENU_COMMAND_ABOUT: on_menu_about(item, applet); break; default: { GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, NULL, menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } break; } } static void on_menu_about(GtkMenuItem *item, WorkraveApplet *applet) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", "program-name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_check_changed(GtkMenuItem *item, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; if (applet->inhibit > 0) { return; } int index = lookup_menu_index_by_menu_item(applet, item); if (index == -1) { return; } gboolean new_state = FALSE; if (GTK_IS_CHECK_MENU_ITEM(item)) { new_state = gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(item)); } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, g_variant_new("(b)", new_state), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } static void on_menu_radio_changed(GtkMenuItem *item, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; if (applet->inhibit > 0) { return; } int index = lookup_menu_index_by_menu_item(applet, item); if (index == -1) { return; } switch (menu_data[index].id) { case MENU_COMMAND_MODE_NORMAL: on_menu_mode_changed("normal", applet); break; case MENU_COMMAND_MODE_SUSPENDED: on_menu_mode_changed("suspended", applet); break; case MENU_COMMAND_MODE_QUIET: on_menu_mode_changed("quiet", applet); break; default: break; } } static void on_menu_mode_changed(const char *mode, WorkraveApplet *applet) { GDBusProxy *proxy = workrave_timerbox_control_get_core_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "SetOperationMode", g_variant_new("(s)", mode), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static void workrave_applet_fill(WorkraveApplet *applet) { applet->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->image = workrave_timerbox_control_get_image(applet->timerbox_control); g_signal_connect(G_OBJECT(applet->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); gtk_container_add(GTK_CONTAINER(applet->plugin), GTK_WIDGET(applet->image)); gtk_widget_show_all(GTK_WIDGET(applet->plugin)); } static void workrave_applet_construct(XfcePanelPlugin *plugin) { WorkraveApplet *applet = g_slice_new0(WorkraveApplet); applet->plugin = plugin; applet->image = NULL; applet->timerbox_control = NULL; applet->alive = FALSE; applet->inhibit = 0; for (int i = 0; i < MENU_COMMAND_SIZEOF; i++) { applet->menu_items[i] = NULL; } workrave_applet_fill(applet); xfce_panel_plugin_set_expand(plugin, FALSE); gtk_widget_show_all(GTK_WIDGET(plugin)); } #ifdef HAVE_XFCE_GTK3 XFCE_PANEL_PLUGIN_REGISTER(workrave_applet_construct); #else XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(workrave_applet_construct); #endif workrave-1.10.50/frontend/applets/xfce/Makefile.in0000644000000000000000000005527014221624201022000 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/xfce ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/xfce/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/xfce/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/xfce/Makefile.am0000644000175100001710000000030014221624107020663 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include workrave-1.10.50/frontend/applets/Makefile.in0000644000000000000000000005534614221624201021057 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2005, 2008, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 common gnome3 indicator gnome-shell cinnamon xfce mate all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/mate/0000755000000000000000000000000014221624441017731 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/mate/include/0000755000000000000000000000000014221624441021354 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/mate/include/Makefile.in0000644000000000000000000004075114221624201023422 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/mate/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/mate/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/mate/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/mate/include/Makefile.am0000644000175100001710000000032414221624107022315 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/frontend/applets/mate/src/0000755000000000000000000000000014221624441020520 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/mate/src/main-gtk3.c0000644000175100001710000003232014221624107021364 0ustar00gdm00000000000000// Copyright (C) 2002 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "control.h" #include "MenuEnums.hh" #include "credits.h" #include "nls.h" #include #include #include #include typedef struct _WorkraveApplet { MatePanelApplet *applet; GtkActionGroup *action_group; WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; int inhibit; } WorkraveApplet; static void workrave_applet_fill(WorkraveApplet *applet); static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); struct Menuitems { enum MenuCommand id; gboolean autostart; gboolean visible_when_not_running; char *action; char *dbuscmd; }; static struct Menuitems menu_data[] = {{MENU_COMMAND_OPEN, TRUE, TRUE, "Open", "OpenMain"}, {MENU_COMMAND_PREFERENCES, FALSE, FALSE, "Preferences", "Preferences"}, {MENU_COMMAND_EXERCISES, FALSE, FALSE, "Exercises", "Exercises"}, {MENU_COMMAND_REST_BREAK, FALSE, FALSE, "Restbreak", "RestBreak"}, {MENU_COMMAND_MODE_NORMAL, FALSE, FALSE, "Normal", NULL}, {MENU_COMMAND_MODE_QUIET, FALSE, FALSE, "Quiet", NULL}, {MENU_COMMAND_MODE_SUSPENDED, FALSE, FALSE, "Suspended", NULL}, {MENU_COMMAND_NETWORK_CONNECT, FALSE, FALSE, "Join", "NetworkConnect"}, {MENU_COMMAND_NETWORK_DISCONNECT, FALSE, FALSE, "Disconnect", "NetworkDisconnect"}, {MENU_COMMAND_NETWORK_LOG, FALSE, FALSE, "ShowLog", "NetworkLog"}, {MENU_COMMAND_NETWORK_RECONNECT, FALSE, FALSE, "Reconnect", "NetworkReconnect"}, {MENU_COMMAND_STATISTICS, FALSE, FALSE, "Statistics", "Statistics"}, {MENU_COMMAND_ABOUT, FALSE, TRUE, "About", NULL}, {MENU_COMMAND_MODE_READING, FALSE, FALSE, "ReadingMode", "ReadingMode"}, {MENU_COMMAND_QUIT, FALSE, FALSE, "Quit", "Quit"}}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_action(const char *action) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (g_strcmp0(menu_data[i].action, action) == 0) { return i; } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)(user_data); applet->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[i].action); gtk_action_set_visible(action, menu_data[i].visible_when_not_running); } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; gboolean visible[sizeof(menu_data) / sizeof(struct Menuitems)]; for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { visible[i] = menu_data[i].visible_when_not_running; } while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[index].action); if (flags & MENU_ITEM_FLAG_SUBMENU_END || flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { continue; } visible[index] = TRUE; if (GTK_IS_TOGGLE_ACTION(action)) { GtkToggleAction *toggle = GTK_TOGGLE_ACTION(action); gtk_toggle_action_set_active(toggle, flags & MENU_ITEM_FLAG_ACTIVE); } } g_variant_iter_free(iter); for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[i].action); gtk_action_set_visible(action, visible[i]); } } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_about(GSimpleAction *action, GVariant *parameter, gpointer user_data) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_command(GtkAction *action, WorkraveApplet *applet) { int index = lookup_menu_index_by_action(gtk_action_get_name(action)); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, NULL, menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } static void on_menu_toggle(GtkAction *action, WorkraveApplet *applet) { gboolean new_state = FALSE; if (GTK_IS_TOGGLE_ACTION(action)) { GtkToggleAction *toggle = GTK_TOGGLE_ACTION(action); new_state = gtk_toggle_action_get_active(toggle); } int index = lookup_menu_index_by_action(gtk_action_get_name(action)); if (index == -1) { return; } GDBusProxy *proxy = workrave_timerbox_control_get_control_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, menu_data[index].dbuscmd, g_variant_new("(b)", new_state), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } static void on_menu_mode_changed(GtkRadioAction *action, GtkRadioAction *current, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)(user_data); const char *modes[] = {"normal", "suspended", "quiet"}; int mode = 0; if (GTK_IS_RADIO_ACTION(action)) { GtkRadioAction *toggle = GTK_RADIO_ACTION(action); mode = gtk_radio_action_get_current_value(toggle); } if (mode >= 0 && mode < G_N_ELEMENTS(modes)) { GDBusProxy *proxy = workrave_timerbox_control_get_core_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "SetOperationMode", g_variant_new("(s)", modes[mode]), G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, &applet); } } } static const GtkActionEntry menu_actions[] = { {"Open", GTK_STOCK_OPEN, N_("_Open"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Statistics", NULL, N_("_Statistics"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Preferences", GTK_STOCK_PREFERENCES, N_("_Preferences"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Exercises", NULL, N_("_Exercises"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Restbreak", NULL, N_("_Restbreak"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Mode", NULL, N_("_Mode"), NULL, NULL, NULL}, {"Network", NULL, N_("_Network"), NULL, NULL, NULL}, {"Join", NULL, N_("_Join"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Disconnect", NULL, N_("_Disconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Reconnect", NULL, N_("_Reconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK(on_menu_about)}, {"Quit", GTK_STOCK_QUIT, N_("_Quit"), NULL, NULL, G_CALLBACK(on_menu_command)}, }; static const GtkToggleActionEntry toggle_actions[] = { {"ShowLog", NULL, N_("Show log"), NULL, NULL, G_CALLBACK(on_menu_toggle), FALSE}, {"ReadingMode", NULL, N_("Reading mode"), NULL, NULL, G_CALLBACK(on_menu_toggle), FALSE}, }; static const GtkRadioActionEntry mode_actions[] = { {"Normal", NULL, N_("Normal"), NULL, NULL, 0}, {"Suspended", NULL, N_("Suspended"), NULL, NULL, 1}, {"Quiet", NULL, N_("Quiet"), NULL, NULL, 2}, }; static void workrave_applet_fill(WorkraveApplet *applet) { mate_panel_applet_set_flags(applet->applet, MATE_PANEL_APPLET_HAS_HANDLE); mate_panel_applet_set_background_widget(applet->applet, GTK_WIDGET(applet->applet)); applet->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->image = workrave_timerbox_control_get_image(applet->timerbox_control); g_signal_connect(G_OBJECT(applet->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); applet->action_group = gtk_action_group_new("WorkraveAppletActions"); gtk_action_group_set_translation_domain(applet->action_group, GETTEXT_PACKAGE); gtk_action_group_add_actions(applet->action_group, menu_actions, G_N_ELEMENTS(menu_actions), applet); gtk_action_group_add_toggle_actions(applet->action_group, toggle_actions, G_N_ELEMENTS(toggle_actions), applet); gtk_action_group_add_radio_actions( applet->action_group, mode_actions, G_N_ELEMENTS(mode_actions), 0, G_CALLBACK(on_menu_mode_changed), applet); gchar *ui_path = g_build_filename(WORKRAVE_MENU_UI_DIR, "workrave-menu.xml", NULL); mate_panel_applet_setup_menu_from_file(applet->applet, ui_path, applet->action_group); g_free(ui_path); gtk_container_add(GTK_CONTAINER(applet->applet), GTK_WIDGET(applet->image)); gtk_widget_show_all(GTK_WIDGET(applet->applet)); } static gboolean workrave_applet_factory(MatePanelApplet *applet, const gchar *iid, gpointer data) { gboolean retval = FALSE; if (g_strcmp0(iid, "WorkraveApplet") == 0) { WorkraveApplet *workrave_applet; workrave_applet = g_new0(WorkraveApplet, 1); workrave_applet->applet = applet; workrave_applet->action_group = NULL; workrave_applet->timerbox_control = NULL; workrave_applet->image = NULL; workrave_applet->alive = FALSE; workrave_applet->inhibit = 0; workrave_applet_fill(workrave_applet); retval = TRUE; } return retval; } MATE_PANEL_APPLET_OUT_PROCESS_FACTORY("WorkraveAppletFactory", PANEL_TYPE_APPLET, "WorkraveApplet", workrave_applet_factory, NULL); workrave-1.10.50/frontend/applets/mate/src/main-gtk2.c0000644000175100001710000003513214221624107021367 0ustar00gdm00000000000000// Copyright (C) 2002 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "control.h" #include "credits.h" #include "nls.h" #include "MenuEnums.hh" typedef struct _WorkraveApplet { MatePanelApplet *applet; GtkActionGroup *action_group; WorkraveTimerboxControl *timerbox_control; GtkImage *image; gboolean alive; int inhibit; } WorkraveApplet; static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data); struct Menuitems { enum MenuCommand id; gboolean autostart; gboolean visible_when_not_running; char *action; gboolean inhibit; }; static struct Menuitems menu_data[] = {{ MENU_COMMAND_OPEN, TRUE, TRUE, "Open", }, { MENU_COMMAND_PREFERENCES, FALSE, FALSE, "Preferences", }, { MENU_COMMAND_EXERCISES, FALSE, FALSE, "Exercises", }, { MENU_COMMAND_REST_BREAK, FALSE, FALSE, "Restbreak", }, { MENU_COMMAND_MODE_NORMAL, FALSE, FALSE, "Normal", }, { MENU_COMMAND_MODE_QUIET, FALSE, FALSE, "Quiet", }, { MENU_COMMAND_MODE_SUSPENDED, FALSE, FALSE, "Suspended", }, { MENU_COMMAND_NETWORK_CONNECT, FALSE, FALSE, "Join", }, { MENU_COMMAND_NETWORK_DISCONNECT, FALSE, FALSE, "Disconnect", }, { MENU_COMMAND_NETWORK_LOG, FALSE, FALSE, "ShowLog", }, { MENU_COMMAND_NETWORK_RECONNECT, FALSE, FALSE, "Reconnect", }, { MENU_COMMAND_STATISTICS, FALSE, FALSE, "Statistics", }, { MENU_COMMAND_ABOUT, FALSE, TRUE, "About", }, { MENU_COMMAND_MODE_READING, FALSE, FALSE, "ReadingMode", }, { MENU_COMMAND_QUIT, FALSE, FALSE, "Quit", }}; int lookup_menu_index_by_id(enum MenuCommand id) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (menu_data[i].id == id) { return i; } } return -1; } int lookup_menu_index_by_action(const char *action) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { if (g_strcmp0(menu_data[i].action, action) == 0) { return i; } } return -1; } void on_alive_changed(gpointer instance, gboolean alive, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)(user_data); applet->alive = alive; if (!alive) { for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[i].action); gtk_action_set_visible(action, menu_data[i].visible_when_not_running); } } } void on_menu_changed(gpointer instance, GVariant *parameters, gpointer user_data) { WorkraveApplet *applet = (WorkraveApplet *)user_data; applet->inhibit++; GVariantIter *iter; g_variant_get(parameters, "(a(sii))", &iter); char *text; int id; int flags; gboolean visible[sizeof(menu_data) / sizeof(struct Menuitems)]; for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { visible[i] = menu_data[i].visible_when_not_running; } while (g_variant_iter_loop(iter, "(sii)", &text, &id, &flags)) { int index = lookup_menu_index_by_id((enum MenuCommand)id); if (index == -1) { continue; } GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[index].action); if (flags & MENU_ITEM_FLAG_SUBMENU_END || flags & MENU_ITEM_FLAG_SUBMENU_BEGIN) { continue; } visible[index] = TRUE; if (GTK_IS_TOGGLE_ACTION(action)) { GtkToggleAction *toggle = GTK_TOGGLE_ACTION(action); gtk_toggle_action_set_active(toggle, flags & MENU_ITEM_FLAG_ACTIVE); } } g_variant_iter_free(iter); for (int i = 0; i < sizeof(menu_data) / sizeof(struct Menuitems); i++) { GtkAction *action = gtk_action_group_get_action(applet->action_group, menu_data[i].action); gtk_action_set_visible(action, visible[i]); } applet->inhibit--; } static void dbus_call_finish(GDBusProxy *proxy, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result; result = g_dbus_proxy_call_finish(proxy, res, &error); if (error != NULL) { g_warning("DBUS Failed: %s", error ? error->message : ""); g_error_free(error); } if (result != NULL) { g_variant_unref(result); } } static void on_menu_about(WorkraveApplet *applet) { GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(WORKRAVE_PKGDATADIR "/images/workrave.png", NULL); GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new()); gtk_container_set_border_width(GTK_CONTAINER(about), 5); gtk_show_about_dialog(NULL, "name", "Workrave", #ifdef GIT_VERSION "version", PACKAGE_VERSION "\n(" GIT_VERSION ")", #else "version", PACKAGE_VERSION, #endif "copyright", workrave_copyright, "website", "http://www.workrave.org", "website_label", "www.workrave.org", "comments", _("This program assists in the prevention and recovery" " of Repetitive Strain Injury (RSI)."), "translator-credits", workrave_translators, "authors", workrave_authors, "logo", pixbuf, NULL); g_object_unref(pixbuf); } static void on_menu_command(GtkAction *action, WorkraveApplet *applet) { if (applet->inhibit > 0) { return; } int index = lookup_menu_index_by_action(gtk_action_get_name(action)); if (index == -1) { return; } switch (menu_data[index].id) { case MENU_COMMAND_ABOUT: on_menu_about(applet); break; default: { GDBusProxy *proxy = workrave_timerbox_control_get_applet_proxy(applet->timerbox_control); if (proxy != NULL) { g_dbus_proxy_call(proxy, "Command", g_variant_new("(i)", menu_data[index].id), menu_data[index].autostart ? G_DBUS_CALL_FLAGS_NONE : G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, (GAsyncReadyCallback)dbus_call_finish, applet); } } break; } } static void on_menu_radio_changed(GtkRadioAction *action, GtkRadioAction *current, WorkraveApplet *applet) { on_menu_command(current, applet); } static const GtkActionEntry menu_actions[] = { {"Open", GTK_STOCK_OPEN, N_("_Open"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Statistics", NULL, N_("_Statistics"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Preferences", GTK_STOCK_PREFERENCES, N_("_Preferences"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Exercises", NULL, N_("_Exercises"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Restbreak", NULL, N_("_Restbreak"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Mode", NULL, N_("_Mode"), NULL, NULL, NULL}, {"Network", NULL, N_("_Network"), NULL, NULL, NULL}, {"Join", NULL, N_("_Join"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Disconnect", NULL, N_("_Disconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"Reconnect", NULL, N_("_Reconnect"), NULL, NULL, G_CALLBACK(on_menu_command)}, {"About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK(on_menu_about)}, {"Quit", GTK_STOCK_QUIT, N_("_Quit"), NULL, NULL, G_CALLBACK(on_menu_command)}, }; static const GtkToggleActionEntry toggle_actions[] = { {"ShowLog", NULL, N_("Show log"), NULL, NULL, G_CALLBACK(on_menu_command), FALSE}, {"ReadingMode", NULL, N_("Reading mode"), NULL, NULL, G_CALLBACK(on_menu_command), FALSE}, }; static const GtkRadioActionEntry mode_actions[] = { {"Normal", NULL, N_("Normal"), NULL, NULL, 0}, {"Suspended", NULL, N_("Suspended"), NULL, NULL, 1}, {"Quiet", NULL, N_("Quiet"), NULL, NULL, 2}, }; static void workrave_applet_fill(WorkraveApplet *applet) { mate_panel_applet_set_flags(applet->applet, MATE_PANEL_APPLET_HAS_HANDLE); mate_panel_applet_set_background_widget(applet->applet, GTK_WIDGET(applet->applet)); applet->timerbox_control = g_object_new(WORKRAVE_TIMERBOX_CONTROL_TYPE, NULL); applet->image = workrave_timerbox_control_get_image(applet->timerbox_control); g_signal_connect(G_OBJECT(applet->timerbox_control), "menu-changed", G_CALLBACK(on_menu_changed), applet); g_signal_connect(G_OBJECT(applet->timerbox_control), "alive-changed", G_CALLBACK(on_alive_changed), applet); workrave_timerbox_control_set_tray_icon_visible_when_not_running(applet->timerbox_control, TRUE); workrave_timerbox_control_set_tray_icon_mode(applet->timerbox_control, WORKRAVE_TIMERBOX_CONTROL_TRAY_ICON_MODE_FOLLOW); applet->action_group = gtk_action_group_new("WorkraveAppletActions"); gtk_action_group_set_translation_domain(applet->action_group, GETTEXT_PACKAGE); gtk_action_group_add_actions(applet->action_group, menu_actions, G_N_ELEMENTS(menu_actions), applet); gtk_action_group_add_toggle_actions(applet->action_group, toggle_actions, G_N_ELEMENTS(toggle_actions), applet); gtk_action_group_add_radio_actions( applet->action_group, mode_actions, G_N_ELEMENTS(mode_actions), 0, G_CALLBACK(on_menu_radio_changed), applet); gchar *ui_path = g_build_filename(WORKRAVE_MENU_UI_DIR, "workrave-menu.xml", NULL); mate_panel_applet_setup_menu_from_file(applet->applet, ui_path, applet->action_group); g_free(ui_path); gtk_container_add(GTK_CONTAINER(applet->applet), GTK_WIDGET(applet->image)); gtk_widget_show_all(GTK_WIDGET(applet->applet)); } static gboolean workrave_applet_factory(MatePanelApplet *applet, const gchar *iid, gpointer data) { gboolean retval = FALSE; if (g_strcmp0(iid, "WorkraveApplet") == 0) { WorkraveApplet *workrave_applet; workrave_applet = g_new0(WorkraveApplet, 1); workrave_applet->applet = applet; workrave_applet->action_group = NULL; workrave_applet->timerbox_control = NULL; workrave_applet->image = NULL; workrave_applet->alive = FALSE; workrave_applet->inhibit = 0; workrave_applet_fill(workrave_applet); retval = TRUE; } return retval; } MATE_PANEL_APPLET_OUT_PROCESS_FACTORY("WorkraveAppletFactory", PANEL_TYPE_APPLET, "WorkraveApplet", workrave_applet_factory, NULL); workrave-1.10.50/frontend/applets/mate/src/Makefile.in0000644000000000000000000011063714221624201022567 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @HAVE_MATE_TRUE@libapplet_PROGRAMS = workrave-applet$(EXEEXT) subdir = frontend/applets/mate/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libappletdir)" \ "$(DESTDIR)$(appletsdir)" "$(DESTDIR)$(servicedir)" \ "$(DESTDIR)$(xmluidir)" PROGRAMS = $(libapplet_PROGRAMS) am__workrave_applet_SOURCES_DIST = main-gtk2.c main-gtk3.c @HAVE_MATE_GTK2_FALSE@@HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@am_workrave_applet_OBJECTS = workrave_applet-main-gtk3.$(OBJEXT) @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@am_workrave_applet_OBJECTS = workrave_applet-main-gtk2.$(OBJEXT) workrave_applet_OBJECTS = $(am_workrave_applet_OBJECTS) am__DEPENDENCIES_1 = @HAVE_MATE_GTK2_FALSE@@HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@workrave_applet_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @HAVE_MATE_GTK2_FALSE@@HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ $(am__DEPENDENCIES_1) @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@workrave_applet_DEPENDENCIES = \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ $(am__DEPENDENCIES_1) \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = workrave_applet_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(workrave_applet_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/workrave_applet-main-gtk2.Po \ ./$(DEPDIR)/workrave_applet-main-gtk3.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(workrave_applet_SOURCES) DIST_SOURCES = $(am__workrave_applet_SOURCES_DIST) 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; }; \ } DATA = $(applets_DATA) $(service_DATA) $(xmlui_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ applets_in_files = org.workrave.WorkraveApplet.mate-panel-applet.in service_in_files = org.mate.panel.applet.WorkraveAppletFactory.service.in @HAVE_MATE_TRUE@WORKRAVE_MENU_UI_DIR = $(datadir)/mate-panel/ui @HAVE_MATE_TRUE@libappletdir = $(libdir)/mate-applets @HAVE_MATE_TRUE@APPLET_LOCATION = ${libappletdir}/workrave-applet @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@workrave_applet_SOURCES = main-gtk2.c @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@workrave_applet_SOURCES = main-gtk3.c @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@workrave_applet_CFLAGS = -Wall -std=c99 -DPANEL_MATE \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ $(LIBMATEPANEL_CFLAGS) \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ -DMATELOCALEDIR=\""$(datadir)/locale"\" \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ -DWORKRAVE_MENU_UI_DIR="\"${WORKRAVE_MENU_UI_DIR}"\" @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@workrave_applet_CFLAGS = -Wall -std=c99 -DPANEL_MATE \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ $(LIBMATEPANEL_CFLAGS) \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ -DMATELOCALEDIR=\""$(datadir)/locale"\" \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ -DWORKRAVE_MENU_UI_DIR="\"${WORKRAVE_MENU_UI_DIR}"\" @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@workrave_applet_LDADD = $(LIBMATEPANEL_LIBS) $(LIBMATEGUI4_LIBS) $(LIBMATEPANEL_LIBS) \ @HAVE_MATE_GTK2_TRUE@@HAVE_MATE_TRUE@ @GTK2_LIBS@ -L$(builddir)/../../common/src -lworkrave-gtk2-private-1.0 @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@workrave_applet_LDADD = $(LIBMATEPANEL_LIBS) $(LIBMATEGUI4_LIBS) $(LIBMATEPANEL_LIBS) \ @HAVE_MATE_GTK3_TRUE@@HAVE_MATE_TRUE@ -L$(builddir)/../../common/src -lworkrave-private-1.0 @HAVE_MATE_TRUE@appletsdir = $(datadir)/mate-panel/applets @HAVE_MATE_TRUE@applets_DATA = $(applets_in_files:.mate-panel-applet.in=.mate-panel-applet) @HAVE_MATE_TRUE@servicedir = $(datadir)/dbus-1/services @HAVE_MATE_TRUE@service_DATA = $(service_in_files:.service.in=.service) @HAVE_MATE_TRUE@xmluidir = $(WORKRAVE_MENU_UI_DIR) @HAVE_MATE_TRUE@xmlui_DATA = workrave-menu.xml CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) \ org.workrave.WorkraveApplet.mate-panel-applet \ org.workrave.WorkraveApplet.mate-panel-applet.in EXTRA_DIST = \ main-gtk2.c main-gtk3.c \ org.workrave.WorkraveApplet.mate-panel-applet.in.in \ $(applets_in_files) \ $(service_in_files) \ workrave-menu.xml all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/mate/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/mate/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libappletPROGRAMS: $(libapplet_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libapplet_PROGRAMS)'; test -n "$(libappletdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libappletdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libappletdir)" || 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)$(libappletdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libappletdir)$$dir" || exit $$?; \ } \ ; done uninstall-libappletPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libapplet_PROGRAMS)'; test -n "$(libappletdir)" || 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)$(libappletdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libappletdir)" && rm -f $$files clean-libappletPROGRAMS: @list='$(libapplet_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 workrave-applet$(EXEEXT): $(workrave_applet_OBJECTS) $(workrave_applet_DEPENDENCIES) $(EXTRA_workrave_applet_DEPENDENCIES) @rm -f workrave-applet$(EXEEXT) $(AM_V_CCLD)$(workrave_applet_LINK) $(workrave_applet_OBJECTS) $(workrave_applet_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave_applet-main-gtk2.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave_applet-main-gtk3.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< workrave_applet-main-gtk2.o: main-gtk2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_applet_CFLAGS) $(CFLAGS) -MT workrave_applet-main-gtk2.o -MD -MP -MF $(DEPDIR)/workrave_applet-main-gtk2.Tpo -c -o workrave_applet-main-gtk2.o `test -f 'main-gtk2.c' || echo '$(srcdir)/'`main-gtk2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave_applet-main-gtk2.Tpo $(DEPDIR)/workrave_applet-main-gtk2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main-gtk2.c' object='workrave_applet-main-gtk2.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) $(workrave_applet_CFLAGS) $(CFLAGS) -c -o workrave_applet-main-gtk2.o `test -f 'main-gtk2.c' || echo '$(srcdir)/'`main-gtk2.c workrave_applet-main-gtk2.obj: main-gtk2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_applet_CFLAGS) $(CFLAGS) -MT workrave_applet-main-gtk2.obj -MD -MP -MF $(DEPDIR)/workrave_applet-main-gtk2.Tpo -c -o workrave_applet-main-gtk2.obj `if test -f 'main-gtk2.c'; then $(CYGPATH_W) 'main-gtk2.c'; else $(CYGPATH_W) '$(srcdir)/main-gtk2.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave_applet-main-gtk2.Tpo $(DEPDIR)/workrave_applet-main-gtk2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main-gtk2.c' object='workrave_applet-main-gtk2.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) $(workrave_applet_CFLAGS) $(CFLAGS) -c -o workrave_applet-main-gtk2.obj `if test -f 'main-gtk2.c'; then $(CYGPATH_W) 'main-gtk2.c'; else $(CYGPATH_W) '$(srcdir)/main-gtk2.c'; fi` workrave_applet-main-gtk3.o: main-gtk3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_applet_CFLAGS) $(CFLAGS) -MT workrave_applet-main-gtk3.o -MD -MP -MF $(DEPDIR)/workrave_applet-main-gtk3.Tpo -c -o workrave_applet-main-gtk3.o `test -f 'main-gtk3.c' || echo '$(srcdir)/'`main-gtk3.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave_applet-main-gtk3.Tpo $(DEPDIR)/workrave_applet-main-gtk3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main-gtk3.c' object='workrave_applet-main-gtk3.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) $(workrave_applet_CFLAGS) $(CFLAGS) -c -o workrave_applet-main-gtk3.o `test -f 'main-gtk3.c' || echo '$(srcdir)/'`main-gtk3.c workrave_applet-main-gtk3.obj: main-gtk3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_applet_CFLAGS) $(CFLAGS) -MT workrave_applet-main-gtk3.obj -MD -MP -MF $(DEPDIR)/workrave_applet-main-gtk3.Tpo -c -o workrave_applet-main-gtk3.obj `if test -f 'main-gtk3.c'; then $(CYGPATH_W) 'main-gtk3.c'; else $(CYGPATH_W) '$(srcdir)/main-gtk3.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave_applet-main-gtk3.Tpo $(DEPDIR)/workrave_applet-main-gtk3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main-gtk3.c' object='workrave_applet-main-gtk3.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) $(workrave_applet_CFLAGS) $(CFLAGS) -c -o workrave_applet-main-gtk3.obj `if test -f 'main-gtk3.c'; then $(CYGPATH_W) 'main-gtk3.c'; else $(CYGPATH_W) '$(srcdir)/main-gtk3.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-appletsDATA: $(applets_DATA) @$(NORMAL_INSTALL) @list='$(applets_DATA)'; test -n "$(appletsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appletsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appletsdir)" || 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)$(appletsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appletsdir)" || exit $$?; \ done uninstall-appletsDATA: @$(NORMAL_UNINSTALL) @list='$(applets_DATA)'; test -n "$(appletsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appletsdir)'; $(am__uninstall_files_from_dir) install-serviceDATA: $(service_DATA) @$(NORMAL_INSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(servicedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(servicedir)" || 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)$(servicedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(servicedir)" || exit $$?; \ done uninstall-serviceDATA: @$(NORMAL_UNINSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(servicedir)'; $(am__uninstall_files_from_dir) install-xmluiDATA: $(xmlui_DATA) @$(NORMAL_INSTALL) @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(xmluidir)'"; \ $(MKDIR_P) "$(DESTDIR)$(xmluidir)" || 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)$(xmluidir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(xmluidir)" || exit $$?; \ done uninstall-xmluiDATA: @$(NORMAL_UNINSTALL) @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(xmluidir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(DATA) installdirs: for dir in "$(DESTDIR)$(libappletdir)" "$(DESTDIR)$(appletsdir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(xmluidir)"; 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-libappletPROGRAMS clean-libtool \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/workrave_applet-main-gtk2.Po -rm -f ./$(DEPDIR)/workrave_applet-main-gtk3.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-appletsDATA install-libappletPROGRAMS \ install-serviceDATA install-xmluiDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/workrave_applet-main-gtk2.Po -rm -f ./$(DEPDIR)/workrave_applet-main-gtk3.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-appletsDATA uninstall-libappletPROGRAMS \ uninstall-serviceDATA uninstall-xmluiDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libappletPROGRAMS clean-libtool \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-appletsDATA 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-libappletPROGRAMS install-man install-pdf \ install-pdf-am install-ps install-ps-am install-serviceDATA \ install-strip install-xmluiDATA installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-appletsDATA uninstall-libappletPROGRAMS \ uninstall-serviceDATA uninstall-xmluiDATA .PRECIOUS: Makefile @HAVE_MATE_TRUE@$(applets_in_files): $(applets_in_files).in Makefile @HAVE_MATE_TRUE@ $(AM_V_GEN)sed \ @HAVE_MATE_TRUE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @HAVE_MATE_TRUE@ $< > $@ @HAVE_MATE_TRUE@%.mate-panel-applet: %.mate-panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache @HAVE_MATE_TRUE@org.mate.panel.applet.WorkraveAppletFactory.service: $(service_in_files) @HAVE_MATE_TRUE@ $(AM_V_GEN)sed \ @HAVE_MATE_TRUE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @HAVE_MATE_TRUE@ $< > $@ # 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: workrave-1.10.50/frontend/applets/mate/src/org.mate.panel.applet.WorkraveAppletFactory.service.in0000644000175100001710000000012114221624107032002 0ustar00gdm00000000000000[D-BUS Service] Name=org.mate.panel.applet.WorkraveAppletFactory Exec=@LOCATION@ workrave-1.10.50/frontend/applets/mate/src/org.workrave.WorkraveApplet.mate-panel-applet.in.in0000644000175100001710000000030514221624107031261 0ustar00gdm00000000000000[Applet Factory] Id=WorkraveAppletFactory Location=@LOCATION@ _Name=Workrave Applet Factory _Description=Workrave Applet [WorkraveApplet] _Name=Workrave _Description=Workrave Applet Icon=workrave workrave-1.10.50/frontend/applets/mate/src/workrave-menu.xml0000644000175100001710000000145314221624107022755 0ustar00gdm00000000000000 workrave-1.10.50/frontend/applets/mate/src/org.workrave.WorkraveApplet.mate-panel-applet.in0000644000000000000000000000034614221624427031757 0ustar00rootroot00000000000000[Applet Factory] Id=WorkraveAppletFactory Location=/usr/local/lib/mate-applets/workrave-applet _Name=Workrave Applet Factory _Description=Workrave Applet [WorkraveApplet] _Name=Workrave _Description=Workrave Applet Icon=workrave workrave-1.10.50/frontend/applets/mate/src/Makefile.am0000644000175100001710000000522714221624107021470 0ustar00gdm00000000000000applets_in_files = org.workrave.WorkraveApplet.mate-panel-applet.in service_in_files = org.mate.panel.applet.WorkraveAppletFactory.service.in if HAVE_MATE WORKRAVE_MENU_UI_DIR = $(datadir)/mate-panel/ui libappletdir = $(libdir)/mate-applets libapplet_PROGRAMS = workrave-applet APPLET_LOCATION = ${libappletdir}/workrave-applet if HAVE_MATE_GTK2 workrave_applet_SOURCES = main-gtk2.c workrave_applet_CFLAGS = -Wall -std=c99 -DPANEL_MATE \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ $(LIBMATEPANEL_CFLAGS) \ -DMATELOCALEDIR=\""$(datadir)/locale"\" \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -DWORKRAVE_MENU_UI_DIR="\"${WORKRAVE_MENU_UI_DIR}"\" workrave_applet_LDADD = $(LIBMATEPANEL_LIBS) $(LIBMATEGUI4_LIBS) $(LIBMATEPANEL_LIBS) \ @GTK2_LIBS@ -L$(builddir)/../../common/src -lworkrave-gtk2-private-1.0 endif if HAVE_MATE_GTK3 ## Mate doesn't support GSimpleActionGroup in panel, so use Gtk2 code for now... workrave_applet_SOURCES = main-gtk3.c workrave_applet_CFLAGS = -Wall -std=c99 -DPANEL_MATE \ @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ -I$(srcdir)/../include -I$(srcdir)/../../common/include \ $(LIBMATEPANEL_CFLAGS) \ -DMATELOCALEDIR=\""$(datadir)/locale"\" \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -DWORKRAVE_MENU_UI_DIR="\"${WORKRAVE_MENU_UI_DIR}"\" workrave_applet_LDADD = $(LIBMATEPANEL_LIBS) $(LIBMATEGUI4_LIBS) $(LIBMATEPANEL_LIBS) \ -L$(builddir)/../../common/src -lworkrave-private-1.0 endif appletsdir = $(datadir)/mate-panel/applets applets_DATA = $(applets_in_files:.mate-panel-applet.in=.mate-panel-applet) $(applets_in_files): $(applets_in_files).in Makefile $(AM_V_GEN)sed \ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ $< > $@ %.mate-panel-applet: %.mate-panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache servicedir = $(datadir)/dbus-1/services service_DATA = $(service_in_files:.service.in=.service) org.mate.panel.applet.WorkraveAppletFactory.service: $(service_in_files) $(AM_V_GEN)sed \ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ $< > $@ xmluidir = $(WORKRAVE_MENU_UI_DIR) xmlui_DATA = workrave-menu.xml endif CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) \ org.workrave.WorkraveApplet.mate-panel-applet \ org.workrave.WorkraveApplet.mate-panel-applet.in EXTRA_DIST = \ main-gtk2.c main-gtk3.c \ org.workrave.WorkraveApplet.mate-panel-applet.in.in \ $(applets_in_files) \ $(service_in_files) \ workrave-menu.xml workrave-1.10.50/frontend/applets/mate/Makefile.in0000644000000000000000000005527014221624201022001 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/mate ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/mate/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/mate/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/mate/Makefile.am0000644000175100001710000000030014221624107020664 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include workrave-1.10.50/frontend/applets/indicator/0000755000000000000000000000000014221624441020757 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/indicator/include/0000755000000000000000000000000014221624441022402 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/indicator/include/indicator-applet.h0000644000175100001710000000277614221624107024734 0ustar00gdm00000000000000/* * Copyright (C) 2011, 2013 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #define WORKRAVE_INDICATOR_SERVICE_NAME "org.workrave.Workrave" #define WORKRAVE_INDICATOR_SERVICE_IFACE "org.workrave.AppletInterface" #define WORKRAVE_INDICATOR_SERVICE_OBJ "/org/workrave/Workrave/UI" #define WORKRAVE_INDICATOR_SERVICE_VERSION 1 #define WORKRAVE_INDICATOR_CORE_NAME "org.workrave.Workrave" #define WORKRAVE_INDICATOR_CORE_IFACE "org.workrave.CoreInterface" #define WORKRAVE_INDICATOR_CORE_OBJ "/org/workrave/Workrave/Core" #define WORKRAVE_INDICATOR_MENU_NAME "org.workrave.Workrave" #define WORKRAVE_INDICATOR_MENU_OBJ "/org/workrave/Workrave/Menu" #define DBUSMENU_WORKRAVE_MENUITEM_TYPE "x-workrave-menu-item" #define INDICATOR_MENUITEM_TYPE "indicator-item" #define INDICATOR_MENUITEM_PROP_LABEL "indicator-label" #define INDICATOR_MENUITEM_PROP_ICON "indicator-icon" workrave-1.10.50/frontend/applets/indicator/include/Makefile.in0000644000000000000000000004077014221624201024451 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/indicator/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/indicator/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/indicator/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/indicator/include/Makefile.am0000644000175100001710000000032414221624107023343 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.h) workrave-1.10.50/frontend/applets/indicator/src/0000755000000000000000000000000014221624441021546 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/indicator/src/Makefile.in0000644000000000000000000006757114221624201023625 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/indicator/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/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)$(workravelibdir)" LTLIBRARIES = $(workravelib_LTLIBRARIES) am__DEPENDENCIES_1 = @HAVE_INDICATOR_TRUE@libworkrave_la_DEPENDENCIES = \ @HAVE_INDICATOR_TRUE@ $(am__DEPENDENCIES_1) am__libworkrave_la_SOURCES_DIST = indicator-workrave.c @HAVE_INDICATOR_TRUE@am_libworkrave_la_OBJECTS = \ @HAVE_INDICATOR_TRUE@ libworkrave_la-indicator-workrave.lo libworkrave_la_OBJECTS = $(am_libworkrave_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libworkrave_la_CFLAGS) $(CFLAGS) $(libworkrave_la_LDFLAGS) \ $(LDFLAGS) -o $@ @HAVE_INDICATOR_TRUE@am_libworkrave_la_rpath = -rpath \ @HAVE_INDICATOR_TRUE@ $(workravelibdir) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_la-indicator-workrave.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_la_SOURCES) DIST_SOURCES = $(am__libworkrave_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # libexec_PROGRAMS = indicator-workrave-test @HAVE_INDICATOR_TRUE@workravelibdir = $(INDICATORDIR) @HAVE_INDICATOR_TRUE@workravelib_LTLIBRARIES = libworkrave.la @HAVE_INDICATOR_TRUE@libworkrave_la_SOURCES = \ @HAVE_INDICATOR_TRUE@ indicator-workrave.c @HAVE_INDICATOR_TRUE@libworkrave_la_CFLAGS = \ @HAVE_INDICATOR_TRUE@ $(INDICATOR_CFLAGS) \ @HAVE_INDICATOR_TRUE@ -Wall -std=c99 -I$(srcdir)/../include -I$(srcdir)/../../common/include \ @HAVE_INDICATOR_TRUE@ -DG_LOG_DOMAIN=\"Indicator-Workrave\" \ @HAVE_INDICATOR_TRUE@ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" @HAVE_INDICATOR_TRUE@libworkrave_la_LIBADD = \ @HAVE_INDICATOR_TRUE@ $(INDICATOR_LIBS) -L$(builddir)/../../common/src -lworkrave-private-1.0 @HAVE_INDICATOR_TRUE@libworkrave_la_LDFLAGS = \ @HAVE_INDICATOR_TRUE@ -module \ @HAVE_INDICATOR_TRUE@ -avoid-version #indicator_workrave_test_SOURCES = \ # test.c #indicator_workrave_test_CFLAGS = \ # -Wall -std=c99 $(GTK_CFLAGS) -I../include -I../../common/include \ # -DG_LOG_DOMAIN=\"Indicator-Workrave\" \ # -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ # -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" #indicator_workrave_test_LDADD = \ # $(GTK_LIBS) ../../common/src/libworkrave-1.0.la @HAVE_INDICATOR_TRUE@BUILT_SOURCES = CLEANFILES = \ $(BUILT_SOURCES) EXTRA_DIST = all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/indicator/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/indicator/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-workravelibLTLIBRARIES: $(workravelib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(workravelib_LTLIBRARIES)'; test -n "$(workravelibdir)" || 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)$(workravelibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(workravelibdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(workravelibdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(workravelibdir)"; \ } uninstall-workravelibLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(workravelib_LTLIBRARIES)'; test -n "$(workravelibdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(workravelibdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(workravelibdir)/$$f"; \ done clean-workravelibLTLIBRARIES: -test -z "$(workravelib_LTLIBRARIES)" || rm -f $(workravelib_LTLIBRARIES) @list='$(workravelib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave.la: $(libworkrave_la_OBJECTS) $(libworkrave_la_DEPENDENCIES) $(EXTRA_libworkrave_la_DEPENDENCIES) $(AM_V_CCLD)$(libworkrave_la_LINK) $(am_libworkrave_la_rpath) $(libworkrave_la_OBJECTS) $(libworkrave_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_la-indicator-workrave.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_la-indicator-workrave.lo: indicator-workrave.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) $(libworkrave_la_CFLAGS) $(CFLAGS) -MT libworkrave_la-indicator-workrave.lo -MD -MP -MF $(DEPDIR)/libworkrave_la-indicator-workrave.Tpo -c -o libworkrave_la-indicator-workrave.lo `test -f 'indicator-workrave.c' || echo '$(srcdir)/'`indicator-workrave.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_la-indicator-workrave.Tpo $(DEPDIR)/libworkrave_la-indicator-workrave.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='indicator-workrave.c' object='libworkrave_la-indicator-workrave.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) $(libworkrave_la_CFLAGS) $(CFLAGS) -c -o libworkrave_la-indicator-workrave.lo `test -f 'indicator-workrave.c' || echo '$(srcdir)/'`indicator-workrave.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(workravelibdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libtool clean-workravelibLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_la-indicator-workrave.Plo -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-workravelibLTLIBRARIES install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/libworkrave_la-indicator-workrave.Plo -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-workravelibLTLIBRARIES .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-workravelibLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 \ install-workravelibLTLIBRARIES installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-workravelibLTLIBRARIES .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/indicator/src/Makefile.am0000644000175100001710000000174114221624107022513 0ustar00gdm00000000000000if HAVE_INDICATOR # libexec_PROGRAMS = indicator-workrave-test workravelibdir = $(INDICATORDIR) workravelib_LTLIBRARIES = libworkrave.la libworkrave_la_SOURCES = \ indicator-workrave.c libworkrave_la_CFLAGS = \ $(INDICATOR_CFLAGS) \ -Wall -std=c99 -I$(srcdir)/../include -I$(srcdir)/../../common/include \ -DG_LOG_DOMAIN=\"Indicator-Workrave\" \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" libworkrave_la_LIBADD = \ $(INDICATOR_LIBS) -L$(builddir)/../../common/src -lworkrave-private-1.0 libworkrave_la_LDFLAGS = \ -module \ -avoid-version #indicator_workrave_test_SOURCES = \ # test.c #indicator_workrave_test_CFLAGS = \ # -Wall -std=c99 $(GTK_CFLAGS) -I../include -I../../common/include \ # -DG_LOG_DOMAIN=\"Indicator-Workrave\" \ # -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ # -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" #indicator_workrave_test_LDADD = \ # $(GTK_LIBS) ../../common/src/libworkrave-1.0.la BUILT_SOURCES = endif CLEANFILES = \ $(BUILT_SOURCES) EXTRA_DIST = workrave-1.10.50/frontend/applets/indicator/src/indicator-workrave.c0000644000175100001710000004745214221624107024446 0ustar00gdm00000000000000/* * Copyright (C) 2011, 2012, 2013 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include /* GStuff */ #include #include #include #include #include /* Indicator Stuff */ #ifdef HAVE_INDICATOR_AYATANA # include # include # include #else # include # include # include #endif /* DBusMenu */ #ifdef HAVE_DBUSMENU_NEW_INCLUDES # include # include #else # include # include #endif #include #include #include "indicator-applet.h" #include "timerbox.h" #include "timebar.h" #define INDICATOR_WORKRAVE_TYPE (indicator_workrave_get_type()) #define INDICATOR_WORKRAVE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), INDICATOR_WORKRAVE_TYPE, IndicatorWorkrave)) #define INDICATOR_WORKRAVE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), INDICATOR_WORKRAVE_TYPE, IndicatorWorkraveClass)) #define IS_INDICATOR_WORKRAVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), INDICATOR_WORKRAVE_TYPE)) #define IS_INDICATOR_WORKRAVE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), INDICATOR_WORKRAVE_TYPE)) #define INDICATOR_WORKRAVE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), INDICATOR_WORKRAVE_TYPE, IndicatorWorkraveClass)) #define DBUS_NAME ("org.workrave.IndicatorApplet") typedef struct _IndicatorWorkrave IndicatorWorkrave; typedef struct _IndicatorWorkraveClass IndicatorWorkraveClass; typedef struct _IndicatorWorkravePrivate IndicatorWorkravePrivate; struct _IndicatorWorkraveClass { IndicatorObjectClass parent_class; }; struct _IndicatorWorkrave { IndicatorObject parent; IndicatorWorkravePrivate *priv; }; struct _IndicatorWorkravePrivate { GtkLabel *label; GtkImage *image; DbusmenuGtkMenu *menu; GCancellable *workrave_ui_proxy_cancel; GDBusProxy *workrave_ui_proxy; GCancellable *workrave_core_proxy_cancel; GDBusProxy *workrave_core_proxy; guint owner_id; guint watch_id; gboolean workrave_running; gboolean alive; gboolean force_icon; guint timer; guint startup_timer; guint startup_count; guint update_count; WorkraveTimerbox *timerbox; }; typedef struct _TimerData TimerData; struct _TimerData { char *bar_text; int slot; int bar_secondary_color; int bar_secondary_val; int bar_secondary_max; int bar_primary_color; int bar_primary_val; int bar_primary_max; }; typedef struct _MenuItemData MenuItemData; struct _MenuItemData { GtkWidget *icon; GtkWidget *label; }; #define INDICATOR_WORKRAVE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), INDICATOR_WORKRAVE_TYPE, IndicatorWorkravePrivate)) GType indicator_workrave_get_type(void); static void indicator_workrave_class_init(IndicatorWorkraveClass *klass); static void indicator_workrave_init(IndicatorWorkrave *self); static void indicator_workrave_dispose(GObject *object); static void indicator_workrave_finalize(GObject *object); static GtkImage *get_icon(IndicatorObject *io); static GtkMenu *get_menu(IndicatorObject *io); static const gchar *get_accessible_desc(IndicatorObject *io); static void indicator_workrave_check(IndicatorWorkrave *self); static void indicator_workrave_create_dbus(IndicatorWorkrave *self); static gboolean on_timer(gpointer user_data); static void on_dbus_ui_ready(GObject *object, GAsyncResult *res, gpointer user_data); static void on_dbus_core_ready(GObject *object, GAsyncResult *res, gpointer user_data); static void on_dbus_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data); static void on_update_indicator(IndicatorWorkrave *self, GVariant *parameters); static void on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data); static void on_workrave_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data); static void on_workrave_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data); /* Indicator Module Config */ INDICATOR_SET_VERSION INDICATOR_SET_TYPE(INDICATOR_WORKRAVE_TYPE) G_DEFINE_TYPE(IndicatorWorkrave, indicator_workrave, INDICATOR_OBJECT_TYPE); static void indicator_workrave_class_init(IndicatorWorkraveClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS(klass); g_type_class_add_private(klass, sizeof(IndicatorWorkravePrivate)); object_class->dispose = indicator_workrave_dispose; object_class->finalize = indicator_workrave_finalize; IndicatorObjectClass *io_class = INDICATOR_OBJECT_CLASS(klass); io_class->get_menu = get_menu; io_class->get_image = get_icon; io_class->get_accessible_desc = get_accessible_desc; } static void indicator_workrave_init(IndicatorWorkrave *self) { self->priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); priv->label = NULL; priv->image = NULL; priv->menu = NULL; priv->workrave_ui_proxy = NULL; priv->workrave_ui_proxy_cancel = NULL; priv->workrave_core_proxy = NULL; priv->workrave_core_proxy_cancel = NULL; priv->owner_id = 0; priv->watch_id = 0; priv->workrave_running = FALSE; priv->alive = FALSE; priv->force_icon = FALSE; priv->timer = 0; priv->startup_timer = 0; priv->startup_count = 0; priv->timerbox = NULL; priv->update_count = 0; priv->menu = dbusmenu_gtkmenu_new(WORKRAVE_INDICATOR_MENU_NAME, WORKRAVE_INDICATOR_MENU_OBJ); priv->timerbox = g_object_new(WORKRAVE_TYPE_TIMERBOX, NULL); indicator_workrave_create_dbus(self); priv->watch_id = g_bus_watch_name(G_BUS_TYPE_SESSION, "org.workrave.Workrave", G_BUS_NAME_WATCHER_FLAGS_NONE, on_workrave_appeared, on_workrave_vanished, self, NULL); } static void indicator_workrave_dispose(GObject *object) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(object); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->watch_id != 0) { g_bus_unwatch_name(priv->watch_id); } if (priv->owner_id != 0) { g_bus_unown_name(priv->owner_id); } if (priv->timer != 0) { g_source_remove(priv->timer); priv->timer = 0; } if (priv->label != NULL) { g_object_unref(priv->label); priv->label = NULL; } if (priv->image != NULL) { g_object_unref(priv->image); priv->image = NULL; } if (priv->menu != NULL) { g_object_unref(G_OBJECT(priv->menu)); priv->menu = NULL; } G_OBJECT_CLASS(indicator_workrave_parent_class)->dispose(object); return; } static void indicator_workrave_finalize(GObject *object) { // IndicatorWorkrave *self = INDICATOR_WORKRAVE(object); G_OBJECT_CLASS(indicator_workrave_parent_class)->finalize(object); return; } static GtkImage * get_icon(IndicatorObject *io) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(io); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->image == NULL) { priv->image = GTK_IMAGE(gtk_image_new()); workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_set_force_icon(priv->timerbox, FALSE); workrave_timerbox_update(priv->timerbox, priv->image); gtk_widget_show(GTK_WIDGET(priv->image)); } return priv->image; } static GtkMenu * get_menu(IndicatorObject *io) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(io); return GTK_MENU(self->priv->menu); } static const gchar * get_accessible_desc(IndicatorObject *io) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(io); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); const gchar *name = NULL; if (priv->label != NULL) { name = "Workrave"; } return name; } static void indicator_workrave_start(IndicatorWorkrave *self) { IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->alive) { return; } priv->owner_id = g_bus_own_name(G_BUS_TYPE_SESSION, DBUS_NAME, G_BUS_NAME_OWNER_FLAGS_NONE, on_bus_acquired, NULL, NULL, self, NULL); GError *error = NULL; if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync( priv->workrave_ui_proxy, "Embed", g_variant_new("(bs)", TRUE, DBUS_NAME), G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request embedding for %s: %s", WORKRAVE_INDICATOR_SERVICE_NAME, error->message); } else { if (result != NULL) { g_variant_unref(result); } } } if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync(priv->workrave_ui_proxy, "GetTrayIconEnabled", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request tray icon enabled for %s: %s", WORKRAVE_INDICATOR_SERVICE_NAME, error->message); } else { if (result != NULL) { g_variant_get(result, "(b)", &priv->force_icon); g_variant_unref(result); } } } if (error == NULL) { GVariant *result = g_dbus_proxy_call_sync(priv->workrave_core_proxy, "GetOperationMode", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (error != NULL) { g_warning("Could not request operation mode for %s: %s", WORKRAVE_INDICATOR_SERVICE_NAME, error->message); } else { gchar *mode; g_variant_get(result, "(s)", &mode); workrave_timerbox_set_operation_mode(priv->timerbox, mode); g_variant_unref(result); } } if (error == NULL) { priv->timer = g_timeout_add_seconds(10, on_timer, self); priv->alive = TRUE; priv->update_count = 0; } else { g_error_free(error); } } static void indicator_workrave_stop(IndicatorWorkrave *self) { IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->alive) { if (priv->timer != 0) { g_source_remove(priv->timer); priv->timer = 0; } if (priv->startup_timer != 0) { g_source_remove(priv->startup_timer); priv->startup_timer = 0; } if (priv->owner_id != 0) { g_bus_unown_name(priv->owner_id); priv->owner_id = 0; } workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_set_force_icon(priv->timerbox, FALSE); workrave_timerbox_update(priv->timerbox, priv->image); priv->alive = FALSE; } } static gboolean on_start_delay(gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); indicator_workrave_start(self); priv->startup_count++; return !priv->alive && priv->startup_count < 15; } static void indicator_workrave_check(IndicatorWorkrave *self) { IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->workrave_running && priv->workrave_ui_proxy != NULL && priv->workrave_core_proxy != NULL) { // The Workrave interface may be started after the service becomes // available, so introduce a delay. priv->startup_count = 0; priv->startup_timer = g_timeout_add_seconds(2, on_start_delay, self); } } static void indicator_workrave_create_dbus(IndicatorWorkrave *self) { IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); GSettings *settings = g_settings_new("org.workrave.gui"); gboolean autostart = g_settings_get_boolean(settings, "autostart"); g_object_unref(settings); GDBusProxyFlags flags = autostart ?: G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START; priv->workrave_ui_proxy_cancel = g_cancellable_new(); g_dbus_proxy_new_for_bus(G_BUS_TYPE_SESSION, flags, NULL, WORKRAVE_INDICATOR_SERVICE_NAME, WORKRAVE_INDICATOR_SERVICE_OBJ, WORKRAVE_INDICATOR_SERVICE_IFACE, priv->workrave_ui_proxy_cancel, on_dbus_ui_ready, self); priv->workrave_core_proxy_cancel = g_cancellable_new(); g_dbus_proxy_new_for_bus(G_BUS_TYPE_SESSION, flags, NULL, WORKRAVE_INDICATOR_CORE_NAME, WORKRAVE_INDICATOR_CORE_OBJ, WORKRAVE_INDICATOR_CORE_IFACE, priv->workrave_core_proxy_cancel, on_dbus_core_ready, self); } static gboolean on_timer(gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (priv->alive && priv->update_count == 0) { workrave_timerbox_set_enabled(priv->timerbox, FALSE); workrave_timerbox_set_force_icon(priv->timerbox, FALSE); workrave_timerbox_update(priv->timerbox, priv->image); } priv->update_count = 0; return priv->alive; } static void on_dbus_ui_ready(GObject *object, GAsyncResult *res, gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (priv->workrave_ui_proxy_cancel != NULL) { g_object_unref(priv->workrave_ui_proxy_cancel); priv->workrave_ui_proxy_cancel = NULL; } if (error != NULL) { g_warning("Could not grab DBus proxy for %s: %s", WORKRAVE_INDICATOR_SERVICE_NAME, error->message); g_error_free(error); } else { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_dbus_signal), self); priv->workrave_ui_proxy = proxy; } indicator_workrave_check(self); } static void on_dbus_core_ready(GObject *object, GAsyncResult *res, gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); GError *error = NULL; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (priv->workrave_core_proxy_cancel != NULL) { g_object_unref(priv->workrave_core_proxy_cancel); priv->workrave_core_proxy_cancel = NULL; } if (error != NULL) { g_warning("Could not grab DBus proxy for %s: %s", WORKRAVE_INDICATOR_CORE_NAME, error->message); g_error_free(error); } else { g_signal_connect(proxy, "g-signal", G_CALLBACK(on_dbus_signal), self); priv->workrave_core_proxy = proxy; } indicator_workrave_check(self); } static void on_dbus_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (g_strcmp0(signal_name, "TimersUpdated") == 0) { on_update_indicator(self, parameters); } else if (g_strcmp0(signal_name, "TrayIconUpdated") == 0) { g_variant_get(parameters, "(b)", &priv->force_icon); workrave_timerbox_set_force_icon(priv->timerbox, priv->force_icon); workrave_timerbox_update(priv->timerbox, priv->image); } else if (g_strcmp0(signal_name, "OperationModeChanged") == 0) { gchar *mode; g_variant_get(parameters, "(s)", &mode); workrave_timerbox_set_operation_mode(priv->timerbox, mode); workrave_timerbox_update(priv->timerbox, priv->image); } } static void on_update_indicator(IndicatorWorkrave *self, GVariant *parameters) { IndicatorWorkravePrivate *priv = INDICATOR_WORKRAVE_GET_PRIVATE(self); if (!priv->alive) { indicator_workrave_start(self); } priv->update_count++; TimerData td[BREAK_ID_SIZEOF]; g_variant_get(parameters, "((siuuuuuu)(siuuuuuu)(siuuuuuu))", &td[BREAK_ID_MICRO_BREAK].bar_text, &td[BREAK_ID_MICRO_BREAK].slot, &td[BREAK_ID_MICRO_BREAK].bar_secondary_color, &td[BREAK_ID_MICRO_BREAK].bar_secondary_val, &td[BREAK_ID_MICRO_BREAK].bar_secondary_max, &td[BREAK_ID_MICRO_BREAK].bar_primary_color, &td[BREAK_ID_MICRO_BREAK].bar_primary_val, &td[BREAK_ID_MICRO_BREAK].bar_primary_max, &td[BREAK_ID_REST_BREAK].bar_text, &td[BREAK_ID_REST_BREAK].slot, &td[BREAK_ID_REST_BREAK].bar_secondary_color, &td[BREAK_ID_REST_BREAK].bar_secondary_val, &td[BREAK_ID_REST_BREAK].bar_secondary_max, &td[BREAK_ID_REST_BREAK].bar_primary_color, &td[BREAK_ID_REST_BREAK].bar_primary_val, &td[BREAK_ID_REST_BREAK].bar_primary_max, &td[BREAK_ID_DAILY_LIMIT].bar_text, &td[BREAK_ID_DAILY_LIMIT].slot, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_color, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_val, &td[BREAK_ID_DAILY_LIMIT].bar_secondary_max, &td[BREAK_ID_DAILY_LIMIT].bar_primary_color, &td[BREAK_ID_DAILY_LIMIT].bar_primary_val, &td[BREAK_ID_DAILY_LIMIT].bar_primary_max); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { workrave_timerbox_set_slot(priv->timerbox, i, td[i].slot); } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { WorkraveTimebar *timebar = workrave_timerbox_get_time_bar(priv->timerbox, i); if (timebar != NULL) { workrave_timerbox_set_enabled(priv->timerbox, TRUE); workrave_timerbox_set_force_icon(priv->timerbox, priv->force_icon); workrave_timebar_set_progress(timebar, td[i].bar_primary_val, td[i].bar_primary_max, td[i].bar_primary_color); workrave_timebar_set_secondary_progress( timebar, td[i].bar_secondary_val, td[i].bar_secondary_max, td[i].bar_secondary_color); workrave_timebar_set_text(timebar, td[i].bar_text); } } workrave_timerbox_update(priv->timerbox, priv->image); } static void on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)connection; (void)name; (void)user_data; } static void on_workrave_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); self->priv->workrave_running = TRUE; indicator_workrave_check(self); } static void on_workrave_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data) { IndicatorWorkrave *self = INDICATOR_WORKRAVE(user_data); self->priv->workrave_running = FALSE; indicator_workrave_stop(self); } workrave-1.10.50/frontend/applets/indicator/Makefile.in0000644000000000000000000005530714221624201023030 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/indicator ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/indicator/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/indicator/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/indicator/Makefile.am0000644000175100001710000000030014221624107021712 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src include workrave-1.10.50/frontend/applets/Makefile.am0000644000175100001710000000037514221624107017752 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2005, 2008, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = win32 common gnome3 indicator gnome-shell cinnamon xfce mate workrave-1.10.50/frontend/applets/gnome-shell/0000755000000000000000000000000014221624441021215 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome-shell/src/0000755000000000000000000000000014221624441022004 5ustar00rootroot00000000000000workrave-1.10.50/frontend/applets/gnome-shell/src/Makefile.in0000644000000000000000000005026214221624201024050 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/gnome-shell/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_extension_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(extensiondir)" \ "$(DESTDIR)$(extensiondir)" DATA = $(dist_extension_DATA) $(nodist_extension_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ topextensiondir = $(datadir)/gnome-shell/extensions extensionurl = http://www.workrave.org uuid = workrave@workrave.org extensiondir = $(topextensiondir)/$(uuid) dist_extension_DATA = extension.js stylesheet.css nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION) EXTRA_DIST = metadata.json.in CLEANFILES = metadata.json all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/gnome-shell/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/gnome-shell/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_extensionDATA: $(dist_extension_DATA) @$(NORMAL_INSTALL) @list='$(dist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(extensiondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(extensiondir)" || 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)$(extensiondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(extensiondir)" || exit $$?; \ done uninstall-dist_extensionDATA: @$(NORMAL_UNINSTALL) @list='$(dist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(extensiondir)'; $(am__uninstall_files_from_dir) install-nodist_extensionDATA: $(nodist_extension_DATA) @$(NORMAL_INSTALL) @list='$(nodist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(extensiondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(extensiondir)" || 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)$(extensiondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(extensiondir)" || exit $$?; \ done uninstall-nodist_extensionDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_extension_DATA)'; test -n "$(extensiondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(extensiondir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(extensiondir)" "$(DESTDIR)$(extensiondir)"; 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 mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_extensionDATA \ install-nodist_extensionDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_extensionDATA \ uninstall-nodist_extensionDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_extensionDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-nodist_extensionDATA install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_extensionDATA \ uninstall-nodist_extensionDATA .PRECIOUS: Makefile metadata.json: metadata.json.in $(top_builddir)/config.status $(AM_V_GEN) sed -e "s|[@]LOCALEDIR@|$(datadir)/locale|" \ -e "s|[@]uuid@|$(uuid)|" \ -e "s|[@]shell_current@|$(GNOME_SHELL_VERSION)|" \ -e "s|[@]url@|$(extensionurl)|" $< > $@ # 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: workrave-1.10.50/frontend/applets/gnome-shell/src/extension.js0000644000175100001710000003620214221624107023267 0ustar00gdm00000000000000const Clutter = imports.gi.Clutter; const GLib = imports.gi.GLib; const GObject = imports.gi.GObject; const Gettext = imports.gettext; const Gio = imports.gi.Gio; const Lang = imports.lang; const Main = imports.ui.main; const Mainloop = imports.mainloop; const PanelMenu = imports.ui.panelMenu; const PopupMenu = imports.ui.popupMenu; const St = imports.gi.St; const Workrave = imports.gi.Workrave; const _ = Gettext.gettext; let start = GLib.get_monotonic_time(); global.log('workrave-applet: start @ ' + start); const IndicatorIface = '\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '; let IndicatorProxy = Gio.DBusProxy.makeProxyWrapper(IndicatorIface); const CoreIface = '\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '; let CoreProxy = Gio.DBusProxy.makeProxyWrapper(CoreIface); const WorkraveButton = GObject.registerClass( class WorkraveButton extends PanelMenu.Button { _init() { super._init(0.0); this._timerbox = new Workrave.Timerbox(); this._force_icon = false; this._height = 24; this._padding = 0; this._bus_name = 'org.workrave.GnomeShellApplet'; this._bus_id = 0; this._watchid = 0; this._area = new St.DrawingArea({ style_class: 'workrave-area', reactive: true, y_align: Clutter.ActorAlign.CENTER } ); this._area.set_width(this._width=24); this._area.set_height(this._height=24); this._area.connect('repaint', Lang.bind(this, this._draw)); this._box = new St.Bin(); this._box.add_actor(this._area); if (typeof this.add_actor === "function") { this.add_actor(this._box); this.show(); } else { this.actor.add_actor(this._box, { y_expand: true }); this.actor.show(); } this.connect('destroy', Lang.bind(this, this._onDestroy)); this._ui_proxy = new IndicatorProxy(Gio.DBus.session, 'org.workrave.Workrave', '/org/workrave/Workrave/UI', Lang.bind(this, this._connectUI)); this._timers_updated_id = this._ui_proxy.connectSignal("TimersUpdated", Lang.bind(this, this._onTimersUpdated)); this._menu_updated_id = this._ui_proxy.connectSignal("MenuUpdated", Lang.bind(this, this._onMenuUpdated)); this._trayicon_updated_id = this._ui_proxy.connectSignal("TrayIconUpdated", Lang.bind(this, this._onTrayIconUpdated)); this._core_proxy = new CoreProxy(Gio.DBus.session, 'org.workrave.Workrave', '/org/workrave/Workrave/Core', Lang.bind(this, this._connectCore)); this._operation_mode_changed_id = this._core_proxy.connectSignal("OperationModeChanged", Lang.bind(this, this._onOperationModeChanged)); this._updateMenu(null); } _connectUI() { try { this._watchid = Gio.DBus.session.watch_name('org.workrave.Workrave', Gio.BusNameWatcherFlags.NONE, // no auto launch Lang.bind(this, this._onWorkraveAppeared), Lang.bind(this, this._onWorkraveVanished)); return false; } catch(err) { return true; } } _connectCore() { } _onDestroy() { if (this._ui_proxy != null) { this._ui_proxy.EmbedRemote(false, this._bus_name); } this._stop(); this._destroy(); } _destroy() { if (this._watchid > 0) { Gio.DBus.session.unwatch_name(this._watchid); this._watchid = 0; } if (this._ui_proxy != null) { this._ui_proxy.disconnectSignal(this._timers_updated_id); this._ui_proxy.disconnectSignal(this._menu_updated_id); this._ui_proxy.disconnectSignal(this._trayicon_updated_id); this._ui_proxy = null; } if (this._core_proxy != null) { this._core_proxy.disconnectSignal(this._operation_mode_changed_id); this._core_proxy = null; } } _start() { if (! this._alive) { this._bus_id = Gio.DBus.session.own_name(this._bus_name, Gio.BusNameOwnerFlags.NONE, null, null); this._ui_proxy.GetMenuRemote(Lang.bind(this, this._onGetMenuReply)); this._ui_proxy.GetTrayIconEnabledRemote(Lang.bind(this, this._onGetTrayIconEnabledReply)); this._ui_proxy.EmbedRemote(true, this._bus_name); this._core_proxy.GetOperationModeRemote(Lang.bind(this, this._onGetOperationModeReply)); this._timeoutId = Mainloop.timeout_add(5000, Lang.bind(this, this._onTimer)); this._alive = true; this._update_count = 0; } } _stop_dbus() { if (this._alive) { Mainloop.source_remove(this._timeoutId); Gio.DBus.session.unown_name(this._bus_id); this._timeoutId = 0; this._bus_id = 0; } } _stop() { if (this._alive) { this._stop_dbus(); this._timerbox.set_enabled(false); this._timerbox.set_force_icon(false); this._alive = false; this._updateMenu(null); this._area.queue_repaint(); this._area.set_width(this._width=24); } } _draw(area) { let cr = area.get_context(); this._timerbox.draw(cr); } _onTimer() { if (! this._alive) { return false; } if (this._update_count == 0) { this._timerbox.set_enabled(false); this._area.queue_repaint(); } this._update_count = 0; return this._alive; } _onWorkraveAppeared(owner) { this._start(); } _onWorkraveVanished(oldOwner) { this._stop(); } _onTimersUpdated (emitter, senderName, [microbreak, restbreak, daily]) { if (! this._alive) { this._start(); } this._update_count++; this._timerbox.set_slot(0, microbreak[1]); this._timerbox.set_slot(1, restbreak[1]); this._timerbox.set_slot(2, daily[1]); var timebar = this._timerbox.get_time_bar(0); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(microbreak[6], microbreak[7], microbreak[5]); timebar.set_secondary_progress(microbreak[3], microbreak[4], microbreak[2]); timebar.set_text(microbreak[0]); } timebar = this._timerbox.get_time_bar(1); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(restbreak[6], restbreak[7], restbreak[5]); timebar.set_secondary_progress(restbreak[3], restbreak[4], restbreak[2]); timebar.set_text(restbreak[0]); } timebar = this._timerbox.get_time_bar(2); if (timebar != null) { this._timerbox.set_enabled(true); timebar.set_progress(daily[6], daily[7], daily[5]); timebar.set_secondary_progress(daily[3], daily[4], daily[2]); timebar.set_text(daily[0]); } let timerbox_width = this._timerbox.get_width(); let timerbox_height = this._timerbox.get_height(); this._area.set_width(this._width=timerbox_width); this._area.queue_repaint(); } _onGetMenuReply ([menuitems], excp) { this._updateMenu(menuitems); } _onGetTrayIconEnabledReply ([enabled], excp) { this._updateTrayIcon(enabled); } _onGetOperationModeReply ([mode], excp) { this._timerbox.set_operation_mode(mode); } _onMenuUpdated (emitter, senderName, [menuitems]) { this._updateMenu(menuitems); } _onTrayIconUpdated (emitter, senderName, [enabled]) { this._updateTrayIcon(enabled); } _onOperationModeChanged (emitter, senderName, [mode]) { this._timerbox.set_operation_mode(mode); } _onCommandReply (menuitems) { } _onMenuCommand (item, event, command) { this._ui_proxy.CommandRemote(command, Lang.bind(this, this._onCommandReply)); } _onMenuOpenCommand(item, event) { this._ui_proxy.GetMenuRemote(); // A dummy method call to re-activate the service } _updateTrayIcon (enabled) { this._force_icon = enabled; this._timerbox.set_force_icon(this._force_icon); } _updateMenu (menuitems) { this.menu.removeAll(); let current_menu = this.menu; let indent = ""; if (menuitems == null || menuitems.length == 0) { let popup = new PopupMenu.PopupMenuItem(_("Open Workrave")); popup.connect('activate', Lang.bind(this, this._onMenuOpenCommand)); current_menu.addMenuItem(popup); } else { for (var item in menuitems) { let text = indent + menuitems[item][0]; let command = menuitems[item][1]; let flags = menuitems[item][2]; if ((flags & 1) != 0) { let popup = new PopupMenu.PopupSubMenuMenuItem(text); this.menu.addMenuItem(popup); current_menu = popup.menu; indent = " "; // Look at CSS?? } else if ((flags & 2) != 0) { current_menu = this.menu; indent = ""; } else { let active = ((flags & 16) != 0); let popup; if (text == "") { popup = new PopupSub.PopupSeparatorMenuItem(); } else if ((flags & 4) != 0) { popup = new PopupMenu.PopupSwitchMenuItem(text, active); } else if ((flags & 8) != 0) { popup = new PopupMenu.PopupMenuItem(text); // Gnome 3.6 & 3.8 if (typeof popup.setShowDot === "function") { popup.setShowDot(active); } // Gnome 3.10 & newer else if (typeof popup.setOrnament === "function") { popup.setOrnament(active ? PopupMenu.Ornament.DOT : PopupMenu.Ornament.NONE); } } else { popup = new PopupMenu.PopupMenuItem(text); } popup.connect('activate', Lang.bind(this, this._onMenuCommand, command)); current_menu.addMenuItem(popup); } } } } }); let workravePanelButton; let workraveUserExtensionLocalePath; function init(extensionMeta) { /* do nothing */ workraveUserExtensionLocalePath = extensionMeta.path + '/locale'; } function disable() { workravePanelButton.destroy(); workravePanelButton = null; } function enable() { Gettext.bindtextdomain("workrave", workraveUserExtensionLocalePath); workravePanelButton = new WorkraveButton(); Main.panel.addToStatusArea('workrave-applet', workravePanelButton); } workrave-1.10.50/frontend/applets/gnome-shell/src/metadata.json.in0000644000175100001710000000163714221624107024001 0ustar00gdm00000000000000{ "extension-id": "workrave", "uuid": "@uuid@", "name": "Workrave", "description": "Applet that shows all the Workrave timers.", "shell-version": [ "3.2", "3.3", "3.4", "3.5", "3.5.4", "3.6.0", "3.6", "3.8", "3.10", "3.12", "3.14", "3.16", "3.18", "3.20", "3.22", "3.24", "3.26", "3.28", "3.30", "3.32", "40", "41", "42", "@shell_current@" ], "localedir": "@LOCALEDIR@", "url": "@url@" } workrave-1.10.50/frontend/applets/gnome-shell/src/Makefile.am0000644000175100001710000000111114221624107022740 0ustar00gdm00000000000000topextensiondir = $(datadir)/gnome-shell/extensions extensionurl = http://www.workrave.org uuid = workrave@workrave.org extensiondir = $(topextensiondir)/$(uuid) dist_extension_DATA = extension.js stylesheet.css nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION) EXTRA_DIST = metadata.json.in metadata.json: metadata.json.in $(top_builddir)/config.status $(AM_V_GEN) sed -e "s|[@]LOCALEDIR@|$(datadir)/locale|" \ -e "s|[@]uuid@|$(uuid)|" \ -e "s|[@]shell_current@|$(GNOME_SHELL_VERSION)|" \ -e "s|[@]url@|$(extensionurl)|" $< > $@ CLEANFILES = metadata.json workrave-1.10.50/frontend/applets/gnome-shell/src/stylesheet.css0000644000175100001710000000000014221624107023603 0ustar00gdm00000000000000workrave-1.10.50/frontend/applets/gnome-shell/Makefile.in0000644000000000000000000005530514221624201023264 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/applets/gnome-shell ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/applets/gnome-shell/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/applets/gnome-shell/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/applets/gnome-shell/Makefile.am0000644000175100001710000000027014221624107022156 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/Makefile.in0000644000000000000000000005526214221624201017404 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2005, 2008, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = common gtkmm plugin applets text all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/text/0000755000000000000000000000000014221624441016317 5ustar00rootroot00000000000000workrave-1.10.50/frontend/text/src/0000755000000000000000000000000014221624441017106 5ustar00rootroot00000000000000workrave-1.10.50/frontend/text/src/TimerBoxTextView.cc0000644000175100001710000000657014221624107021564 0ustar00gdm00000000000000// TimerBoxTextView.cc --- Timers Widgets // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include #include #include "nls.h" #include "debug.hh" #include "TimerBoxTextView.hh" #include "Util.hh" #include "Text.hh" #include "GUI.hh" #include "CoreFactory.hh" #include "IBreak.hh" //! Constructor. TimerBoxTextView::TimerBoxTextView() { TRACE_ENTER("TimerBoxTextView::TimerBoxTextView"); string sheep_file = Util::complete_directory("workrave-icon-medium.png", Util::SEARCH_PATH_IMAGES); // XXX: Initialize widgets. TRACE_EXIT(); } //! Destructor. TimerBoxTextView::~TimerBoxTextView() {} //! Indicates that break 'id' must be shown on position 'slot' void TimerBoxTextView::set_slot(BreakId id, int slot) { (void)id; (void)slot; } void TimerBoxTextView::set_time_bar(BreakId id, std::string text, ITimeBar::ColorId primary_color, int primary_val, int primary_max, ITimeBar::ColorId secondary_color, int secondary_val, int secondary_max) { TRACE_ENTER("TimerBoxTextView::set_time_bar"); // Break for which to show the progress. TRACE_MSG(id); // Text for the break (time as string) TRACE_MSG(text); // Amount of time the user is active. TRACE_MSG(primary_val << " " << primary_max << " " << int(primary_color)); // Amount of time the user is idle TRACE_MSG(secondary_val << " " << secondary_max << " " << int(secondary_color)); TRACE_EXIT(); } //! Sets the tooltip void TimerBoxTextView::set_tip(string tip) { // XXX: Normally, the tooltip is only shown when // the sheep is shown and no timers. (void)tip; } void TimerBoxTextView::set_icon(IconType icon) { string file; switch (icon) { case ICON_NORMAL: file = Util::complete_directory("workrave-icon-medium.png", Util::SEARCH_PATH_IMAGES); break; case ICON_QUIET: file = Util::complete_directory("workrave-quiet-icon-medium.png", Util::SEARCH_PATH_IMAGES); break; case ICON_SUSPENDED: file = Util::complete_directory("workrave-suspended-icon-medium.png", Util::SEARCH_PATH_IMAGES); break; } // XXX: Do something with file. (void)file; } void TimerBoxTextView::update_view() { // XXX: Update the GUI. } void TimerBoxTextView::set_geometry(Orientation orientation, int size) { (void)orientation; (void)size; } void TimerBoxTextView::set_enabled(bool enabled) { (void)enabled; // Status window disappears, no need to do anything here. } workrave-1.10.50/frontend/text/src/BreakWindow.cc0000644000175100001710000000465414221624107020550 0ustar00gdm00000000000000// BreakWindow.cc --- base class for the break windows // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include "nls.h" #include #include "BreakWindow.hh" #include "IBreakResponse.hh" #include "System.hh" #include "Util.hh" //! Constructor BreakWindow::BreakWindow(BreakId break_id, bool ignorable, GUI::BlockMode mode) : block_mode(mode) , ignorable_break(ignorable) , break_response(NULL) { this->break_id = break_id; } //! Destructor. BreakWindow::~BreakWindow() { TRACE_ENTER("BreakWindow::~BreakWindow"); TRACE_EXIT(); } //! Break response void BreakWindow::set_response(IBreakResponse *bri) { break_response = bri; // The Break Window can use this interface to skip and postpone the break // by calling // break_response->postpone_break(break_id); // or // break_response->skip_break(break_id); } //! Starts the break. void BreakWindow::start() { TRACE_ENTER("BreakWindow::start"); // XXX: Initialize GUI // XXX: Center Window // XXX: Show Window TRACE_EXIT(); } //! Stops the break. void BreakWindow::stop() { TRACE_ENTER("BreakWindow::stop"); // XXX: Hide window TRACE_EXIT(); } //! Self-Destruct /*! * This method MUST be used to destroy the objects through the * IBreakWindow. it is NOT possible to do a delete on * this interface... */ void BreakWindow::destroy() { delete this; } //! Refresh window. void BreakWindow::refresh() { cout << "BREAK " << break_id << " : " << progress_value << "/" << progress_max_value << endl; } //! Sets the break progress. void BreakWindow::set_progress(int value, int max_value) { progress_max_value = max_value; progress_value = value; } workrave-1.10.50/frontend/text/src/MainWindow.cc0000644000175100001710000000657014221624107020407 0ustar00gdm00000000000000// MainWindow.cc --- Main info Window // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "nls.h" #include "debug.hh" #include #include #include "TimerBoxTextView.hh" #include "TimerBoxControl.hh" #include "MainWindow.hh" #include "GUI.hh" #include "Util.hh" #include "Text.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "IStatistics.hh" const string MainWindow::CFG_KEY_MAIN_WINDOW = "gui/main_window"; const string MainWindow::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP = "gui/main_window/always_on_top"; const string MainWindow::CFG_KEY_MAIN_WINDOW_START_IN_TRAY = "gui/main_window/start_in_tray"; const string MainWindow::CFG_KEY_MAIN_WINDOW_X = "gui/main_window/x"; const string MainWindow::CFG_KEY_MAIN_WINDOW_Y = "gui/main_window/y"; const string MainWindow::CFG_KEY_MAIN_WINDOW_HEAD = "gui/main_window/head"; //! Constructor. MainWindow::MainWindow() : enabled(true) , timer_box_control(NULL) , timer_box_view(NULL) , monitor_suspended(false) { init(); } //! Destructor. MainWindow::~MainWindow() { TRACE_ENTER("MainWindow::~MainWindow"); delete timer_box_control; TRACE_EXIT(); } //! Initializes the main window. void MainWindow::init() { TRACE_ENTER("MainWindow::init"); enabled = TimerBoxControl::is_enabled("main_window"); timer_box_view = new TimerBoxTextView(); timer_box_control = new TimerBoxControl("main_window", *timer_box_view); IConfigurator *config = CoreFactory::get_configurator(); config->add_listener(TimerBoxControl::CFG_KEY_TIMERBOX + "main_window", this); TRACE_EXIT(); } //! Updates the main window. void MainWindow::update() { timer_box_control->update(); } void MainWindow::config_changed_notify(const string &key) { TRACE_ENTER_MSG("MainWindow::config_changed_notify", key); if (key != CFG_KEY_MAIN_WINDOW_HEAD && key != CFG_KEY_MAIN_WINDOW_X && key != CFG_KEY_MAIN_WINDOW_Y) { // XXX: config changed. } TRACE_EXIT(); } bool MainWindow::get_always_on_top() { bool b; bool rc; b = CoreFactory::get_configurator()->get_value(MainWindow::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP, rc); if (!b) { rc = false; } return rc; } void MainWindow::set_always_on_top(bool b) { CoreFactory::get_configurator()->set_value(MainWindow::CFG_KEY_MAIN_WINDOW_ALWAYS_ON_TOP, b); } bool MainWindow::get_start_in_tray() { bool b; bool rc; b = CoreFactory::get_configurator()->get_value(CFG_KEY_MAIN_WINDOW_START_IN_TRAY, rc); if (!b) { rc = false; } return rc; } void MainWindow::set_start_in_tray(bool b) { CoreFactory::get_configurator()->set_value(CFG_KEY_MAIN_WINDOW_START_IN_TRAY, b); } workrave-1.10.50/frontend/text/src/Makefile.in0000644000000000000000000012652614221624203021163 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2009, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ @HAVE_APP_TEXT_TRUE@bin_PROGRAMS = workrave$(EXEEXT) subdir = frontend/text/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am__workrave_SOURCES_DIST = GUI.cc PreludeWindow.cc BreakWindow.cc \ TimerBoxTextView.cc MainWindow.cc main.cc @HAVE_APP_TEXT_TRUE@am_workrave_OBJECTS = workrave-GUI.$(OBJEXT) \ @HAVE_APP_TEXT_TRUE@ workrave-PreludeWindow.$(OBJEXT) \ @HAVE_APP_TEXT_TRUE@ workrave-BreakWindow.$(OBJEXT) \ @HAVE_APP_TEXT_TRUE@ workrave-TimerBoxTextView.$(OBJEXT) \ @HAVE_APP_TEXT_TRUE@ workrave-MainWindow.$(OBJEXT) \ @HAVE_APP_TEXT_TRUE@ workrave-main.$(OBJEXT) workrave_OBJECTS = $(am_workrave_OBJECTS) am__DEPENDENCIES_1 = @HAVE_APP_TEXT_TRUE@workrave_DEPENDENCIES = $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = workrave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(workrave_CXXFLAGS) \ $(CXXFLAGS) $(workrave_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/workrave-BreakWindow.Po \ ./$(DEPDIR)/workrave-GUI.Po ./$(DEPDIR)/workrave-MainWindow.Po \ ./$(DEPDIR)/workrave-PreludeWindow.Po \ ./$(DEPDIR)/workrave-TimerBoxTextView.Po \ ./$(DEPDIR)/workrave-main.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(workrave_SOURCES) DIST_SOURCES = $(am__workrave_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = MAINTAINERCLEANFILES = Makefile.in @HAVE_APP_TEXT_TRUE@workrave_SOURCES = GUI.cc PreludeWindow.cc BreakWindow.cc TimerBoxTextView.cc MainWindow.cc \ @HAVE_APP_TEXT_TRUE@ main.cc @HAVE_APP_TEXT_TRUE@workrave_CXXFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -W \ @HAVE_APP_TEXT_TRUE@ -DATADIR="\"${datadir}\"" \ @HAVE_APP_TEXT_TRUE@ -I. @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_APP_TEXT_TRUE@ @X_CFLAGS@ \ @HAVE_APP_TEXT_TRUE@ @GTK_CFLAGS@ \ @HAVE_APP_TEXT_TRUE@ @GCONF_CFLAGS@ -D_XOPEN_SOURCE=600 @GNET_CFLAGS@ \ @HAVE_APP_TEXT_TRUE@ $(includeswin32) $(win32cflags) $(includesinput) $(includesmacos) \ @HAVE_APP_TEXT_TRUE@ $(includesx) \ @HAVE_APP_TEXT_TRUE@ -I${DISTRIBUTION_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${STATISTICS_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${EXERCISES_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${EXERCISES_HOME}/common/src @HAVE_APP_TEXT_TRUE@workrave_CFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @HAVE_APP_TEXT_TRUE@ -I. @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @HAVE_APP_TEXT_TRUE@ @X_CFLAGS@ @GTK_CFLAGS@ @GSTREAMER_CFLAGS@\ @HAVE_APP_TEXT_TRUE@ -D_XOPEN_SOURCE=600 \ @HAVE_APP_TEXT_TRUE@ -I${DISTRIBUTION_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${STATISTICS_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${EXERCISES_HOME}/gtkmm/src \ @HAVE_APP_TEXT_TRUE@ -I${EXERCISES_HOME}/common/src \ @HAVE_APP_TEXT_TRUE@ $(win32cflags) @HAVE_APP_TEXT_TRUE@workrave_LDFLAGS = @WR_LDFLAGS@ ${ldflags} @HAVE_APP_TEXT_TRUE@workrave_LDADD = @WR_LDADD@ @X_LIBS@ \ @HAVE_APP_TEXT_TRUE@ @GTK_LIBS@ @GNET_LIBS@ @X_LIBS@ @GCONF_LIBS@ @GDOME_LIBS@ \ @HAVE_APP_TEXT_TRUE@ @GSTREAMER_LIBS@ \ @HAVE_APP_TEXT_TRUE@ ${X11LIBS} ${WIN32LIBS} ${MacOSLIBS} ${WIN32CONSOLE} all: all-recursive .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/text/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/text/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): 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 workrave$(EXEEXT): $(workrave_OBJECTS) $(workrave_DEPENDENCIES) $(EXTRA_workrave_DEPENDENCIES) @rm -f workrave$(EXEEXT) $(AM_V_CXXLD)$(workrave_LINK) $(workrave_OBJECTS) $(workrave_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-BreakWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-GUI.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-MainWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-PreludeWindow.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-TimerBoxTextView.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/workrave-main.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< workrave-GUI.o: GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUI.o -MD -MP -MF $(DEPDIR)/workrave-GUI.Tpo -c -o workrave-GUI.o `test -f 'GUI.cc' || echo '$(srcdir)/'`GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUI.Tpo $(DEPDIR)/workrave-GUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUI.cc' object='workrave-GUI.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUI.o `test -f 'GUI.cc' || echo '$(srcdir)/'`GUI.cc workrave-GUI.obj: GUI.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-GUI.obj -MD -MP -MF $(DEPDIR)/workrave-GUI.Tpo -c -o workrave-GUI.obj `if test -f 'GUI.cc'; then $(CYGPATH_W) 'GUI.cc'; else $(CYGPATH_W) '$(srcdir)/GUI.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-GUI.Tpo $(DEPDIR)/workrave-GUI.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GUI.cc' object='workrave-GUI.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-GUI.obj `if test -f 'GUI.cc'; then $(CYGPATH_W) 'GUI.cc'; else $(CYGPATH_W) '$(srcdir)/GUI.cc'; fi` workrave-PreludeWindow.o: PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreludeWindow.o -MD -MP -MF $(DEPDIR)/workrave-PreludeWindow.Tpo -c -o workrave-PreludeWindow.o `test -f 'PreludeWindow.cc' || echo '$(srcdir)/'`PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreludeWindow.Tpo $(DEPDIR)/workrave-PreludeWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreludeWindow.cc' object='workrave-PreludeWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreludeWindow.o `test -f 'PreludeWindow.cc' || echo '$(srcdir)/'`PreludeWindow.cc workrave-PreludeWindow.obj: PreludeWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-PreludeWindow.obj -MD -MP -MF $(DEPDIR)/workrave-PreludeWindow.Tpo -c -o workrave-PreludeWindow.obj `if test -f 'PreludeWindow.cc'; then $(CYGPATH_W) 'PreludeWindow.cc'; else $(CYGPATH_W) '$(srcdir)/PreludeWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-PreludeWindow.Tpo $(DEPDIR)/workrave-PreludeWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PreludeWindow.cc' object='workrave-PreludeWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-PreludeWindow.obj `if test -f 'PreludeWindow.cc'; then $(CYGPATH_W) 'PreludeWindow.cc'; else $(CYGPATH_W) '$(srcdir)/PreludeWindow.cc'; fi` workrave-BreakWindow.o: BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-BreakWindow.o -MD -MP -MF $(DEPDIR)/workrave-BreakWindow.Tpo -c -o workrave-BreakWindow.o `test -f 'BreakWindow.cc' || echo '$(srcdir)/'`BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-BreakWindow.Tpo $(DEPDIR)/workrave-BreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BreakWindow.cc' object='workrave-BreakWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-BreakWindow.o `test -f 'BreakWindow.cc' || echo '$(srcdir)/'`BreakWindow.cc workrave-BreakWindow.obj: BreakWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-BreakWindow.obj -MD -MP -MF $(DEPDIR)/workrave-BreakWindow.Tpo -c -o workrave-BreakWindow.obj `if test -f 'BreakWindow.cc'; then $(CYGPATH_W) 'BreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/BreakWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-BreakWindow.Tpo $(DEPDIR)/workrave-BreakWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BreakWindow.cc' object='workrave-BreakWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-BreakWindow.obj `if test -f 'BreakWindow.cc'; then $(CYGPATH_W) 'BreakWindow.cc'; else $(CYGPATH_W) '$(srcdir)/BreakWindow.cc'; fi` workrave-TimerBoxTextView.o: TimerBoxTextView.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxTextView.o -MD -MP -MF $(DEPDIR)/workrave-TimerBoxTextView.Tpo -c -o workrave-TimerBoxTextView.o `test -f 'TimerBoxTextView.cc' || echo '$(srcdir)/'`TimerBoxTextView.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxTextView.Tpo $(DEPDIR)/workrave-TimerBoxTextView.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxTextView.cc' object='workrave-TimerBoxTextView.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxTextView.o `test -f 'TimerBoxTextView.cc' || echo '$(srcdir)/'`TimerBoxTextView.cc workrave-TimerBoxTextView.obj: TimerBoxTextView.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-TimerBoxTextView.obj -MD -MP -MF $(DEPDIR)/workrave-TimerBoxTextView.Tpo -c -o workrave-TimerBoxTextView.obj `if test -f 'TimerBoxTextView.cc'; then $(CYGPATH_W) 'TimerBoxTextView.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxTextView.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-TimerBoxTextView.Tpo $(DEPDIR)/workrave-TimerBoxTextView.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimerBoxTextView.cc' object='workrave-TimerBoxTextView.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-TimerBoxTextView.obj `if test -f 'TimerBoxTextView.cc'; then $(CYGPATH_W) 'TimerBoxTextView.cc'; else $(CYGPATH_W) '$(srcdir)/TimerBoxTextView.cc'; fi` workrave-MainWindow.o: MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainWindow.o -MD -MP -MF $(DEPDIR)/workrave-MainWindow.Tpo -c -o workrave-MainWindow.o `test -f 'MainWindow.cc' || echo '$(srcdir)/'`MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainWindow.Tpo $(DEPDIR)/workrave-MainWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainWindow.cc' object='workrave-MainWindow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainWindow.o `test -f 'MainWindow.cc' || echo '$(srcdir)/'`MainWindow.cc workrave-MainWindow.obj: MainWindow.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-MainWindow.obj -MD -MP -MF $(DEPDIR)/workrave-MainWindow.Tpo -c -o workrave-MainWindow.obj `if test -f 'MainWindow.cc'; then $(CYGPATH_W) 'MainWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MainWindow.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-MainWindow.Tpo $(DEPDIR)/workrave-MainWindow.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MainWindow.cc' object='workrave-MainWindow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-MainWindow.obj `if test -f 'MainWindow.cc'; then $(CYGPATH_W) 'MainWindow.cc'; else $(CYGPATH_W) '$(srcdir)/MainWindow.cc'; fi` workrave-main.o: main.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-main.o -MD -MP -MF $(DEPDIR)/workrave-main.Tpo -c -o workrave-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-main.Tpo $(DEPDIR)/workrave-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='workrave-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc workrave-main.obj: main.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -MT workrave-main.obj -MD -MP -MF $(DEPDIR)/workrave-main.Tpo -c -o workrave-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/workrave-main.Tpo $(DEPDIR)/workrave-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='workrave-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(workrave_CXXFLAGS) $(CXXFLAGS) -c -o workrave-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f ./$(DEPDIR)/workrave-BreakWindow.Po -rm -f ./$(DEPDIR)/workrave-GUI.Po -rm -f ./$(DEPDIR)/workrave-MainWindow.Po -rm -f ./$(DEPDIR)/workrave-PreludeWindow.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxTextView.Po -rm -f ./$(DEPDIR)/workrave-main.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/workrave-BreakWindow.Po -rm -f ./$(DEPDIR)/workrave-GUI.Po -rm -f ./$(DEPDIR)/workrave-MainWindow.Po -rm -f ./$(DEPDIR)/workrave-PreludeWindow.Po -rm -f ./$(DEPDIR)/workrave-TimerBoxTextView.Po -rm -f ./$(DEPDIR)/workrave-main.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool cscopelist-am ctags ctags-am \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-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 installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS .PRECIOUS: Makefile @HAVE_APP_TEXT_TRUE@$(bin_PROGRAMS): ${top_srcdir}/backend/src/libworkrave-backend.la \ @HAVE_APP_TEXT_TRUE@ ${top_srcdir}/common/src/libworkrave-common.la \ @HAVE_APP_TEXT_TRUE@ ${top_srcdir}/frontend/common/src/libworkrave-frontend-common.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: workrave-1.10.50/frontend/text/src/main.cc0000644000175100001710000000343414221624107017253 0ustar00gdm00000000000000// main.cc --- Main // // Copyright (C) 2001, 2002, 2003, 2007, 2008 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include #include "GUI.hh" #ifdef PLATFORM_OS_WINDOWS #endif extern "C" int run(int argc, char **argv); int run(int argc, char **argv) { GUI *gui = new GUI(argc, argv); #ifdef PLATFORM_OS_WINDOWS dll_hell_check(); #endif gui->main(); delete gui; return 0; } #if !defined(PLATFORM_OS_WINDOWS) || !defined(NDEBUG) int main(int argc, char **argv) { int ret = run(argc, argv); return ret; } #else # include int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { char *argv[] = {szCmdLine}; char buf[1000]; // InnoSetup: [...] requires that you add code to your application // which creates a mutex with the name you specify in this // directive. HANDLE mtx = CreateMutex(NULL, FALSE, "WorkraveMutex"); if (mtx != NULL && GetLastError() != ERROR_ALREADY_EXISTS) { run(sizeof(argv) / sizeof(argv[0]), argv); } return (0); } #endif workrave-1.10.50/frontend/text/src/Makefile.am0000644000175100001710000000320514221624107020050 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2009, 2011 Rob Caelers & Raymond Penners # SUBDIRS = MAINTAINERCLEANFILES = Makefile.in if HAVE_APP_TEXT bin_PROGRAMS = workrave workrave_SOURCES = GUI.cc PreludeWindow.cc BreakWindow.cc TimerBoxTextView.cc MainWindow.cc \ main.cc workrave_CXXFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -W \ -DATADIR="\"${datadir}\"" \ -I. @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @X_CFLAGS@ \ @GTK_CFLAGS@ \ @GCONF_CFLAGS@ -D_XOPEN_SOURCE=600 @GNET_CFLAGS@ \ $(includeswin32) $(win32cflags) $(includesinput) $(includesmacos) \ $(includesx) \ -I${DISTRIBUTION_HOME}/gtkmm/src \ -I${STATISTICS_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/common/src workrave_CFLAGS = -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -I. @WR_COMMON_INCLUDES@ @WR_BACKEND_INCLUDES@ @WR_FRONTEND_COMMON_INCLUDES@ \ @X_CFLAGS@ @GTK_CFLAGS@ @GSTREAMER_CFLAGS@\ -D_XOPEN_SOURCE=600 \ -I${DISTRIBUTION_HOME}/gtkmm/src \ -I${STATISTICS_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/gtkmm/src \ -I${EXERCISES_HOME}/common/src \ $(win32cflags) $(bin_PROGRAMS): ${top_srcdir}/backend/src/libworkrave-backend.la \ ${top_srcdir}/common/src/libworkrave-common.la \ ${top_srcdir}/frontend/common/src/libworkrave-frontend-common.la workrave_LDFLAGS = @WR_LDFLAGS@ ${ldflags} workrave_LDADD = @WR_LDADD@ @X_LIBS@ \ @GTK_LIBS@ @GNET_LIBS@ @X_LIBS@ @GCONF_LIBS@ @GDOME_LIBS@ \ @GSTREAMER_LIBS@ \ ${X11LIBS} ${WIN32LIBS} ${MacOSLIBS} ${WIN32CONSOLE} endif workrave-1.10.50/frontend/text/src/PreludeWindow.cc0000644000175100001710000000773714221624107021131 0ustar00gdm00000000000000// PreludeWindow.cc // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "debug.hh" #include "nls.h" #include "Text.hh" #include "Util.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "IBreakResponse.hh" #include "PreludeWindow.hh" //! Construct a new Microbreak window. PreludeWindow::PreludeWindow(BreakId break_id) : break_id(break_id) , progress_value(0) , progress_max_value(0) , prelude_response(NULL) { // XXX: Add window initialization. switch (break_id) { case BREAK_ID_MICRO_BREAK: cout << "Time for a micro-break?" << endl; break; case BREAK_ID_REST_BREAK: cout << "You need a rest break..." << endl; break; case BREAK_ID_DAILY_LIMIT: cout << "You should stop for today..." << endl; break; default: break; } } //! Destructor. PreludeWindow::~PreludeWindow() {} //! Starts the microbreak. void PreludeWindow::start() { TRACE_ENTER("PreludeWindow::start"); // XXX: Set windows hints (ie. skip_winlist, always on top) // XXX: Show prelude window // XXX: Center prelude window TRACE_EXIT(); } //! Self-Destruct /*! * This method MUST be used to destroy the objects through the * IPreludeWindow. it is NOT possible to do a delete on * this interface... */ void PreludeWindow::destroy() { TRACE_ENTER("PreludeWindow::destroy"); delete this; TRACE_EXIT(); } //! Stops the microbreak. void PreludeWindow::stop() { TRACE_ENTER("PreludeWindow::stop"); // XXX: Hide the window TRACE_EXIT(); } //! Refresh window. void PreludeWindow::refresh() { // XXX: Show progress string s; int tminus = progress_max_value - progress_value; if (tminus >= 0) { if (tminus < 0) tminus = 0; s = progress_text + " " + Text::time_to_string(tminus); } cout << "PRELUDE " << break_id << " : " << s << endl; } //! Sets the prelude progress. void PreludeWindow::set_progress(int value, int max_value) { progress_value = value; progress_max_value = max_value; refresh(); } //! Set the progress text. void PreludeWindow::set_progress_text(IApp::PreludeProgressText text) { switch (text) { // Workrave will force a break when the prelude window is removed. // This is done after 'maximum number of prompts' in the preferences. case IApp::PROGRESS_TEXT_BREAK_IN: progress_text = "Break in"; break; // Workrave will remove the prelude window and try again later. case IApp::PROGRESS_TEXT_DISAPPEARS_IN: progress_text = "Disappears in"; break; // Workrave will remove the prelude windows and will NOT try again. // I wonder if it is still possible to configure this using the GUI. case IApp::PROGRESS_TEXT_SILENT_IN: progress_text = "Silent in"; break; } } //! Sets the prelude stage. void PreludeWindow::set_stage(IApp::PreludeStage stage) { switch (stage) { // Initial stage, 'friendly prelude' case IApp::STAGE_INITIAL: break; // Move prelude window out-of-the-way. e.g. to top of screen. case IApp::STAGE_MOVE_OUT: break; // Less friendly prelude case IApp::STAGE_WARN: break; // Even less friendly prelude. case IApp::STAGE_ALERT: break; } } workrave-1.10.50/frontend/text/src/GUI.cc0000644000175100001710000002130614221624107016751 0ustar00gdm00000000000000// TextGUI.cc --- The WorkRave GUI // // Copyright (C) 2001 - 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #include "nls.h" #include "debug.hh" #include #include #include #include #include #include #include #include "GUI.hh" #include "PreludeWindow.hh" #include "BreakWindow.hh" #include "IBreakWindow.hh" #include "MainWindow.hh" #include "CoreFactory.hh" #include "ICore.hh" #include "IConfigurator.hh" #include "System.hh" #include "IBreakResponse.hh" #include "SoundPlayer.hh" #include "Util.hh" #ifdef PLATFORM_OS_WINDOWS # include "crashlog.h" #endif #include GUI *GUI::instance = NULL; const string GUI::CFG_KEY_GUI_BLOCK_MODE = "gui/breaks/block_mode"; //! GUI Constructor. /*! * \param argc number of command line parameters. * \param argv all command line parameters. */ GUI::GUI(int argc, char **argv) : configurator(NULL) , core(NULL) , sound_player(NULL) , break_window(NULL) , prelude_window(NULL) , main_window(NULL) , response(NULL) , break_window_destroy(false) , prelude_window_destroy(false) , active_break_id(BREAK_ID_NONE) { TRACE_ENTER("GUI:GUI"); assert(!instance); instance = this; this->argc = argc; this->argv = argv; TRACE_EXIT(); } //! Destructor. GUI::~GUI() { TRACE_ENTER("GUI:~GUI"); assert(instance); instance = NULL; delete main_window; TRACE_EXIT(); } //! Forces a restbreak. void GUI::restbreak_now() { core->force_break(BREAK_ID_REST_BREAK, true); } gboolean GUI::static_on_timer(gpointer data) { GUI *gui = (GUI *)data; gui->on_timer(); return true; } //! The main entry point. void GUI::main() { TRACE_ENTER("GUI::main"); #ifdef PLATFORM_OS_WINDOWS // Enable Windows structural exception handling. __try1(exception_handler); #endif g_type_init(); init_debug(); init_core(); init_sound_player(); #ifdef PLATFORM_OS_WINDOWS System::init(); #else System::init(NULL); #endif // The main status window. main_window = new MainWindow(); main_loop = g_main_loop_new(NULL, FALSE); const char *env = getenv("WORKRAVE_TEST"); if (env == NULL) { g_timeout_add(1000, static_on_timer, this); } g_main_loop_run(main_loop); g_main_loop_unref(main_loop); delete main_window; main_window = NULL; System::clear(); #ifdef PLATFORM_OS_WINDOWS // Disable Windows structural exception handling. __except1; #endif TRACE_EXIT(); } //! Terminates the GUI. void GUI::terminate() { TRACE_ENTER("GUI::terminate"); CoreFactory::get_configurator()->save(); collect_garbage(); g_main_loop_quit(main_loop); TRACE_EXIT(); } //! Periodic heartbeat. bool GUI::on_timer() { if (core != NULL) { core->heartbeat(); } if (main_window != NULL) { main_window->update(); } collect_garbage(); return true; } #ifdef NDEBUG static void my_log_handler(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { } #endif //! Initializes the GUI void GUI::init_gui() { // The main status window. main_window = new MainWindow(); } //! Initializes messages hooks. void GUI::init_debug() { #ifdef NDEBUG char *domains[] = {NULL, "Gtk", "GLib", "Gdk", "gtkmm", "GLib-GObject"}; for (int i = 0; i < sizeof(domains) / sizeof(char *); i++) { g_log_set_handler( domains[i], (GLogLevelFlags)(G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION), my_log_handler, NULL); } #endif } //! Initializes i18n. void GUI::init_nls() { #ifdef ENABLE_NLS const char *locale_dir; # ifdef PLATFORM_OS_WINDOWS string dir = Util::get_application_directory() + "\\lib\\locale"; locale_dir = dir.c_str(); # else locale_dir = "FIXME:"; # endif bindtextdomain(PACKAGE, locale_dir); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); #endif } //! Initializes the core. void GUI::init_core() { string display_name = ""; core = CoreFactory::get_core(); core->init(argc, argv, this, display_name); core->set_core_events_listener(this); } //! Initializes the sound player. void GUI::init_sound_player() { sound_player = new SoundPlayer(); } void GUI::core_event_notify(CoreEvent event) { TRACE_ENTER_MSG("GUI::core_event_notify", event) // FIXME: HACK SoundEvent snd = (SoundEvent)event; if (sound_player != NULL) { TRACE_MSG("play"); sound_player->play_sound(snd); } TRACE_EXIT(); } void GUI::core_event_operation_mode_changed(const OperationMode m) { (void)m; } //! Returns a break window for the specified break. IBreakWindow * GUI::new_break_window(BreakId break_id, bool user_initiated) { IBreakWindow *ret = NULL; BlockMode block_mode = get_block_mode(); bool ignorable = true; (void)user_initiated; if (break_id == BREAK_ID_MICRO_BREAK) { ret = new BreakWindow(break_id, ignorable, block_mode); } else if (break_id == BREAK_ID_REST_BREAK) { ret = new BreakWindow(break_id, ignorable, block_mode); } else if (break_id == BREAK_ID_DAILY_LIMIT) { ret = new BreakWindow(break_id, ignorable, block_mode); } return ret; } void GUI::set_break_response(IBreakResponse *rep) { response = rep; } void GUI::create_prelude_window(BreakId break_id) { hide_break_window(); collect_garbage(); active_break_id = break_id; prelude_window = new PreludeWindow(break_id); prelude_window->set_response(response); } void GUI::create_break_window(BreakId break_id, BreakHint break_hint) { TRACE_ENTER("GUI::start_break_window"); hide_break_window(); collect_garbage(); active_break_id = break_id; break_window = new_break_window(break_id, ignorable); break_window->set_response(response); if (get_block_mode() != GUI::BLOCK_MODE_NONE) { /// XXX: grab keyboard and mouse } TRACE_EXIT(); } void GUI::hide_break_window() { TRACE_ENTER("GUI::hide_break_window"); active_break_id = BREAK_ID_NONE; if (prelude_window != NULL) { prelude_window->stop(); prelude_window_destroy = true; } if (break_window != NULL) { break_window->stop(); break_window_destroy = true; } // XXX: release the mouse/keyboard grab TRACE_EXIT(); } void GUI::show_break_window() { TRACE_ENTER("GUI::hide_break_window"); active_break_id = BREAK_ID_NONE; if (prelude_window != NULL) { prelude_window->start(); } if (break_window != NULL) { break_window->start(); } TRACE_EXIT(); } void GUI::refresh_break_window() { if (prelude_window != NULL) { prelude_window->refresh(); } if (break_window != NULL) { break_window->refresh(); } } void GUI::set_break_progress(int value, int max_value) { if (prelude_window != NULL) { prelude_window->set_progress(value, max_value); } if (break_window != NULL) { break_window->set_progress(value, max_value); } } void GUI::set_prelude_stage(PreludeStage stage) { if (prelude_window != NULL) { prelude_window->set_stage(stage); } } void GUI::set_prelude_progress_text(PreludeProgressText text) { if (prelude_window != NULL) { prelude_window->set_progress_text(text); } } //! Destroys the break/prelude windows, if requested. void GUI::collect_garbage() { TRACE_ENTER("GUI::collect_garbage"); if (prelude_window_destroy) { if (prelude_window != NULL) { prelude_window->destroy(); prelude_window = NULL; } prelude_window_destroy = false; } if (break_window_destroy) { if (break_window != NULL) { break_window->destroy(); break_window = NULL; } break_window_destroy = false; } TRACE_EXIT(); } GUI::BlockMode GUI::get_block_mode() { bool b; int mode; b = CoreFactory::get_configurator()->get_value(CFG_KEY_GUI_BLOCK_MODE, mode); if (!b) { mode = BLOCK_MODE_INPUT; } return (BlockMode)mode; } void GUI::set_block_mode(BlockMode mode) { CoreFactory::get_configurator()->set_value(CFG_KEY_GUI_BLOCK_MODE, int(mode)); } workrave-1.10.50/frontend/text/Makefile.in0000644000000000000000000005522214221624203020366 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2005 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/text ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/text/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/text/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/text/Makefile.am0000644000175100001710000000026314221624107017262 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2005 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/Makefile.am0000644000175100001710000000034114221624107016273 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2004, 2005, 2008, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = common gtkmm plugin applets text workrave-1.10.50/frontend/plugin/0000755000000000000000000000000014221624440016630 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/statistics/0000755000000000000000000000000014221624440021022 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/statistics/gtkmm/0000755000000000000000000000000014221624440022141 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/statistics/gtkmm/src/0000755000000000000000000000000014221624440022730 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/statistics/gtkmm/src/StatisticsDialog.hh0000644000175100001710000000551414221624107025437 0ustar00gdm00000000000000// PreferencesDialog.hh --- Statistics Dialog // // Copyright (C) 2002, 2003, 2006, 2007, 2008 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef STATISTICSDIALOG_HH #define STATISTICSDIALOG_HH #include "preinclude.h" #include #include "IStatistics.hh" #include "Hig.hh" namespace Gtk { class Label; class Button; class Calendar; class Notebook; class Widget; } // namespace Gtk using namespace workrave; class StatisticsDialog : public HigDialog { public: StatisticsDialog(); ~StatisticsDialog(); static const int BREAK_STATS = 7; int run(); private: /** Stats */ IStatistics *statistics; /** Labels for break stats. */ Gtk::Label *break_labels[BREAK_ID_SIZEOF][9]; /** Labels for break stats. */ Gtk::Label *activity_labels[5]; /** Usage label */ Gtk::Label *usage_label; /** Daily time. */ Gtk::Label *daily_usage_time_label; /** Weekly time. */ Gtk::Label *weekly_usage_time_label; /** Monthly time */ Gtk::Label *monthly_usage_time_label; /** Labels indicating the start time of the visible data. */ Gtk::Label *date_label; /** Calendar */ Gtk::Calendar *calendar; /** Forward button */ Gtk::Button *forward_btn; /** Back button */ Gtk::Button *back_btn; /** Last button */ Gtk::Button *last_btn; /** First button */ Gtk::Button *first_btn; /** Delete button */ Gtk::Button *delete_btn; bool update_usage_real_time; void on_history_delete_all(); void init_gui(); void select_day(int day); void create_break_page(Gtk::Widget *tnotebook); void create_activity_page(Gtk::Widget *tnotebook); void stream_distance(std::stringstream &stream, int64_t pixels); void get_calendar_day_index(int &idx, int &next, int &prev); void set_calendar_day_index(int idx); void on_calendar_month_changed(); void on_calendar_day_selected(); void on_history_go_back(); void on_history_go_forward(); void on_history_goto_last(); void on_history_goto_first(); void display_calendar_date(); void display_statistics(IStatistics::DailyStats *stats); void clear_display_statistics(); void display_week_statistics(); void display_month_statistics(); bool on_timer(); }; #endif // STATISTICSWINDOW_HH workrave-1.10.50/frontend/plugin/statistics/gtkmm/src/Makefile.in0000644000000000000000000004101714221624203024775 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/statistics/gtkmm/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/statistics/gtkmm/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/statistics/gtkmm/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/statistics/gtkmm/src/StatisticsDialog.cc0000644000175100001710000005533314221624107025431 0ustar00gdm00000000000000// StatisticsDialog.cc --- Statistics dialog // // Copyright (C) 2002 - 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "preinclude.h" #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef HAVE_UNISTD_H # include #endif #include #include #include #include #include #include #include "debug.hh" #include "nls.h" #include "ICore.hh" #include "CoreFactory.hh" #include "StatisticsDialog.hh" #include "Text.hh" #include "Util.hh" #include "GtkUtil.hh" #include "Locale.hh" StatisticsDialog::StatisticsDialog() : HigDialog(_("Statistics"), false, false) , statistics(NULL) , daily_usage_time_label(NULL) , weekly_usage_time_label(NULL) , monthly_usage_time_label(NULL) , date_label(NULL) , update_usage_real_time(false) { ICore *core = CoreFactory::get_core(); statistics = core->get_statistics(); for (int i = 0; i < 5; i++) { activity_labels[i] = NULL; } init_gui(); display_calendar_date(); } //! Destructor. StatisticsDialog::~StatisticsDialog() {} int StatisticsDialog::run() { // Periodic timer. Glib::signal_timeout().connect(sigc::mem_fun(*this, &StatisticsDialog::on_timer), 1000); show_all(); return 0; } void StatisticsDialog::init_gui() { #if !defined(PLATFORM_OS_MACOS) Gtk::Notebook *tnotebook = Gtk::manage(new Gtk::Notebook()); tnotebook->set_tab_pos(Gtk::POS_TOP); #else Gtk::HBox *tnotebook = Gtk::manage(new Gtk::HBox(false, 6)); #endif // Calendar calendar = Gtk::manage(new Gtk::Calendar()); calendar->signal_month_changed().connect(sigc::mem_fun(*this, &StatisticsDialog::on_calendar_month_changed)); calendar->signal_day_selected().connect(sigc::mem_fun(*this, &StatisticsDialog::on_calendar_day_selected)); #ifdef HAVE_GTK3 calendar->set_display_options(Gtk::CALENDAR_SHOW_WEEK_NUMBERS | Gtk::CALENDAR_SHOW_DAY_NAMES | Gtk::CALENDAR_SHOW_HEADING); #else calendar->display_options(Gtk::CALENDAR_SHOW_WEEK_NUMBERS | Gtk::CALENDAR_SHOW_DAY_NAMES | Gtk::CALENDAR_SHOW_HEADING); #endif // Button box. Gtk::HBox *btnbox = Gtk::manage(new Gtk::HBox(false, 6)); first_btn = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, Gtk::Stock::GOTO_FIRST)); first_btn->signal_clicked().connect(sigc::mem_fun(*this, &StatisticsDialog::on_history_goto_first)); last_btn = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, Gtk::Stock::GOTO_LAST)); last_btn->signal_clicked().connect(sigc::mem_fun(*this, &StatisticsDialog::on_history_goto_last)); back_btn = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, Gtk::Stock::GO_BACK)); back_btn->signal_clicked().connect(sigc::mem_fun(*this, &StatisticsDialog::on_history_go_back)); forward_btn = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, Gtk::Stock::GO_FORWARD)); forward_btn->signal_clicked().connect(sigc::mem_fun(*this, &StatisticsDialog::on_history_go_forward)); btnbox->pack_start(*first_btn, true, true, 0); btnbox->pack_start(*back_btn, true, true, 0); btnbox->pack_start(*forward_btn, true, true, 0); btnbox->pack_start(*last_btn, true, true, 0); // Info box date_label = Gtk::manage(new Gtk::Label); // Navigation box HigCategoryPanel *browsebox = Gtk::manage(new HigCategoryPanel(_("Browse history"))); browsebox->add_widget(*btnbox); browsebox->add_widget(*calendar); // Delete button delete_btn = Gtk::manage(GtkUtil::create_custom_stock_button(_("Delete all statistics history"), Gtk::Stock::DELETE)); delete_btn->signal_clicked().connect(sigc::mem_fun(*this, &StatisticsDialog::on_history_delete_all)); browsebox->add_widget(*delete_btn); // Stats box HigCategoriesPanel *navbox = Gtk::manage(new HigCategoriesPanel()); HigCategoryPanel *statbox = Gtk::manage(new HigCategoryPanel(_("Statistics"))); statbox->add_label(_("Date:"), *date_label); statbox->add_widget(*tnotebook); navbox->add(*statbox); Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 12)); hbox->pack_start(*browsebox, false, false, 0); hbox->pack_start(*navbox, true, true, 0); create_break_page(tnotebook); #if !defined(PLATFORM_OS_MACOS) // No details activity statistics on OS X.. create_activity_page(tnotebook); #endif tnotebook->show_all(); #if !defined(PLATFORM_OS_MACOS) tnotebook->set_current_page(0); #endif get_vbox()->pack_start(*hbox, true, true, 0); // Dialog add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); show_all(); } void StatisticsDialog::create_break_page(Gtk::Widget *tnotebook) { Gtk::HBox *box = Gtk::manage(new Gtk::HBox(false, 3)); Gtk::Label *lab = Gtk::manage(new Gtk::Label(_("Breaks"))); box->pack_start(*lab, false, false, 0); Gtk::Table *table = Gtk::manage(new Gtk::Table(10, 5, false)); table->set_row_spacings(2); table->set_col_spacings(6); table->set_border_width(6); Gtk::Widget *unique_label = GtkUtil::create_label_with_tooltip(_("Break prompts"), _("The number of times you were prompted to break, excluding" " repeated prompts for the same break")); Gtk::Widget *prompted_label = GtkUtil::create_label_with_tooltip(_("Repeated prompts"), _("The number of times you were repeatedly prompted to break")); Gtk::Widget *taken_label = GtkUtil::create_label_with_tooltip(_("Prompted breaks taken"), _("The number of times you took a break when being prompted")); Gtk::Widget *natural_label = GtkUtil::create_label_with_tooltip(_("Natural breaks taken"), _("The number of times you took a break without being prompted")); Gtk::Widget *skipped_label = GtkUtil::create_label_with_tooltip(_("Breaks skipped"), _("The number of breaks you skipped")); Gtk::Widget *postponed_label = GtkUtil::create_label_with_tooltip(_("Breaks postponed"), _("The number of breaks you postponed")); Gtk::Widget *overdue_label = GtkUtil::create_label_with_tooltip(_("Overdue time"), _("The total time this break was overdue")); Gtk::Widget *usage_label = GtkUtil::create_label_with_tooltip(_("Usage"), _("Active computer usage")); Gtk::Widget *daily_usage_label = GtkUtil::create_label_with_tooltip(_("Daily"), _("The total computer usage for the selected day")); Gtk::Widget *weekly_usage_label = GtkUtil::create_label_with_tooltip(_("Weekly"), _("The total computer usage for the whole week of the selected day")); Gtk::Widget *monthly_usage_label = GtkUtil::create_label_with_tooltip(_("Monthly"), _("The total computer usage for the whole month of the selected day")); Gtk::HSeparator *hrule = Gtk::manage(new Gtk::HSeparator()); Gtk::VSeparator *vrule = Gtk::manage(new Gtk::VSeparator()); // Add labels to table. int y = 0; Gtk::Widget *mp_label = Gtk::manage(GtkUtil::create_label_for_break(BREAK_ID_MICRO_BREAK)); Gtk::Widget *rb_label = Gtk::manage(GtkUtil::create_label_for_break(BREAK_ID_REST_BREAK)); Gtk::Widget *dl_label = Gtk::manage(GtkUtil::create_label_for_break(BREAK_ID_DAILY_LIMIT)); y = 0; GtkUtil::table_attach_left_aligned(*table, *mp_label, 2, y); GtkUtil::table_attach_left_aligned(*table, *rb_label, 3, y); GtkUtil::table_attach_left_aligned(*table, *dl_label, 4, y); y = 1; table->attach(*hrule, 0, 5, y, y + 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); table->attach(*vrule, 1, 2, 0, 9, Gtk::SHRINK, Gtk::EXPAND | Gtk::FILL); y = 2; GtkUtil::table_attach_left_aligned(*table, *unique_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *prompted_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *taken_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *natural_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *skipped_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *postponed_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *overdue_label, 0, y++); hrule = Gtk::manage(new Gtk::HSeparator()); table->attach(*hrule, 0, 5, y, y + 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); y++; daily_usage_time_label = Gtk::manage(new Gtk::Label()); weekly_usage_time_label = Gtk::manage(new Gtk::Label()); monthly_usage_time_label = Gtk::manage(new Gtk::Label()); vrule = Gtk::manage(new Gtk::VSeparator()); table->attach(*vrule, 1, 2, y, y + 3, Gtk::SHRINK, Gtk::EXPAND | Gtk::FILL); GtkUtil::table_attach_right_aligned(*table, *daily_usage_label, 2, y); GtkUtil::table_attach_right_aligned(*table, *weekly_usage_label, 3, y); GtkUtil::table_attach_right_aligned(*table, *monthly_usage_label, 4, y); y++; hrule = Gtk::manage(new Gtk::HSeparator()); table->attach(*hrule, 0, 5, y, y + 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); y++; GtkUtil::table_attach_left_aligned(*table, *usage_label, 0, y); GtkUtil::table_attach_right_aligned(*table, *daily_usage_time_label, 2, y); GtkUtil::table_attach_right_aligned(*table, *weekly_usage_time_label, 3, y); GtkUtil::table_attach_right_aligned(*table, *monthly_usage_time_label, 4, y); // Put the breaks in table. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { for (int j = 0; j < BREAK_STATS; j++) { break_labels[i][j] = Gtk::manage(new Gtk::Label()); GtkUtil::table_attach_right_aligned(*table, *break_labels[i][j], i + 2, j + 2); } } box->show_all(); #if !defined(PLATFORM_OS_MACOS) # ifdef HAVE_GTK3 ((Gtk::Notebook *)tnotebook)->append_page(*table, *box); # else ((Gtk::Notebook *)tnotebook)->pages().push_back(Gtk::Notebook_Helpers::TabElem(*table, *box)); # endif #else ((Gtk::HBox *)tnotebook)->pack_start(*table, true, true, 0); #endif } void StatisticsDialog::create_activity_page(Gtk::Widget *tnotebook) { Gtk::HBox *box = Gtk::manage(new Gtk::HBox(false, 3)); Gtk::Label *lab = Gtk::manage(new Gtk::Label(_("Activity"))); box->pack_start(*lab, false, false, 0); Gtk::Table *table = Gtk::manage(new Gtk::Table(8, 5, false)); table->set_row_spacings(2); table->set_col_spacings(6); table->set_border_width(6); Gtk::Widget *mouse_time_label = GtkUtil::create_label_with_tooltip(_("Mouse usage:"), _("The total time you were using the mouse")); Gtk::Widget *mouse_movement_label = GtkUtil::create_label_with_tooltip(_("Mouse movement:"), _("The total on-screen mouse movement")); Gtk::Widget *mouse_click_movement_label = GtkUtil::create_label_with_tooltip(_("Effective mouse movement:"), _("The total mouse movement you would have had if you moved your " "mouse in straight lines between clicks")); Gtk::Widget *mouse_clicks_label = GtkUtil::create_label_with_tooltip(_("Mouse button clicks:"), _("The total number of mouse button clicks")); Gtk::Widget *keystrokes_label = GtkUtil::create_label_with_tooltip(_("Keystrokes:"), _("The total number of keys pressed")); int y = 0; GtkUtil::table_attach_left_aligned(*table, *mouse_time_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *mouse_movement_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *mouse_click_movement_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *mouse_clicks_label, 0, y++); GtkUtil::table_attach_left_aligned(*table, *keystrokes_label, 0, y++); for (int i = 0; i < 5; i++) { activity_labels[i] = Gtk::manage(new Gtk::Label()); GtkUtil::table_attach_right_aligned(*table, *activity_labels[i], 1, i); } box->show_all(); #ifdef HAVE_GTK3 ((Gtk::Notebook *)tnotebook)->append_page(*table, *box); #else ((Gtk::Notebook *)tnotebook)->pages().push_back(Gtk::Notebook_Helpers::TabElem(*table, *box)); #endif } void StatisticsDialog::display_statistics(IStatistics::DailyStats *stats) { IStatistics::DailyStats empty; bool is_empty; is_empty = stats == NULL; if (is_empty) { stats = ∅ } if (stats->start.tm_year == 0 /*stats->is_empty() */) { date_label->set_text("-"); } else { char date[100]; char start[100]; char stop[100]; strftime(date, sizeof(date), "%x", &stats->start); strftime(start, sizeof(start), "%X", &stats->start); strftime(stop, sizeof(stop), "%X", &stats->stop); char buf[200]; sprintf(buf, _("%s, from %s to %s"), date, start, stop); date_label->set_text(buf); } int64_t value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_ACTIVE_TIME]; daily_usage_time_label->set_text(Text::time_to_string(value)); // Put the breaks in table. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { stringstream ss; value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_UNIQUE_BREAKS]; ss.str(""); ss << value; break_labels[i][0]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_PROMPTED] - value; ss.str(""); ss << value; break_labels[i][1]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_TAKEN]; ss.str(""); ss << value; break_labels[i][2]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_NATURAL_TAKEN]; ss.str(""); ss << value; break_labels[i][3]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_SKIPPED]; ss.str(""); ss << value; break_labels[i][4]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_POSTPONED]; ss.str(""); ss << value; break_labels[i][5]->set_text(ss.str()); value = stats->break_stats[i][IStatistics::STATS_BREAKVALUE_TOTAL_OVERDUE]; break_labels[i][6]->set_text(Text::time_to_string(value)); } stringstream ss; if (activity_labels[0] != NULL) { // Label not available is OS X value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_MOVEMENT_TIME]; if (value > 24 * 60 * 60) { value = 0; } activity_labels[0]->set_text(Text::time_to_string(value)); value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_MOUSE_MOVEMENT]; ss.str(""); stream_distance(ss, value); activity_labels[1]->set_text(ss.str()); value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_CLICK_MOVEMENT]; ss.str(""); stream_distance(ss, value); activity_labels[2]->set_text(ss.str()); value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_CLICKS]; ss.str(""); ss << value; activity_labels[3]->set_text(ss.str()); value = stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_KEYSTROKES]; ss.str(""); ss << value; activity_labels[4]->set_text(ss.str()); } } void StatisticsDialog::display_week_statistics() { guint y, m, d; calendar->get_date(y, m, d); std::tm timeinfo; std::memset(&timeinfo, 0, sizeof(timeinfo)); timeinfo.tm_mday = d; timeinfo.tm_mon = m; timeinfo.tm_year = y - 1900; std::time_t t = std::mktime(&timeinfo); std::tm const *time_loc = std::localtime(&t); int offset = (time_loc->tm_wday - Locale::get_week_start() + 7) % 7; int64_t total_week = 0; for (int i = 0; i < 7; i++) { std::memset(&timeinfo, 0, sizeof(timeinfo)); timeinfo.tm_mday = d - offset + i; timeinfo.tm_mon = m; timeinfo.tm_year = y - 1900; t = std::mktime(&timeinfo); time_loc = std::localtime(&t); int idx, next, prev; statistics->get_day_index_by_date(time_loc->tm_year + 1900, time_loc->tm_mon + 1, time_loc->tm_mday, idx, next, prev); if (idx >= 0) { IStatistics::DailyStats *stats = statistics->get_day(idx); if (stats != NULL) { total_week += stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_ACTIVE_TIME]; } update_usage_real_time |= (idx == 0); } } weekly_usage_time_label->set_text(total_week > 0 ? Text::time_to_string(total_week) : ""); } void StatisticsDialog::display_month_statistics() { guint y, m, d; calendar->get_date(y, m, d); guint max_mday; if (m == 3 || m == 5 || m == 8 || m == 10) { max_mday = 30; } else if (m == 1) { bool is_leap = (y % 4 == 0 && y % 100 != 0) || (y % 400 == 0); if (is_leap) { max_mday = 29; } else { max_mday = 28; } } else { max_mday = 31; } int64_t total_month = 0; for (guint i = 1; i <= max_mday; i++) { int idx, next, prev; statistics->get_day_index_by_date(y, m + 1, i, idx, next, prev); if (idx >= 0) { IStatistics::DailyStats *stats = statistics->get_day(idx); if (stats != NULL) { total_month += stats->misc_stats[IStatistics::STATS_VALUE_TOTAL_ACTIVE_TIME]; } update_usage_real_time |= (idx == 0); } } monthly_usage_time_label->set_text(total_month > 0 ? Text::time_to_string(total_month) : ""); } void StatisticsDialog::clear_display_statistics() { date_label->set_text(""); daily_usage_time_label->set_text(""); weekly_usage_time_label->set_text(""); monthly_usage_time_label->set_text(""); // Put the breaks in table. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { for (int j = 0; j <= 6; j++) { break_labels[i][j]->set_text(""); } } for (int i = 0; i <= 4; i++) { if (activity_labels[i] != NULL) { activity_labels[i]->set_text(""); } } } void StatisticsDialog::on_calendar_month_changed() { display_calendar_date(); } void StatisticsDialog::on_calendar_day_selected() { display_calendar_date(); } void StatisticsDialog::get_calendar_day_index(int &idx, int &next, int &prev) { guint y, m, d; calendar->get_date(y, m, d); statistics->get_day_index_by_date(y, m + 1, d, idx, next, prev); } void StatisticsDialog::set_calendar_day_index(int idx) { IStatistics::DailyStats *stats = statistics->get_day(idx); calendar->select_month(stats->start.tm_mon, stats->start.tm_year + 1900); calendar->select_day(stats->start.tm_mday); display_calendar_date(); } void StatisticsDialog::display_calendar_date() { int idx, next, prev; get_calendar_day_index(idx, next, prev); IStatistics::DailyStats *stats = NULL; if (idx >= 0) { stats = statistics->get_day(idx); display_statistics(stats); } else { clear_display_statistics(); } update_usage_real_time = false; display_week_statistics(); display_month_statistics(); forward_btn->set_sensitive(next >= 0); back_btn->set_sensitive(prev >= 0); last_btn->set_sensitive(idx != 0); first_btn->set_sensitive(idx != statistics->get_history_size()); } void StatisticsDialog::on_history_go_back() { int idx, next, prev; get_calendar_day_index(idx, next, prev); if (prev >= 0) set_calendar_day_index(prev); } void StatisticsDialog::on_history_go_forward() { int idx, next, prev; get_calendar_day_index(idx, next, prev); if (next >= 0) set_calendar_day_index(next); } void StatisticsDialog::on_history_goto_last() { set_calendar_day_index(0); } void StatisticsDialog::on_history_goto_first() { int size = statistics->get_history_size(); set_calendar_day_index(size); } void StatisticsDialog::on_history_delete_all() { /* Modal dialogs interrupt GUI input. That can be a problem if for example a break is triggered while the message boxes are shown. The user would have no way to interact with the break window without closing out the dialog which may be hidden behind it. Temporarily override operation mode to avoid catastrophe, and remove the override before any return. */ const char funcname[] = "StatisticsDialog::on_history_delete_all"; CoreFactory::get_core()->set_operation_mode_override(OPERATION_MODE_SUSPENDED, funcname); // Confirm the user's intention string msg = HigUtil::create_alert_text(_("Warning"), _("You have chosen to delete your statistics history. Continue?")); Gtk::MessageDialog mb_ask(*this, msg, true, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_YES_NO, false); mb_ask.set_title(_("Warning")); mb_ask.get_widget_for_response(Gtk::RESPONSE_NO)->grab_default(); if (mb_ask.run() == Gtk::RESPONSE_YES) { mb_ask.hide(); // Try to delete statistics history files for (;;) { if (statistics->delete_all_history()) { msg = HigUtil::create_alert_text(_("Files deleted!"), _("The files containing your statistics history have been deleted.")); Gtk::MessageDialog mb_info(*this, msg, true, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, false); mb_info.set_title(_("Info")); mb_info.run(); break; } msg = HigUtil::create_alert_text(_("File deletion failed!"), _("The files containing your statistics history could not be deleted. Try again?")); Gtk::MessageDialog mb_error(*this, msg, true, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_YES_NO, false); mb_error.set_title(_("Error")); mb_error.get_widget_for_response(Gtk::RESPONSE_NO)->grab_default(); if (mb_error.run() != Gtk::RESPONSE_YES) break; } } // Remove this function's operation mode override CoreFactory::get_core()->remove_operation_mode_override(funcname); } //! Periodic heartbeat. bool StatisticsDialog::on_timer() { if (update_usage_real_time) { statistics->update(); display_calendar_date(); } return true; } void StatisticsDialog::stream_distance(stringstream &stream, int64_t pixels) { char buf[64]; GdkRectangle rec; #if GTK_CHECK_VERSION(3, 22, 0) GdkMonitor *monitor = gdk_display_get_monitor(gdk_display_get_default(), 0); gdk_monitor_get_geometry(monitor, &rec); #else GdkScreen *screen = gdk_display_get_default_screen(gdk_display_get_default()); gdk_screen_get_monitor_geometry(screen, 0, &rec); #endif #if GTK_CHECK_VERSION(3, 22, 0) double width_mm = gdk_monitor_get_width_mm(monitor); #elif GTK_CHECK_VERSION(2, 14, 0) double width_mm = gdk_screen_get_monitor_width_mm(screen, 0); #endif double mm = (double)pixels * width_mm / rec.width; sprintf(buf, "%.02f m", mm / 1000); stream << buf; } workrave-1.10.50/frontend/plugin/statistics/gtkmm/src/Makefile.am0000644000175100001710000000034414221624107023674 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) workrave-1.10.50/frontend/plugin/statistics/gtkmm/Makefile.in0000644000000000000000000005530514221624203024213 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/statistics/gtkmm ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/statistics/gtkmm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/statistics/gtkmm/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/statistics/gtkmm/Makefile.am0000644000175100001710000000025514221624107023106 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/plugin/statistics/Makefile.in0000644000000000000000000005526514221624203023101 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/statistics ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = gtkmm all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/statistics/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/statistics/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/statistics/Makefile.am0000644000175100001710000000025714221624107021771 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = gtkmm workrave-1.10.50/frontend/plugin/Makefile.in0000644000000000000000000005526014221624202020701 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = distribution statistics exercises all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/0000755000000000000000000000000014221624440020622 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/common/0000755000000000000000000000000014221624440022112 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/common/src/0000755000000000000000000000000014221624440022701 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/common/src/Exercise.cc0000644000175100001710000002202214221624107023664 0ustar00gdm00000000000000// Exercise.cc --- Exercises // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_EXERCISES # include "Exercise.hh" # include "Util.hh" # include "nls.h" # include "debug.hh" # ifndef PLATFORM_OS_WINDOWS_NATIVE # include # endif # include # include # include # include # include struct ExerciseParser { std::list *exercises; Exercise *exercise; std::string lang; int title_lang_rank; int description_lang_rank; std::string cdata; ExerciseParser(std::list &exe); const gchar *const *i18n_languages; }; static const gchar * exercise_parse_lookup_attribute(const gchar *find, const gchar **names, const gchar **values) { const gchar *ret = NULL; if (names != NULL) { for (int i = 0;; i++) { if (!names[i]) break; if (!strcmp(names[i], find)) { ret = values[i]; break; } } } return ret; } /* Called for open tags */ static void exercise_parser_start_element(GMarkupParseContext *, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer user_data, GError **) { TRACE_ENTER_MSG("exercise_parser_start_element", element_name); ExerciseParser *ep = (ExerciseParser *)user_data; if (!strcmp(element_name, "exercise")) { ep->exercises->push_back(Exercise()); ep->exercise = &(ep->exercises->back()); ep->title_lang_rank = -1; ep->description_lang_rank = -1; } else if (!strcmp(element_name, "sequence")) { const gchar *duration = exercise_parse_lookup_attribute("duration", attribute_names, attribute_values); if (duration) { ep->exercise->duration = atoi(duration); } else { ep->exercise->duration = 15; } } else if (!strcmp(element_name, "image")) { int dur = 1; const gchar *duration = exercise_parse_lookup_attribute("duration", attribute_names, attribute_values); if (duration) { dur = atoi(duration); } const gchar *src = exercise_parse_lookup_attribute("src", attribute_names, attribute_values); const gchar *mirrorx = exercise_parse_lookup_attribute("mirrorx", attribute_names, attribute_values); bool mx = mirrorx != NULL && !strcmp(mirrorx, "yes"); if (src != NULL && strlen(src) > 0) { TRACE_MSG("Image src=" << src); ep->exercise->sequence.push_back(Exercise::Image(src, dur, mx)); } } else if (!strcmp(element_name, "exercises")) { } else if (!strcmp(element_name, "title") || !strcmp(element_name, "description")) { const gchar *value = exercise_parse_lookup_attribute("xml:lang", attribute_names, attribute_values); ep->lang = value ? value : ""; ep->cdata = ""; } else { TRACE_MSG(element_name); abort(); } TRACE_EXIT(); } /* Updates language dependent attribute */ static void exercise_parse_update_i18n_attribute(const gchar *const *languages, std::string &cur_value, int &cur_rank, const std::string &new_value, const std::string &new_lang) { if (languages != NULL) { const char *nl = new_lang.c_str(); int nl_len = strlen(nl); int r; if (!nl_len) { nl = "en"; nl_len = 2; } for (r = 0; languages[r] != NULL; r++) { const gchar *lang = (const gchar *)languages[r]; if (!strncmp(lang, nl, nl_len)) { break; } } if (languages[r] == NULL) { // Language not found... if (cur_rank < 0) { // ...and no previous value existed, so we're happy with just anything.. cur_value = new_value; cur_rank = 9999; } else if (cur_rank == 9999 && !strcmp(nl, "en")) { // ...but we really prefer to default to English cur_value = new_value; cur_rank = 9998; } } else { // Language found cur_value = new_value; cur_rank = r; } } else { // No languages, default to English (0). if (cur_rank != 0) { cur_value = new_value; if (new_lang == "" || new_lang == "en") { cur_rank = 0; } else { cur_rank = 1; } } } } /* Called for close tags */ static void exercise_parser_end_element(GMarkupParseContext *, const gchar *element_name, gpointer user_data, GError **) { TRACE_ENTER_MSG("exercise_parser_end_element", element_name); ExerciseParser *ep = (ExerciseParser *)user_data; if (!strcmp(element_name, "title")) { exercise_parse_update_i18n_attribute(ep->i18n_languages, ep->exercise->title, ep->title_lang_rank, ep->cdata, ep->lang); } else if (!strcmp(element_name, "description")) { exercise_parse_update_i18n_attribute( ep->i18n_languages, ep->exercise->description, ep->description_lang_rank, ep->cdata, ep->lang); } TRACE_EXIT(); } /* Called for character data */ /* text is not nul-terminated */ static void exercise_parser_text(GMarkupParseContext *, const gchar *text, gsize text_len, gpointer user_data, GError **) { TRACE_ENTER_MSG("exercise_parser_text", text); ExerciseParser *ep = (ExerciseParser *)user_data; ep->cdata.append(text, text_len); TRACE_EXIT(); } ExerciseParser::ExerciseParser(std::list &exe) { TRACE_ENTER("ExerciseParser::ExerciseParser"); exercises = &exe; exercise = NULL; lang = ""; i18n_languages = g_get_language_names(); TRACE_EXIT(); } void Exercise::parse_exercises(const char *file_name, std::list &exe) { FILE *stream = NULL; TRACE_ENTER_MSG("ExercisesParser::get_exercises", file_name); stream = fopen(file_name, "rb"); if (stream) { GMarkupParser parser; parser.text = exercise_parser_text; parser.start_element = exercise_parser_start_element; parser.end_element = exercise_parser_end_element; parser.text = exercise_parser_text; parser.passthrough = NULL; parser.error = NULL; ExerciseParser eparser(exe); GMarkupParseContext *context = g_markup_parse_context_new(&parser, (GMarkupParseFlags)0, &eparser, NULL); GError *error = NULL; char buf[1024]; while (true) { int n = fread(buf, 1, sizeof(buf), stream); if (ferror(stream)) break; g_markup_parse_context_parse(context, buf, n, &error); if (feof(stream)) break; } fclose(stream); g_markup_parse_context_end_parse(context, &error); g_markup_parse_context_free(context); } # ifdef TRACING for (std::list::iterator it = exe.begin(); it != exe.end(); it++) { Exercise &ex = *it; TRACE_MSG("exercise title=" << ex.title); TRACE_MSG("exercise desc=" << ex.description); TRACE_MSG("exercise duration=" << ex.duration); TRACE_MSG("exercise seq:"); for (std::list::iterator sit = ex.sequence.begin(); sit != ex.sequence.end(); sit++) { Exercise::Image &img = *sit; TRACE_MSG("exercise seq src=" << img.image << ", dur=" << img.duration); } TRACE_MSG("exercise end seq"); } # endif TRACE_EXIT(); } std::string Exercise::get_exercises_file_name() { return Util::complete_directory("exercises.xml", Util::SEARCH_PATH_EXERCISES); } std::list Exercise::get_exercises() { std::list exercises; std::string file_name = get_exercises_file_name(); if (file_name.length() > 0) { parse_exercises(file_name.c_str(), exercises); } return exercises; } bool Exercise::has_exercises() { std::string file_name = get_exercises_file_name(); return file_name.length() > 0; } #endif // HAVE_EXERCISES workrave-1.10.50/frontend/plugin/exercises/common/src/Makefile.in0000644000000000000000000004101714221624203024746 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises/common/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/common/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/common/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/common/src/Exercise.hh0000644000175100001710000000272114221624107023702 0ustar00gdm00000000000000// Exercise.hh --- Exercises // // Copyright (C) 2002, 2003, 2004, 2007, 2013 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EXERCISE_HH #define EXERCISE_HH #include #include struct Exercise { public: static bool has_exercises(); #ifdef HAVE_EXERCISES struct Image { std::string image; int duration; bool mirror_x; Image(const char *img, int dur, bool mx) { image = img; duration = dur; mirror_x = mx; } }; std::string title; std::string description; int duration; std::list sequence; public: static std::list get_exercises(); private: static std::string get_exercises_file_name(); static void parse_exercises(const char *file_name, std::list &); #endif // HAVE_EXERCISES }; #endif // EXERCISE_HH workrave-1.10.50/frontend/plugin/exercises/common/src/Makefile.am0000644000175100001710000000034414221624107023645 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) workrave-1.10.50/frontend/plugin/exercises/common/Makefile.in0000644000000000000000000005531314221624202024162 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises/common ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src share all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/common/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/common/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/common/share/0000755000000000000000000000000014221624440023214 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/common/share/neck-tilt-stretch-2.png0000644000175100001710000004170314221624107026341 0ustar00gdm00000000000000PNG  IHDR2PLTEp-O\ )bU:,r\dόmv[L#%#CpCZvO*)9IIluٜw,89|lS  X;SRѮDŽf̠دv\D>OfeOTc{l{UB*,* iKC.# ؔuŰ]_]3;Kg׊ʺ&HUciE8`mZ "`po($#ZIz131S WQP_B0+)٩D>="*QnSxpmc?2aJ798;FRiR櫈tN<dR++,<)N>@]A2ٰegeԑq¿}mrvt ls~cޖqÁbjo}L/1>@>2Ir ҆SBĶ, B3+ʜ{}{w~VEEHFcQ] ! 4eJNiTLFEˈi[EfT> gM>611u]=єlnkNPNz_Yde(UWUS?8L3)nI6lWٽf\Tg3"ޯ<87XcxrWJTType]eQͤaOOeN_{ pHYs  ~tIME79=x IDATx \TK*Mш2mL0٭q$iY6h"FS]ӅL mݑ NliVxBiK"M`iSR"k) '|9sܙQq'g|\a/`;wA AoF__DnwvwC{v7/vewlVj5݉}T_`bsv+߹M~m lE(: T~#x?rbПwn2:FNGIAf[Jn@tzq;/#J)ѿ.AtU;Eѽ ?CSGd6 ( '[,xL>s^03NQ0DY|4}`7.z wN7@dm?j/>O??|enmUR}o=i$ %@ ,s[݆_7i;EIf ܉mL4D UX7&|!LO]NnDGpWn~.B"OKޭg33z^?R#7%t.'\Ѷ膠_wv b86FM% goថ~1;%<#_ kr+r)I8jeM4䚡lSv@t V ^KF,w'1$LT`GlK\(,"L;1Do,z ٝH) &3$(.`N~n)}7Л!ш2mbQn@n,Н>/!. L@u 8r7ur}C*2q*EdVom79ԘV6e۶#P:?m$ɃᖹDE՝0?&@;$EE#mvDVY 6? RY4UF Yov9>n#Fgw[Ör o[1Pt*Q"nwe~ȝvh!?e%$ ,a_ny4 xEsauoh8(e)3%.к8P@ZMF@v"[mfw8'`\B(i.rd» |h+h׍9V7EYgF'Qv%?U<]S3Aӏ/Ϳv(t0>Haw!;ӎkfll:a3@`sYFKK]LHlz}ӒEco۪~w92,ƹ-8ڌ. no(ށ.WC'Bbςi$FYdͷIHbիrX0>V$ \gV:*S}Bk\A wb=h. m,mls .cpwUT~@*QR9nΟaIv'%p$I˲Cp:`\n_E x.1*~:E\Z k6NT8f!rm?'b#^NX,ڕg}w"(ScFam ٨j3Za;g6jZK*:6fvm$DLa[}6oD%"c6P TR8c'U8% lD2:_%d\, o >"Hdwv\?VdD>D{Zu2ZX#^Ft7Q4L19"z\ƜF \8`=f6SQnm(#;mY$v?}Tr O2q+6i4k4oD^(mI!#S43ۗ˨n!yܜa"sZ%dV9y"IjHZHUi {uػf cZ( I].A_]̈ K5[hN]vR;n:__lY:"',^57c|S~ :ٝԕ.a ^v >Z^H=Qٝ0[j- ); KVj v024$D2 v=C #ٶjDYBvX0p!CPǕ8Je5, ۶=`Tvw-2Sv]XmBBvѭ K`d1YT(X)Qsu[ _LۨEg,xV;&9؛BoۍҏΉCA @_ZNJ"ovA^ Ο r%4KԂ5{uK Ae;em!!t2.ѵF=[֔ZP@2q(Q'm}v 9hVer@)u˩.=]dn_^KcQ(cl9#~fGat.M&M4c));.-<'9 K N^嶺m^·LNQhwN"g}쒨,dfޜ:>jsaBt{XYYJ{JOOQѥS6jşe?%feu~q`")`N .$%R5*˂|v @V$LII)KA477/v#VM@b$Vpȴ-gFXF+G_n#/E?CF…NJIA"t͎2oJh2tTݷ2]}ԱTZhoTώv`? O-ܱЁ9Pvmqm4 >9WHv񨱱q*ǭ}s垞S( `j{|J3mj/Fx?t ^N<[Y&A#YvvP1|/_éKLϟsM2t#oZgәYoU|S "tGT@n/Ugǎm sqd#p2XH'/\.=rЩLfamCEnQͻJ ҥmm_SXF75J"'g) ՍE0{u\aۻZtߢԊ Mdlڏ y)"#Z_|ػ@ f&gǿdqq"n(YepupCuB_;r>vvuJ`syş;Yz`z0:dV-S]39!:B1pHrtS1s/o ^7WE/(*JE Q8KP@r+7x6deEDO'ϝi pt1:mv*Ko>b ŲDhNݔ0 ]OGRP0xE)ޅa`sn˥[u{o)B͕ӥ#Jܧ/Y-w>d}SZa*xQQ%)pqťj}1| rm7m-`+t >wZ iLMy٨@`ݾX,4/inA`yrdŋ^>b[#yESKl |@2nc$#Cw F\{WXu%Ks{~/>SĥK=(߁KPC%KP`{l fDgu+.ż);9\ (3twjARU?O}ꝝ7iZK.1k\/^{w7:]b6UtF$?bNMj (ٷeccQʱJpd)AϘ@c#t0w GcSqBgg+wLPxVLLΥ2 N?&V$i׹Y@tl*͝u^cӦW^y U:z`gfV"f/D$~bΛA͈66L)*Htݘ=Փ Xl?_?"#/;g;~ӑ 8OgYnZ_sy&C/ՠGG{#F2 ~*=/NeaM5K]!XV6Mt!uEm)Bf@>?5svށ/VU~JPvQfntȒi5*_']iOm$:6 GWR67 += Nݐ5<5}{_Isunt#%;x#h,6+3۳b$;.nBrcc{Xf2BoT{Ďninw/ZsOR{oy [YJYZl|JSnF\ Z>mvG%wV%aŅ +DoO)alJ|>z8Qv;Q*l"ݪnu&疰Ű2\!J*{ax욹a#^|=OI 6 ?~vv jV垈o]d1l}}$/k)**?~YSOx痿\ sO}7O5p?K 8hs>QFߵh"jKFf8E;0K&AV,>Y(_⃌ 5JK/-|' Uođ|tA…xBGrAٹD®3Ap-C-Pٱn9-3 '.]z;ye2,M-h!n_m\oo'$Ӣ٨mppHUP\Y S;4 ~85NŹgw,llCCg/Q늾Xx!7k*>cYs̲bGǤ(WZ?Cb*GݼvfLg]T>Ae닾 W!&2LSSc.\S{m\q(4%4X>;GI_{huF$0vK9oOodn1&ݳ(Ӑ})};5?[g,+IPq/3a/d,lܸ1vy #bv=|-|?q+7=d v@\2iT,M *,+-_?a%qrSR(*S)B*Y|{OW1󋦻׏ad2G78v8LІe qDnQ!@pv/_h.iAGMi/"V ͠_䫿j,'Ε gpCqp]Le J~o$yggDvzzUh@]w1 xɎ?gǞ|4h8:=?eM' Wz1뉞ھ f_|FF>>sLBό%nfxPOGGeb9KIT%ʱth̞\מBEbGVMYJEMY{#d?oHsN-q:; k`A:Bܡ~>dXTT!)8E=?FL`<>: 4F:G7\,+h:jE -ap_؊ILb?W!c7xD߾g ">Bn$F:VPA=F Q^ R4Mw]/j@⫻kN32n@DlI$[0_ z$QauHB;6թ?u|E11>JaCt#蝑WXX?\:z8#Խ9}2|ӱ>ۯ˯ |tK]ؒiLJ~෰@[?99,:<j_G~Ê=o( 3?sѿ99Y _6tPс hK- }4W(* j\@]wc|A_=~fo ٝW&''Ur{$T0g|ubg:$n.:C`x0⮣x(!3W(kt r /B1(jF[G*I%OFqUF?3jB炆_|f\h- ؐ)1ahY#B^GG(>&~9qC1 T_Ǝ<lܽ]S(# Gz~3A A._fQVeHWrM/!,9.|~vK'3gV@G$/ruCĽͻTױvڡVvC9y\?{Au vm<09oO+A^/sO O:E~$aPvg¤! UOصOQ|%͏->_uUurt9>mZ sD0!2/ π=<#gylg}Ij_c>?K|GI_:thz 'mő*9oSJԻ>plG{wOoo@L5cxPwrsGg.ie|CO]wA}n}t A V{8_$sצ2 ڡҪ{ᯁg lr?|bWɇ~ ( VʮyLێ9;S|La2a)ݺ:~O} W|{O*H.j.WCzS=kĊkbGiI&UnNuvFP阂:W7sAhp|hgYtWщ{R&cÏc)t͋=&F?߷NTc5=,FSz-]yڣ ,gǓ=d~{kxz\ɇD_ޑ<:Њ։EW~ ^=Ň!}(jGv|H[JWyg'u+`Xח.z8w{ecGPyP_&ɾR4l(^'3v&< tT:iϽ= B_0XUts@_ٓ}cb➸z%դCxK:ɫ4Ca>V{(z^K]m2Qtþ5M{>7<Ҽݣ:*A+ՒWZc6}ţwݬ? *N_ar5вǰH7 T{t#J\Zw VS5{%u:whr= =-)cC=:drjsmuU#Ug4:JO,+^Fa4ҹ10vy7U=as)9qe }NO@0P'ԡڟ}C:S:8xjlXh˪ Ǵȵ 9i9b*;CAtO[Og?v Ts. sk^(}0Z=sxxBk&ҫ;| 0#=={|DоȵqqHĽ$!2!}^ steӪC݇hk͊ }A^1w/%4U7^A)Y,I#ՇPi%'ɀ ZDvLiլП[=zI˪TC6St(蚱-5@s̹XLH4,ҝl)[2Wn4& XX猏]JPǕmغfAG Cmc{|ak' „,>?[bdw 7f;8K@(|Np y-SAq$sY$=dZF`_Xz"=m@,CA[ ʾBH F~oCC͆=?ض-1]*ֵQ ''V CDzU&3٤+lTv *3k^*߰3C'{/HgS|7O3gLy{ZHq\Չ^Xi;-mhh(DavjȞ>ǖ/6lOᖙWLwaHE龹 غ:@u⎜c+8gM_F14V) N1vVV{I['1ՋMݔP\lZ zm=fhp^ VY)0Y ~&PvB?ݢkkrqtReƍ5ޙpgEeQ9gu {kT#^v"!gp$.j鞕'l֖tw-N Ԣ*6}Q)EN`Waf&ȧ{R2EyjFI>EdvpPqgވR[<*Zy|TpГ,$/u$LG9pl * +}Zsr_*}'_ ٪Ln>&;8,D t/ E)ec'kԝ8{''O4,A:ג}ojɥet2-͍x~~NosGQ ۫('zUm`/@lndBv/euitk|~)=;)Oy/KLgQ; N3bU[9: qPs%ZޗhH;NP7E)$0 Zivvv-;1ޱ~˅j/9KmüEs5- ;JPĒ]~*yfckNf>0:>kLoNbC˛U%+Gr|&|"@<#'Zhi4Dph#?N'y}PtUksWjoμy.ѠW$e#݂,Kf:$-[O6S֦'*fmb&KGpOC9uK=:޼MCΧ<"3eeg8Sc@{xݫ:jh>LoTcB&C `ҙ = i2:~G5U{øWy։w,ͱ\Z=]2UK.E_S1?38&‚)E6jNbכV;fUU߬^k^V1hK\K-}!/"M=DJs=Hu Ӱc=":;0 5g2Y*>S)✜!u)ߺرcZӠE*yV7A!OOqtE0т/咞O >ü_x5nH, {1&~{4$@vryp|9STй0 n*+*nԠonG!'轺 Y[|>nrYdA ^<ˡg4GU{ǑYUρ-9$?;&H+Z|f7EP|?^844RXWQ~S0 fۄff@@PP[=A\v^izt/>ZL՝Op)cﮋS5HˉIx/! 87;j.{c`{1~x0>D F{pGEE\pl{piI{2m^7]0ҼiM+Ac)?OϵnDWoɬC[P첢Rpv: 2Y^VR,,*2%yClrbSz\ⒶH>| ۚRn+Lk{0Xtvtx|-H~\\d yYN *hvud@y/-:8g'_Y*x!G`%g]7d7„SPNⲪ:Sa\+Xy:58AK:A{PlmC=YqS_Q- mW\XX739}θ_r FN$Q/hơ ]w?ރgC!g*^w"{zb®1{lݾ0nOyoQN}!mDn<|C}0{~ޔH8y:{c2>^׎vjrϋ]{ 0;F%q_S9:m'àeE]YPP'7 gtgh$?Fs7=GSƬe2 A~Pǻ s@Tii :4o߯j(';CUlhTHR`gpk :>O_s7ttZ/CyqʽsFIzȰpn_ˠ | İR;+נּFpѳоE1x|TnŃl5«>yut'۪{ՇM_U%Gs!B蔃)lM{n諾vEsv4f9͆iXri1uDçQ^PJjJ=7 ٧OUt]e.r3? -(Kp mlYSkvve?0`jknZo~8%3=i y{.[`E Aeŧץ}t>TgIЁjѣiMܿr"p͘hnaCnƤhg)ZΘ]s.J 8܈M'[` -x1I&. t֞ؗ54[nаB BnJ):BϿ2yISS >MW4g`W+;/MбQq>AΨ8OM,?,() W_m565utt/4zځ9=?` ; N/t0mϯf zz6Sk? G̩W$IS#x ^v E9:dd>x {,)w@W*+Fye=;:{mk`r0Igó3 tL/=CZ|mcd`^UB yͰ,hf=^nhEtU|mUKDwOȨ8W/Ak*=;W/٣ŧt:vƮ'8-8z:~PvY rqx*3pe%뿸zPי}UA{˾ 8}!~Թ㳴}fj6t'=<ߓM:oyɣxiљ7kChL=LWbS 7q==՗)ftFՓFY鹷Ya{W(e'AsIi֖j*v POHMfo>Aer,P$E"NZs`i-;61yʮ{^V_ .8zJQD{}oo6:qI$501WtVk!i)/??J\iꝁ;DaL6 ? t:AceWL =i [;$ `WuP8y=>t0]|%S~T2Wlɗ&? ֖+vdUp^tR6OgP H A"盋N_O2wx~$UJܗ^&VkU`SA. 콲{zo )R:~Y8QrF9&zd n/3fÇ?uW9utfr~mDs tfƷƚ^qyi9Icٴ[|F|VoCc,T }FԞjƆĉ#gLhTd 'eWzJ*i`sPL}F*hrd}rc^[^F{± Jggik9<+Q"mmGQ)l XÆړ[:G5qeUuʩ`'3|4 =ornf )n魟䙷nMc@ˡ>>IDATg9>!g_ lIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/shoulder-arm-stretch.png0000644000175100001710000003512314221624107026711 0ustar00gdm00000000000000PNG  IHDR2PLTEzsk0Ip`н.S@@=^_\c{UBݐ E\G'ܬ"$"M%"R:83(&aJ{uԆȍm۟还Kb`  +78|<ѣ?32גݖ!﹘lnk5GFNPM}beLKlWv[hQw]g XGOzaOb+,*L\x-(B.#)-9VB>2!꾻雪 #ޙyoJ7[tsADL611֒sp]T߽ȢǙVE8&uR8.ߙsӯëɯnS>SRĘL2( QA1($#Ăcs.+((Άl_iT[EtvrRcF8GHEɨ{}z򍎋d.*`Q=/+*h86tO<"XcdmeNidfcZPJ{]A2ͺ131¿栀تrW I><۔oTVSe=2΋l<(y^mqvǠDPfoQBؽhtudA4eתV:+⎽ 797콨kTQlk֙sХ䔖ѰhE8G4(NRYu<76r&(%QE@EPP\`dZHxh`fݶx, pHYs  ~tIME? IDATx T[יsڙD.n3UPNuScrl4rX fP((v2aHdbJ;D* CyXP%4nB\qfedX>GAmxwsm>93Qi?F3Qi?嶟|ңXc!?|CÆP.@"%[BbY%ɋ&Ae¨X£>o uƲ,KE&s;)=5ڢ//eҴ2ftR*ҿ|` 'n&z!RS)/?пnt& \& R)0 XjIeni2ci|I|2dn— Fzs1'~?'7Y|rhzzٌz?~kѾ2IKnrTAo $1ɢu0F@њ>B.u24>X:C(sZp S_tڣ? t ~n }rs"3>!Ba^qc*(]"ߚ?V.,4}>r@eDO.9=zFZnkunȅɀ/݉|_BnCԃ0/CFGC84bTrI+{Q/N2r U^o`9HXi-&EkaJ1?A$ϗM/À݊i[@r!˨%4)gK|k~\fiZzO}|9%BC[Z`)ZdYSѵ>n&-$o)|mq 9.tK˃#Z6bTYL|9v |Шn(x>ԵBj~L~##@~[;RCA(VGg@J ]rlf97/#ROfILxtN{Y{7l}qkrZ &:PP܉|4;-֎ջ3^7_engitvXpM>Ͽ>}6LetXvB{;ɋlGa,>˽r0ysY|N_d&[XE'շAgǒ-Cwxg$H-v<r4羷X0ۡڽPo\,w1܇J팗ݩӒFV!|m$jwľ?<"r6 U .t/$lLwp&=`|t̫uLħ;MzH*.|VFyiXj=*QD?!ɽE_>X9)-<ӟ~@xD+P#[hai Тwzt:U*TlFG. qA)zYdO5\W18xe8[w3&B.azuMzYEkY z4Õ2o,ezTrQ]%>OפKBhTDRFhnD~>)žiƒ?}Ņ"%0'S2 nesR׃ ~U(t:ebaV}̞}2itƂ,i(ːtdc|d|}q<[9b0#Jd}SZt"x"dHsZ!%CJ:E3A*D,eQb-T@]^_ MuZՕu0LWH?l/2 dui-8W.Vћ:].`JDw),D8cr_>m68] vcO  g_kn"DÀ'32})VeU@2eY0c5!:UG#%PZżrshdкx @SwC+b1ew :Xx6(9(ȃKpu &%oHklN^d+1R %AF\Et]efF (Bо Z2SjҫF\,D0c^\_+k[ct)=JN 0RPC\g/D.C/ى/1B Ypa 3WDxez1 n @ rRKZ,Mt.I$#wrt#=c1AOE$O+>"IJ3|6A0n3PG Uni4jUP : ;#Q}}GZ# .tz*@gtθY#s*P&S!Wt :{ Bx|Ы\R@/UT]mF&N?n)ukn\`^&Bqq$V0w IN]KeL,]E UƫiRXaF9rV9`+}-i[fA##@>3Oh.;2pFMDқ ml`}^NJ*Cro)xY^i {)MZjX siY(zS$JGtiť@[8i,g'd*Q(:0vW͔}j O+.mKYWm{/VЬDhX>& ,rFz-Mf5Jʎ>]Sx9:odlYG)qei%j,6re{R4@|HgL?M@4oRiV҅MW'㩻zcr'z*?I{_oD[3C{c3Y4d9sUNQh(2WlP& 7[#񛿺Wo~UMѨ杮קl#u/V}-߂їS=ƳTNA՞2*'|iť=eDO2 o_}3oA +>Կ>bSo(ܤ]fa_{vOb9U*moW!j3^ )ezzwF;i}7?ϼY;N>:S rJ!Lq{Ga7 Z` KĠsǑ#JGe5{W$XgO?!#Doŝb Z|$CRijjbS\"W ]:/պRzɴ7_&Ƽʇ:"e~ Bܾ#!F;_r_O{xIάm8Kgbh]ގB'ziF:sΝ&JʉlHWYssf֭}gɷW2Unj2t nӟ]ׁjojf2lӐ˕;>mNaɥD}?Zh//+猢ܷۮ]?:E:De}fh$sU#Udv ٨VV wPU(<vo3}FKQގSSp\rJ8#zl r蠟}Tg2~^&րRۡ-r֌I^AfVN65yNDQЪ \%ׇH\r+![5)%PϖAa 4BW%G歩@-t;Kmѓ.pل}зm[b3tmY{(+!57Fk~:bk 3.sRUUE9u6t[R$-1}=:hI!y{TnƠXy,Q;hT?bv3''QDT BLeWD"m4oe"lEQS {E_ң~9=fA+9_J]K%Əp \"0IWe(sS*=zx?eGS2 %w#U[ee1kDNl&HS{0o ,p tX$A'SPČ<ߍ5n8OZNThNISp~´/`Tb~YUh,bfnݩь^VY9XJLϞ*;I֨YrߥIʣU VK.5f~6fg}{!Sx9rYҫF8wϱ|J,cNZ;(.RD#+qRsQr2CпwpYnrju*\f~+b<"gbX ׿]?VA676B1̱͍r:7eB{>))bYl*77w󑽃]{R˗9zW;$Nk;pv:]5͹JǎB{3sG3<{7;) a.m7B('&[d4|rCCCHCH>ضXv$GihFNuE.An6x=$=CIK=a7(*C5 *6gwKHH@ >o뽽_7<̵EImm.;QZ_BuճrC\~~I?XI Imy99yIQ0آ?;5G]oES::DGߓ;b}B޶;b)u gA//z{3qtK?nRց Dg=.FGGy. Kk'!92c:wCˉjݕwu"d!сzlQtHp8!5>~~V(brג^?2@9j1cѺHr7!'2瑣T ȁ<4AeѹHxD;/L ΢hD=zɅ %%/\XJNы _E0A)e`QIJ_Z;%K(x$믾$L5OU䠯=V+rZ"ɠvPVD_bY>2s@Uj dbo-kw:_?xwmJS[Wb_17@RQ=:-IxBn=oK[7"r8'KIZWw37鲻ߌ7VCL-YwO#։]={yv5EqӱFQ{ޡ=C/t+(;k}Q{B[gg4ǕzSzHvܝpy…!>NӃؗۉaK C A7k5GqںFG>ըv4yd'@9o )))9r733shɱPf/LnUrϞe-dZ{H#,&K첸tV-4\#d emnoloeǗ5Y荍B;,{Go %d6g4Tٓy/67TxHMvya\be?Ug*"D(K,tJ09z}u[XtgП! `jˀQ QWjj 7Wz7'%b37:靑+/u7T֟DZ{ :\`$+hM\b(zԦ7N^"G7#_}.&#8TV7_|׿}+fvۿ&$TF.usֻ\$%q<9֎^Ny~IQ?-eU7Fm'䈎PHUqs+%dr$xjpr7g;Ȫ:L NVᲛK\®Z@|6{K2aplƍA$:}Ӈ`Fl`bwYGz u—CrqM8/Ix#ݸo58e%h?{o/n2U9 .r_ @_M6p,BQV`I&f^߻ (C޾y,6x.`fNkrv" "yC 2r9v3$ W"ɵްiӦum|cÐ.U}oFtʾy6X\gSľ '.>49ِt&[ W[pi5=Dn= Θ_܋TNv2 }Ⱦ( nxƎm[ֳD;wg}/Ag)H$@ʍ,,p%'ge/8Q1NC9,EoR "MkeYtEFHo dѵ,!߮"j"t_{r';"~D͂fݚ3e]ѲxΫ~?g߽ī[Smv9j}C=# h.z1zN$h#Beq>܁><ѨUGF~#uUcrH5~cjɟhldN& :)⃳F%r π1+?Fdi 1Pw3bUv(d<2I'C3f($Gt#I?!O!/yj*[o z$+BOa'F6]QP%k#}&.E|94 *Y.n+m`VruMMMǗZ/;٣P(zzz ;;*+{̳U6u}ivzpx ;M_9R/$iZQB?)uSƟm7M?[7bv\ E=_JΠQ),8'7xe,eV;ڂ yϮ=: }z>/#@+J Ƌ"9D" !X)*ήDl oW׺]w>)bh14s( "5EkeZeNG!s,Rixi3VѡkoIs0\L󗶎;R 9Zsf5nϣ(qDx6IlgX'mV⽱tuS9 &S;I9;kVSЊG!6nY2\PIzzzC|w#*| !yxuK!DX!:40܉I6u}@@ hq>'v'g6knH<&;cj'ejP]777WWWM8-ħp!_&>L(fDg~7 z̺+G>;cM> :mB> k8Pcq φ׻ YXϘ=o LpeVP ↇ}n[F=8\=ܝ^iſejs͕ꍫǦ<g$Ӫ)Xe&hr!tu7Õ,?.;ᡇu[Z,PcӑZ<@?I{&5>e|p\mgȏǯe#[IuܩslzÓaR<Dz22!By3P\h#m7Pt0ϝm4H vmF<ـ9bQWQeOEqN:3{vENv:X݌6K:oP(&ⶅOFu\k<@ڛ]? Lu`DW M̮]ܝ WFw\kA[6}9;#KG%6=n1S mxj5I ϶CÏsy)td0llPAkff]SEwXk1EegWr<p"wKQb-ᦶȚo&U z{92vA vJ,OQEEOv(N'sӓ4̍[&kαwTfB\-4oA'w8z:?Q7ePApاs+GGgdO۵Q4y޵rG5El20NJD~A{v8Ūc_FAk1Nݯv6؃[ @dzgj_) pzCuu(_픽A)vҙCgX YɡSF~cE@х %jYG_$ -2BθXN]0{N9n=(^=)JbCzPN;h?UȈ9y_^E[RCkpCsr*CȚs+&ӷUbH.Ķsug_ " QA<9&gZuJzt~Jr*)x=XwWDﻑ5,yst6QڃٻwZOB7we  "H)E転~Ya#ȩ-s|DcJw`Zcb\z0^2:eȸǚ;B~PÇz.+2HW ȩ 7Q:g~{c ؗ(KZp@p/tsAߵj99Uܜ+=N!iW^-hD<#/ JlB)|NZVFni\mO=#Sz 9Еw./'!=JT2a9XKy\rk~"'\DA#Y=z)K3jqwW{/#Z vUt\YGryJﶃ㻁/_t1Zl݂( G@&b! , <_title>Shoulder-arm stretch <_description>Keep one arm horizontally stretched in front of your chest. Push this arm with your other arm towards you until you feel a mild tension in your shoulder. Hold this position briefly, and repeat the exercise for your other arm. <_title>Finger stretch <_description>Separate and stretch your fingers until a mild tension is felt, and hold this for 10 seconds. Relax, then bend your fingers at the knuckles, and hold again for 10 seconds. Repeat this exercise once more. <_title>Neck tilt stretch <_description>Start with your head in a comfortable straight position. Then, slowly tilt your head to your right shoulder to gently stretch the muscles on the left side of your neck. Hold this position for 5 seconds. Then, tilt your head to the left side to stretch your other side. Do this twice for each side. <_title>Backward shoulder stretch <_description>Interlace your fingers behind your back. Then turn your elbows gently inward, while straightening your arms. Hold this position for 5 to 15 seconds, and repeat this exercise twice. <_title>Move the eyes <_description>Look at the upper left corner of the outside border of your monitor. Follow the border slowly to the upper right corner. Continue to the next corner, until you got around it two times. Then, reverse the exercise. <_title>Train focusing the eyes <_description>Look for the furthest point you can see behind your monitor. Focus your eyes on the remote point. Then focus on your monitor border. Repeat it. If you can't look very far from your monitor, face another direction with a longer view. Then switch your focus between a distant object and a pen held at the same distance from your eyes as your monitor. <_title>Look into the darkness <_description>Cover your eyes with your palms in such way that you can still open your eyelids. Now open your eyes and look into the darkness of your palms. This exercise gives better relief to your eyes compared to simply closing them. <_title>Move the shoulders <_description>Spin your right arm slowly round like a plane propeller beside your body. Do this 4 times forwards, 4 times backwards and relax for a few seconds. Repeat with the left arm. <_title>Move the shoulders up and down <_description>Put your hands on the armrests of your chair when you are sitting down and press your body up until your arms are straight. Try to move your head even further by lowering your shoulders. Slowly move back into your chair. <_title>Turn your head <_description>Turn your head left and keep it there for 2 seconds. Then turn your head right and keep it there for 2 seconds. workrave-1.10.50/frontend/plugin/exercises/common/share/turn-head-1.png0000644000175100001710000003706614221624107024672 0ustar00gdm00000000000000PNG  IHDR2PLTEj3P`"$"̼O@:cῒmWnM`l]P΋l "]!8b󭋖t  5LJ,45C0/+Vn^e~c@SRyodܭ2^ME8css)HФ“D?>!//]OSx`+ oJ7ǡ2&&z^CJjj610q-/]_] V:+O"!bLNPN )A:4w]ty{xa>@>)+)2!iF8vzTA⽦;80(Qcb,.,V=<796it~}JUVݟiT9 pHYs  ~tIME9)gs IDATx xםu7lv`YKO$\&M(lno(5n &ns dh .nK\P4d yt31IX@ȱ&(̌4CJۏ!Kws̸'V\>>'QI?OD'QI?3{柙|Cʹ8a '!D<àI('aF! zfJ.Я/Eϐgn[o3ϧ|wLiei~cџy晟3ZS=gJ`9G~334Mb)g3?Qg%&! JAS4|X+0['|';LQfeT,EQ J,;!дqw >g& y lrwʴOXA`o>;YE˦5_u~%F FS*XR5t(PyxbܧP5)$I(d;< 7{̣D$}J8$7Qe)=S`+ 9gӲ{3w07d`9G+7*(q֨xGD)pB,/qJL3 }2}&5úu>V)N|qEH.p"M-K$㏻\_v͓c; 0uWa &ik,g &,Lx`+م-b085XPύ P>>V, Mイa,1{|.=hhl(>\4=)#G k";L  #7Xc.\!JSjp.KfwK1@罼/|\ Q  eZa4vK/ SZC!ʡ Mr=rEb:X/e9CY U9FGDyV}"ŨiÉn ]h"́ (pX  aJ9豐c wB\4sFԫ("DX`b"NG *80h4X K|Ou^W')0H6]w)0G *;8x"^~(J{h'$@5Lp 0(<( dsJww!O彔tb7<NU[E!9WL萠Ѵ[vE8u =uG&F=ɣcN7 y|:n>^zB8t j%c_>00C@z srZFAr࣬d)0uw^˿X@b+qU277CA~gJ65^=#&(?s1P?_Z=!vvz1o𱲋9y4h}W|EU]5HGgFw'p#yi{hW+5񨼨oA `,8 pΨwvvv/hO_;-.D2 C}TwtQ(8#C0 Q%uIW%*e?"n7/vTjB·;ww8!- {ӎ}s1YQqZbT\euZVė yTsb%U8;ҝ=DH1f MvG.N&!ݴG91*`j8S~#=QTX.*^ <tk:TGOLuAAOZ疓>Q4;]㣲X]cUC5H KyR0y}z|g+v&/~u, (X DD!p褩}ner9@LiRtKT:% '$1fxA!Z#9G;/~}% u6$;TGVjƙYdfuVh9UQfxsY= +d; uNݽ;aPYQ";Z!T\Tq%Cf89 $4A+QI)Qd>?C8R,σ(d$DO5ahtzĦnGmAs  Ϊ!Eg5"''dbPz]s= BƟ;;(` yQ.z{:f"nt3ʡQ~y?)ItE2uxtn7 UP, m;}ni7QCU nmzѪ9Ɖw*j@PE^R^J7hl!\G4fC5}FkF"qh?A7/~B7WM$$juY (W 7Ξ/,,<*auh,Fos$%@Ǭ%-Fq|ErFEFz}>hf M`۶m\ZZ9Sa%IYJj`|Y})T=? i1o" h,2'Y^<=(7o{%L &>4K}q"7@L@g8Jb&v29(Y Wh(}',KKϖ\JAkts`*ue24Dg=Jk3J|۶m/,M^zviף:ပ4zOn0}kc221Ks~XwRJVN뛘|O| CJW(M=W^(o?Z)DN њtO~2OpƚmtGs:^Ԥ |qjx@,k,tkXX- _^~,ȟ;:^KIve ݺjþ,]к`PkDtɑ#  $11T#^tkO9A}p[OFt6,GtUT.jMsǕ;1uNVN n!r=]эo[ق>[ҳ~! $2(T?tẤl兄|s<)oO)!T@7MVCؔutv`٦ daEel{71 a.7h].)/_M9ܹEOH|Azϙ'DbcTz1bY RD EKsN]]6Cd#;/h_ |1ϩ10Fg˸[kŵ'J==AO'lI/ZX$?Mm}S_w~s$m'0VO:"h$CN31?)ZJ/!-PBБ|ڴC!񁹖MDߔǹȗ:,6ra~ xբ@ek*O#&9x0w\]n9]vDi<~aG 15 b.&NY U@Ι;ir&! rW^y!_ҳ~xpI㊦ n*pq:fĦsRjV5 թy t! WN9J Je =..IΕ'{0~8a-;1L=7f5g֗k%290q6sp`{Kb9S\t&\r'WveMߖsM":`κ8Ŭs# لcMsI{6OKS}{kFTZЧB3b!b$%tE^P%Km7iiGO /ߛ{6$/Ӫ(Ot(41X4$܋%b7#]!ϝ>}]>z嗢*{џfrV5Uɡ0w):gRE lٖ`/A0O_>ש{ܷkVfqYG&$ZP.*3\"Ʀ#-[Lxsf;{U8~bӧ?fK?+ tH@Pz(D\ܐiE"-%J衘;:mէ'esG`<$`9BL hY w[Pe޽N~{GNdqH_{}\,Ҕ*$9m*>7'mO6q}uK \[}\KdrǙɸA !$IB` cݏxblՠ+)a}2!Əۋ+2J#`OWRR]݁-o_ sn{ΐ$i<@_ZJ4pggϖ7d9AeTڳyzޠ( *Kxb%_ȉsN;g3mWYX`f{rU)/A\p2gSsW/{]vv[sPtH7TU▒)tw/nɍ}>'+16,Et^QpFH[ ZZ?iܩtA0_\U";xai*VYIeKqNr:JNo@_\lij))/ )@2dp(0(;z *<6Gq4z,o~ )9@ !Ry1 z~}aM=8 G%Unʐ b ~AUmV!~kD$~BTbH/&KvwCSYGO?1}߿4iXjT nwg/ǁ Jߵlٲ]?+O>Z:I W#'&K'w^؂ˑRNe'TO|"`RBl 7ݼ"XLUyjwӤ/us$64u~b٩}7TWxk49 ݏ("H¼,‰{)-f1]]]=o/%%D%9Z8il* _2`^#Gw[¾U,@nƌS>MAVѿEiܝTFiue 񰳉_yTIDAT1ܞA&%@~rҌ޴LJYGˆMuY/;u>|)qZE_.ya?κmyW_/{j;ܐ&Hm&n\0x([y ;5GQZ‰ ߋ7sv᳆cǎYiO? nxEVnM4y]޼kP$|V5%ٳdɞ&Sճ+w-;>gٸBdC,o>˒%{P 6'WP&8Q:j})}l Sv`>ن㪫+**-Sp(?,UC]':`߽w}w d}.]qPi`VMnc3ѡ[ԏf4f< +;T +֞9~ h$'ynӃXy&|V?Fqyyyk:a#覱:Ժ$ƉLk׮e#϶džr Es~fg\P$N%ŏ =$_b*Fo ܬې!d*yxzHrd3nj}MܴMXuMX@ro|@-g<`ѣ^\$in֩s޿P[#OJ†l8ooOҝD~e&y tz…cg-ólrP:w[6 Oa"9kΟ>pDlEn[ZnK$aOD[܎(ё}v= ~ʔާxK< &P}G~{%!?~(D7J߾Iڕ4I09}h'QO-kYCNxv>S~ :I!5/g@nrhW6_Б=SW~Z݊5_P8j=,ŏvf5[^mv~NvXn=(u]7@)Sl`T 8AGvKړ_x/EXG @iQ#B\qˍF~wHMfF7m.lL:Ss=w=rnNb3sf|iX#Ϙ 0()+kZJ/]2}>.<7(eM٘! .L.SF>V:Aԁ_5)xfяm}aS_3Ilp41`I3mt 7[q={+A_C+R 6D7p4CgoD+8>l9GGa꜀J^viZ77N\g>2q,yOOmm{;5#֥;fCH']Nc9F_Xcz:w4wP97779nvD>f(_v(}1ʈ$;Z?a!U% l!|FAO-_\AeB \+d!4 "}vI1JW* >> Rǥ7%_3gu;lrDv `eM}BYD߸ѡvyGJ?枇臺 H'+MW7 365CQ=}+d}IEG^OŞlWw5}$E5Mt+́m 5ap,^3* Wm'w7 dŒ}5FFGA{)HGTt)}һ`Hm7I+*rnۻ]Y}MEpZd:; rT6K Pu,~ ԖlX;[x,9jN_MC-KU4ahnk3ѻ:1hqUOW%03읠]V-T1ܡO2]=K״7j.' &aﭣqu- cHO!:ĹKs~dM5RUԌ] }}u&M٫37~IBP;A8>"g>:|d_&:&fnUD~M`}Joooc,PTS>HPǭrz'K-^D?T7"6zD9[mmM 8x{ג$:(`+gL+*׬Jj|kkW,[V7a Dy.v4W}R4PzȫAU!Ruzo3+uH^׵Ml}+Qu}U۫*+P ,w'rD|{ՑVA\M4 4u zG4Ж5M0jj- !Rk- RQ:$)[c6!@k}pDomH=)}C+_5уvQ\_afqI.:g SGtJŜ2neUM*'~Bݕ8>3/-[;@l(g_plIinv=GnY9lDoL8uۗvhJ㤢&ky<}75K4]䭦k| B|R>mk2^5dZG{o+O_wƹ+W^/k} !PvB<~87٩ "nձUe=Jջuetc|Hطۊ=oJR@OG?I2^i=>i~K^_S__~w,UU5[~|8Rr^ў}tGnMt+?X}MEF|;'7zcEB@4@sLjo۞\W]spvyr{o[A7c[ijZY#=%uM:NܥftC՗j:z2%]LحC]SMS}{9[:}zSR{; &94 [no 1}[-2Y[tgz crn񷍞%1:jܤA^fm^;[n[~`%n/SEo :Cw N@kU3=v'-fwe=:eCɴ><ѻq4Kؗͬ0({~OddH 7)賋}e[ \cU]i{K3c7[{cacK n8whD5ʹrIt3W͟,kϳ6}"r˾ _T6(:ƹ%⭶uvhD50ѭf4TH/\{\J,ޚhVs]S&z]G߰s㊊I!zwvsC>9wS;KCyetg y@2n rXE^Z=aIӳUmxrOV^}siY:ٷΩ_+Ǫ{Hvݠv^? wW5&vZO8SQCkzW =uuu$g^;'v ѻ1,fVPVci$|E[9]ݷA}Wޝ]YܳqF=i[wN5o1|U#6r@8nE߾|ו)+sy71EO>hvzs?xɲCv26FDN٧Rg-~y9Nq>{֭fxņ пLS+ݮ|חIg7Y$kƽmt';·ٱlONDU qCkI"ِ!,tq7TmϿbޣsu.ΞۆwY*p$c1w:y%V\!?mgo43]~|Ӊn rF9A+5:?_Wy2v]A}֗p@AɼuÆֺ3spjќW%kOw"-}:ɰ̻s^*Q_+,-i)dvvQw^b\Oзmgzz_gyuxpW5?k=2Ӥ'oar[[XYYGpW_DhǬ#eɺ Og\}݃NrX 7N>d/{҂-n{ dnS9s>ܱ-|o۞:n,o+mx䪮.۾gO'eَ8;>AufK&-f<2҂֯%*Ivh ƶ+W:v} &3Lik*F0{zXJԏ8l8;m I>0[RFn~ھ9;\qqrRuw8㡼XGV^j~m뚖tͶGT Z=5ὲy7PBJ]vߧvSkvxuVSGەGʙW+߽R6Jʓ~'/k:T&>ܖzיG2LHZ_BNngM#u4}k|#ަʪfmjm8wLH&qyrSىCmlcC'.;SjW&_,̫ݬ&m\жc wNr&u{MC?ъs췬n߸nl7֟g>)qZ~yԽ+s@pSWIv\6 nW&ۊsFZ>wu^W֟\|zM"jL>uϒ-N ;g틹@ ݲf"D]AVpbf^wnk[K\'rz#s+ qtv3ſ3w 50[>*-r&{WG2 Iak֖9>\`^3#h&yyy!Ηf-V_a +)I'?)g?Fv:q;:;Z9|LR&y)8KA rIΒ%KoV^Zɷ3d92}P{gFYO:8zSr3ZMz"Y_Iyi &}2ƒ@%kez;v#[G4ǜi,RM}w;k޵aK;L&c+nbז;?nK~&xܢ#99߷5J{>UTSWq+]!{>EjBpNCxMeQol#Zύ7Kֿ8w׾SvLAon7O]rǛ篪+,Ӱ!sp׺p)Yol9b>3t җ /{onfʵx)ғw$|c_9C~7#'6żFOm{s_~~Fq[ ˅ɳI,1ܴ޼|y߾Ƨ'Djm/Dxb6}N2ĺDYeQ0[N=7a=A `VG}vߣ|]IeuQWe4ۂ_\V6{8e `;Op< 2GijϟGn;Xkg'TVM Lڦ`7(_ 8DR# ) 4CflfW;Zڎlv~4%HQ%r@ F nQ곺##@xWgFfFxxx|?o3ù39~~ϞŇVV,˄B"B"BD$$D@DD(txW DHn`X1303(fQJ% RWRRBj~CsK+ VJ/]}btй0033+fV̂0"K("MD*("W"ARG>m3IRRJ%TҧREQRE7wE!Wͤy/^ <.;äŻ~B|#>^yWT,BBj;DD ! B?6: QÝTlwPb  13@zuظ3'jy! RJ10(fp1D+%DDZ!ܑY.'b-m @H1M2 , yx 7|4?>ٖIN{wG:CO?=CB ֪J$u$=DuBBR@#^ee`ň Yu HB 2#"#*"L#kRRrN$DTb]"KhAn#3748fԀC$H01poX0`;<]o\ p<6fUdq& ]O>`‹k֬zj%˒$!K}=%@C*DXU hD_`P R)Tzg4=+T$ŌȄ@ٙO a\PbA/<ڭ|<+``M.ٱ{p B=Hp/=3@裔RE!m-Wo_~gl3Im ,?,[?1S9N6%whRZP;` UK nbER C!$FňL(@mR)BࠄP:^G .4{Gy`@dP+vX. q-fn!bV ~;??;]<䉚ϋq,?W6;2:ZժJ$a"K$}NƐWhqF_ ""FT,I=b#oS Ȉ.}@2B\~ͯᑑZeYDJW9)C6$,֭[a  Q)UHDYBd"*D Qj@ Q7 @"*fe4;U1 D-Z/kM@AU 2qZZ"%;D,\?3tf(8t~vz~Jm~|f7dCpZI_BG\5oCs2@/ct(׉GCEh+B$ɉHRPJJYH$D``%hjWL`NƕݝZ;^JC|!Ji3 L[`iHkS))"TJ'l%Bq\Ͽ민lstAgf&͍Y 퀉NeX*2@QO݁ux#< H4Bn c )&* "P@z[@'EHJ i J! wWuGRZJ 2Ii_]YIc , O~S_8msޅMKg33RjBqxE R"sS}:o:p7 A"MS2W$Mu#,B2b` 10J7TnQP$Й0YkU2]cwܙU< {5P/P1^)vb?n:;}s;9M}}}%vAmٿ!pzI PX 0:E$DB@@i "/1/ 7YfɠҢH- MV8-T!9*Ӽ/%Q0`zd|ԞY/ `t)Վ@9?vͧ?]9c/M)3>33?4<#P8#(.P_B&Jo d!2Ni IU$eP %i/"(dyAQ0*ČR.(Gom9۳R ᵈF(8496puyjܚ J)-~w7wߙ#|9gf;zzzC^ctHsU2%wӀ3\/`d& 4,3I d`4 PiyvK:o ƴX"*VɳUdKd= 4Jg rToEZPICv_h"ǐR]0+D JϾ'>5;v R"]Pas X ̼pmZh[ \3ѼpJA;`@@ ^>ˠR"HRIEiR*UOɮWZȬ*TE2™dOo*-`dfjdN8סm:M)S|e}J2#*4o?Թ=6g$f:3WVl۶ZA{֭1ºC &:H gye k/=Pw њ9HoTM 0LDbeE|!$& XX JQBV $2Y h#d1mt>'T,R7 ԥJH%RJc=x]M`>!ǟTQÞ?^.s^һ6qS^?TTC=B'9pvw3;VhZ Ht3+bwD Z3(E䉏Jv" B}㵌!s`gH !l|nNeA+ ڲbŃkveuu!ea݋4dElA/Vuz2p= ^~Ey!o:+rJH3?|hPJibxqZ"&3˝h`bkKE 1Ŭ.BB!(̟ %HJA!AX΅(2 a\א%xaBүqTB\%:ART:(ڣd), :Gb}dewK֯5PZ=h{y<Ż uZU̬vwx`tq)˲$M-cF{LcWQce>G^HxQm n-N#x=p-6=)HA%-i̠ әHƍ5}@HaU@0] / Dd]T6kbhZ]%*;dJ)Gv?;;#`u-kwRU6j[YQĈJ)f8o߱{DϜQ.#>}hZM4M$Ma"؉D?-7T`/sw8, c6 )$-PRY8I! / lCJa2oD)TynȋV+']7Xƾ8[kCo^~9 GdsvifwX7#'e]9p [Ntˠn@PBdh +Qcdd=w>DI( hnCV4$$-h9oˢ`b'Hbh<20u Dc l)]cyVq擃8i UqkSlBMXCmPJ2[Ε.~gVհBO&w8Kv)AR 0wSәyca@G8XwNSҍޠa=F{T5;*}su ,` y$IH @B;︵I(Nk ƎiP7liw|لX*WZJҎ|eR݃xi˘o6<0Mu3(Kg<R \1[a=F<<"  /S%[##k\*%2u!D8uc*ɬUwȣq7L}2Dtsw,rcX)1j@bNۄXWRF؍VaCvunf({ޟ^-Y_9tgz:ii8<^ED7jn<\G ܥu -d[KHJADEADBU^@_h hƍ;H<;BȌC7+-=TĈ4Kp8J㩞r&mCwD9g>puNi""FO*j=[J(gwuřxpc5:!BP̨Q!R$"Ii9r 0~FQ.nX6<FH5H܁rQ7l۱Kt9KY!7nÇO OpS11"v<;v0~j 0/vff4#cs|KvrF| 0xЎ+'۟JmNJh&$eZ-Pо]%X?ݭHCX|aE]XМ,wϦ_S}߃ʸH* sSS[,Qwv<#͏SJEaZj`hg6LNW3[dbg46\F8k˹llעgE6 c +V5Aq7Ԡё|^`eǺ e}X_:Sش:E;άoC' /X/.wRfǏeiYj${2LԐӺi.bKd1;o,Fʻ#tźkGVbtJ{F*F2ץ,xhBFb܎J,ꢆz!(j@.3fe?wO[?z+Ժ\լ*fVx$cB_tu"WS/,3KJػTkC7~ Y:y#|785XZuE t8AI Wʲ2HebYrwR c9af1]❩W(vh'3޽kw fp5{nllo1КúS26ίJL5tpwU"UWW~ưxtl@nN 9 `m%XvAQ!;\z. ҋp@T(|MのMaυu;wkg.ǟHJ'&DBƩM ZI+a92!'&~ e Y eT .R VǍ!|\XY(R=R29YJh;wR[Jx;^.bF5Z nB.=`! SdU`5>w`H$N Y:DYH0j>x862UP)ԃuźowpTcѸD.6tzо Ž;U5]~dz,4֣IkhciUN D/7i~Tn{ чҸ7~lD"3񫔎_C9ڜ9C'zOZR3Wzl̻EVҏpĸLl̼pMeGdܳ)f8u:"tFHuB&g9 ULh%G !;T?kf*64} ڍ *ԻJYՔ}g,K$ Ӏ-1b,ߣON-@upx=;7]U=*AN @!VkB'2pk Y*vXJƵC&+Ȳvk`9["/\Zj!]%PP~S5ܛGOM`D!L #X$AV8U݄$a5[ٚZfosomf:)v;"u6X(UHUj]TM'l!:b͟њEEüu0BoNs1H̴β,Ms𩝰=@:vN1c^z|R:kЗSlع&cm; ;; yt%͙]6jI"\k-tw}:3doĝ)V JkC7~1_ mFā)2e^l @Ŋӑ;[n>yCH5h؊YcQ{j Q;z!>•4`V6u d!2vF7z-0Kpy+lS'?cJjauGݚ!Dخ;֙UuF1)BQȈ8;ltJꝿo評1J@q{Ruuzi8~mv-EneG$$Ol)؈1uW.:t ?95ݓn@X҆,1OГ 3H'y. 0 Y#)]^+CpfZ:2Z۳@JtVeq IDATI8Kªg:mhmw{ |q?b>tqɾgxiM_cu}OUXW ]T1/Ɨ% AΧLRM<7LB BJ0 }TH)K=d&XFGT^5Ap~ʟyJ( 5&Yebƫ?Q:mvy]źE9א>z~?½`G2 e3RSt3#`&jͮ-!ܵYAhy[NKv nE%M_$7EBq!Zq{u ܽի|i.>t4bp_il1N!{c~0? ە-n_"=q|DwFm2dޘ#H,J[nG#XF "0MnJwQ``l7"3?cjً;8@ -^?\uE _|V]'8s30&Yϕkxu25ڍ PUBQ\JP#ySW` D`]\L"E! Y^6D5n8/y0U3.d:xw!~SeBٲb҅Gs÷xs5̇Ķd|Cqrg\s(7}]yQ Xt{#i.(tIYE_T=3#  ^c kq'ݺˍ;t%Mi`'2+%˴,fdQD-MEܰS\jwXJ+F14O˅w<ށyk\ R 7zO:BJh7" 0B%" V;vu@r't:nwEOmWO5'_-r p~uy#iw ޾te[_K>H?Ul 6!B044Πq^zDe]W%[:^ 8t1{D*ݥC;3]UʘuXPC d OeÿoY *'E!"SZn^2n2s?R0~np;ٯcZkKvܚn @!ZR[(Ds1+*U~6/xO_E:yժRJzÛP|@1;ParcA]I.*ŎVK^"ė`2$E"egS13)pz5xXҼy&n!ѭ('\+t5k|gap|Ӟk'ﭖKAj,ہ=2FyZAL$^їcX[[Q}y!@ Q)eu^K@'VFP1R CGҕ߬DvNҋy Xތril3B)3P~:q:*cG,wLѭӴ|[WxEX/LG.g~ѠUkh22\sНd@d2û+{7MbTD~2nv4WZ+Ŋ7_~yWTWbg7N=5)g+f3J%W7o 7"d5-)оe=N^=Gz#"p,/ ^UKD(-"9+yw@wL{M.2tqy萧cXP.cX@h!U_'0쀎eA|4=Z(6&=k5"evA ؊P%GWfMiC=`넨4+G TF/I_6cL轢+Eֿ!3Z5 Pm3KMG'{%F_vZ׀,ήYRG&O+.8P~23 R hl{5 y j(pd7qenq5Tb0޳~yx¬~(+Ph"ʘn.j]vsm X硱6,NyPY" %KgƨK*;Qh?}iKԻUv.vfw'#fDZټY*%U x Ӭ8eD^m@Ϊ Axcp BEt7=];; R>CS=t4E ABήlg*eIy4yv/߹]{bay|FJ%2b0ءT1v/; dn!$bx/kR/Cc-wucʆ8ȥ-qx7J@:`Qb9@ ^]vB4M$bykHJ 4=BCt5lz_OnUe*Uׯ[z "D"Pl,X8dK)OR^O{'``5gH{\ҨR(R!$u;abjghva%f9(ԃJe%poC: "I,Zuׅ.(zx$|Y.K[ v^zG*"\-Qkr=3'oHD@)(>IėƜZ]ǔޅݻ$%{IS2@p xgI=fPTqzT pC#x=z#LЫV+:9r˯@[xK3`߻w>>ڙO])Ǵ Onm"7+۠o 5;iQlnFFUF`?}ycԻ^`h tմd"聝SAoL EPfL<;cUU? ze1?rtttqlȟ9~t޽o~P2.  ŵJo2Hn xuw՜ d"1"\sX/W/CJŕ?y.SCC^-1[Nqx xc f:}=^O8gd,GfSPH ! {DwC$T/FGޙH+OiJʃޜ>YZ^~o C^YvIYrg v7en@O]cDJ*Ҕ@D?B$u:+,,Z@Lueb֍FqGS2vhs z@ҁ1:G!{#!jCdNvRiSSSE}z)Sbc~n;GN^7:߳rpk~Ԩ:t:qiZ]>͖]%=s u\+YEQ(#7%Q>x)S|Du1X7`IK /ݛXESط+ݦ"ϛf[r/>y62v s{Wfgg>01vM58/dADW0)^W;!=[ߤ4RR)E(B$iHYTT*P(DDD?UT2&} R z,j6We1p_Č 3hLJepp KQS̘S!k VE,`+$Tp3'[IRISn5PO]sVTNۻn|*٦#fn]W4lelQJ4,[VFy^4yK )b z*JVkG#bAosVg;yr߿cG+K.tW^yj Ve_:`2B ƺHJU*d2:xo* DURQIJ%#՟R.BӤլhCv~є <3 rTBtkxw~y! YM[n4dn47lؠEfQH!<2>b=!o{`?$Pkc\{3z,dQ(搆8tO[mA7Díc>sC$!@ Tuuɓ'N|Wչٛn馛oÇj߾׮[aÆ+.Cɩ_y^89?_4VN߷Сᡱq pn>v-{dB{}d pomS*H !L q/R _-E6mq,V[UYH!(4>Aeg啔@E 7ޘ|ehh("IJ)QC`4R3E;(P>?=144 wy=wSV~njM 7sgN>̳Gk7lhۍfSSS{wߖ-[T# fG$vbzp! $iZVJ! KD*D"(qB( H%DBPL,Y"yn |-u3jick~z=%$[uSE)G80yf>}ヌDW>b60pt! e{7Zru~7t7p=w]xxx/}A}0|s[YYw_zi JE1==~W^y7o,zFD;2H i4MT$HRAuo fLBiOq䥟@?o/lz[I@v7+v!5R*++333'W6k7lnKTsP0kTKb!upqEQ{ 7>^`J01տ"!4]%"Q[lg>;55;B Ѯc^HMJbIfYn%@! yȑõZk ȿ}+++Fce4<2U-/8G&")DeY !ꭢpO jDЋOvDiBD|gm-K@0e W*RJx >k<Ȳֳϝ'-i&[|⻠ O!fg:VVn7YA[w v2^D{0LOoܵwօ#G4IL4!ptx={?VHl[nf~]q_W6o;w\XX\XT*TTN nGޱcG'N8vؓ?ukמ:N= [&f._VfPp'&060fvŇ|wόZߵkW,x;or[=V(Py߲y^$iTB)"Ș~vK1[MmON=W^yGkwrˇՃ>?۴q#3;vG~g*j__mn񦝻vV,: ڲVo!~뭷i4s|Wy{>4IˇboH$Ii|$HU*RLw敌׸#)ƺxgg'Q{JN}GF/lͷ%xp;R=rW C|OLTDrbr`f׭vm󥡾*/S3}O^[?1q5({˿:rP_gVN.|G~7GGFt* BVVPVGGFO7ؾ#4WiQ=c,%J%T*˳ˍ#v@$DnC_z_ɈSZ߽k8$ \g ̦aCg(o6[w"Iv.+RڑlW IDAT`F ݮW_qơ`Gˮuv~O8qĞ={n香?G~d-KVv{ρ=c=>88t}_ҿ|{w~ >я~k_;rۃ $({d\h ؄AJEd~ի1 ،X%QBTI{Nxs5UO-Q:#c'f~X JuZ^J3." UTNBLo][owo뤁n% >-s (I:{Wc?24My^ Ժ5[:غl*9XwUcc&ǎrW~mۆ:=~obOubc QQB$,@w?q=zHpnۥƊ8ȧiB3?Pkԅzըv >I-sdǪhy pDFHz}p-XsIڷ{̘+>^woosjh5g^|'?tS) ~Rw7*lѣ&''.rI$Kg{Dw-1䋢n[PF;֍``01d yov!/ԝ=}}CRJxZόKiC}9nc )ѻ3Vl\'DWS&&䤝X 0F=3PUO Dt7}>r^z'8wʲL)?,M{??r\KK }#C篽ZqZ ֭˞zɟ'f{?*CĻZVWZ[@$IMsH@(LB@0KC#uCIih"<0`;Az!~D`l/֯5#ƁǏ'X])9$yvVnUTU!t#yM!HA`FΙ.̜Uܰ1>q7^i੅^x# ARǎ[O}dEQ}k2!D̼xo_Υj}dǺAͼeș#3|c/fK+uV/ݼ ғ-փ RyvjGBJ6TCWR4ͬ&"%}x$ A#9wYgR;k_<&Ε>Bm y7d}D筥œ{әo8Yz۹؉bB[o9;_37neW'B|z jzLݺew}o_ޭ_^5.׾ĥT*T顜ʿRVK{_. Ux 30#"M4;+ qyv]w^̸4u:5{ p*/dzTZ-fg'-!z?s:Z-RJYY~6_B ad,^x5#d}ډMkQo樿{prtx___ޅ;hwZZ+JB޵yMq!>Evj5ŵw ]uC ) ) /< DihEpyǯOn'Oκ򦫯Q=PLYw޽s"p 3C9`{{+[xw}!r`+y+}Lߍg4[ƌlⓏXW$ wK`}Ӊ[MwܽiO^DS( .^lo1BkMaK gV|dpzs/~|HQ&n+G"6uʙu_dѓ X$xe $ft"Bܓ_~;ĤDvǻ2o\Y=?/]K֘bpy~mumkV^ۯ~>L/zr;xoݳgJZ1]N`ҽloomll?UWb?&1D2ƪnx$­Rjw]xڭhDC Ū?Tx*"b&-K&Fg|gbcȖ Y~nM9PwqXzw""{i?GyͭY,G6dLU8s]1ɁKAW;ɋD3zhOzjJS{? 뛛߿%o9bPRS`! !ZCEᔾZzVzGgkN}1 Dk@S?}˧o}>@bkD8 cMz["VDaGNeB!YRwF)IRߕ.D<w];3Ќ+gU᧾O|~nqD{ K拢 cٳN8q={~a޽|  ;e _p8\{%KP;no}keu&Ht!-9=|4}mgSeo<͵"0gpц,biޮ]?ZtkxxWSǘ0/Y6pzgn|]7FȒO9koq!FUÈ0>ӓ&LwӨgϞ]KO:>?3wGWV+{go~~"n={vmmC;}f !:꺞zUUUv޽{qaa%lZOȥ@߱> !x~w~ `[q?ɑY` Bd5s6jc=>\?jvfꄍo/M~!J㥍L#C_20O RF: Rrg1Q$(}9kU>0!2F=>ʯt/ߵkC~4Rnly26|vtw>TU%u*~mG}o~[$@o23)v~"QP8c(uk~ܐWp+A؏9򣑙 @q725gA0D"bHDecLZ!&yࣿuÝwNbq1ln>F(IiŎ+X67?ؽ~kG|S'?g^E7aazč7p뭷Uelo_\[;G㵯};E' r*vsw\W};776gО7{O|X ̀hLu67of}'#Nc2R1$`XB4~EJӏ ,C/ktWpw%~39V-"Q$=6 ;j h/dk9s|;eGt~Mc]VC" 1Ϡ˸"w AEh0CdHpc=[9Ti%治{)>,ؘŠw\XXXXsvlHhCwX뮭ÇC 10Pu$7Ue@,tu o~7[ ]׾.,."8wشvDB՗2]::ۭoq]p8F?_]~\w7_3ZhvA9Fppd/wD17*-LE4|֋f!Xt=g 0^|Z)(N(Z:I'˪w摯36!d!6`E k[EU7!ag|z{V|PW"SJMu2>^uU+++[[[Xe "xG2na 쓟"$mГr'ٹfgXwh\x<q5><[njB1ȁٲ%hE1etootTH|:d^.BY_CBx|ƧEJ# ~cCz ؃sh!  btև؆ZSX+ݰBD%|cw[U>{(JTfH]!2RE#:;x LUGAR썜;B jjg\6a?!?jUWM6u=u=g-xd=lV}Cd"4IZd>-"PC Baeg,5Qxb|q{%0,o5Ad^Ro'+@f7`&1"@BdDkO k鲕0~Co>qh؟1' $pglK;,OԩbhOozu[ʏ/=QF:|IԉC۶uSoom ׼5ΝCĹ3gS_h{{rff~܃#{ ƺ¹ک%3U Иg1 E' ̉Ek$@9pl#daZ]Rҏ{ `w;W3`"`#(LhBG.kB,Chnxir>?ff1"S.qөj56g.߄?SF5M=9A´To[xT׍[[[mv"zպn4?7<l|hC'SYpsgD`D]DpF0'b "Ҡ빏2jIm5,` XF8 ֠;.}i9xXYȤ BHH-m-mKH џ]cm>yp8ɓr 0!4]՗b6 ;6[^YH!+ tw^2!D5MSuM۶m6M4M]G`pZ]cp<0Dνؕ_8qwO&ﷱ3ip bBպ^@DtI;^"S3fŽJeABb$pE"4^415blRu1'o&teyk*cm ""v֔|me3e1j|Lo|s808uJ!ڠ8wONl+{O]& :Kb)U31 iڦFu]x\7Mlٻ{8Ȯݻ~#d?4Ok>߶ av7lCTKpl$|6Yc ԫ|K"o1&jW$CB rbjb͚ L oUA WD0}7:ǛȄ$4%"a"$$ p3eҵ!Bf2$|ׇ>)׾ z&"3+ftJ<4'=yp^݀ N7;]1ضM]7!Ƙp¿z<`>xBd\w}^Gꪫ;\<6OcG~ !4Hg&Ӈ4֕EQ8l/nRݰ*kӘTh (n !( LnuIan0Bq#"&fQ|]BBd@~־b]/~>2ӰY̨"5]UƻƇ"ҥϺ0 W>?;?\w[?[OqXI05If/r9'`@ sдM=16M]ub}"{! */--w}1Ç///ec&ԝ?O7~33:}A>p8'AU+ J5E.9]܂~)E@pSi/bƍ/:0@{Ve. )5'i}Z?A2гD@ kPB|% ,s_LAdL R h|[܆P:;S:"H0^]wG)2H61 H"+-;>)td&VEw' !@*א:e`G_)a_onn>v޳gq=_"ڮ{Eqf1?^?ٯ6(mUNIJAkQgBKWmMHxC}gM, k:/B De">hO.])J}ZpPx@Q2"6^By{Ux]ff&T@JVE baM,\[Dyz"+v[gz2wCm 4Ȩ-,fʉBsgYiw=c(z?֘gBiڅԝT[OXo'B}L%0"4x M p+@ Cl|H԰-TELiMa11s9_1)7kS?B-LI( t3AkSD@m "KA+D1Li} O~0dO#TQX闅+u: kKkG>.k#pm7\&F%O1ή2}B<¤?.vR$ up0fcՕ:c7-,.=rd<x eU=s'/@~eV%zYˏ^Y9[li S߃َ1E)ud6Tz"eѧ{Gkm\˜! kQ g@;  M+!HO~$cR$ԭ bԑxCCf,ܽoY+g,(H#,ɝvUgJYSXS SO]wkW|{?q(lVSX;)'pSj)3:28۟3wwJMs}ki덡~'\y`Z.T,[CTP 05ikZN>eAx̍mLI1:DgmY¦af{dLV@9 Z@m(AkgĕVINs}HT@$eth\aP%"3>ȔvC$ B`"gLQk 1O?нo^g.:[zӴ/pz44WٙFb@>19f۹'\⑹1QGZdn]uUNpK{?{7KAƵ0 "Z UQs>$jFz2VyШ7 BoXu]3gHMTEQXSXS:,HA$e18SA!,S9ۦ8Br(Sb.A̅ Q<H ̼p&  =x$cq?+shxw:ujcsSc}^1c X:TVLL;vҖN,Pj(R|&28kϵ{b8}.,,\z { q׮]jMfN F pށ=t!xt臣'̀6LY Ĕ)cBfURү$C 9&pt#sf " ΆsǍ/rd7G!F< Ja.kJ 9.LBp$XD@[D`N2iRPD%Ef`vy=O;I4(l@$HQ!hDY+8i+߿-.08ۆ>3W7?kqgΞ9rV߷{iΜ9s9JPVrJʎ0/% I!':4YS_BQ! mM'QB-[:VtDdTUSւ48 HѨMLcA0P>[*,2.CdFzg׿U8DȨB ^eꞹ~IdVNBrΖE1a*g+g#sw@%|fGE5lџ߷;u|rkY^sϟ;wVl]Ga~W|3w1߻w\اvf:d&WdL5M*+&_@; V%9L4kmCjP ZT-a|}ԑ  1 3ȬBdFR 1xCXX)+>O Z5x5@Jf !$[ 5ҏ n0wm#usGa$pUEZ2Ž[D|KD.xd 0hO?'?nڻwٓ'7764 w%L]vSݯ\xM% Ro.~7as(jE[<BB\3 : һ\I3 hLkW!5P:l,m >Y6'Yx܆bHRc2HN raS36ΦO Gs:s&¥BK /u_T/QQWu9Wf A$L2fl\UsYךš~ᶨ_~c.gظ`ƶ}mW_}hehammc]uwǣp8lۖ̕<'<[\\vг<:׮~-7ªץc@}DönԺOU%`21z[xu{Ȗ`gѕ ѨAcpY8NkRhoShgl#l@<|H XM#KG1J7""pVƣ}E`ܤM@gT ^bPa5E<8W]oo!2HD "#/*ntlaMU8gffg@@60ڹiCtFz%=~[oyVkkkGU*Ҟ%Hڶh<ںzq{u s E?8^;q,Ot͔_nprJUGu%QFu %*IA@0ʪ!<}I6tIeJb0&HHD< #+5&4{M&וB7&>25>|H OYTs-n'aT4?_ટy<]]"Q-^Uʲ,NnXgh'Ϊ_/HdlOq=& MYGN>ٷؿmo766.\dLYUUzݻ.츻Lςas!f 9;1NQ\ђLob&%uBsIP Uˬ];8Ǚc DRACk~ҡX&Y6Dg|6"HXgF "(ETTJh"tcZ_$Չ@ ދ,PX,m DbLЂ1LzdL奔)CDF7EԠXD*sx kRŠ)>ӟIS4h]͸mK`Y v,yęOu|˛ff!Dۦizkkkuu5ƨ Ef_C q1U?>2Jd!,"<rE*2d۪_B2AR<HU,um#'-!& U QQ#6jAQ#ކXX1"2K[?xfEŘ,.J-3tEUi^}!Uy- 1ǎ #2v4Mke(()̢e6Aaklfzp<.[SZ[񁈈O9rknپ5ל<< hߘ8Gz6Tn{4WODQ->8D7"7OVt/*Qbe݄֠5#F?ueF[v4{>|93~ycٜZӆSJA1pv5mI7=vϝ8YQI*\Uq0d@Fjb=l܋Sxk,ۿo찘D IDATӯϏ_<~͢YV+D^W au bQ-h_}܎&]f@@"tfęz :07v8>ʸYŘr_{L7; `X6DfA{pX;rƭ߮a=Q+3=*r`5x*]I9X&趙2{̍ qM|] Y)d]PDȌ^{nkmQ$A$3߫f{7P9[9%B?v//)qc,3G77;}3G+,TEt8ݞ =ߜ9<ǻs3Sr-%CEC%iN C-s'Q' Eꠡ@?oit8 "Nk  aak Q01}`JDE5%4*,֧UYTN#4΁2stEKD0h SMf.Y]s{yGxۖ82G +4yfWUEQX[SXS9;lRGO|Óh/)ۢusŭ5!DQhY`_yBnHD hU"ZہL;*]#u:¦{cIl,$ $[d|tCgY|ۺ*9dNh-6yJGvT$W=\TDč!rb銾U҄iZ|r:X/Di۔Ǩ)8m~ >OM%~?w;=G,8k{eQV; k)7kS3UuG+~e~+&Fu^IP wikF5 NT`I(eQ%Q4? U|j.! HC[LCTʖѩLdڄIլDP38TƤa* ;VX@5Dc7~zQg⹵tZ޴¡6^KrZPyX)U}l9<8'LfT?n?1t Κ,(ƔֆU"Wx2Cw />,P[˥S ㆧu ORB0Oe$Kw.?Z:}7yV>l u&Tpp73QZ6Ysz9껌}u6~HI:>`:tfWZC҆svX?N`y}b㘼2uع0SZT C^D%!37oyo>h8Ffb&4(dHlTEQi"aaml2GY!=*WHԊ:2h "HطXD! \BxA94 r1KumΦ s&Hxzh®*d2SVD&vYȇtuL 4W_  o{N$&D?x2 ,0 FR:VaO*җ33~dYPKDi&UYh3&"\dgzE3]t0G.PX,\z;Sb'A+(ֵ%>Ky d'= 0*֧ځ s}P`4rJ1U tI2-D!LcL}Yb-\ލE"V [ZGW9묉kH[c=OԂjK6RL 7DTu5+kﺟ$ϛr"'Of}O}_6Bȁ%g8V9k %$} Eݎ C"kS"'s1p̺it2,5s|rueiqUK֠֠#!#K',nUґ[:["w# I<ρϕ2Nft>/ A=D WX,>r0[%M*S8S:pa&C6Ɖ|g0+cD4Ziz Xd,LTDlv\tf¼5 P壴>o;I(LTԡӤE@A/=GrmO(E^%mCP !,q!gLp5ІX:+ > Nr1Yrz 菴MR]VoBiE@3չ ̬.#F_ EURwnm#Y*iGdN1ZDA43ڵwh{ 61)jc>QY)1;&Yw%ykS}aCLVU* 3ashm:@VYWFGm56r>CSs24Q"ӮL !'²ĜGBt Ǩ+LL?Վ=zcg'"ﳆQ# cQVk1gSyljB$Y$H/|ehQ-Z. JeZ$ʎIv$0{@a܁{Fؠ¡1hӽ3__b.VSzD_g0 !H qWom)`avf{9T{=* *%2ւdȇ5nλ. u 4ŜSA#v^ʸB1E} T%U8d.v4X=yDD$ĵ-\EY0YhK 8ٲAj$T1 N! sгŪ.~k1(j^LC r9V:OiFbct;2="K/XRt}ktH$5w*$p^ չaNihX_8MJ9݈=횭չAaVe]guvN}Ұ" &ĭ C$ԲH&U @Rį iGgx ZRmKU7y:w8u5UPRbQg`Ի'߱Q Rg~)5AE!ѳoAؚ"5D~Y,ٙEtzn=uXwRINCjй1A\T*Cg*P &W̴gxG4z`uɮ!ǞKdH'28VUYvJg ոgU%SUզX2Pe>UyrK@w.S6&S!CSU wBC_OTl龗J%Q|ҴB\To2h 꽂e(%,j(r@y5Ph-.~ܖH܅!!R:c ] $Ѫ^ ,u+Ci,1j$(Cf>$안lZ[4\FFç' ΢auiޠ#%LFu|riv߾yk"s{(u֔ bM2 bSSŁn`=]Q3L8Fi,8cli>M+PDYOP 9F2MCA 6MFcd^Zt 1!g=tdn֮a1yLjvnU. qܦׯ}뗖 g.pq-zq݆٪8Cuan4QZs8?(UK9&)o"6"6)`Ts?8cl;%3 vM\*EHGF]jgz\ֺJ';BxBl LF /?y?$+%k kOBG؛NH3wL #د X(9[=d0S'h2X £ nvJ8Xk1.1G]aG*vJGvep2DU79rz JTqR8Ɗ%p*&񶧶jfNĐ1)fbbiI a#}a,Đ$fSbPُvC꬙pRRAo3O~vXvw Bb*QWktF1PEP?J1p)9qWoH1Rc) `^omhS pE=sr!W֡mC~}"5OwRܥ< CBKp"&b[lleKxg.`k z2_VQځ)w ͛QHl|&rE<8ؽvC HB Tj~~b ] / Y,ӗ4]4}ǎc7M\/#1fUq_|g?8P|eE?@'U],c*M3iut`.@r0jĞIxI1Z#PJZr>\o]K/ߞ+{few+؞DDBfc 03$=@gg;8AC9bj(mlQ4fo?IBTwUN+5CFT+y:lxE/_?X^Yv6]#:asc))@̴찘bES go@X5 !/I?􏒪kf@!WV2b wkTۊiH6z\%X5@ZגT@ͭbD^+& U81 fDW,^}x17`+s#7fU|G/N/V]ON/vkC)CcEɒkmSL1o 8Hw)d} NLJBܣX  uq֕ Rp?~WbS%*5FOG,]d P'+mg]1>n7 |pK!a1e %϶EՋzzs5^0{quܣy&gW㡨2`Wnxk@y9 ]Ot @)j!qVU "٘U O2_<YVzy4, g݇?]kV%"+|Mc.QVfL ϴ_J걱ɠ2߁jPDAMܷ5̤T8c|` F%U)ԏdOXl+G]TRq[%6Ov_wUl6U7*RjxqV>/w!|wlj.)WCcPEG 3k (w)&1<LJ9S&a14 X̝-*r-h3{Jcp6Gk8Ua23 #[wgNn_=Xug/K|&>\U$lirkusҫ;6&DY}3P* y:0X]̆LeEٔe(Cԏ21 uh,}#b̀Bh6]u/Te_7UTlBN{oGV'm "2UmBuVi(6g}aa `:*kGoC[L Uc'86"͘mkݻ7}bAٗ7WB TgoaEuWErwo\7WW S15kH9er^2Xvbl9$6=.UċUT%5Ro I]H $a,d RtQT"@$&C "m8զעEx492),fѦ٣wS?<9(R.'#b,iƠrVLt&" W]IgXeQZFBD<250C8OSVUN\l(rVDw7?z/~[0mM \"&cR\voݺϏ6XdL*>L tm̆ D/SEK64ѧte h9R$gQj?Cg1N@D4+"b {U $+X$B?=i+*X +rF1@RvC™~ p &ͼ+ *F@0U 1&8RȪg39 `ʘ J0h`C8]!$+[F .ͫ׋²m޸yu}6?w1*woYW^^[-WӋEt+VuL@ St42*WP*֍U&NkR2"0J?}Fs>IL)wcؤo s6l0 j9r}GǑC$L!ȤO/~{:6GgVdƐx,N 0lȟ;LR 9m{Tzgɡ0P4GNR8q71+O~W]!o] '?D]iҲMWg@Ojʄ0VȘhb8rȠ2'oE*IѪE} ktb)8V9˾-T vRILõj6㦚YǂKOv޻zĈ{8KudABmϯfX3< Kmzm+8웁$h Ac]\\ D[z$ςu2AmD,RuGo'֛ׯZm{Z^]/N6|kXf?G- "yn\M)EPS8o,VbogT&&Rnt,9)a)+Mm,z\ǭ1!k!-ʐc(Cw;ٸIX=0ǧ_\]aԡ1l"u/W$|fL(U/lz@GQ7("PAg1]>)`%Ak%db^QuU68("S| -@((Ҙ"TڧTV]ۏg~潷߼,t7~ζ;W޾w'OſMAfy`a`?_ю^ m*W]TElM0JvKz/BNWM1m6k_J?ȐE'~Rjyewٶ?h}$}7Uۢ@Y$^.jO["j"hKKTgSS;j6Jh֍yLÄ]e`ՖBh:bR p dZ~֋բݷ<|ouݫ8zC\\Y-~x5a|||ѵ>Q*+f5ڇDPͦEHAsde'),b*iUL Mze hPQΪ :l,%Q9%B"oxh@L{7#45ͨ-^d cEpC)DJ\IDUjwG?$[ ?;zs.6]㣳ϟ>OWs~rn|ϼqH ,yDtCSm rX B47Βʇ@Mlh0yҴUiIh@<\:8d>5o?>{DK9a R 8Yv?\(fjQ KWʊy)Z,ȇb!*@@-LCVw/1pgw1y,"e lp^;ݙÙP&uxT1{ȇ5(W m5k]?yu7y,WzXKrƲfwt{qyz|ׇ]r"Jl6)g/bJqZ!) &1SdUSuZjMJIfJxQGx=u +&u,lH*WR$)aNA h2 HdW $Ne?LC.>/Pf?VD2ǗWo(r% &"!ݞդB3Q@3uC9hLkHפďudZLB)`cTV>ն#:]""] LāEZS]'>tPGo_O<:>g_靯cr9϶ӓ;Kqhc ø_t t#0"7ɰ_'ny0询siKΤJ yС dU[1詑0A_|b5Q{, 6i!c{&bpqp::\޻G6dKue}`ypuη'ۣO7+;:;$CDD`!P k=9r|v °*{2Qxս@9C?Y'i(j~\LжLg}6SSdm-Q5 nIj3լ D|q.j̴lEH ! ~16 )ŗ'Pḍv}H ml6VR|j? bM _,JoWQ~ܘ*ab&^K)+ݳ #MɶMʞQő]tj/il@ N2b!6 >ASby{? $$TkakQb_6n9SRNmvyt~x|Ys= ̛!EYU*N}ML´Iz=Ģ5 Us<[۞ :G]4dN5 vE a•Wͫ?vxoB50XehQ*D ΃m._uªm(69G܋̰fWgM'[DQTk?ĹE14=]޴l;2bHLPTfp^%d6@o{+LdjfC %C/.*R0c"8؏ Sli`S.2*;_E0SjWF} ~'f P ziv>W-k|*¤x֩o u0^dG 3s 괔GǨ2۔I4A`Alm;Ć*eCeDB1[iԥHDm. xr!`3uD'??zmL3P٢)pA}C] YMe6;l c .m~mHWh}DR8jD2&mLAL)Y$ɌgCav||gMR& G5M,&*Ya1H^BJ#RTWZӈ6b9 ~Qɨ (^G$ [)R.lU? {x/*»^&M7VrRk^4icph褝~%.[1W!,ETXf&䫩V+\Ჭ*R!3>^xD\̀ A"Db ϖp g{wNmfDta.R4p|T0nfB@+f_Gb" a_S TIq[L5\EUpסrOyFCV"]'B-, '; iZzzoAhwrS DR+uLM.EnSlSdRc !ĸ+m#<|)򮬺*WYHJ:M&aH\˶X^gNL#ګ 8 \keAܦK76z6\NAi`3Gq8"*Ur^g%bE큰+K!$8yz=*2[2TG' ]Un/WOڈ&oeلi !^3+3%L bh?CeQcQ5\hpK&j1ĶoWm|׿}'^ yFcU˦B1_Cy!v*ޥ(d&>0tKP%hXf>9`8=񱺚*bޖx^~j/UH1|D$rҫ lvϿvٓW) N?*ZU Ռ {@9A}3Zs ohԈU2EmB!Oٰp"Ci[mv+^s-3) nbZ%kt<6)04;((&ŻA'h 3 NvSeKLLBk@ofzB~,sLv#!եH}EB8[)U'GJELDtfqflmPc- x j'_)jNa?n:ךb@=JWowώϞ^\k!uڋ~߻Ga`1p*} uFAW <>gϭTG}%""4X̱4mG\L4U _db&ӓ 3{uX KS!ą|f˥:M_v Vn|jqԕ$y yq]L5M, eYq mwKVÞDtIׅܰ}jQS/`)iy?ԦwWξ|y||7GgwηG5 c>X֫+Yt&>XrG$,]ZiU?tfZv:4M0rr<{lDy6%=ШUD=Mg37( K=jHf5>-U#l6ށްTF3Qr'R&8@PRt4pk'd},mV#٪uzTkx5f8_~Vx Z!o,h 5mI}`2:N>`ZLZ'ka\wMJڵkØ7+gcRK)HIߓ0UʠZ=ݼvӫ1OǴZ_?t?~ػwns2v$w40NɼԲju$~W6 ߰ AebE2 h,ʃiUMKG|.+7l׾WqN}ih]Fe;cLW&̃zfJQ; ;91S-{!2R ^mIܤy='^>YaYz&h;rۄaRd6ɍYƑb^0M 0Ԅ"FT"+BÈEy7\\]~u[wmrۏ>*OT]r=nwGhx|\ǷofyԜmw'ݛq?RCSb IDAT (9P݋Q(jnst m* +DM,&x)M .`sz ~!kՍN#ۏn}!w(rW"dF?bR&1[8R?H?Ҙ&h ]ˎ68uev!c#j ȴFmDDa5JV)ݾVVJ()R]VV|D0wEa8]^+sZXVi00˃NPHۧu[x~~Gouz~q>{zͫ~zWn_^4[s;m/0FaY*U*p-W6i6ơvMhqZcEwybd~fnf><0N2u2}vCKh$HIjIRRU]YQM&/cD*5,*k8 [܏ݝ3bM3yplX1SG'c7]up !OnDw v2ؤp9+XoVWh_3=~vv=_?|O?÷_GlȅxqgG?o|:\/_>{l|?9w8W3?&SN@|ŀяڪL>0hf T&C%9M7! FbrRG9*&w:AChqEof7!wfGFɄriD_irlu#u2dlZvnGΞ0b2ܣ/`TŖ=. B8 N# { hY4AӇLJ#vsW_cld(G]Ւ@3vk)WU4~)tEz>imFٺZl>?޺uMDn:^tr;!O)ƫiRz[Ͳmڦ GUez天6Nݚo5l~ k]zJ7izK^O@5Q1, JȎf Lu<9DSVҳꚋLc)PA2h;/Aj Z dz ^*v (O4MLňT_6~.I@`)Q)T#V\9u-$l3Q$3~w7Ҥz~g^y" RWη&1W1bsvc;HY?^Ք2ٕ83.UGrhbE;U`'iԋ]f'@d` mwB% & #٠Zc,j08l)W`#ZvWd[ b $ 4;|سR0zц+~ `mcZEm\M_fRJ_?$.vtzrrwLƳ]t{ySlբ-n뮽JiKuiJlj6BOk2Ӵ mFY6͞D3!M2 SWSC1ťlShCn$)"'@X G6-jdB!E^-h#tͨ^bEuVA_).srL!!j6Ɩ{'FT)neȺV*j|!*}E_bş{i$m&h]2oLRϫ@mv?'i޼u+ĸ \;X;_98X-}t|?{ߍRmuL0]췪e[8q&߮mYDu4i NHi>&Ti*KDtVU|; A&BZ][jZ"|#WS ʶ"3D.+;Kln"֒Krylۿ<=OMznO/<}b}/?~+WVA߇m賭;$LxwH/flv]@P J}G0P cbXY0`v4DlzdΔ*,TE]Rf~WRb]~=\lRo] kp'VN'R>l3sZvAXLIZ5:\@̎yd1PˌgjJ)$oѢ] (^.!>fnn3v5)h᲻su}N6ڦ}[WV󛇫~xr|lޤ_=| EB3>nƀ eH5ܮ]b:"3j`P E3?OCQ=|ƨUl+1)D͐3&eTSإDN DɆ-ɖG_:x=GGvdΧI4ʶg +ܚe`X c`N4An@BL-=$IζL艙޼ߏeץ6Űl\꣣/"k/ڭɟ~Տz[]5!Me&Z1`)"(4/ƳFPʣF,*=^і'eҢ ͨm֍a.oYrƀAc G3L=tHka{Pq@Og17|[ɇEe]^װYl:/Xxh 'QѥQuߥbcc\X4G\.} `*7>~3bhRkElWD\N.v7VC.vshM*4ш*4٨U`3LLA\' Z%aqnolQOwV:1e xJ~8y)өb;Hdu \Wԃ6!3{&R\'_Id^xW@O#SR Dk|R04NmOp̌-xa *hPm3RX&RaR TII`~;*a P `vBu;] %׉Ȝ167pu15Zk}UIx~"Xc"dA fdӠ/䣍 B1E$ T"u-Y v:*io=ҳ6ʈD:x&rתzd"IȭtwD)rijh6zoMOU w*MEfj^' 'Nq(XOԏ;}6-3UՊMf3/G9HUV ^Ie4h rdCq1pkjܧyM| 6ZF"ŤSd')wƜ ff榝GEv:H׸U+"־AYV@LyonMȭӄ<'zizxȤ-VF UB\H*Tf%)05 :EST)"BsaWqjx}sOw[C2fu` M"LB&r b7';TM&Z}zy q j>i[AOЪ 8)2QZ'*v)rXI8؉D)LNXeHg9fV a 7ꐡ(H0G&2桗!drKJIYThy }=n)!ZSGnb1„1h)CVI` OX *QI6[,1}S5ؘͮr=%V;'6<a LN#BQLw5( RV!p XXd"ۗ]XRՓd>llՅ8;mD(%jBw4IȂG " 3c!S`y?r6l(FWUflJQ Yy 2ԑx 5bv"}'w z'eK_:IEKW.FK:llS%v_rpgfp74wX!F\7S35PvTiYWeʻpYV̰O6P3 S#*hQ$KJ^<3*1>&ѥ*睐)QMߢe,j"lcva OZPI7h!40XX0(Y5NϽO12&LrQ10h:lDltMc407Ӛc?{h*L^)h#Ek^1뼡10=l- 7 \lqݴ؈RJx4fR0.m{- Nb:2+=FAQPO`AfFP27$ljጌ+/f9 7!sVLzQ(IuvwV+ Z0Jk6wVk-O0Y/ M3!`!֎u~?hIZ ȍUP̔W6mbzH%NQT0FNvV5Pƙ%Iw̲뫃Kba&91>DrOK4N}tbҒ).Ql{xRŒi5n',6;jHWb퉡)Jd6 haszl՝>LR}A1D."AIL(|hFf}ȪFҝ9ꂌSRY?4eգf2`leڏ9mvbU$~7E;}BHhJ&00mFYn.S4 &CtoP-k%t+D$VlB|x氎 ,Ep i4f=CR*v)En6G"%zgUAhsF0Ɵ8x[pʻTʄtvX;RyN%YC)c@0`:6'ՙ޹ "Qe!C,YS6ot|JYgt4M:*"E/|hݱ6VpYrsˈvf!k<%M%VX+m)u?Z<ޡi%xM6In*~ hyvCuTS|msM?.(f=KRՑػn֭xOm޹gQ"⩶ZXPB*AiJEer!&yr>PQ]C4QlТ#ޥq=ưVPM,yqjݟOq kv}nq%|6/̂} \᤭YeYA5c< ; $Z/PxHoڻи:qMXiA]XL+v7snI-L~ttx^ϬqLsR,e /[>fKZV9: A/exM)r8a@OFÿَ|/ {_E a.ig/_po'~h *}S_$1NwoCm VfJBR7<ۙ F^SM-@v!W|oXd@yVͦU;wVBbnkMMdLpB%^^+v0ݕx;P>Ĵ^4<ҕ9`l Vء -46z]p0G2c\$^ W0 P5- ,GpE;T 3},rVTņ:z2xΨior+l@ೕ;6j܅2`=Yd%swKF3X2n~mwV K>I /zQ: I%QLtM͇8,Myس (ԫmO!!# yl7 v]վ3tn~OC4uGv.z]mQvw{t?_d?:ա1ϡBd7[:9Pq"-+c-/MWrf;ibt{wG! |t}s]ɪ l ߛP#*LqvcheƥuP5A߻)YVM@ӂ̬ 7;mr(C2#vz5|3e؋$^z ȾU tECv*bx5mi/UjxV+L-.1Ґ9bXnQ5|XǹIvWVE2vUV1AƦʬk1V18T~ܠ!hr YCJxnv.0ۣJsG7'/3b\J߸t`7MsM + v@UQt$؏?EP޽닸pZ{; n2K$*=s; RL&dC*ÒNkݮa%A/,beJC{_2s {{ϝDly:tciDGq~ Rd]տ~6(r|OkY~bƻ@!V>1]t|N*4ÓZ>&O9&]k;}oSxUG\HvA43+ ET1 _~Mcn4ytU9-JV,ޘu~- w^6cYDEdW~>v5]=].mdț=PFX s2E~rSH-nwsoPȸguTvAҔ/5hg8-+ϧ+ `% QG9C"?=a3RՍ06$:4BGb'-N&\/9z)Ht'+G^`e a~>jV368UKSy.\@eFV!6;^Iyg}kOTo[A577nbSºrP:dC$^B @Ky3=dRpCuodOB7DIDl?LXRK;H{6ù_:Aohs~F.6[QTbaa_jo|6[Ge>#6@h>GiSxkaLUppn`%FD=_{ 1´8+1?KZQSP8]R pHYs  ~tIME Il IDATx `SU8pD-R]"TèuD2jau XbZ:ر&,PCau:+jE1 mi`Qˌ*}0U`C"G1%t.}H4VJr[@AH@CI7.wzd!l^ zMr3D#BeJG# @XeW1c\ƸJq> o&y+-/}sx\͛nj3(`׼ӕM״_1cnݪJ'7_tH:<7~gZ#[BYW}$w6qluԨQJԌiwO+͛ :yfII{SS3MZeҹU(}Ԣ#p6Sp6n=jPX񄷎V` 2꿓Ϗ±]),+62ǎ5T*]'P:lrwًLF@|F1p3xX̤vC7K댫4K|2Fh \ P]?_n]@.0)iwSSe 5>vO vv=7c+i,ME >5S D^ ˅En;ͤD_`+GkɗB@ށ~yQFU̘jsZՐZOcj _?zmS7L3יk,r\wס.ca+ho0z vcCrFjvĬuծRgt5v4[\M~@_%@8_;g}}};г]}t FʢEuuEEJWؕ+7opm aWQtǭH'vTx۷Op|W`,Y@q􉽎5k֐KkT>ȏv7Fe:Zՠ'gE[n_}`tH:-H+MR:N;П%topwC}u}RvE=Qv7ܲpwĉu t/XcF DSwL7G]Bg^ /<رBc2LBk4T8:ufNZ9R _ 9?z Ç/\xĭ'PǓ:Ӡ%G4&Ez u1}?I6 Ӆ}=KFwbļ4Xq9F$Lo"}FipTk#:/P/Rz}q?47L\w4Z4hdžQo0賁c8dVGC<-עS?wlRliMo;³.۷Zgz q,;z-Ыi xyb='cfUefT$=(_/[o{VpH](a^N??7f-l)j8 Y,D?鷒Jinc}~;pS,PXl$[`>ǘ +tIJr8TmNw.\4BwLm02`c-ySm Դ8fBzT*ᤧ%lh ['zġ5;UJC_ä́xRQS>LV_GBX7ج@8kB5b:ָTJ1}w1.FM@밬;W].%t>æDNG93S޹sޜŧhFwӫ}`1cUStNX:%kʱS){99?|󗘎OM}v-ȾWWZQ%?i)}U*W{1yaAxyNm_p@ }՟֢Qݲ^N?DuXLW8ιEw tx_>ѣ 'NlxBrU OɪЕV-3'z8Ck:}Irs .|>yDq 7w +\(­#jei).ũoJ]Vf~@@w?7_ xk]Bn-abkCi9gYz2smNXlԠ^ W.}g駗Rt:8~ׇŹ}C!8쇄A. ^xA]%ʢ cr (y.Vk{ *sHOcV5?8~e{T%*JJ*ejZ߱ޱi/ M??||*9=yƯ#:VsY{}z秝;nEXgV3ݚ Ş9 T ~nNTq)9Пat{ѻu(%sֺOw}:_#dK?sQ2{T{:լOe$vyKE6ΩN=za?{"M>K+!&9)}zĔ]+wMMPHdSNk=ӭz*$)JtUjy)S Mg]TnjHAf[i'fzxcSiwuQt/\XX,Y; {72 $N~/\8s?ZE?mZΔ)Sv7޽iʔiʥtݏ+7my+l ?M|E߹zX/^o[U~Az<ŸeK㥞3oc'f m1ieO}Iʥ# t*ZOoUUU[#9^ a2^./ד={vI/==Xe3S/in}у:!,I]tH( ^ f{s#=66s;t̑~۱%wd&GfUg,辜et#!FxI]bm@%_xŊqp=.17`H%.lK@GNZ9)cR^9cYI[fT;? -d}9!-hglП W U`:C}FR ؑc3_B7LycqzWAwIAX]_=ly \o822B[ MЍ_; |-#cK捨 mN]}|*XCH%[%tڜ(tj"O74 nLH:ȌIi}ݵ?& T%9归 0p :`x#w'-l zM._EqP'5uKm1^wxŇ\O }j%>:sN |5vҤ77ˆV3u']  ݉ 22Qșzqg^y8ɯ-#xikͺnA.m#5$ᮏ:n 4dܘ?de74j^ezd=(%z)7=.dÕ]?7!7Dِ;.cHL;޿ԿYwKT=x!5t0Kźh;sP㸼3 zy XbG!Ϛ/><^%DKJfY7k]Rҁm=">tQG+SEzdv t29wpoztoMWsi@g?g?úx/辈Zt#Iws5G^I?xi=>xG]~)UT-Ї]_]sn/COOO/*#MYH4y7CLz0Goa󋋿OOM-zoUA,&X DTzD/tYo~qTˌ>y1UY`G^p8?"t@_?X_Ur /`Wi5`OOR+G$+XG\ !nC}ȑ}"m1D#9ݗPzᅲ*!:aJ%]Rz@'vSFOC/FK&k5G-tga#$u+F%}hSQߦ(:ռzԪ6|8 `2sv~_S[|(veh1|wؠ%QFM'DAmh^Ct7*_cbaa2GuvsG _J9:+9, IwM%MM.փ[VijIDAT EyBN7j}dOdkv aZ>PwYcS:-1DU=[dLfեRQO>lu%;+pt:albl3">Lm573#yX$^jDBwX#8~~E+I|PQMeSɽ-qavқ^Tnl4W7ӄE(.`0g{:-'dZbاJG*^ \_ZojUE[ IXt;u%7WsgJtҧp7(h9/--}o3B Zntlӭ ; =n.,gR+=]yWIܷq=0zC3{ Z~CvV*.Â!suib7.Ir{3.Ey^(8}D5n+ -v ]]l-ПQNi3>W]6tb/ǤU7^})))~l&g(铲f\\wN])З=#< -fgb٠ {U7iG&αQ-#n'xNeY7>gIP+\Xj).fv66=~6IC=޷=>d)#fz0z-D`+//)ԩjt9TaKd2WwE޳v޸80bdzKJd4svJFaWM4[W3Ptt)F,L6CLsC>;LnI>EšyLO8#佉>ҩW[~<Պfپݴ_7a[ic`+^>ɻ6bV{w}!zss%1:|s0"EU5+5p(otO4FN]O׋4oQ+QI{~٫E5 ?أ2G~j9+Ikh<HoZev5*avw4tw+"410>SaE0tFD7aͽV䲔VoKQW;<xQ:eZDY*r'Q77KxbJV\D~h^_lzu3.樫qD~N6_h'sCf66MӧShu0&WSNsn/iw(zsHسޏ~n^ѣUGۧ+"J6z=b#РG($hLTѣ} ыIc:=8#n}1h[Uц "Ekz@>ơ?33' **  騹"  ,"! /68FHFNPNp`e796oJ7"w\x4**־vṣzTA&"!_98a eMS|p_efdYH;27+"tusYrr/+*y{xӢǖ¿ߚz<(]A2)&,iF9 N//Ĩz620<87f\^}7>PҬUWU[=>{jn [VUؓshqKFE, ȴXcdV:+iuuiRC?>ĘƃedA4zµ&'%R9.[DϷ*&%x[[JUUРʧf}mu(/@8&  ~}5? pHYs  ~tIME;/& IDATx |יuo![CJRhT8 dSYOxx-Yr+JVɺcN0n&`~P(+ODl~93Hƣ<6@?3cĊ'SO|IO?)'Q>E$ʧDM_FG83;ޡ=#98Y} E>Xtoor#{qiL qaY,MFgzQ:8˗y*Acg.f:}7瞻2Qˊ@dU>z dgE);ϰ"')r7u1S_w<2:1Z}pVEa[#l8u<NJR/wIDfX!F#:.d+kؽ /ŨH^(.zW%&J,\\-qA{eoXdEbKE(aWְvvZ=h3`_yrX~v+cK}挬X}k^vF 좥.@m !|)즠'.}[@EzK*DeJ`a_.sVY FGR`;v;UֿRVfȢ^APyk@6ep UxK Z9$&jGuA"1]>=%L _\$Y8#^xsi=aW"V/q%gIv 8ȅ,H8'3V(Ր]X/~^+'rJD#QdpXd6~귉|8CsYv)q~_ddd`=êE%UCA@y6:h7ˬ>#c'K6M#!<@,#D7XF 1pjjQ35m`gY0yufg"*w%f?K_ϓ@-*G%hXd 1R_8^lxOW@ly3loI.Fg3ml ?cC`C(*- d/jhC;~(z-Eg R).U|:M~dOB cCO?ԗ ! Xe;'''hCV|b솆i1v‹/J~ L.gL~a9{0pRG8@:Uf6b!6lvU2R(oNߓ(o-xǓqvׯVNq@ip7|C/{N.(^Nc6o@T,}Q5 buNiĿ 2jxwxlЋrۊrrB9 <$pƊ9 9AYc8C yW~b7{")j9qg@Wͫ@cΐt b>S63"vv;)UI|96-zDoVtG GPȝ&g“lhu87p9HB3wfv1mن_Hз{Q'zAqq=lCW0h>\U(w}gʰY.  γ8#^(cl~YI+2ϱzVGDU-DdzamHEooBb XY ~r JTk Bld]E[g =pgxY0YR%?K: gb) Enori*68C֜NgN6NJ@Y=5j [e6w^XEW%'&"CH wfI'wrH_iEaEVj99V\^(='%UCv ^+z6aQFm ѥف9wv}*;0Ruzl0q""ם /TFA >\=݁ P ^ ؛gs: 81h3vW8/GHXpD)t;iܠ1mB V5 #CMį?_(㐶a>ї a2\Rq1h4v,pW[*7vFPH GKжrA`N'j#CF<9AI 18PXw^I.tp<갦G~ (r*EΜ 6N]R=&TSBn ͡`*d'b+.1ډN$܉w|!c (a΄~n5vūˆrB!AkUUv(C"q| /Iv< o#E:Š€¨ PNgqZ.a*[P.E6z"a؇r~I wI )z̥(>L"}: a1-bvI~.+,قpUyx"dgdVIq)*kӢ=(AwHCs.yc~+&kEb< 벐q %`0d!jq\FhԪ8 KEC9/ Sn;ײjŀx*hQCi" ZTҥofe:[^-l,95mS.(l iWCYnEĪT[$НwMCfjD."XT+`uW:G{ !~Lsk/u8%l#h*j6*[YU3y N˻xl>-HM} }@XUĥӯQvPY+kuZTNS=n/w7jAlT"tyF_4l(<^E^{뭷߁-AN(,֌V'ծPdUAG:-n> =xЏ+[owZ},{q,e#QqZWa(7pFC{C*6[Y,{DZx76-Z?O%Etu]k@ mCM#Cƕ Ոڋ_,@<9 p+V lrZ7yUVp{& <=Z#N#k ρWVfI8Otj],.h~\3vPt#&}rߑ'~!+~ϝ[sY1qzK.&RK{1o5qM4@ˈ>&rfCGZ?GCg.njv^XbbrLK{ u,A'g%h'3҄q+ =tZS q1(K֟TUr¡ҕiU&4.fOYvHUj ~M75;zh-3WEkN,P:&/`ULjc :iMi\Bߕڵ/g_ Qr@YK y "gNjfMO nt>wӑȑ8bŽ' ArBUrqYi29b#PpJ#4٣zzWPKy!z]J+5?^1z[~YGf_x3S9pCi+qUk(04dh}$n 8={qgޏ\@);nIWf8j$:.P+x#&;aǎ gA~ghKh,E1mq13O7͚58סw0;!ɕ+%r]wm'rple(6/xS#]o T\1Qn(q+7;;31.-zEge +9xSwݕQ~ߦئ&E~X̓0Pv$W Sttg}Kx9Ǿ}{7G{$YpEZziې%P34}@ _:@ ܧ6rOmf;]PU=ז?d(A,2]>sgydՍl~]^څy~կ,Mz*+Opob'Y {V9qV66G_l`{XY`k KY4y7]ۃaQӯŁb cza;v4=sdU \]Q8AߏŢqaǎyy]~l4j6*YSW7]$ېlXbz~$R.!M=P([D[,At vUXAF/gNL-R"N$p&L߷@?[~(ēOUm:l^~X<4 #?Z(gʆ~k9D խ%_z=qnv~Xq.{E(6?Fo:FbIǗ^Gn.Z?;&Mҋq?(>DX9L]BabIw^G^,nŐׁ|Ҷ^x#^#LC8e4|u3-:aܤ'm{m`G^`(E{[Q}/ c;{_;UqgPoWww"~1wRH︔XgU.[yY0۷xe6O-/o2X?oCO_ر퇗h~8#9"b@ ]>oWf1+σ_=( rK_S{.I{Q183Gc1ϟkoeI@Ȕc tKxx 8"ǘn1 #%ΝkW<,Iۧ켼s xTmq[EpRt\ o1 ɐՎ&+4$xS4{&&obY D wlw}q֝ߺeK ;-xZ@{ y=a$xŗ# q7%ߪN%GUsΗ>岎Nݎm=\C?еD[(/}{E1/NLeN-kxBW>S߱muBy'r/AkCLd63vMoo9U־?m)s|n͜ _"[6HU&|dKfǦ٨r܀>D'{Ks^%̼o*e}?>{ gG)NZ¾m7N87LW7L;6^YoxlT:;>vbW}ɶ%x}U_r{ 2xgpCn9cf̀ Wl~/Y{x |?9:!(l5`-z֭m]xpo/.:`@~ ?@S'ɪYf)k4fe*wKM Nl_GG+o܈/pxL;GWTTWhNFprmё}v?p)w}?b_IѸ<2'IDATGwww76vI! d/{e? +:cǎ8H_߉4>bG۷wW¸'txm+89a'W:5'TGoR}ƸO5mj7~VpHe>kF8pȍS>lɅ Vm}+Fzo@!::&8NdOϣJ5B@_D#5 :O\1u#Ao*LS{ECDaQ <}k9%so8n`O$ZΩנ%Z"OJ*3ꈓҍux"("%OqvL:rEE'{);\y" I^3>#OU㯌&n):uI$0 Cue#Q?h:0#:ծaX%Ib?z}o RBMZOsFvt1Ү$Ib@n>~#B Q}7X_ $Rj53AL#?$t-\7笙r݀ф$ f]ǯ-OwFn`NfV1G3vΪS2-ukKAa;w&kp_6<*ʚxsePٍ2\KJuF|L֤f@vaz!:9k \3~{A޾e˖FCT+ZK9]Gk6֥2]q=X?j>x*^Ps I;-X 9RX^g'{١1O׌]ul]G*} pWUAYMהXWRoHStp5Pvf%һ5‹SEMv2}&{GFp[XӟrN /Vu-l!&R&]}Xtaˉs-Ԓ D7d>mhNRZZZp"Q%|2);U:Wt7v'V F:ߠZ;3QCRj/-85[$aΫ(o'}Oa< ;Iݍ^YRk#)x ۷\):{EM؇^D흢̞YTdHgXOY2Ui̯ꩢIp^M0> tre-U.݀WZRvfU]Р+)}k { VeA5vp7zFOvD;mEeZ{<=iWb8da#ͫDJ m5vpY0gMkX=,\jxmv*]C_8oOyO "6A^8<:z]mzGw{[N*z҇@:)k!eUQ"҇~۞Z^Q,^ I~% f\jj*.eۑ@瓃q1MUl$v{4}$Wxa.Nl}OMy=OQ;A/oݝi~n'jykcAn^g^=Xނ\SqArAʜjsѨvb˰,~uNf_٭z;ϋw_=YM[z䕸s ƴv*cZ[k:mm9LAzRg )ziAov'tC=Gыl T5 #zWٯV#yu~w:U{QU2w>:ʟJz5k񨬧rMU^Ӹ%-e)ZboS{O?wng)[akJUHlGu|۶5 eme />ZKL;=m׭;37=vx|&i7[2k|M{/aoIvqp8>d"=˩^붷t[h@}z}{y59vUE?g8{-j=}4ckѕZYOڟev䎩nx{[@Yu7S4zcxY7~4ϠQNwu}PA57`X']3,Sx)/b.մTTٓC U )TneZ3rs3=nl:D֝u2D7u@"{Vp,būَ[;n<纯n)Mknc%[fz_~rE\WU#չ,[(m̻trA8oatׅHˍޫIm^y,U@EshgIK<ɯ\i(徘P>*3sVʃľf3.͙l&fCI*= b. ;UujU.+^|8{n'x } |ة9=!7taߓ褄f?cof^}_gs_%-h_o+bzxp-3&tORG.7nDggBҝjս%EE{zKV}V`fWA*N6yT;8{Ѥ!zv+LG_m9E:wYOayJ|>tVn|y\0pI۠4cr !^![ iD?*)t-3ph]mv;k/]qgvjƗ5EEx;sݓgNC| gŏ j uroNު<\P[2řۺv[ݺ 즗IHCCf Eߣuϸu@76'^b.b^Q;SK2A~eĹ>>Dtg5{ߓmQ[ ɋSذ}g빴{5kFܖתB){pO~RvOEVM34{$59:l54׵t=Az3nxvK {U "b_)ocs6$o͝{_S{r0v eo^U@+4fD5>>4t ' g4׶TmѺ6}l)诳cR6`Ikoѡ1~ li]+hȩxn+AG{kSw%-N}JE.-?0k7dz]k`j !~Xܰ(g@e%oZ"~;o)W խSg=ڼfIn8WSXh2=nLF7xgi6jd_7Иj .\jW6Hn+iP1FC]灶Mz@1~oP.`СՉ'A>ckӻdv-\^C#ǒInXs׭#K1 ^]Ɣ]-l)-h^35)=hvC+}K-4i8<)ck[.NK ysWw]1n7^}(7~eMkxz G(Hʍ?t}F]k t}k8~2￳Hc/}=i0Fk=`O |3*mwѵ cDOvn\m>k:ߙ9O0E neGݭ=C#kSsiɫ->w®Vc'XnwWЃ[˱F\Яw qZЛO?3kGoذȎm-3gg-mKpMqUk_H"*E(z6M{1w4&-NziVhJ'H6<^]TwEhK58gǴm2ٓO֒wE!9 }4 $O0Sb B/[I:?cv?Et dB5׭{hɮ~G d[Wj>2S}7q=ߕ]пџ5k:36,>Tt~YYG^kzQ 7^ VԴ{ɮꮶwV_ S:t ޠ7$I]euqѦ +k#AhW{KW%;8{>^VKja{+\XQ ;ߨSC`C?:ze gQM[,% 흿_Y֖|Dmk[5(8Բ{6XnIs 7t7vPϾ݅eܜKW1$n?~|>{˘6Y]UP:Wo~p}DEMq?{߮K<0k>+ϝެ?v C}[BgnY/N(o6vowދҶ~ޝ8i^͖8z)E}nCAÒehwzEȩ< Llo_`[[w{coɶƲKW[]L˚T?sYbCE"C$~8mp }XUvWcOエfL_!{mR^%7&K'g?;YzЉK~dKm]Uml2~[oooۚ9msNίڿ7z*qlhoyTF}\{Vw^WyZC5`7V2;0'i5^Fp*1Z Q{$o1}rgPgQlR=n{gOniuvbW<._5z-} ?QsvgѬ{vsxCG5rڦ{P5Az[_ު]:6z,S7*a1N#0X{i@oD͊Q(b/<vIiGR q׮a卅e-qNxZ5ZC"1!8'ZȡLSZDᏛ]_DؤkBs_y>zo%h=nq >?UQ>څڤȲ͋y W>C \Ы*?TN7kAzxg\F&-/qzr 89imN̽)N> bPХC&~~Oolj3KTq+bz::y~7h)-M!w~߾}-$CGh6zeĪHfc\>o,Ί"} ---ɀ%%. B**--d?%u@vn} 5t}˴PB o/YʉƸ#%n/dV,tBOqĢ~iq]>J ZcnN[I/x{ouƁ{s,v9(ɤR[Tv:maaO>L'/"δwCޠj իjּҚVIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/neck-tilt-stretch-1.png0000644000175100001710000004130214221624107026333 0ustar00gdm00000000000000PNG  IHDR2PLTEy~Abդ07HH]GV:+cҤ[_]"$"=zUBKҮot131oU{}{Y?B>͛ԑbLEwc|a/Oݒj;1!#ե紒/߸crrhF8ް"BSS*,*SNMđޠخWF639?if`_֒s&"!  _p xonNPN8Ǒw10Q>4^ ܖq +(1”610ũQ䱇ZFE]C4视ePEKqr+ޒlYpYL!C.#מjX1J|V:1v[]W˝msN<ͽ"1D.!>@=wȫ=76lnk͢698jowutͺ?Ɇg¿MFFĿE@l9cge`<(EHFܮqlW_A2/+*ųiluytvsiR6)[Ehz_Ќm\PnUWU[Ne'&(%L<>Áb ŶÛhM1nI6Է̚*&%a^OgMPу~w]UVͤܭg78L3) yi pHYs  ~tIME6)y IDATx \5/NӚI 86UU17%[gz 46FAD14ⵔۭ.u!NHDbl9XQpBX⬹)Ų!N5D7um}Hbsw^cT_VT.7EoD칄o˥@sõ^Gڛ>|\5,0L g8蟿Zygf!.p٣p|> bsf劆- ע);QXOilk^%YC,XQQarڝ,pL&& |v/qbg~ ٜmA΃3!? j}Ś,o12|>0sey pB^k+UG7n 8 9 kL(Lz8/Po (xӕx]t~f?#<ġh6 sz'Ywq9l4zw` ;qi";6 )s!wSJE$`vT8 3yA yN4i<.Gv- Ňns޿PFN]wmv!&̚}v?dlNv MĖ 3N/v|TiKr?¬5^OGT N'F4,Eg0Aiv.;C4{&,wy/˰:gANSqH^nϠ̀g~ӵ74 q\gFp^Q\\a Drf1!F:2f/lqg~Ѭ"|)u{2{V&e fX6<[_ YrBRnU:A\0gLp? Cfﴳ cO0FpP2dCJ\| '|3xr;B X{@')Ps0G0RW/3^7, d8MAAGF847`%)C &lcЩJ0]DߢX Ks[d<. 0Wl)$?Yiw8wW:ShP$*J̬Rƃ6B:Hs'AŇ:%Aքy+55-Bxmn0|raX3^I%7 ;t>pnn2AF%-)XNb!)M 8F8K>Cxф|*8:W0)cIyr76u6칒pFV6q`!` B|c9q,|Wg8O>_G},„9:R{I΂m{&^"Ӽ3A q x5_ &^2cAl0N𱒾ivǒ ɫCQ./s!|e'o\&>( ^;ntD< `{IdЇl_=$ 9K3}AE}y:F @>TO6؏w6˅ *VidM!o?_5j( cA\*慡M"v|p`IjvRlؙxH_Vy$*vn6/] }}Pxy(ă&HtN/s^'͍k*7"!!⡻wcq{f ᮄua>S89*Ɇ2nY"& o|n> ).MCCl&~4u^>lCZJ= (h܉!axB&0بd&;y˭v%CXC\aꊤpr"9N7Af*h:D̜%9H ].+rDTm,l­b?y9C{<!˂7 sPfBv㌱^u8E$K'cn{v̋I[.(q{^0Jc00@!tRnXS7_A&ïR \rE_; `0cT6h7,>(Rh,h,~KmD>܇(Ǐq KuX]Ȯ=<xiyapiw>'KیXT3v?~3X齢DtQ?N;x֛&`͂|)+P_^\oPʄ%0Wnˠ+6)ffSM8Aq}8||xowˢcVO" V IkBcR.L^5q`E9&Nq785{85V;Ze-[ά{ev \f.i_^ #\'xH`pfN6NqkDֶL:evaq ԄXk`AF_{xH`t2u>'SU8Y\tA5r.ha[n jV>&Pً!;0qǫ&!GF:\9d7e1e"GbxڔLpm kl,r?wˏhґnYt| َF EFǷ:w4ie <A}JKtP^m^#F2;6p u".l` 䇬7}sXt;[(:-&p8]İK&HkjM Yg79zǩM1y-R:GG CA+7 Z,d0990 "g]!1d v2a'CoDI>ܯ5ua3fwP8q^vQ/8UKdSgXU>;|b61h쥥 { vH"=Ծ- A Cy*~yR٘MB9bdgn.,lmE >J|ǎ-og(;淶+t8#tWSDf7C,fB'r7;]xGzRl݀> E_5s&d;Hjpu'F)G)v7F0CEvwux0 *|~?n&nqk>̬ D_/NqCns'K-‚;iW?YڎdgcC.߼#ػdK+^ZCɗ?xpP8a{|`0--QYpYc!S#%?(۝E/](q\.i WL`~3dx :K󎑑xCzYzWW۟,bxu;mí%%;t2 u(FlgL\ ~#z$^w7: ҥ/~_|v)[pڢ2R wr'=\bѯsb0d&d-fGyuun]?~Y_J~V36Ts!N:PT`Lϡ5cȞ'\-?Z.Ka~DD;Wwg.\|4v=ދ+߱aП"4}v`q ֩an "NxbS/%޷} \|@F O-^nHW?)~^xmA j-i`F<͞ v8^ WO}sǏ 6^XZX-.6DD7^5>5qx *NTtxyt}kgꊾ{ͧvsa|-\ys+=!Gx=vMa\(B1q,j&5! }U~o:{?Tac$RYOC(;qIw٣E͋3?z O^Ï.SeyyC-t<::DzgXW>CO}3g}F'UXݎac$1DuNw{a Y0>Ga ~z Ë v_u5\1;ݫ/G'7DЗ9$J $yJUcÆ- UzS?Z#OxgpлJ Kr#EۜK~bzÜ3D;ÜIfLmO g/VПw7Jt~elDeye~:;ڹP gvXN|94o(o#/v'N!;}'N@Y 9ƕ2C,!>616*grjv9=6)!zG~~]W#dpI~hni$32xZO晙槈ݗK8 [-g>?-''荣%" D?,`ؐ)li3HٹcSh ?Cd򚚻_hi9shrG$W$:Pa!uzO;p>' ?Gd Q~oAAl+a]vAC&GOV~? out`2#waQ[`7,l-1/ w9}c'7Q\ ?tW;ºG*"[PtҴN>d蓠#;{!]\ m7+.ޱc]_wƶQ~]~5v5zhPh-~_DsCˢd' .^O2?cZԢ x `D5V?nAdnpa wRY ]pmlᓢ; ϩN:**f0z~t>:p([(}|>`_^s̞ܷ9̀۲ nA@wlߎ^>mGյQ饅#%Tf!['^ų8}^Nri4h$~@oBo6"%(ÅGP~EgXw+;\im0x<5McolI9y}II^Uoy N:֭sKskIKCx2 G5晧6lذ1mX̕Ι.\r~+e!'#r‘}A}y9顿z]!<"ȭlvV|>}xff}hv|WpGЂk +kL͸fNC?QG\õ0x$9Acf֮Dss AzrdtRN`{gX<>M`N|{ 4qUdЫQ^\~7] {FIz_HNҵ/XPj44:դ5@J.?,gN}{$ E+|砒O GF0ƍ2vb0؋7/y}G:'qNy)6hrJA zk.O )Ug|'{ 3{e (bGye( [''7>=%y G3^y33N3~=y }|5%EvP{LbH~`~ $//?,AY={-fk 5!Ӹ<껇5x(k\2B{9$4AbwƻvtUk.?7h%::GD?A. n#1e\ x4?>gfs[\>Mÿyo|>wVҵ+ Q3 Rֱ{^f%TLсm0M6!ƹ;oo޽OGz7u=j[_D1_3g1.ϭBLDBCvbvoh6VO?s_\6/|"1t|=|\!w(TGV#=g|ڟ%CG˿D5/.7~neAvG߶XrJLPo=}jKΟBJQIIDAT)eY%1٣ߕ]֗VmvMM ~DZ#dQUK/|gj]@G/ v=3;ozrlzFC>O# 7w{ > Lִ/lѿ_]r̴Ӝ^}7/C|A?K=S)z'b߿PP;OTOUStHeZM~򳅛'֮SK?+Y=U.=[}8 cGŏw;zju!1}"Ҷx 1blЋ(:6[vp?Vo>w(~ӦW/ܿIxP^^JLLaa} g8:tru]z$`=dBP _G1;}2/Y Y8L7!: VOm[PU:Xz6cܛ*}GC0Ȝ=Z@"|@i˖.=(ϯ^M{ 1Xbl+2fOkZ@<wN}1z# JKXծľgQVTHX'i__jc&]Blh|( W  >ЗK]VHd&ybJX[)XLeyRC<},s'(6q8mL!܀S.=1H{tTzWRfd[<\~0 _`K= #._A/Ega0į@^,]z+ِf/ftO*]J#~xV"+}2ˊh~e/#i|jtteإ;UO ܒHXDi)]ݡ>K==/}tBȁzvQfd IdoUNעR;;.o|A_YeO˧F))DOOSH Ccdr;hf_V[(+w u=fM=!#~j4ҧ3A<1 KS.vAhVeS{|+ Ђ1 ^!'XxT*<ڑ6 B_9&S:A"ض:qXȬZ%J>Amb ¨SczV4:zCڍpq)WL::Q:FCF)> žӥB_+,#^:{"¾K]ڪr+#GJE4^%`t{HP;Y㢯8ޭoj"&k)ycZ1dEx xτ8%frv;եT{ &:ڻ^;EVOLJhcɷe@.ՀUTCd_<}۷>:dr&nkPX}{*wz\Rҥf 7=aT4#gɮ0S=9ʀEq[>VpϒM٣˭ ;(T]ؙL~ ~=2HySa{*'Gou9yurM@({]"zB3m8T0 }aHNM>E>WRzړ;rg%\ؐ֊; =yF޳k_"ȹc;; p _{ѭz0pH?jOQ˄_ /O?v '-z6*]2rizƅ}t;]$p/ {t.WgM^Q{4z|5mt:z+V\$5sLx'jώzk{d#Վ$˧b>:Qz^vU]CQ-0.:a5g27IJP'^CPogd>ѽ8zXO I^sfJ^EyAƚ+rJj=Jx=_y25[)I/|Y^|E6Wb)O겖fFUߢ~߬s;)wjXVrkJ}}4ytѣwq"{'>N}-8 O/ lK<)!ߴpg5:mug'S= Jι{zw0+%}_=#Wzfr]J^H}G `e2rTj=> ka^5*. g d%C_I.A1/@tE?E}ܲmg6wzxuqvDj軫:ii |xۅMė}m>V=YB6ZWtE<>㖝Dzf4KCR7.<>dn^*MNehgB'F_\<ul& `rrtu~mcW@Wѧh'Mw(_sI-ݦdC=/࣏ϛzc i#Wq<=&'D_*/._\*&(*}q˭CHl#z'oW,ZW?g6ųI;v%E/Cp-_읝5d9w#>y6.)?HlL敽vήT~ՇQr6]=lVF]T %Gǎ&m =9#q1Jo/v ,rޗyj+U SƮHnpt,yLM&[P&ZtLacJS?Ay9$W_tW(^8@=k*JNl^t<<wQ#Ƀ ]wܶ'Nɔ?]Pon^gYgG?d_ o X.&`' 3IRv7{ FI.X3Z|)!FϾvVTU ↺hԷۻhjS21,IN`C`/,,ݙuO--CnΝzڵ*\ND f=;W\Bμz6&RT;A?SKaʎ}8Л#*Qm9sq<ɢ:Ʋe`=׫3@˙oq 5] |$'>+JNE.egv~LǾ~/^oזqjEe^EUg%rȩn-l|~q:!;Len%?'fvjkjU|}b|h KF!)գPzY(_b%f)] ?# S[~mĽ Rl_H.>;~ZZhJvRF|_K ?8+_Xf"}S ʺHLHhK }"St{3X PrcZ6a^D>uܛ|b~Zݧy)3'dv&D"Ox j"-9:]l_Z:A^ĽVZjnw] t ]TlD=kZ:;Bg#>evE ^x[5qZsnE+Z^֑;يbP95%{' 3O%$ P*ҫ%u{W2f'o$Z7isMj\{x&} 2A>`t?]h@v.-?zъӎz߬=7oޢEAzf`jzB}|89N|fz*咻Ue\ﹽ{eQI'C'B֥к::9$C8_%BbŏNoݩjγJ;D|h s"V/c,[`4`7$h 6ػԛmM&Yp QX(ИVZ)*c~p5ȢuWNJ|lho,NCjMD{2`JNI$_G{f+--7g=^~}gV_4xn'%{SW{oLiǗvI.::,~m}.\-VRz[k@l.ӒV˱Ț3S֤Ŀ4QG)DxLnD[`݋Vv q4S9NqA}^qW_nN^+ .kCC>ģ#1z--4/dJ6ҫr{6#|lu)ڤ'tu$ёޓe2k0D 5(v}EΪI=WvqANАb=kʢ-ZzyfwU699ػb/$!_o„m'y>UlAFv^Ml֪l2'^7ܗWu͚XrF3SUYA}ɓdIYޓ #<AQzE--${NflqOKh99 ɚHt!Ǔ{RϾL}uYÃÊ_ uţ[[")cwI܄nb(Uo#rQ`mdQ_^NWiHEܲLȭ)[S!Q<ғgFL\^K抒!}GT8WeMnw}#ZOjvh2|pRBR!UD'1V@Ehمʨa jaVVR*= d%Ê% JVXc9g*r4c|h{E4ޭ/Mң M֠!K"<QT’ץ+E eDdf@%iX)7.,{w;ѠtH/3Sh'C7KJOrMEZrltx݃" ߍd{xl0QUDd(b":*SoBP/)J>Ƹr۵YODEv~RzD]cۮt=B"z9B,MTt Yq'iqŏܟZe4@Xn{VKnއ܆ #n{=t=&IpDՙ4 '1Wr5RNT%DXPT 62r{ki Aԏk~t~84N(KUqu]NV!ᤋ`}5Ǿ~ZT;a##%/F? %Vr.B)7]O6j4F{;S{$ >X:a"?2ZC|q 0zU Qo#4}tm͇EN'J < =[q2T gV. vȩuҙ"5us#7LYmmߙTu*šOܙ=k@m%H o# [ޅcTr  :Mn„txԋ`=gzJk!=5w%sW5O'DGz\o"w$./S.K)]s::R\AUqiL]"DPQDh,`mBSE(5NFCNI ͢8$Ѕ'Nv zfhy#Z' '*}IJV@!ݞ8d~[t";8o jEkQSP=˲_Z;KA<6-sOLLN{"tޥ͚zE b,M1=H @.zt#ʡS_yrugvUu를TDr{ף;c5ݝ HJ{ s;isƆ::z剹GiEeLKص*Tz5I}<}sO` ^b$t5"ۖem+ 1~l-d*+vY_NF =mt,Q#tDծe˲'hz>%,ֱkgWmmֿ%FYdGV+L \N}漢[omVݻ좚Tftf(=msLʘq9t\XLv>d[_TvE/+þUR'kRcd1wO3@|v8J n#*Np+(ϼ#}}_UD|Qݾݚ N{rX4:|v@k 'k~"E>8[<gd.먳~a$}89;lr8{H>K wvX_>%n,G](˶M5t7*i6g~[а{QFt.zzt]X$M-_?<:0QW39:{f`Ttfdӧ9}oyk ` Gƥ`y}SY=P +H^z6#h'ݚɚ#I9^ab,6ٗ9wg-%߮W7fq :o\%i.2IENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/Makefile.in0000644000000000000000000004760414221624202025270 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2003, 2008 Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises/common/share ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(exercisesdir)" "$(DESTDIR)$(xmldir)" DATA = $(exercises_DATA) $(xml_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = exercises.xml exercisesdir = $(pkgdatadir)/exercises exercises_DATA = $(wildcard $(srcdir)/*.png) xmldir = $(exercisesdir) xml_in_files = exercises.xml.in xml_DATA = $(xml_in_files:.xml.in=.xml) EXTRA_DIST = ${exercises_DATA} $(xml_in_files) $(xml_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/common/share/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/common/share/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-exercisesDATA: $(exercises_DATA) @$(NORMAL_INSTALL) @list='$(exercises_DATA)'; test -n "$(exercisesdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(exercisesdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(exercisesdir)" || 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)$(exercisesdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(exercisesdir)" || exit $$?; \ done uninstall-exercisesDATA: @$(NORMAL_UNINSTALL) @list='$(exercises_DATA)'; test -n "$(exercisesdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(exercisesdir)'; $(am__uninstall_files_from_dir) install-xmlDATA: $(xml_DATA) @$(NORMAL_INSTALL) @list='$(xml_DATA)'; test -n "$(xmldir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(xmldir)'"; \ $(MKDIR_P) "$(DESTDIR)$(xmldir)" || 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)$(xmldir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(xmldir)" || exit $$?; \ done uninstall-xmlDATA: @$(NORMAL_UNINSTALL) @list='$(xml_DATA)'; test -n "$(xmldir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(xmldir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(exercisesdir)" "$(DESTDIR)$(xmldir)"; 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: 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-exercisesDATA install-xmlDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-exercisesDATA uninstall-xmlDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am \ install-exercisesDATA install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ install-xmlDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am uninstall-exercisesDATA \ uninstall-xmlDATA .PRECIOUS: Makefile @INTLTOOL_XML_RULE@ # 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: workrave-1.10.50/frontend/plugin/exercises/common/share/monitor-border-3.png0000644000175100001710000002400214221624107025731 0ustar00gdm00000000000000PNG  IHDR2PLTE6ID6oA>@?(əu&-N?HZʘ"%'N>EJ; .Eߩ Z^`Lz)H4gw8=5_^Vefcor574 r847Ai:?b8L*-.33Fz|y8όF%$}gFx6`%ͨ/oF}~3KQ_ߌfԗ7nkŶbB&]LX6x(y\..IP%q K'$njIйrZZXϕDKX@w.t ز9E2) Ҫ k zAgB#s=BL5l&<ߐ.= jGc %ʑU cRuڵkڵ`UJq8Jȏ*."V>ңJ,YNlҴr4"2ꩂ G ~ S.gRnH*3* ERMJ%]E=Ұ5Ҷ5Phf|=_̀Ѝ3LMwlcc).eߙ"7,OMQQFdTX+\:G=ylfs\=X/Mje_ُǃJ[6r}Tz܈eo͚?Yu Ν/zcnmoS"﬩ QۑykgavU[V(W.=lSA(@<_ӟ=q`͒  "(# ڳ*p|zgKV߽կ|sߞqP:ޚ>뙛;N^: &GEPeFv.9sGVW;:kbЫ覌~}ʚ^37cnTu*`:V:禍sn7zԿ>/z.=|VE'pir4=G̙窦ݚi^a@ 1yP q{iՏUqz~nzdu5OByV 8&c&Ӝc闀:n:(Omanεjfצկr{Mʧ[m%-ll6@O~G.#h}eh蕐>yJnC*=ѣ@Kl-=4m[oӿ劊*f*^yWQqQ"zG=5EJ[KKYe.|VL 0эJAw\8 Uz+㥈hkߍwx^. +VeN&:CA&,e?L"bzɇÌs',A狃~ [ t._}fU?Xѻ.>QHD;]>WG攣D?މcn)> =_\x?\{3W>}&$!]iW Y I@8\tM\Vs7Pr Lr=,#=gRFo`8䕡]oHofQQQcSe=zC9&/-jo·+>b}7]߰y(/B,V~'ߠ}[Y~Go;$::YZ(r/K|m2~TlTnG8SEH{I[c(.?ՆxDߟpykR3"336I:+L0!n3Ս]f/j$+';\x܂{+vz!E%PzPw?sb]VZ}^u O%|KnlA З05]?vqnl@ZhyD }⸗8͛Z6ѫc?c}GBU#Z7bF/g(JE5I5iYUN^߭1p.4aʚ23>SE2I'shdCIk"UL!t@ɇ[6jo렿 p OVl>!*6zcиp/l%&&zI㢗S01Fߛ\2V">Q4oDKqoY:וL-`5!t旑{`̇x)yVVV~~o>IԴF'9ueћO_9 jnXFB,&1Njjc:9ud+KmY$!sѿ"z1z_AHMX` >VgqQ*U QU.?FȚXRQ؍6X@@ 6d|=])$4$ i"t7]ae3h}㶄AAXt1Ty5jL !H(W画c&r"m4!6SJa[^n,E Џ1|rfX30|]Ƈנ c/ QP!5y%O~fHuclv@d˦ B,NDԣ &%ч~FK3/ tVf2V-K> zun*f' 7fue rX"_v+DwЭb>u2pӰ6j X;MĨ>02*FtFSL "QC`/o!&<,t8%,tp9G`qZ3لfۯXާvblP*MN 8R$Q"}Dzsam.g`p~ĵ8A&bP(=׵\mG7bmr|K },fg ɱ>' --~~nL8mPRCW}w Ff& t(4巉 :؏ $BWe*|OK|O]?UHuDO'G‹4, 7A}9 ~^ewhЉrmتcc Hf7qJ̦:1r >y `dmp7A:t%OdV@L;d7OlGsEn.fLy<|nxo#ӭ] $d!>Gtݲd}پ,U5OM>ԇƷM|L&O0þN.knア5LxmxT0ͯ+++ˮ;cI=I*B5c?.k)dНgzse9d1ɸ k..zB 2&&抷޲gjτmvdQ]V aGZ;?qCztF z^0[|yϙ3{Mgt`XGzєZSfccSm,i._f#tÝI?EoN}^z-{]^YScCSm,2 .֚TWc&nO=͝l]s`L:y}5)у#4Gk˸imQ6 #a۬%+:uh>98QwG_B7;;qpo~܆ǽ,ttQk+.W&:T"+c x'+DkCA/:ΓLss^ _ar+X Ny|}($&?S5 zΨVK˿8vr}6$YbJ~]ZeokSٽ&vWvwA.=㵵qm:OQ,MPf`<J#L%I1װ"ѵL}t{?OiO-[gڙ_Ը?O /'daF/‚|p-T9YFk,ٰZ^iC=;ot~߰iKrп_uuF-2R"+㬗wd% QG=B#!gS_iu.p>z5ܞDO">w+7+K,Z_bfO$./A). ~Ch@krI@2`-G߹Pu 8`nW˯S| ZHwGFWKXUƲb}HIt9{z rh@~W\O_UUUprC 2 +/vϒ6Iŵ O :Wd{[)7ש_z9=q/XCyHx YU8z* jۅ]"QW SC>P N$<_ypBTVL.]GL􋅞Ј&/QAG.֑yHh.# # $4G8GV_O\ݬdEi7Ǐ+Y_FmGqBP IP~ܲ~Ŏн)t.+ jK1}$-8ﺛasB?˺e'QOdɟ>t_xqrTэat宏 qm98s7<_MH雏="{.=>b&Z𩼼y+˫\dh=+*^X):pռ_]dhqvj-XB  E-=Įrߌ[yBS(ba}rht刖xH&:>&=I|"EIѰ[paW`>|'R0wFK/Ϸ.#r`O=tADŽzF뱯z^^)M4MG,:>~0-dJp{{OyyZR=Bu NxevURSOIό&HI=Lt,МFۧPC 9DGly$  =B#⍫Wb(;:TGJ#t&'ᨫj5+qr_BJ {ʑ"aw0*Gz8Iu@qxdfCz̓BqE#S/z4 F߭=r5]㊤ s c+P%atfȁ[w1y ˍ~?"9` +7W1ok7QGĕ'|_t)nzhr:5!(*#njJ<%UYǮ^՚Mf؊_`wP0J!atސ#^ 9Z$ޠo+ UBy>L5|?"y;t8N/7G#h50(ըpL}⌆7~H3qZR'PhU&k? (.zW1#B Ơ^c򙩕MuSKx7Li<+Š7&#^tr4!1kA}\G>ztPTᅣ?#l񺁑(4=`(^MBq>ҘyCNhpC48'8|."U,vJGqE#{v`q<+ySN*ǟW(S}2PԔFp3<&pD܄E 96"_fdt]'5p5$YJOOiR@{` x`> FPM"QGi鯻 MCJz.;DS i 4wk`J/e åV  m0$:̞΢Ca OX9.(܂CMBths(j`)]:tp *D^SUq]bC3ׅ;_' ).*U]=xDooWהBA2C^:́91+ia MT!]!  3h/x` ^dNG u<;r^=DthpaQIcF EZ_ӹaGIDAThBxu|h0SJ,p a.B?:D߹Z7HWjZ;Na+#!@3pYd (PH?%EBj7u|ʍ`|.dzXXXAg#C{zr'hgd7G|_.222@9 7)sY^-(F]}Hap21GN5 hC@'Z}ׯ6K.…  nkb]DE]iq%F$|D瑫|_P F>cvzJ UU 0}یO،/6 fT VJoVҀڌVk BUIOjKoVF׿fgg<Jݟ\FCGKbKSGi 8 OR>tpt͸/a(vE`cӎ2=1d\/ n.#X'eІ)!IS!ך#YiR/H  ՚5R-yt)[\)b@b/1"6,D+К'(L0R"tY)/0/}Yc*m &@R/6G ؆K&mj}[q۞V,Du!lyYIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/fist-roll-2.png0000644000175100001710000017423714221624107024721 0ustar00gdm00000000000000PNG  IHDRj IDATx̽i$u&GDfg}$"%)G̴͈6?ve;k3ccwlmvLu %QEHqA$ gw/tW]WVfF?Ȭ>Ѝ3#/w?%ft!ݽ{El4FRJ)" ""`%d౗RB DD7 DL l^jMHDD5&*٥3G,,b~szaC7n-5&fffb`fbJ e•꼧yko9~{cR6,˔RQ.)*u]Ox-Sf@ Fdf@ȌllF&'Q 2"!5dr蚱aM5Du@@ HL ֥Q;:[CxbbdvKt\!SB ɂYpK,%( |Kn~7%\hY~!Y\H[>ZիW7f#KSpn_s ąpJ?1A!/` f,P00 ~~QX%:йʁ^ K t.ddfQ4, A1|f0WDTڵ"𳟻_Wnv<ݠm^<[S??\&'M/օKx3ZdA[j1>c-&d( D`$FdHvY!JHG;DHDLP{{e 4 4/j\X@] F7RJfb&mp'cN *^tYDELOzs\11l6Y$0ՇI7AWUC7.( 5pm3 "#F|H +. DX %B R d`$Qo3UV GF vp'AwB16%?K_ڍEI__̼xԞ/ɺ+fJ օ8UID2uoLp| @M5"Q @aD$fZJш#)Y뱮ވ R!dD TфFx S#- =K!X*ӿK7~PpA @?ccFTb/1+\7o7BsdЍU,b(7IxW*!J ≹ZBa`XiK5#X# C,ЅuewQ著FЮWȈݽI H NKa m.j@"c#ſmsم}˧ C_ ##s5J)uER*!"o#~B$I0MAJ \%eYZ+@w# (;qc CFwr%"vQV5< -P)Q xPRx Xi~կuY% W\bB _mr8WإljN"a4m%V 2NJ))T %(YI(TĢ,|dYn(%Q`dDq;vw XR OB:ͻ"M#A鏁`8Ԃ+;2[W;Q;N3kO>u'>]q_jNК_o_100 yc /!w<,ґ4_j22)I@)0RABR֐$EY(( vCfa$ 23#bݥPm!M!@P JnW Z9%D1'^*pGFf"$$n a/":\#6Z̐6A^7m&q(~H Bwxkjm #gt#LoF҉nh4e^uv`ڡi=]$?B("Iy 4Wh`oUMJZ')A/Z!PIA,bdbAPJBFbB&,܅h(ô%Ox۟X&~z ̙,Ե֤Md$imnMDǛfrBPY=':y n- 粤Sj gY+)|Ǻ aw_|!xg;Hr `La|Ga\ `"(KU>Dͅ72Fس{ bݺvOH!R>ܞʁ4Ecgb5䩝n1..]Ж샳Ȕݕ(7ũ' w0 x >/d%9[QRI(w| ̙da̬qw> k)6ƈNqPOk4A PƊ]Hީ"ZzV^5v.L_J)c5*XJ)gktI06&Dobif'n'rZn,߇ú2,8 (R{'Onf|?.!rViwhUsnʛ dbDZ:IJP((R9%#BB Y0!YpdPbuPquz+H4O(/?UvŪUjد'{Z|5ÔZ 0g KL:"OG={4`;zdLFJ?oT#xr*+Z\=kM!xsuMUJ)( !mMzwd$;f@!tnLbSy]|`Y |GQyeOt8=891Lļ8RwU1mbMK9@GgI#6z0@Y|NX/:G֦KGLM%́$Q*I TiLm]D&M ]} Z3mM?ZB##I&ZK!DY !ܧdoBJ{SqH@=dVC;hL-1*@I-89<,EwײK01n+kǎ<}g1ʈvÈX!v8v~jq_lhFΪ# gx!"_Nv ,P,@D7󣻯_O;M[l&dp6 ~Mߩ{_*rNVBh|ȑͷzt{K 'OT#ˌ?U2XST#c̖j`fL,|omyZ̊~vd cUUMT/&5w$s8?cU]v1MU/ZV)ZhE7l.C3󾧟,X|;z-aw%tZO>&i82QcNe=TyxsidRWF,$3}?r +tgtahU&-}f1c"&Yd4BT\BEZŎ"2o?j};j3K^1/u"S+o8gpW!ةf]·TlF-ĢUEoVw:! sA/nR!×C.1RMl,+VPǙU |:V5{S+(W7Qh'oٱN4oKKfSS}^ƈe<ֽqq~VjE1[c'LwwE:%RK itSvY5_`\$;$=}0y&as#@9T ތ1 R>9lr?W=jZ\Z'Ntm w.jgݱXk/͞T'NW<0aaBEx5#{HSxif}u<&WLm^T u e$)[PH\u,tT{u:"a9΢e@Gޕq2U Q[:iSo)UGPn//_wB߇{=rYajuXIņk'iz_,:BN1R@+5 Dǜ HnW?ĢȐ$nl}](+UOL,6ĺ^'S!ZUgnzeeRXcgS#)T-̪ "?V;)b/>#XJ{(G3q>DdXTM}'zIt&LrXWż;QYY*VˍKssoÇC*I5O碲2ZoctpCfb'݇͘LRQ4:;;(ڱf9u<:* 2=̡ bXPzb-=r}!rpwJЗfz*zK :?lIK:cj)p@)PI̎C+ckqt t 2GgBl]16$*5D%vbvX^0>RD,,M1֥  xPY5^iu ˘yEtK4I}[=BXc,(<*8hbM?tFVæFH:0a([KUwlyH+m)Utgp3W TՅ. C6J7Vy//ykI /P&I"E5V@ԡ3:n=ճUF +X5sKX^>x`9L V`!X6D$Nnn KS%څrG^)idfk5QYEQeQ%5D @0Dʴf( w!ϝnIspvQ}[5nnNg쭸3or&U:QB7ơl6#bM(:>/*@Gdߣߌ:~DRs 21e bڿ OC&fwMu-(%DLDhG|aus{Et)p/(T٣=XGO8slD2hTH)B8Dc@:YeT!.pSX۳X1*'f * MuWWqeP !@6 1ׁn޷^v‚ƪs\P~l>y`_Eywݼ(NN,?UX௿;?333f֞c{kj*˲8XьZ/m}n-{YLew=.GnQy+W^=~%*vha_FoGUU@wi5Ls4`\j=[:tn7ϋg !(Dp=8or=4\\՚+3,wL#MCcY(fa%0ԟ+5Sb=/}0[Y!!*XeeleG5y+>*虝 Nh׺v(fgg;NF&0cqg#SF6^n96v:` # IDATݻRX|4m7=;u׋ub8Bspw<^%VG"z,/EqkU0R.mm6%%tDFW_(s&uQKKNjf MSz'6U0rZKoSb]Skr,5(@^p#{N ;QnpuI`yRI>}Fy*V\l{>e']ƸEK7Y*2nKN3 fR)A 0햷)IcٝϜ$ ҃ ӊ]L ,iWM峪Dk1dqEr6kA *5axY|W}IY~6#5bsba` Ὦ}YѼvvݞ+̆"aS3$`&~'f7؈|K wM*_&ODEƊ|Hh@^B$_h|,95|psR혿VsJaOv_>ߢ YJҴ"Te J)0QkBsPTFDD}Z˞B`zç)MPuu?OSor^z l2~A*v&Woj}8 ė[|! Pn:^-o}-`s!<vt9 ron[&dfAD lf"D5MO H˻bTmOWlO:$_ak3[h _{S``-/џјLv.4ºO,HeYj"}= h)&/J xQn0r/H~FJ8/x@ A?ְ]uC<!>vO\x>e *ѵӂ S+_㸰+P6FWlP'y[*ka Bfbn-R%]NmC-]9 y̓aj @z;eŻsc@NVd^_/{+ƀU>X<~.A9ܪV/NwwoGu?$w[)5ʆuƈбC+5ýC!])p}4 uYp4SČcq'ٲυt%Mm`/2/5˴.feS-MD䲕SoD%6ȱUw^30 `0jĦrd%n6o\@:"5 Q 7BB D{)1`H#!]Yaײ{.4`P߁~Hr^"*g7qt·°A{ez\b5=~II:tꥅw{2ZʿutBDDB{ʐo2ijXɪv&$XZW\ 89np=&ka`d r²;Q}_96ӪCˈm+<6Ӗ;s@r/t*'}\e͝e[O|7j5bVI0,;{#+􌰗 sTcnAlI ؘc{iJ جur9< t%GZңme/JЪdLg^]5:m\ævÏ;`,~[6)ںf.K1<2񆟟]6z^m vk Bt@DEVAK*%f*5 %dIsՓ8Ѐ 9GD'ξ-kK]d`oX1#R 2\?i\&~37,>L=ص%3Z Pm +kOWXC|-H0컵%udn%7UffH,ֶ Jy2>㖈- v$#B&s;zh^v)RH):zT"GӨ[g~fݎo oӕ3iIJeBbأR1j^"P(%Ce xkR7*;G֔#pkG;n up?pG(:V׼WRGthwKR&ITRbkxx8q@izfXe'~Hkw -CVnI l|&E(\ЛeBHpmp3&s=N>sն63ԃ{Iݼw*3*.À{K{ 4Ju%qGBJTngfukc[}}Tx(~\[Kҗ"Y3k$!oE*Zv\ [ !"(IV֜Z^އ$%{MThEej~-9&*WA5AU^ʢ3Q ̞Vo5Y%?~uכs+p3gkťw@@s!#߉l +D~W.<10eYDw8sA|[AWY-*s,e) > {z{BٙZs7VKKٳXcekF'Ʈ{>/OTwWccfs-IH/ÑapWUQ I$ʞ(xa_]wI>% o\=Ǽ[* y\3=᝞%n^LPBD)LU8qHe",cڗ H{_?8u hۭ{Tٚ5 ȝ ve~@wO㮱sI!HJ"5)C0HDL*%B$uz.Z[LebF4d@/* 1q8#h5fYzloqTEZo=sЁ#fy@cȷ]VΈttTXA Hh @=65FQťy/[?ٞ}M$f` t|ڦRk]j"RD̥TI.DY9LB!DDJTGģo 馾vi34 [?8lbƖcu4}z(,FGGQ 3\qj{*d#ߍ@Th<@ڭjIYf>ܺr5#o;t|li:=JR(u,yy–7mzth #fvm륗 l= e\@!"yg<̵.BH! 6H)Ah6m6m Yu@㦨Yɾ;b#r7U@r(l}۷'OȲlUW]n~|| r/*e6bi:=Q,M,Ӥg;e;7>oj1ĥnZ/qͶu+y-Dg+out%DŽatt&)ѬI@}?߂ԥ.&3ʺE/-ׯ_oDfYj)sʒYELO>~' )c|Sweظ1߿_ D; .Γ.Fvp_ꫥB))n5i@. *~A o5G䐩c*cL[,h/<—婩#Bn?{vv۶mV^vwꫯ;v^f<믿jZV5ܹ֯kwݽrJ!$vp:s@Q1T"GZK̲ kk SwdJ㸹dKm絈MFQ>p b[]ko֭&Ê>c|{5f&2\*H]$昆˲9-jw@~uث^XAtkbfeٳggfN9s?ϝ93s]wu|رf{{wu皵kׯ_ 7\{x#G/ggg˲B,NOO߷ѩ񱕫VYv%w@o1e_#{TqpdD(EaAeo`5@`/>576viK-Čg5hRKIlnlI.qF˓֚@Ll--Աc[X!ORj"5bfċ%2߱F_,}G鱱1>'j4}_6}}ѻnbV\s1<~vq522|񙙙[o?fsƎ;5\T$ɦ6;vl˖͟'~m۾m];w|;vl?}޽{jtaV2ywݥn99ҘjdJJL}TJI&RL[j77Tj:V|%q-} ón2p?D;VҚvKGOqǏou<6ob÷~w59^I>@!^|EwܩJ"ױx¦F29>HTDJi \'c;@` ̌%QI57|E5n\wFtll]vvFւ DktŲ(<tnޭB)M@j 헸VfFj;~7߼?5͛7ONNܹ+#æYk btگUV6Ik^wa'SC& )lRHe;Ig[_E4ΜKPB4ii(DeIHT#QDp~IcR#2֞=JK}RC:>cʮn{{W~O̞- !*Vn9\:9K+t1|'yǏ/..m6 [L̫0hQd+\ZZjKK\Em+uGTR2I4IB }"AsJkR%EYjfI(WbF6o,Z!#v#ǿ6*Ȳ*D`sϟ=~|`˖nDvO ˆb/ˈfO[V$+VL7lգ`x+-h<\~ou;]f}͟J5!9,YARIi$bz~)9-&5MT$4ejI3M?/es)XČIsO )O9/ nZE >\=,-,lع}P1sF)+*b!B4NVnWMNࡃ훛OdUWڰqc$R*[1(k_7{_o82?|n.W_}Ghȇ?aDBz4-Ux9T54mGg[&'4oX`BPRYɋ,)i-u^nir %<ka#f7'7v@\,ͩ|azjjΝ[?lftN>*o/.,گ5kΝaY]˗fBTu ; Hny(EHTf?WdFcx΅^B7p+MǨv8erkv7o>gˢ(URe$\1&!?ɞ={N3G/??2ӣ>:??lܰN< 4f\s7k_Zݳͯ7;Y96.JU2|YyQzq{p-4G<'w25R4M{O͙)R޶R$Qi44KTTTT,QN"/8oٵ41^1`;mvM.?7eK1/6\@s2@%?=ux-c/n]b33N;}h4<_mܐ$vgč@qӝ8qxr*胄S]5I$IδgJ w~OXY &Reii#MD%̔l$ux/ݦa|BR+tϮx&n5UƵBHYk3gj4v{zRAm۶;OO__{ifl-rɋb7ʄ.Uk7, \ť%f a*Źr$FN9q'=VzsR3%$Iqzag*8 3I# ,QRS/|beI5#;wοr"n&vyobkwj3uKSGnZC+˂\=7Y*R/|(/| 鯾uƵJ$-r֫WL <6է2qZI˲xgG>D%5wLlZLu:Ņȧ=Hq} 6իDJy܍WIfws7/&JIFvyWR*3R%|;w'}Α8gƧƊg51 @0i63n !i5]\3o筷㭣GeUX k%vTq׮];v8|B{ȩ'9C>837 y?]96v֬of F̝yqk/7ts?'u ɕ+W8qgΜjUR"|\`Dۘy7o--%uXRgWOBl R,RkRSATjxzztի6o@]Ʉ2Hp)(Ke]_U;!$L3e{#M@D%*QJ*\|-;(zzl<5a}~ۚ5kv5_JӔ[_Da+'L8z}}'OٲK}λ-RE-G8!  m޼SJ ǎ暫4[U;3'&ҚC,nv:Uܰr$21vKU;$3(830NIM\h]h*mwse4s/H̘4ex ~W`~p)%5îܸsgijU;K wc=Vƍ]{?O=O|;3sgݟpmرumX᪫6%f j+";`ݱ1H)&M,7޸[wױz~`.j0yR%*3oQ(%4mdi#Knd"EflDW_[0u=3q];;geԃr.S菼wƁ]D{}7'MFGM իU5GG?߸qC5_OM>%w^wrrrw؞$)@ԡ_:, 1n߾{ջK~j1DYe^\k㔌8p K!DIldYJ%#*)g/OW6]g⥹&lΏ!`~LNWy~mfceYX8,{@,!8x׷m߾nݺVmݺupp`ݺ0<<<11-rbh6?nˎo|Oh/nA@|X/<_jpPܦq1Vz Z?`Ж]f"HI#M4IcRţ.jI5+õ/xeW0#*J}-eh+*PAz_^uDw=lq$D|ldnkV`=s|+O=&}bӧOϼW]i 5yqر9rdieȇrxmt (Ngݲ̋(ӊw`Ī񑱹9o9V|.tY466D|M=oݹnb58zxBkq~!)u'"3acSȋn7knQek5n% ".&JiT)[IiM3W gR66щ5jL2/㣻U(кҥ 3/?˧N/䙙Rm7m͋B oqjkŋtm(<ϻ<~M׿S_EMXof09D챣=Azߺ4z҆]ʃ?lAh@Yg/RQ7RTIYgyu7 ιKfUUhI $UI4GcItx<13 y [bz~dQHA h+zyޛT;DwUw-=;sxEE.f2̙W.]Oɣǁ`nzµ~Jʏ{S04D:Z=6;Tν [xу3s险.p༟Dpƥo6꺮c ӝ78okHg HR*LgZk%Yd^|'7!3ZxsMP=7ƺ鲶ׅ%^_-zu֨kg:LɿҗYfK_{{:F1:/.xI-;J is&NG-lV) |䃊mqx_y㋓1&l16uUUUY~' ;s_B)%`y;!4+x-V?_g<9z2Um)W^\zm7n^)#lbwLI-e&~++wz'"p >b ǎn̙39ʋ+z߼~'v:16mp l|:pP #X[^lIDc=Ns\` W'?{{Cu:8G)q4 D@Zk2/3%3)+ξհڷk2wO~  ϚJG 8Ouq !ETi%Kzs6;WVv PPxfb 13c`ey~̙w}g`gZ?Nuruk) {ft\^g'"ŋS:D4ʪv9]?tjѮ|`r<7sUY ?~{/ObFy)J:D㕼ēo)~,>3'_Nz. nPVqWۣ=|)k3gZʿz;xaj|(uV1 ʊ\J". zHϼwsK.X荆^H2:郇N..vj}ߘ?\6jcM.QNpE/BW·7IGW_T@R<|tFVzl2[}_DemJ %ARn}_nD|gw.)֛3/|/;h"o wRЮî]ejuܸ, 2~}Y^.vvuS:7`0緧v?[ cN:Y%D!'aȹ BdJig$33ٸsO ګ/W.W_^-@B#s.ν{F\.l[+QN()Rx *N}PKw ڏ(Ty@U ` |Nws枓0wn$F2a(Xh0 V XֵkK~ÝC!Χ8~?W vs&6{VWN_zcek}~iEQߓPMԋHDD[[gΜ ++7zٹnwJqb=9=Lh8p}g$tU,4g P@:Y]*2 KEG˵ꋃk_BܺXr `fK`# G'H'dZJ%u3x0sXǖ@(wsLH/կ~vG+)u5`}kcmO<}l?<'v0<~yiI*?̳+z|s ͍{{~ =gVjUYW8{ByxFfVJI-3_sXZ}康q嫟s%A '?@B~32%x.; D9%P QhUN]9}wq.3湩jVq{dI'D;/3r{Edj ^X|yk׮ ?,/4'`Q1ASJ!Č5  >]W>ϞomĎ M< J,w)Q2Sƹ|uҗ?` D)AI  B Bֆ(ĩ2 BC($xgܩS{s3:kc|x#h43vvk?|omu"e˗oβLH9 nXpٳg\ٟE~-w{PmZk1p3׽ٿJckkc9 }jNYIb}{X?tm\+4 D%Oi%YHͻ#7/]?>r ȉ6B|bYG@J"3ǯȭ(P")σyj !$"}59vʕý=77u /=6T"g3x-wCOfffK?pTSdR>GWߺv?ܜY矿qO'~(r1UK/^z}{>N'OW|){諰G3cc1UUmoooooz?Oʯ܉bWgaq'?=K Y JB8D|Ay^l^go\Gy$/ )_8KO~mo>j< o䦴[i ݘz8nozÇ<-_>'_l綕B+ͬy"RZIk IDATMvgw_JtgaS)AKTbsNQ]dxO%] GYq!cKZ.)^Bz2!C8EuJIds]ؠ@_Vհg-..?z幹9 ;t2mmm:疗?O[C/{^~~MB+aH >GU+񌒙?l.21Πи!Lu@) (P@ u=8Dv d!OVM23w&b==!9NsHdyU+Yճg,}/+8߃; jΪm"C#0^*δ@;pwWCرc˽^u2'h\x<q ?/wڮM+ӵ1Z<Z)k r&#FO xF\NJA{vOO!I{0*+B Ok̵ϗVSt*ydS x& Q4#R@=1=3Udžo\̲!`S`E3K'+0584 Ī~39Gu܄RiW7U]We9׮]vʲbҏeT='a)ʍ-*RJ*)u: "[ـn2ZP 2&ʿ*CƂsѺVʅ'"BVB+e+6d >4!3a(b!G3N) x5F|rj>Ѕ oFv#y`zS*mv'v)¤:!z uىo_ ɓFTHu]Ve < "v7B ب? 9O~eVu]UupJ{BIi |R<Y] @}009@8ld``Y]bЏ5[{ը}8XL?ch=,vH60:,5m#""wV@ԉgYX>H7YP'2; ['2;3aTӇ>h묝$YҏH]UYǣeZ]LqܳVo^9~kzR`ekO.Ib@ 1|" !%đJ)֑RDX_Y}3gQgrϣ4]?ԝ $";}VW$RD!:w\2佷ֱNTUUYUUVu]u]UeUUe9FYs0;3sW_}eiiI r3p… ͋gͰy_\$JAu+OU]׵8ܕBH*)ydW2r}C3Čq/lY@)Q ( .`y!I͈ҭgOkÈh"ʚw} NQ23#;|юkU]㲬JS\UeYFcjOd1 İ8O?sԩS y˼ %-əKgͰuG zʀfXt`B륙-3jSVu[T04`,$x|YgEV[ q#DJbK1B@<%$T)BBK !@ `;Ȟ3P֦)USvo PiN*lm𗗵ZG|^|1s^NS;ƞZ^Deg7O3x& Rvg|$}eY`0bQCJ̺}> sLO<+27wΏeݓٺt֌g^稶`,q07DBOd,* *tS|')}XCyx2d-~)}j+!C`Z n P#? /(cQLSNYE>!xNY;DO-ƌ͍ n;y|(&i-D>C=t=ztnnnss+ Y͊nFrfr(7d%9lnp"8j XE:-AX_ٲ48}))91ʧ 7AO=T"TdTuisW 'DhK(<D"26* t:h (%(J䌊l޼P]סoiuAO`'G$mn>i^ y;Wo(| ͹EtD;">eğ:gzcǎ][7ԍ+/=0~|>n]|~7> th\@ %F Ǹ(#O`,!y@a󬕩ژ"WZ DC=gTgD&[)E ;Dd\!r! ( ˆyPp[9pZ!@k/0~֭g&,,XW@yۃ ֻ|} !qD0]Apin.IOg֥6DEz:-Ggg89vΞ9}z<d^Ξ{YbP<}.:2kCkUyx-V*Cل'o?tO<.B$jn1х:;]@&W yJp"T5YۘL\5' JRVGݾR RW|dwkaaq4ܼt6?5!sǝj 49p,w\NS{ׯ__mm|IXs# @ZY].Dm$jM]L(F@&:[´2SUuS:`jzڑ#GfffVW׮_f@ PMhzù ߆ ~ tS`)ƭ/---/A3_7 BD&ʎ4OMӮ |Çδ34wc7a#+VJƴJ(t:R - “'8FeX6=1bQ x(01#^n0LTu]y4v =Ix^̴͔̕LYďΗR oc*})~Gf6k6~} ncm;}PHՑ'?(&# G8!eExС[n]|֭byȉ'^|ee8d`2x73wk8fۢިV\L()sB D,~vb\X'& '{nmh`^)d- R`L4x\!JLr[\jSյFi&xv |m-{VedԸ{4r%A 2h_3X>%, -7?$GOW^J1p -'GMٳwD3뫫F(2Yo4~^:|w{x>ŋ[[Dtuk-XDr{ͶsW -!Ә 0ElxvO"CHByC3 A$ !Pr, İE::P]jCe i QB8ɬvS[)ō:A2Q)"&qzXTu=.<0 2t#`cc3Uyݞ?8Iǽ^o}m?`iD@kgff3f>޸ڿF9ݒSi<*(I>8s.ḍ$ .h AywG\hPίԆl_`(7(NLei=9<ڭV+s]fJ.ZzˈwEXH@Bi0 VPAsP !QIGUe:Qȫ]qctD#5';&SSRO`BP-*錼 [~ko?ڿhȎ_me:ia %;lYIJ . '{8qOYіn01",?mWνo{Zt@=뵩,S~)C0ԦI$u agMk+ )K15 nZ$R2X NeE!!?ϣ IDATS< S"xL 5h!"ix qY=89*ʔTRJG(eB ]E`͵յ5ypр$D@e*Js9J;"-vz!ԑvZ(3 S_͒Ei gkwm9| r!)2] =Gѫ\m7δPkkkxKsÇ^:x`~xk|慯kB`.@0H<+e0)0ӌ:1u[=ϾE.B֔!ܙP`-X82 XS24F`lM8Ѹ /@x--d (P"j _')zkPf<+2aց=5 B(%,ct+77LNZHm3TA5$2+%G7ґ>h;+vʣ1$nf,cTaB;qr\Jg i2ǛWFrwtT+**@! ރq殟zzv3sWRJf'fYꎗaA Dc@}JZrv:tI`(@HC=1;F?O` x· g2Wvr8K{f)\#爘l o>E)E~K:0BEϳ< ˠ7]PSr4SqtFh2Ӻ*fS7Z]īK4{۴$}-hd `>h{Zp7gxdvW%x2◎>y4@y[ș눣dl^Z+;(=B|Zr% #C)5;J5%f*[;>Y;Hȅs!2]DQ+2ufrU2wB7$T[T\+gfa|[DLq[/lVT`e).U\w'=uI-@aKkj~vwݓ}wЍq)`".wD| Ij@M2Yyè y7>0Zc["RXcGɀVQPDO![1bJqĄ OBҩ)igEԚ qJ`btw cnMpFg!] @y: rdJ#eRc3("êLK!M͠B BDc :szk7]+T+A@i y;f9Ňmv⡲=gPB|' D )6`^*xG0֥3^/< Ƒ14,9A|*^T*&"E^iZ 2 ~@uqh& FEZ8N.NCc0hCiN!F$CQ:K+dߥ| @ Ks#t)wgXtUxJI@R8獵y!#w/*ںثklݷV G!Mf MڹXgP@"k ‡2W^{N=l^:v71Y ;8: |V|A 5untp?p $n!5:(@ hUQ sGW:r|tչP\GVj:@#')`YfhyٗW^֫n셸t\V('b3Y]Sd))t뙊SLa'A",3200|BDȱތ La-{B >j1c= yHE'#-D461E^> ͚QG;%! e4l=RJ,9][צa!e.=1v<[&1<@I!À%\y߹yWcobӸ0)?t1,&X7u@ Ǟ7ASXdr*y@y8۱8rgjQ C@I5x3d|"E~ffP)ȵ`;a-~i}u>hdx2 >7F8~OS\D)a0yс:$O*I(me- pPGT@>9v ^Dx.XM 9;He\d Yf˜61bVC)E'#@SQs6Bw|\B;ߚ@ \fgbfAlE5q+1 (PADH $Ukt+?~F" ߯h arL_w[yQ` Mx ؀#?ӤLsH"k_["d]P@Kq  ^BU{ȖF 1JH-dʺI˷RbK!VƧL5J1R&}bl.Hs/ЋpD_-1@m k3痊*~ ɝ5`, XU#laH,Xmma 0y;xIler=m߿$^&͋aDɽc0#)";49"$rl;}K""!6>xKdfyk.\d %>i6ET;=XC r-st穓GN]o\vyL UT<`1*J =Dԍuzfm,4 36i!Dߊ`x *,f:@R֘$C`3:? "̑d+!v|!<+PQ@1yuE20rJXGH 06t _&D\d-+>K*IME Yb'=j q 8&C%yN*ޑw<-S@H̤J(+<>~wV8Z KݥfZS3[[WhEx "6O^b`b;[:n,,{xkC!LaJUl,4Q*3'B ܨք8u28ڸ"VI!"he5r0BD e<]Xj 9\X/HHT$"LDP(R=kc~( EJFY$͒9"O,H_1֦&O"D͹m9;1N@$L1u~c0~½kq+D/doF7<}~}J&2 =NkLn" {Tvԥ5TFA"H68=IԴ H)\L'LfDc"*y&Dt;A v JîXD&EE"[u 9r^LvysP88u9xNiUg(owU|wsw^ '#ݧvw }#ʹk7;&U>=}eɳ=v웽`3+1]ڤ(MlnGلx "H ۴[H "0:$dT"bl_S D"B LLM+P+d 9灝BD"ZjD+ɚ/(!hHt)8Ά낪C1~ qnфw'Pȣ莡>G&j>=Yh7\o\ZJ+Tc,Zsz̛[3pƙOm^zmկBEJ6yԻr?::?C !QQD=| 6l$ j!LmP̯Z9(.z!NIg(txC=Su\jU7?ڭg|x_ Dc.C)?Xr/|~alM샳@jLu4'"}?;Ҋk"(FeV΃m3pe4۱AٖH.{z^J>A@R``q2zʝa$ TmV*,Q"k̦+y l#LflrE^fΣhCTY>Ø!gd-rT%*N2XrCN˼RY4v~ہyKsg''}.N//} ˦wܒo0lv~RKrɫxK.F\.I0#Q}pab&7*CZE&^U#)`-u?ª\ \;M/̀3bE1BBNKĜS~@p͓m T%aB4w,`L'&ֽ朇a7_g˶||>K'oݼڦht8Ɖ"v^MrRY'fT0I ]?pW sΚ8\C.M 7 H PXw"$G t`]zP)LrO3) cq01w. Z|| M^^2-(r L "] __%ɏSH7 A:M]c dꜫn~/Nfd){v=&p~19[Ǡ agfǧ"_7rÇbѪ'Oκ&|1u/Ihrnh0FTT4IIPyI~X6IXJLAEoJ(|lv$Li"'DkJ:V"!jfH~9uY{JtӠiX?C> ==+ě[N8+{%`,0 pP?T"~}}I;o5O`~Bcmend * MDrkP̄"4jf7cOK_fû8{w׾.ŷo_{E ^=ѳ'];}r+N/~;͗Vs ɮK*ExDȻmu@VLz j¦K9)O =&GYfX|ӟ-`F7?lͪf(L4DB>ů+/K9L-"]|<@"0L3j3 %&SP]+BGH~\Z-Oot{ʣ IDATxZ*-ʕãU ~/}n^݇I׵w?魓ãw]!=H#.PYW)c3T!2?69s #@!_mb`ߝJ%]K&ܻJew<_2㒃IDnA/6!OSG.ByUT;^$&H:?uXe$Cݹnhf:qު&shQQJئ+=81DU:p)}xt`@~vT*g2N1 LTXmwCJ)EkMk;q䋷/R뷾ѧG7K;}o<~Uª'{?}ƕ{Ew/^]VRraVGoynyhNPkr7e^$gY0sE`"!6EJre%4t#xO)oGo!xlh-6QgD.@dLZr-pem_b@t*ˆw}%D@E3BqFp7̜3\U^̐9ƃE}:yVnF`?p6MGEE3v vx1#rvVcpw[779<r~|sN_{n^B?~`uw[/oÿR뭓gl MMT:?_x$ǁM|}K~d _ h1)$Kz^6".$!4r7q@OCa۠ 1d;Bk20"q`EE%mfOTk0VM3"8\Ʃ54, ZFwʻ@ v/K°s? "kw<:[<{KW.="zŶk~^z7zxؤ5'{O?~sy'_r3F~qwŴuh, q~\t+4ݓ+"4y T>0JߧvZ=Ш:!>V5Ym)fMr@MBd]ii+ă<&bb|aLRaDնT9F\.tUη'"1?~S'Y"|5 {# &Ts׾\9\"v{S@&c^o퐷n8:woyںkOMsW+]_2 >I~+ow&,{h{hB/ήWN%MNT%5.PoӳHFD:wO.6S^5/ *Lx'cjBF I,DH+?uREHJC 3T3AeQeK T&>_E_X:]py+!C8N[~NJ'W'$ j/VW xFg)# JelRQO/'Џb}h0w7>ӟ~V@_.R@2mv71OR1M]hb8ZuoϺf$e! k$x"R8gQ$;DD? of.RRjQvfz9E(Vl)ڱo}1"&";6Pʶp'C~ &μ+Aʯc# Ҧ1M9pUϘ3q)CfE,@Nh婴] "00+[%%5 bYK 9޸I# &(u7~4{7o޻wg~K?}r?«]|>ҝ>\׻Vk7a,i3ˬ*0\&6Q!JеLmP`0r?u>`'5do $?MD,ܡ}We"FM#m+ )b3mNٟE; ȺIU|y[ϔ :}y6u,˄RJ# \Vbӏ>|᝻?|oz>Z-ϞW߽J)TiǾuBn\+!)ljӏ~̱ZK=Xv3 T.$tL|㽼Enμ+nK`.gzc5Qj1褏~:4U3(B2^ p S"}N>zf1-aje9 Ro:rU wf!`Uȫ13WQ3Y|Y%7D0=[dx4W* >;\;]wK<{sN1ܗz`59Md)p crY3!e~xѧ|l5"DY*IL.+_7 CV gL_e̚wv֦} f{S(R3"q.D i`; lfg.EJ~q`X2/0d\@PԳ*_.yμkJ.^}´RM^0Qz)ɍf4fvKP+WQžRaȓ"r~`D։ O>zx~գo?{w/];Xw2f釧'kMb@gݐ^KyY K ffad2͟/kE6.{[*$Eh-&8cvȋ6ޭTH&u֙SDয@dI2%єNkصJ#rmU-{8g*}Pl Mjh1fwPt2 &yf8ZY\mj̫{kIjJ_޵ 2F1;*bjKH+FеWB.N@xF2˃Ar%Xև&so{[C#[,زz  (c:jEn"`;rǼo fc ɶ tDK=^-ad10n=yMm\f7O|eu\D[LؖcҐgLg eAj,̚ML뫰_R&mϷoDЕv &ӜG)Ҵ!3\ЗYM (2 b$k١%1rp8ԡt\%MeoJA]3 {W lM!64eyiWKΫxJwpȠ.I!_ >+6;"D:-'ɥmyx.>__;8ݫ׎r.}.~9Ő/|='O)H6;RH""=]kr&8(#(, |h5kٜVܞr!F뫪qNjk.j;%Hu8C=MK jn 1RgJɼGU4IlO,m&Y_.5`ɗ7ʊwq;+,EVPEi  *kUR²tyYњ:0ӇJ8b1 vE-*kύ#@XH mxЏm tbgGE \/Ï?{ 8FLѸ_n6`3_E?@ k5tJll6kp1xBxm6HTQ^G!-#¬5K0W0*as-YHxzf2W!`d%ߧ`j``Tdf vFeH-$! Al}Q4ӐvvڤЌsFQ#*[ dy^eziTdZbٲY+&сUDV` Z s:@Iq|_M_Wnm2DI Zy71P B@3s j 2ڵ("BLi2ӑV̼UZv1; n6 AL c)Vz5N8UΕ0;ٸr4gUwkT(mH;k*R" l R9nɴ-cU[.c5acmZ,[Rzc'hE;uQhٰ=Z;KcL%4WnKHRjkG"MS6 -3v|ZY@  3';XMu9~U(0]  ͜uɺ _)<]r 2$La VLMys)ʺ1WDAӿo N!L#v'TTx7H^5KCy bI0#A8nc[KYZ6\P~j?d[tZ6ں->`3 u1L͓|zhWg ]Z3BDQc%|ZyTUVzL'83+ut6WxI, JUi~3֬@cbɢM85M˸>?:9&$Lqf1/ۄ*s]02ODƈFΔ {2O *g¯ %K:jI08s/{Bd \Xv O2aJ4%*V$|İe6~lR[ 8N NRݍ) o*CZwR-)fJ>$lv4CP%^vC5~""U2pf_5 VL hUjH(rĽ6QͫMeKmg0wq;(f-(EdB jSYyJ%@k܏j|xO?HIR-,D Dd̿ MbG rn%LtF^ސ(bd_C^lP> MZ:71  Ry7Uxf9Q+3 )B(X 0d [2@"e7tҤ|w3Ă0@cM,z}<ϕQ> "HGnZmN4#N@OPYHލcaT"Q)@7 ެ'Qg1سo*Ԍ@D3D5kSeKRU]0K#( #hCpSZQvNk,7_b` RV#DD@ߕs280Vb; ?&pl\R/G/Y OnI V- p m$Y汈6>4h͸Z FmU*1많6h:>ˈqa2R/$'yۋO(uwl7"0i޵VVl s"6A+L=!aMz]6#U6CQL 6r V\U 23n I}|2Ӏ[Yuv-!"!R)6ewޥ@M ~&,;ZEH֝6+H`q77" D.pO]gQ EE& j`l%{91|Ak5 ݐk3v fG$})xX^N@Oշ Czt/;' z{H&qrue9]P^`2[ҞĹ -? nwl0V-^B`j# eFIt +ƔBL1MZͨ!XRZ =\ 7oS "+ĹH6;)]rI+< )w#m+QmlL 3ɪPv;.b{,v4_#26ٶh( @A'U=`0/€F'W1vK(L|Y^2baˌ2d%5V@DȈmScssͥ,V.5~㑨/vf'kl&H40}`ҮRLo|EтHe\BkaPk%U=. S#xE U2Eܶ@6*BtUA[FR+;Ӫ}y׺r0ӎ! Y1iy:Lgf&slrZJ`C`$<άhk"ڔ5{&]^i8!`DY'2KmTF{ɾ }=0$Pm}ȟ[܏'%2Dei;l Vz"adG#a1=8S1:f 7W!UG/Y\.%kBBOVS8Jl`<Z$¸hIhQt̒@Pu"PAӈEHR8+ RC DDBLK53 bM|.}.p+*P>-=FHjY w&QԈ,E$rV ģXl"aD-G[!Ҝ'֚ Bf5B@7)vMc13|HM?7ܼR^6Ep*=UV E\u;$Yw̖ R8Q"xh(Du9s8QKZ %PdW񸯷ʊ垈vM r!%ydX̖WM5ݵ~0N-PX{4dҵjlXFT)u!s6ٙ|6i:մh|9!Q'Yry>JBMBߺ#AŔ~9되HP$q@ž՟e7"IHKW\o|U q9I8QhS]+VIGrѪ{zIR_|a3rl</bG{|^-NWGrg>yW̾d0uhT7Nv`Z5j!@'7 zL a(.S0)UjF?RJ#\<4$Tm :ۼAf~a)?xg:>YNr]vSX C(fXYjU`$ mS. a7FD ]T2F#׭-,\o1I_X*-0ZwC+s+eĐBbI1TPm}/Mפer"Gۯ(Hjr)rosVRn;Ytm,DhЂjꬥ:߳Hp?3#v-Ȕb)e'D߀75`a":d(GRacݲi' 3U+jt,|'0F8JY/R/'ey49[U:2BE~ 0GHLW4`쁵fRl?"a !Ɣb .T2XbrbB jU η*s=?‘;Ohm0W#}#).g?K6yFի^L.+,g*-}&Qk_3̩ƬY 0i ^ED*:;U խq'rU&VU%JhFJTm`fPmϦ3~2h!@T%Hia YCjJ;Yb?Ȁqֲ&%RTgaa\*'jkۉB NP'SP !(K:K{v5g]==/oN:1 ʁ 0F4~FUa(ت-^S˸~Kv -M$ܙiyd$h]jf@{,*Ց soy Ag}9^.TKGyd&ZËC<;5f:(ȹm5~?*H'i,,bPlDh$Xe\8nzMEљȈqsի |ʪ9_6)@HM(T)Pԁ )\j.PB]4iф3D_l]'k(%"o)h:Xe;m1bvsN304ɟVhvq66NB#U(H6}ywi Z*[h"GASUJa%%Y\ -Og[m*Xi7]&+C͜ #vs|qUKs\1qM2N&#"`0fAF6'QO.ؚ D>9\6-/M'0m͋̆R \JNr%ǽ=Xc.lGAEP45L>}GhwzC:$кףc{ƀ/Z^D0!ݼE*^ˀ .4xa4TGfHQZМm<KuY>- tz Qd)0]ѬfEb'\FmJ{ae^4gXOwA_YmgvtiJ0lXhGYh- 1 a*U5651RI$8fStMRRjIkH/E{ފr$&6klre-se[ڪaK+̓zOO<DXmF6X?P_P6ѥrߌwDfɰKNO@5Q1HSJ* ;@p<9sJEҳٴ1qjI|Z`J)<EW+Sj6xw3}&0J Jm;<" ` JIS}ye qy̌j,ؤ(־QDSWv6Ȕzk M\JNJJ.`61 ٦,:>Qvg3#iUڏVl$H E_)6uz#Z!hP8`–R+f5Š nW]ꐫhD`S)]yHB!@I $XW^lt}'ToFz 1Izvo!; 喌;RmMoOG u4gg$ԲjA>w| g=ŐR$$Z b+L@C2{\lE6>ȫe\-%l%4d;%bZSyʚWBE+=(l۬x1ajl:^yIϖ",$L=_M/۞O~\XbCnK.)c*!0 wJ ̌д4b`6_be@SGMn^>+"z+A\BU [1Y+qn7˳G2ݍe5m1i"QLMm[BeH10xaZJje뭐􏞗 #H7azIr]zTn"v y6J=vJڲߪ1oDTYk 4yZJۈ|=5e 6c2@U U 9u޲_qa 6 6{ :Z/edX6IbV.O5HZ0Wb )2RRu,B㕬ݼHڎZ=z`>׬< d jhfoQ)8>QTINmxQKfC #XVMDRU;-g]@Y&0f`|Vt*"5oi*OlĶ) ĀuHGG\kPLw v*o5KX3Z.uj@064=lT +;Ij&U^B 9DiJ9v1¢E4&ʗm,az#9Dd`g|NhKxpiEmȳ4oO$:hG7V]v~Xܹw?ƜRQ8G׶+73 ?om˃Ǘr)MAڴDz fmISc \8JZ8NJ#@Hq&iu)b)_J )ނQ}֠R yԈ3"YB`2@Es2itj@2ՊgB\N2"tYg zikeeIa&xխ_d\ӛYh:Ο@e=I<(N5ڌCm SR+׾ӐPؽ8;Y y$~>:[Z.9|c~_2˶!®IMma<1MjB$TJ@nÁ()zKaj$fb"@ o:a".b$m".;Bs m 9 ՞P!:j\ƶ2gGem$dū06Fwә)p59Ÿ ~cE،aM`%^KY. O-j66mC>Sn3r("4D٣6O}Us <^/ttpp7 ߇m 2;>9RM?~Wm BO?x~~̑<9}xOZrq/R]noJb[FS126eRl- %%r%,}ٔ 3f$SQek+г6į;֨0F5I/AmNd{u!bqqURʑAU{`ū\QFvUV~1@l*%^o''8.Iz*N)FDQG+JH0SMhp h;h\Mj8<;?㓷>]y̛~ ~o|?2@r ׮g?ʍfb=XtrZ*)-Vm?:-BBUeE E]]+[iVcYNcL6(P<S(&!hlb\Ukn2wHi/*^+ j3GZeܦ&c==]m [ )` vRLK 5ͦf+c*MW\lq4WMzXzxRK)mr?=_HTj~:~϶{lqk-\95MD<_|xE*Xt;DV\`הR9 B8m8W"FB3'0~[ӽ, ufjM,!vc13Jaߥ-3 B΄TfffT"V6hFƪF@řB_+ojku~ ѿˌd1!S=,&:vG Z ToFFkH36EHG{M~j/yP*wt?z 3?{/޺ 71{r~gO~& 굓8o<:ᅬ',z:3V_FwYũd`]/A'D`.lыjFMGĀ0FXɇJ\ֱ&d(E/հod\ʬ-]3CC a:Q=e6/PU$zL4 FX|ꧏ?o5}eFBǿ ֕R+W~;}WKB{?/ѝ[G !^.+FӠJ_ x6.@TE1 d""A;p)\g^ ,@CG@_:İ)};&^z1dBK pXϺSѲ^9EU{тճ{6!>E>d=gFf>,{iP&~|wŮaDĥBl]l.j kbp0 葛l<Aeh׶[<]q#Qfd|,lRElFPd$(LY8$Ժ'l]'&$OIw;3yi,iT> #D^v>s:emFS~n_-꧃ |DMvK)%/v6m4t]}B=X1.'1@a߹s%kzルWw˟?΢M_?]/_9ѧ6;E 0pQ#aC!EkǞ f%358 vx^k"L7gy̌^SW:‰E16WGv ȟ@Lf@@Oatݫ}e0 *`PRxV+SSw} J`03q-ce;H, QҶPe&[e qlJD(U^bG{PrNbٵM B!syh2>؜o6+ݘ³O_ᣏ8|On\zӇ7Rb74p^zxl&Mdl6u-0\\'z9gK|lRΪOfWr)礙ErJة-À7U:uY6tns}BTSj;cNIU3b&LRb2d# U Bk_Uk˲@Ś֤&yKn'2kk>]́1r= %E;'4O6&9#e#FD$`3zFe:*PQL,~aDl_{CODcf.|e!FH$`Fd]Qe%gCByr A@@m]Ns&ZuM$l'E; cפkW>,-BN޽/r{v|}菾wx?b}Tkp];Xs!0n{Y \ ݢH_:՝Mew">^ԡKogP&r壠 z[_VrHŷ|j@!NiKܺ ,$ai֍)*1fQ+fUnhm#]lgPpً ЙuV/ڬ;'%坌I`r1p &.Jyr֭kvإxt˼|v}s.{xgE/.֛'ǫb;O//wØzw/' zIDATX^ (%z&06)R=ADXuB\_@'uFvl``qr4'T1LNiN6Iӿ@H J,Jm \ C36_)Tb#zd "Dx-BIjz䌦ieFE玙l DV49Xm77Sj_~v=9oh _o,&.>}g,{>=_vthUGO|b bXۛýEc#d^4&^:XBr*CN( EP=lIө92 ="hM&x¾73 ͳ 6k<;.ghŘ9FQ[.vaZL G 5,l'RƜA5:ԑ u,7D^'t0V/lq[]CΒJ~*|'!׾n{ {{/6u)?\\r|ՃUt w>WKeDR<_r7Ӑ+HAKri` oVYO`t*03\0rzDImbhHyڱT@c =D46ج>u$NS1 _ۄ0EX=Up ^tM@-Vcf L=ӗ]ƫ/'B~>}r# C6uM??ᇷn\gG^.o<97QU#bkmvyy[hƌ{il- 7"mq_Y;aBEr|dM'X{AT723Fmv)edUG+ c}?:0ܼvoz)w^y|o߻w{[ߵ7Hu5rǵ-S,،2U!le?d8e%!Q"Ќ!QIo̽]ũSc!̝էN:wٯꧏ{?WՔetE8ld(IHx 'X6H6&-`u` 3XisG<^Fc#S16w縢urcS C~ƔFʔ7I<`Su0-&|Wx;O1o,CjdIv[KN%|iU#D0$~ NsAJ+ޓpq Rʫ_W-o<~~<~كrX_}Z^w(yt7;}{ڍJo}m~`JWiUG"aٜpGb{6KCYWCd܇Oh0Xrk9K`GUX/KݤOspMaIY2]q ucBq"50o:3ڳCEĽG*$(|D\`e6q'+. =jN11T4_Qw?Wy/o֛|Ջ/o;,kQ}?SV~W#ҺI]0GJS6 xD.sκp WeaRe3nFTUw{S+]R^/ BxlU[k(HAk*k՜ϑSw(xJy<:Hd I`]tݽw8j>lFe0"z$h`wT}zuzyvfo'o\яG}틗~{Q^{'O?mѥW_Px7R'\Y_ۀwb(z!,HS!7/i~P {Zݫ0˛ק,_(r$nr<~1PtoL,e&gSNiߣYk9^/ ۮj ƹ %T;ua 0%j.9o_~k777WϿg۳C 80Z ',| 39mE6b:}ur.ɛgflLOMbFB&Y1}#w7i0,i)YUeHȌ*{ B_|۟=}~p>.ǻ`$ZVvPDԑuQ͋ꮞz7OKt֡ yfrqN1Y+s|-rn"|@?t^iU3@BLvzD⅕`ðmirX`(?m\v`NPhmЅJ>W'@^ʽ;Si͂ \l=NKu'oݨ,9 4 |*4 2vfbH?~P8Mv>`Q#uIqw]նklGYeLk<-YYWΣEG5ԆERFvJ'r٤1ci0Ib$\V7#™SWXY+ʆK #s555yDx c]eD7J?JhTc!ZVv[#f/I msiqT%r1[@i}(zv2%89nEùAjibZBqvE0K%-|jW 4vm*K-[-̱ 3JSFK񟍪˶q7!mQN_~v ZFpcRt8xyPZ=sq#I|xi<{ʞckGm*;Ą FOۥ~+]H=#k0n{lN޴BSis&2 lβYe+UYJLvs dtj9Y",ͺ3&HnDf;`g(EX6K]vc؍3GA;f +_halL&c(VeK}vysu.ͳZ^0Q:W`xe#!ƫ:$[m9|F@2E^Ȅ@Oy.:,*i5͚Xd&e)ܮUYGql^]]D>=sv!v*т0?5) J8'}C%H=9,CZL[AE,ڎĀ`u<[44/uP崍 =YA2Ti4oypΉb0zGboqnVD:NKЭw9>T#1RsJVqv>(~{}R+=r7i1 Ⱦ h̚E*}Dd>gG0 ׇnhm4L )*,/gE,ֺN @_*5d}p(O9ͪ{et 2ݷuX[,,1VI#:hUŕ͇VR> uԒr2Ѭ$$^ēy/CP7Qqc a'<R-Us9IhEny!᱓(/ϹhLA4uc@!SyɘF&xy/8,ݏw[?(: o0ǦTcL\=:#-e)ޡڃWE58iZCt vJ,^GQB4 "ۅ"L=@!5n!quzj*KխvH"^PN5FGGyF}ozx2[,N:R$#c9?2fh"U ŰoRMg듯(/Sj,d6ƅ rhYL:<{xh9\tY]q}2'@D1<֬K6U.=+dgq7=U,O$#.X67@<$gŎQ)D\4ԹucNcu^\-<;MЎ&f%;.}7yeF"=rSY[XB.k&RNr!@^E,qjCƶ|PG9ir`B`0SZw?q;t<*WXxc_쒖f~>,3-bӺ׉wkB&#f92\ %X JotqSjqyhqR` ɤ lD,9i_8C &soͺl]En5c`MP>ӚfrF1k׿L}(fT+9"Yҝeg {(xŏv _8WՅֻp.0k4C,E{D#Oy06h `1%8c0T3elqN=n $5Q0JT p]أr@vBRth]Kt0W|iBZUvp^Mh .[ O|켿%U\N r-9߆ 9eѥ**HN\g`i& q( ̂N IENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/monitor-border-1.png0000644000175100001710000002407414221624107025740 0ustar00gdm00000000000000PNG  IHDR2PLTE6ID6oA>@?(əu&-N?HZʖN>E"%'J; .E Z^`Lz)H4gefc_^Vwor8=5 r847Ai574:?b8L33F\^[*-.8/3o7nkN_߈Fԗ7D%/oD}~#?!͵XO:6)b²z? %E]UZ׍DB:A$h9vVK+O,j{TFWduXK#F5DRifF`ï#<o=ӎM;($sR k &iۑuH9H-F(Xb[fj,5XAy4f]S:P7|aqs;ܴJAQ"eCJ[6p}ΪTN'o$2y?ojBAeeQQ{MMJc앦lߎ9cH;1)ބڪ80=TRnyJyJi}` ڇI N4}6j;HYr7+&z!8ޤ7lw}o >~ϊMoϸU;fgONisGP0dSAлSO)Oat=t^8:wj>S)NBg6uF zݘS^Ci ճ_gguGCƣjcv0[c}77MaP8{sp Xp"~*tatԧ7t>mvSb8*SJ95 ? -!tEijua0B3gs~誣PCjWZfg]ff~e_Q7¨|jE=Rƞ!WHo_y^D>7<\DO"c÷!J9=I+l->m[oӿ5jfjS^1(so{G\ǣ={G[3F3Z>dMn MLtïg⢻_>Bd)"Z]DKd;~ݦXkRAg(>Dy=]1/.zcGF2rkp^e]<|Io1»3BNhӞK5*7&1NCνBl:pmB"&eglgwpޜqԙ;5֦=-Eǡ'K]_O}{GPIYF#.H Rp H lW 2K=]1u(9&󞂝; H}[i oSgk\ugѿُ^8>N nj\l6#x#Bңwlx[a?ht 3p;3~.]A!Aw_ Ȋģ8ح~C|P؇7WW;!{Q˸Y$@BRg߽|£A]9/zefWYԻ!z==ܲ(gϲB,V.']}Y}E o+ =WudճP K0TwT h +q)_`j㠯='u$mm<nŁ@q iWEfUSM`d"U,tOzg劐ӡVW0q(fr0ػ ; ]%}^btrXeKB>ؕ"t<{~Qwƕ)^4:\,CxH"sD`1OGUY2cuHщKIOc:ǡ&=ֵ\Vam=t$y"ƱHQgxU8s#e#DUB@sI1g}7St&hGgkPk0zUQl'9ѭ ctv276A+qpҢ;X'Da;ő.2`&kCD[da~H 9# ]5BOy̍}D/{^q20Qg-I:'DuS"w73_; Ύ8> _G_A'M1 GWLN2sblY}g< ymT◕ 7g.Hh/y2I>`ԔWOGc @W:ْW HraHLНCF&*隢CDo`קޚx|zP.`#ӭ-4T)>G t}tzLw1=exяJ8C2F< +Ij5OU}2fhxy3oͣ>qSSUUU^OAR[qq-}>k3UEj܀WḏrHbC(ĠDS0RY[օ)3a.Yִ0s]}B-=ŽR@/R1cX5Kt%CWUrrx\VYU C &xCPZgۮK[ȜL2Om]DGO? :jXGyyM`2AOŌacQ ^k?Q SOFG(}:8}tw"NKFt i.綵 =B&U6B7қ}\1T'Μ9Sys+|^jo~hz>CƦe*t\:k"4э4cѱp^kgN\&φuB?;>ϸZm^Kg`-]e4OKna-7EG2?L֛`\:!u Rkt!d;1zA |ՔWЕPO@wsЍbѵ4>nvRpPIy_LV>1q 3=:y'տWOd\}mlFK!]P#?ɫ6&!G_@/~p?17(;"Í['[;!Po="3tar 4VX* ޶QR+芌е4z~lﷹzA8zc ?7uB5jpt @?]7n,Il@受 FĽ=Dơg`Jn\km~\-38+,,\YXsݺW\YWj}8+D9gF7ھܸ}{;۷n d$SxOeXRV.:[x7UZsm9FH[nA7ue,{CYC툾ZNᮏz(_G"0$!z]!{8bXv\qX`6@/0$QE즮>"Քi6ⴇͼM 0Rd|AO>my$9ӧ8t`o|W>\hf=o#=Hqrso9yoD1s~9NG ?{/73i5bi#|u6$lr8%+W޻䝕+Wgy5G%K:Ȓ#KFB#eG  @G7B#I/i*'وrpyMkk+׬lt|5N/k5+׬OLʯ㬯3Rn:Gl}Y|g هt\F6t=5 $ɀIo}2Xfpr9._~uE7$CѸƙoLdR#8r*AF?B5V.x'.**{c8Cg}u~ngiڃ~̧`^Hޖ> K(be*Vw!34  ]!W=<QS:\hre~zOAﱡM^b]>>#u%TzXz@GEt^$4G/:K^N\z_ Ú{~x7?+Yc@FgGzpBPz$r?_ٺheh:xyE9͘K>Cw|www`{#d#7Q|HBR`/mm>fXp(:|ǧ>GJǶk"LB-Own0С*B:z }~zǟ7ơ'S /o^ zRqH^פ֥A51G>b5?4Ƈ]:ei5c^Ԝ%#kppR1:3GPo[W[x'G/b5uQ1 7ՂO)|L9}q EW0Uz}ݣЩ3/9Ƌl߄MB־1|⠻ŢGU.tH_`,~{梷=>^xTNakġkaw8VV=W_-,\} tT>":>c}2_@NQҫ?O>lt.MoF%k;X@ϐ-N!9DG>FM67yEWQxEw_sƅ SN YȓydP2tR35V`DqHGt9b# 5=lp+Ҧz^;GL< &s/TP^.^ {4xWx"zC;2*"Eљ!pVb%,7!:ţsCUB>0| qC y*yC7BeC-ȓ+<̐țY Pem'jF 9Uc5+zΡH «DU!7}ʛcltJ&M-+q=aȓ*pY0:Qz5"eOCo%EO:qD\P0fjf&,o("\,1XuӦAu_=Q$JݳыGo:^\FxP[7Vo* '|Qpႉ$dD 5`fP*''gOY(Cjӣ99)u] CTFG Ib#T-Vhhy]+`0A:w'TveXJ.N !Ɓ5ɔj݊I4IaYNI]Ң!ZuBF.+߂rpa`ZiIn*ɇ"H0e k0&$J٤P0VƓ# W:C_|~ Fo.бߤY7!٢:/F:7U]7e d ()ן9ٍ&yZ:Bpk 1ON\ԬE0ci﷢Efصc*:B»lR߇׃Uü4,e-1@c,ׅ):bRJ>Mr@ώa e $В8u1hV$4st-V)LCǸ9G ;VJOBOmW Lq6f4D2=1hX!b ]5\,|=p ZW8HRLΏQ~OLZLd&|.d.X-[&G_(%AkӮXsm̜ϵ s/oD]KZК젧(L0R"tY'2@Ƽs͚PYCk0 }92h6\2 @kSsm5}ڊӗ7n`@Up5$IIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/eye-darkness.png0000644000175100001710000003744614221624107025241 0ustar00gdm00000000000000PNG  IHDR2PLTE~s4GFɻ]"%#W:+c޸zTBox~NfeX#!r[nգt2!aJ_EIFq5/t]fcF7ܭD?>  B.#{+78ጎ!v[^^]ܫ̽aذ@TSŧݘxmnkÓ硁l[L@ZH(##tN3 C13|aVMONߙs]A2v 7108&Ăc坞WOP׷}b=A?㾪̉j ՑqnSnI6f14)+|S8/VE×RS0'cMэnfvL3)iT_jhەo٭[E{naʣ|}z)-+j;-Ң򔖓ḪrWf>2' =%%һ‡l_NE0*)[rrn^Ry^dA4ffdjteNڹeH>sutĞ!EHGeଘDžfؔuʶx,,JVV465iE8QBH˩{ڴ[wH/%UWULGEŞlP <(}hQ~rskT=88iϕylWhbKGDH pHYs  ~tIME /[ IDATx\[ו&;Z-$ۑޚI`i˂G3ZxI]2x#7aQQٌ賐4%V[51tHAD 5 m;bC$,`40jAo(ꍖ [ۧxk)_W??}^㻊7_f򋟟翹/ kw ??Kf?Gw7&;k/GwgDwM] "7fd̿|[?&4՗Ơ7w<َyƩS@Ong_LRY,pkG kgÌd I㿹Z1?;krg?rr?*Ua7x>)kM&[!a0g;wE7!{%?%aiV˵nůy|^唎-_5ӓ׮?pGM#'0IOصS9Ԣ\spr12fI0$;]_)\J9r_*dj{l\T7)kcΈSt%? חԍ.蟛'㗧?]%QY٪vewL~Ddɔ䨟wkݢj]#9C۟/ 6|"cFaS>͛/]ܦ7:rQj|CrvvU3Lwjc.Vd`ec@OÙsW|sxHoMD]=/h)C_דh2ژ<džr;|Xe˔xص7WV$&Ϥ̉n}WS3I7E9U)u!؜z\.0uA}ÆͬdsիW#_:/oKSr>91fPl8޹ZHvu{=]aELIf=Vߗi '%'e=%rҭڄMcVDm^$җ=}!Ml(f]W6DЗRVR$ѩ6+҂PUxHŧ{9Ϝٮxfw%\^A6@ ³DE) 9)ʀ÷ ՝ z}s^aQUY=vm{;WJKA2‰*wJT"Kt9C:{JU*gU>k)5~):k~iWg(0I{Jzz]y(EnzQFm3fYupGlxV$yL=tQk>Y,OK;r{zzDL.5J'< "qZXZӼp3d+ؿ<km{Ƭ~Gp{bFy lYA X 6ZmzEѳysÜj*iq#&+ω:䤏#N*%o*ˣ؀/17-f@X->@5tjmC,S=ysUcrdxOByH.HVz 詺T6Eg rjn6zݮf_W;5{YS |tus@rt?eޖ?y. Be/tåUUoFiU*MGY{ ^l6ǺBN6Y?p_ړ8YO ܾʯd+C֣c.Lחf&@wv!evi3)|QUZcD\OU)X׼xi䪖߬u\б _ 3A8ճc.+C1K.rl톨Wg+cf]LvPމzJuҥK5=jzA*,7OQӛ32Oj߆ը.fU~k6\AA ױ9j̠Z(bm~%y~25 vA3Ln9Ϧw:UJOTň ,u@fyv#@p3k}Ѣp8 7D"=meYwn=t:3}_!:!mUJ:zJml1DW1TM+c.@7O|$[ ]",nfͶ_g;AfMZ~C}:OTd#ZUSc^e3K\F)u\J{ZDfKp/Bm\sU,VPo\X[si9"ةa2 Mkژen6.v"r=lԉOMH{DUǯVh!hENˢ>1$QlRf*鵕ssjyL=W\Lvn"V=`{Œ*+^YYYUVpNf4¥|G1qZ=ffbAnC*mB&1;kz-΂=*Y=)%dkK]\VYy\m6AC`02Aa1N'ЅljDFH7~IaYAʦ%f*.Xg֦Um@V7<`{}/3L2~w$r** T.N9qZeevYfQ T ~VWC.0|nhq(ƀ ŃSe%%%'֞R\!%  T_n0weg S[&Az|5!M,7}l8m$doZ%&$ČTHJ@ⱖtBq*#^泋>+h.f=bNt8-xnUy4 b>gYljpsig]f\@pt 6m?uƜN "VZ\EH#qb̀_e7C?'|ΟM?ryFQ=3hV>PX^ V0u8tVx22A*UvE>;g-7f-~{Шp$tJů2 Az/> 7vнsf`$F^Qh{=IŌI!Il.w&zܼHf>)Z3trTTEicA#'HM~"8q$tAHl6,a.Aek H ?' CFn0DwD4 #% |?xTVDK؝|_3sV؍ ]O6/$Y:u!D+`SiXMrIw4#|  *[7գ┅">Yq+_>=YFbX&U P\TD7 2dc.T#C2[\ ? xX=8fp'VPߺ2%;8 ӖYb={&Jdb@$ucveWz]E mN4jSqtle0 :K&c=& "kw.Җ@VNVa&@UT1):찼H?b$wї;ͩ0q qv>:44!q+7T7dW2Y OFymzXC\);%OiASUoT*-7*~RbIl25u~"ox D|&1iD ZIr¢9h\Q Å_;s$!C ;[v/I o/]axj qf݈dN[jc6TgQ#3$t#$KPZ :Xa_[:b {{ptʣq,zt.ZJo*/%[u *O825.ENDfuW("Zl6EKIW BbT鎩KD^XPǠE-FyzX뒳_,Qv4Z'ŽU`tp;W{Fҽހ.uI44؇ ^Rvv05xkƻ该3܈C*^$+.]|՝~,e`A8;Jw녮|wV&<;_>ø;#b+mhP-Qg~Lf1]3zKTr=&rn8wS]x3{!I;^U19/sޭ}ͬۅ8{[b* jW3 $j8] N\:3 ng:bewX/@{[BTxWe3wDG]! *kKL(:$t5p[}S ΟAԏ=A.ӀeHk5 AUj;'ݨ뤾Fk}_~|@'azݜ5Ul]ct<ԑJ"6'u<68g @|Vk_ :vc UOkl6(ϔ Zj2'8ݮfMϙR&\i{hň`Ճ%k7^z5>Jg0oYs10X BjC,hGƸH\1e*^n7Jxcw [WNA8Qu#:P)@׿qƁ~ep{~u*F[JwJ,М ֮-t!5J# WM؁ D2 D7kh*F[JUȈӷ==mb)ΕV+2ŠK6VV֖d톇R1:R-vBښ+KWVk#z'흐t߀k6g¬D4Xcb徺 ! o]Xv۬f{P)&Hx75l!XHX܂k|S@E} X[@=q:y~$&Ͼ3rk&Ks\AFw)o@OG1KWBz4vBГw]PH;L%Ct@Im< 'R0>R-ww8? ,7һiB֐vm,_+| *]tf>r :;X|!ibzt v5)+}~U`vBy"Q~gɕƎeQ-&#v5)g[c9O'e A(S {hnEs8#]AM Ik)x_ nl*s̬:(:,ө;Rig x?3M7FO|!x:|Fz@;(eK/351a7]1H4g|LTz>7/9cl_ &gpہ52Ua@;\ aIlj6"MӇhWErOtj0ޛ=KTѽtfxVWkxH}Xp{`*w `SxEn`f-'fVikkոnK` ##$MY3B`6r^ȭ1וH[rm?^OO)vi\y3#=i%\cpA-DtD7": WTIN'nȘnL codϦ*? عˇN#;fE{L!EA7vvxf!LFE<#+YHed93@ѯk?!גT;7vW1l"" 'k>ПT 9Uw< nRQ'%uq-$;j=Eqa+9Qk!Lzw $ c7_v1~ܛ lc}YX[[Mr'h )1n֬TR񌠟D.0>e;EeQ)zV>E%L'vZݲJpgg&{=EivjTqzj1=H455մ9u3I.3'{"ތEƺqc@csii**T7,*vܳSc$(9c4lT Zz"{Xk[ӃY[5V47nA5>AG#=k%ښIiG:9` |jj8٭Uy"@`Zٳ0ٛSS[9۰UOq@I#yL 4=v ں\/#BcїKZC#' ڸW 1ʢɡ*pzZTɉk309=T[9uxЊ:;{LH'L!R1Չ8Gtzp4N>8U鲬gYH3!ۘ(of&oBakeڦjB.|C\#3pY~Nt[V`y=ə\8r5yJ8V:9kO aa']|ojHy#7iəOuQLu(m.*͜FB naPt$(jIDAT%R?*Y]DxoӀ=[_198n9\ykdp#& ظQf*#7. \2襁/7COcuaQԐeY  b*Gwl}켶CÈ#ukARCyPPxWbiT{fAmfN а#ecǎ͔!3~ G|Xݸu+鄷m5LT (D!erd'ۙ cH^w`/+;/ PL| "~JQ/ꦦݻk.}T=d481t0<%,Nzl+oW }JZ/g{\5#m,uUL'#/SLܳ$ܳ\SCx7D% 7+F|ݺu-R+^6'Tܢ'I::iug^[ybh p5?2IՍ׹k&8;{c_I/}uˆJ\mX4:4*x۩|Y-l}EE;V7݊sT 0+:K&/ -'y9^4}{Ovrd%mPu'7l=QCˊ/*2&ZpZYē -"v$|q|Ax9{ޖ\]CqO9U Nڰڝ2\p3J@wG|ėps%{>!_dцtAoo]{h#yR+r\n?=5(:juijǎ)8 &ZOtE${E"잠^w<^˾ {[FmHעѽmq#ԶFm9.In:u.-`9Că1-vq*wohPI ej[S8?ND?Nn6$K$OY/4܈^tW+lϡ'9cL@mN>e}.oXpv cu#nf\!3}$ٍ~k{9-MmHNur.V9x+$/I^9ʐIBSS5.ٛ F~}ۆu-wba+}&:_+¥:.ۦ\^oXes5D׮?^.x?C9m?uƣ˶keY\ 6?ނt\|:ݛdn}vZWa8Dv8eB//lm Ix:)s'/ƪ,6;AEDm|+Ntr'J|t\{ziBK5셻@A>=rI}n+r(\Ɔ%o"f$uN]<a5ڝ$+؀srhA?8*Y3IGU;Em,.^oܦӱ}6un$ޛY¦ #yCLzѭ9랥[lz'3] 6Vs7 Nx7{[;m#[FiY.۸u׶Ǡo%tO!ޡS=2ejUls>^<6c2aaݓ55 EK&xй(s-x|XKUͬ#ߛswз4;ofWϣ'~롶92 2myrdvn{x#>XvD*?=vlZ4m"}aTW^ܷ>>hVHtaK*t7X@zE#LDk&&F3 fn&t#^ġ\b';\|  z z(|N_#VVc,F,Y\/ vlXD.6KUWw x:7ѽp_&;BnN0Ք8]25qz FʗM<A!3.B/X}ZhෞC}gNzoC{Ƒm/>][*{zwyݮk7C>׭8GAo-8]G?^9I5:GA~m toT#.tuwɪpƦ'-[U4`O#>e{nl/ᅪ&(#W6q]E7JN_;Q"w N7x 7wɞlhyW7I}}5IZ25 tc6++kp+ylU>5Oc!/|Fto&q,9*!.rϚ۶ ':vq!Eus_S^>AʛXC Bքy䙍=+r*[R9"̚*+a!%59.,mM>)Zw:]р+&O÷ j[ЊȗVuݨ֐G0L+VpWA_e2zD/b7m16 X^Qdr UͩYC ֭cZWFlGǤIG>$. žʵ{K{| d݈A6\/VRi/*=Oi4jD#b6.ztkA}_=?+o7z={abC9b_*Oɛk=vc,"z_&^DžXe_K^xx+5 K\vLmg&&&)2k GI_b*tJЏ]+707Y#WO!N4|BX%ƍ_V zX,NgԯdVL-1ʞ kF&qsuX֓ ,4$;.КѺhPd;}8bѨ_*HnyWG\}(1j]٨ م_|'|ŽIG doXyvƝI^#n|+YC~Wz$7$9.C!oU5>~fP{IlKu[m:r17\b !8 J?طc۴M8{oBwoɮi\_Mn.Zo2o92ypf`R$}zI ߽~dk3 X{Ioн} =^Ր3M 9,`- y8hqO.!m5Lkww Mܳ:p;>aR/*: [VS-?(yvbvJ#[Ϥ.l)(̾3CGn=^ēn:*:֜#G4?sQ֑nh@ׁLg5W^a{i $n4"'-^CBRE6mi_-xB_#怋~N=\9#C @vrOb'EIFHSGq8-[.P!OoI:HrcB2^Sȅ"vu(- 7f85hkPE =G7!싂X|^#IvCQhْ'ӅCN>-[ )r2nFKoL 2Jȏ_RD\tp5/%gb]s;=o`c%&+[Z(R8䶛m /ږ6_}~=xEyfn$]Q> 5yCo'3~:)>9-K~޽G +ĄEeż~^oFc{ڇS@.4+Mm#,7- }Pa?#'p^{Z Fmex2>g| LAԌEmm qbM[ΛPgkF/^˃9ϣv|f\ՆjZy~)J:_[.^,iW(}?B D'IENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/chair-pushup-2.png0000644000175100001710000002501614221624107025404 0ustar00gdm00000000000000PNG  IHDR2PLTEyh9,HgEB?bd=cxQ+?t5IH_ğE/$p#%#xT7}xby=2bc`ɫ|8a,ӏptĽNffa\΃Y^::+AZPذ}0399$ wU[@0s%'2_Aɗϭ=Mf~1UvEHXۺ7D0.Y4""ՐnZ͔ySKpqnV7Ts^HRRPdԾ͡sc>2[dl|K.CTSkckMIovuÃc(5E510ܨU^ttx]/cj ֘Tg ϒBajQWE'|.+)ɚ{}z̉j$7K ۗwdNK2IaҧGycNŅۏİ 7DSgUݣ_HIR[虑ûߗr2UyL#l^\qjܮE=4>aܛ:-!;+:ѨV:>@wJ! pUѼ _5iuv28ApK:OINͤ'6=87VdgqKI†khQwlorP9. 륄($#[OMЏ"$a5e9bKGDH pHYs  ~tIME;wg IDATx|׽koj5ӔQY{#[&QvsbYҌ_e"[zdn̵M2lE<?'9s<ϬXn|wdTIYذ)_B }3 s䋶 9EcXk)(Sw47-@ Q"P+Cw 99 F!?ϯqfLZA0GgsX}}wH$d-A N3l4^0<P(xV -,C`??3zkƠp8'vXBX_zg}z0hԁsb1hDɛS tFzȗL2~7"強!]?~t:b=Q&пġ6w( `(r|F+7M'LpŃ@.]3V,@_n |Sn ?ȫnS" ?"^Q>QgD!%t tŔHHQMk>QMHXNF[O9(χ+*}k9T[Q"vRbD9(lpY ]ӛE"G>Lz%no茈KB#Lf07Q'U(g.6 ]$*"KT,9zm N*.eL K,+M+(tT0.!zJC[J(bt! tdt I~7pEJ}nnب:2> '5!q#?# ++rsFXN}x](ͳ Ey[;g6Os^̩N=0<,!YlrenxC^X _sQ5(=-μBDR*6\xС\}s'{D]Ѝ"ʋ"v +~NTV]aF'ݗ DwM䅼.P'Y [m1't"<=+3Qw2_2+zJ׺/A-'L }PS"(ٵ(JJ5YdA㡇죄>5ְ1]yH[6]\:x荙NZAu@.̗*޺xkq13*i~7r"p"^ 7T !K}/u+yyŃJ@|&vy(Sa]>,M|m9~Ի:-_Ep>%^mA[ڷo_^[<1"CŌue뮓[^zi|nx)<KE4_^+o.ĽZnٺx)<h!CeCb˛- O:(QU8T9ʫ&`,4{\A7iU-,Z[@:G [}B NTYP!{ R>a:RW/KNy}' |I ȷ2.@gUWvNj@:3z)(0 |^IW@f4RTSn@-VR0:vl]LO*"u,?*T3zoxrzp;D{";!d!!e]sEf'? V"EΓ5R~\]~+ѓEh{4j;= nͥ'Ȝ-狞<ގPwy9C~=BwZ~~9t#f,ԇ!W)xn[-F bifb)1Г{(_}=XitN%m7Q>*!gQ QOGk:E那tiԡV<TVK[6cb99"o0h,ӕ+Cm6riGW@D B4z]04ٷ;1>qFG#r*%1Jj۔m\~FW #0"r"m\v`&Ɓb yU AQx <{ }5 T@b5C٤1:BÞSm=+q1If5MVl'RHJu.^"aܣѡJ' =1Sʶݧ0#Nbȿpr'߰hO[C\foDvL|iGAEnvZxx20. 7ȣg5,厄+⭨R LUěM^颻uzt=O? ΥUUAd"4&s2xQPTZUN;ۣF;+-C<;W GaMK՚NMlvU"}C~!ct=dx6GmvFm[m:?fПDכ#tTSS ֖;( }â ʚZZJ0@J B9H֢Voj)*++ʯ7owi!o@v geem `z$.n[`Y5eYEEE #_{o oyp7wn[[@"htm“O.h)+k=xApaڲ"џ]z'g*^>7ZuRV:b{}NHqYg7Z{VJm5Byog+`fn::xۣw 4V{h򢲚Vj`~c/it-TsZՂjiiٰדZVvG?:By*rYM!mhE;MxbDfkYVM w lp6G V#hnb9*(Up?>ܘTTV !'%Kb8֝?hnnŋ;wsgKK Yה=ZȆ) ^"ֳNX.kUʼ]TlɓEP5mcy(u<1UrczDRE]kzү5`vRr| :z m49lS*6X#JZ Y6<򩣏h@Bu]r: D"+zp%*|VdwG!)J}vXuZ= /-u/v-={BUuE$r!}0 *dv^"t\|&juZgtނYfZ.i[PQKt>m̎_`O={:J>ﯯT& ]e*3# ˾!ޞ /Y ʼ#f_?" lyt5 x vyG lB8G@0RG?1_RyDE| փE./vM=k%< 4ΞWܪ|nP9_:w娖+:xpV]1yoǎzоWV}*r| zG/'6ٳK_upNwjp4z,`Puӓ܁G79ߍ w-R3h]ut9_Ȣdsgo໻^~Աi4KB 3߱lbт 0:;f/zm]&@֘3?U?1R1a֝4o^7Y}bM<%JXBDG{X.HXBtOqKݡSB&)u4|Mـ^fom5`6ޫ'D}S^rwZUǦ֋4zU"ũ!@uܟ(z.Bd7Uw2ZW1>p~5{t ,hnkU|ѢӄnB㰿 Pe茿}JĎ}LJA?% =Xp1 ht6{W_97q2{%!Ghvh 6醬J%:.{x9* @+/g}gU0=AfLWB4/rO@0;NJQ S(hwSXB_50OnxE͞XarNp{:Z ;MDE%G}ٛ0 080ct.]+Y{C#.g,YK;3aps8|oV/`PC)Kc E}yÁkg@0<֙7Y@qsM[*K("|X:sCE %LcH@ײVL#/9=s ѧ6>xm$:IDYjRAb3D?>YdKUgvӉ#1 ѓoF`y*WI7xt u ފ`8BsXDh-B0 .Ky~}<*cwJDT&lo?,)t;쳵쫠ll#4:(%;]Tt~<J M+&j=d8 xvhnF( D\tAuq4;t irѩg5z̮ǻp?f?*.W>MzIL~z\AM>:15>I16;^A==mfg3쓌n~ZCYUq۩ij9hs?U|QIFfG̡;$A%}{oݘ>My}ո-*ǡ?rz LbG>bQ:VpzSj&4Iw t\M{ ݐ2<۱Bw\@;Q2`R32 ;x?DW"`tX3H\{𬓉>aE&ҢO V4XTȽ1VL;A?/ U [s'So/R\q-ok|Do|_e5n"]:Fe?.Տ2!Ѩ\Ϟ3`i4CoYmd"IwL%]&azj05~ = [(tH-u>A+BSEjGFޕRg 3nJ$"QpDٜyzx\mA޽Qɇ{F/1C&E^3s0[fyFg'@ 1j(< :̏at5/}ko0|m}ng_%-p M-N'h8_@ sW퍫Noʕ o/7j3YvrP"<L0-ש6Mqygcc 23_%۷ɠGZ2f11_0mĞZi46 )ɤkq\IDATl22"~6]% +Xq/Ľm}}+ȦV(зxN z,SO i vxΧNLLѡ!t,n0ëdbz[ϟwr٫K10E1۝%֍ Mm/4Ox^K\!iZ._-$=Fwanri1 }#h[0lTjM}Fv,7# DeWKgڧGyLI5ۻ_QzlnXBeB|3ˌvdnQ!{yw^3gΜ|~4r|V/ m}]a>t- >yˡC,e/<sos swtw9X+C .zFww:mR{;;w=wY]'LGt'tWPFEߋgmTㅚfW;N9ǝ+0.X=Umn^4vGfflX8SEI[% `jelO#R;:nY!ש<-?&Nt1ahw@pyuGܶ6.N/8-@! Z µCDCκau^Ѯd: o& ]Dŭ_{ͶGP<:Yc2VRY^zMP#,s<ݎgBX rf=<;7EAcr'v[1.s^}gaM~h'dw2ۮȑ.7^;!6丽8DXh ɑ'xom񻐴ֵdO8vҖnb=֏f =Y.%/}yc7v:#Jt_t$<)ԑSϙ3w~%u;yl;{źu<:MƻԿA~Μw~W?{ѹs':UIVx*9xd';Ә?L ,ꣿy{g?91NTچؔ=ny?:=IENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/finger-stretch-2.png0000644000175100001710000003125014221624107025715 0ustar00gdm00000000000000PNG  IHDR2PLTE)rÿZDhCB@ݮy#@^ݎ{(<繤揹((&r:JLV:+Ĭް_',7s_ӣ7O^_\zTAMcaҧؕՊ~k ֣_bgOartܷ'4D3!hE8=Rh쵛C.#fO 4G̉jNCKޘs6CSuZPR7-Տ=Ô梄Ւr|flmjɡ/Hجݶ 1Ic{akRROaiY~c]uv.BW";Z~ߜA^563HRS !y6(;Ou")*w]ǭ;CNhQI۷Ø&5Ńd۔o |}yrM;®pU{p.=ϟ_A2η;(ɜ07BrqvWFoaZ ,E^(ڧhuwjS`Iwr_¿f179эnإҢΥ'-!L3)!:S {mczɜjaȔr%,DBBEħ}mI6%=V23E6J_aPBefc\PWiT}H.2IlWAQbҡtvr /.;KSQU.B$7KXce (AZ~#="3M',=j pHYs  ~tIME53k" IDATxXSgR6SJ ѠLթlH$E)& %i5i2qcXG:UJ{ۈy̨}jtadVkI{9@X9{50{ппп(Al_ 0?H3Kaѿw eH-nJ[UX37!"ѿ7!Jg6c>^R5'<>F3P]3;t9_5-7myoN8f _l,-}3ti5Cjzə9􄲆>6Z1g G35}bmZaVww8e8?:|MO1VqO~o͚5H.4wHJ38%$ \][ؽtžK߂O4gC7@Sf<[ظ?=?:].:$w5-Vgݘݚl }LocĦbcKJVO5cɩ-2M| &1Kހnyh3Jcͥ<\# zv6 ӭ5IDqV]VJ->p.O}x8L세O)YhiCwBGZR*N&U>{5gDFh5jM8|ryv8; )6)wVۛآ^drBfgU[斔?/*l9V{׃,޽?=m,/A&3}$ɣ[r1 Ͷ&vVr4]Q[)=[Z\ 4.ʃAee9֤{W{3n{E9}>y;DzϤZ疄]B '@S͛7k*ӌB,1A r,wu5y׷㬍X7w$v꟎5DX?Β{|ǡjq>[rOd=<;N9adaLN؇ }e4&* MXbEP&oW].J R*jPܭ DPކ gLq٩;-Ƽڤ|O<ޤ8MOO6!YgrhرSK][,67.1ڨC݋ȹ>XnE}eb53B[t=Yla>TiKӌFSHy!t '7#xnu_#.]J./?t{+!?hX,_0V~4_rMGW(|/6 ŜsBZbAvL󩣨j///3IX!AKhW8j[[Mhx:e;Ծ#5cJR̘m?/6&'&F49FHGVKY9f=y zwÈhۚXlnAwc}GrLWto`XUsZ[@T 2qli,zcv_ kۍzd5[;R{ܢ;bwջg-9bٻ8CQkV7=,[I(47z3߱WxY3aCF/7s}9w0 T/jgpTﳴJ 7CO~ =]-ffɵ5B5wmm~b2T}z;L*g[V<mM_->rgPiJkmRRM8|`>B Fg@pRà Ns[E?Z)C-&{N/~ pfJǃ1T+疜hCa;Sݜۛ8dX?g *$:$ 5أ/gfب{Xzꚵ>ŦY!9S35opҲ@ b-KJz !׏dA6+N=ơ/|,tZǝtmÔmlS_@n&f7𭇍vTv0Ʀ1z>!ИkabbVӉ%䏕Ol!=C,38l4W~\1Tg~M/ĠӌMەJ18B٨J"S}# pn6v G 0s3F{jjqŭGk, tnP!N8΂[ ;Z;:4;_fؔAqsZ[[翳%Z/DAੁ t^rXp 4By0 o믯o}apWipWLN} x*tRgCsy? ]jnsAwJ欎?Avzpnb't;/|tn F X,rb{媅MxnDE]IxhߙIТNm>noS͹`q)gw=)l5fnjf5Ŗ2hnv\^v('Rzy15.MWs=1RI5KcX pڤeN8誋`~O|lXljN M<8jCfzGc'ߟ_V0gQAKvP p<G'- Nï##pA3޻fpRQ BYp,ghV=pPb :éz+} ΢ PhO_xzMPrw V=|6C9U;w<bFx!i;";ϪUCC3:ǃ7BrKZ0m fEIY g QA!O{9 0o!szH o]F)9> /흶rSF.: qS/o,!_'|!N(سtVA_>Qq1δnt=y[ Q&u4sHƂ?՜_ ГuMhsQ{9C[2wWP8ѓ'˄ۏhqe֧ 3R3&sjDM8XjsTW{|_>{n9%}8[oJ=呲kE<q* {;U̟YPM]w_Yã(3xp";xKy2@ =E. i@+_!;6XZ ?4;R}c4;-9-C޺{..$snhŲ Xȫ>GꯒS][kw Jsa#O8”]JoۋsE6ߤU|(Aw%e+e?F,#n^56\IC_jK#:|x+o:>5 jG# _+dKTyisDo/^r_,4Dv[iB֓ƗW,tV^L6^S! d6ţIE +d٭+|}Cͩ&/8C'ˋŽH']7'N)S"AOZj(6?{|yD=---{0З`k4mlU5nГKtoaNW'uG;:֯o/s*[ [ fQgBS(U8&vJRR34asˈ^5YWnl4KM;+ ɧӔDsg S/ɫ\q!}0NQJP=;v (ku 1(Tjq[;t膏镅y<-K1\V&~ +y?{jj_ nˎ/^ =ӗ?\> uJL2=3Y@^l:ȐyW.g^^VoZ\n=eГO_ph6}YF/+tϟƾ|h0g4}XyO*jtSGGb2SD_q7n ߬W rJLlx@gܜ|T)¤yWlɨ_1=׭sA>m^tn&ƌ|u>Q|fKm,7G¬ۏǮ_viTcl{fssnFLYlՀ>-o /r3[1.hTRLBYF !Ƌ._WMS4&CR$Mx [U3;l>Q;<{" 0=n[UYrpjm  6ޚpXjMɃ.?Q==u88n7mll ~t`ŗد$ٕ0ԸlY)0 w8@<]C4ض`AdlkD)z~1m+Oz:[Q++zHci4MqiWl2T }Q zil֗K; _71s c4x=@تM$ |Iw{ G)̆plz/KBmAi: [M,\ fVi #`9 >q雰#} 9 7lZpy_39=&w[ { F7UOzzQэ3ԘM\nqO~f3@ںy}}u>9]xz:`́nDcm$Cfp_Dɲ`0 6&ԐxONy#lyvwNn,w0ɨ"aEbdxŽ^pw%ފk{Mŏ_xѣwBchAqP_׃brq5& _=3@7$3\n -?lt?qZH5k|LG?$5+,7=`db1:Auk۶wv~gd?ZZ;+4õ%#:>H}ݐVAD{O.%]u]C-Kmss7K##OzRWіDw9'u2t2gnw5}ݒcǎm#.28;"v.GphRϿ?Lz>[;མ(pv~R`Q8%мWa3XܽvȌrԎR\=<#@_#'/[[-&X (H7AE7W T6vx HϟKE^/ǑUڕfwE^a])HwvcPGrMNSj4oN(اm48H,Fv!o#Uڵ'Fb6QQ_rue8D65O' F 9ܾl(A;,MNݞ2'lQĥqVTM;ij0ʡKpON7|Lx6Z"RM[q qIj iLƒIfhȮ+mbR{R(] #SdfHryɭ[L9do/IDATwkw]#P4 鲗yQ Ĵu@^Uפ̹ Ӵ,9c]gb-ʎڳ`tA'N+R]]]뷖,tc7]^D xc?XFQ>l6Db(245G@Զɐ1::ʝ-' ^GW[רMuud|4O72:\빏9$sʆH.mke)irK#M"<>-v ݦԶk5IK5n7 l48C ]_O#KI9̦9M=*nځjO.& 17)Ǡsx :( 5tvomܰSڵko;]I,vGU}`k&W,Ņr<9No܏9q}Pߒқ'DtB]lv9pX2k?]w~~M?pߺ>XF>lt)yߝbVe.JJzt$8|]$^cW7ކ]Xva'?nPYnӦ|Ӄׯ_אumc=E8QxEן17/)t@>jQK@4Gxuv*=m$+Tm5͏Lvn0d w|]6Xt}%kcE =nƭ3Mw冶M*pj3+iʔ~tQd_M9; Nќؘ[m.W:u _v }}=@uR hz4gطGQev hӯaA/C#B `W/΄"qe(nC66UnM١_#֎zCBdKL5Lr7?U{:xpc1 q|hۍ"$Hʱ\nc0w㚃BzO| B/uș8o5[R >8' TnS{]^ .qͭʛ7i$uYZ܄o*k+1?m\W8_< A ws^sn7"&PN]Ix./ex%.ɍǰo }W| 9֣wL5ޣn3B?ܮ/D̐8l7vWa ၝ.%hTw|nU%$8t@z|UN)WG͸yJr2|(| hw-OqTJ5LV^wEmŮ+}$#ȴ,CS`Љ\z}ܔ G9l2r:őVc7f"_Q_8JivVvݠ"N SՆ1pq Yy*>Tpv=78Uo{pYl7v17||N[9MشaIfzIpn7Y\tڵ':;6Sw G v8QTq -5:C).Ǟ K[Ct7)k sؽQ)nN鍴SGT.A'6~:_q8T=m}%6EsسQXבI}N{852:<1 :z˱y6^O UYpq~oLIoϴ>šwv} !qOWGV\YG_A#(~Ӑss@K:閎㜢]V7n ҋǿ0 9oG6OMN8LިFKu]9:Yv|>G96Z߭q } ɛ_qyLn:iepiUv럆DA?4W;%N$l?v("aݑ|сO$wϊ0v&kj |n~ݺuL[GoYI:wUtZ~.burD7 [ζ2(L{WiortͧJީX=} 7t"/;vkɒ%x19EAY[=aoS&S\j܏ Ȼ2:u{:CTWW$ocA?Ԭ:}yn 4 [ b['cvw*_SHnQ<ڒ^'+yV^Xcܟ0#8mwu^{E\C\^Wn(dGߜ?Ӹ=qbɋ'#g{+yڠ/݄X<ڋ$.ohp@(dx˃_ʖ {C'y֖cFwu+Jk9y \!/k gHqi)" (A0:,t.MPC2I@G_\9ynm̍?:w^{6;a)dCLI_< <;>d蟿1{ 1.3s(S {BgMM.=v>& ^.fff du'^Љؒe ?rD@N3W^1H҄uWe/À7țe ЛD y yΏ<Ӈ.lm*;2) 93bD#&eAJ;m<Nj<>28уf'զDoAΦ8:Чk`c&G|-C]dwѱyu+6I}:%9)eGJOT|O|+Wy·>l(c*^ȐOR6}z@ I.9.)iWd'm. $tr@@ }i닝&]MFd|NOҸ''Hr@ύiO?';.:(u Shoulder-arm stretch Разтягане на рамената Estirament del muscle i braç Protažení ramen a paží Skulder-arm udstrækning Schulter-/Armstreckung Τέντωμα ώμων και χεριών Estiramiento de hombros y brazos Õla ja käsivarre venitamine Sorbalda eta beso luzaketak کشیدن شانه_بازو Käsivarren ja olkapään venytys Étirement épaules-bras Síneadh guaillí agus lámha מתיחת כתף-זרוע Istezanje ramena i ruke Váll-kar nyújtás Peregangan bahu-lengan Stretch spalla-braccio 肩と腕のストレッチ 어깨-팔 펴기 Peties-rankos įtempimas Skulder-/arm-utstrekking Schouder-arm strekken Rozciąganie ramienia Esticar o ombro-braço Alongamento de ombros e braços Întindeți umărul și cotul Потягивание предплечья Ponaťahovanie pliec a ramien Pregib rame in roke Istezanje za ramena i ruke Utsträckning av skuldror och armar Omuz-kol uzatma Розтягування передпліччя 肩膀手臂拉伸运动 肩膀肌肉延伸運動 Keep one arm horizontally stretched in front of your chest. Push this arm with your other arm towards you until you feel a mild tension in your shoulder. Hold this position briefly, and repeat the exercise for your other arm. Дръжте едната си ръка изпъната хоризонтално пред гърдите си. Притиснете я с другата ръка към Вас докато почувствате леко напрежение в рамото. Задръжте за кратко тази позиция и после повторете упражнението с другата си ръка. Mantingueu un braç estirat horitzontalment per davant del pit. Empenyeu aquest braç amb l'altre cap al cos fins que noteu una tensió lleugera al muscle. Mantingueu aquesta posició breument, i repetiu l'exercici amb l'altre braç. Držte jednu ruku předpaženou před hrudníkem. Tlačte tuto ruku pomocí druhé ruky směrem k sobě dokud nebudete cítit mírné pnutí v rameni. Chvilku zůstaňte v této pozici a opakujte cvičení s druhou rukou. Hold den ene arm strukket lige fremad ud i luften foran din brystkasse. Med din anden arm skal du skubbe din fremstrakte arm mod dig, indtil du mærker et let stræk i din skulder. Hold strækket kortvarigt, og gentag øvelsen med den modsatte arm. Halten Sie einen Arm horizontal ausgestreckt vor der Brust. Mit dem anderen Arm stoßen Sie diesen Arm zu sich hin, bis Sie eine leichte Spannung in der Schulter verspüren. Bleiben Sie kurz in dieser Position und wiederholen Sie die Übung mit dem anderen Arm. Κρατήστε το ένα χέρι τεντωμένο οριζόντια μπροστά από το στήθος σας. Σπρώξτε το τεντωμένο χέρι προς το σώμα σας με το άλλο σας χέρι, μέχρι να νιώσετε μια ελαφρά πίεση στον ώμο σας. Κρατήστε αυτή τη θέση για λίγο, και επαναλάβετε την άσκηση με το άλλο σας χέρι. Ponga un brazo extendido horizontalmente delante del pecho. Empuje este brazo con el otro brazo hasta que sienta una tensión suave en el hombro. Mantenga brevemente esta posición y repita el ejercicio con el otro brazo. Hoia ühte kätt horisontaalselt enda ees. Tõmba seda kätt oma teise käega enda poole kuni sa tunned kerget pinget õlas. Hoia seda asendit mõneks hetkeks, siis korda samat harjutust oma teise käega. Beso bat bularraren aurrean luza ezazu. Beso hau bestearekin bultzatu sorbaldan tentsio txiki bat nabaritu arte. Piska batean egon horrela eta beste besoarekin errepika ezazu ariketa. یکی از بازوهایتان را به صورت افقی در جلوی سینه تان نگه دارید. با دست دیگرتان این دست را فشار دهید تا زمانی که یک کشیدگی ملایم در شانه تان احساس کنید. این حالت را چند ثانیه نگه دارید، و همین تمرین را برای دست دیگرتان انجام دهید. Pidä toinen käsivarsi vaakatasossa venytettynä rintakehäsi edessä. Työnnä tätä käsivartta toisella käsivarrellasi kunnes tunnet lievän jännityksen olkapäässäsi. Pidä asento hetken, ja toista harjoitus toiselle kädellesi. Étendez un bras à l'horizontale devant votre poitrine. Poussez ce bras vers vous avec l'autre bras jusqu'à sentir une légère tension dans l'épaule. Maintenez cette position quelques instants, et recommencez avec l'autre bras. Coinnigh lámh amháin sínte go cothrománach os comhair do chliabhrach. Brúigh an lámh seo chugat le do lámh eile go dtí go mbraitheann tú teannas bog i do ghualainn. Coinnigh mar sin ar feadh tamaillín, agus déan an cleachtadh arís do do lámh eile. החזק יד אחת מאוזנת מתוחה לפני החזה. דחוף את היד עם היד השניה לעברך עד שתרגיש מתיחה קלה בכתף. השאר המצב זה לזמן קצר, וחזור על התרגיל עם היד השניה. Ispružite jednu ruku horizontalno ispred sebe. Drugom rukom povlačite ispruženu ruku prema sebi dok u ramenu ne osjetite napetost. Kratko zadržite taj položaj i ponovite vježbu s drugom rukom. Egyik karját tegye vízszintesen nyújtva a mellkasa elé. Nyomja ezt a karját a másik kezével maga felé amíg nem érzi, hogy válla gyengén megfeszül. Tartsa így rövid ideig karját és ismételje meg a gyakorlatot a másik karjával. Jaga agar satu lengan terrentang secara horizontal di depan dada Anda. Dorong lengan ini dengan tangan Anda yang lain ke arah Anda hingga Anda merasakan ketegangan ringan di bahu Anda. Pegang posisi ini sebentar, dan ulangi latihan untuk lengan Anda yang lain. Tieni il braccio sinistro ad angolo retto orizzontalmente davanti al petto, con il polso poggiato nell'incavo del braccio destro anche questo piegato ad angolo retto ma verticalmente. Ora spingi con il sinistro contro il destro fino a che non senti una leggera tensione nella spalla sinistra. Mantieni per qualche istante questa posizione, e ripeti l'esercizio scambiando le braccia. あなたの胸の前に片方の腕を水平にして伸ばしてください。もう片方の腕で、肩をストレッチするように、胸の方向に押してください。この状態で少し時間を置き、反対の腕も同じように繰り返してください。 가슴 앞으로 한 팔을 수평으로 뻗은 상태에서 다른 쪽 팔을 여러분 쪽으로 밀는 데, 어깨에 약간의 긴장을 느낄 정도까지 합니다. 이 동작은 짦게 하면서, 교대로 운동을 합니다. Laikyk vieną ranką horizontaliai ištiestą priekyje savo krūtinės. Stumk šia ranką su kita savo ranka link savęs, kol pajusi švelnų įtemptimą savo petyje. Pabūk tokio pozoje trumpam, tada pakartok šį pratima su kita ranka. Strekk ut en arm rett ut foran brystkassen. Dytt denne armen med den andre mot deg inntil du merker en lett strekk i skulderen. Hold denne posisjonen en kort stund og gjenta hele øvelsen med den andre armen. Hou een arm horizontaal uitgestrekt voor je borstkas. Druk deze met de andere arm naar je toe totdat je voelt dat je schouder iets gespannen is. Hou dit even vol, en herhaal daarna de oefening voor de andere arm. Jedno ramię wyprostuj przed klatką piersiową. Pociągnij to ramię drugim dopóki nie poczujesz napięcia w barku. Wytrzymaj tak przez moment i powtórz ćwiczenie z drugim ramieniem. Mantenha um braço esticado em frente ao peito. Empurre-o com o outro braço em direcção a si até sentir alguma tensão no ombro. Mantenha esta posição brevemente e repita o exercício com o outro braço. Mantenha um braço extendido horizontalmente diante do peito. Puxe este braço em sua direção com o outro braço até que sinta uma tensão suave no ombro. Mantenha brevemente esta posição e repita o exercício com o outro braço. Țineți un braț întins orizontal în fața dumneavoastră. Împingeți acest braț cu celălalt spre dumneavoastră până când simțiți o ușoară tensiune în umăr. Mențineți această poziție pentru scurt timp și repetați exercițiul pentru celălalt braț. Одну руку расположите горизонтально груди. Прижмите её другой рукой к себе пока не почувствуете небольшое напряжение в плечах. Немного подержите руки в таком положении и повторите упражнение для другой руки. Držte jednu ruku predpaženú pred sebou vo výške hrudníka. Tlačte túto ruku k sebe pomocou druhej ruky, pokým nepocítite mierne pnutie v pleci. Chvíľu vydržte v tejto pozícii, potom zopakujte toto cvičenie s druhou rukou. Roko postavite vodoravno pred prsi. To roko zdaj potisnite proti sebi z drugo, dokler ne začutite srednje močne napetosti v rami. Ostanite tako za kratek čas in ponovite vajo z drugo roko. Ispružite jednu ruku horizontalno ispred sebe. Drugom rukom povlačite ispruženu ruku prema sebi dok u ramenu ne osetite napetost. Kratko zadržite taj položaj i ponovite vežbu s drugom rukom. Sträck ut en arm horisonellt framför bröstkorgen. Tryck denna arm med din andra arm mot dig tills du känner en lätt sträckning i skuldran. Håll kvar i denna position en kort stund och upprepa övningen för din andra arm. Bir kolunuzu göğsünüzün önünde yatay olarak uzatın. Bu kolunuzu diğer kolunuzla kendinize doğru omzunuzda hafif bir gerilme oluşana kadar itin. Kısa süre bu konumda kalın, sonra alıştırmayı diğer kolunuz için tekrarlayın. Простягніть одну руку горизонтально перед грудьми. Іншою рукою потягніть її на себе, поки не відчуєте м'яку напругу у плечі. Затримайтеся ненадовго і повторіть вправу для іншої руки. 保持一只手臂水平伸直于胸前。将另外一只手臂放在这只上,直到您在肩膀上感觉轻微的压力。稍微保持这个姿势,然后在另外一只手臂重复这个动作。 保持一隻手水平伸直於胸前。將另外一隻手放在這隻手上,直到您在肩膀上感覺輕微的壓力。稍微保持這個姿勢,然後在另外一隻手重複這個動作。 Finger stretch Протягане на пръстите Estirament de dits Protažení prstů Udstrækning af fingre Finger strecken Τεντώστε τα δάκτυλα Estiramiento de dedos Näppute venitamine Atz luzaketak کشش انگشت Sormien venytys Étirement des doigts Síneadh na méar מתיחת אצבעות Istezanje prstiju Ujjnyújtás Peregangan jari Stretching delle dita 指を伸ばす 손가락을 뻗습니다 Pirštų įtempimas Fingerutstrekning Vingers strekken Rozciąganie palców Esticar os dedos Alongamento de dedos Întindeți-vă degetele Потягивание пальцев Ponaťahovanie prstov Pretegovanje prstov Istezanje prstiju Sträck ut fingrarna Parmakları germe Розтягування пальців 指头伸展 指頭伸展 Separate and stretch your fingers until a mild tension is felt, and hold this for 10 seconds. Relax, then bend your fingers at the knuckles, and hold again for 10 seconds. Repeat this exercise once more. Разделете и изпънете пръстите на ръцете си докато почувствате леко напрежение и задръжте така за 10 секунди. Отпуснете се, свийте пръсти в кокалчетата и задръжте отново за 10 секунди. Повторете упражнението още веднъж. Separeu i estireu els dits fins que noteu una tensió lleugera, i mantingueu aquesta posició durant 10 segons. Relaxeu-vos i flexioneu els dits pels artells i mantingueu la posició durant 10 segons. Repetiu aquest exercici una vegada més. Roztáhněte a napněte prsty dokud necítíte mírné pnutí a vydržte v této poloze po dobu deseti sekund. Odpočiňte si, pak ohněte prsty v kloubech a opět zůstaňte v této poloze deset sekund. Celé cvičení ještě jednou opakujte. Stræk og spred dine fingre undtil du kan mærke et let stræk. Hold strækket i 10 sekunder. Slap lidt af og bør herefter dine fingre. Hold positionen i 10 sekunder. Gentag øvelsen igen. Spreizen und strecken Sie die Finger, bis Sie eine leichte Spannung verspüren und behalten Sie die Position für zehn Sekunden bei. Entspannen Sie sich, danach beugen Sie die Finger an den Knöcheln und behalten Sie die Position wieder für zehn Sekunden bei. Wiederholen Sie diese Übung noch einmal. Χωρίστε και τεντώστε τα δάχτυλά σας μέχρι να νιώσετε μια ελαφριά πίεση, και διατηρήστε τα σε αυτή τη θέση για 10 δευτερόλεπτα. Χαλαρώστε, λυγίστε τις αρθρώσεις και περιμένετε και πάλι για 10 δευτερόλεπτα. Επαναλάβετε την άσκηση άλλη μία φορά. Estire los dedos separándolos hasta que sienta una ligera tensión y manténgalos así durante 10 segundos. Relájese, luego doble los nudillos de los dedos y manténgalos así durante 10 segundos. Repita este ejercicio una vez más. Venita sõrmesid ajades need harali nii, et oleks tunda kerget pinget. Hoia neid nii 10 sekundit, seejärel lõdvestu, kõverda sõrmed ja hoia jälle 10 sekundit. Korda harjutust üks kord veel. Hatzak bereiz eta luza itzazu tentsio xume bat nabaritu arte, eta hamar segundutan mantendu. Lasaitu, hatz-koxkorrak bildu eta beste hamar segundutan egon. Ariketa berriro errepikatu. انگشت هایتان را از هم جدا کنید و بکشید تا زمانی که یک کشیدگی ملایم را احساس کنید، و این وضعیت را برای 10 ثانیه نگه دارید. شل کنید، و سپس انگشت هایتان را از قسمت بندها خم کنید، و این حالت را نیز برای 10 ثانیه نگه دارید. این تمریم را یک بار دیگر تکرار کنید. Erota ja venytä sormiasi kunnes tunnet miedon jännityksen, ja pidä asento kymmenen sekunnin ajan. Rentoudu, sitten taivuta sormiasi rystysistä ja pidä taas kymmenen sekunnin ajan. Toista harjoite vielä kerran. Écartez les doigts et étirez-les jusqu'à sentir une légère tension, et maintenez cette position 10 secondes. Relâchez, puis pliez les doigts à la première phalange, et maintenez cette position 10 secondes également. Répétez l'exercice. Scar do mhéara óna chéile agus sín iad go dtí go mbraitear teannas bog, agus coinnigh mar sin iad ar feadh 10 soicind. Lig do scíth, agus ina dhiaidh sin crom do mhéara ag na hailt, agus coinnigh mar sin iad ar feadh 10 soicind. Déan an cleachtadh seo uair amháin eile. הפרד ומתח את האצבעות שלך עד שתרגיש מתיחה קלה, ואז השאר במצב זה למשך 10 שניות. הרגע, כופף את האצבעות במפרקים, והשאר כך למשך 10 שניות נוספות. חזור על התרגיל פעם נוספת. Razdvojite i istegnite prste dok ne osjetite lagano istezanje i zadržite tako 10 sekundi. Opustite prste i savijte ih u šaku te držite tako 10 sekundi. Ponovite vježbu. Távolítsa el egymástól és nyújtsa ki ujjait amíg nem érzi, hogy megfeszülnek. Tartsa ezt az állapotot 10 másodpercig. Lazítson, majd hajlítsa be ujjait az ízületeknél és tartsa ezt a helyzetet is 10 másodpercig. Ismételje meg a gyakorlatot. Pisahkan dan rentangkan jari-jari Anda hingga ketegangan ringan terasa, dan tahan selama 10 detik. Santai, lalu tekuk jari-jari Anda di buku-buku jari, dan tahan lagi selama 10 detik. Ulangi latihan ini sekali lagi. Separa e stira le dita fino a sentire una certa tensione e mantieni per 10 secondi. Rilassati, poi piega le dita verso le nocche e mantieni per altri 10 secondi. Ripeti l'esercizio una volta. 軽いストレッチを感じられるまで、指を離して伸ばし、10秒間保持してください。リラックスして、指の関節を曲げて、10秒間保持してください。これをもう一度繰り返してください。 약간의 긴장이 느껴질 때까지 손가락을 펼칩니다. 그리고 10초 동안 유지합니다. 긴장을 풀고서, 손가락을 구부리고 다시 10 초 동안 누르고 있습니다. 이 운동을 한번 더 반복합니다. Išskėsk savo pirštus kol pajausi švelnią įtempą ir palaikyk juos taip 10-čiai sekundžių. Atsipalaiduok, tada sulenk savo pištus per piršto sąnarius ir palaikyk taip 10 sekundžių. Pakartok šį pratimą dar kartą. Strekk ut og spre fingrene til du merker en lett strekk. Hold i 10 sekunder. Slapp av og knyt så sammen fingrene og hold igjen for 10 sekunder. Gjenta øvelsen en gang til. Strek je vingers uit elkaar totdat je een lichte spanning voelt, en hou deze positie 10 seconden vast. Ontspan nu, en buig daarna je vingers bij de knokkels, en hou dit weer 10 seconden vast. Herhaal deze oefening. Rozdziel i wyprostuj palce tak aż poczujesz napięcie, wytrzymaj 10 sekund. Rozluźnij dłonie a następnie zegnij palce w kostkach na 10 sekund. Powtórz ćwiczenie jeszcze raz. Separe e estique os dedos até sentir alguma tensão e mantenha a posição por dez segundos. Relaxe, dobre os dedos pelos nós e mantenha por mais dez segundos. Repita o exercício novamente. Estique os dedos separando-os até que sinta uma ligeira tensão e mantenha-os assim durante 10 segundos. Relaxe, depois dobre as articulações dos dedos e mantenha-os assim durante 10 segundos. Repita este exercício uma vez. Îndepărtați-vă degetele unul de altul și întindeți-le până când simțiți o tensiune ușoară. Mențineți această poziție a lor pentru 10 secunde. Relaxați-vă, apoi îndoiți-vă degetele spre podul palmei și mențineți această poziție a lor timp de 10 secunde. Repetați exercițiul încă o dată. Расставьте и потяните пальцы пока не почувствуете лёгкого напряжения и подержите так 10 секунд. Расслабьтесь, затем согните в суставах и подержите так 10 секунд. Повторите упражнение ещё раз. Roztiahnite a napnite prsty, pokým začnete cítiť mierne pnutie. Vydržte takto 10 sekúnd. Odpočiňte si a ohnite prsty v kĺboch. Potom znovu vystrite na 10 sekúnd. Cvičenie ešte raz zopakujte. Razdelite in raztegnite prste, dokler ne začutite srednje močnega pritiska in zadržite to 10 sekund. Sprostite se in nato skrčite prste v sklepih in spet zadržite 10 sekund. Še enkrat ponovite vajo. Razdvojite i istegnite prste dok ne osetite lagano istezanje i zadržite tako 10 sekundi. Opustite prste i savijte ih u šaku i držite tako 10 sekundi. Ponovite vežbu. Sträck ut och räta på fingrarna tills du märker en lätt sträckning. Håll kvar i 10 sekunder. Slappna av och knyt fingrarna och håll kvar i 10 sekunder. Upprepa övningen en gång till. Parmaklarınızı ayırıp hafif bir gerilme hissedene kadar uzatın ve 10 saniye kadar bu konumda kalın. Rahatlayın, sonra parmak eklemlerinizi bükün ve bu konumda da 10 saniye kadar kalın. Bu alıştırmayı bir kez daha tekrarlayın. Розчепірте і потягніть пальці доти, доки не відчуєте легке напруження, і потримайте так 10 секунд. Розслабтесь, потім зігніть у суглобах і потримайте так теж 10 секунд. Повторіть вправу ще раз. 分开并伸展您的手指头,直到感受到张力,然后保持这个姿势十秒钟。放松,然后弯曲手指头关节,保持姿势十秒钟。再重复一次这个动作。 分開並伸展您的手指頭,直到感受到張力,然後保持這個姿勢十秒鐘。放鬆,然後彎曲手指頭關節,保持姿勢十秒鐘。重複這個動作。 Neck tilt stretch Накланяне и разтягане врата Estirament lateral del coll Protažení krku úklonem do strany Udstrækning af nakke Den Hals beugen und dehnen Τέντωμα του λαιμού προς τα πλάγια Estire el cuello a los dos lados Venita kaela kallutades pead Lepoa zeharka luzatu کشیدن گردن به یک سمت Niskankallistusvenytys Étirement latéral du cou Síneadh muineál le claonadh סיבוב הצוואר Istezanje vrata Fejkörzés Peregangan memiringkan leher Stira il collo inclinandolo 首のストレッチ 목을 기울여 뻗어줍니다 Pakreipto kaklo ištempimas Utstrekking av nakken Nek strekken Rozciąganie szyi Esticar o pescoço Alongamento de inclinação de pescoço Înclinați capul pentru întinderea gâtului Потягивание шеи наклонами Ponaťahovanie krku bočným úklonom Pretegnite vrat z nagibom Istezanje vrata Utsträckning av nacken Boynu eğip uzatma Розтягування шиї нахилами 倾斜脖子运动 傾斜脖子運動 Start with your head in a comfortable straight position. Then, slowly tilt your head to your right shoulder to gently stretch the muscles on the left side of your neck. Hold this position for 5 seconds. Then, tilt your head to the left side to stretch your other side. Do this twice for each side. Застанете с нормално изправена глава и леко я наклонете към дясното си рамо за да разтегнете леко мускулите отляво на врата. Задръжте тази позиция за 5 секунди. После наклонете глава наляво за да разтегнете и на другата страна. Направете по два пъти за всяка страна. Comenceu amb el cap en una posició recta i còmoda. Inclineu el cap cap al muscle dret per a estirar suaument els músculs del costat esquerre del coll. Mantingueu aquesta posició durant 5 segons. A continuació, inclineu el cap cap al costat esquerre per a estirar l'altre costat. Feu això dues vegades per a cada costat. Začněte s hlavou v pohodlné, vzpřímené poloze. Potom pomalu naklánějte hlavu k pravému rameni do lehkého protažení svalů na levé straně krku. Vydržte v této poloze pět sekund. Potom naklánějte hlavu na levou stranu do lehkého protažení. Na obě strany to udělejte dvakrát. Se lige frem og find en behagelig position med hovedet. Læg langsomt højre øre mod højre skulder, så dine muskler på venstre side af halsen strækkes. Hold strækket i 5 sekunder. Gentag derefter øvelsen med venstre øre mod venstre skulder. Udfør øvelsen to gange til hver side. Beginnen Sie, indem Sie den Kopf in eine angenehme Position bringen. Dann neigen Sie den Kopf langsam zur rechten Schulter, um die Muskeln auf der linken Seite des Halses sanft zu dehnen. Behalten Sie diese Position für fünf Sekunden bei. Dann neigen Sie den Kopf nach links um Muskeln der anderen Seite zu dehnen. Wiederholen Sie dies für beide Seiten. Αρχίστε με το κεφάλι χαλαρό και όρθιο. Ύστερα περιστρέψτε το αργά προς το δεξιό ώμο, για να τεντώσετε απαλά τους μύες στην αριστερή πλευρά του αυχένα. Κρατήστε αυτή τη θέση για περίπου 5 δευτερόλεπτα. Ύστερα περιστρέψτε το κεφάλι προς το αριστερό ώμο, για να τεντώσετε τους μύες στην δεξιά πλευρά. Επαναλάβετε δύο φορές για κάθε πλευρά. Comience poniendo la cabeza cómodamente en posición erguida. Después incline su cabeza lentamente hacia el hombro derecho, estirando suavemente los músculos del lado izquierdo del cuello. Mantenga esa posición durante 5 segundos. Incline entonces la cabeza hacia el lado izquierdo para estirar el lado derecho. Haga esto dos veces en cada lado. Hoia pead sirgena, seejärel alusta aeglaselt pea kallutamist paremale, et kergelt venitada oma vasakpoolseid kaelalihaseid. Hoia seda asendit 5 sekundit. Nüüd kalluta pead vasakule poole, et venitada parempoolseid kaelalihaseid. Tee harjutust kaks korda. Burua egoera tente eta erosoan duzula hasi. Burua orduan poliki eskuineko sorbaldarantz eraman lepoaren ezkerraldea luzatzen dela nabaritzen duzula. Bost segunduz horrela egon. Burua ezkerralderantz eraman beste aldea luzatzen delarik. Alde bakoitza birritan egin. تمرین را با سر خود در یک موقعیت راحت و مستقیم شروع کنید. سپس، به آرامی سر خود را به طرف شانه ی سمت راست خم کنید تا یک کشیدگی ملایم در ماهیچه های سمت چپ گردنتان حس شود. این حالت را برای 5 ثانیه نگه دارید. سپس، سر را به طرف شانه ی سمت چپ خم کنید تا ماهیچه های سمت راست گردنتان کشیده شود. این تمرین را دوبار برای هر سمت انجام دهید. Aloita siten, että pääsi on mukavassa pystyasennossa. Kallista sitten päätäsi oikeaa olkapäätäsi kohti venyttääksesi hellästi lihaksia kaulasi vasemmalla puolella. Pidä asento viisi sekuntia. Kallista sitten päätäsi vasemmalle puolelle venyttääksesi toista puolta. Tee kaksi toistoa molemmille puolille. Commencez avec la tête droite dans une position confortable. Penchez alors lentement la tête vers votre épaule droite afin d'étirer gentiment les muscles à gauche de votre cou. Maintenez cette position 5 secondes. Penchez alors lentement la tête vers votre épaule gauche afin d'étirer gentiment les muscles de l'autre côté. Recommencez l'exercice deux fois de chaque côté. Bíodh do cheann díreach agus go sócúlach agat. Ansin, claon do cheann go réidh mall chuig do ghualainn ar dheis chun na matáin ar an taobh clé de do mhuineál a shíneadh go réidh. Fan mar sin ar feadh 5 shoicind. Ansin, claon do cheann ar chlé chun an taobh eile a shíneadh. Déan seo faoi dhó don dá thaobh. התחל כאשר הראש בתנוחה נוחה. אז הטה את הראש באיטיות לעבר כתף ימין למתיחה עדינה של השרירים שבצד שמאל של צווארך. השאר במצב זה למשך 5 שניות. לאחר מכן הטה את ראשך לצד שמאל למתיחת הצד השני. חזור פעמיים על כך צד. Krenite sa glavom iz nultog položaja. Polagano nagnite glavu udesno prema ramenu da se istegnu mišići vrata s lijeve strane. Zadržite položaj nekoliko sekundi. Zatim, nagnite glavu prema lijevom ramenu i osjetite istezanje mišića vrata desne strane. Ponovite vježbu nekoliko puta. Tartsa fejét egy kényelmes, egyenes pozícióban. Lassan hajtsa fejét a jobb vállára, hogy enyhén megfeszüljenek bal vállának izmai. Tartsa ezt a helyzetet 5 másodpercig. Ezután hajtsa fejét balra a másik oldal nyújtásához. Mindkét oldalra kétszer végezze el a gyakorlatot. Mulailah dengan kepala Anda dalam posisi lurus yang nyaman. Kemudian, perlahan-lahan miringkan kepala ke bahu kanan untuk meregangkan otot-otot di sisi kiri leher Anda dengan lembut. Tahan posisi ini selama 5 detik. Kemudian, miringkan kepala Anda ke sisi kiri untuk meregangkan sisi lainnya. Lakukan ini dua kali untuk setiap sisi. Comincia con la testa nella normale posizione diritta. Quindi inclinala lentamente verso la spalla destra per stirare delicatamente i muscoli sul lato sinistro del collo. Mantieni per 5 secondi. Ora inclina la testa verso sinistra per stirare l'altro lato. Ripeti 2 volte per ogni lato. 先ず、頭をまっすぐにしてください。次に、首の左側の筋肉を伸ばすように、右肩へ頭をゆっくり傾けてください。5秒間保持してください。次に、反対側を伸ばすために左側への頭を傾けてください。各々これを2度繰り返してください。 머리를 편안한 방향으로 뻗습니다. 그리고 느리게 머리를 오른쪽 어깨 쪽으로 기울여 목의 왼쪽 근육을 부드럽게 뻗을 수 있게 합니다. 이 동작을 5초 동안 유지합니다. 그리고, 머리를 왼쪽으로 기울여 반대쪽으로 뻗습니다. 이 동작을 각각 2번 합니다. Pradėk laikydamas savo galvą patogioje pozicijoje. Tada lėtai palenk galvą link dešinio peties, jog išsitemptų kairios kaklo pusės raumenys. Pabūk šioje pozoje 5-ias sekundes. Tada palenk galvą link kairio peties, taip įtempdamas dešinės pusės kaklo raumenis. Pakartok šį pratimą du kartus kiekvienai pusei. Se rett frem og finn en behagelig posisjon med hodet. Legg så høyre øre sakte mot høyre skulder slik at du forsiktig strekker musklene på venstre side av nakken. Hold i 5 sekunder. Gjenta så hele øvelsen med venstre øre mot venstre skulder. Gjenta begge øvelsene 2 ganger til hver side. Begin met je hoofd in een comfortabele rechte positie. Kantel dan langzaam je hoofd naar je rechterschouder toe, en strek daarmee de spieren aan de linkerkant van je nek. Hou deze positie 5 seconden vast. Daarna kantel je je hoofd naar de linkerschouder toe om de rechter nekspieren te strekken. Herhaal deze oefening twee keer voor elke kant. Zacznij z głową wygodnie wyprostowaną. Natępnie powoli pochyl głowę na prawy bark by delikatnie napiąć mieśnie lewej strony szyi. Wytrzymaj 5 sekund. Potem pochyl głowę na lewą stronę by napiąć mięśnie z drugiej strony. Powtórz to dwa razy dla każdej strony. Comece com a cabeça em posição erecta confortável. Lentamente, incline a cabeça totalmente para o ombro direito e mantenha a posição por cinco segundos. Incline totalmente para a esquerda e mantenha por outros cinco segundos. Repita o exercício duas vezes. Comece com a cabeça comodamente em posição ereta. Incline sua cabeça lentamente até o ombro direito, esticando suavemente os músculos do lado esquerdo do pescoço. Mantenha essa posição durante 5 segundos. Então, incline a cabeça para o lado esquerdo para esticar o lado direito. Faça este movimento duas vezes para cada lado. Începeți prin a găsi o poziție confortabilă a capului. Apoi, înclinați capul încet spre umărul drept pentru a întinde ușor mușchii de pe partea stânga a gâtului dumneavoastră. Mențineți poziția pentru 5 secunde. Apoi, înclinați ușor capul spre umărul stâng pentru a întinde cealaltă parte. Faceți acest lucru de două ori pentru fiecare parte. Сделайте голову прямо. Затем, медленно наклоните голову к правому плечу, чтобы мягко растянуть мускулы на левой стороне шеи. Задержитесь в этом положение в течение 5 секунд. Затем, наклоните голову к левой стороне, чтобы растянуть мышцы на другой стороне. Сделайте это дважды для каждой стороны. Začnite s hlavou pohodlne vzpriamenou. Pomaly ju nakláňajte k pravému plecu, aby ste mierne natiahli svaly na ľavej strane krku. Vydržte takto 5 sekúnd. Potom nakláňajte hlavu k ľavému plecu, čím natiahnete svaly napravo. Urobte to 2x pre obe strany. Začnite z glavo v udobni pokončni poziciji. Nato počasi nagnite glavo proti svoji desni rami, tako, da se raztegnejo mišice na levi strani vrata. Ostanite v tem položaju 5 sekund. Nato nagnite glavo proti levi, da raztegnete še drugo stran. To izvedite dvakrat za vsako stran. Krenite sa glavom iz uspravnog položaja. Polako nagnite glavu udesno prema ramenu da se istegnu mišići vrata s leve strane. Zadržite položaj nekoliko sekundi. Zatim, polako nagnite glavu prema levom ramenu da osetite istezanje mišića vrata desne strane. Ponovite vežbu nekoliko puta. Se rakt fram och hitta en behaglig position med huvudet. Lägg sedan högra örat mot högra skuldran så att du försiktigt sträcker musklerna på vänstra sidan av nacken. Håll kvar i 5 sekunder. Upprepa hela övningen med vänster öra mot vänster skuldra. Upprepa båda övningarna 2 gånger till på varje sida. Bu alıştırmaya başınız düz ve rahat bir konumdayken başlayın. Sonra başınızı sağ omzunuza doğru eğin ve ensenizin sol tarafındaki kasları gerin. Bu konumda 5 saniye kadar kaldıktan sonra başınızı diğer tarafı germek için sol tarafa doğru eğin. Bu alıştırmayı her iki taraf için ikişer kez tekrarlayın. Розпочніть вправу, розмістивши голову прямо. Потім повільно нахиліть її до правого плеча, щоб м'яко розтягнути м'язи на лівій стороні шиї. Затримайтеся у цьому положенні протягом 5 секунд. Після цього нахиліть голову до лівої сторони, щоб розтягнути м'язи на іншій стороні. 开始时您的头处于舒适的笔直状态。然后,缓慢的将头倾斜在右肩上,轻轻的拉伸您脖子左边的肌肉,保持这个姿势五秒钟。然后,慢慢的将头倾斜到左肩,以伸展另外一边。每边各做两次。 開始時您的頭處於舒適的筆直狀態。然後,緩慢的將頭傾斜在右肩上,輕輕的伸展您的左邊脖子,保持這個姿勢五秒鐘。然後,慢慢的將頭傾斜到左肩,以伸展另外一邊的脖子。每邊各做兩次。 Backward shoulder stretch Разтягане на рамената назад. Estirament de muscles cap enrere Protahování ramen nazad Baglæns skulderstræk Schultern rückwärts strecken Τέντωμα των ώμων προς τα πίσω Estiramiento hacia atrás de hombros Tahapoole õlgade venitus Sorbaldak atzerantz luzatu Backward shoulder stretch Olkapään venytys taaksepäin Étirement d'épaule arrière Síneadh ar gcúl do na guaillí מתיחת כתף אחורית Istezanje ramena unazad Hátsó vállnyújtás Peregangan bahu ke belakang Stretching delle spalle all'indietro 肩を後ろにストレッチ 뒤쪽으로 어깨를 뻗습니다. Atbulinis pečių įtempimas Bakover skulderstrekk Achterwaarts schouders strekken Rozciąganie barków za plecami Esticar o ombro para trás Alongamento atrás dos ombros Întindeți umerii în spate Обратное потягивание плеча Zadné ponaťahovanie pliec Pretegovanje ramen v nazaj Istezanje ramena unazad Sträck ut skuldrorna bakåt Omuz arkası kaslarını germe Зворотнє розтягування плечей 后肩伸展 後肩伸展 Interlace your fingers behind your back. Then turn your elbows gently inward, while straightening your arms. Hold this position for 5 to 15 seconds, and repeat this exercise twice. Сплетете пръсти зад гърба си. После внимателно завъртете лактите навътре леко изпъвайки ръцете. Задръжте в тази позиция от 5 до 15 секунди и повторете упражнеието. Entrellaceu els dits per darrere de l'esquena. Gireu els colzes lleugerament cap a dins, mentre estireu els braços. Mantingueu aquesta posició entre 5 i 15 segons, i repetiu l'exercici dues vegades. Propleťte prsty za zády. Následně zlehka vytočte oba lokty jeden ke druhému, až se paže narovnají. Zůstaňte v této poloze po dobu 5 až 15 sekund – cvik dvakrát zopakujte. Flet fingrene bag ryggen. Drej albuerne forsigtigt indad, mens du strækker dine arme. Hold stillingen i 5 til 15 sekunder. Gentag øvelsen to gange. Legen Sie hinter dem Rücken die Finger ineinander. Dann drehen sie die Ellenbogen sanft einwärts, während Sie die Arme strecken. Behalten Sie diese Position für 5 bis 15 Sekunden bei und wiederholen Sie diese Übung zweimal. Ενώστε τα δάχτυλά σας πίσω από την πλάτη. Ύστερα σπρώξτε απαλά τους ώμους προς τα μέσα, τεντώνοντας συγχρόνως τα χέρια. Κρατήστε αυτή τη στάση για περίπου 5 με 15 δευτερόλεπτα, και επαναλάβετε την άσκηση δύο φορές. Entrelace los dedos de las manos por detrás de la espalda. Después mueva los codos hacia dentro mientras extiende los brazos. Manténgase en esta posición durante 5 a 15 segundos y repita el ejercicio dos veces. Pane käed selja taha nii, et näpud oleks põimitud. Nüüd liiguta oma õlgasid kergelt ettepoole, samal ajal oma käsi sirgemaks lükates. Hoia seda asendit 5 kuni 15 sekundit ja niiviisi kaks korda. Eskuetako hatzak ahurren atzetik korapilatu. Eraman ukondoak barrurantz besoak luzatzen dituzun heinean. 5-15 segundu bitartean egon horrela eta ariketa bi aldiz errepikatu. انگشت هایتان را در پشتتان به هم بپیچانید. سپس آرنج هایتان را به آرامی به درون بپیچانید، در حالی که بازوهایتان را راست می کنید. این حالت را 5 تا 15 ثانیه نگه دارید، و این تمرین را دو بار انجام دهید. Limitä sormesi selkäsi takana. Käännä sitten kyynärpääsi varoen sisäänpäin suoristaen käsivarsiasi. Pidä tämä asento viidestä 15:een sekuntia ja toista harjoite kahdesti. Croisez les mains derrière le dos. Tournez légèrement les coudes vers l'intérieur tout en tendant les bras. Maintenez cette position pendant 5 à 15 secondes, puis recommencez. Snaidhm do mhéara ina chéile taobh thiar de do dhroim. Ina dhiaidh sin, cas d'uillinneacha go réidh isteach agus dírigh do lámha. Fan mar sin ar feadh 5 go 15 shoicind, agus déan faoi dhó an cleachtadh seo. שלב את אצבעותיך מאחרי הגב. אחר כך סובב בעדינות את המרפקים פנימה, תוך כדי ישור הידים. השאר במצב זה למשך 5 עד 15 שניות, ואז חזור על התרגיל פעמים. Isprepletite prste iza leđa. Sada lagano pomaknite laktove prema unutra dok istovremeno ispružate ruke od sebe. Zadržite položaj 5 do 15 sekundi, te ponovite vježbu. Kulcsolja össze ujjait a háta mögött. Ezután óvatosan közelítse egymáshoz könyökeit, amíg ki nem egyenesednek karjai. Tartsa ezt a helyzetet 5–15 másodpercig, majd ismételje meg a gyakorlatot kétszer. Jalin jari-jari Anda di belakang punggung. Kemudian putar siku ke dalam dengan lembut, sambil meluruskan lengan Anda. Tahan posisi ini selama 5 hingga 15 detik, dan ulangi latihan ini dua kali. Intreccia le dita dietro la schiena. Poi ruota delicatamente i gomiti verso l'interno, mentre stiri le braccia. Tieni questa posizione da 5 a 15 secondi, e ripeti l'esercizio 2 volte. 背の後ろで指を組み合わせてください。次に、腕を真っすぐにしたまま、肘をゆっくりと内側に動かしてください。5~15秒間保持します。これを2度繰り返してください 손가락을 등 뒤로 꼽니다. 그리고나서 팔꿈치를 부드럽게 안쪽으로 돌리고, 그러면서 팔을 뻗습니다. 이 동작을 5-15초 동안 유지하고, 이 운동을 두번 반복합니다. Sunerk savo pirštus už nugaros. Tada švelniai pasuk savo alkūnes į vidų tiesindamas savo rankas. Pabūk tokioje pozoje nuo 5 iki 15 sekundžių. Pakartok šį pratimą du kartus. Flett fingrene bak ryggen. Drei albuene forsiktig innover, mens du strekker armene. Hold denne stillingen i 5 til 15 sekunder. Gjenta øvelsen 2 ganger. Kruis je vingers achter je rug. Draai je ellebogen naar binnen toe terwijl je je armen strekt. Hou deze positie 5 tot 15 seconden vast. Herhaal deze oefening. Spleć palce za plecami. Zegnij delikatnie łokcie do wnętrza jednocześnie wyprostowując ramiona. Wytrzymaj w tej pozycji 5 do 15 sekund i powtórz ćwiczenie dwa razy. Entrelace os dedos atrás das costas. Suavemente, gire os cotovelos para dentro, enquanto endireita os braços. Mantenha a posição entre cinco a quinze segundos e repita o exercício duas vezes. Entrelace os dedos atrás das costas. Mova os cotovelos para dentro extendendo os braços. Mantenha-se nesta posição durante 5 a 15 segundos e repita o exercício duas vezes. Împreunați-vă mâinile la spate cu degetele întrețesute. Apoi întoarceți-vă coatele ușor spre interior în timp ce vă îndreptați mâinile. Mențineți această poziție pentru 5 până la 15 secunde și repetați exercițiul de două ori. Переплетите пальцы позади спины. Затем, медленно выгните локти внутрь, выпрямляя руки. Задержитесь в таком положении от 5 до 15 секунд и повторите упражнение дважды. Prepleťte si prsty za chrbtom. Otočte si lakte zľahka dovnútra až po narovnanie rúk. Zostaňte tak 5 až 15 sekúnd. Opakujte cvik 2x. Spletite prste za hrbtom. Obrnite komolce rahlo navznoter medtem ko stegnete roke. Zadržite to pozicijo za 5 do 15 sekund in ponovite vajo dvakrat. Isprepletite prste iza leđa. Sada lagano pomerite laktove prema unutra dok istovremeno ispružate ruke od sebe. Zadržite položaj 5 do 15 sekundi, pa ponovite vežbu. Fläta fingrarna bakom ryggen. Vrid dina armbågar försiktigt innåt, samtidigt som du sträcker på armarna. Håll kvar i denna position mellan 5 och 15 sekunder, och upprepa denna övning två gånger. Parmaklarınızı arkanızda kavuşturun, sonra dirseklerinizi yumuşakça içeriye doğru döndürün ve bu sırada kollarınızı düz biçimde uzatın. 5 ila 15 saniye kadar bu konumda kalın ve alıştırmayı iki kez tekrarlayın. Сплетіть пальці за спиною. Потім повільно вигніть лікті всередину, випрямляючи руки. Затримайтеся в такому положенні від 5 до 15 секунд і повторіть вправу двічі. 在您的背后交叉手指。然后将胳膊肘轻轻地往里收,将手臂伸直。保持这个姿势五到十五秒,然后重复这个动作两次。 在您的背後交叉手指頭。然後將胳膊輕微的往前,以弄直手臂。保持這個姿勢五到十五秒。然後重複這個動作兩次。 Move the eyes Движете очите Moveu els ulls Pohybování očima Bevæg øjnene Die Augen bewegen Κινήστε τα μάτια Mueva los ojos Liiguta silmasid Begiak mugitu چشم ها را حرکت دهید Liikuta silmiä Bougez les yeux Bog do shúile הזזת העיניים Pomičite oči Szemkörzés Gerakkan mata Muovi gli occhi 目の運動 눈을 움직입니다. Pajudink akis Beveg øynene Beweeg de ogen Poruszanie oczami Mover os olhos Mova os olhos Mișcați-vă ochii Движение глазами Pohyb očí Premikajte oči Pomerajte oči Rör på ögonen కళ్ళని కదపండి Gözleri hareket ettirin Рух очима 眼球运动 眼球運動 Look at the upper left corner of the outside border of your monitor. Follow the border slowly to the upper right corner. Continue to the next corner, until you got around it two times. Then, reverse the exercise. Погледнете към външния ръб на горния ляв ъгъл на вашият монитор. Проследете бавно с поглед ръба до горния десен ъгъл. Продължете към следващият ъгъл докато направите две обиколки. После направете упражнението и в обратна посока. Mireu el cantó superior esquerre del contorn exterior del vostre monitor. Resseguiu el contorn lentament cap al cantó superior dret. Continueu cap al següent cantó, fins a haver completat dues voltes. A continuació, invertiu l'exercici. Dívejte se na horní levý roh vnějšího okraje svého monitoru. Sledujte okraj pomalu do horního pravého rohu. Pokračujte do dalšího rohu, dokud monitor neobejdete dvakrát. Potom opakujte cvik v obráceném směru. Kig på øverste venstre hjørne af den yderste kant på din skærm. Følg kanten langsomt med øjnene til det øvre højre hjørne. Gentag til du når næste hjørne osv, indtil du er nået hele vejen rundt to gange, Gentag øvelsen den modsatte vej rundt. Schauen Sie auf die obere linke Ecke des Außenrands Ihres Bildschirms. Folgen Sie dem Rand langsam bis zur oberen rechten Ecke. Setzen Sie bis zur nächsten Ecke fort bis sie ihn zweimal umrundet haben. Dann wiederholen Sie die Übung in umgekehrter Richtung. Κοιτάξτε την άνω αριστερή γωνία του πλαισίου της οθόνης σας. Ακολουθήστε με το βλέμμα σας το πλαίσιο μέχρι τη δεξιά γωνία. Συνεχίστε με τον ίδιο τρόπο, μέχρι να "γυρίσετε" το πλαίσιο δύο φορές. Επαναλάβετε την άσκηση από τα δεξιά προς τα αριστερά. Mire a la esquina superior izquierda del borde externo de su monitor. Siga el borde lentamente hasta la esquina superior derecha. Siga hasta la esquina siguiente, hasta que haya dado dos vueltas. Haga este ejercicio en sentido contrario. Vaata oma monitori vasaku ääre ülemist nurka. Liiguta pilku aeglaselt parema ülemise ääre suunas. Jätka samamoodi järgmise nurga suunas, kuni oled teinud kaks ringi. Seejärel korda sama harjutust muutes liikumise suunda. Monitorearen goiko ezkerreko ertzari begiratu. Poliki poliki begirada eskuineko ertzeraino eraman, eta horrela ertz guztiak birritan pasatu arte. Gero ariketa alderantziz egin. به گوشه ی بالایی سمت چپ لبه ی خارجی مانیتورتان نگاه کنید. لبه را به آرامی تا گوشه ی سمت راست دنبال کنید. ادامه دهید برای گوشه ی بعدی، هنگامی که دوبار دور آن را دنبال کرده باشید. سپس، تمرین را تا دفعه ی بعد کنار بگذارید. Katso näyttösi reunuksen vasempaan yläkulmaan. Seuraa reunusta oikeaan yläkulmaan. Jatka aina seuraavaan kulmaan kunnes olet kiertänyt reunuksen kahdesti. Tee sitten harjoite toiseen suuntaan. Regardez le coin en haut à gauche de votre écran. Puis suivez lentement des yeux la bordure supérieure de votre écran jusqu'au coin en haut à droite. Faites le tour complet de l'écran en allant aux autres coins. Faites le tour de l'écran deux fois dans un sens, puis deux fois dans le sens inverse. Féach ar an gcúinne ar barr an taoibh chlé d'imeall an scáileán agat. Lean an t-imeall go mall le do shúile go dtí an cúinne ar barr an taoibh dheise. Lean ar aghaidh go dtí an chéad chúinne eile go dtí go bhfuil sé leanta agat faoi dhó. Ansin, déan arís é ach téigh sa treo eile. התבונן בפינה השמאלית העליונה של המסגרת החיצונית של הצג. עקוב אחר המסגרת באיטיות עד לפינה הימנית העליונה. המשך לפינה הבאה, עד שתעשה שני סיבובים. לאחר מכן הפוך את כיוון התרגיל. Usmjerite pogled u gornji lijevi kut monitora. Polagano pratite rub monitora do gornjeg desnog kuta. Nastavite do sljedećeg kuta dok ne napravite dva puna kruga. Zatim ponovite u drugu stranu. Nézze a képernyő kávájának bal felső sarkát. Lassan kövesse szemével – feje mozgatása nélkül – a keretet a jobb felső sarokig. Folytassa ezt az óra járásának irányában két körön keresztül. Ezután végezze el a gyakorlatot visszafelé. Lihatlah sudut kiri atas batas luar monitor Anda. Ikuti perbatasan perlahan ke sudut kanan atas. Lanjutkan ke sudut berikutnya, sampai Anda berhasil dua kali. Kemudian, balikkan latihan. Guarda l'angolo in alto a sinistra del bordo esterno del monitor. Segui il bordo lentamente fino all'angolo destro. Continua fino allo spigolo successivo, fino a completare il giro 2 volte. Poi, inverti l'esercizio. モニターの外側の上左隅を見てください。上右隅までゆっくりと視線を移してください。同じように次の隅まで視線を移し、2回転してください。次に反対まわりで同じように行ってください。 모니터 바깥 왼쪽 상단 구석을 바라봅니다. 바깥을 따라서 느리게 위로하여 오른쪽 구석으로 이동합니다. 다음 구석까지 계속하여, 2바뀌 돌 때까지 합니다. 그리고 반대로 운동합니다. Žiūrėk į viršutinį dešinį savo vaizduoklio korpuso kampą. Lėtai sek akimis jo remeliu į viršutinį kairį kampą. Tesk iki kito kampo, kol apsuksi du ratus. Tada pakeisk kryptį ir tęsk pratimą. Se på øverste venstre hjørne av den ytterste kanten på skjermen din. Følg kanten langsomt med øynene til det øvre høyre hjørnet. Gjenta til du når neste hjørne osv, inntil du har nådd rundt hele veien to ganger. Gjenta øvelsen den motsatte veien rundt. Kijk naar de hoek linksboven van de buitenrand van je monitor. Volg langzaam met je ogen de buitenrand van de monitor naar de hoek rechtsboven. Vervolg de beweging naar de volgende hoek, totdat je twee keer rond geweest bent. Herhaal daarna de beweging in tegengestelde richting. Spójrz na górny lewy róg monitora. Powoli przesuwaj wzrok do górnego prawego rogu. Kontynuuj do następnego rogu dopóki nie okrążysz w ten sposób monitora dwukrotnie. Następnie odwróć kierunek ćwiczenia. Olhe para o canto superior esquerdo do seu monitor. Siga o contorno do monitor de canto a canto até completar duas voltas. Repita o exercício em sentido contrário. Olhe o canto superior esquerdo da borda externa do seu monitor. Siga a borda lentamente até o canto superior direito. Siga até o canto seguinte, até que tenha dado duas voltas. Faça este exercício no sentido contrário. Priviți la colțul din stânga sus al marginii monitorului. Urmăriți marginea încet către colțul din dreapta sus. Continuați la celălalt colț până când înconjurați monitorul cu privirea de două ori. Apoi repetați exercițiul în direcția inversă. Посмотрите на левый верхний угол корпуса монитора. Медленно переместите взгляд к правому верхнему углу. И так далее, пока не обведёте монитор взглядом два раза. Повторите упражнения перемещая взгляд в обратном направлении. Dívajte sa na ľavý horný roh monitora, vonkajší okraj. Sledujte okraj pomaly doprava až do pravého horného rohu. Pokračujte do ďalšieho rohu, až kým celý monitor neobídete 2x. Potom cvik zopakujte v opačnom smere. Poglejte v zgornji levi kot zunanjega roba monitorja. Počasi sledite robu do zgornjega desnega kota. Nadaljujte do naslednjega kota, dokler ne greste okoli zaslona dvakrat. Nato ponovite vajo v obratni smeri. Usmerite pogled u gornji levi ugao monitora. Polako pogledom pratite ivicu monitora do gornjeg desnog ugla. Nastavite do sledećeg ugla dok ne napravite dva puna kruga. Zatim ponovite u drugu stranu. Se på översta vänstra hörnet på den yttersta kanten på din skärm. Följ kanten långsamt med ögonen till det övre högra hörnet. Fortsätt till nästa hörna tills du har gått runt två gånger. Upprepa övningen fast det motsatta hållet. Monitörünüzün dış çerçevesinin sol üst köşesine bakın. Çerçeveyi yavaşça sağ üst köşeye kadar gözünüzle izleyin. Sonra sağ alttaki köşeye ve sonunda sol alttaki köşeye kadar devam edin. Çerçeve üzerinde iki kez döndükten sonra aynı alıştırmayı tersi yönünde iki kez daha tekrarlayın. Подивіться на лівий верхній кут корпуса монітора. Повільно перемістіть погляд до правого верхнього кута. Продовжуйте, доки не обійдете поглядом всі кути монітора двічі. Повторіть вправу, переміщуючи погляд у зворотньому напрямку. 注视您的屏幕左上角的边框。沿着边框注视到右上角。继续到下个角落直到环绕两次。然后反向进行。 注視您的螢幕左上角落的邊框。沿著邊框注視到右上腳略。繼續到下個角落直到重複兩次。然後反向進行。 Train focusing the eyes Тренировка за фокусиране на очите Entrenament del focus dels ulls Procvičování zaostřování pohledu Træn øjen-fokusering Das Fokussieren mit den Augen üben Εστιάζοντας σε διαφορετικά σημεία Entrenamiento del enfoque de los ojos Harjuta silmade fokusseerimist Begien enfokea trebatu متمرکز کردن چشم ها را تمرین کنید Harjoittele katseesi tarkentamista Focalisation Oil do shúile díriú ar áit amháin אימון התמקדות העיניים Treniranje fokusiranja očiju A szemek edzése fókuszálással Latih pemfokusan mata Allenamento della messa a fuoco degli occhi 目の焦点合わせ運動 눈 응시 훈련 Pasitreniruok fokusuoti akis Tren øye fokusering Train het focussen van de ogen Trening akomodacji Treinar o foco dos olhos Treinamento de foco dos olhos Exersați privitul într-un punct fix Потренируйтесь фокусировать глаза Cvik pre zaostrovanie očí Vadite izostrovanje z očmi Treniranje fokusiranja očiju Träna fokusering med ögonen Gözleri odaklamaya alıştırın Тренування фокусування очей 训练眼球焦点 訓練眼球焦點 Look for the furthest point you can see behind your monitor. Focus your eyes on the remote point. Then focus on your monitor border. Repeat it. If you can't look very far from your monitor, face another direction with a longer view. Then switch your focus between a distant object and a pen held at the same distance from your eyes as your monitor. Вгледайте се в най-далечната точка, която можете да видите зад монитора си. Фокусирайте очи в отдалечената точка, после ги фокусирайте върху ръба по монитора. Повторете. Ако нямате достатъчно видима площ зад монитора, обърнете се в друга посока където имате по-далечен изглед и тогава прехвърляйте фокуса между отдалечен обект и писалка която държите на същото разстояние от очите си като монитора. Busqueu el punt més llunyà que pugueu veure darrere del vostre monitor. Enfoqueu els vostres ulls al punt remot. Després, enfoqueu el contorn del vostre monitor. Torneu-ho a repetir. Si no podeu mirar massa lluny del vostre monitor, encareu-vos cap a una altra direcció amb una vista més llarga. Canvieu el focus entre un objecte distant i un bolígraf mantingut a la mateixa distància dels vostres ulls que el monitor. Najděte nejvzdálenější bod, který můžete za monitorem vidět. Zaostřete oči na tento vzdálený bod. Potom zaostřete na rám monitoru. Opakujte to. Pokud se nemůžete dívat velmi daleko za monitor, najděte si jiný směr s delší vzdáleností pohledu. Potom zaostřujte mezi vzdáleným objektem a tužkou, drženou ve stejné vzdálenosti od očí jako je váš monitor. Fokuser på det fjerneste punkt du kan se bagved din skærm. Efter et par sekunder, fokuser på kanten af din skærm. Gentag øvelsen. Brug evt. en kuglepen i stedet for kanten af skærmen i en anden retning end skærmen, hvis du har bedre afstand der. Schauen Sie den entferntesten Punkt, den Sie hinter Ihrem Bildschirm sehen können. Fixieren Sie den enfernten Punkt. Nach ein paar Sekunden fokussieren Sie den Bildschirmrand. Wiederholen Sie. Falls Sie von ihrem Bildschirm aus nicht sehr weit blicken können, benutzen Sie stattdessen z. B. einen Stift und halten Sie Ihn in Bildschirmentfernung vor das Gesicht. Κοιτάξτε το πιο απομακρυσμένο σημείο πίσω από την οθόνη σας. Εστιάστε το βλέμμα σας πάνω του. Ύστερα εστιάστε στο πλαίσιο της οθόνης. Επαναλάβετε. Αν δεν μπορείτε να δείτε πολύ μακριά από την οθόνη, γυρίστε προς μια κατεύθυνση με πιο ανοιχτή θέα, εστιάζοντας μια στο μακρινό αντικείμενο και μια σε ένα στυλό που θα απέχει από τα μάτια σας όσο και η οθόνη σας όταν εργάζεστε. Mire al punto más lejano que pueda alcanzar tras su monitor. Enfoque la vista en ese punto lejano. Después de unos segundos, enfoque en el borde del monitor. Repítalo. Si no puede ver mucho más allá de su monitor, use por ejemplo un bolígrafo y manténgalo a la misma distancia que el monitor. Vaata kaugeimasse punkti, mida sa näed enda monitori taga. Fokusseeri oma pilk sellele punktile. Seejärel liiguta pilk tagasi oma monitori servale. Korda harjutust. Kui monitori taga pole piisavalt pikka ruumi, keera nägu teise suunda, kus on parem vaateväli. Seejärel liiguta oma pilku kõige kaugemal asetsevale objektile ning siis enda silmade ette, monitoriga võrdsele kaugusele tõstetud pliaatsile, Monitorearengandik urrunen egon daitekeen puntura begira ezazu. Begiak urrutiko puntu hartara enfokatu. Gero zure monitorearen ertzari enfokatu. Errepikatu. Monitoretik urrunago ezin baduzu begiratu, boligrafo bat erabili eta monitorearen distantzian eduki. نگاه کنید برای دورترین نقطه ای که پشت مانیتورتان می توانید ببینید. چشم هایتان را روی نقطه ی دور متمرکز کنید. سپس روی لبه ی مانیتور تمرکز کنید. آن را تکرار کنید. اگر شما نمی توانید خیلی دورتر از مانیتورتان را ببینید، رو به روی یک مسیر با نمای طولانی تر بایستید. سپس تمرکزتان را بین یک شیء دورتر و یک خودکار در فاصله ی چشم هایتان تا مانیتور تغییر دهید. Katso kauimmaiseen pisteeseen näyttösi takana. Tarkenna silmäsi kaukaiseen kaukaiseen pisteeseen. Tarkenna sitten näyttösi reunukseen. Toista. Jos et pysty katsomaan kovin kauas näytöstäsi, käänny toiseen suuntaan jonne näet pidemmälle. Vaihda tarkennustasi sitten kaukaisen esineen ja kynän välillä, jota pidät samalla etäisyydellä kuin näyttöäsi. Fixez le point le plus éloigné derrière votre moniteur quelques secondes. Faites ensuite le point sur le bord de votre moniteur quelques secondes. Recommencez. S'il ne vous est pas possible de regarder loin derrière votre moniteur, utilisez un stylo, par exemple, et gardez-le à la même distance que votre moniteur. Aimsigh le do shúile an áit is faide uait lastall scáileán do ríomhaire. Dírigh do shúile ar an áit atá i bhfad uait. Ina dhiaidh sin, dírigh do shúile ar imeall an scáileáin. Déan arís é. Murar féidir leat breathnú ar rudaí i bhfad ó do scáileán, tabhair aghaidh ar threo eile ina bhfuil radharc níos faide ar fáil. Agus sin déanta agat, malartaigh do radharc idir réad atá i bhfad uait agus peann atá an fad céanna ó do shúile agus atá do scáileán. התבונן לעבר הנקודה הרחוקה ביותר שאתה יכול לראות מאחורי הצג. מקד את העיניים באותה נקודה רחוקה. כעת התמקד במסגרת הצג. חזור על כך. אם אינך יכול להתבונן הרחק מעבר לצג, פנה לכיוון אחר עם נוף רחוק יותר. אז שנה את המוקד בין עצם מרוחק לבין עט המוחזק באותו המרחק שבו צג שלך נמצא ביחס לעיניך. Pogledajte u najudaljeniju točku koju možete vidjeti iza svog monitora. Fokusirajte pogled na udaljenu točku. Sada fokusirajte pogled na rub monitora. Ako ne možete gledati daleko iza monitora, okrenite se u smjeru najudaljenije točke od vas u prostoriji. Mijenjajte fokus između udaljenog objekta i olovke koju držite na udaljenost sličnoj kao što je udaljen monitor dok radite. Keresse meg a monitora mögött a lehető legtávolabbi pontot és fókuszáljon rá szemével. Ezután fókuszáljon a képernyő kávájára. Ismételje meg. Ha nem tud elég messze nézni a képernyőtől, válasszon egy másik irányt és váltogassa a fókuszt a távoli alak és egy a monitor távolságában tartott toll között. Cari titik terjauh yang bisa Anda lihat di belakang monitor Anda. Fokuskan mata Anda pada titik jarak jauh. Kemudian fokus pada batas monitor Anda. Ulangi itu. Jika Anda tidak dapat melihat sangat jauh dari monitor Anda, hadapi arah lain dengan tampilan yang lebih panjang. Kemudian alihkan fokus Anda antara benda yang jauh dan pena yang dipegang pada jarak yang sama dari mata Anda dengan monitor Anda. Cerca il punto più lontano che puoi trovare oltre il tuo monitor. Focalizza lo sguardo su quel punto. Poi metti a fuoco il bordo del monitor. Ripeti. Se non hai niente che sia molto lontano dal monitor, prova in un'altra direzione. Quindi sposta la messa a fuoco da un oggeto a distanza ad una penna mantenuta alla distanza occhi-monitor. モニターの向こう側で見ることができる最も遠い場所を捜してください。その場所に目の焦点を合わせてください。次に、モニターの境目を注視してください。それを繰り返してください。モニターの向こう側であまり遠くを見ることができなければ、他の方向で探してください。遠くの場所とモニターと同じくらいの距離に置いた手とを交互に見てください。 모니터에서 가능한 먼 곳을 찾습니다. 눈을 먼 곳에 집중합니다. 그리고 모니터 바깥 쪽에 응시합니다. 이것을 반복합니다. 모니터 먼 곳을 볼 수 없다면 먼 곳을 볼 수 있는 곳을 찾습니다. 그리고 모니터에서 가까운 곳과 먼 사물 사이의 바꾸어 가며 응시합니다. Žiūrėk į tolimiausią tašką, kurį tu matai už savo vaizduoklio. Į jį sutelk žvilgsnį. Tada žvilgsnį perkelk į vaizduoklio remelį. Pakartok pratimą. Jei negali matyti labai toli nuo savo monitoriaus - pasisuk ten, kur toliausiai matai. Tada kėlinėk žvilgsnį tarp tolimo daikto ir tušinuko, laikomo tame pačiame tolyje kaip ir tavo vaizduoklis. Fokuser på det fjerneste punktet du kan se bak skjermen din. Etter et par sekunder, fokuser på kanten av skjermen. Hvis du ikke kan se noe særlig bak skjermen din, snu deg i en annen retning med bedre utsikt og bytt fokus mellom et fjernt objekt og en penn holdt i samme avstand som mellom øynene og skjermen din. Zoek naar het verste punt dat je kunt zien achter je monitor. Focus je ogen op dit punt. Na een paar seconden focus je op de rand van je monitor. Herhaal dit. Als je niet ver achter je monitor kunt kijken, gebruik dan een pen en zoek een ander punt. Spójrz na najdalszy punkt jaki możesz zobaczyć za monitorem i skup na nim zwrok. Po paru sekundach zogniskuj wzrok na krawędzi monitora. Powtórz to. Jeśli nie możesz patrzeć daleko za monitorem obróć się w stronę z najdłuższą perspektywą. Następnie przeność wzrok między odległym punktem i np. ołówkiem trzymanym w takiej samej odległości od oczu co twój monitor. Olhe para o ponto mais distante atrás do computador. Foque os olhos nesse ponto. Em seguida, foque os olhos no contorno do monitor. Repita. Se não conseguir olhar para muito longe do monitor, volte-se para outra direcção com maior distância visível. Em seguida, alterne o foc da vista entre um objecto distante e uma caneta segura à mesma distância do monitor. Olhe no ponto mais distante o possível atrás de seu monitor. Foque o olhar neste ponto distante. Depois foque na borda do monitor. Repita. Se não pode ver muito longe de seu monitor, olhe em outra direção com uma vista mais ampla. Então mude o foco entre um objeto distante e uma caneta à mesma distância dos seus olhos que o monitor. Priviți la cel mai îndepărtat punct pe care-l puteți vedea în spatele monitorului. Fixați privirea pe acel punct de la distanță. Apoi fixați privirea pe marginea monitorului. Repetați. Dacă nu puteți privi departe de monitor, priviți în altă parte ce vă permite o vedere mai depărtată. Fixați privirea pe un obiect aflat la distanță și apoi pe un stilou ținut la aceeași distanță de dumneavoastră ca și monitorul. Посмотрите на самую дальнюю точку, которые вы можете увидеть за своим монитором. Сфокусируйте взгляд на этой точке. После нескольких секунд сфокусируйтесь на мониторе. Повторите. Если вы не можете смотреть очень далеко от монитора используйте, например, ручку держа её на том же расстоянии,что и монитор. Pozrite sa na najvzdialenejší bod za Vaším monitorom. Na tento bod zaostrite svoj zrak. Potom zaostrite na rám monitoru. Opakujte to. Ak za monitorom nemáte dostatočne vzdialený bod, nájdite si iný smer, kam môžete zaostrovať do diaľky. Potom zaostrujte medzi vzdialeným objektom, a perom ktoré podržíte v rovnakej vzdialenosti od očí ako je váš monitor. Poglejte v najbolj oddaljeno točko, ki jo vidite za svojim zaslonom. Izostrite pogled na to oddaljeno točko. Nato izostrite na rob monitorja. Ponovite še enkrat. Če ne morete gledati zelo daleč za zaslonom, se obrnite v drugo smer, kjer imate širši pogled. Izostrite pogled med oddaljenim predmetom in peresom, ki ga držite na isti razdalji od oči kot je vaš zaslon. Pogledajte u najudaljeniju tačku koju možete videti iza svog monitora. Fokusirajte pogled na udaljenu tačku. Sada fokusirajte pogled na ivicu monitora. Ako ne možete gledati daleko iza monitora, uzmite olovku i okrenite se u smeru najudaljenije tačke od vas u prostoriji. Menjajte fokus između udaljenog objekta i olovke držeći je na sličnoj udaljenosti kao što je između vas i monitora. Se på den punkt som är längst bort bakom din skärm. Fokusera dina ögon på punkten. Fokusera sedan på kanten av din skärm. Upprepa det. Om du inte kan se speciellt långt bakom din skärm, vänd dig mot en annan riktning med längre utsikt. Byt fokus mellan en objekt långt bort och en penna som hålls på samma avstånd från dina ögon som din skärm. Monitörünüzün arkasında görebildiğiniz en uzak noktaya bakın. Gözlerinizi en uzaktaki noktaya odaklayın ve sonra bunu tekrarlayın. Eğer monitörünüzden çok uzağa bakamıyorsanız daha geniş görüşü olan bir başka yöne dönün ve gözlerinizi uzaktaki bir nesneye ve sonra monitör uzaklığında tuttuğunuz bir kaleme odaklamaya çalışın. Подивіться на найвіддаленішу точку, яку ви можете бачити за вашим монітором. Сфокусуйте погляд на цій точці. Після кількох секунд сфокусуйтесь на моніторі.Повторіть вправу. Якщо ви не можете дивитися далеко від монітора, використовуйте, наприклад, ручку, тримаючи її на тій самій відстані, що й монітор. 注视荧幕后面最远的那一点。将焦点放置在远端那点。几秒后将焦点放在荧幕的边缘。重复这个动作。如果您无法注视荧幕之后遥远的距离,可以用一只笔取代,并让它保持与荧幕一样远的距离。 注視螢幕後面最遠的那一點。將焦點放置在遠端那點。幾秒後將焦點放在螢幕的邊緣。重複這個動作。如果您無法注視螢幕之後遙遠的距離,可以用一枝筆取代,並讓它保持與螢幕一樣遠的距離。 Look into the darkness Вгледайте се в тъмнината Mireu l'oscuritat Pohled do tmy Se ind i mørke In die Dunkelheit schauen Κοιτάξτε στο σκοτάδι Mire en la oscuridad Vaata pimedusse Iluntasunari begira به تاریکی نگاه کنید Katso pimeyteen Regardez dans le noir Féach sa dorchadas התבוננות אל תוך החשיכה Pogledajte u tamu Pillantás a sötétségbe Lihat ke kegelapan Guarda nel buio 暗い場所を見る 어둠 속을 바라 봅니다. Pažvelk į tamsą Se inn i mørket Kijken in de duisternis Spojrzenie w ciemność Olhar para a escuridão Olhando no escuro Priviți în întuneric Посмотрите в темноту Pohľad do tmy Poglejte v temo Gledajte u tamu Se in i mörkret చీకటి లోనికి చూడండి Karanlığa bakın Дивитися у темряву 注视黑暗 注視黑暗 Cover your eyes with your palms in such way that you can still open your eyelids. Now open your eyes and look into the darkness of your palms. This exercise gives better relief to your eyes compared to simply closing them. Закрийте с длани очите си но така, че да можете да държите отворени клепачите си. Сега отворете очите си и се вгледайте в мрака във вашите длани. Това упражнение дава по-добро облекчение на очите Ви отколкото затварянето им. Cobriu-vos els ulls amb els vostres palmells de manera que encara pogueu obrir els parpalls. Ara obriu els ulls i mireu en la foscor dels vostres palmells. Aquest exercici dóna millor alleujament als vostres ulls comparat amb simplement tancar-los. Zakryjte si oči dlaněmi tak, abyste ovšem oči stále mohli otevřít. Nyní se otevřenýma očima dívejte do tmy ve svých dlaních. Toto cvičení očím uleví víc, než při pouhém jejich zavření. Hold dine hænder op foran øjnene således, at du stadig kan åbne øjnene. Åbn nu øjnene og se ind i mørket i dine håndflader. Øvelsen giver bedre afslapning til dine øjne sammenlignet med bare at lukke dem. Bedecken Sie die Augen mit den Handflächen, so dass sie die Augenlider immer noch öffnen können. Jetzt öffnen Sie die Augen und schauen Sie in die Dunkelheit Ihrer Handflächen. Diese Übung bringt Ihren Augen mehr Erholung als wenn Sie sie einfach schließen würden. Καλύψτε με τις παλάμες το πρόσωπό σας έτσι ώστε να μπορείτε να ανοίγετε τα μάτια σας. Ανοίξτε τα και κοιτάξτε μέσα στο σκοτάδι της κοιλότητας που έχουν σχηματίσει οι παλάμες σας. Με την άσκηση αυτή τα μάτια χαλαρώνουν καλύτερα από ό,τι αν τα κλείσετε απλώς. Cubra los ojos con las palmas de la manos de manera que pueda abrir los párpados. Abra los ojos y mire la oscuridad de sus palmas. Este ejercicio alivia más sus ojos que sólo cerrarlos. Kata oma silmad kätega nii, et sul oleks võimalik oma laugusid liigutada. Nüüd ava silmad ja vaata peopesadesse tekkinud pimedusse. See harjutus annab paremaid tulemusi kui lihtsalt silmade sulgemine. Estal itzazu eskuekin zure begiak irekita edukitzeko moduan. Gero begiak irekita, eskuen barruko iluntasunari begira egon. Ariketa honek begiei atseden handiagoa ematen die ixte soilak baino. با دست هایتان چشم ها را بپوشانید به نحوی که همچنان بتوانید پلک ها را باز نگه دارید. اکنون چشم هایتان را باز کنید و به تاریکی کف دستتان نگاه کنید.این کار در مقایسه با بستن چشم ها، تسکین بیش تری به چشم هایتان می دهد. Peitä silmäsi kämmenilläsi niin että voit vielä avata silmäluomesi. Avaa nyt silmäsi ja katso kämmentesi pimeyteen. Tämä harjoite rentouttaa silmiäsi paremmin verrattuna pelkkään niiden sulkemiseen. Couvrez-vous les yeux avec les mains, de manière à pouvoir quand même les ouvrir. Ouvrez les yeux et regardez dans la pénombre créée par vos mains. Cet exercice repose davantage les yeux que si vous vous contentez de les fermer. Clúdaigh do shúile le do bhosa i gcaoi is gur féidir leat do mhogaill súile fós a oscailt. Oscail anois do shúile agus féach ar an ndorchadas i do bhosa. Tugann an cleachtadh seo faoiseamh níos fearr do do shúile ná iad a dhúnadh amháin. כסה את עיניך בכפות הידים באופן שיאפשר לך להשאיר את העפעפיים פתוחים. כעת הסתכל אל תוך החשכה שבידיך. תרגיל זה נותן מנוחה טובה יותר לעיניים מאשר עצימתן. Pokrijte oči dlanovim na način da još uvijek možete podignuti kapke. Sada otvorite oči i gledajte u tamu svojih dlanova. Ova vježba bolje odmara vaše oči nego da ste ih samo zatvorili. Takarja el a tenyerével a szemeit úgy, hogy még ki tudja nyitni azokat. Most nyissa ki a szemeit és nézze a tenyerei sötétségét. Ez a módszer jobban nyugtatja szemeit, mintha csak egyszerűen becsukná őket. Tutupi mata Anda dengan telapak tangan sedemikian rupa sehingga Anda masih bisa membuka kelopak mata. Sekarang buka matamu dan lihat kegelapan telapak tanganmu. Latihan ini memberikan kelegaan yang lebih baik bagi mata Anda dibandingkan dengan hanya menutupnya. Copriti gli occhi con le mani in modo da lasciare aperte le palpebre. Ora apri gli occhi e guarda nel buio del palmo delle tue mani. Questo esercizio dà maggior sollievo agli occhi della semplice chiusura delle palpebre. まぶたを開けたまま手のひらで目を覆ってください。手のひらの中で目を開けて暗い手のひらの中を見てください。この方法は、まぶたを閉じる方法よりも、より、目を休めることが出来ます。 손바닥으로 눈을 덮는 데, 눈꺼풀이 뜰 수 있는 정도로 말이죠. 이제 눈을 뜨고서 손바닥의 어둠을 응시합니다. 이런 훈련은 단순히 눈을 감는 것과 비교하여 여러분에게 보다 높은 안정감을 줍니다. Uždenk akis savo delnais taip, jog vis dar galėtum atsimerkti. Dabar atsimerk ir žiūrėk į savo delnų tamsą. Šis pratimas suteikia didesnį palengvėjimą, nei paprasčiausiai jas užmerkus. Skjul øynene dine med håndflatene slik at du fortsatt kan åpne øyelokkene. Åpne nå øynene og se inn i mørket i håndflatene. Denne øvelsen gir bedre avlastning for øyene sammenlignet med bare å lukke de. Bedek je ogen met je handpalmen zodanig dat je wel nog je ogen kunt openen. Open nu je ogen en kijk in de duisternis van je handpalmen. Deze oefening geeft meer rust dan wanneer je je ogen alleen maar sluit. Zakryj oczy dłońmi tak żebyś mógł otworzyć oczy, ale jednocześnie nie docierało do nich światło. Teraz otwórz oczy i spójrz w ciemność. To ćwiczenie przynosi większą ulgę niż zwykłe zamknięcie oczu. Cubra os olhos com as palmas das mãos de tal forma que ainda consiga abrir as pálpebras. Agora, abra os olhos e olhe para a escuridão das palmas. Obtém maior alívio para os olhos com este exercício do que simplesmente fechando os olhos. Cubra os olhos com as palmas das mãos de maneira que você ainda possa abrir as pálpebras. Abra os olhos e olhe o escuro de suas palmas. Este exercício dá mais alívio aos seus olhos que somente fechá-los. Acoperiți-vă ochii cu palmele în așa fel încât să puteți să vă puteți mișca pleoapele. Acum deschideți ochii și priviți în întunericul creat de palmele dumneavoastră. Acest exercițiu vă relaxează ochii mai mult decât dacă i-ați ține închiși. Закройте глаза ладонями так, чтобы веки могли открываться. Теперь откройте глаза и посмотрите в темноту ваших ладоней. Это упражнение лучше помогает вашим глазам по сравнению с простым их закрытием. Zakryte si oči dlaňami tak, aby ste oči mohli ešte stále otvárať. Potom otvorte oči a dívajte sa do tmy vašich dlaní. Toto cvičenie uľaví Vašim očiam viac, než obyčajné zatvorenie. Pokrijte si oči z dlanmi na tak način, da še lahko odprete veke. Zdaj glejte v temo svojih dlani. Ta vaja veliko bolj pomaga očem kot pa da enostavno zaprete oči. Pokrijte oči dlanovim tako da još uvek možete podićii kapke. Sada otvorite oči i gledajte u tamu svojih dlanova. Ova vežba bolje odmara vaše oči nego da ste ih samo zatvorili. Täck för dina ögon med dina handflator på så sätt att du fortfarande kan öppna dina ögonlock. Öppna nu ögonen och se in i mörkret i handflatorna. Denna övning ger bättre avlastning för ögonen jämfört med att bara stänga dem. Gözlerinizi avuçlarınızla gözkapaklarınızı açabileceğiniz kadar kapatın, gözlerinizi açın ve avuçlarınızdaki karanlığa bakın. Bu alıştırma gözlerinizi basitçe kapatmaktan daha iyi bir rahatlama sağlar. Закрийте очі долонями так, щоб повіки могли відкриватися. Тепер відкрийте очі та подивіться у темряву ваших долонь. Ця вправа краще допомагає вашим очам, ніж коли ви просто їх заплющуєте. 用您的手掌遮住双眼,要使得可以继续睁开眼睛。现在睁开双眼,并注视手掌中的黑暗。相比于直接闭上双眼,这样可以让您的眼睛得到更好的休息。 用您的手掌蓋住雙眼,這樣一來您可以繼續張開眼皮。現在打開雙眼,並注視手掌中的黑暗。將較於直接閉上雙眼,這樣可以讓您的眼睛得到比較好的休息。 Move the shoulders Движете рамената Moveu els muscles Pohybování rameny Bevæg skuldrene Die Schultern bewegen Κινήστε τους ώμους Mueva de hombros Liiguta õlgasid Sorbaldak mugitu شانه ها را حرکت دهید Liikuta olkapäitä Bougez les épaules Bog do ghuaillí הזזת הכתפיים Pomičite ramena Vállkörzés Gerakkan bahu Muovi le spalle 肩を動かす 어깨를 움직입니다 Pajudink pečius Beveg skuldrene Beweeg de schouders Rozluźnianie barków Mover os ombros Mova os ombros Mișcați-vă umerii Движение плечами Pohyb ramien Premikajte ramena Pomerajte ramena Rör på skuldrorna భుజాలని కదపండి Omuzları hareket ettirin Рух плечима 肩膀运动 肩膀運動 Spin your right arm slowly round like a plane propeller beside your body. Do this 4 times forwards, 4 times backwards and relax for a few seconds. Repeat with the left arm. Завъртете бавно дясната си ръка в кръг покрай тялото като перка на самолет. Направете това 4 пъти напред, 4 пъти назад и се отпуснете за няколко секунди. Повторете и с лявата ръка. Gireu el braç dret lentament en cercles con una hèlice d'un avió, pel costat del cos. Feu això 4 vegades cap a davant i 4 vegades cap a enrere i relaxeu-vos durant uns segons. Repetiu-ho amb el braç esquerre. Kroužete pravou paží pomalu podél těla jako vrtule letadla. Udělejte to čtyřikrát dopředu, čtyřikrát dozadu a na chvíli se uvolněte. Opakujte s levou rukou. Sving langsomt højre arm rundt i store cirker helt oppe ved øret. Udfør 4 sving fremad, og 4 sving tilbage og slap af i et par skunder. Gentag øvelsen med venstre arm. Rotieren Sie den rechten Arm langsam im Kreis neben dem Körper wie einen Flugzeugpropeller. Machen Sie dies viermal im Uhrzeigersinn, viermal gegen den Uhrzeigersinn und entspannen Sie sich für ein paar Sekunden. Wiederholen Sie dies mit dem linken Arm. Περιστρέψτε αργά το δεξιό σας μπράτσο σαν έλικα αεροπλάνου, κρατώντας το κοντά στο σώμα σας. Επαναλάβετε 4 φορές προς τα μπροστά, 4 φορές προς τα πίσω και χαλαρώστε για μερικά δευτερόλεπτα. Επαναλάβετε με το αριστερό χέρι. Gire su brazo derecho lentamente como la hélice de un avión. Hágalo 4 veces en el sentido de las agujas del reloj, 4 en sentido contrario, y descanse unos segundos. Repítalo con el brazo izquierdo. Keeruta oma paremat kätt aeglaselt keha kõrval ringi nagu lennuki propellerit. Tee seda 4 korda edaspidi ja 4 korda tagurpidi ning lõdvestu mõneks sekundiks. Korda harjutust vasaku käega. Eskuin besoa biratu, hegazkinaren helizea bezala. Egin ezazu hau lau aldiz aurreraka eta beste lau atzeraka, eta segundu batzutan lasaitu. Ezkerreko besoarekin errepikatu. بازوی راستتان را به آرامی در کنار بدنتان بچرخانید (درست مانند پروانه ی هواپیما). این حرکت را 4 بار به سمت جلو و 4 بار به سمت عقب انجام دهید و برای چند ثانیه عضلات را شل کنید. سپس همین تمرین را برای دست چپ تکرار کنید. Pyöritä oikeaa käsivarttasi ympäri, kuin lentokoneen propelli, vartalosi vieressä. Tee tämä neljä kertaa eteen, neljä kertaa taakse ja rentoudu muutaman sekunnin ajan. Toista vasemmalla käsivarrella. Faites lentement tourner un bras sur le côté, comme une hélice. Faites 4 tours vers l'avant, puis 4 tours vers l'arrière. Relâchez quelques secondes. Recommencez avec l'autre bras. Cas go mall le hais do cholainn do dheasóg amhail is gur lián eitleáin é. Déan seo 4 huaire ar aghaidh, 4 huaire ar gcúl agus ansin lig do scíth ar feadh tamaillín. Déan an rud céanna le do chiotóg. סובב את ידך הימנית לאט כמו מדחף של מטוס לצד הגוף. עשה זאת 4 פעמים קדימה, 4 פעמים לאחור, ואז הרגע למשך מספר שניות. חזור על התרגיל עם היד השמאלית. Kružite desnom rukom kao propeler pored tijela. Ponovite nekoliko puta prema naprijed, zatim prema nazad i opustite ruku nekoliko sekundi. Zatim ponovite vježbu lijevom rukom. Végezzen négy-négy lassú malomkörzést előre és hátra, mindkét kezével. A gyakorlat felénél lazíthat egyet. Putar lengan kanan Anda perlahan-lahan seperti baling-baling pesawat di samping tubuh Anda. Lakukan ini 4 kali ke depan, 4 kali ke belakang dan rileks selama beberapa detik. Ulangi dengan lengan kiri. Stendi in basso il braccio destro e muovilo lentamente come un pendolo al lato del corpo. Fallo 4 volte in avanti e 4 volte all'indietro e rilassati per pochi secondi. Ripeti con il braccio sinistro. 右腕を身体に沿わせて、プロペラのようにゆっくり円形にまわしてください。前に4回、後ろに4回まわしたら、数秒間リラックスしてください。左の腕でも同じように繰り返してください。 오른쪽 팔을 느리게 몸의 옆으로 비행기 프로펠러처럼 돌립니다. 이것을 앞 쪽으로 4회 하고, 뒤쪽으로 4회 합니다. 그리고 잠깐 긴장을 풀고. 왼쪽 팔로 반복합니다. Lėtai suk savo dešinę ranką kaip lėktuvo propelerį ratu šalia savo kūno. Pasuk 4 kartus į priekį, 4 kartus atgal ir keliom sekundėm atsipalaiduok. Pakartok su kairia ranka. Sving langsomt høyre arm rundt i store sirkler som en propell på et fly. Gjørdette 4 ganger forover, 4 ganger bakover og slapp av i noen sekunder. Gjenta så det hele med venstre arm. Draai je rechterarm langzaam rond als een vliegtuigpropellor naast je lichaam. Doe dit vier keer voorwaarts, vier keer achterwaarts en ontspan een paar seconden. Herhaal dit voor de linkerarm. Zrób prawym ramieniem powolny ruch tak jakby śmigłem samolotu. Powtórz to 4 razy zgodnie z ruchem wskazówek zegara, 4 razy w przeciwnym kierunku i rozluźnij się na parę sekund. Powtórz ćwiczenie z lewym ramieniem. Rode o seu braço lentamente ao lado do corpo, como uma hélice de avião. Repita quatro vezes para a frente, quatro para trás e descanse alguns segundos. Repita com o outro braço. Gire seu braço direito lentamente como a hélice de um avião. Gire-o 4 vezes no sentido horário, 4 no sentido contrário, e descanse alguns segundos. Repita com o braço esquerdo. Rotiți brațul drept ca o elice în dreptul corpului. Faceți asta de 4 ori înainte și de 4 ori înapoi după care relaxați-vă pentru câteva secunde. Repetați cu brațul stâng. Вращайте правую руку возле корпуса как винт самолёта. Сделайте это 4 раза по часовой стрелке, 4 раза против часовой и расслабьтесь на несколько секунд. Повторите упражнение с левой рукой. Otáčajte pravou rukou pomaly vedľa tela, ako vrtuľa na lietadle.4x dopredu, 4x dozadu, potom chvíľu oddychujte. Opakujte s ľavou rukou. Vašo desno roko počasi vrtite ob sebi, kot letalski propeler. To storite 4 krat naprej, 4 krat nazaj in se potem sprostite par sekund. Ponovite z levo roko. Kružite desnom rukom pored tela kao propeler. Ponovite nekoliko puta unapred, zatim unazad i opustite ruku nekoliko sekundi. Zatim ponovite vežbu levom rukom. Pendla din högra arm långsamt runt som en flygplanspropeller. Gör detta 4 gånger framåt, 4 gånger bakåt och slappna av ett par sekunder. Upprepa med vänstra armen. Sağ kolunuzu yavaşça ve pervane gibi yuvarlak hareketlerle gövdenizin yanında döndürün. Bu hareketi 4 kez öne, 4 kez arkaya doğru tekrarlayın ve birkaç saniye rahatlayın. Sonra aynı alıştırmayı sol kolunuzla tekrarlayın. Обертайте праву руку біля тулуба, наче гвинт літака. Зробіть так 4 рази за годинниковою стрілкою, 4 рази - проти і розслабтесь на кілька секунд. Повторіть вправу з лівою рукою. 慢慢像螺旋桨一样在您身体一侧旋转您的右手臂。顺时针做四次,逆时针做四次然后放松几秒。用左手臂重复做一次。 慢慢像螺旋槳一樣在身體旋轉您的右手。順時針做四次,逆時針做四次然後放鬆幾秒。用左手重複做一次。 Move the shoulders up and down Движете рамената надолу-нагоре Moveu els muscles amunt i avall Zdvihejte a spouštějte ramena Bevæg skuldrene op og ned Die Schultern auf und ab bewegen Κινήστε τους ώμους πάνω κάτω Mueva los hombros arriba y abajo Liiguta õlgasid ülesse ja alla Sorbaldak gora eta behera mugitu شانه ها را بالا و پایین ببرید Liikuta olkapäitä ylös ja alas Montez et descendez les épaules Bog suas síos do ghuaillí הזזת הכתפיים מעלה ומטה Pomičite ramena gore i dolje Függőleges vállmozgatás Gerakkan bahu ke atas dan ke bawah Muovi su e giù le spalle 肩の上下運動 어깨를 위 아래로 움직입니다 Pajudink pečius aukštyn ir žemyn Beveg skuldrene opp og ned Beweeg de schouders op en neer Poruszanie barkami w górę i w dół Mover os ombros acima e abaixo Mova os ombros para cima e para baixo Mișcați-vă umerii în sus și în jos Движение плечами вверх и вниз Pohyb pliec hore a dole Premikajte ramena gor in dol Pomerajte ramena gore i dole Rör på skuldrorna upp och ner భుజాలని పైకి మరియు క్రిందికి కదల్చండి Omuzlarınızı yukarı ve aşağı hareket ettirin Рух плечима вгору і вниз 上下运动肩膀 上下運動肩膀 Put your hands on the armrests of your chair when you are sitting down and press your body up until your arms are straight. Try to move your head even further by lowering your shoulders. Slowly move back into your chair. Седнали поставете ръце на облегалките на стола и повдигнете тялото нагоре докато ръцете Ви се изпънат. Опитайте се да изпънете глава още по-напред снишавайки раменете. Бавно седнете обратно на стола си. Poseu les mans al reposabraços de la cadira mentre esteu asseguts i empenteu el vostre cos cap amunt fins que el braços estiguen rectes. Intenteu moure el cap més enllà encara baixant els muscles. Lentament, torneu a seure a la cadira. V sedě položte dlaně na boční opěrky židle a vytlačujte tělo nahoru, až se ruce narovnají. Zkoušejte vytáhnout hlavou ještě výš, nad ramena. Potom se pomalu vracejte zpět dolů do židle. Tag fat på armlænene på din stol. Pres dig opad i armene indtil de er strakte. Forsøg at strække hovedet endnu mere opad ved at sænke skuldrene. Bevæg dig forsigtigt tibage på plads. Legen Sie die Hände auf die Armlehnen Ihres Stuhls, während Sie sich hinsetzen und drücken Sie sich nach oben, bis Ihre Arme ganz gerade sind. Versuchen Sie, den Kopf noch weiter zu bewegen, indem Sie die Schultern fallen lassen. Bewegen Sie sich langsam zurück in den Stuhl. Ακουμπήστε τα χέρια σας στα μπράτσα της καρέκλας σας ενώ κάθεστε και πιέστε το σώμα σας προς τα πάνω μέχρι να τεντώσετε τα μπράτσα. Προσπαθήστε να σηκώσετε το κεφάλι σας ακόμα περισσότερο χαμηλώνοντας τους ώμους. Ξανακαθήστε σιγά σιγά στην καρέκλα σας. Ponga las manos en los apoya-brazos de su silla mientras está sentado y empuje su cuerpo hacia arriba hasta que sus brazos estén totalmente extendidos. Intente mover la cabeza más arriba bajando los hombros. Vuelva lentamente a sentarse en la silla. Pane käed tooli käetugedele ja tõsta oma keha üles nii, et käed oleksid sirged. Samuti siruta oma kaela, tõmmates õlgu allapoole. Seejärel lasku aegamisi tagasi oma tooli. Eskuak aulkiaren heldulekuetan jarri eserita zaudela, eta gorputza gorantz bultzatu harik eta besoak luzaturik gelditu arte. Burua are gorago eramaten saiatu sorbaldak beherantz eramanez. Eser zaitez berriro poliki poliki. در حالی که روی صندلی نشسته اید دست هایتان را روی دسته ی صندلی قرار دهید و بدنتان را به بالا فشار دهید تا جایی که آرنج هایتان راست می شود. با پایین آوردن شانه هایتان برای حرکت سرتان تلاش کنید. سپس به آرامی به صندلی تان برگردید. Laita kätesi tuolisi käsinojille kun olet istumassa ja paina vartaloasi ylöspäin kunnes käsivartesi ovat suorat. Yritä siirtää päätäsi vielä kauemmaksi liikuttamalla olkapäitäsi alemmas. Laskeudu hitaasti takaisin tuoliisi. Assis, posez les mains sur les accoudoirs de votre fauteuil et soulevez-vous jusqu'à ce que vos bras soient droits. Essayez de monter la tête encore davantage en abaissant les épaules. Laissez-vous lentement redescendre dans votre fauteuil. Leag do lámha ar thacaí uillinne do chathaoir agus tú i do shuí agus brúigh do cholainn suas go dtí go bhfuil do lámha díreach. Déan iarracht do cheann a bhogadh níos faide chun cinn trí do ghuaillí a ísliú. Tuirling go mall i do chathaoir arís. שים את ידיך על משענות הכסא שאתה יושב עליו, ודחוף את גופך כלפי מעלה עד שידיך יתיישרו. נסה להעלות את ראשך עוד יותר על ידי הורדת הכתפיים. חזור לכסא באיטיות. Oslonite dlanove na sjedište te ispružite ruke tako da osjetite istezanje duž cijele kralježnice, pokuštajte rukama podignuti tijelo od podloge. Polagano se vratite na stolac. Ülő helyzetben tegye kezeit a széke karfáira. Nyomja testét fölfele, amíg karja ki nem nyúlik. Próbálja fejét jobban kinyújtani vállai leeresztésével. Lassan ereszkedjen vissza a székébe. Letakkan tangan Anda di sandaran lengan kursi saat Anda duduk dan dorong naik tubuh Anda hingga lengan Anda lurus. Coba gerakkan kepala Anda lebih jauh dengan menurunkan pundak Anda. Perlahan pindah kembali ke kursi Anda. Poggia le mani sui braccioli della sedia e spingi il corpo verso l'alto fino a stendere le braccia. Prova a sollevare ancora la testa abbassando le spalle. Torna lentamente a sedere. 座ったまま、いすの肘掛に腕を置いて、腕がまっすぐになるまで、身体を押しあげてください。肩を伸ばして頭をさらに上にあげてください。ゆっくり椅子に戻ってください。 앉아서 의자 팔거리에 손을 높고서 팔을 주욱 펴서 몸을 위로 올립니다. 어깨를 낮추어서 머리가 보다 위로 가게 합니다. 느리게 의자로 돌아옵니다. Padėk savo rankas ant kedės rankų atlošų. Tada pasikelk ant rankų, kol šios taps tiesios. Pabandyk iškelti savo galvą į viršų. Lėtai nusileisk į savo kėdę. Ta tak i armlenene på stolen din mens du sitter og press kroppen opp inntil armene er strukket. Forsøk å flytte hodet enda lenger ved å senke skuldrene. Beveg deg sakte tilbake på plass i stolen. Zet je handen op de leuning van je stoel als je zit en duw je lichaam omhoog totdat je armen gestrekt zijn. Probeer met je hoofd nog verder omhoog te komen door je schouders te laten zakken. Laat je daarna langzaam weer terug in je stoel zakken. Siedząc, umieść ręce na podłokietnikach Twojego fotela. Wyprostuj je tak aż się uniesiesz. Spróbuj unieść głowę jeszcze wyżej obniżając barki. Powoli wróć do pozycji siedzącej. Ponha as mãos nos braços da sua cadeira e levante o corpo até que os braços estejam esticados. Tente levantar ainda mais a cabeça baixando os ombros. Volte lentamente à sua cadeira. Ponha as mãos nos apoios de braços da cadeira que está sentado e empurre seu corpo para cima até que seus braços estejam totalmente esticados. Tente esticar mais ainda a cabeça, baixando os ombros. Volte lentamente a se sentar na cadeira. Puneți-vă mâinile pe mânerele scaunului dumneavoastră când stați jos și ridicați-vă corpul în mâini până când brațele dumneavoastră sunt drepte. Încercați să vă ridicați capul lăsând în același timp umerii în jos. Reveniți încet înapoi pe scaun. Положите руки на подлокотники кресла, на котором вы сидите, и поднимите себя, выпрямив руки. Попытайтесь откинуть голову назад опуская плечи. Медленно сядьте обратно на стул. V sede položte ruky na bočné opierky kresla a vytlačte telo hore až kým sú Vaše ruky vystreté. Skúste zdvihnúť hlavu ešte vyššie tým, že stlačíte plecia dole. Pomaly se vráťte do kresla. Postavite roke na naslonjala stola kjer sedite in dvignite telo, dokler niso roke ravne. Skušajte potegniti glavo še više s tem, da nižate ramena. Počasi se spet spustite na stol. Oslonite dlanove na rukodržače vaše stolicu dok sedite i pokuštajte rukama da podignete telo od podloge. Pokušaje da pomerate glavu još dalje spuštajući ramena. Polako se vratite na stolicu. Ta tag i armstöden på din stol när du sitter ner och tryck din kropp uppåt tills dina armar är raka. Försök att flytta ditt huvud längre genom att sänka skuldrorna. Rör dig sakta tillbaka till stolen. Otururken ellerinizi koltuğunuzun kol desteklerine yerleştirin ve gövdenizi kollarınız düz olana kadar yukarıya doğru itin. Başınızı daha da yukarıya kaldırmak için omuzlarınızı indirin. Yavaşça tekrar koltuğunuza oturun. Стисніть руків'я стільця, на якому ви сидите, і підніміть себе, випрямивши руки. Спробуйте відкинути голову назад, опускаючи плечі. Потім повільно сядьте на стілець. 坐在椅子上时将您的手放在椅子的扶手上,并用力举起身体,直到您的手臂挺直。放低您的肩膀试着让您的头移动得更远。缓缓的坐回椅子。 坐在椅子上時將您的手放在椅子的扶手上,並使力舉起身體,直到您的手臂 挺直。試著讓您的頭不低於肩膀。緩緩的坐回椅子。 Turn your head Завъртете глава Gireu el cap Otáčení hlavou Drej hovedet Den Kopf drehen Γυρίστε το κεφάλι Giros de su cabeza Keera oma pead Burua biratu سر خود را بچرخانید Käännä päätäsi Tournez la tête Iompaigh do cheann סיבוב הראש Okrenite glavu Fejfordítás Putar kepalamu Ruota la testa 頭を回す 머리를 돌립니다 Pasuk galvą Snu hodet Draai je hoofd Obroty głowy Virar a cabeça Giros de cabeça Întoarceți capul Поверните голову Otáčanie hlavy Obrnite glavo Okrenite glavu Vrid på huvudet మీ తలని తిప్పండి Başınızı çevirin Поверніть голову 转动您的头 轉動您的頭 Turn your head left and keep it there for 2 seconds. Then turn your head right and keep it there for 2 seconds. Завъртете глава наляво и задръжте така за 2 секунди. После завъртете глава надясно и я задръжте така за 2 секунди. Gira el cap a la dreta i mantin-lo així durant 2 segons. A continuació, gira'l cap a la dreta i mantin-lo així altres 2 segons. Otočte hlavou doleva a vydržte zde dvě sekundy. Potom otočte hlavu doprava a vydržte zde dvě sekundy. Drej hovedet mod venstre og bliv der i to sekunder. Drej derefter hovedet mod højre og bliv der i to sekunder. Drehen Sie den Kopf nach links und behalten Sie ihn dort für zwei Sekunden. Dann drehen Sie den Kopf nach rechts und behalten Sie ihn dort für zwei Sekunden. Γυρίστε το κεφάλι αριστερά και κρατήστε το σε αυτή τη θέση για 2 δευτερόλεπτα. Επαναλάβετε με το κεφάλι δεξιά. Gire la cabeza a la izquierda y déjela en esa posición durante 2 segundos. Entonces gire la cabeza hacia la derecha y manténgala así por 2 segundos. Keera oma pead vasakule ja hoia seda nii 2 sekundit. Seejärel keera pea paremale ja hoia seda niimoodi 2 sekundit. Burua ezkerrera biratu eta bi segundutan egon. Orduan eskuinera biratu eta eduki hor beste bi segundutan. سر خود را به سمت چپ بچرخانید و این حالت را برای 2 ثانیه نگه دارید. سپس سر خود را به سمت راست بچرخانید و باز هم برای 2 ثانیه نگه دارید. Käännä päätäsi vasemmalle ja pidä se siellä kaksi sekuntia. Käännä sitten päätäsi oikealle ja pidä se siellä kaksi sekuntia. Tournez la tête à gauche et gardez cette position pendant 2 secondes. Puis faites de même en tournant la tête vers la droite. Cas do cheann ar chlé agus coinnigh ansin é ar feadh 2 shoicind. Tar éis sin, cas do cheann ar dheis agus coinnigh ansin é ar feadh 2 shoicind. סובב את הראש שמאלה והשאר כך למשך 2 שניות. לאחר מכך סובב את הראש ימינה והשאר כך למשך 2 שניות. Okrenite glavu ulijevo i držite ju tako 2 sekunde. Sada okrenite glavu udesno i držite tako dvije sekunde. Fordítsa balra a fejét és tartsa úgy két másodpercig. Ezután fordítsa jobbra és tartsa úgy két másodpercig. Putar kepala Anda ke kiri dan simpan di sana selama 2 detik. Kemudian putar kepala Anda ke kanan dan simpan di sana selama 2 detik. Gira la testa a sinistra e mantieni per 2 secondi. Poi gira la testa a destra e mantieni per altri 2 secondi. 顔を左に向け2秒保持してください。次に、顔を右に向け2秒保持してください。 머리를 왼쪽으로 돌려서 2초 동안 그대로 유지합니다. 그리고 오른쪽으로 돌려서 2초 동안 유지합니다. Pasuk galvą kairėn ir palaikyk 2 sekundes. Tada pasuk galvą dešinėn ir palaikyk 2 sekundes. Snu hodet mot venstre og hold det der i 2 sekunder. Snu deretter hodet mot høyre og hold det der i 2 sekunder. Draai je hoofd naar links en hou dat 2 seconden vast. Draai daarna je hoofd naar rechts en hou dat 2 seconden vast. Obróć głowę w lewo i trzymaj tak 2 sekundy. Następnie obróć głowę w prawo i też wytrzymaj 2 sekundy. Vire a cabeça para a esquerda e mantenha por dois segundos. Repita o exercício para a direita. Gire a cabeça para a esquerda e deixe-a nesta posição durante 2 segundos. Então gire a cabeça até a direita e a mantenha assim 2 segundos. Întoarceți-vă capul spre stânga și țineți-l așa 2 secunde. Apoi întoarceți-vă capul spre dreapta și țineți-l așa 2 secunde. Поверните голову налево и подержите так 2 секунды. Затем, поверните голову направо и подержите так 2 секунды. Otočte hlavu doľava a vydržte 2 sekundy. Potom ju otočte doprava a vydržte 2 sekundy. Obrnite glavo na levo in ostanite tako 2 sekundi. Nato obrnite glavo še desno in ostanite tako 2 sekundi. Okrenite glavu levo i držite tako 2 sekunde. Sada okrenite glavu desno i držite tako dve sekunde. Vrid på huvudet åt vänster och håll det kvar där i 2 sekunder. Vrid sedan ditt huvud åt höger och håll det där i 2 sekunder. Başınızı sola çevirip 2 saniye bekleyin, sonra başınızı sağa çeviripiki saniye bekleyin. Поверніть голову наліво і потримайте так 2 секунди, потім - направо. 把您的头转向左边,并停在那里两秒钟。然后将您的头转到右边,并也停在那边两秒钟。 把您的頭轉向左邊,並停在那裡兩秒鐘。然後將您的頭轉回右邊,並也停在那邊兩秒鐘。 workrave-1.10.50/frontend/plugin/exercises/common/share/backward-shoulder-stretch.png0000644000175100001710000003043614221624107027712 0ustar00gdm00000000000000PNG  IHDR2PLTE!}uK$B`]M<9¾c#%"8@F݄쌸*=겖Liin^UuܣoZݰ΋l6O130ȩם{~UCק-8?sA 6CQ6$%I..@TS6Pj+'-)6F輞!+5+ V:+bK"5I.AV'6+,*-*Hgۊ;//g^^͟Yss[KQkG7}QONB.# "Ġp%-##d_Y_OFMBLşԢ(@Yknk7960I&"! ;Z'륄"3))!/>b¥x]JGFٔuڵñR\jq^eh(;O ;({~{.*)iR>@>|oh,D]x#86@+:⾯^@2C?>a;RgJVWӐp3Lf L?@- ʟ~{qј{8430[ pHYs  ~tIME+=2 IDATxTzcM'$$[ބ5hu7\KQMkV@F). 1L! p$\ԍz*9T0 (r֥}6f<7xo glf7V3-7Qߢ-7Qߢ-7Qߢ-7Q3^EfWetElT?Xg`IU<?=?K_~'h ))^ :5[tsϭ?t BXdM/M3_I{l18ǡ5ngt6g8|zojN Zl6=phh/8 o$SXi R̻b[1X)a aaFQrƉA2:aU<T<FOۻnŒ["y.WApu; /TR 0NF8 F^kJHaJjSН5=&)]Igְ 籹^f%g#ni\n kYngTjtZ['56FX.J[UEc&JETS[rz68`FW9O3]ggaeY{ݩ1H=S`0]gsosqVr^sa0;t?&c¾Ao<%]n^X;y x~1I=JY۱|]h,cYc[mv1\Co$~1I\|9k` 2^Xs<6DjV}OGG. L'(rUe~߳v-1xD`w#88ؠ{ftFXk菭=ȾP "(H.VNQyhh$R{׭; a=C_N K`7E'ȎYQ8V%2\ VyF`7BkmZ}F:?ݩ::1ٟ Ayevf\(;6> λM8D-x]6C|>`SȚe=4AkIc0z,.n7deo*3]LGZQbڦ'mu8 X(?ߟR>0Y,}n@YitN+h}{ǂzL=yg%A{n/IJ+ľBF45ڕ靑LYy==yA*@߼pJR \ʚ`޳kjB:3?CO$; q )UP5tмy 8pzMgwreeU!;^pB q9>qssRZ[//߽ aX&I;Uc ˨>}|@'5R-Mݧ_'׵'#&'Cx"RgZw^A\xz|^91GCtP]n6 u:5' [AGɏ΅^pz:KPf QG}r .79͌~\^ QrZπ_o7NXxo6x#iNI[ az_zwlN'OȡԄz=GȱǷ~? oxiuZ;3!:uO=`.1 K2{?+n׽cx N@4롣 --?z}o;uvyLsً~ߚ>P1>cVtW Nu0(EǷBѮˈ&< 58RnzEAEJ:A? ?*xG w :[SD5J[@\sSIHٕO!+j:y}4SD*V'sB/*]v|k+{{x x]&Gtnjܠ2+ >;ci((tq)$\ߒ | )NexXѥK 3HLݹ9%b$!~BG >LvL'xBHQOefT \j+zz)GDv>aXQab^-U'&ݽ#jM&jW{eHmQQbuKKnL^b9c` *3+*(N A(# ExY_tV5n9 ܮD|tƒLЏc.6~)He#xG-==N~V`9ֺ>5^刧-%5`~}􁙏0lX͛OWBCēdLjWSC2ѩ)]fW`ebZۻ8i#d{(AMSD"KOz̎2=?Nm8wI҉ͧ!sGuy@9})˸BE, rW*MFPSC_#KБ]aqIm 4D/FIvX X颧_Jm&us(s { VxKCбWBMCϭ(Qvdf" bV6쬿"^,H9|ՇB˾ p %RnJݟ1 <+Rw^SULvze\S7؏( +y% [%7LvΩgx S?RA~' y} ۡЉjTtvy}D[G`CIn}B^_uQ!f:W7=tf@%'^ Xp<<b\&@Cn3G |OPYQ| jw;v\p?!Y=x]}4aIE}s̋Ŧ5A ʆL[9 Xʧa2F9+d3exQCesp^.D{zsH镕D#c,IOϝ{,$вp? [q2׏C? q/9^I˾5>])2z^H_mxeULjM=YE3} >W3'tuDzԹv,_ޓę*EjM=;M#_8}@C&xOx}D܋kִ7A3>`5)_Fnt\|D!O8zp(=@qᑑ/Vv-]9+̛68NV"sR4ph2Cm)GRԀW>q~_Xu.Cs +1 4F<ْLPv'LDo<80odɫK:cEQyZII݃OmKN~;݀Zs(Okj6C>rt.'2i 8}Y7)O 萦2Y]l1 e7e$>C?CdF;w<_R}%/'m37ASTgu/ K]Cs\f%dٺp{(LUU3gअX"ߠn߈Z@Cҝ:hq{$?I$nS_;ۙWL{^O{>3!0Դ#ug&1hG>T@ m-T53*“D<~ٞeM1&=5E Y.<{Idz2LrS7v6 :|x;{VrbCC";}tT?_"n?*[֔$;]"4CY A_=}RA-#>&pzwr[԰'U!qRW}$݇zL>9>R}8pJdy̞/(ӝtяAo8T?,fZ*\H?/Ky!yxtrݐ(;=t- {VSƾđa>Q k>Z;wJ譩)pnR/.S*SLg>SFNO J\}SŷGy7!w 4 Ӑ*r:3P'|VmFbF<~ }rձgr_]55,:蕛7$Mr+3F} %ħ.Kӧ*ǗT;?1l+\ܤ|(Z8EC9a>5P*Li^_k:twZ).^m se uv-;]uOѿ<*?`݃-N.uݡ-/b)ݞ^QgU~N;DBo*o=uŎ$3|޾WPh lN77~bFFF4V:e<,vT~ɳ0}('yrBƠSy?Ьw%?_]7}- :,s,7~ae8EW.Xt+5]-{'Џ_Ws^5 U\!e~S$<=jb5#5 u{[ 5ͥu8gU 儛e}).6M-PsyxكZN6.@|uʕ񓛰%wN@K]_]j+.\Ye>tv= >kʃ 8} &M&6N [\^2GZ,t7#J^!KqzNoQѯ(jp: #=Z_D/W?ՐQU֝8{?!S_p~L+@?Pr?~k<cjtɒ%uKK}y=frO6t-K!p5̋\`~|xI]0~|\ IDAT|H XچzKI~ڪedHߞH 9ͽ ..%uWI3^g~9nY?U8JR}ֶ^` ,,Gn(vK;>?#(ml?.-5˷>IߜJQQ KKI{F> lCJnZVUFnV~ǂ>}5:}{۰cbX$?Ѱ |Oǿ'pjz>tR<сl;>b!GMU@P+[QWZq}uio2 {u&KO!ϤnT~0\TTR¾='iS\N0·`=Cs3@X7 ln!#r;eYU^Yg~,rm79>+Vv r3n!%øMݝy9m̔>K\3<6=#;n&c4de ;/ )gaK(\e@v//7Cͅ 9y%Pgj<:n]Q9|xHpPV'o^ClwwgqXHۘ)E}Q_.̮pz뫫: qgk3rtyѶF'Z8O@ċ=ڷ;e͛6+[3'ɛpنz8tj17%~y]Hѵة"5>(ykkr@o6Y,tq e[{ō_y`v,rDd4h29fƻiU7!((1/֗iѕЩɮl`?o!܄@C1cʈOd}U=JS>숈r>gZw wT䎐 #`^dxxxb[agob okOnJ>D yOSpS2,L(Hrܘ{uËV,]J+V@nXrv=??i]t`ǔK>uq;ѫx3S?$m=vnjԉ,)t BB | 1Qf_9ט"ܽfYĆSx`9M!軠۷Oܟz>0&yᖬȯCʺg!s>Lٳg4^ifʡG`G&i}SqӏsXL=fHעˋ2dզAƼuYrky6io'Cq2c۶mm?_eofy8ҔAOMSkw,&:o*=|h-}Kfl۸}'X^|Q3dZE=yM!͐K.͖gg06Y1L|ڴ)+r)'pST~DמD}Nr(.7ۊB=8Mk"[͌ [[>T9޼_;QPreq`{Oqx[G`͌s`pӟo%Kp'/&IA%ܖk{DXWQc1 3 U&('O}DkmMpS 8,o =9Fxnx8HE0G̹Cf'nm-/OA`oZp7V/.9yR+fbpE‹uK^\^s Z`o͋MI_/g9d5c(q`97uVg߼Q|_JoGmfA'f۱-[N,>i^[oU{]9Q}$aTZG޷YXXS(u+숥z-&]^ѡv p]9}vo-$ ^ܩ"R]UKD}u c0@ɽx4;̷t^oM:g<:3q]5Л z-Е[C67xs@u7|*L }!]o}%Ⱦ("Tq97no^/u+_+){Vĕ7X3p@c`ۋOǘFKw 5ˢ_j:|,Q.REF-=5 ƹ^ƣz[NB}ޫ+裆>GE 8 xb[B4!ٗ[mRy)-}O_Mݧ)i`__vB\G:Ыe8߆>g&ںNCW4q.니 6Ī3Kms .fS<X-Vm tENtҔƅ+(tQ>']yoQ`huyL)UU]XHg\+KqPh^oCtP_#?ysEEeWG,C_9Ti\~ ?6c>ȑN7r\ݴw9Ug/՟,/}X?*3M w4731%CG8^_Mgtw4;5WNVD諛[Jetܬ ^JrJ/ʙIly)nf/#dk[n~Kn(OrxUt5OiHḺmC/~Y\(":0 ~ ٢ M:pWp +7DE {c*{* [[Il*Q׍~J]r*vVżFgY5dFI r ZojOeѯ({сXyC*qA#7Tz;N+x:ّظ 3G~ @&OR}%N3I4%f6~t/9n1 >L2dW]xtZ@tڷ2)ӝdqvǶyFJZL)ߨT6</@|WIL`ro =9=(7GW p{jVܶ[׶a5%M^ٚ'Mk$G|UW a+iٽyo/_hki͕DO:ʟп' (B>ʟп<܋!{윿@YS*2f?g&A3S[?^zz/ګ\[*k.!|g3ȁ*6G<C|Tdɚk<$Gd%( Cq^15NxRI,<6^~i~usxq=%%oރ^h#c~W6H_ U}vH\QKO2(~a.fA؍Vo<<Չ5{! )CjcO7wm^ɂ,ڤ9@eA屝brçpJzYD kꝵkY?5ŀg˪?\PcGYt4ve4@΅V_,z/Xz>֝߅)[Ľz81CŽ~ -e=;bt{L>s ˒v? _f`PWB.+HuvQË;I\Pvj WǼO6ct:k>9WF$|迓;mcp֚Ӌ1½ډ?e#{3zO ە1.INxC 7i7f8Ų鶾ͧJ= a2g3N1d$0$S܎;7#KsKX?:v'&ʀ`P;e1kZ:}OB:& N8AJ%moEޤkhCqאe\t{m;CXRTSADQk&Sh? &N٬޼z7w7n){aZТ?|R+zASvx<2撻S%maA _r>^̓ܐ(md7[͂³wڪb}Ysu̇-J6A.eЧHsYk5d_ AR]ICB~l   Cߋ;C*]g1!i{/` '2t4i^NĞW 77*_ %t :Y_GN)={`R[tȺڅf0* r)&kKٙ}Xi((ӆ1]l"}z!ot~mx9~iºKByjetxgɁ=Qz`۶Q7VeeKs< Z'7>(NuN:ڦȺ}37?])]!!J"tsFwFA}5G!wąP31}yZnZg%G=B }ݾi-ɯmS݉em\=G } 7ۊbZ }aWr"kyA^l:}ؑ][:٢<)fvUо!_ }7t+>bx '^+oNYq!w!j!)2k&aHAO/~_?^,Vm 7S6ϟ/j h224MKc 6:j47$zxfRΒp=e5N9MiFV U]0F!!7̆nٜr/o 5tw.s6rwEj@נ_k?րy oZֹٳROp99PTTh2/+YBwNhC= Qg!ǞAJȫdgP VwRzΒ|eq7,HˌJ0%;KNБ6ARU3ˢDV,Yp}2tP sOrLr!7jPHRee-P ee ̢p"xo[xN8si'8M\ AV;RVT v^ܿv =c} N;:4$.?7Va^p#[@ I I KD@_)/i}9CN*Xzv 'nV (ʷv S^dԕhYkMUbTT"JwE8J`_;46a:8<#Z=5 9xy;KPV+CDϪAєi+]:G{j30,ZH&sGhi`ӡa: G +6e@k5;^ |cnftQdqDmx]zOOuuCS8wǟITubp|tԗ3Al- UjIIˣ,8PX5F{?u"p+|tn}C nd惡k_^}̔26#qTtJkkv3-ͨW3H?$#lP2٬|^Џfto2l8m9*߶"3$3zqqԻiGYsz&a++"kP{5.0pDV5'8*y9s`0-*'Z흉׆לZDx+7UX݅ 5Ț:^T9@X~͞{) 8n^- ?v5w[oOJj[0@d| =ˍgѡx>*#K;:xǝV:δ "ʦCpzh܇-k04UYY F8^ {_b ^!Qy\N>.y* 4$A YN88'/k>ޅ:Kܓ8fq@lkCh tmXtkK=aN} <*q=WMq,޾ ¡]xuz7x .}3=oRဥgg pntX;:Tn8rٱn S8Ls ro.=V2b_^8Т~Ժw*$ґ2w. |'[O݋;]='ou98`nK[OyWh!+ɧ}mMyW|)J|<[ׁ̻܍aycS}C_=)PBBB׃:,Ln=lvݩ,6;~?!|~N㧔桂6@Q](.ͽ,좳"ݒ-v^\0<<܆C"mgrkY$4z<:?T@f]( 2E_1% JyΧM^_ۀScqJ{\':'$pJe5嚕|D;p>M=6}O)Zcgj,w3::8rT=Dqr)\3%]5>6;l|}] g nsXo$.׬4)nB[+Ej~^Q<6Y='f=AB_?e&Er2 a(K!Y)Mm+#F)XǛNLF>ȷ{ ; 3~N$@ `"r,R V`:UFh=Y+fPŭ̖wHu3ejAKxU0u(J )/&3Wo ](~$SMeX[pP(s;89F<ڂF?'PK\%w-F))NNʷg(.8'ŏ}q6GSᐅۜ.N`j<@5PYI)@庉ey&Cu, l"p_ mrޝgMuDt|>|5u|/;ҜrB!^'z)a:ZR]cIO;rУ|\ȹJTy|WyWQCvY+>~YpNqe;1-쮯LTln+>>(~` 裳?2 ЏRڧSe.caBSM"Oqf@l벢eE[ * |J%5~ C7;H)gwRˈC7Ka8F.⋸fI|/ۺzْP; G 453UߴCҧ un!&[g9A)zB 7"NRuYՏ~}Ӗz65vjfg\#YxF;Aoci8(&iP/XOh :ǏIZ'?D5zCau =M62em_WS! ӗ1{йy 3>zVo%x.Jb?ZȽ'0sK_R,sdI\82S V//vԜ:C rmY~#[r8֩oGpQۆkvolr-#mvm[;~qJ5G0ѝv_a` y7*kyWyj(*zmxxIq 3kXiTSI%}4S],yЯdfF˞+2ׇ+Яia@+T4BWL+ZwB<ԹXH3T=uS2[(7dځe&OI.L&ίoCsf*T>c9ɑ Fω.⚃@.ߔ=y䂥i_"yAG/Y-&a1sJ5]W,F 417]$ӥv򾘮У^?{R18v*=:=}g9w!軇wezSCOyHϳ_۽&}>K/+g^L/B||UDO9slKGFske;KrB8M[ڷm36N9EP׾|B:ee/q͸ /h>P:9}G#xZX2ycacV_8xf!Qb'z,H01ғ?:z`7NuE֦+E_r +ip: ;hFEisoy}t&ԌE9Znf=K4N]P(: GJGGH[12P䄿ѳx TjixよڷIő_2gEGhRqtEe(6uR07lABV.e-lc -MXU98ȝ pT0H%Pw ak! {(x53fDaB߽}dB1JHlQ*'W-P;qWuټV_@9Yv(떏v!/M4f.t\JF1(+޿؍yl|MscqG&NFHJ}T6۶Ni,+:ck덍CpC:_u93+?M-b'D}foooGp'ѳ Fb7vdgs7(T&It Smb੩.pzcqDqs[GRR`FAKA󇭕ɀ؝gC+3E,g}j, 8Ռ)||#9芜1@)M&pt xKJǒyt:~ W$]q>N/3YuwdrllGFOp…E+ 2#҈)@Rk R"9wf/PT; STg}p3s+Q N! 礍Cod~GC(-&u~98˕\9.h2Sr@dsn|55F $CS%gxuzD"9;-b,t'{b[_vf鑌 Ák n8c`99!-7ܹsro0Jh2Q܄\ܡȤԒ.: h;YpMQ(0'5 fc4#g`J.A3*|oƹiׯFQg3*)6p509s[ڵ EeoϑoH! 6S|Sz'e|>t⣌T99N$kعo6FGJʟW\8|BZݹV~O%)J4Eex2 W)H9ycѽT]v́4%.\=7`$}7@KEyM-Pt&e.2W)v34A uxߔ-N|ҒOǩӗIŵ7:4!%Mh2q'VU* aecCR~oW (Dq L\ RɟvzNA4:t$|K xߜ1d.CMA;vuCQs#HO)3\yKdYtLj yFbr|hB7je+.lɽWBȘ.0t>s ڸʡ6' 齣#֭[f_ CN f0I=]Xн/*`@Gxi4p?hlLPw֭[6 %g~s\0SE|J)%y]ˊjIT!91NT=ɫYƓvΏ܅be2r⭫.^Stt]q3gV?VYڱL=W'ԠxH))<|\R/Ly3KC*gYeqP}#AGv AM(Htܺu"'_<%w(nrrB1 ";ƗhuJYzIJ/HR`UQ;ւNM,k+ -53enKx&gXvII}M=;rl J1wNWgjUR?B"m}4h9ȥ yEJYW5Ǡs) v6T?vq-9߷O6v4W.$Eo:?A[WOy7Z7HBsR:yY˝L*oz?b&:&͐so{reǖO>$1[428v+PѱtlYBr8Tyy_QG3Sg%8^"hneރ~a4;:iRs8mRIdԔf*c{<&X,29D&ވq ]) (N:y4C ;lfJl$4M;`dʲ457-o>S lh壩Kg|{8 CC.r' f(Aу^:2R82XX8<~ll2;sIYsO=7: vrMnr/k)pߙ>m 6 t!󊋅}db+ ;r#A@ǰ&\1'Yy.+PϪ0B^EҋKϼ,l7 :'CHH2nClCx"Y\+~IANG8Uٽ/C&p |.Wɗ{E s.:G ѿ+r q~@oWHj\_- BOɅ{StYzomz]@L߬()-AR2D^ n$&wW~b;k2̉>ɲCi#<"N-(sc yh5\iFvyT/=9 sF4;>zc^g/9qtp`9 g$<\Ύ:f'Z<=6d|. yb^J?cNAA^ibΠ˭(mDG&34:y;@:0 9$i{.<ġp_zhE7Cr>](dsZ]%KGqmeVrSK"Dž7JBP8Ógcbk7tmt  ]-)"%sj6>X;vIJW7 FI.K. 6 A/|I~2yDGxDaƣ>JWNr ^:֬1P8m)@Q>|xUdUw\l!'It_Z> B/h,WOZ$1y]-ní9,:Fp|m7dhGp2p Xt.tc&H)@p+ nURUAꥼ53= N f~[G㤉K$"NdщmyiC\7NF;z#>}R+tV$I"_FU|Ai.Ӌf!Öi e]0A;D:/OXi ߜGѳE!N[]|&^fX0J/Wt:­ 6\Q9ixy, 8zwѴ=aR$vtwl" \/-'~=wpGCGТ'PkM>@-\}tÆUǮWp<)S+KqA&տzi<$P#y__@.>y~)܏^ĉɳf#ww+c&#<\AM}B.z|:M~ ~ȥ^!N(ka^SL/EhGӶN_ Btsy]s)W=` $!|9wIjD|d~꺹ȧcE=}S]I0-FIZ4\O߹~#Lh< <х;lEA1je?1Qs?-AM\:=t>c{%.tvu^||\QD?z4䬣3 8d'$۟ScO4:E NܣG/ѐIϕOб+RIzH0hSOx|۷{٥K~w _W_K)>&O qV:ġv ӽ~>{\򮼮'|n^~c=Y|ҽG>^O^<%`O&^m}9l]iуDy㱥'Tr5Bp.u?o^9SпcubB՛e;gϹЗ~z|.%LCOG^ǐW}$t&Ap3z8Ax93wrzyTTyp'u.,V: GK<=ȗ~gG03{ ؟sΛ{8 %!ut2}ݱ3y9936U.G'oXs]|]@I>Kfy h۽"ot|ua%gzp8m! ^'ߘZStNFuY8&1!2Dgp*M_IENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/depth-focus-2.png0000644000175100001710000003007214221624107025213 0ustar00gdm00000000000000PNG  IHDR2PLTE7EwVv%3-to.O)G7AE`w}¼AM>?J(a6\]h%+Lђv|E|{~+0G!:]c)=79XY5ZZNg1g1#,npzbON[/;g+)5:Uu|~ 89K68U87HDH34FTxs㓖ܟHOr??R,&%;Bp():TVig:G{GX8`; :38BP};?\HGS{(Q6GLg-'+co]Y2@Fi5@gcdn2NTpv*J loaaul]d:?byU$ 04KaNVF ?4A{e+r\eQBI??nTUaG?q|{sxn/4VTZ~8@mcc1UҦoF pHYs  ~tIMEx IDATx @Te8p;^ 2XZ2Yû|Fk]Դ.pZV3ܵu`jfYjR0R Sw&6[i߱-[A>9gf@>vWMy}ΰwưk1ӯŸN:Zk1ӯŸNc0*9b/i#T Gw379}>W/teR1tv .o*ӯŸN:Zk1ӯŸN:Zk1q޾:0]zx=R U Jx`Mu_}~ {Iܯ'Hzdah4<0DoãXSpzh[Y׈+| Jr|ܧOca'io=t9 axfsh ƍa#q+~|pqeCkM 5 t EX1O=|$䵣 ^O|p=\t8^EXű٢=[p]<#rS]Q2::5|3O6< %&T! ޷ZCvveK6;>r؅!g]3lC}p ߸^^Y, I-`QZ}@o6$;霽ֶpּpBzyNs\/Jz(Onj\n%ZK2Ԁt9xNV,"UU$n#^V,LvsŷY^ YZ!t$nW[-X^Jb 'EF'D/F1^!AYW3gmIxZ倃L R`Ck6nQ҉#1q6iR&FⶎE0PnGT-cx0ɃkؿjAj[fU#<>mi[[SXqKm;wJvhAbΝ+OH ߲ϙ!U7Z-:Z~mGm%yr(vq[5mVE5 5uDOhjjş~ WS|:I }70hqMM;0+g~dRܪ_BnwB[­zlCm59ogONnNM܉Ӂy{[6"?s?gb1 㦝P6S6ttN` U]]Y-1:HN3N6\6y vXmyjZG`pre{E>5}%qqqqP,$Qhj:XZjѢEYE( A`#GGU;2~oHͨ"=ؒ^W+xxQ٪ku;+Zt$.jҤQʨ'>Xt*ꂂcmZTMFVԳ?=,8= qGT<۹V}V?hh k"-FRޑo FyOm.$nv$= ((e_|q>_1cjDEIsH׋4b_Qdkj"ӓ~G>ao*ioYml|z~eO K]3{(p|N˕)n! 7zr%]o_1ڞgw&ZnM%zKSo:"[];M&779xN/e9Հ XI&n4W[]58,[8:xlռn6G(}~1V}~S_h Z5L^bFBbڴu))e)`4M"oVW[at+^byCnsU@֑k+D&?l dS缾O.{u6DzU^YWt˥HK<5e%gu.UoX@[N7P:rZ~\0!A!4/K<ׄ(89/.e`})q|{J{(B'NV$Z*btFIh|ѥ3!F5'0&ڣB|F&c 9t~4)F9ݱθ2(z21˷hgY'sċO7`Gga[uw.겚^. K^"EcXQ ̤̖̤SZe7KgIFmJ}xrzImE݋:QhuɁ5C֧"^Q…uN& )Ȧn:qO4GU<((  fF?ķyKuY,vF] w+Ug EFC/eMuqܹ/;ǜ`V182R靛=<񼺕=MpKf~pmh&e\Ѱr0Njs&d/@; \DDĊs_ ovVeM-?k)yzl$넞/d/`Ώ\P#,HςXM'J\2=XF>CW}y &-oOYu}SS\)IUQQ/svRZ~*;:eRm{D'oS䭮͋k>g}lm:c5*nWsYU\79n 鬮^tUSGM+plş8&^Uz3*,d wy.3NBkX=1Ea"lMuѡvߣF?("?> +._fm먲e LC=O?~|6pjՠ}I|H{L֋Fw.:4'^}an\wΝGׅMBʪ/jB:LǎEWe&fґTU_ 11Ɔ,\ތ@75Bɚp>뻕YN'GB[U_[;V擃7ͺ,G<6M@U@]]"ҍ=Vv9ۻ{sGhK }3<,])Wt\™MSRlbuY<ݲ~LP]^jsmz-@P .@>~lb7o~zf|Svl7e;tyֻ^oۭsY襊c2drͬmBrs9]{x8 lel#+,vB'*l*۹Zσfh505mn4n~ ¸ d'k9p5˔gMdWNP1h=I1+epM:9Ѭ5)v~zݰk;q"+N`dau4/vuzCFF|^Yt߀9!븩CkX GǤez<=){({ {򜜞%yK\pX2جs4I!dOS8uw 'goazXuI%)!^I NvJ:4 (xW#ފT&;.jt? qi bt'ɴ@f׼ ObmzNh:`EsFKur|\tpj ϲYעáCӒ7ĵC{p Z v4SLZhr|(8˃vBA'I}rx:Nw;v1ߨYu^p`G!s]JzI9]t8AkqtݦѤnoh6FW8<;G' >nH?t07`P~acIWLVv8OӦ'79#8foVxyNūZP}k*[ғK: XHo+o$a29B_z9>m~ܝNVO}SfҌ'Vf8E?tG'Y\"vD'W?{-YD7{cݍ?wQғllMQqSK\/ oZ1*d2 dˡ*&!яSbnp}yHވ]gnr~I*|uwh?.jn4g|O Y=gO?'z7ؑ>4㇂bB0nϝs7Oƀ|ښ>Nur~)}:xovN>ERzJ|&WOߴiTw{[)o\oh?W{xC ơCr~FO-*;33,8y\vOyqFLݔ7 .uu<^<ѡ?CM6AhR(^1`HKQ۪2iO NL CB{4#a &otGn@нt9gࡃ;:>ǃnTx-= eOvJ|T7Lns>ޟRNtn]4h#hʧ1Б5s? >%c;[Sҫ67> U ]aq#ҏ\VgO/8CicO6uuA`xmk>%ү}2ks.N6.ڃϟ_ƬGku 7b]%w3ގ7ISFOv?xa]Nb %w-~c;pq =ى۾-!aqڲ-srS8qq;57Nvn) އ.M/6;~xǫ3R3΂F-t"v[q8aY]4i!9SBɭqrz3_&޽ϱ,O$}JA'`?cGX/jg ~g!h SZXص|{JUJɓ]]]tzנOKSs/ӿVݔ w{{uW?渌p#uuM/kv.Z5nns;uV Oh8 w{dGY5}:rUw^Iz<)rz{ԙ3g(WqK$ FEW7zB@y֋e#܂Vq˹Je^Wo!!aP:Z>|yrS5IhTގׯ >1ʜtÆ\ nHPnHq~D}C L3 ;H|*eL7E0r+*,B?aC† 4 !vfpDn􏽄/YqE~ơWr#\Sp&{1c0 1( c]Gab IDAT_xᅑ-ܠH8B}>0҇nYrrY/+M oc @r{w#G=:r$G_y0r+מz["cJ/6BZA2g,l[2B9ػ AQ"Fgp{9Nx-'ݔ>o٤^/aC2:r'BL>x{љId@@gܥIgvzOBS:&t#q3oڰk j*:fGv3Z*^N& H&Æ!]S;O*wcDτهLjrncY'-?oB6>u{UWZ Ǵ+dn?PN?,,{L;<yv,#g{ͤ5\P5n+NK@ӱe;ȏax@#fA#WN;p~[f֡ޏď*ޓ'/'Ǭ&>G &ޗ|n/k?}`D,߻a xt뇴c` }ďޣ9W x4 c8,: $L=57@8`t0o+ѯ>^wHOm>B^v{>*aKׯWCsOO  ?<*DkH9ݻ3͗ s$f ⁡+&ХvsB]91WJ`6tcCL}J:}k 3\L]L%pᵢ:(ϛѻYfKqn #Ւ2LB bj`YYYS,W c nA,fYʰa&!_BA/4hr+/i-0 ^KM+]ø4^,oVgRIeN U opSe6^k;<E@BoZxhB+b7|~D{jzеQfSLŤWW#tKʙKb8 =MϽa͏8u0NK8Z)wk 8=kΧ~q+ةerD^J)^Ou3L{N\ ;)TbJک_ 84o*7zrSO)2,$2]Ѡ03dIW͵jt~k-Cnp3ЩbA^4g$qt-C'Qr~_>!GBV;u6Mrirߖt8fН,Ghϟߒy>vtӈ<Ee*+Jt&;e(IQ Czän*WHSw4t «DBj^N~^NW}wb'n.S9nn` Iwux,âEk3]snڕ=`jV%-ី zGN\x*7`?#jݏjw%]+_.{ee [Hv(${Z(xw&W:dv6no &;!*b}!<\b˺ZΝn1נp;< C-By rآzV6MBg .*w!} 㚇0Hj71jMխHgحL0xl%)-劌+AMB'o%AO JO>s-q9,-<̥JtrήPy=#i*e-Kg>B9L wя@wQb+#Ih+p%)"(Y3Q }z|jehمN\W'q*rntlxb"I1 llFfm{^U' d??n=!^=׈Wo/Ғm{j\Sx[>rAN +" 1#/liɄ{Zt%[~W܋Ij:7N?xYp c-3YP:+xfFl80+Y͘0I<}[G,0?#ݖJ@ {w)y t[ZNV7T!ύ;?}yc S;ɐ'#ʷ;[k"8R8 Cq ['▅פ'(WA-@lnb/O: [ѿW9 Ԏ>Ӈ-zAKHP҇z=(}b:Zk%&fnwIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/wrist-lower-arm-desk-stretch-1.png0000644000175100001710000000524214221624107030443 0ustar00gdm00000000000000PNG  IHDR2gAMA7tEXtSoftwareAdobe ImageReadyqe<PLTEٟ "IDATxb` Fh{ Fh{ Fh{ Fh{ : IV =l@ d|X p;@1{b C@χm%>~ |>@#@χm Yk ]Q>S ]:@:auurb H9^ RNAh{ x1uC5@dy}x4dB:@`e^>g r>Lh{ Fp ҽ>lf_d  z̹:|fZrlͰ^>g Ҫᴬ :Ԑ9#@*űDׇ *"2@^'c*":> " is"o-Ͱ9@`Ydž%DBQFaub vau"yeª H5^Dr`=if@1'wY@Ie4N@ !3h@sDKR׉nds }@JUXD{SIզ5@TmhSC@{>DSSE]MN&u@ 4]SD}I'.Pu)tIj :i  uFrbUNha` 3h:@"'Jp-@{k(I:@Que " r>Ӥ^ >>7@S3P5 |A~3 ^ rZ]JG~r00Z^$qԙ"0ɷ : |N|rDSV֐s@{^>h`0^ NHgh@N*e Tu  JN[tm:@Qux])l@y%`: (:2[ <ɝ q1pl NѰ` @T:SD)h 32^' D9#@u>x|@x 9#@QuRc~0 (:i'KxٻޞF:@TjRN.:y huHk0 hAj zWIuS]@mz pPmik@Q6P9- j-l@ 9 aZ@ d>@n'bi`6@yt vub?כ^ RwmR^ T2@T8~b:@1PsZ^ *G)@ﴬ8*>iubiwZJ>UYGC|Nv @ Nu@@MТO;UK+v^ VR;@ Tiu ݆:^  r hd@1Ф@M@:؛s@ :@`DI .mF*=wpdRDIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/Makefile.am0000644000175100001710000000073014221624107024157 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2003, 2008 Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DISTCLEANFILES = exercises.xml exercisesdir = $(pkgdatadir)/exercises exercises_DATA = $(wildcard $(srcdir)/*.png) xmldir = $(exercisesdir) xml_in_files = exercises.xml.in xml_DATA = $(xml_in_files:.xml.in=.xml) @INTLTOOL_XML_RULE@ EXTRA_DIST = ${exercises_DATA} $(xml_in_files) $(xml_DATA) workrave-1.10.50/frontend/plugin/exercises/common/share/monitor-border-4.png0000644000175100001710000002413414221624107025740 0ustar00gdm00000000000000PNG  IHDR2PLTE6ID6oA>@>(əu&-N?HZʗN>E"%'J; .Eߩ Z^aLy*I4g_^Vwor8=5 r84DH>7Ai685:?b8L33F\^[8k8wN S{.w2 'h _~i4/[ _x{xkժB|svs{v NOao49-(*2u+1z67.r1խiR* sJ Ե)ltSF{^euРud9;k:7W+Sr칟~ ZvQ]?vݗ|6Earj߃Ĭyjʭr z?ǑP0*SssOvw+p= ? -ѐtEAZwMPLY4Ի)Z<㕺Y׎_p^gR>ãl+iacg7= қk^D.G>)]tf3)'}f׿uyyAN)S ,xgwСCBh mIRF+dՇҦw ЫƟڔxzKꭌ"ѵloDA{JO})'wkcyZN=R}>'Y=]Y!,>Gb 3{Qgmx>A8]|1З˯]kNH⋡5*7bO4;"Ʀ)@e[].л#F|tsQgmRnw*>= _?w%'|V_Ҍ^TTUt$v 1r H 3+H>:itJn̟ܷoOfaK2Bmjxltw \ 'gGAm_p OM݂#AGRQouwn탃k~w5$Af5QZZ0,ERNL!YT<ѫyw\\; 0y}KW{$(HnUz t1TKK;!7tK"B΍n$<{^\j줷fNU=ݾ !FkX*Yt/=/xP ̬ [# 8i a3ݙJK=Npn@ֶ9l}-LG}uuEyr]X >~epW?OvҗYXXXKYEΉKYpO9Rn%K8A!z'oPmfTiI$n97td3P~%AL`։8P3)/\`a塯K=#~# {a2@ ο-!ic}$f6Aw Ub/j$K':]y߂}1<3~ VESn޹T bo6[hu 32Hí_[$F0苪Y.Ǝ~$Gd`W?~4(l(z?FFeKPE7#2:[e tUt*Gv WC<$$i^JC }CwH@ײѝlmUFZadfȖ0yam27ɓξ;q dtiah4DmxVƭr0/wc1h%!t?ʓH~br{}0 _@Q\rros&/#ˈrxIrѠM}eYj>Wb#Y4@HDfMl^BWDFW/5#+ LHxX9PbsXЍ%1` r4aCg#bMHBCws6:\7lqOAۦ,]4VΠOx&= ` /=A(kE-%U8-_H 6zKMM "kfvq]P;B(RaoYԎ|e@cv@xɦub,NB#JtS?c8-q؅f>&hdZ8t#}?wqOt229UE/F`O9薯ЗOެ6ls4 E#{94I@WqG4ɣY[;ju;lj<+OYN%HsUEG8]lb"+yKF"Б['{4d],)&~ף10{/$E|H[ O\йQctZX`N,jZ>:,ߔ":41v#燈䙁c&o}Md٠MM&C[-DbC^ϦBoj:|Bs3},jcq>'ݝZ3g 8-왾9i[%p{"p7$Q&2CAZjɖAK;d'7 oCcyEn.b_Nz'%G!>ɠQG49{vQi:{lH\klh{>E%n=uRЩOK.\|ym~^(kl~h{>MZ*t|*[4M43Դ pkdO\|}"&϶>sB7t02:iZ:1zp)MxW6m 4-"]7včzDi9Q˙ -$'/N8Fn~1]TچKN={\o_q I(ZCa׾_{0_1sstX~6Kq SjK5)-4rwg&9AOqԻ?ү?ޣ3<{l!I_vQ̿y3;Cf[Z[6_ܕՑ@S?bQ-=ؼy'i/Ɨ㵩@`xh ip,v.̳('[':RkllP1Z:׻  =hH5~WGVk9|0YmgP#sᷮ3Ef-H6d;1ڗw@ |RUSOAwMRѵ4>n}7;~@_!m?xLrK' 2P\, ?A6K!]P#D>).&$z>hio~bw: G}HN`Th{L}]r ˬ@o<5P8ʗ !+X芤е4zNxwzAFKh~2jL %mģs>N9пYp Fjm-mˡ@#gC4}B@F?Tw#5VΣ9vXކ>d *IZ:d6k1iϷz֝CYz59]k~WjP#v;1Aϑ;[Gmk1J)FCn]~+^~WXW=غb)T'wZqjUM9;H!>})< # z&Kjev\cT__UM y~j;7koښFE7aPLBUFu@d1v,djEt$T:䬷7mVSe[Uκjf!k#BBoIVJz<ty1J6$({B+j\-%Hl=Vuj}׭;r]%vSːoj ގ]q%;f Uw_͊!& &qT)!ȡ~ ^76!Z XU_ں~Nn?73y'̳/qTȒvNŵ O :Ods[:(7ש_Z9=q/XA{mHx it#ygk-/<.b9 ?KE- G`z ~Mpw'caף*TbAmnšCQMFT)_^zh|;t!˗*Ԏr<.*n}NHskrZzb)Cy*ANԿU~߷[p% ;PH]NjxBU!v^z:j_}'))x䑒?Oh|^NSΑԨF-r /_-ͭx4|TߊHx.#^4QiGKЩ /^ht;nFQ_};n߆mB I_Q+$-W|9E}7W/\R=B$2b+ bqPAex^X`DJ9g6OMMWzG*xTsvW%6AZ{8yFB_C^Qt* KS~]"#sKZNAjTD!z,BͅGW^NQvv:;%afA&3 0R.fgI \GPao& #x|qyON}]6A8Hm#)"Q;T:."UvJC襢Vou{gteTWy4Zu#^h~AqșFfEG528OmPgpqR~޽{m]. .K ) 9d ^[f@#2"Eg@xk8 #V'n htc3@K+u2ZEgk@#E.ХL xF_ރ]һ( d##)l:=sy8tqlUNT'UupPt٠@Z {~@7nܸ+YХGCh \M$iLRa8N-EEClꨌ|V` 0j^|`"p$㬞s=}.裚`lGn ke<*w!Yxո7k*+1A^+.l`07:ՕZub-S6gdx0:ԹIA^cwY1n4Ӫ7VXK}r*E_,F\8XsM'ZEg>kGUnM>u:#=Ek*S5(]m]-DmqZ.Ǹ2=J*0:1\cYXiB㝚IcKiB/$7֥.҃HpM#.ˈs:$c;4pۯa:@E]iE GޤF0;=Y冪yҁm'B lD36}U7+Bi@_D-F4̩r3fGSp*ʠߖz"j/˫׬ ᰫTe4t1?hrRli6"TVS0LCyG{6߮ T?٘Ih6M&:{\> a9sR-+RRd:J@bZ;4I$  Jթ[=>a19;ũ$%wbNr_;DSlή-ؘ0Rw51/Z=/ 껗$Pnu|Ӹױ"9X֟;j]wffG0%7 ɡuQRPܛ|G30Ƈ?>6Sr-+)OE7Įqrp{UB@?>_eu_5ȸ󼉵ҵ{i2Ict5cc`̝dϽ0/9MO_0NUa_ ~F5O (7Z<<Q<87fUVܘ<ΧR HHEhS5YєUAꥄݖq\ a ʅsx]̄XG"a;D֤*B[#8QDXbKGDH pHYs  ~tIME:85f IDATx\SWi Lֱ0mjtahԌTI ob'5$/^ \r1%6%ҴsacGa^)46D :yksNHD`S I߽^{}N[V]跢nߊ~+6跢nߊ~+oH7S,o:]IW l0wƠ;Ta¢W8ƅS b zTVBj Pj"5uCkjѣJoEFuVm[QoEFuVd߿vMJY5>ag4g)[t?dlg vPhYRv?xeγۅBH=h'+מ\mٻW`t}3}>_WM&!z(p}š.l|<g&1 'Jn56Ԁ]BRd-b?rdzб.s睊*4.=Rd-gX(>lo?Vޞ mm,V N4g z"߻>'v{&j(gj_wF_& =j\ [v |ڕ1V)5h7Bw=T3+4<\\.mONvBu'kF> <@hDVgSxv#zW(\ЖyV0:`7gno'x>ߋa(EN"S@D08ZA/L<'4 d^qi8 ]\7k/y<2$ Bsht&GFnݾȓ~t u>L2$ B3t (9c5M.Ho4gCtSXEVX.SmkƳ/0:" ???3yĀ߉Z]b8>܁[~i% B^FM|'.0`tHW!o}gUy^ $s8""չ)]80pDЧm>#{ʢB~S_9b`*p]4 ڼ ț3rVUX>'N abBBO+g[S6P~R7yȈg.dr 4X5<`;333&xrL4:);Qw?''DNXB(YE9X7o͉:CRWȭ`sڌk̹s_&t"ּ̈.,?: IBiѸ "_RWtqIr'tJi HρVKLTj/zK]Qή>a] FNx:GF3[Uj҄e=Ù3h$0jui8wUJ~'EB3 N ޵ IN>ƿ;5n!Ocg?8z@S/dh7Bw<cзOY60֫U6D#Qv}5U`[ǡ"N׉`o=X/KV5$ >nk@/O81w@J"\n+/~旿$XZ @umJNIm|fߐk7H߳'}XM,Dǚ)[ 8ri G!.认A:r[>;"5%thK٣j=Wv%a=̻exT BF$\Rew; bTWniR7㆚F7Z;;7=7iwVut4$=\8.n鐂dj1keSጲ _C\-R"5L2{ĉt(kc2:B@gtojVLs:]͝k> ћADA^Ufg&F72|>7ca $=抱"}ZT+t#j# ;ߘ~JcEE㴨2;F(fFj.>%=ٜMfg"SgС?L:\n4}z4٠5g[$:(ip-* r{1ؘA5 V ͥАtTvXd`٠Ǡ0n/  digCW˰;: 5֘jXY VW"PJ2>Oe4do^cvJQ}43:+(Ee\.{ ꡶Csb%g-6s1J8 tY8Ax)Mn \2"Gcn]A9}P@WQx ۪(8ʛC爵?m<קzǏWށ: GЭ`™k2}ާzJ G8g*8 PjO"WfBbnmU7mjцcwuմLSSS^ŋD,?vۑ#׮];StWVI-j׮ʞ-k>V ZޭJm#((JM=:mZxaիӶ^ /Ehse57X#m_KJ=.NmQ:*8plpӾHKHC#?]6TnA5@ibk)KAִ?xҾǑ*\U"]WWj@BӫTeHf:tq h ˗6aw{čw߇C#XBe p xjt#Eʖ?];wܵysζm# h 9bm`|uF> sx)p-p;{޼y=4gޥهV7uN9C_3Z@+/+?/Hڼݴc׮*6V(MkJJRJJB!V{`Oϔsl +Ϟ_#Qn tjŜKy7"rJe ֮3WSYq&ѳGAgOƬY&KP Fՠj uң*{V]hvu aHEà?pцHƔysSE5I HxUC Cs4'3st{˲> 1{ʔ; _!27jXy',ƧdiYzGT&LNkjd|]+Fݚ i`bN-\yKVRz+ͻĴjѼ{]̮a4^E8(SFr80 Ec4k!;Q/B].Whr v"V}}@DSHT_z%UNT*;j1Sf'SW%FN-fٶ'wOq@G.-7NHHz2KQ=;g_(*z|c%}sUsڶ>;?\FqMBgkkx'7w-;v`7^xݐNqwXpEƠ w^;C-q+srsɅ*(RH,Q~˕?;cY4"~ݺuCK宬_̟[>2;T 9+w_o?@\1:}@nx{ʒ|dݺq{0p;(R0ײ A`C*Zic\ܺufرw,Ʌ^%CGWT:qbqNHa#%AnGKCV_r,\J ~VA=W{z80A9zHN:v[pa<ǖ ~t{L |oКtmŧw [W>4z8*ӕr!Wc>J-âOa) :1Cq㇁cCɱ⨏C5dnCz+cv߇! V_z8<77~ϞzL^SwSͻleQ孕~K1XgϢ}h(>~GDF :Y\{yn0%%.=-//>"x<NpNS,?߫E,R! ytKW̻؇1{.ķܡrx0 Fi Lߥ]23rJ7Pҫ#JAS2^?YpKqKn1%-P-K GޚSv ܕS`hC/ `zDC-{%K0.q@_.2UR@Weeˆ:w<Դ;RMCR)k@bS;@j~P]ßbN(ZE?Ѕˀ=()#գ=) <*&tL[tt9vtrx ^+Fӏ|!DDUKIs|vBq.4FHt}bk #Ӗ]k؍7d`e|j<0HJ0޺FgyQZelU6{4tA;lFy(u5P، fC ^&a M)F7ֶMh;du砛v0 WNf N5v̞XEOk[lCS~woPI,ԢkxȒzhޔl-34:yɈ̾\^J,Q픬f=认膬O%fϓ@D#l׽X[v!S\rh4#wY5f̸lw=Zk a'buCic;A*B!`YX?}l6Ixh8t<{t[ Cۘf/&44Ei|U%xo>ƘZ[cj;)W<f7k/ArL nc)6dEWZ)8=9~{>xK/7:^&Z>CrkM0.uޒ1A֘W*9(AEGo(:[t&L|=[l:RFcBjc[~RMEXN.{XMu>Sod,Ο4WS(VsT#RszblMs{~~3f|ڍ#V`d)$:UIQ:jxkz$:.؝-?Qbc3,/!dFIDAT{ /+a&6r=X_wؒGP0EJ(:z6*es&jM01_-\ $6\^]9WWom Ơ? Zj!8Lµ,21W,Fin~ca;1̸x(ևhPAH$6v3텩p͌F]֔5e(u^?Bh=bsqrTe)70īۏLI8CO}вho:ybL>kEA{}~գuߚ56:ȹ?s#&&! ,YзϾw?ųS7͈ѧl;d$ߏ&> I}{ o濛MXt&:uZີd2UI#htRE~KqtV-,,mIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/monitor-border-2.png0000644000175100001710000002406614221624107025742 0ustar00gdm00000000000000PNG  IHDR2PLTE6Is6oA?@?(Ɇ~&-N?HZɏJg_^Vor r848=5efc7AiТ:?b5758L33F\^[8_yЭ6MN]`3k<sЬ6"y#}w3ZHWW`PUQU.E K6a§˙V*~#cfo~sZ ӧ?f&Ϧf9ʪ0%u;4 U4!־CQg ӥf3rUi@._ NVtEV%8JaқLVϽ[:ḯYQt4uv}&߸a}^4zsCA׻u&cdP5Wh>iꒇ4.׼]^3=cz\qg> VMӀMeЌO|q.gG`͓(zd0| C7tiz}5ĬF5İ)q%ipr￯P<~/ JzVwILx.zF3PiG +Bi4^vnxϿ] K͊?nR+} F`zCLTw.1==χô.:s;RCTY齴5f/>SUnH KD䳾>xbl:t}Y)t.6ugtc8ksp(rqȓz~iSjt$|]Ԥݘ϶GmG}|'yODf/J&^RR^OZM ʛ"$T^ ĉÞ*3;U";}2E+]^z RwdO|qЏUNƺs9ܹ^:H"~TR.zj: ;)}nϽ}ŘG=l:ϛAQge9$UOsyR%)lxEF*/j8~؇HFüّn?k~ILmOa臡5iD?S VɎYuw()_M%=O:;vREeŞ\"Ioƍ+khуW21|vz$U=Tŧ-E6V4~9s0eNin'_=˰fLaO'Pc^Ց3Z"yY4J67&Ԁq`⥼pa4UW7^C9O44>^'E_6oWM5FCJs!6jAs1r详HrlY@[s=,T5J*^ ܟq ^ϯIYU9I0N7?p4a닋?f6R1AO ]j҂^E`'} !?p{bzQ|Q5-G .QBM#$$i^vn'N# Z6> ^">Eb/T%X̍ oO<5}b{b¶\EN/Il} jD"ax]EOlt\AG}lCy:~6ѾNo,_x#շeK>Bзѱm'`;;$' +T[~ZvLn$r:HC /74?߫mdr0tz&Mkt~klOPFK2 }+=]?:~h+PS:`^nDЗOj7k$J*;.cP{TM^caz$xbfD;OLt'ID.΢w6:. 5֯L TIeOha I|PVc&nXr"14 6QҴ82M0z}xҀ~6~~2S550>2 ]{h_;T`&WσOpPCwL/L9 dS{1Rp@'!I=heq^3h4%t! 0VyDf"Î+Ѝlt4tF/%/nJf&_TbV9SEw_ޥP N 05\zOp$JELDv'lN)trlJo+0 ։Ett-}á6D:sl": +Ua#gzㄽ&og3ΈF +pt6hCcj;{WyQl#4QN48F {E䰨ġҋ~ό^읔F>\%ka| z}AĠÌHr[ڈlAȧ8q9z zD:3#rSR>_2~w7engWhЉ0sm:AģXY6b|2fW.g27...GU8 tB;5:~4z7d_v-Od;dFcSG*aߎ6 6NЧ[ kMI\;#"=o׵JGM.zvk{jl~ oQaLf'Dpa}$ S%/},agIֳo#‘6oAMMyyyvbub6x?8z0Te=dAJfدsJ%$낌zbDp %F䱎3wr~[(d]d9rcMN aGZY+?qzF z^8U2a\>"{ uJ|XpaǩS;MéxSث#hHs2[6 }dJ< ]okqkEC鰏מ={6l㎳p_Ȣ,T>AG7V^nJA"L< h<ȍ ;'ZqB]=LDSĄ3YI~Y~quUǴLS9̞߀76P[k˰n&v$D8QYqXԃAxY)Jn|Ï{a/>cl")2ESOeN?/^6Y>UKE}k4΃:\tιc//[ 3"zSV6w*ư|O:we?G[8^Dޜ,s}_N >DX'6s20 t }^᝿q{ZO_Qo--,j?N(8?,jJoiBU8O"6֬T?QT ;7Vn3{'8T~..+_`ϼ_<]1I4=i@_BR[x/ףk"b# C곛aR1'H>= /GÄ$OѧB?@ݯ.Z,F-a.5˚g:s ۡ: RC48, '8fZ>awͯ-d#ŸiA{AKKe6Ȇ9o5?IAQ@nc! wXmm~b g:~ GWF5nlΞ@=KSDwZk@=IS@Wgω&͖=6t-($uD|hNr:c{PeJB?E-nPۀ8.A~J{{"]COY7]:M3z޵e5˖Lvp )k1k7];E]:v*҇|H3 )Uqt ,;v4{k#+J0k ,ۚEG4*=b;vx}eK kյU(Y8괡DZJrᮍԵ z(WG"F6z0 讞|[ݱ>Ls,B?oЋ8J o\3ҺJ{,;pAZK$ՅsZr-!>)ЭOb_[:\^m͵E$T-rKk)eWkkBKn)Y~h7^tkCȓP5j2n'zs!ryapm)+ڪsKQ[/[?-[v/:(͟GY7ӎ~()6RAH?ttً jrV(XVLe K-ن oĂP Жuu@pdY 2~n? d;ioڂ~̧aVHޖ6 ib:WVw/@ hz 2@4zP1%; u\hۥr*2Y:-~@59PCխ#uTX^;pB2TI.׺r~!%Qt\y Q&/AG.ՑBy!Hh,= #\ /-/0IiuMN=G/xZWP6E'}+p\?Uɪ26;TwAx T"$Ǹ m>d`W?/y+@޼f\*ܸ`nUI4P!?/KT.UqnqtU CsPsNdE])7?EǸ>܉}hѭ4Y$4:>|9O;E|챯qL{ Hn7+x#7(ɽ{ k[~t.WEߍh%e9&+?hG43U+VLN=B|iFwCH/f$}8䡈M,xmmDN^T$}4 (0xE.=ޭe&< d6nS(" RF`yNZm0@>cpZ[cF4ޜ*(´܂>QwҢ~XFy!NWġvf ivɥIDATNg=c;;m;1J tQk)63cwឥ/P5!\c:Xx>GFj >Y[ NȢsRQxU|h(#f\[K4]Z-x0XYY(ABp0*)UOX}i|PcPWxu>ߠtd0zE<iYj$d2a76b vviVVlizkSK~:VCcKn34̳a1'ܒ]2b!ZMLF.ЂrzP聕n.|`(Lz-.:]EqYu=WkqQʤn.\mcv+FsCSZp[V`$l(+KMA-\pYՏC.4*]7XK}r*EicL.i9\nC!صCJB+oփ]+Vh[425BԱXn`dnwM+e8FB_Qf$@XUbK)Q$}Ef c)C܅$Vfg 7d<372"AWߨ d|X33Av cf5JAwDN$Q{{gFo\e}V$`-}/LV_)B:m@_ Q'" . ̨KYض-r ZzB,QGld-E;yPR>H i@ ӹy/ϴiIL3#B3m+Q?:Z$)F =)_g^a]Of4 }9Rd6ӦfHqgڸ".LsEϴ3oF2 ڪkIENDB`workrave-1.10.50/frontend/plugin/exercises/common/share/rotate-arm.png0000644000175100001710000003151414221624107024710 0ustar00gdm00000000000000PNG  IHDR2PLTEysq¿+Eln\9IHt)hέV:+&43#Pfe{VDoV&$#ŏtt櫋 3xZSyzpf]d ʷR<3&Db;CQkZϽuFSR򮚉±s^U265ҭ+5DjG7XPW}cʾ5N@4.@ZrwoqiTweKAEݮtխ _tsYeu/AV!4H͊k۾cPFbK82aOL2Lg嶬~KD?o]Z߻|peu610t-+=A?=᫒ܫrȸ -;ĹJBН[Eڕv^baՈjbmrq{|}IR`wz(AZϰq]PRXẢVKɝL2(.+*66>归}SB?Ɓ v[Ƙ iR BCJb^RRsN<,@ћXRL$':N`A3WFC/#|ih ͝<(";Uʹ吒ðJbnme)+2šgg_+ۑhVȮΥ=78STQ-F`l_`ypjݑx("$+lbJHFxl5&(hLDB躙+,0p{K81螹䁈 _%4to0$ 1TYN$@1,),V%J]^З3eb H ,HmP񠘥` HDY ;?}j}A[p"ll`@r< @,aUR e=+UwS dwh`X)Tw\! Xވ]i% +n~L̠Q,Ŵ&+:K("]q*EIBo3(s|H 37 A^JB!J1 :nr}Ht)BCJ*(zPBtXTTT#( .s$R(ur*rU 9J<[:55g+9u: +8? ?Э+$9 <$9'PZ$S)G:,K%Ф 8 .Z]sS!}INZ('%_f`T"|xnTT%qrkHX,:Òd* 5,+ı`u@WTuér-)>nN'猓u{r>ĿDg]B.>r$u{$/%?V'X,ǐ4EW `N*.G++!'&F :::KPu":ygY+BF_zg/&j+Q14:ٍ$+YefY_zNrPg TrD$)rApsάr8+uFѥ" G2eu+l޹ʕLM픁k30t,|y'X{9܌L}<)@*##Y5Y&D:+TUV3nf]y ,_^0E4fTw߹sƄ.;d 3Ntlp; ܸӡ=gcfg k/5gR\3@'t|)YnfYifvr,Yi!PF .$> ʗk>NtkYP_#㞌4tmx<ُ;;OA p ڻF? 7#Wp2~M>@ 2= mL@t\cK\)]NUUdh,qtz!Ht mw4{fB{NO .z#QT c.7kK6ǀokl҅h{*"е4/@I >22kK)krogI#{4"S) _ɒy>L DeHf{ O ҐyG'{n 1qk _zHz]]l@.Dp-ܕwv>?reF #S' c:suYߙzpR1ϾGn >mfs?M%GW] 0Dr}q/,cGg ͛wz AD?kٓ\J9L,Iԍ א=$D甝ד1h~davCxdT}Wz݌_~TKKM?CAci:> Lԫ[ͱU!ZZԝgO3Q),a𒏏R?O,ʣȁe=&*Yp,yv-h`.&F|>·,j)͝a|0_6:zk-JQd\ ׯ\Lu?e aw*NIC5л[=*CcS=3hG ==RkN䇯|pmWr^Pm;o/RÀ*w!B&99xГKCꍪrxL*ں*@ ç@j[{wwBF-PL' ^6Y<"|AFtx$EمUw@d!!6WޚvV @n0o٧!X4вSu~2CF[y+IK.HMsMs]f9,>Y9̶6z0ҭg)4>NL0aH oS7%%dXĠLLLX3vat7ϱ˻}k1a.?E B6cccO`L@`%Z#*^Cײó0SLpٚ(%WMS/{6,>jRjIWw!_Ufc,‹_F8 Lyks--#ؠ{^xKϬӌ?=~RhU dv#Vmfw8oc_@@9 0 /[v.xv, w5r:QݔC[Z! g|z?ɓ~h">}/]ts883s@„v\`(SOP-2瑿TӏMSm?'BG\W!x>L@'N5,iXhvb2U!`l|B[@;'>^ɾЖ1/'O&s艠f:GbC$4z* $XUSے c4 sCtxTx<[,卉ׯ.2ի|:ӽ~x}$}8 j`F33<9>5ɓQxς믏9UJ۠o7nɿ$MhH/տ}(r@VPsG>Mf܍o x== @zXژP&8wﬗ\/"X$4GtSnYdx:1O4ѓw Jdg?6[GgpRoY).ݠ:99fpzz|2>7 0~#E 0Go$RqSNt3k u}uH= |!/^pq1A~ѱvxPݑB(YXc$O L6@Y5C ^T3N)GrD{ѧw8 _cvΡ, XUuO)#i1N0CNbݸNx29GGk+SnoHTT퍆23=AoCtJ$=ci 3[{׭>n W=eo -|[ndrLSF܅902.am][S-}.sj1Hu#^>O ~Y4L4hM@d߾8+֬ffzJ_9{`DRkX ! cǚ?̨&jGSjG.[>IS$g' ^>ЫD K"@tt lv?gw5DIH_ջw_jp<{CvX.PڒTܬH-SR"Q}ǻvb_ayc'vuݛOU jbOBW]]5V3IofBG^ID߽{2 şלohvc*xvYFkÞGXuYOq :M"OQ= <a;wUQO]sVVv؟`A-QSQ`_}RW3]'V8l<'>!Oy=n6g%5 x>'g=5Kt\}KD4辣?gJ,y<[|(Z }дFb :fh/?lI@񩡅4 Bv]c|$ zt47O{a_t{g<ޓF?g35>>>3!,py`hN'em9JMgӢ')wp ,}nOr0DWw>֜.,!֙i[6Ot@&DՀ~Q }iiuNz'X~bucBasaU}c{薖8'j63怽&:R'addDȩ،l[% WQtîwXA@拾e?AAL& 2.C:%KD"9DE**|IoTx/m[6FslFtS8'g0B451/cal'|8#v}rk\[|ooo®֚}lMg,F=B !O<@V,R#Ǎƍd{PKTȰy 7ln<t{3+C=-aSCwƟUތȮ|%J;K=/VY£v) -pAW]i4$7UjXʇ+)-[;-:KOٹ{ 7m(a҈~s_mt9іjGP}0z"9 j>}V2N_W@6En1ѿeHg\Z::sE._}_armCO;#6-46eۭӞPJr~pۀeb/}cձ4 B].q㫆mavpT#_[̌3eOm;B9:lٽ-NO KEW5EC9^COc>jEO3LJmGVR},6Ji{/oG@WzSZwwTQQ6(t.YU}cS6nC57o~gL'GID/2ңA/RN]>SqjO$َ.|Xܧ6ǤX@ L̂3)(%}4+4IDwV ::-Ǵꈎ>S̮s:RX`VmIDATj<[#3"z|&;RGwV̡~ut= ] R1\e{0sO[̜$\ci7<)9(Hܶ-#F%nq^sMǟDN`Ao{B偲 A)&YC~M w`)=pA(Lr%9Nq^ Ce)9WSjGQtDW e:M~A>taϯ !s:΍Usj}ƍ ]Yk6o^PΑHrb\FŲϚMѫiegBoՇK7NO'lm{hlތٿLz-y2 E~γC& YWyI /9RbWW⋗vi(0ڱjыߪ?7׮]>(KLܰB}X+9t5PcBͭ0s=F;UWI2#KhkZ|1w2"U.QjPׯ]3xe/$1r|shhpnm_Axksr# j Y6)[zEAGo/}UqG537Iz5:yV(@&x (mSopUmR^B*)MLW3Lq^ ՟1MNG==W) ޅzcϤ^<woQ6)ͥ{IQ Yǰĩx*{TTAgG&i|B=ݝ{kxR| Pغ@VD>Οߡ<ӽ$GG+K< aAŞ<ы!znPnA ;K\#=,U/0-o+k*,~WQ1iX`u!;6u_-nn0BOxLR١P7AvkPuu۷o9e}5 I^(USB^ M\KT9A݂O:t`ooC~5]>d^n˖->ԩ |+*;0ieF7H?n:eI\ ^<AF ܟ:Qv:.uVheά-[6zqGqGë\gfzw[I(;&5tBc*MGFGG~~%[6AǪ!EԄ"z6? x<k}80&c[.V5Uޢpڷ;<>ppPs~ PZ1]M^))F۠uUfyز~xdaݡ:9~ȝ{.HJJdw|,ܵa3G7vs[ŧ[cM.B ;5dBwY/B ƷQW.3ɯjZz+VոgcbbAu= VPb aŇrOmJtހ ^\N2Ӯ <i&~'jz l-Buv⮝e=!}1Q3 (nP <^O:&r?i^<7̋;٨ [9kFluf&lb]݄jccc+;pM/7A+ڕ22:c'7:]:|ij +t\ :.9w; :ܳGN-8,t^u r;tzAv\8QkwDxb!ra5SȽ =ZYs w@aQ%lA85h?C RFRRˉl]9CX[ckMLjR!y!tP]~~+UDuUtrm{:Flќ8pY [_ ؚi>e Jv7݌Pwi% }B7K:]qڠ vP 7i" ~+&yo ţ:[誮WBOO,Yk; ^8~Z&@ٹn"yt-u^B'tieB:u0=d ~C{4GRi.Hql. ˳ `ʞnBmأS_2-t_>::z:AFQOym?v lEk Ivuo=jq&qO~3YqzkцGo>z褻'A_4hh}צ7% |lkSL}PmY0`Ha 赒}X޸^l t\ˎ 5"},r5Ǣ/B+8|, CGb l=&]{^Dvd+蛈HϦ}+ߋQFޕ3A1~OS^t>Dށ[SBkts]TG}mf|9، t6*nxXkLL!3D!ݘJn}Q**ѡw;#щ+C_~3iQ7wmIa~y63Cb ^Yٻ lU(fFz_殼tt^'Q[ _ghDL7Rj:|*JsԻ04"ѱc º*RyDt2- 3DrF,clNc|gL X7::%:;+['04e IENDB`workrave-1.10.50/frontend/plugin/exercises/common/Makefile.am0000644000175100001710000000026314221624107023056 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src share workrave-1.10.50/frontend/plugin/exercises/gtkmm/0000755000000000000000000000000014221624440021741 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/0000755000000000000000000000000014221624440022530 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/Makefile.in0000644000000000000000000004101414221624203024572 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises/gtkmm/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/gtkmm/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/gtkmm/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/ExercisesDialog.hh0000644000175100001710000000230014221624107025025 0ustar00gdm00000000000000// ExercisesDialog.hh --- Exercises Dialog // // Copyright (C) 2002, 2003, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EXERCISES_DIALOG_HH #define EXERCISES_DIALOG_HH #ifdef HAVE_CONFIG # include "config.h" #endif #ifdef HAVE_EXERCISES # include "preinclude.h" # include "Hig.hh" # include "ExercisesPanel.hh" class ExercisesDialog : public HigDialog { public: ExercisesDialog(); ~ExercisesDialog(); int run(); private: ExercisesPanel exercises_panel; }; #endif // HAVE_EXERCISES #endif // EXERCISES_DIALOG_HH workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/ExercisesDialog.cc0000644000175100001710000000312114221624107025015 0ustar00gdm00000000000000// ExercisesDialog.cc --- Exercises dialog // // Copyright (C) 2002, 2003, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_EXERCISES # include "preinclude.h" # ifdef HAVE_UNISTD_H # include # endif # include # include # include "nls.h" # include "debug.hh" # include "ExercisesDialog.hh" # include "Exercise.hh" ExercisesDialog::ExercisesDialog() : HigDialog(_("Exercises"), false, false) , exercises_panel(get_action_area()) { TRACE_ENTER("ExercisesDialog::ExercisesDialog"); get_vbox()->pack_start(exercises_panel, true, true, 0); add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); TRACE_EXIT(); } //! Destructor. ExercisesDialog::~ExercisesDialog() { TRACE_ENTER("ExercisesDialog::~ExercisesDialog"); TRACE_EXIT(); } int ExercisesDialog::run() { show_all(); return 0; } #endif // HAVE_EXERCISES workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.hh0000644000175100001710000000541214221624107024674 0ustar00gdm00000000000000// ExercisesPanel.hh --- Exercises panel // // Copyright (C) 2002, 2003, 2004, 2005, 2007, 2010, 2011 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef EXERCISES_PANEL_HH #define EXERCISES_PANEL_HH #ifdef HAVE_CONFIG # include "config.h" #endif #ifdef HAVE_EXERCISES # include "preinclude.h" # include "Exercise.hh" # include # define PREVIOUS_BUTTON_ID Gtk::Stock::MEDIA_PREVIOUS # define CLOSE_BUTTON_ID Gtk::Stock::CLOSE # define NEXT_BUTTON_ID Gtk::Stock::MEDIA_NEXT # define EXECUTE_BUTTON_ID Gtk::Stock::MEDIA_PLAY # define STOP_BUTTON_ID Gtk::Stock::MEDIA_PAUSE class ExercisesPanel : public Gtk::HBox { public: ExercisesPanel(Gtk::ButtonBox *dialog_action_area); ~ExercisesPanel(); void set_exercise_count(int num); sigc::signal0 &signal_stop() { return stop_signal; } protected: void on_realize(); private: void reset(); void on_go_back(); void on_go_forward(); void on_pause(); void on_stop(); void heartbeat(); void start_exercise(); void show_image(); void refresh_progress(); void refresh_sequence(); void refresh_pause(); int adjust_exercises_pointer(int inc) { int ret = exercises_pointer; exercises_pointer += inc; if (shuffled_exercises.size() != 0) { exercises_pointer %= shuffled_exercises.size(); } return ret; } Gtk::Frame image_frame; Gtk::Image image; Gtk::ProgressBar progress_bar; Gtk::TextView description_text; Gtk::ScrolledWindow description_scroll; Gtk::Button *back_button; Gtk::Button *pause_button; Gtk::Button *forward_button; Gtk::Button *stop_button; Glib::RefPtr size_group; const std::list exercises; std::vector shuffled_exercises; std::vector::const_iterator exercise_iterator; std::list::const_iterator image_iterator; sigc::connection heartbeat_signal; int exercise_time; int seq_time; bool paused; bool stopped; sigc::signal0 stop_signal; bool standalone; int exercise_num; int exercise_count; static int exercises_pointer; }; #endif // HAVE_EXERCISES #endif // EXERCISES_PANEL_HH workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/Makefile.am0000644000175100001710000000034414221624107023474 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) workrave-1.10.50/frontend/plugin/exercises/gtkmm/src/ExercisesPanel.cc0000644000175100001710000003532714221624107024672 0ustar00gdm00000000000000// ExercisesPanel.cc --- Exercises panel // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "config.h" #ifdef HAVE_EXERCISES # include "preinclude.h" # include # include # include # include "ExercisesPanel.hh" # include "GtkUtil.hh" # include "GUI.hh" # include "Util.hh" # include "Hig.hh" # include "nls.h" # include "SoundPlayer.hh" # include "debug.hh" using namespace std; // This code can be removed once the following bug is closed: // http://bugzilla.gnome.org/show_bug.cgi?id=59390 static void text_buffer_insert_markup_real(GtkTextBuffer *buffer, GtkTextIter *textiter, const gchar *markup, gint len) { PangoAttrIterator *paiter; PangoAttrList *attrlist; GtkTextMark *mark; GError *error = NULL; gchar *text; g_return_if_fail(GTK_IS_TEXT_BUFFER(buffer)); g_return_if_fail(textiter != NULL); g_return_if_fail(markup != NULL); g_return_if_fail(gtk_text_iter_get_buffer(textiter) == buffer); if (len == 0) return; if (!pango_parse_markup(markup, len, 0, &attrlist, &text, NULL, &error)) { g_warning("Invalid markup string: %s", error->message); g_error_free(error); return; } len = strlen(text); if (attrlist == NULL) { gtk_text_buffer_insert(buffer, textiter, text, len); g_free(text); return; } /* create mark with right gravity */ mark = gtk_text_buffer_create_mark(buffer, NULL, textiter, FALSE); paiter = pango_attr_list_get_iterator(attrlist); do { PangoAttribute *attr; GtkTextTag *tag; gint start, end; pango_attr_iterator_range(paiter, &start, &end); if (end == G_MAXINT) /* last chunk */ end = strlen(text); tag = gtk_text_tag_new(NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_LANGUAGE))) g_object_set(tag, "language", pango_language_to_string(((PangoAttrLanguage *)attr)->value), NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_FAMILY))) g_object_set(tag, "family", ((PangoAttrString *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_STYLE))) g_object_set(tag, "style", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_WEIGHT))) g_object_set(tag, "weight", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_VARIANT))) g_object_set(tag, "variant", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_STRETCH))) g_object_set(tag, "stretch", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_SIZE))) g_object_set(tag, "size", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_FONT_DESC))) g_object_set(tag, "font-desc", ((PangoAttrFontDesc *)attr)->desc, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_FOREGROUND))) { GdkColor col = { 0, ((PangoAttrColor *)attr)->color.red, ((PangoAttrColor *)attr)->color.green, ((PangoAttrColor *)attr)->color.blue}; g_object_set(tag, "foreground-gdk", &col, NULL); } if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_BACKGROUND))) { GdkColor col = { 0, ((PangoAttrColor *)attr)->color.red, ((PangoAttrColor *)attr)->color.green, ((PangoAttrColor *)attr)->color.blue}; g_object_set(tag, "background-gdk", &col, NULL); } if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_UNDERLINE))) g_object_set(tag, "underline", ((PangoAttrInt *)attr)->value, NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_STRIKETHROUGH))) g_object_set(tag, "strikethrough", (gboolean)(((PangoAttrInt *)attr)->value != 0), NULL); if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_RISE))) g_object_set(tag, "rise", ((PangoAttrInt *)attr)->value, NULL); /* PANGO_ATTR_SHAPE cannot be defined via markup text */ if ((attr = pango_attr_iterator_get(paiter, PANGO_ATTR_SCALE))) g_object_set(tag, "scale", ((PangoAttrFloat *)attr)->value, NULL); gtk_text_tag_table_add(gtk_text_buffer_get_tag_table(buffer), tag); gtk_text_buffer_insert_with_tags(buffer, textiter, text + start, end - start, tag, NULL); /* mark had right gravity, so it should be * at the end of the inserted text now */ gtk_text_buffer_get_iter_at_mark(buffer, textiter, mark); } while (pango_attr_iterator_next(paiter)); gtk_text_buffer_delete_mark(buffer, mark); pango_attr_iterator_destroy(paiter); pango_attr_list_unref(attrlist); g_free(text); } static void text_buffer_insert_markup(GtkTextBuffer *buffer, GtkTextIter *iter, const gchar *markup, gint len) { text_buffer_insert_markup_real(buffer, iter, markup, len); } static void text_buffer_set_markup(GtkTextBuffer *buffer, const gchar *markup, gint len) { GtkTextIter start, end; g_return_if_fail(GTK_IS_TEXT_BUFFER(buffer)); g_return_if_fail(markup != NULL); if (len < 0) len = strlen(markup); gtk_text_buffer_get_bounds(buffer, &start, &end); gtk_text_buffer_delete(buffer, &start, &end); if (len > 0) { gtk_text_buffer_get_iter_at_offset(buffer, &start, 0); text_buffer_insert_markup(buffer, &start, markup, len); } } // (end code to be removed) int ExercisesPanel::exercises_pointer = 0; ExercisesPanel::ExercisesPanel(Gtk::ButtonBox *dialog_action_area) : Gtk::HBox(false, 6) , exercises(Exercise::get_exercises()) { standalone = dialog_action_area != NULL; copy(exercises.begin(), exercises.end(), back_inserter(shuffled_exercises)); random_shuffle(shuffled_exercises.begin(), shuffled_exercises.end()); # ifdef HAVE_GTK3 progress_bar.set_orientation(Gtk::ORIENTATION_VERTICAL); # else progress_bar.set_orientation(Gtk::PROGRESS_BOTTOM_TO_TOP); # endif description_scroll.add(description_text); description_scroll.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); description_text.set_cursor_visible(false); description_text.set_wrap_mode(Gtk::WRAP_WORD); description_text.set_editable(false); image_frame.add(image); pause_button = Gtk::manage(new Gtk::Button()); Gtk::Widget *description_widget; if (dialog_action_area != NULL) { back_button = Gtk::manage(new Gtk::Button(PREVIOUS_BUTTON_ID)); forward_button = Gtk::manage(new Gtk::Button(NEXT_BUTTON_ID)); stop_button = NULL; dialog_action_area->pack_start(*back_button, false, false, 0); dialog_action_area->pack_start(*pause_button, false, false, 0); dialog_action_area->pack_start(*forward_button, false, false, 0); description_widget = &description_scroll; } else { back_button = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, PREVIOUS_BUTTON_ID)); forward_button = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, NEXT_BUTTON_ID)); stop_button = Gtk::manage(GtkUtil::create_custom_stock_button(NULL, CLOSE_BUTTON_ID)); stop_button->signal_clicked().connect(sigc::mem_fun(*this, &ExercisesPanel::on_stop)); Gtk::HBox *button_box = Gtk::manage(new Gtk::HBox()); Gtk::Label *browse_label = Gtk::manage(new Gtk::Label()); string browse_label_text = ""; browse_label_text += _("Exercises player"); browse_label_text += ":"; browse_label->set_markup(browse_label_text); button_box->pack_start(*browse_label, false, false, 6); button_box->pack_start(*back_button, false, false, 0); button_box->pack_start(*pause_button, false, false, 0); button_box->pack_start(*forward_button, false, false, 0); button_box->pack_start(*stop_button, false, false, 0); Gtk::Alignment *button_align = Gtk::manage(new Gtk::Alignment(1.0, 0.0, 0.0, 0.0)); button_align->add(*button_box); Gtk::VBox *description_box = Gtk::manage(new Gtk::VBox()); description_box->pack_start(description_scroll, true, true, 0); description_box->pack_start(*button_align, false, false, 0); description_widget = description_box; } // This is ugly, but I could not find a decent way to do this otherwise. // size_group = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_BOTH); // size_group->add_widget(image_frame); // size_group->add_widget(*description_widget); image.set_size_request(250, 250); description_scroll.set_size_request(250, 200); // (end of ugly) back_button->signal_clicked().connect(sigc::mem_fun(*this, &ExercisesPanel::on_go_back)); forward_button->signal_clicked().connect(sigc::mem_fun(*this, &ExercisesPanel::on_go_forward)); pause_button->signal_clicked().connect(sigc::mem_fun(*this, &ExercisesPanel::on_pause)); back_button->set_tooltip_text(_("Previous exercise")); forward_button->set_tooltip_text(_("Next exercise")); pause_button->set_tooltip_text(_("Pause exercises")); if (stop_button != NULL) { stop_button->set_tooltip_text(_("End exercises")); } pack_start(image_frame, false, false, 0); pack_start(progress_bar, false, false, 0); pack_start(*description_widget, false, false, 0); heartbeat_signal = GUI::get_instance()->signal_heartbeat().connect(sigc::mem_fun(*this, &ExercisesPanel::heartbeat)); exercise_count = 0; reset(); } void ExercisesPanel::on_realize() { Gtk::HBox::on_realize(); # ifdef HAVE_GTK3 Glib::RefPtr style_context = get_style_context(); style_context->context_save(); style_context->set_state((Gtk::StateFlags)0); style_context->add_class(GTK_STYLE_CLASS_BACKGROUND); description_text.override_background_color(get_style_context()->get_background_color()); style_context->context_restore(); # else description_text.modify_base(Gtk::STATE_NORMAL, get_style()->get_background(Gtk::STATE_NORMAL)); # endif } ExercisesPanel::~ExercisesPanel() { TRACE_ENTER("ExercisesPanel::~ExercisesPanel"); if (heartbeat_signal.connected()) { heartbeat_signal.disconnect(); } TRACE_EXIT(); } void ExercisesPanel::reset() { int i = adjust_exercises_pointer(1); exercise_iterator = shuffled_exercises.begin(); while (i > 0) { exercise_iterator++; i--; } exercise_num = 0; paused = false; stopped = false; refresh_pause(); start_exercise(); } void ExercisesPanel::start_exercise() { if (shuffled_exercises.size() > 0) { const Exercise &exercise = *exercise_iterator; Glib::RefPtr buf = description_text.get_buffer(); std::string txt = HigUtil::create_alert_text(exercise.title.c_str(), exercise.description.c_str()); text_buffer_set_markup(buf->gobj(), txt.c_str(), txt.length()); exercise_time = 0; seq_time = 0; image_iterator = exercise.sequence.end(); refresh_progress(); refresh_sequence(); } } void ExercisesPanel::show_image() { TRACE_ENTER("ExercisesPanel::show_image"); const Exercise::Image &img = (*image_iterator); seq_time += img.duration; TRACE_MSG("image=" << img.image); string file = Util::complete_directory(img.image, Util::SEARCH_PATH_EXERCISES); if (!img.mirror_x) { image.set(file); } else { Glib::RefPtr pixbuf = Gdk::Pixbuf::create_from_file(file); Glib::RefPtr flip = GtkUtil::flip_pixbuf(pixbuf, true, false); image.set(flip); } TRACE_EXIT(); } void ExercisesPanel::refresh_sequence() { TRACE_ENTER("ExercisesPanel::refresh_sequence"); const Exercise &exercise = *exercise_iterator; if (exercise_time >= seq_time && exercise.sequence.size() > 0) { // FIXME: something is not right here... if (image_iterator == exercise.sequence.end()) { image_iterator = exercise.sequence.begin(); } else { image_iterator++; if (image_iterator == exercise.sequence.end()) { image_iterator = exercise.sequence.begin(); } } show_image(); if (exercise_time != 0) { SoundPlayer *snd = GUI::get_instance()->get_sound_player(); snd->play_sound(SOUND_EXERCISE_STEP); } } TRACE_EXIT(); } void ExercisesPanel::refresh_progress() { const Exercise &exercise = *exercise_iterator; progress_bar.set_fraction(1.0 - (double)exercise_time / exercise.duration); } void ExercisesPanel::on_stop() { if (!stopped) { stopped = true; stop_signal(); } } void ExercisesPanel::on_go_back() { adjust_exercises_pointer(-1); if (exercise_iterator == shuffled_exercises.begin()) { exercise_iterator = --(shuffled_exercises.end()); } else { exercise_iterator--; } start_exercise(); } void ExercisesPanel::on_go_forward() { adjust_exercises_pointer(1); exercise_iterator++; if (exercise_iterator == shuffled_exercises.end()) { exercise_iterator = shuffled_exercises.begin(); } start_exercise(); } void ExercisesPanel::refresh_pause() { Gtk::StockID stock_id = paused ? EXECUTE_BUTTON_ID : STOP_BUTTON_ID; const char *label = paused ? _("Resume") : _("Pause"); GtkUtil::update_custom_stock_button(pause_button, standalone ? label : NULL, stock_id); if (paused) pause_button->set_tooltip_text(_("Resume exercises")); else pause_button->set_tooltip_text(_("Pause exercises")); } void ExercisesPanel::on_pause() { paused = !paused; refresh_pause(); } void ExercisesPanel::heartbeat() { if (paused || stopped) return; if (shuffled_exercises.size() == 0) return; const Exercise &exercise = *exercise_iterator; exercise_time++; if (exercise_time >= exercise.duration) { on_go_forward(); SoundPlayer *snd = GUI::get_instance()->get_sound_player(); exercise_num++; if (exercise_num == exercise_count) { on_stop(); } snd->play_sound(stopped ? SOUND_EXERCISES_ENDED : SOUND_EXERCISE_ENDED); } else { refresh_sequence(); refresh_progress(); } } void ExercisesPanel::set_exercise_count(int num) { exercise_count = num; } #endif // HAVE_EXERCISES workrave-1.10.50/frontend/plugin/exercises/gtkmm/Makefile.in0000644000000000000000000005530214221624203024010 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises/gtkmm ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/gtkmm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/gtkmm/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/gtkmm/Makefile.am0000644000175100001710000000025514221624107022706 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/plugin/exercises/Makefile.in0000644000000000000000000005527114221624202022675 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/exercises ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = common gtkmm all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/exercises/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/exercises/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/exercises/Makefile.am0000644000175100001710000000026714221624107021572 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = common gtkmm workrave-1.10.50/frontend/plugin/Makefile.am0000644000175100001710000000031314221624107017570 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = distribution statistics exercises workrave-1.10.50/frontend/plugin/distribution/0000755000000000000000000000000014221624440021347 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/distribution/gtkmm/0000755000000000000000000000000014221624440022466 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/0000755000000000000000000000000014221624440023255 5ustar00rootroot00000000000000workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkLogDialog.hh0000644000175100001710000000301314221624107025715 0ustar00gdm00000000000000// NetworkLogDialog.hh --- Network Log Dialog // // Copyright (C) 2002, 2003, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef NETWORKLOGDIALOG_HH #define NETWORKLOGDIALOG_HH #include #include "preinclude.h" #include class TimeEntry; #include #include #include using namespace std; namespace Gtk { class TextView; } #include "DistributionLogListener.hh" using namespace workrave; class NetworkLogDialog : public Gtk::Dialog , public DistributionLogListener { public: NetworkLogDialog(); ~NetworkLogDialog(); int run(); private: void init(); void distribution_log(string msg); void on_response(int response); Gtk::TextView *text_view; Gtk::ScrolledWindow scrolled_window; Glib::RefPtr text_buffer; }; #endif // NETWORKLOGWINDOW_HH workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/Makefile.in0000644000000000000000000004102514221624202025320 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/distribution/gtkmm/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/distribution/gtkmm/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/distribution/gtkmm/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkJoinDialog.cc0000644000175100001710000000747714221624107026103 0ustar00gdm00000000000000// NetworkJoinDialog.cc --- NetworkJoin dialog // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DISTRIBUTION # ifdef HAVE_UNISTD_H # include # endif # include # include # include # include # include # include # include # include # include "nls.h" # include "debug.hh" # include "NetworkJoinDialog.hh" # include "CoreFactory.hh" # include "IDistributionManager.hh" # include "IConfigurator.hh" # include "Util.hh" # include "GtkUtil.hh" using namespace workrave; NetworkJoinDialog::NetworkJoinDialog() : HigDialog(_("Network connect"), true, false) { TRACE_ENTER("NetworkJoinDialog::NetworkJoinDialog"); ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); // Icon Gtk::Image *title_img = GtkUtil::create_image("network.png"); Gtk::Alignment *img_aln = Gtk::manage(new Gtk::Alignment # ifdef HAVE_GTK3 (Gtk::ALIGN_START, Gtk::ALIGN_END, 0.0, 0.0)); # else (Gtk::ALIGN_LEFT, Gtk::ALIGN_TOP, 0.0, 0.0)); # endif img_aln->add(*title_img); Gtk::Label *title_lab = Gtk::manage(new Gtk::Label()); Glib::ustring text = HigUtil::create_alert_text(_("Network connect"), _("Enter the host name and port number of a computer\n" "in the network you wish to connect to.")); title_lab->set_markup(text); host_entry.set_width_chars(40); port_entry.set_range(1024, 65535); port_entry.set_increments(1, 10); port_entry.set_numeric(true); port_entry.set_width_chars(10); port_entry.set_value(dist_manager->get_port()); Gtk::Label *host_lab = Gtk::manage(new Gtk::Label(_("Host name:"))); Gtk::Label *port_lab = Gtk::manage(new Gtk::Label(_("Port:"))); // Table Gtk::Table *table = Gtk::manage(new Gtk::Table(4, 2, false)); table->set_spacings(6); title_lab->set_alignment(0.0); table->attach(*title_lab, 0, 2, 0, 1, Gtk::FILL, Gtk::SHRINK, 0, 6); GtkUtil::table_attach_left_aligned(*table, *host_lab, 0, 1); GtkUtil::table_attach_left_aligned(*table, host_entry, 1, 1); GtkUtil::table_attach_left_aligned(*table, *port_lab, 0, 2); GtkUtil::table_attach_left_aligned(*table, port_entry, 1, 2); // Page Gtk::HBox *page = Gtk::manage(new Gtk::HBox(false, 12)); page->pack_start(*img_aln, false, true, 0); page->pack_start(*table, false, true, 0); get_vbox()->pack_start(*page, false, false, 0); add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK); show_all(); TRACE_EXIT(); } //! Destructor. NetworkJoinDialog::~NetworkJoinDialog() { TRACE_ENTER("NetworkJoinDialog::~NetworkJoinDialog"); TRACE_EXIT(); } std::string NetworkJoinDialog::get_connect_url() { std::string peer = "tcp://" + host_entry.get_text() + ":" + port_entry.get_text(); return peer; } #endif workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkLogDialog.cc0000644000175100001710000000750114221624107025711 0ustar00gdm00000000000000// NetworkLogDialog.cc --- NetworkLog dialog // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "preinclude.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DISTRIBUTION # ifdef HAVE_UNISTD_H # include # endif # include # include # include # include # include # include "nls.h" # include "debug.hh" # include "NetworkLogDialog.hh" # include "ICore.hh" # include "CoreFactory.hh" # include "IDistributionManager.hh" # include "Util.hh" NetworkLogDialog::NetworkLogDialog() # ifdef HAVE_GTK3 : Gtk::Dialog(_("Network log"), false) # else : Gtk::Dialog(_("Network log"), false, true) # endif { TRACE_ENTER("NetworkLogDialog::NetworkLogDialog"); set_default_size(600, 400); text_buffer = Gtk::TextBuffer::create(); text_view = Gtk::manage(new Gtk::TextView(text_buffer)); text_view->set_cursor_visible(false); text_view->set_editable(false); scrolled_window.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scrolled_window.add(*text_view); Gtk::HBox *box = Gtk::manage(new Gtk::HBox(false, 6)); box->pack_start(scrolled_window, true, true, 0); get_vbox()->pack_start(*box, true, true, 0); add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); show_all(); TRACE_EXIT(); } //! Destructor. NetworkLogDialog::~NetworkLogDialog() { TRACE_ENTER("NetworkLogDialog::~NetworkLogDialog"); ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { dist_manager->remove_log_listener(this); } TRACE_EXIT(); } void NetworkLogDialog::distribution_log(std::string msg) { Gtk::TextIter iter = text_buffer->end(); iter = text_buffer->insert(iter, msg); # ifdef HAVE_GTK3 Glib::RefPtr a = scrolled_window.get_vadjustment(); # else Gtk::Adjustment *a = scrolled_window.get_vadjustment(); # endif a->set_value(a->get_upper()); } void NetworkLogDialog::init() { ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); Gtk::TextIter iter = text_buffer->end(); if (dist_manager != NULL) { list logs = dist_manager->get_logs(); for (list::iterator i = logs.begin(); i != logs.end(); i++) { iter = text_buffer->insert(iter, (*i)); } dist_manager->add_log_listener(this); # ifdef HAVE_GTK3 Glib::RefPtr a = scrolled_window.get_vadjustment(); # else Gtk::Adjustment *a = scrolled_window.get_vadjustment(); # endif a->set_value(a->get_upper()); } } int NetworkLogDialog::run() { TRACE_ENTER("NetworkLogDialog::run") init(); show_all(); TRACE_EXIT(); return 0; } void NetworkLogDialog::on_response(int response) { (void)response; TRACE_ENTER("NetworkLogDialog::on_response") ICore *core = CoreFactory::get_core(); IDistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { dist_manager->remove_log_listener(this); } TRACE_EXIT(); } #endif workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkJoinDialog.hh0000644000175100001710000000244314221624107026101 0ustar00gdm00000000000000// NetworkJoinDialog.hh --- NetworkJoin Dialog // // Copyright (C) 2002, 2003, 2004, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef NETWORKJOINDIALOG_HH #define NETWORKJOINDIALOG_HH #include #include #include "preinclude.h" #include "Hig.hh" #include #include namespace workrave { class IDistributionManager; } class TimeEntry; class NetworkJoinDialog : public HigDialog { public: NetworkJoinDialog(); ~NetworkJoinDialog(); std::string get_connect_url(); private: Gtk::Entry host_entry; Gtk::SpinButton port_entry; }; #endif // NETWORKJOINWINDOW_HH workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkPreferencePage.cc0000644000175100001710000003457214221624107026733 0ustar00gdm00000000000000// NetworkPreferencePage.cc --- Preferences widgets for a timer // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2010, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DISTRIBUTION # include "preinclude.h" # include "nls.h" # include "debug.hh" # include # ifdef HAVE_UNISTD_H # include # endif # include # include # include # include # include # include # include # include # include # include # include "NetworkPreferencePage.hh" # include "Hig.hh" # include "GtkUtil.hh" # include "ICore.hh" # include "CoreFactory.hh" # include "IConfigurator.hh" # include "IDistributionManager.hh" NetworkPreferencePage::NetworkPreferencePage() : Gtk::VBox(false, 6) { TRACE_ENTER("NetworkPreferencePage::NetworkPreferencePage"); Gtk::Notebook *tnotebook = Gtk::manage(new Gtk::Notebook()); tnotebook->set_tab_pos(Gtk::POS_TOP); ICore *core = CoreFactory::get_core(); dist_manager = core->get_distribution_manager(); assert(dist_manager != NULL); create_general_page(tnotebook); create_peers_page(tnotebook); create_advanced_page(tnotebook); init_page_values(); pack_start(*tnotebook, true, true, 0); tnotebook->show_all(); tnotebook->set_current_page(0); TRACE_EXIT(); } NetworkPreferencePage::~NetworkPreferencePage() { TRACE_ENTER("NetworkPreferencePage::~NetworkPreferencePage"); TRACE_EXIT(); } void NetworkPreferencePage::create_general_page(Gtk::Notebook *tnotebook) { // Main switch enabled_cb = Gtk::manage(new Gtk::CheckButton()); Gtk::Label *ena_lab = Gtk::manage(GtkUtil::create_label(_("Enable networking"), true)); enabled_cb->add(*ena_lab); // Identity HigCategoryPanel *id_frame = Gtk::manage(new HigCategoryPanel(*enabled_cb)); username_entry = Gtk::manage(new Gtk::Entry()); password_entry = Gtk::manage(new Gtk::Entry()); id_frame->add_label(_("Username:"), *username_entry); id_frame->add_label(_("Password:"), *password_entry); password_entry->set_visibility(false); password_entry->set_invisible_char('*'); // Server switch listening_cb = Gtk::manage(new Gtk::CheckButton()); Gtk::Label *listening_lab = Gtk::manage(GtkUtil::create_label(_("Allow incoming connections"), true)); listening_cb->add(*listening_lab); id_frame->add_widget(*listening_cb); id_frame->set_border_width(12); tnotebook->append_page(*id_frame, _("General")); enabled_cb->signal_toggled().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_enabled_toggled)); username_entry->signal_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_username_changed)); password_entry->signal_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_password_changed)); listening_cb->signal_toggled().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_listening_toggled)); } void NetworkPreferencePage::create_advanced_page(Gtk::Notebook *tnotebook) { HigCategoryPanel *advanced_frame = Gtk::manage(new HigCategoryPanel(_("Server settings"))); advanced_frame->set_border_width(12); port_entry = Gtk::manage(new Gtk::SpinButton()); attempts_entry = Gtk::manage(new Gtk::SpinButton()); interval_entry = Gtk::manage(new Gtk::SpinButton()); port_entry->set_range(1024, 65535); port_entry->set_increments(1, 10); port_entry->set_numeric(true); port_entry->set_width_chars(10); attempts_entry->set_range(0, 100); attempts_entry->set_increments(1, 10); attempts_entry->set_numeric(true); attempts_entry->set_width_chars(10); interval_entry->set_range(1, 3600); interval_entry->set_increments(1, 10); interval_entry->set_numeric(true); interval_entry->set_width_chars(10); advanced_frame->add_label(_("Server port:"), *port_entry); advanced_frame->add_label(_("Reconnect attempts:"), *attempts_entry); advanced_frame->add_label(_("Reconnect interval:"), *interval_entry); advanced_frame->set_border_width(12); tnotebook->append_page(*advanced_frame, _("Advanced")); port_entry->signal_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_port_changed)); interval_entry->signal_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_interval_changed)); attempts_entry->signal_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_attempts_changed)); } void NetworkPreferencePage::create_peers_page(Gtk::Notebook *tnotebook) { Gtk::VBox *gp = Gtk::manage(new Gtk::VBox(false, 6)); gp->set_border_width(6); // Info text const char *label = _("The following list specifies the hosts that Workrave connects to on\n" "start-up. Click the host name or port number to edit."); Gtk::HBox *infohbox = Gtk::manage(new Gtk::HBox(false, 6)); Gtk::Label *info_lab = Gtk::manage(new Gtk::Label(label)); infohbox->pack_start(*info_lab, false, false, 0); gp->pack_start(*infohbox, false, false, 0); // Gtk::HBox *hbox = Gtk::manage(new Gtk::HBox(false, 6)); peers_list = Gtk::manage(new Gtk::TreeView()); peers_store = Gtk::ListStore::create(peers_columns); peers_list->set_model(peers_store); peers_list->set_rules_hint(); // create tree view Glib::RefPtr selection = peers_list->get_selection(); selection->set_mode(Gtk::SELECTION_MULTIPLE); Gtk::CellRendererText *renderer = NULL; Gtk::TreeViewColumn *column = NULL; int cols_count = 0; renderer = Gtk::manage(new Gtk::CellRendererText()); cols_count = peers_list->append_column(_("Host name"), *renderer); column = peers_list->get_column(cols_count - 1); column->add_attribute(renderer->property_text(), peers_columns.hostname); column->set_resizable(true); renderer->property_editable().set_value(true); renderer->signal_edited().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_hostname_edited)); peers_list->set_search_column(peers_columns.hostname.index()); renderer = Gtk::manage(new Gtk::CellRendererText()); cols_count = peers_list->append_column(_("Port"), *renderer); column = peers_list->get_column(cols_count - 1); column->add_attribute(renderer->property_text(), peers_columns.port); column->set_resizable(true); renderer->property_editable().set_value(true); renderer->signal_edited().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_port_edited)); Gtk::ScrolledWindow *peers_scroll = Gtk::manage(new Gtk::ScrolledWindow()); peers_scroll->add(*peers_list); Gtk::VBox *peersvbox = Gtk::manage(new Gtk::VBox(true, 6)); peersvbox->pack_start(*peers_scroll, true, true, 0); hbox->pack_start(*peersvbox, true, true, 0); peers_store->signal_row_changed().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_row_changed)); peers_store->signal_row_inserted().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_row_changed)); peers_store->signal_row_deleted().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_row_deleted)); // Buttons remove_btn = Gtk::manage(new Gtk::Button(Gtk::Stock::REMOVE)); remove_btn->signal_clicked().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_peer_remove)); add_btn = Gtk::manage(new Gtk::Button(Gtk::Stock::ADD)); add_btn->signal_clicked().connect(sigc::mem_fun(*this, &NetworkPreferencePage::on_peer_add)); Gtk::VBox *btnbox = Gtk::manage(new Gtk::VBox(false, 6)); btnbox->pack_start(*add_btn, false, false, 0); btnbox->pack_start(*remove_btn, false, false, 0); hbox->pack_start(*btnbox, false, false, 0); gp->pack_start(*hbox, true, true, 0); create_model(); gp->show_all(); gp->set_border_width(12); tnotebook->append_page(*gp, _("Hosts")); } void NetworkPreferencePage::create_model() { // #ifdef PLATFORM_OS_WINDOWS // // FIXME: this seems to avoid a crash on windows...bug #791 // Gtk::ListStore *store = peers_store.operator->(); // printf("%x\n", store); // #endif list peers = dist_manager->get_peers(); for (list::iterator i = peers.begin(); i != peers.end(); i++) { const string peer = *i; if (peer != "") { Gtk::TreeIter iter = peers_store->append(); Gtk::TreeRow row = *iter; string hostname, port; parse_peers(peer, hostname, port); row[peers_columns.hostname] = hostname; row[peers_columns.port] = port; } } } void NetworkPreferencePage::parse_peers(const string &peer, string &hostname, string &port) { hostname = ""; port = ""; std::string::size_type pos = peer.find("tcp://"); if (pos != std::string::npos) { hostname = peer.substr(6); pos = hostname.rfind(":"); if (pos != std::string::npos) { port = hostname.substr(pos + 1); hostname = hostname.substr(0, pos); } } } void NetworkPreferencePage::init_page_values() { // Master enabled switch. bool enabled = dist_manager->get_enabled(); enabled_cb->set_active(enabled); // Server enabled switch. bool listening = dist_manager->get_listening(); listening_cb->set_active(listening); // Username. string str = dist_manager->get_username(); username_entry->set_text(str); // Password str = dist_manager->get_password(); password_entry->set_text(str); // Port int value = dist_manager->get_port(); port_entry->set_value(value); // Attempts value = dist_manager->get_reconnect_attempts(); attempts_entry->set_value(value); // Interval value = dist_manager->get_reconnect_interval(); interval_entry->set_value(value); } void NetworkPreferencePage::on_enabled_toggled() { bool enabled = enabled_cb->get_active(); dist_manager->set_enabled(enabled); listening_cb->set_sensitive(enabled); } void NetworkPreferencePage::on_listening_toggled() { bool listening = listening_cb->get_active(); dist_manager->set_listening(listening); } void NetworkPreferencePage::on_username_changed() { string name = username_entry->get_text(); dist_manager->set_username(name); } void NetworkPreferencePage::on_password_changed() { string pw = password_entry->get_text(); dist_manager->set_password(pw); } void NetworkPreferencePage::on_port_changed() { int value = (int)port_entry->get_value(); dist_manager->set_port(value); } void NetworkPreferencePage::on_interval_changed() { int value = (int)interval_entry->get_value(); dist_manager->set_reconnect_interval(value); } void NetworkPreferencePage::on_attempts_changed() { int value = (int)attempts_entry->get_value(); dist_manager->set_reconnect_attempts(value); } void NetworkPreferencePage::on_peer_remove() { TRACE_ENTER("NetworkPreferencePage::on_peer_remove"); Glib::RefPtr selection = peers_list->get_selection(); const Gtk::TreeSelection::SlotForeachIter &slot = sigc::mem_fun(*this, &NetworkPreferencePage::remove_peer); selection->selected_foreach_iter(slot); Glib::RefPtr new_store = Gtk::ListStore::create(peers_columns); typedef Gtk::TreeModel::Children type_children; type_children children = peers_store->children(); for (type_children::iterator iter = children.begin(); iter != children.end(); ++iter) { Gtk::TreeModel::Row row = *iter; Glib::ustring hostname = row[peers_columns.hostname]; Glib::ustring port = row[peers_columns.port]; if (hostname != "" || port != "") { Gtk::TreeRow new_row = *(new_store->append()); new_row[peers_columns.hostname] = hostname; new_row[peers_columns.port] = port; } } peers_store = new_store; peers_list->set_model(peers_store); TRACE_EXIT(); } void NetworkPreferencePage::on_peer_add() { TRACE_ENTER("NetworkPreferencePage::on_peer_add"); stringstream ss; int port = (int)port_entry->get_value(); ss << port; Gtk::TreeModel::iterator iter = peers_store->append(); Gtk::TreeModel::Row row = *iter; row[peers_columns.hostname] = ""; row[peers_columns.port] = ss.str(); TRACE_EXIT(); } void NetworkPreferencePage::remove_peer(const Gtk::TreeModel::iterator &iter) { Gtk::TreeModel::Row row = *iter; Glib::ustring s = row[peers_columns.hostname]; row[peers_columns.hostname] = ""; row[peers_columns.port] = ""; } void NetworkPreferencePage::on_row_changed(const Gtk::TreeModel::Path &path, const Gtk::TreeModel::iterator &iter) { (void)path; (void)iter; update_peers(); } void NetworkPreferencePage::on_row_deleted(const Gtk::TreeModel::Path &path) { (void)path; update_peers(); } void NetworkPreferencePage::on_hostname_edited(const Glib::ustring &path_string, const Glib::ustring &new_text) { GtkTreePath *gpath = gtk_tree_path_new_from_string(path_string.c_str()); Gtk::TreePath path(gpath); /* get toggled iter */ Gtk::TreeRow row = *(peers_store->get_iter(path)); row[peers_columns.hostname] = new_text; } void NetworkPreferencePage::on_port_edited(const Glib::ustring &path_string, const Glib::ustring &new_text) { GtkTreePath *gpath = gtk_tree_path_new_from_string(path_string.c_str()); Gtk::TreePath path(gpath); /* get toggled iter */ Gtk::TreeRow row = *(peers_store->get_iter(path)); row[peers_columns.port] = new_text; } void NetworkPreferencePage::update_peers() { string peers; bool first = true; typedef Gtk::TreeModel::Children type_children; type_children children = peers_store->children(); for (type_children::iterator iter = children.begin(); iter != children.end(); ++iter) { Gtk::TreeModel::Row row = *iter; Glib::ustring hostname = row[peers_columns.hostname]; Glib::ustring port = row[peers_columns.port]; if (!first) { peers += ","; } if (hostname != "" && port != "") { peers += "tcp://" + hostname + ":" + port; first = false; } } dist_manager->set_peers(peers); } #endif workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/NetworkPreferencePage.hh0000644000175100001710000000576514221624107026747 0ustar00gdm00000000000000// NetworkPreferencesPage.hh --- Preferences for network // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2010, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef NETWORKPREFERENCEPAGE_HH #define NETWORKPREFERENCEPAGE_HH #include #include #include "preinclude.h" #include #include class Configurator; namespace workrave { class IDistributionManager; } namespace Gtk { class Label; class Entry; class CheckButton; class SpinButton; class Button; class Notebook; } // namespace Gtk #include using namespace workrave; class NetworkPreferencePage : public Gtk::VBox { public: NetworkPreferencePage(); ~NetworkPreferencePage(); private: void init_page_values(); void create_general_page(Gtk::Notebook *tnotebook); void create_advanced_page(Gtk::Notebook *tnotebook); void create_peers_page(Gtk::Notebook *tnotebook); void create_model(); void on_enabled_toggled(); void on_listening_toggled(); void on_username_changed(); void on_password_changed(); void on_port_changed(); void on_interval_changed(); void on_attempts_changed(); void on_peer_remove(); void on_peer_add(); void on_row_changed(const Gtk::TreeModel::Path &path, const Gtk::TreeModel::iterator &iter); void on_row_deleted(const Gtk::TreeModel::Path &path); void on_hostname_edited(const Glib::ustring &path_string, const Glib::ustring &new_text); void on_port_edited(const Glib::ustring &path_string, const Glib::ustring &new_text); void update_peers(); void remove_peer(const Gtk::TreeModel::iterator &iter); void parse_peers(const std::string &peer, std::string &hostname, std::string &port); IDistributionManager *dist_manager; Gtk::Entry *username_entry; Gtk::Entry *password_entry; Gtk::CheckButton *enabled_cb; Gtk::CheckButton *listening_cb; Gtk::SpinButton *port_entry; Gtk::SpinButton *attempts_entry; Gtk::SpinButton *interval_entry; Gtk::Button *remove_btn; Gtk::Button *add_btn; struct ModelColumns : public Gtk::TreeModelColumnRecord { Gtk::TreeModelColumn hostname; Gtk::TreeModelColumn port; ModelColumns() { add(hostname); add(port); } }; Gtk::TreeView *peers_list; Glib::RefPtr peers_store; ModelColumns peers_columns; }; #endif // NETWORKPREFERENCEPAGE_HH workrave-1.10.50/frontend/plugin/distribution/gtkmm/src/Makefile.am0000644000175100001710000000034414221624107024221 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.hh) workrave-1.10.50/frontend/plugin/distribution/gtkmm/Makefile.in0000644000000000000000000005531314221624202024536 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/distribution/gtkmm ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/distribution/gtkmm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/distribution/gtkmm/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/distribution/gtkmm/Makefile.am0000644000175100001710000000025514221624107023433 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src workrave-1.10.50/frontend/plugin/distribution/Makefile.in0000644000000000000000000005527314221624202023424 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = frontend/plugin/distribution ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = gtkmm all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign frontend/plugin/distribution/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign frontend/plugin/distribution/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/frontend/plugin/distribution/Makefile.am0000644000175100001710000000025714221624107022316 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = gtkmm workrave-1.10.50/COPYING.txt0000644000000000000000000010564014221624430015371 0ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . workrave-1.10.50/Makefile.in0000644000000000000000000010205014221624200015550 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ noinst_PROGRAMS = subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__dist_pkgdata_DATA_DIST) \ $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__dist_pkgdata_DATA_DIST = README.txt NEWS.txt AUTHORS.txt \ COPYING.txt 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)$(pkgdatadir)" DATA = $(dist_pkgdata_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ ABOUT-NLS AUTHORS COPYING INSTALL NEWS ar-lib compile \ config.guess config.rpath config.sub install-sh ltmain.sh \ missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip 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@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = \ aclocal.m4 config.h.in configure stamp-h.in \ Makefile.in \ install-sh missing mkinstalldirs config.cache \ config.log config.status \ config.guess config.sub depcomp ltmain.sh \ build-stamp intltool-update.in intltool-update \ intltool-merge.in intltool-merge \ intltool-extract.in intltool-extract workrave.spec \ compile AUTHORS.txt COPYING.txt \ NEWS.txt README.txt DISTCLEANFILES = intltool-extract intltool-merge intltool-update SUBDIRS = m4 po common libs backend frontend DIST_SUBDIRS = $(SUBDIRS) build contrib EXTRA_DIST = config.xml README.md autogen.sh changes.yaml DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall @PLATFORM_OS_WINDOWS_TRUE@dist_pkgdata_DATA = README.txt NEWS.txt AUTHORS.txt COPYING.txt ACLOCAL_AMFLAGS = -I m4 unix2dos = perl -e 'while (<>) { s/$$/\r/; print; }' all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 clean-noinstPROGRAMS: @list='$(noinst_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 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || 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)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-dist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) 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) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) 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__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgdatadir)"; 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dist_pkgdataDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-dist_pkgdataDATA .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool clean-noinstPROGRAMS cscope cscopelist-am ctags \ ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \ dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dist_pkgdataDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-dist_pkgdataDATA .PRECIOUS: Makefile README.txt: README.md $(unix2dos) <$^ >$@ NEWS.txt: NEWS $(unix2dos) <$^ >$@ AUTHORS.txt: AUTHORS $(unix2dos) <$^ >$@ COPYING.txt: COPYING $(unix2dos) <$^ >$@ # 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: workrave-1.10.50/ltmain.sh0000644000000000000000000117716714221624171015360 0ustar00rootroot00000000000000#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.6 Debian-2.4.6-14" package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # 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 () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_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. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2015-10-07.11; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd _G_rc_run_hooks=false case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do if eval $_G_hook '"$@"'; then # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift _G_rc_run_hooks=: fi done $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, you may remove/edit # any options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. In this case you also must return $EXIT_SUCCESS to let the # hook's caller know that it should pay attention to # '_result'. Returning $EXIT_FAILURE signalizes that # arguments are left untouched by the hook and therefore caller will ignore the # result variable. # # Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # No change in '$@' (ignored completely by this hook). There is # # no need to do the equivalent (but slower) action: # # func_quote_for_eval ${1+"$@"} # # my_options_prep_result=$func_quote_for_eval_result # false # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # args_changed=false # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: # args_changed=: # ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # args_changed=: # ;; # *) # Make sure the first unrecognised option "$_G_opt" # # is added back to "$@", we could need that later # # if $args_changed is true. # set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # # if $args_changed; then # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # fi # # $args_changed # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # false # } # func_add_hook func_validate_options my_option_validation # # You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options_finish [ARG]... # ---------------------------- # Finishing the option parse loop (call 'func_options' hooks ATM). func_options_finish () { $debug_cmd _G_func_options_finish_exit=false if func_run_hooks func_options ${1+"$@"}; then func_options_finish_result=$func_run_hooks_result _G_func_options_finish_exit=: fi $_G_func_options_finish_exit } # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd _G_rc_options=false for my_func in options_prep parse_options validate_options options_finish do if eval func_$my_func '${1+"$@"}'; then eval _G_res_var='$'"func_${my_func}_result" eval set dummy "$_G_res_var" ; shift _G_rc_options=: fi done # Save modified positional parameters for caller. As a top-level # options-parser function we always need to set the 'func_options_result' # variable (regardless the $_G_rc_options value). if $_G_rc_options; then func_options_result=$_G_res_var else func_quote_for_eval ${1+"$@"} func_options_result=$func_quote_for_eval_result fi $_G_rc_options } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned). func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= _G_rc_options_prep=false if func_run_hooks func_options_prep ${1+"$@"}; then _G_rc_options_prep=: # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result fi $_G_rc_options_prep } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= _G_rc_parse_options=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. if func_run_hooks func_parse_options ${1+"$@"}; then eval set dummy "$func_run_hooks_result"; shift _G_rc_parse_options=: fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) if test $# = 0 && func_missing_arg $_G_opt; then _G_rc_parse_options=: break fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) _G_rc_parse_options=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift _G_match_parse_options=false break ;; esac $_G_match_parse_options && _G_rc_parse_options=: done if $_G_rc_parse_options; then # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result fi $_G_rc_parse_options } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd _G_rc_validate_options=false # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" if func_run_hooks func_validate_options ${1+"$@"}; then # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result _G_rc_validate_options=: fi # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE $_G_rc_validate_options } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.4.6-14 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= _G_rc_lt_options_prep=: # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; *) _G_rc_lt_options_prep=false ;; esac if $_G_rc_lt_options_prep; then # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result fi $_G_rc_lt_options_prep } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd _G_rc_lt_parse_options=false # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"} ; shift _G_match_lt_parse_options=false break ;; esac $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done if $_G_rc_lt_parse_options; then # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result fi $_G_rc_lt_parse_options } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_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 yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_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=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_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=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_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 install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" 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/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_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) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_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 # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang # -fsanitize=* Clang/GCC memory and address sanitizer # -fuse-ld=* Linker select flags for GCC # -static-* direct GCC to link specific libraries statically # -fcilkplus Cilk Plus language extension features for C/C++ -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus) 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 ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # 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 none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_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 yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_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 relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_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 relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_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 case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_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 yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: workrave-1.10.50/missing0000755000000000000000000001533614221624200015114 0ustar00rootroot00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2018 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: workrave-1.10.50/AUTHORS.txt0000644000000000000000000000327414221624430015406 0ustar00rootroot00000000000000Core Developers --------------- Rob Caelers Raymond Penners Ray Satiro Contributors ------------ Ruairi Fullam Gabor Kelemen Daniel Benamy Gary Peck Dag Wieers Jaap Haitsma Brian de Alwis Dov Murik Stanislav Brabec Translators ----------- Alexandru Szasz Artūras Šlajus Benjamin Siband Christian Vejlbo Claudio Ferreira Filho Daniel Nylander Daniel YC Lin (林原志) Enver ALTIN Eraldo Girardi Eric lesh FreeWe Gabor Kelemen Haggai Eran Ivan Johannes Rohr Jordi Mallach Juraj Kubelka Marko Väljaots Masanobu Yokota Mikolaj Machowski Moein Gh Morten Lunde Mykola Rykov ORY Mate Pablo Rodriguez Peter Tuharsky Prokopis Prokopidis Raymond Penners Rex Tsai Seanán Ó Coistín Sergey Kirkinsky Tao WEI Thomas Basset Vanja Cvelbar Иван Димов 김재용 workrave-1.10.50/ABOUT-NLS0000644000175100001710000027215514221624106013664 0ustar00gdm000000000000001 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. When reporting bugs in the `intl/' directory or bugs which may be related to internationalization, you should tell about the version of `gettext' which is used. The information can be found in the `intl/VERSION' file, in internationalized packages. 1.1 Quick configuration advice ============================== If you want to exploit the full power of internationalization, you should configure it using ./configure --with-included-gettext to force usage of internationalizing routines provided within this package, despite the existence of internationalizing capabilities in the operating system where this package is being installed. So far, only the `gettext' implementation in the GNU C library version 2 provides as many features (such as locale alias, message inheritance, automatic charset conversion or plural form handling) as the implementation here. It is also not possible to offer this additional functionality on top of a `catgets' implementation. Future versions of GNU `gettext' will very likely convey even more functionality. So it might be a good idea to change to GNU `gettext' as soon as possible. So you need _not_ provide this option if you are using GNU libc 2 or you have installed a recent copy of the GNU gettext package with the included `libintl'. 1.2 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. If not, the included GNU `gettext' library will be used. This library is wholly contained within this package, usually in the `intl/' subdirectory, so prior installation of the GNU `gettext' package is _not_ required. Installers may use special options at configuration time for changing the default behaviour. The commands: ./configure --with-included-gettext ./configure --disable-nls will, respectively, bypass any pre-existing `gettext' to use the internationalizing routines provided within this package, or else, _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl.a' file and will decide to use this. This might not be desirable. You should use the more recent version of the GNU `gettext' library. I.e. if the file `intl/VERSION' shows that the library which comes with this package is more recent, you should use ./configure --with-included-gettext to prevent auto-detection. The configuration process will not test for the `catgets' function and therefore it will not be used. The reason is that even an emulation of `gettext' on top of `catgets' could not provide all the extensions of the GNU `gettext' library. Internationalized packages usually have many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.3 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. If you happen to have the `LC_ALL' or some other `LC_xxx' environment variables set, you should unset them before setting `LANG', otherwise the setting of `LANG' will not have the desired effect. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. 1.4 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.5 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of May 2010. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am ar as ast az be be@latin bg bn_IN bs ca crh +---------------------------------------------------+ a2ps | [] [] | aegis | | ant-phone | | anubis | | aspell | [] [] | bash | | bfd | | bibshelf | [] | binutils | | bison | | bison-runtime | [] | bluez-pin | [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] [] | cpio | | cppi | | cpplib | [] | cryptsetup | | dfarc | | dialog | [] [] | dico | | diffutils | [] | dink | | doodle | | e2fsprogs | [] | enscript | [] | exif | | fetchmail | [] | findutils | [] | flex | [] | freedink | | gas | | gawk | [] [] | gcal | [] | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] [] [] | gettext-tools | [] [] | gip | [] | gjay | | gliv | [] | glunarclock | [] [] | gnubiff | | gnucash | [] | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | | gold | | gpe-aerial | | gpe-beam | | gpe-bluetooth | | gpe-calendar | | gpe-clock | [] | gpe-conf | | gpe-contacts | | gpe-edit | | gpe-filemanager | | gpe-go | | gpe-login | | gpe-ownerinfo | [] | gpe-package | | gpe-sketchbook | | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] | gpe-today | [] | gpe-todo | | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | [] [] | gsasl | | gss | | gst-plugins-bad | [] | gst-plugins-base | [] | gst-plugins-good | [] | gst-plugins-ugly | [] | gstreamer | [] [] [] | gtick | | gtkam | [] | gtkorphan | [] | gtkspell | [] [] [] | gutenprint | | hello | [] | help2man | | hylafax | | idutils | | indent | [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | | iso_639 | [] [] [] [] [] | iso_639_3 | [] | jwhois | | kbd | | keytouch | [] | keytouch-editor | | keytouch-keyboa... | [] | klavaro | [] | latrine | | ld | [] | leafpad | [] [] | libc | [] [] | libexif | () | libextractor | | libgnutls | | libgpewidget | | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | [] | libidn | | lifelines | | liferea | [] [] | lilypond | | linkdr | [] | lordsawar | | lprng | | lynx | [] | m4 | | mailfromd | | mailutils | | make | | man-db | | man-db-manpages | | minicom | | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | | psmisc | | pspp | [] | pwdutils | | radius | [] | recode | [] [] | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] [] | sed | [] [] | sharutils | [] [] | shishi | | skencil | | solfege | | solfege-manual | | soundtracker | | sp | | sysstat | | tar | [] | texinfo | | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] [] | wyslij-po | | xchat | [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +---------------------------------------------------+ af am ar as ast az be be@latin bg bn_IN bs ca crh 6 0 2 3 19 1 11 3 28 3 1 38 5 cs da de el en en_GB en_ZA eo es et eu fa fi +-------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] () | anubis | [] [] [] | aspell | [] [] [] [] [] | bash | [] [] [] [] | bfd | [] [] | bibshelf | [] [] [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] | bombono-dvd | [] [] | buzztard | [] [] [] | cflow | [] [] [] | clisp | [] [] [] [] | coreutils | [] [] [] [] | cpio | [] | cppi | [] | cpplib | [] [] [] | cryptsetup | [] | dfarc | [] [] [] [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] [] | dink | [] [] [] | doodle | [] | e2fsprogs | [] [] [] | enscript | [] [] [] | exif | () [] [] [] | fetchmail | [] [] () [] [] [] | findutils | [] [] [] [] | flex | [] [] [] | freedink | [] [] [] [] | gas | [] | gawk | [] [] [] | gcal | [] | gcc | [] [] | gettext-examples | [] [] [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] | gip | [] [] [] [] [] | gjay | [] [] | gliv | [] [] [] [] | glunarclock | [] [] [] | gnubiff | () | gnucash | [] () () () () () | gnuedu | [] [] | gnulib | [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] [] | gpe-aerial | [] [] [] [] [] | gpe-beam | [] [] [] [] [] | gpe-bluetooth | [] [] [] | gpe-calendar | [] [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] [] [] | gpe-contacts | [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] [] | gpe-go | [] [] [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] [] [] | gpe-package | [] [] [] [] | gpe-sketchbook | [] [] [] [] [] | gpe-su | [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] | gpe-today | [] [] [] [] [] | gpe-todo | [] [] [] [] | gphoto2 | [] [] () [] [] [] [] | gprof | [] [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] [] | grub | [] [] [] | gsasl | [] [] | gss | [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] [] | gstreamer | [] [] [] [] [] [] | gtick | [] () [] [] | gtkam | [] [] () [] [] | gtkorphan | [] [] [] [] | gtkspell | [] [] [] [] [] [] [] [] | gutenprint | [] [] [] [] | hello | [] [] [] [] [] | help2man | [] [] | hylafax | [] [] | idutils | [] [] [] | indent | [] [] [] [] [] [] [] [] | iso_15924 | [] () [] [] [] | iso_3166 | [] [] [] () [] [] [] () [] | iso_3166_2 | () | iso_4217 | [] [] [] () [] [] [] | iso_639 | [] [] [] () [] [] [] | iso_639_3 | | jwhois | [] [] | kbd | [] [] [] [] [] | keytouch | [] [] [] | keytouch-editor | [] [] [] | keytouch-keyboa... | [] [] | klavaro | [] [] [] [] | latrine | [] () [] | ld | [] [] [] | leafpad | [] [] [] [] [] [] [] | libc | [] [] [] [] [] | libexif | [] [] () | libextractor | | libgnutls | [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] () | libgphoto2_port | [] () [] | libgsasl | [] | libiconv | [] [] [] [] [] [] | libidn | [] [] [] [] | lifelines | [] () | liferea | [] [] [] [] [] | lilypond | [] [] [] [] | linkdr | [] [] [] [] | lordsawar | [] | lprng | | lynx | [] [] [] [] | m4 | [] [] [] [] [] | mailfromd | | mailutils | [] | make | [] [] [] [] | man-db | | man-db-manpages | | minicom | [] [] [] [] [] | mkisofs | [] | myserver | | nano | [] [] [] [] | opcodes | [] [] [] | parted | [] [] | pies | | popt | [] [] [] [] [] [] | psmisc | [] [] [] [] | pspp | [] | pwdutils | [] | radius | [] | recode | [] [] [] [] [] [] [] | rosegarden | () () () () | rpm | [] [] [] | rush | | sarg | | screem | | scrollkeeper | [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] | sharutils | [] [] [] [] [] | shishi | | skencil | [] () [] | solfege | [] [] [] [] | solfege-manual | [] [] | soundtracker | [] [] [] | sp | [] | sysstat | [] [] [] [] | tar | [] [] [] [] [] | texinfo | [] [] [] | tin | [] [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] [] | vice | () () | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] [] | wget | [] [] [] [] | wyslij-po | [] | xchat | [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] | +-------------------------------------------------+ cs da de el en en_GB en_ZA eo es et eu fa fi 64 105 117 18 1 8 0 28 89 18 19 0 104 fr ga gl gu he hi hr hu hy id is it ja ka kn +------------------------------------------------+ a2ps | [] [] [] | aegis | [] [] | ant-phone | [] [] | anubis | [] [] [] | aspell | [] [] [] [] | bash | [] [] [] | bfd | [] [] | bibshelf | [] [] [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] | bombono-dvd | | buzztard | [] | cflow | [] [] | clisp | [] | coreutils | [] [] [] [] [] | cpio | [] [] [] | cppi | [] | cpplib | [] [] | cryptsetup | [] [] [] | dfarc | [] [] | dialog | [] [] [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] [] [] | dink | [] | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] | exif | [] [] [] [] [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] | freedink | [] [] | gas | [] [] | gawk | [] [] [] [] () [] | gcal | [] | gcc | [] | gettext-examples | [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] [] | gip | [] [] [] [] [] | gjay | | gliv | () | glunarclock | [] [] [] | gnubiff | () [] () | gnucash | () () () () [] | gnuedu | [] [] | gnulib | [] [] [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] | gpe-aerial | [] [] | gpe-beam | [] [] [] | gpe-bluetooth | [] [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] [] [] | gpe-edit | [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] | gpe-su | [] [] [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] [] [] | gpe-todo | [] [] | gphoto2 | [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] | grub | [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] [] | gst-plugins-bad | [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | [] [] [] [] | gtick | [] [] [] [] | gtkam | [] [] [] [] [] | gtkorphan | [] [] [] | gtkspell | [] [] [] [] [] [] [] [] | gutenprint | [] [] [] | hello | [] [] | help2man | [] | hylafax | [] | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | () [] [] | iso_3166 | () [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | () [] [] [] | iso_4217 | () [] [] [] [] | iso_639 | () [] [] [] [] [] [] [] | iso_639_3 | () [] [] | jwhois | [] [] [] [] | kbd | [] [] | keytouch | [] [] [] [] [] | keytouch-editor | [] [] [] [] | keytouch-keyboa... | [] [] [] [] | klavaro | [] [] | latrine | [] [] | ld | [] [] [] | leafpad | [] [] [] [] [] [] () | libc | [] [] [] [] | libexif | | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] [] | libgsasl | [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] [] | lifelines | () | liferea | [] [] [] [] | lilypond | [] | linkdr | [] [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] [] [] | m4 | [] [] [] [] [] | mailfromd | | mailutils | [] [] | make | [] [] [] [] [] [] [] [] | man-db | [] [] | man-db-manpages | [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | | nano | [] [] [] [] [] | opcodes | [] [] [] | parted | [] [] [] [] | pies | | popt | [] [] [] [] [] [] [] [] | psmisc | [] [] | pspp | | pwdutils | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] | rosegarden | () () () () | rpm | [] [] | rush | | sarg | [] | screem | [] [] | scrollkeeper | [] [] [] | sed | [] [] [] [] [] [] [] | sharutils | [] [] [] [] [] [] | shishi | [] | skencil | [] | solfege | [] [] [] | solfege-manual | [] [] | soundtracker | [] [] | sp | [] () | sysstat | [] [] [] [] | tar | [] [] [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux-ng | [] [] [] [] [] | vice | () () () | vmm | [] | vorbis-tools | [] | wastesedge | () () | wdiff | | wget | [] [] [] [] [] [] [] | wyslij-po | [] [] | xchat | [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] | +------------------------------------------------+ fr ga gl gu he hi hr hu hy id is it ja ka kn 121 53 20 4 8 2 5 53 2 120 5 83 66 0 4 ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne +-----------------------------------------------+ a2ps | [] | aegis | | ant-phone | | anubis | [] [] | aspell | [] | bash | | bfd | | bibshelf | [] [] | binutils | | bison | [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] | cpio | | cppi | | cpplib | | cryptsetup | | dfarc | [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] | dink | | doodle | | e2fsprogs | | enscript | | exif | [] | fetchmail | | findutils | | flex | | freedink | [] | gas | | gawk | | gcal | | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] | gettext-tools | [] | gip | [] [] | gjay | | gliv | | glunarclock | [] | gnubiff | | gnucash | () () () () | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | [] | gold | | gpe-aerial | [] | gpe-beam | [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-filemanager | [] [] | gpe-go | [] [] [] | gpe-login | [] | gpe-ownerinfo | [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] | gpe-timesheet | [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | | gsasl | | gss | | gst-plugins-bad | [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | | gtick | | gtkam | [] | gtkorphan | [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | | hello | [] [] [] | help2man | | hylafax | | idutils | | indent | | iso_15924 | [] [] | iso_3166 | [] [] () [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] | iso_639 | [] [] | iso_639_3 | [] | jwhois | [] | kbd | | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | [] | klavaro | [] | latrine | [] | ld | | leafpad | [] [] [] | libc | [] | libexif | | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | | libidn | | lifelines | | liferea | | lilypond | | linkdr | | lordsawar | | lprng | | lynx | | m4 | | mailfromd | | mailutils | | make | [] | man-db | | man-db-manpages | | minicom | [] | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | [] [] [] | psmisc | | pspp | | pwdutils | | radius | | recode | | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] | sed | | sharutils | | shishi | | skencil | | solfege | [] | solfege-manual | | soundtracker | | sp | | sysstat | [] | tar | [] | texinfo | [] | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] | wyslij-po | | xchat | [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +-----------------------------------------------+ ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne 20 5 10 1 12 48 4 2 2 4 24 10 19 3 1 nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr +---------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] [] | anubis | [] [] [] | aspell | [] [] [] [] [] | bash | [] [] | bfd | [] | bibshelf | [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] () | buzztard | [] [] | cflow | [] | clisp | [] [] | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | cppi | [] | cpplib | [] | cryptsetup | [] | dfarc | [] | dialog | [] [] [] [] | dico | [] | diffutils | [] [] [] [] [] [] | dink | () | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] [] | exif | [] [] [] () [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] [] | freedink | [] [] | gas | | gawk | [] [] [] [] | gcal | | gcc | [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] | gip | [] [] [] [] [] | gjay | | gliv | [] [] [] [] [] [] | glunarclock | [] [] [] [] [] | gnubiff | [] () | gnucash | [] () () () | gnuedu | [] | gnulib | [] [] [] [] | gnunet | | gnunet-gtk | | gnutls | [] [] | gold | | gpe-aerial | [] [] [] [] [] [] [] | gpe-beam | [] [] [] [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] [] [] [] [] | gpe-conf | [] [] [] [] [] [] [] | gpe-contacts | [] [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] [] [] [] [] | gpe-su | [] [] [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] [] | gpe-todo | [] [] [] [] [] | gphoto2 | [] [] [] [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] | gramadoir | [] [] | grep | [] [] [] [] | grub | [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] [] [] | gtkorphan | [] | gtkspell | [] [] [] [] [] [] [] [] [] [] | gutenprint | [] [] | hello | [] [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] [] [] [] | iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | iso_3166_2 | [] [] [] | iso_4217 | [] [] [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | jwhois | [] [] [] [] | kbd | [] [] [] | keytouch | [] [] [] | keytouch-editor | [] [] [] | keytouch-keyboa... | [] [] [] | klavaro | [] [] | latrine | [] [] | ld | | leafpad | [] [] [] [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] | libgphoto2_port | [] [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] | lifelines | [] [] | liferea | [] [] [] [] [] () () [] | lilypond | [] | linkdr | [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] | make | [] [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | | nano | [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | pies | [] | popt | [] [] [] [] | psmisc | [] [] [] | pspp | [] [] | pwdutils | [] | radius | [] [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () | rpm | [] [] [] | rush | [] [] | sarg | | screem | | scrollkeeper | [] [] [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] | skencil | [] [] | solfege | [] [] [] [] | solfege-manual | [] [] [] | soundtracker | [] | sp | | sysstat | [] [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] [] | vice | [] | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] | +---------------------------------------------------+ nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr 135 10 4 7 105 1 29 61 47 91 3 55 47 8 37 sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW +---------------------------------------------------+ a2ps | [] [] [] [] [] | 27 aegis | [] | 9 ant-phone | [] [] [] [] | 9 anubis | [] [] [] [] | 15 aspell | [] [] [] | 20 bash | [] [] | 11 bfd | [] | 6 bibshelf | [] [] [] | 16 binutils | [] [] | 8 bison | [] [] | 12 bison-runtime | [] [] [] [] [] [] | 29 bluez-pin | [] [] [] [] [] [] [] [] | 37 bombono-dvd | [] | 4 buzztard | [] | 7 cflow | [] [] [] | 9 clisp | | 10 coreutils | [] [] [] [] | 22 cpio | [] [] [] [] [] [] | 13 cppi | [] [] | 5 cpplib | [] [] [] [] [] [] | 13 cryptsetup | [] [] | 7 dfarc | [] | 9 dialog | [] [] [] [] [] [] [] | 30 dico | [] | 2 diffutils | [] [] [] [] [] [] | 30 dink | | 4 doodle | [] [] | 7 e2fsprogs | [] [] [] | 11 enscript | [] [] [] [] | 17 exif | [] [] [] | 16 fetchmail | [] [] [] | 17 findutils | [] [] [] [] [] | 20 flex | [] [] [] [] | 15 freedink | [] | 10 gas | [] | 4 gawk | [] [] [] [] | 18 gcal | [] [] | 5 gcc | [] [] [] | 7 gettext-examples | [] [] [] [] [] [] [] | 34 gettext-runtime | [] [] [] [] [] [] [] | 30 gettext-tools | [] [] [] [] [] [] | 22 gip | [] [] [] [] | 22 gjay | [] | 3 gliv | [] [] [] | 14 glunarclock | [] [] [] [] [] | 19 gnubiff | [] [] | 4 gnucash | () [] () () | 9 gnuedu | [] [] | 7 gnulib | [] [] [] [] | 16 gnunet | [] | 1 gnunet-gtk | [] [] [] | 5 gnutls | [] [] [] | 10 gold | [] | 4 gpe-aerial | [] [] [] | 18 gpe-beam | [] [] [] | 19 gpe-bluetooth | [] [] [] | 13 gpe-calendar | [] [] [] [] | 12 gpe-clock | [] [] [] [] [] | 28 gpe-conf | [] [] [] [] | 20 gpe-contacts | [] [] [] | 17 gpe-edit | [] [] [] | 12 gpe-filemanager | [] [] [] [] | 16 gpe-go | [] [] [] [] [] | 25 gpe-login | [] [] [] | 11 gpe-ownerinfo | [] [] [] [] [] | 25 gpe-package | [] [] [] | 13 gpe-sketchbook | [] [] [] | 20 gpe-su | [] [] [] [] [] | 30 gpe-taskmanager | [] [] [] [] [] | 29 gpe-timesheet | [] [] [] [] [] | 25 gpe-today | [] [] [] [] [] [] | 30 gpe-todo | [] [] [] [] | 17 gphoto2 | [] [] [] [] [] | 24 gprof | [] [] [] | 15 gpsdrive | [] [] [] | 11 gramadoir | [] [] [] | 11 grep | [] [] [] | 10 grub | [] [] [] | 14 gsasl | [] [] [] [] | 14 gss | [] [] [] | 11 gst-plugins-bad | [] [] [] [] | 22 gst-plugins-base | [] [] [] [] [] | 24 gst-plugins-good | [] [] [] [] [] | 25 gst-plugins-ugly | [] [] [] [] [] | 29 gstreamer | [] [] [] [] | 22 gtick | [] [] [] | 13 gtkam | [] [] [] | 20 gtkorphan | [] [] [] | 14 gtkspell | [] [] [] [] [] [] [] [] [] | 45 gutenprint | [] | 10 hello | [] [] [] [] [] [] | 21 help2man | [] [] | 7 hylafax | [] | 5 idutils | [] [] [] [] | 17 indent | [] [] [] [] [] [] | 30 iso_15924 | () [] () [] [] | 16 iso_3166 | [] [] () [] [] () [] [] [] () | 53 iso_3166_2 | () [] () [] | 9 iso_4217 | [] () [] [] () [] [] | 26 iso_639 | [] [] [] () [] () [] [] [] [] | 38 iso_639_3 | [] () | 8 jwhois | [] [] [] [] [] | 16 kbd | [] [] [] [] [] | 15 keytouch | [] [] [] | 16 keytouch-editor | [] [] [] | 14 keytouch-keyboa... | [] [] [] | 14 klavaro | [] | 11 latrine | [] [] [] | 10 ld | [] [] [] [] | 11 leafpad | [] [] [] [] [] [] | 33 libc | [] [] [] [] [] | 21 libexif | [] () | 6 libextractor | [] | 1 libgnutls | [] [] [] | 9 libgpewidget | [] [] [] | 14 libgpg-error | [] [] [] | 9 libgphoto2 | [] [] | 8 libgphoto2_port | [] [] [] [] | 13 libgsasl | [] [] [] | 13 libiconv | [] [] [] [] | 21 libidn | () [] [] | 11 lifelines | [] | 4 liferea | [] [] [] | 21 lilypond | [] | 7 linkdr | [] [] [] [] [] | 17 lordsawar | | 1 lprng | [] | 3 lynx | [] [] [] [] | 17 m4 | [] [] [] [] | 19 mailfromd | [] [] | 3 mailutils | [] | 5 make | [] [] [] [] | 21 man-db | [] [] [] | 8 man-db-manpages | | 4 minicom | [] [] | 16 mkisofs | [] [] | 9 myserver | | 0 nano | [] [] [] [] | 21 opcodes | [] [] [] | 11 parted | [] [] [] [] [] | 15 pies | [] [] | 3 popt | [] [] [] [] [] [] | 27 psmisc | [] [] | 11 pspp | | 4 pwdutils | [] [] | 6 radius | [] [] | 9 recode | [] [] [] [] | 28 rosegarden | () | 0 rpm | [] [] [] | 11 rush | [] [] | 4 sarg | | 1 screem | [] | 3 scrollkeeper | [] [] [] [] [] | 27 sed | [] [] [] [] [] | 30 sharutils | [] [] [] [] [] | 22 shishi | [] | 3 skencil | [] [] | 7 solfege | [] [] [] [] | 16 solfege-manual | [] | 8 soundtracker | [] [] [] | 9 sp | [] | 3 sysstat | [] [] | 15 tar | [] [] [] [] [] [] | 23 texinfo | [] [] [] [] | 16 tin | | 4 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux-ng | [] [] [] [] | 20 vice | () () | 1 vmm | [] | 4 vorbis-tools | [] | 6 wastesedge | | 2 wdiff | [] [] | 7 wget | [] [] [] [] [] | 26 wyslij-po | [] [] | 8 xchat | [] [] [] [] [] [] | 36 xdg-user-dirs | [] [] [] [] [] [] [] [] [] | 60 xkeyboard-config | [] [] [] [] | 25 +---------------------------------------------------+ 84 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW 178 domains 119 1 3 2 0 10 66 50 155 17 97 7 41 2610 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If May 2010 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://translationproject.org/extra/matrix.html'. 1.6 Using `gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `coordinator@translationproject.org' to make the `.pot' files available to the translation teams. workrave-1.10.50/config.rpath0000755000000000000000000004401214221624161016024 0ustar00rootroot00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2010 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; darwin*) case $cc_basename in xlc*) wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux* | k*bsd*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; pgcc | pgf77 | pgf90) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) wl='-Wl,' ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no 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 ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # 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. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' 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 fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we cannot use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : 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 ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; 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 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 if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) 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 hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) ;; 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. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if test "$GCC" = yes ; then : else case $cc_basename in xlc*) ;; *) ld_shlibs=no ;; esac fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd1*) ld_shlibs=no ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) 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 ;; hpux10*) if test "$with_gnu_ld" = no; then 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 fi ;; hpux11*) 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_direct=yes # 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*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) 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 ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) library_names_spec='$libname.a' ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd1*) ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; nto-qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, 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 <&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib/send_dbus_command SUBDIRS = ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = kde all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/send_dbus_command/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/send_dbus_command/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/send_dbus_command/Makefile.am0000644000175100001710000000030114221624107021554 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = kde workrave-1.10.50/contrib/send_dbus_command/kde/0000755000000000000000000000000014221624441021363 5ustar00rootroot00000000000000workrave-1.10.50/contrib/send_dbus_command/kde/workrave-kde.sh0000644000175100001710000001173314221624107023233 0ustar00gdm00000000000000#!/bin/sh # This is script that provides basic KDE interface for WorkRave. # It does depend on kdialog and qdbus, which should be part of your # KDE SC installation. # # Skrypt zapewnia podstawowy interfejs do WorkRave pod KDE. # Do działania wymaga kdialog i qdbus, które powinny być częścią Twojej # instalacji KDE SC. # # Author: Mirosław „Minio” Zalewski http://minio.xt.pl # Last modified: Fri, 03 Aug 2012 18:04:46 +0200 # License: None ########################################################################## # basic l10n # Currently only Polish and English (default) are supported. # Patches for another languages are welcome. case $LANG in pl_PL*) WIN_TITLE="WorkRave do KDE" OPEN_WINDOW="Okno główne" SET_NORMAL="Tryb normalny" SET_QUIET="Tryb cichy" SET_SUSPENDED="Tryb zawieszony" TOGGLE_READING="Przełącz tryb czytelniczy" PREFERENCES_WINDOW="Okno ustawień" STATISTICS_WINDOW="Okno statystyk" ENABLED="włączony" DISABLED="wyłączony" CURRENT_MODE="Aktualny tryb" NORMAL="Normalny" QUIET="Cichy" SUSPENDED="Zawieszony" MICRO_BREAK_TIME="Najbliższa mikroprzerwa za" REST_BREAK_TIME="Najbliższy odpoczynek za" READING_MODE="Tryb czytelniczy" ERROR="Błąd podczas wykonywania metody" FATAL_ERROR="Stało się coś bardzo złego. Ten komunikat błędu nie powinien \ się nigdy wyświetlić." ;; *) WIN_TITLE="WorkRave for KDE" OPEN_WINDOW="Open main window" SET_NORMAL="Set Normal mode" SET_QUIET="Set Quiet mode" SET_SUSPENDED="Set Suspended mode" TOGGLE_READING="Toggle Reading mode" PREFERENCES_WINDOW="Open preferences window" STATISTICS_WINDOW="Open statistics window" ENABLED="enabled" DISABLED="disabled" CURRENT_MODE="Current mode" NORMAL="Normal" QUIET="Quiet" SUSPENDED="Suspended" MICRO_BREAK_TIME="Time left to micro-break" REST_BREAK_TIME="Time left to rest break" READING_MODE="Reading mode" ERROR="Error while trying to access method" FATAL_ERROR="Something terrible had happened. You should have never seen \ this message." ;; esac PID_FILE="/tmp/workrave-kde.sh-is-running-${USER}" clean_up() { rm -f "$PID_FILE" >/dev/null 2>&1 } try() { if [ -z "$1" ]; then exit fi if ! ret=$(qdbus $SESSION_BUS $@) ; then kdialog --error "$(echo "$ERROR\n$@")" clean_up kill $$ fi echo $ret } seconds_to_readable() { local secs="$1" h=$((secs/3600)) m=$((secs%3600/60)) s=$((secs%60)) if [ "$h" -gt 0 ]; then echo -n "$h:" fi echo "$m:$s" } if [ -e "$PID_FILE" ]; then if which wmctrl >/dev/null 2>&1 ; then wmctrl -R "$WIN_TITLE" fi exit fi echo $$ > "$PID_FILE" trap clean_up 0 trap "exit 2" 1 2 3 15 SESSION_BUS="org.workrave.Workrave" METHOD_ROOT="/org/workrave/Workrave" CORE_INTERFACE="$METHOD_ROOT/Core org.workrave.CoreInterface" CONTROL_INTERFACE="$METHOD_ROOT/UI org.workrave.ControlInterface" APPLET_INTERFACE="$METHOD_ROOT/UI org.workrave.AppletInterface" CONFIG_INTERFACE="$METHOD_ROOT/Core org.workrave.ConfigInterface" case "$(try "$CORE_INTERFACE.GetOperationMode")" in normal) CURRENT_OPERATION_MODE="$NORMAL" ;; quiet) CURRENT_OPERATION_MODE="$QUIET";; suspended) CURRENT_OPERATION_MODE="$SUSPENDED" ;; esac #TODO: This have to do until upstream provide interface for reading state of # Reading mode (should be in 1.9.5 or 1.10, whichever comes first) case "$(try "$CONFIG_INTERFACE.GetInt" "general/usage-mode" |tr -d [:blank:][:alpha:])" in 0) READING_STATE="$DISABLED";; 1) READING_STATE="$ENABLED";; esac microbreak_limit="$(try "$CONFIG_INTERFACE.GetInt" "timers/micro_pause/limit" |tr -d [:blank:][:alpha:])" microbreak_current="$(try "$CORE_INTERFACE.GetTimerElapsed" "microbreak")" next_microbreak=$((microbreak_limit - microbreak_current)) SELECT_ACTION="$MICRO_BREAK_TIME: $(seconds_to_readable "$next_microbreak")\n" restbreak_limit="$(try "$CONFIG_INTERFACE.GetInt" "timers/rest_break/limit" |tr -d [:blank:][:alpha:])" restbreak_current="$(try "$CORE_INTERFACE.GetTimerElapsed" "restbreak")" next_restbreak=$((restbreak_limit - restbreak_current)) SELECT_ACTION="${SELECT_ACTION}$REST_BREAK_TIME: $(seconds_to_readable "$next_restbreak")\n" SELECT_ACTION="${SELECT_ACTION}$CURRENT_MODE: $CURRENT_OPERATION_MODE\n" SELECT_ACTION="${SELECT_ACTION}$READING_MODE: $READING_STATE" action=$(kdialog --title "$WIN_TITLE" --icon workrave --menu "$(/bin/echo -e "$SELECT_ACTION")"\ open "$OPEN_WINDOW" set_normal "$SET_NORMAL" set_quiet "$SET_QUIET"\ set_suspended "$SET_SUSPENDED" toggle_reading "$TOGGLE_READING"\ prefs "$PREFERENCES_WINDOW" stats "$STATISTICS_WINDOW") if [ -z "$action" ]; then exit fi case "$action" in open) try "$CONTROL_INTERFACE.OpenMain" ;; set_normal) try "$CORE_INTERFACE.SetOperationMode" "normal";; set_quiet) try "$CORE_INTERFACE.SetOperationMode" "quiet";; set_suspended) try "$CORE_INTERFACE.SetOperationMode" "suspended";; toggle_reading) try "$APPLET_INTERFACE.Command" "12";; prefs) try "$CONTROL_INTERFACE.Preferences";; stats) try "$CONTROL_INTERFACE.Statistics";; *) kdialog --error "$FATAL_ERROR";; esac clean_up workrave-1.10.50/contrib/send_dbus_command/kde/Makefile.in0000644000000000000000000004074514221624201023434 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib/send_dbus_command/kde ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = workrave-kde.sh all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/send_dbus_command/kde/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/send_dbus_command/kde/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/send_dbus_command/kde/Makefile.am0000644000175100001710000000031514221624107022324 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = workrave-kde.sh workrave-1.10.50/contrib/Makefile.in0000644000000000000000000005524614221624201017227 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib SUBDIRS = ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = plot send_dbus_command send_menu_command all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/Makefile.am0000644000175100001710000000034614221624107016121 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = plot send_dbus_command send_menu_command workrave-1.10.50/contrib/plot/0000755000000000000000000000000014221624441016132 5ustar00rootroot00000000000000workrave-1.10.50/contrib/plot/Makefile.in0000644000000000000000000004070214221624201020174 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib/plot ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = gnuplot-workrave workrave-dump all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/plot/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/plot/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/plot/README0000644000175100001710000000136414221624107015724 0ustar00gdm00000000000000Some scripts to graph keyboarding activity over time. There are two parts: * workrave-dump extracts the statistics from the workrave historical statistics file. Run it like so: % workrave-dump > workrave.out * gnuplot-workrave reads in the "workrave.out" file generated above (the filename is fixed) and generates a PNG graph as shown above. Run it like so: % gnuplot-workrave These scripts are completely free for anyone to do whatever they want. Let me know if you can figure out a way to eliminate the need for the intermediate "workrave.out" file. http://www.tsaiberspace.net/projects/workrave/ http://issues.workrave.org/cgi-bin/bugzilla/show_bug.cgi?id=522 Robert Tsai workrave-1.10.50/contrib/plot/gnuplot-workrave0000644000175100001710000000056714221624107020321 0ustar00gdm00000000000000#!/usr/bin/gnuplot set title "Workrave" set ylabel "Keystrokes" set timefmt "%Y%m%d%H%M" set format x "%Y-%m-%d" set xtics rotate set xdata time set yrange [*:55000] set autoscale ymin set key off set tmargin 4 set bmargin 8 set lmargin 12 set rmargin 8 set terminal png transparent medium set output "workrave.png" plot "workrave.out" using 1:28 smooth sbezier linewidth 3 workrave-1.10.50/contrib/plot/workrave-dump0000644000175100001710000001012414221624107017564 0ustar00gdm00000000000000#!/usr/bin/perl -w use strict; use integer; use POSIX qw(strftime); use Time::Local; $ENV{'PATH'} = "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin"; # WorkRaveStats 4 # D 16 5 104 14 51 17 5 104 3 59 # B 0 7 9 8 40 0 0 9 386 # B 1 7 4 1 0 1 3 4 362 # B 2 7 0 0 0 0 0 0 0 # m 6 6049 234742 113560 266 417 16617 # D 17 5 104 16 49 18 5 104 3 59 # B 0 7 1 0 3 0 0 1 526 # B 1 7 3 0 0 0 2 2 1768 # B 2 7 0 0 0 0 0 0 872 # m 6 15272 39275 11937 36 30 1899 # # D(ate): [ tm_mday tm_mon tm_year tm_hour tm_min ] {2} # # B(reak): # # = break type # 0 = microbreak # 1 = rest break # 2 = daily limit # # STATS_BREAKVALUE_SIZEOF - number of following numbers # # STATS_BREAKVALUE_PROMPTED - break prompts + repeated prompts # STATS_BREAKVALUE_TAKEN - prompted breaks taken # STATS_BREAKVALUE_NATURAL_TAKEN - natural breaks taken # STATS_BREAKVALUE_SKIPPED - breaks skipped # STATS_BREAKVALUE_POSTPONED - breaks postponed # STATS_BREAKVALUE_UNIQUE_BREAKS - break prompts # STATS_BREAKVALUE_TOTAL_OVERDUE - overdue time (seconds) # # m(isc): # # STATS_VALUE_SIZEOF # STATS_VALUE_TOTAL_ACTIVE_TIME (seconds) # STATS_VALUE_TOTAL_MOUSE_MOVEMENT # STATS_VALUE_TOTAL_CLICK_MOVEMENT # STATS_VALUE_TOTAL_MOVEMENT_TIME (seconds) # STATS_VALUE_TOTAL_CLICKS # STATS_VALUE_TOTAL_KEYSTROKES sub dumpdata($$$$$) { my ($tmdate, $break, $misc, $breakstats, $miscstats) = @_; die "No timestamp at line $.\n" if !defined($tmdate); die "No breaks at line $.\n" if !defined($break); foreach my $breaktype (0..2) { die "No breaktype #$breaktype at line $.\n" if !defined($break->{$breaktype}); } die "No misc at line $.\n" if !defined($misc); my $ts = strftime("%Y%m%d%H%M", gmtime(timegm(0, @$tmdate{qw(min hour mday mon year)}))); my @breakstrs; foreach my $breaktype (0..2) { $breakstrs[$breaktype] = join(" ", @{$break->{$breaktype}}{@$breakstats}); } my $breakstr = join(" ", @breakstrs); my $miscstr = join(" ", @$misc{@$miscstats}); print "$ts $breakstr $miscstr\n"; } # # Initialize RRD # my @breakstats = qw(prompted taken natural skipped postponed unique overduetime); my @miscstats = qw(activetime mousemovement clickmovement movementtime clicks keystrokes); my $step = 24 * 3600; # 24-hr steps my $heartbeat = 4 * $step; my (@DS); my @breaktypes = qw(micro rest daily); foreach my $breaktype (@breaktypes) { foreach my $breakstat (@breakstats) { my $key = "$breaktype$breakstat"; push @DS, "DS:$key:GAUGE:$heartbeat:0:U"; } } foreach my $miscstat (@miscstats) { push @DS, "DS:$miscstat:GAUGE:$heartbeat:0:U"; } umask(022); # # Populate data # my $source = ( $^O eq 'MSWin32' ) ? "$ENV{APPDATA}\\Workrave\\historystats" : "$ENV{HOME}/.workrave/historystats"; my $first = 1; my ($tmdate, $break, $misc) = (undef, undef, undef); open(SOURCE, $source) or die "open $source: $!\n"; while () { chomp; if (/^WorkRaveStats 4$/) { # Ignore header next; } elsif (m/^D\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+) \s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s*$/x) { if ($first) { $first = 0; } else { dumpdata($tmdate, $break, $misc, [@breakstats], [@miscstats]); } $tmdate = { mday => $1, mon => $2, year => $3, hour => $4, min => $5, }; =cut $tmdate = { mday => $6, mon => $7, year => $8, hour => $9, min => $10, }; =cut $break = $misc = undef; } elsif (m/^B\s+([012])\s+7 \s+(\d+)\s+(\d+)\s+(\d+) \s+(\d+)\s+(\d+)\s+(\d+) \s+(\d+)\s*$/x) { my $type = $1; $break->{$type} = { prompted => $2, taken => $3, natural => $4, skipped => $5, postponed => $6, unique => $7, overduetime => $8, }; } elsif (m/^m\s+6\s+(\d+)\s+(\d+)\s+(\d+) \s+([-0-9]+)\s+(\d+)\s+(\d+)\s*$/x) { $misc = { activetime => $1, mousemovement => $2, clickmovement => $3, movementtime => $4, clicks => $5, keystrokes => $6, }; } else { die "Unrecognized line (line $.): [$_]\n"; } } close(SOURCE) or die "close $source: $!\n"; dumpdata($tmdate, $break, $misc, [@breakstats], [@miscstats]); workrave-1.10.50/contrib/plot/Makefile.am0000644000175100001710000000032514221624107017074 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = gnuplot-workrave workrave-dumpworkrave-1.10.50/contrib/send_menu_command/0000755000000000000000000000000014221624441020627 5ustar00rootroot00000000000000workrave-1.10.50/contrib/send_menu_command/win32/0000755000000000000000000000000014221624441021571 5ustar00rootroot00000000000000workrave-1.10.50/contrib/send_menu_command/win32/Makefile.in0000644000000000000000000004105014221624201023630 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012, 2013 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib/send_menu_command/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = send_workrave_command.c Send_Command_to_Workrave_Example.cs README.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/send_menu_command/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/send_menu_command/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/send_menu_command/win32/send_workrave_command.c0000644000175100001710000000753514221624107025224 0ustar00gdm00000000000000/* Copyright (C) 2012 Jay Satiro All rights reserved. This file is part of Workrave. Workrave is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Workrave 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 Workrave. If not, see . */ /** This is a simple win32 example that will send a menu command to Workrave from the command line. Visual Studio: cl /W4 send_workrave_command.c MinGW or cygwin: gcc -Wall -Wextra -Wno-unknown-pragmas -o send_workrave_command.exe send_workrave_command.c x:\Workrave\other>send_workrave_command.exe MENU_COMMAND_MODE_NORMAL - Copyright (C) 2012 Jay Satiro All rights reserved. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. - Sending Workrave command MENU_COMMAND_MODE_NORMAL... Command sent. */ #include #include #include #include #pragma comment( lib, "user32.lib" ) const char *command[] = { "MENU_COMMAND_PREFERENCES", "MENU_COMMAND_EXERCISES", "MENU_COMMAND_REST_BREAK", "MENU_COMMAND_MODE_NORMAL", "MENU_COMMAND_MODE_QUIET", "MENU_COMMAND_MODE_SUSPENDED", "MENU_COMMAND_NETWORK_CONNECT", "MENU_COMMAND_NETWORK_DISCONNECT", "MENU_COMMAND_NETWORK_LOG", "MENU_COMMAND_NETWORK_RECONNECT", "MENU_COMMAND_STATISTICS", "MENU_COMMAND_ABOUT", "MENU_COMMAND_MODE_READING", /* toggle reading mode */ "MENU_COMMAND_OPEN", NULL }; /* print_license() Print the GPL license and copyright. If you've made substantial modifications to this program add an additional copyright with your name. */ void print_license( void ) { printf( "-\n" ); /* Example copyright notice. Leave this example intact. Copy it below to use as a template. printf( "Copyright (C) 2012 Your Name \n" ); */ printf( "Copyright (C) 2012 Jay Satiro \n" "All rights reserved. License GPLv3+: GNU GPL version 3 or later \n" ". \n" "This is free software: you are free to change and redistribute it. \n" "There is NO WARRANTY, to the extent permitted by law. \n" ); printf( "-\n" ); return; } void print_commands( void ) { int i; for( i = 0; command[ i ]; ++i ) printf( "%s\n", command[ i ] ); return; } void show_usage_and_exit( void ) { printf( "Specify one of the following commands:\n" ); print_commands(); exit( 1 ); } int find_command( const char *str ) { int i; if( !str ) return -1; for( i = 0; command[ i ]; ++i ) { if( !_stricmp( str, command[ i ] ) ) return i; } return -1; } int main( int argc, char **argv ) { int cmd = -1; HWND hwnd = NULL; print_license(); printf( "\n" ); if( argc < 2 ) show_usage_and_exit(); cmd = find_command( argv[ 1 ] ); if( cmd == -1 ) show_usage_and_exit(); hwnd = FindWindowEx( NULL, NULL, "gdkWindowToplevel", "Workrave" ); if( !hwnd ) { printf( "Error: Workrave window not found!\n" ); return 1; } printf( "Sending Workrave command %s...\n", command[ cmd ] ); fflush( stdout ); SetLastError( 0 ); if( SendMessageTimeout( hwnd, WM_USER, cmd, 0, SMTO_BLOCK, 15000, NULL ) ) { printf( "Command sent.\n" ); return 0; } if( GetLastError() == ERROR_TIMEOUT ) printf( "Error: SendMessageTimeout() timed out!\n" ); else printf( "Error: SendMessageTimeout() failed!\n" ); return 1; } workrave-1.10.50/contrib/send_menu_command/win32/Makefile.am0000644000175100001710000000041214221624107022530 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012, 2013 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = send_workrave_command.c Send_Command_to_Workrave_Example.cs README.txt workrave-1.10.50/contrib/send_menu_command/win32/README.txt0000644000175100001710000000014414221624107022174 0ustar00gdm00000000000000Here are some command line examples that you can use to send a menu command to Workrave in Windows. workrave-1.10.50/contrib/send_menu_command/win32/Send_Command_to_Workrave_Example.cs0000644000175100001710000000613114221624107027413 0ustar00gdm00000000000000/* Copyright (C) 2011, 2012 Rob Caelers All rights reserved. This file is part of Workrave. Workrave is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Workrave 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 Workrave. If not, see . */ using System; using System.Text; using System.Runtime.InteropServices; namespace WorkraveControl { class Program { enum MenuCommand { MENU_COMMAND_PREFERENCES, MENU_COMMAND_EXERCISES, MENU_COMMAND_REST_BREAK, MENU_COMMAND_MODE_NORMAL, MENU_COMMAND_MODE_QUIET, MENU_COMMAND_MODE_SUSPENDED, MENU_COMMAND_NETWORK_CONNECT, MENU_COMMAND_NETWORK_DISCONNECT, MENU_COMMAND_NETWORK_LOG, MENU_COMMAND_NETWORK_RECONNECT, MENU_COMMAND_STATISTICS, MENU_COMMAND_ABOUT, MENU_COMMAND_MODE_READING, MENU_COMMAND_OPEN, }; [DllImport("user32.dll", CharSet = CharSet.Unicode)] static extern IntPtr FindWindowEx(IntPtr parentHandle, IntPtr childAfter, string lclassName, string windowTitle); [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount); [DllImport("user32.dll")] static extern int GetWindowText(IntPtr window, [In][Out] StringBuilder text, int copyCount); [DllImport("user32.dll")] static extern int SendMessage(IntPtr window, int message, int wparam, int lparam); const int WM_USER = 0x0400; static IntPtr RecursiveFindWindow(IntPtr hwnd, String className, String title) { StringBuilder c = new StringBuilder(100); int rc = GetClassName(hwnd, c, c.Capacity); StringBuilder t = new StringBuilder(100); rc = GetWindowText(hwnd, t, t.Capacity); if (c.ToString().Equals(className) && t.ToString().Equals(title)) { return hwnd; } else { IntPtr result = IntPtr.Zero; IntPtr child = FindWindowEx(hwnd, IntPtr.Zero, null, null); while (child != IntPtr.Zero) { result = RecursiveFindWindow(child, className, title); if (result != IntPtr.Zero) { return result; } child = FindWindowEx(hwnd, child, null, null); } return IntPtr.Zero; } } static void Main(string[] args) { IntPtr window = RecursiveFindWindow(IntPtr.Zero, "gdkWindowToplevel", "Workrave"); if (window != IntPtr.Zero) { SendMessage(window, WM_USER, (int) MenuCommand.MENU_COMMAND_MODE_QUIET, 0); } } } } workrave-1.10.50/contrib/send_menu_command/Makefile.in0000644000000000000000000005527114221624201022700 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = contrib/send_menu_command SUBDIRS = ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = win32 all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/send_menu_command/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign contrib/send_menu_command/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/contrib/send_menu_command/Makefile.am0000644000175100001710000000030314221624107021565 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2004, 2006, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in DIST_SUBDIRS = win32 workrave-1.10.50/COPYING0000644000175100001710000010437414221624106013465 0ustar00gdm00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . workrave-1.10.50/compile0000755000000000000000000001632714221624200015074 0ustar00rootroot00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: workrave-1.10.50/backend/0000755000000000000000000000000014221624436015107 5ustar00rootroot00000000000000workrave-1.10.50/backend/include/0000755000000000000000000000000014221624436016532 5ustar00rootroot00000000000000workrave-1.10.50/backend/include/ICore.hh0000644000175100001710000001304714221624106016762 0ustar00gdm00000000000000// ICore.hh --- The main controller interface // // Copyright (C) 2001 - 2009, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICORE_HH #define ICORE_HH #include #include #include "enum.h" namespace workrave { // Forward declaratons class IBreak; class IApp; class IStatistics; class ICoreEventListener; class INetwork; class IDistributionManager; //! ID of a break. enum BreakId { BREAK_ID_NONE = -1, BREAK_ID_MICRO_BREAK = 0, BREAK_ID_REST_BREAK, BREAK_ID_DAILY_LIMIT, BREAK_ID_SIZEOF }; inline std::ostream &operator<<(std::ostream &stream, BreakId n) { switch (n) { case BREAK_ID_NONE: stream << "none"; break; case BREAK_ID_MICRO_BREAK: stream << "micro"; break; case BREAK_ID_REST_BREAK: stream << "rest"; break; case BREAK_ID_DAILY_LIMIT: stream << "daily"; break; default: stream << "invalid"; break; } return stream; } enum BreakHint { BREAK_HINT_NONE = 0, // Break was started on user request BREAK_HINT_USER_INITIATED = 1, // Natural break. BREAK_HINT_NATURAL_BREAK = 2, }; //! Main interface of the backend. class ICore { public: virtual ~ICore() {} //! The way a break is insisted. enum InsistPolicy { //! Uninitialized policy INSIST_POLICY_INVALID, //! Halts the timer on activity. INSIST_POLICY_HALT, //! Resets the timer on activity. INSIST_POLICY_RESET, //! Ignores all activity. INSIST_POLICY_IGNORE, //! Number of policies. INSIST_POLICY_SIZEOF }; //! Initialize the Core. Must be called first. virtual void init(int argc, char **argv, IApp *app, const char *display) = 0; //! Periodic heartbeat. The GUI *MUST* call this method every second. virtual void heartbeat() = 0; //! Force a break of the specified type. virtual void force_break(BreakId id, BreakHint break_hint) = 0; //! Return the break interface of the specified type. virtual IBreak *get_break(BreakId id) = 0; //! Return the break interface of the specified type. virtual IBreak *get_break(std::string name) = 0; //! Return the statistics interface. virtual IStatistics *get_statistics() const = 0; #ifdef HAVE_DISTRIBUTION //! Returns the distribution manager (if available). virtual IDistributionManager *get_distribution_manager() const = 0; #endif //! Is the user currently active? virtual bool is_user_active() const = 0; //! Retrieves the operation mode. virtual OperationMode get_operation_mode() = 0; //! Retrieves the regular operation mode. virtual OperationMode get_operation_mode_regular() = 0; //! Checks if operation_mode is an override. virtual bool is_operation_mode_an_override() = 0; //! Sets the operation mode. virtual void set_operation_mode(OperationMode mode) = 0; //! Temporarily overrides the operation mode. virtual void set_operation_mode_override(OperationMode mode, const std::string &id) = 0; //! Removes the overriden operation mode. virtual void remove_operation_mode_override(const std::string &id) = 0; //! Return the current usage mode. virtual UsageMode get_usage_mode() = 0; //! Set the usage mode. virtual void set_usage_mode(UsageMode mode) = 0; //! Set the callback for activity monitor events. virtual void set_core_events_listener(ICoreEventListener *l) = 0; //! Notify the core that the computer will enter or leave powersave (suspend/hibernate) virtual void set_powersave(bool down) = 0; //! Notify the core that the computer time has changed virtual void time_changed() = 0; //! Set the break insist policy. virtual void set_insist_policy(InsistPolicy p) = 0; //! Return the current time virtual time_t get_time() const = 0; //! Return the current time virtual void force_idle() = 0; }; std::string operator%(const std::string &key, BreakId id); enum InsistPolicy { //! Uninitialized policy INSIST_POLICY_INVALID, //! Halts the timer on activity. INSIST_POLICY_HALT, //! Resets the timer on activity. INSIST_POLICY_RESET, //! Ignores all activity. INSIST_POLICY_IGNORE, //! Number of policies. INSIST_POLICY_SIZEOF }; inline std::ostream &operator<<(std::ostream &stream, ICore::InsistPolicy p) { switch (p) { case ICore::INSIST_POLICY_INVALID: stream << "invalid"; break; case ICore::INSIST_POLICY_HALT: stream << "halt"; break; case ICore::INSIST_POLICY_RESET: stream << "reset"; break; case ICore::INSIST_POLICY_IGNORE: stream << "ignore"; break; default: stream << "invalid"; break; } return stream; } }; // namespace workrave #endif // ICORE_HH workrave-1.10.50/backend/include/Makefile.in0000644000000000000000000004072514221624200020574 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/include/enum.h0000644000175100001710000000124514221624106016552 0ustar00gdm00000000000000#ifndef ENUM_H #define ENUM_H #ifdef __cplusplus namespace workrave { #endif /* Mode */ typedef enum OperationMode { /* Breaks are reported to the user when due. */ OPERATION_MODE_NORMAL = 0, /* Monitoring is suspended. */ OPERATION_MODE_SUSPENDED, /* Breaks are not reported to the user when due. */ OPERATION_MODE_QUIET, /* Number of modes.*/ OPERATION_MODE_SIZEOF } OperationMode; typedef enum UsageMode { /* Normal 'average' PC usage. */ USAGE_MODE_NORMAL = 0, /* User is reading. */ USAGE_MODE_READING, /* Number of modes. */ USAGE_MODE_SIZEOF } UsageMode; #ifdef __cplusplus } #endif #endif workrave-1.10.50/backend/include/CoreConfig.hh0000644000175100001710000000500314221624106017770 0ustar00gdm00000000000000// CoreConfig.hh --- Configuration keys of the core. // // Copyright (C) 2001 - 2009 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CORECONFIG_HH #define CORECONFIG_HH #include "ICore.hh" class CoreConfig { public: static const std::string CFG_KEY_TIMERS; static const std::string CFG_KEY_TIMER; static const std::string CFG_KEY_TIMER_LIMIT; static const std::string CFG_KEY_TIMER_AUTO_RESET; static const std::string CFG_KEY_TIMER_RESET_PRED; static const std::string CFG_KEY_TIMER_SNOOZE; static const std::string CFG_KEY_TIMER_MONITOR; static const std::string CFG_KEY_TIMER_ACTIVITY_SENSITIVE; static const std::string CFG_KEY_BREAKS; static const std::string CFG_KEY_BREAK; static const std::string CFG_KEY_BREAK_MAX_PRELUDES; static const std::string CFG_KEY_BREAK_ENABLED; static const std::string CFG_KEY_MONITOR; static const std::string CFG_KEY_MONITOR_NOISE; static const std::string CFG_KEY_MONITOR_ACTIVITY; static const std::string CFG_KEY_MONITOR_IDLE; static const std::string CFG_KEY_MONITOR_SENSITIVITY; static const std::string CFG_KEY_GENERAL_DATADIR; static const std::string CFG_KEY_OPERATION_MODE; static const std::string CFG_KEY_USAGE_MODE; static const std::string CFG_KEY_DISTRIBUTION; static const std::string CFG_KEY_DISTRIBUTION_ENABLED; static const std::string CFG_KEY_DISTRIBUTION_LISTENING; static const std::string CFG_KEY_DISTRIBUTION_PEERS; static const std::string CFG_KEY_DISTRIBUTION_TCP; static const std::string CFG_KEY_DISTRIBUTION_TCP_PORT; static const std::string CFG_KEY_DISTRIBUTION_TCP_USERNAME; static const std::string CFG_KEY_DISTRIBUTION_TCP_PASSWORD; static const std::string CFG_KEY_DISTRIBUTION_TCP_ATTEMPTS; static const std::string CFG_KEY_DISTRIBUTION_TCP_INTERVAL; static bool match(const std::string &str, const std::string &key, workrave::BreakId &id); }; #endif workrave-1.10.50/backend/include/IDistributionManager.hh0000644000175100001710000000446114221624106022044 0ustar00gdm00000000000000// IDistributionManager.hh // // Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IDISTRIBUTIOMANAGER_HH #define IDISTRIBUTIOMANAGER_HH #include using namespace std; namespace workrave { class DistributionLogListener; class IDistributionManager { public: virtual ~IDistributionManager() {} virtual bool is_master() const = 0; virtual int get_number_of_peers() = 0; virtual bool connect(string url) = 0; virtual bool disconnect_all() = 0; virtual bool reconnect_all() = 0; virtual bool add_log_listener(DistributionLogListener *listener) = 0; virtual bool remove_log_listener(DistributionLogListener *listener) = 0; virtual list get_logs() const = 0; virtual bool add_peer(string peer) = 0; virtual bool remove_peer(string peer) = 0; virtual void set_peers(string peers, bool connect = true) = 0; virtual list get_peers() const = 0; virtual bool get_enabled() const = 0; virtual void set_enabled(bool b) = 0; virtual bool get_listening() const = 0; virtual void set_listening(bool b) = 0; virtual string get_username() const = 0; virtual void set_username(string name) = 0; virtual string get_password() const = 0; virtual void set_password(string name) = 0; virtual int get_port() const = 0; virtual void set_port(int v) = 0; virtual int get_reconnect_attempts() const = 0; virtual void set_reconnect_attempts(int v) = 0; virtual int get_reconnect_interval() const = 0; virtual void set_reconnect_interval(int v) = 0; }; } // namespace workrave #endif // IDISTRIBUTIOMANAGER_HH workrave-1.10.50/backend/include/IConfigurator.hh0000644000175100001710000000675714221624106020546 0ustar00gdm00000000000000// IConfigurator.hh -- Interface to the Workrave configuration // // Copyright (C) 2001 - 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICONFIGURATOR_HH #define ICONFIGURATOR_HH #include #include #include namespace workrave { // Forward declaratons class IConfiguratorListener; //! Hints on how to set a configuration value. enum ConfigFlags { //! No special hints. CONFIG_FLAG_NONE = 0, //! The default value is set. CONFIG_FLAG_DEFAULT = 1, //! The value must be set immediately, without delay. CONFIG_FLAG_IMMEDIATE = 2, }; //! Interface to access the configuration. class IConfigurator { public: virtual ~IConfigurator() {} virtual void set_delay(const std::string &key, int delay) = 0; virtual bool load(std::string filename) = 0; virtual bool save(std::string filename) = 0; virtual bool save() = 0; virtual bool remove_key(const std::string &key) const = 0; virtual bool rename_key(const std::string &key, const std::string &new_key) = 0; virtual bool get_value(const std::string &key, std::string &out) const = 0; virtual bool get_value(const std::string &key, bool &out) const = 0; virtual bool get_value(const std::string &key, int &out) const = 0; virtual bool get_value(const std::string &key, double &out) const = 0; virtual void get_value_with_default(const std::string &key, std::string &out, std::string s) const = 0; virtual void get_value_with_default(const std::string &key, bool &out, const bool def) const = 0; virtual void get_value_with_default(const std::string &key, int &out, const int def) const = 0; virtual void get_value_with_default(const std::string &key, double &out, const double def) const = 0; virtual bool set_value(const std::string &key, const std::string &v, ConfigFlags flags = CONFIG_FLAG_NONE) = 0; virtual bool set_value(const std::string &key, const char *v, ConfigFlags flags = CONFIG_FLAG_NONE) = 0; virtual bool set_value(const std::string &key, int v, ConfigFlags flags = CONFIG_FLAG_NONE) = 0; virtual bool set_value(const std::string &key, bool v, ConfigFlags flags = CONFIG_FLAG_NONE) = 0; virtual bool set_value(const std::string &key, double v, ConfigFlags flags = CONFIG_FLAG_NONE) = 0; virtual bool get_typed_value(const std::string &key, std::string &t) const = 0; virtual bool set_typed_value(const std::string &key, const std::string &t) = 0; virtual bool add_listener(const std::string &key_prefix, IConfiguratorListener *listener) = 0; virtual bool remove_listener(IConfiguratorListener *listener) = 0; virtual bool remove_listener(const std::string &key_prefix, IConfiguratorListener *listener) = 0; virtual bool find_listener(IConfiguratorListener *listener, std::string &key) const = 0; }; } // namespace workrave #endif // ICONFIGURATOR_HH workrave-1.10.50/backend/include/CoreFactory.hh0000644000175100001710000000267114221624106020202 0ustar00gdm00000000000000// CoreFactory.hh --- The main access point to the Core // // Copyright (C) 2001 - 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef COREFACTORY_HH #define COREFACTORY_HH #ifdef HAVE_DBUS # include "dbus/IDBus.hh" #endif namespace workrave { // Forward declarion of external interfaces. class ICore; class IConfigurator; class INetwork; class DBus; //! Main access points to the Core. class CoreFactory { public: //! Returns the interface to the core. static ICore *get_core(); //! Returns the interface to the core's configurator. static IConfigurator *get_configurator(); #ifdef HAVE_DBUS //! Returns the interface to the DBUS facility. static workrave::dbus::IDBus::Ptr get_dbus(); #endif }; } // namespace workrave #endif // COREFACTORY_HH workrave-1.10.50/backend/include/DistributionLogListener.hh0000644000175100001710000000172114221624106022604 0ustar00gdm00000000000000// DistributionLogListener.hh // // Copyright (C) 2002, 2003, 2005, 2007 Rob Caelers // All rights reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3, or (at your option) // any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // #ifndef DISTRIBUTIONLOGLISTENER_HH #define DISTRIBUTIONLOGLISTENER_HH namespace workrave { class DistributionLogListener { public: virtual ~DistributionLogListener() {} //! Notification that a new log message has arrived. virtual void distribution_log(string msg) = 0; }; } // namespace workrave #endif // DISTRIBUTIONLOGLISTENER_HH workrave-1.10.50/backend/include/IApp.hh0000644000175100001710000000477314221624106016620 0ustar00gdm00000000000000// IApp.hh // // Copyright (C) 2001 - 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IAPP_HH #define IAPP_HH #include "ICore.hh" namespace workrave { // Forward declarion of external interfaces. class IBreakResponse; //! Interface that must be implemented by GUI applications. class IApp { public: //! The stage of a break warning (prelude) enum PreludeStage { STAGE_INITIAL = 0, STAGE_MOVE_OUT, STAGE_WARN, STAGE_ALERT, }; //! Text that the GUI show must in the prelude window. enum PreludeProgressText { PROGRESS_TEXT_BREAK_IN, PROGRESS_TEXT_DISAPPEARS_IN, PROGRESS_TEXT_SILENT_IN, }; virtual ~IApp() {} //! Set the response interface that must the used by the GUI to respond. virtual void set_break_response(IBreakResponse *rep) = 0; //! Create a prelude window for specified break type. virtual void create_prelude_window(BreakId break_id) = 0; //! Create a break window for specified break type. virtual void create_break_window(BreakId break_id, BreakHint break_hint) = 0; //! Hide the break or prelude window. virtual void hide_break_window() = 0; //! Hide the break or prelude window. virtual void show_break_window() = 0; //! Refresh the content of the break or prelude window. virtual void refresh_break_window() = 0; //! Set the break progress to the specified value and maximum value. virtual void set_break_progress(int value, int max_value) = 0; //! Set the alert stage of the prelude window. virtual void set_prelude_stage(PreludeStage stage) = 0; //! Set the progress text of the prelude window. virtual void set_prelude_progress_text(PreludeProgressText text) = 0; //! Terminate the application. virtual void terminate() = 0; }; } // namespace workrave #endif // IAPP_HH workrave-1.10.50/backend/include/IConfiguratorListener.hh0000644000175100001710000000210614221624106022234 0ustar00gdm00000000000000// IConfiguratorListener.hh -- Listen for configuration changes. // // Copyright (C) 2001 - 2007 Rob Caelers // All rights reserved. // // 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 Foundator; either versor 2, or (at your optor) // any later versor. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // #ifndef ICONFIGURATORLISTENER_HH #define ICONFIGURATORLISTENER_HH #include namespace workrave { //! Listener to receive notifications of changed configuration. class IConfiguratorListener { public: virtual ~IConfiguratorListener() {} //! The configuration item with specified key has changed. virtual void config_changed_notify(const std::string &key) = 0; }; } // namespace workrave #endif // ICONFIGURATORLISTENER_HH workrave-1.10.50/backend/include/Makefile.am0000644000175100001710000000034714221624106017473 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) workrave-1.10.50/backend/include/IBreak.hh0000644000175100001710000000411114221624106017106 0ustar00gdm00000000000000// IBreak.hh -- Interface of a break. // // Copyright (C) 2001 - 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IBREAK_HH #define IBREAK_HH #include "ICore.hh" #include namespace workrave { //! Interface to retrieve information about a break. class IBreak { public: virtual ~IBreak() {} //! Returns the name of the break. virtual std::string get_name() const = 0; //! Returns the ID of the break. virtual BreakId get_id() const = 0; //! Is this break currently enabled? virtual bool is_enabled() const = 0; //! Returns the current time state. virtual bool is_running() const = 0; //! Returns the elasped active time. virtual time_t get_elapsed_time() const = 0; //! Returns the elasped idle time. virtual time_t get_elapsed_idle_time() const = 0; //! Returns the auto-reset interval (i.e. break duration) virtual time_t get_auto_reset() const = 0; //! Is the auto-reset enabled? virtual bool is_auto_reset_enabled() const = 0; //! Returns the break limit (i.e. time before break) virtual time_t get_limit() const = 0; //! Is the limit enabled. virtual bool is_limit_enabled() const = 0; //! Is the break window visible. virtual bool is_taking() const = 0; //! Has the maximum number of prelude been reached virtual bool is_max_preludes_reached() const = 0; }; } // namespace workrave #endif // IBREAK_HH workrave-1.10.50/backend/include/ICoreEventListener.hh0000644000175100001710000000361714221624106021474 0ustar00gdm00000000000000// ICoreEventListener.hh // // Copyright (C) 2001 - 2007, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICOREEVENTLISTENER_HH #define ICOREEVENTLISTENER_HH #include "ICore.hh" namespace workrave { //! Events send from Core to GUI. enum CoreEvent { CORE_EVENT_NONE = -1, CORE_EVENT_MONITOR_FAILURE = 0, CORE_EVENT_SOUND_FIRST = 1, CORE_EVENT_SOUND_BREAK_PRELUDE = CORE_EVENT_SOUND_FIRST, CORE_EVENT_SOUND_BREAK_IGNORED, CORE_EVENT_SOUND_REST_BREAK_STARTED, CORE_EVENT_SOUND_REST_BREAK_ENDED, CORE_EVENT_SOUND_MICRO_BREAK_STARTED, CORE_EVENT_SOUND_MICRO_BREAK_ENDED, CORE_EVENT_SOUND_DAILY_LIMIT, CORE_EVENT_SOUND_LAST = CORE_EVENT_SOUND_DAILY_LIMIT, }; //! Listener for events comming from the Core. class ICoreEventListener { public: virtual ~ICoreEventListener() {} // Notification of a core event. virtual void core_event_notify(const CoreEvent event) = 0; // Notification that the operation mode has changed.. virtual void core_event_operation_mode_changed(const OperationMode m) = 0; // Notification that the usage mode has changed.. virtual void core_event_usage_mode_changed(const UsageMode m) = 0; }; } // namespace workrave #endif // ICOREEVENTLISTENER_HH workrave-1.10.50/backend/include/IBreakResponse.hh0000644000175100001710000000225614221624106020635 0ustar00gdm00000000000000// IBreakResponse.hh // // Copyright (C) 2002 - 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IBREAKRESPONSE_HH #define IBREAKRESPONSE_HH #include "ICore.hh" namespace workrave { //! User response for a break. class IBreakResponse { public: virtual ~IBreakResponse() {} //! Request to postpone the break. virtual void postpone_break(BreakId break_id) = 0; //! Request to skip the break. virtual void skip_break(BreakId break_id) = 0; }; } // namespace workrave #endif // IBREAKRESPONSE_HH workrave-1.10.50/backend/include/Harpoon.hh0000644000175100001710000000366514221624106017374 0ustar00gdm00000000000000// Harpoon.hh --- ActivityMonitor for W32 // // Copyright (C) 2002, 2004, 2006, 2007 Raymond Penners // Copyright (C) 2007 Ray Satiro // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef HARPOON_HH #define HARPOON_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include #include "harpoon.h" typedef union HarpoonEventUnion HarpoonEvent; //! Activity monitor for a local X server. class Harpoon { public: //! Constructor. Harpoon(); //! Destructor. virtual ~Harpoon(); static bool init(HarpoonHookFunc func); static void terminate(); static void block_input(); static void unblock_input(); private: static void init_critical_filename_list(); static bool check_for_taskmgr_debugger(char *out); static void on_harpoon_event(HarpoonEvent *event); static bool is_64bit_windows(); static void start_harpoon_helper(); static void stop_harpoon_helper(); static HWND recursive_find_window(HWND hwnd, LPCTSTR lpClassName); static HWND helper_window; static bool helper_started; static char critical_filename_list[HARPOON_MAX_UNBLOCKED_APPS][511]; }; #endif // HARPOON_HH workrave-1.10.50/backend/include/IStatistics.hh0000644000175100001710000000464314221624106020226 0ustar00gdm00000000000000// IStatistics.hh // // Copyright (C) 2002, 2003, 2005, 2006, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ISTATISTICS_HH #define ISTATISTICS_HH #include #ifdef PLATFORM_OS_WINDOWS_NATIVE typedef __int64 int64_t; #else # include #endif #include "ICore.hh" namespace workrave { class IStatistics { public: enum StatsBreakValueType { STATS_BREAKVALUE_PROMPTED = 0, STATS_BREAKVALUE_TAKEN, STATS_BREAKVALUE_NATURAL_TAKEN, STATS_BREAKVALUE_SKIPPED, STATS_BREAKVALUE_POSTPONED, STATS_BREAKVALUE_UNIQUE_BREAKS, STATS_BREAKVALUE_TOTAL_OVERDUE, STATS_BREAKVALUE_SIZEOF }; enum StatsValueType { STATS_VALUE_TOTAL_ACTIVE_TIME = 0, STATS_VALUE_TOTAL_MOUSE_MOVEMENT, STATS_VALUE_TOTAL_CLICK_MOVEMENT, STATS_VALUE_TOTAL_MOVEMENT_TIME, STATS_VALUE_TOTAL_CLICKS, STATS_VALUE_TOTAL_KEYSTROKES, STATS_VALUE_SIZEOF }; typedef int BreakStats[STATS_BREAKVALUE_SIZEOF]; typedef int64_t MiscStats[STATS_VALUE_SIZEOF]; struct DailyStats { //! Start time of this day. struct tm start; //! Stop time of this day. struct tm stop; //! Statistic of each break BreakStats break_stats[BREAK_ID_SIZEOF]; //! Misc statistics MiscStats misc_stats; }; public: virtual ~IStatistics() {} virtual bool delete_all_history() = 0; virtual void update() = 0; virtual DailyStats *get_current_day() const = 0; virtual DailyStats *get_day(int day) const = 0; virtual void get_day_index_by_date(int y, int m, int d, int &idx, int &next, int &prev) const = 0; virtual int get_history_size() const = 0; virtual void dump() = 0; }; } // namespace workrave #endif // ISTATISTICS_HH workrave-1.10.50/backend/src/0000755000000000000000000000000014221624436015676 5ustar00rootroot00000000000000workrave-1.10.50/backend/src/Core.cc0000644000175100001710000015146214221624106016007 0ustar00gdm00000000000000// Core.cc --- The main controller // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include "debug.hh" #include #include #include #include #include #include "Core.hh" #include "Util.hh" #include "IApp.hh" #include "ICoreEventListener.hh" #include "ActivityMonitor.hh" #include "TimerActivityMonitor.hh" #include "Break.hh" #include "ConfiguratorFactory.hh" #include "Configurator.hh" #include "CoreConfig.hh" #include "Statistics.hh" #include "BreakControl.hh" #include "Timer.hh" #include "TimePredFactory.hh" #include "TimePred.hh" #include "TimeSource.hh" #include "InputMonitorFactory.hh" #ifdef HAVE_DISTRIBUTION # include "DistributionManager.hh" # include "IdleLogManager.hh" # include "PacketBuffer.hh" # ifndef NDEBUG # include "FakeActivityMonitor.hh" # endif #endif #ifdef HAVE_GCONF # include #endif #ifdef HAVE_DBUS # include "dbus/DBusFactory.hh" # if defined(PLATFORM_OS_WINDOWS_NATIVE) # undef interface # endif # include "dbus/IDBus.hh" # include "dbus/DBusException.hh" # include "DBusWorkrave.hh" # ifdef HAVE_TESTS # include "Test.hh" # endif #endif Core *Core::instance = NULL; const char *WORKRAVESTATE = "WorkRaveState"; const int SAVESTATETIME = 60; #define DBUS_PATH_WORKRAVE "/org/workrave/Workrave/Core" #define DBUS_SERVICE_WORKRAVE "org.workrave.Workrave" //! Constructs a new Core. Core::Core() : last_process_time(0) , master_node{"core.master_node", true} , configurator(NULL) , monitor(NULL) , application(NULL) , statistics(NULL) , operation_mode{"core.operation_mode", OPERATION_MODE_NORMAL} , operation_mode_regular{"core.operation_mode_regular", OPERATION_MODE_NORMAL} , usage_mode{"core.usage_mode", USAGE_MODE_NORMAL} , core_event_listener(NULL) , powersave{"core.powersave", false} , powersave_resume_time(0) , insist_policy{"core.insist_policy", ICore::INSIST_POLICY_HALT} , active_insist_policy{"core.active_insist_policy", ICore::INSIST_POLICY_INVALID} , resume_break{"core.resume_break", BREAK_ID_NONE} , local_state{"core.local_state", ACTIVITY_IDLE} , monitor_state { "core.monitor_state", ACTIVITY_UNKNOWN } #ifdef HAVE_DISTRIBUTION , dist_manager(NULL), remote_state{"core.remote_state", ACTIVITY_IDLE}, idlelog_manager(NULL) # ifndef NDEBUG , fake_monitor(NULL) # endif #endif { TRACE_ENTER("Core::Core"); current_time = time(NULL); assert(!instance); instance = this; TRACE_EXIT(); } //! Destructor. Core::~Core() { TRACE_ENTER("Core::~Core"); save_state(); if (monitor != NULL) { monitor->terminate(); } delete statistics; delete monitor; delete configurator; #ifdef HAVE_DISTRIBUTION if (idlelog_manager != NULL) { idlelog_manager->terminate(); delete idlelog_manager; } delete dist_manager; # ifndef NDEBUG delete fake_monitor; # endif #endif TRACE_EXIT(); } /********************************************************************************/ /**** Initialization ******/ /********************************************************************************/ //! Initializes the core. void Core::init(int argc, char **argv, IApp *app, const char *display_name) { application = app; this->argc = argc; this->argv = argv; init_configurator(); init_monitor(display_name); #ifdef HAVE_DISTRIBUTION init_distribution_manager(); #endif init_breaks(); init_statistics(); init_bus(); load_state(); load_misc(); } //! Initializes the configurator. void Core::init_configurator() { string ini_file = Util::complete_directory("workrave.ini", Util::SEARCH_PATH_CONFIG); if (Util::file_exists(ini_file)) { configurator = ConfiguratorFactory::create(ConfiguratorFactory::FormatIni); configurator->load(ini_file); } else { #if defined(HAVE_GCONF) gconf_init(argc, argv, NULL); g_type_init(); #endif configurator = ConfiguratorFactory::create(ConfiguratorFactory::FormatNative); #if defined(HAVE_GDOME) if (configurator == NULL) { string configFile = Util::complete_directory("config.xml", Util::SEARCH_PATH_CONFIG); configurator = ConfiguratorFactory::create(ConfiguratorFactory::FormatXml); # if defined(PLATFORM_OS_UNIX) if (configFile == "" || configFile == "config.xml") { configFile = Util::get_home_directory() + "config.xml"; } # endif if (configFile != "") { configurator->load(configFile); } } #endif if (configurator == NULL) { ini_file = Util::get_home_directory() + "workrave.ini"; configurator = ConfiguratorFactory::create(ConfiguratorFactory::FormatIni); configurator->load(ini_file); configurator->save(ini_file); } } string home; if (configurator->get_value(CoreConfig::CFG_KEY_GENERAL_DATADIR, home) && home != "") { Util::set_home_directory(home); } } //! Initializes the communication bus. void Core::init_bus() { #ifdef HAVE_DBUS try { dbus = workrave::dbus::DBusFactory::create(); dbus->init(); extern void init_DBusWorkrave(workrave::dbus::IDBus::Ptr dbus); init_DBusWorkrave(dbus); dbus->connect(DBUS_PATH_WORKRAVE, "org.workrave.CoreInterface", this); dbus->connect(DBUS_PATH_WORKRAVE, "org.workrave.ConfigInterface", configurator); dbus->register_object_path(DBUS_PATH_WORKRAVE); # ifdef HAVE_TESTS dbus->connect("/org/workrave/Workrave/Debug", "org.workrave.DebugInterface", Test::get_instance()); dbus->register_object_path("/org/workrave/Workrave/Debug"); # endif } catch (workrave::dbus::DBusException &) { } #endif } //! Initializes the activity monitor. void Core::init_monitor(const char *display_name) { #ifdef HAVE_DISTRIBUTION # ifndef NDEBUG fake_monitor = NULL; const char *env = getenv("WORKRAVE_FAKE"); if (env != NULL) { fake_monitor = new FakeActivityMonitor(); } # endif #endif InputMonitorFactory::init(display_name); configurator->set_value(CoreConfig::CFG_KEY_MONITOR_SENSITIVITY, 3, CONFIG_FLAG_DEFAULT); monitor = new ActivityMonitor(); load_monitor_config(); configurator->add_listener(CoreConfig::CFG_KEY_MONITOR, this); } //! Initializes all breaks. void Core::init_breaks() { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { breaks[i].init(BreakId(i), application); } application->set_break_response(this); } #ifdef HAVE_DISTRIBUTION //! Initializes the monitor based on the specified configuration. void Core::init_distribution_manager() { dist_manager = new DistributionManager(); assert(dist_manager != NULL); dist_manager->init(configurator); dist_manager->register_client_message(DCM_BREAKS, DCMT_MASTER, this); dist_manager->register_client_message(DCM_TIMERS, DCMT_MASTER, this); dist_manager->register_client_message(DCM_MONITOR, DCMT_MASTER, this); dist_manager->register_client_message(DCM_IDLELOG, DCMT_SIGNON, this); dist_manager->register_client_message(DCM_BREAKCONTROL, DCMT_PASSIVE, this); dist_manager->add_listener(this); idlelog_manager = new IdleLogManager(dist_manager->get_my_id(), this); idlelog_manager->init(); } #endif //! Initializes the statistics. void Core::init_statistics() { statistics = new Statistics(); statistics->init(this); } //! Loads the configuration of the monitor. void Core::load_monitor_config() { TRACE_ENTER("Core::load_monitor_config"); int noise; int activity; int idle; int sensitivity; assert(configurator != NULL); assert(monitor != NULL); if (!configurator->get_value(CoreConfig::CFG_KEY_MONITOR_NOISE, noise)) noise = 9000; if (!configurator->get_value(CoreConfig::CFG_KEY_MONITOR_ACTIVITY, activity)) activity = 1000; if (!configurator->get_value(CoreConfig::CFG_KEY_MONITOR_IDLE, idle)) idle = 5000; if (!configurator->get_value(CoreConfig::CFG_KEY_MONITOR_SENSITIVITY, sensitivity)) sensitivity = 3; // Pre 1.0 compatibility... if (noise < 50) { noise *= 1000; configurator->set_value(CoreConfig::CFG_KEY_MONITOR_NOISE, noise); } if (activity < 50) { activity *= 1000; configurator->set_value(CoreConfig::CFG_KEY_MONITOR_ACTIVITY, activity); } if (idle < 50) { idle *= 1000; configurator->set_value(CoreConfig::CFG_KEY_MONITOR_IDLE, idle); } TRACE_MSG("Monitor config = " << noise << " " << activity << " " << idle); monitor->set_parameters(noise, activity, idle, sensitivity); TRACE_EXIT(); } //! Notification that the configuration has changed. void Core::config_changed_notify(const string &key) { TRACE_ENTER_MSG("Core::config_changed_notify", key); string::size_type pos = key.find('/'); string path; if (pos != string::npos) { path = key.substr(0, pos); } if (path == CoreConfig::CFG_KEY_MONITOR) { load_monitor_config(); } if (key == CoreConfig::CFG_KEY_OPERATION_MODE) { int mode; if (!get_configurator()->get_value(CoreConfig::CFG_KEY_OPERATION_MODE, mode)) { mode = OPERATION_MODE_NORMAL; } if (mode < 0 || mode >= OPERATION_MODE_SIZEOF) { mode = OPERATION_MODE_NORMAL; } TRACE_MSG("Setting operation mode"); set_operation_mode_internal(OperationMode(mode), false); } if (key == CoreConfig::CFG_KEY_USAGE_MODE) { int mode; if (!get_configurator()->get_value(CoreConfig::CFG_KEY_USAGE_MODE, mode)) { mode = USAGE_MODE_NORMAL; } if (mode < 0 || mode >= USAGE_MODE_SIZEOF) { mode = USAGE_MODE_NORMAL; } TRACE_MSG("Setting usage mode"); set_usage_mode_internal(UsageMode(mode), false); } TRACE_EXIT(); } /********************************************************************************/ /**** TimeSource interface ******/ /********************************************************************************/ //! Retrieve the current time. time_t Core::get_time() const { return current_time; } /********************************************************************************/ /**** Core Interface ******/ /********************************************************************************/ //! Returns the specified timer. Timer * Core::get_timer(BreakId id) const { if (id >= 0 && id < BREAK_ID_SIZEOF) { return breaks[id].get_timer(); } else { return NULL; } } //! Returns the specified timer. Timer * Core::get_timer(string name) const { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (breaks[i].get_name() == name) { return breaks[i].get_timer(); } } return NULL; } //! Returns the configurator. Configurator * Core::get_configurator() const { return configurator; } //! Returns the activity monitor. IActivityMonitor * Core::get_activity_monitor() const { return monitor; } //! Returns the statistics. Statistics * Core::get_statistics() const { return statistics; } //! Returns the specified break controller. Break * Core::get_break(BreakId id) { assert(id >= 0 && id < BREAK_ID_SIZEOF); return &breaks[id]; } //! Returns the specified break controller. Break * Core::get_break(std::string name) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (breaks[i].get_name() == name) { return &breaks[i]; } } return NULL; } std::string Core::get_break_stage(BreakId id) { if (id >= 0 && id < BREAK_ID_SIZEOF) { return breaks[id].get_break_control()->get_current_stage(); } else { return ""; } } #ifdef HAVE_DISTRIBUTION //! Returns the distribution manager. DistributionManager * Core::get_distribution_manager() const { return dist_manager; } #endif //! Retrieves the operation mode. OperationMode Core::get_operation_mode() { return operation_mode; } //! Retrieves the regular operation mode. OperationMode Core::get_operation_mode_regular() { /* operation_mode_regular is the same as operation_mode unless there's an override in place, in which case operation_mode is the current override mode and operation_mode_regular is the mode that will be restored once all overrides are removed */ return operation_mode_regular; } //! Checks if operation_mode is an override. bool Core::is_operation_mode_an_override() { return !!operation_mode_overrides.size(); } //! Sets the operation mode. void Core::set_operation_mode(OperationMode mode) { set_operation_mode_internal(mode, true); } //! Temporarily overrides the operation mode. void Core::set_operation_mode_override(OperationMode mode, const std::string &id) { if (!id.size()) return; set_operation_mode_internal(mode, false, id); } //! Removes the overridden operation mode. void Core::remove_operation_mode_override(const std::string &id) { TRACE_ENTER("Core::remove_operation_mode_override"); if (!id.size() || !operation_mode_overrides.count(id)) return; operation_mode_overrides.erase(id); /* If there are other overrides still in the queue then pass in the first override in the map. set_operation_mode_internal() will then search the map for the most important override and set it as the active operation mode. */ if (operation_mode_overrides.size()) { set_operation_mode_internal(operation_mode_overrides.begin()->second, false, operation_mode_overrides.begin()->first); } else { /* if operation_mode_regular is the same as the active operation mode then just signal the mode has changed. During overrides the signal is not sent so it needs to be sent now. Because the modes are the same it would not be called by set_operation_mode_internal(). */ if (operation_mode_regular == operation_mode) { TRACE_MSG("Only calling core_event_operation_mode_changed()."); if (core_event_listener) core_event_listener->core_event_operation_mode_changed(operation_mode_regular); #ifdef HAVE_DBUS org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { iface->OperationModeChanged("/org/workrave/Workrave/Core", operation_mode_regular); } #endif } else set_operation_mode_internal(operation_mode_regular, false); } TRACE_EXIT(); } //! Set the operation mode. void Core::set_operation_mode_internal(OperationMode mode, bool persistent, const std::string &override_id /* default param: empty string */ ) { TRACE_ENTER_MSG("Core::set_operation_mode", (persistent ? "persistent" : "")); if (override_id.size()) { TRACE_MSG("override_id: " << override_id); } TRACE_MSG("Incoming/requested mode is " << (mode == OPERATION_MODE_NORMAL ? "OPERATION_MODE_NORMAL" : mode == OPERATION_MODE_SUSPENDED ? "OPERATION_MODE_SUSPENDED" : mode == OPERATION_MODE_QUIET ? "OPERATION_MODE_QUIET" : "???") << (override_id.size() ? " (override)" : " (regular)")); TRACE_MSG("Current mode is " << (mode == OPERATION_MODE_NORMAL ? "OPERATION_MODE_NORMAL" : mode == OPERATION_MODE_SUSPENDED ? "OPERATION_MODE_SUSPENDED" : mode == OPERATION_MODE_QUIET ? "OPERATION_MODE_QUIET" : "???") << (operation_mode_overrides.size() ? " (override)" : " (regular)")); if ((mode != OPERATION_MODE_NORMAL) && (mode != OPERATION_MODE_QUIET) && (mode != OPERATION_MODE_SUSPENDED)) { TRACE_RETURN("No change: incoming invalid"); return; } /* If the incoming operation mode is regular and the current operation mode is an override then save the incoming operation mode and return. */ if (!override_id.size() && operation_mode_overrides.size()) { operation_mode_regular = mode; int cm; if (persistent && (!get_configurator()->get_value(CoreConfig::CFG_KEY_OPERATION_MODE, cm) || (cm != mode))) get_configurator()->set_value(CoreConfig::CFG_KEY_OPERATION_MODE, mode); TRACE_RETURN("No change: current is an override type but incoming is regular"); return; } // If the incoming operation mode is tagged as an override if (override_id.size()) { // Add this override to the map operation_mode_overrides[override_id] = mode; /* Find the most important override. Override modes in order of importance: OPERATION_MODE_SUSPENDED, OPERATION_MODE_QUIET, OPERATION_MODE_NORMAL */ for (map::iterator i = operation_mode_overrides.begin(); (i != operation_mode_overrides.end()); ++i) { if (i->second == OPERATION_MODE_SUSPENDED) { mode = OPERATION_MODE_SUSPENDED; break; } if ((i->second == OPERATION_MODE_QUIET) && (mode == OPERATION_MODE_NORMAL)) { mode = OPERATION_MODE_QUIET; } } } if (operation_mode != mode) { TRACE_MSG("Changing active operation mode to " << (mode == OPERATION_MODE_NORMAL ? "OPERATION_MODE_NORMAL" : mode == OPERATION_MODE_SUSPENDED ? "OPERATION_MODE_SUSPENDED" : mode == OPERATION_MODE_QUIET ? "OPERATION_MODE_QUIET" : "???")); OperationMode previous_mode = operation_mode; operation_mode = mode; if (!operation_mode_overrides.size()) operation_mode_regular = operation_mode; if (operation_mode == OPERATION_MODE_SUSPENDED) { TRACE_MSG("Force idle"); force_idle(); monitor->suspend(); stop_all_breaks(); for (int i = 0; i < BREAK_ID_SIZEOF; ++i) { if (breaks[i].is_enabled()) { breaks[i].get_timer()->set_insensitive_mode(INSENSITIVE_MODE_IDLE_ALWAYS); } } } else if (previous_mode == OPERATION_MODE_SUSPENDED) { // stop_all_breaks again will reset insensitive mode (that is good) stop_all_breaks(); monitor->resume(); } if (operation_mode == OPERATION_MODE_QUIET) { stop_all_breaks(); } if (!operation_mode_overrides.size()) { /* The two functions in this block will trigger signals that can call back into this function. Only if there are no overrides in place will that reentrancy be ok from here. Otherwise the regular/user mode to restore would be overwritten. */ if (persistent) get_configurator()->set_value(CoreConfig::CFG_KEY_OPERATION_MODE, operation_mode); if (core_event_listener) core_event_listener->core_event_operation_mode_changed(operation_mode); #ifdef HAVE_DBUS org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { iface->OperationModeChanged("/org/workrave/Workrave/Core", operation_mode); } #endif } } TRACE_EXIT(); } //! Retrieves the usage mode. UsageMode Core::get_usage_mode() { return usage_mode; } //! Sets the usage mode. void Core::set_usage_mode(UsageMode mode) { set_usage_mode_internal(mode, true); } //! Sets the usage mode. void Core::set_usage_mode_internal(UsageMode mode, bool persistent) { if (usage_mode != mode) { usage_mode = mode; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { breaks[i].set_usage_mode(mode); } if (persistent) { get_configurator()->set_value(CoreConfig::CFG_KEY_USAGE_MODE, mode); } if (core_event_listener != NULL) { core_event_listener->core_event_usage_mode_changed(mode); #ifdef HAVE_DBUS org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { iface->UsageModeChanged("/org/workrave/Workrave/Core", mode); } #endif } } } //! Sets the listener for core events. void Core::set_core_events_listener(ICoreEventListener *l) { core_event_listener = l; } //! Forces the start of the specified break. void Core::force_break(BreakId id, BreakHint break_hint) { do_force_break(id, break_hint); #ifdef HAVE_DISTRIBUTION send_break_control_message_bool_param(id, BCM_START_BREAK, break_hint); #endif } //! Forces the start of the specified break. void Core::do_force_break(BreakId id, BreakHint break_hint) { TRACE_ENTER_MSG("Core::do_force_break", id); BreakControl *microbreak_control = breaks[BREAK_ID_MICRO_BREAK].get_break_control(); BreakControl *breaker = breaks[id].get_break_control(); if (id == BREAK_ID_REST_BREAK && (microbreak_control->get_break_state() == BreakControl::BREAK_ACTIVE)) { microbreak_control->stop_break(false); resume_break = BREAK_ID_MICRO_BREAK; TRACE_MSG("Resuming Micro break"); } breaker->force_start_break(break_hint); TRACE_EXIT(); } //! Announces a change in time. void Core::time_changed() { TRACE_ENTER("Core::time_changed"); // In case out timezone changed.. tzset(); // A change of system time idle handled by process_timewarp. // This is used to handle a change in timezone on windows. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { breaks[i].get_timer()->shift_time(0); } TRACE_EXIT(); } //! Announces a powersave state. void Core::set_powersave(bool down) { TRACE_ENTER_MSG("Core::set_powersave", down); TRACE_MSG(powersave << " " << powersave_resume_time << " " << operation_mode); if (down) { if (!powersave) { // Computer is going down set_operation_mode_override(OPERATION_MODE_SUSPENDED, "powersave"); powersave_resume_time = 0; powersave = true; } save_state(); statistics->update(); } else { // Computer is coming back // leave powersave true until the timewarp is detected // or until some time has passed if (powersave_resume_time == 0) { powersave_resume_time = current_time ? current_time : 1; TRACE_MSG("set resume time " << powersave_resume_time); } TRACE_MSG("resume time " << powersave_resume_time); remove_operation_mode_override("powersave"); } TRACE_EXIT(); } //! Sets the insist policy. /*! * The insist policy determines what to do when the user is active while * taking a break. */ void Core::set_insist_policy(ICore::InsistPolicy p) { TRACE_ENTER_MSG("Core::set_insist_policy", p); if (active_insist_policy != ICore::INSIST_POLICY_INVALID && insist_policy != p) { TRACE_MSG("refreeze " << active_insist_policy); defrost(); insist_policy = p; freeze(); } else { insist_policy = p; } TRACE_EXIT(); } //! Gets the insist policy. ICore::InsistPolicy Core::get_insist_policy() const { return insist_policy; } // ! Forces all monitors to be idle. void Core::force_idle() { TRACE_ENTER("Core::force_idle"); force_idle(BREAK_ID_NONE); TRACE_EXIT(); } void Core::force_idle(BreakId break_id) { TRACE_ENTER("Core::force_idle_for_break"); monitor->force_idle(); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (break_id == BREAK_ID_NONE || i == break_id) { IActivityMonitor *am = breaks[i].get_timer()->get_activity_monitor(); if (am != NULL) { am->force_idle(); } } breaks[i].get_timer()->force_idle(); } TRACE_EXIT(); } /********************************************************************************/ /**** Break Response ******/ /********************************************************************************/ //! User postpones the specified break. void Core::postpone_break(BreakId break_id) { do_postpone_break(break_id); #ifdef HAVE_DISTRIBUTION send_break_control_message(break_id, BCM_POSTPONE); #endif } //! User skips the specified break. void Core::skip_break(BreakId break_id) { do_skip_break(break_id); #ifdef HAVE_DISTRIBUTION send_break_control_message(break_id, BCM_SKIP); #endif } //! User stops the prelude. void Core::stop_prelude(BreakId break_id) { TRACE_ENTER_MSG("Core::stop_prelude", break_id); do_stop_prelude(break_id); #ifdef HAVE_DISTRIBUTION send_break_control_message(break_id, BCM_ABORT_PRELUDE); #endif TRACE_EXIT(); } //! User postpones the specified break. void Core::do_postpone_break(BreakId break_id) { if (break_id >= 0 && break_id < BREAK_ID_SIZEOF) { BreakControl *bc = breaks[break_id].get_break_control(); bc->postpone_break(); } } //! User skips the specified break. void Core::do_skip_break(BreakId break_id) { if (break_id >= 0 && break_id < BREAK_ID_SIZEOF) { BreakControl *bc = breaks[break_id].get_break_control(); bc->skip_break(); } } //! void Core::do_stop_prelude(BreakId break_id) { TRACE_ENTER_MSG("Core::do_stop_prelude", break_id); if (break_id >= 0 && break_id < BREAK_ID_SIZEOF) { BreakControl *bc = breaks[break_id].get_break_control(); bc->stop_prelude(); } TRACE_EXIT(); } /********************************************************************************/ /**** Break handling ******/ /********************************************************************************/ //! Periodic heartbeat. void Core::heartbeat() { TRACE_ENTER("Core::heartbeat"); assert(application != NULL); // Set current time. current_time = time(NULL); // Performs timewarp checking. bool warped = process_timewarp(); // Process configuration configurator->heartbeat(); // Perform distribution processing. process_distribution(); if (!warped) { // Perform state computation. process_state(); } // Perform timer processing. process_timers(); // Send heartbeats to other components. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakControl *bc = breaks[i].get_break_control(); if (bc != NULL && bc->need_heartbeat()) { bc->heartbeat(); } } // Make state persistent. if (current_time % SAVESTATETIME == 0) { statistics->update(); save_state(); } // Done. last_process_time = current_time; TRACE_EXIT(); } //! Performs all distribution processing. void Core::process_distribution() { bool previous_master_mode = master_node; // Default master_node = true; #ifdef HAVE_DISTRIBUTION // Retrieve State. ActivityState state = monitor->get_current_state(); if (dist_manager != NULL) { dist_manager->heartbeart(); dist_manager->set_lock_master(state == ACTIVITY_ACTIVE); master_node = dist_manager->is_master(); if (!master_node && state == ACTIVITY_ACTIVE) { master_node = dist_manager->claim(); } } if ((previous_master_mode != master_node) || (master_node && local_state != state)) { PacketBuffer buffer; buffer.create(); buffer.pack_ushort(1); buffer.pack_ushort(state); dist_manager->broadcast_client_message(DCM_MONITOR, buffer); buffer.clear(); bool ret = request_timer_state(buffer); if (ret) { dist_manager->broadcast_client_message(DCM_TIMERS, buffer); } } #endif } //! Computes the current state. void Core::process_state() { // Default local_state = monitor->get_current_state(); map::iterator i = external_activity.begin(); while (i != external_activity.end()) { map::iterator next = i; next++; if (i->second >= current_time) { local_state = ACTIVITY_ACTIVE; } else { external_activity.erase(i); } i = next; } monitor_state = local_state; #if defined(HAVE_DISTRIBUTION) && !defined(NDEBUG) if (fake_monitor != NULL) { monitor_state = fake_monitor->get_current_state(); } #endif #ifdef HAVE_DISTRIBUTION if (!master_node) { if (active_insist_policy == INSIST_POLICY_IGNORE) { // Our own monitor is suspended, also ignore // activity from remote parties. monitor_state = ACTIVITY_IDLE; } else { monitor_state = remote_state; } } // Update our idle history. idlelog_manager->update_all_idlelogs(dist_manager->get_master_id(), monitor_state); #endif } void Core::report_external_activity(std::string who, bool act) { TRACE_ENTER_MSG("Core::report_external_activity", who << " " << act); if (act) { external_activity[who] = current_time + 10; } else { external_activity.erase(who); } TRACE_EXIT(); } void Core::is_timer_running(BreakId id, bool &value) { Timer *timer = get_timer(id); value = timer->get_state() == STATE_RUNNING; } void Core::get_timer_idle(BreakId id, int *value) { Timer *timer = get_timer(id); *value = (int)timer->get_elapsed_idle_time(); } void Core::get_timer_elapsed(BreakId id, int *value) { Timer *timer = get_timer(id); *value = (int)timer->get_elapsed_time(); } void Core::get_timer_remaining(BreakId id, int *value) { Timer *timer = get_timer(id); *value = -1; if (timer->is_limit_enabled()) { int remaining = timer->get_limit() - timer->get_elapsed_time(); *value = remaining >= 0 ? remaining : 0; } } void Core::get_timer_overdue(BreakId id, int *value) { Timer *timer = get_timer(id); *value = (int)timer->get_total_overdue_time(); } //! Processes all timers. void Core::process_timers() { TRACE_ENTER("Core::process_timers"); TimerInfo infos[BREAK_ID_SIZEOF]; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *timer = breaks[i].get_timer(); infos[i].enabled = breaks[i].is_enabled(); if (infos[i].enabled) { timer->enable(); if (i == BREAK_ID_DAILY_LIMIT) { timer->set_limit_enabled(timer->get_limit() > 0); } } else { if (i != BREAK_ID_DAILY_LIMIT) { timer->disable(); } else { timer->set_limit_enabled(false); } } // First process only timer that do not have their // own activity monitor. if (!(timer->has_activity_monitor())) { timer->process(monitor_state, infos[i]); } } // And process timer with activity monitor. for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (breaks[i].get_timer()->has_activity_monitor()) { breaks[i].get_timer()->process(monitor_state, infos[i]); } } // Process all timer events. for (int i = BREAK_ID_SIZEOF - 1; i >= 0; i--) { TimerInfo &info = infos[i]; if (breaks[i].is_enabled()) { timer_action((BreakId)i, info); } if (i == BREAK_ID_DAILY_LIMIT && (info.event == TIMER_EVENT_NATURAL_RESET || info.event == TIMER_EVENT_RESET)) { statistics->set_counter(Statistics::STATS_VALUE_TOTAL_ACTIVE_TIME, (int)info.elapsed_time); statistics->start_new_day(); daily_reset(); } } TRACE_EXIT(); } #if defined(PLATFORM_OS_WINDOWS) //! Process a possible timewarp on Win32 bool Core::process_timewarp() { bool ret = false; TRACE_ENTER("Core::process_timewarp"); if (last_process_time != 0) { time_t gap = current_time - 1 - last_process_time; if (abs((int)gap) > 5) { TRACE_MSG("gap " << gap << " " << powersave << " " << operation_mode << " " << powersave_resume_time << " " << current_time); if (!powersave) { TRACE_MSG("Time warp of " << gap << " seconds. Correcting"); force_idle(); monitor->shift_time((int)gap); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { breaks[i].get_timer()->shift_time((int)gap); } monitor_state = ACTIVITY_IDLE; ret = true; } else { TRACE_MSG("Time warp of " << gap << " seconds because of powersave"); // In case the windows message was lost. some people reported that // workrave never restarted the timers... remove_operation_mode_override("powersave"); } } if (powersave && powersave_resume_time != 0 && current_time > powersave_resume_time + 30) { TRACE_MSG("End of time warp after powersave"); powersave = false; powersave_resume_time = 0; } } TRACE_EXIT(); return ret; } #else //! Process a possible timewarp On Non-Windows bool Core::process_timewarp() { bool ret = false; TRACE_ENTER("Core::process_timewarp"); if (last_process_time != 0) { int gap = current_time - 1 - last_process_time; if (gap >= 30) { TRACE_MSG("Time warp of " << gap << " seconds. Powersafe"); force_idle(); int save_current_time = current_time; current_time = last_process_time + 1; monitor_state = ACTIVITY_IDLE; process_timers(); current_time = save_current_time; ret = true; } } TRACE_EXIT(); return ret; } #endif //! Notification of a timer action. /*! * \param timerId ID of the timer that caused the action. * \param action action that is performed by the timer. */ void Core::timer_action(BreakId id, TimerInfo info) { // No breaks when mode is quiet, if (operation_mode == OPERATION_MODE_QUIET && info.event == TIMER_EVENT_LIMIT_REACHED) { return; } BreakControl *breaker = breaks[id].get_break_control(); Timer *timer = breaks[id].get_timer(); assert(breaker != NULL && timer != NULL); switch (info.event) { case TIMER_EVENT_LIMIT_REACHED: if (breaker->get_break_state() == BreakControl::BREAK_INACTIVE) { start_break(id); } break; case TIMER_EVENT_NATURAL_RESET: statistics->increment_break_counter(id, Statistics::STATS_BREAKVALUE_NATURAL_TAKEN); // FALLTHROUGH case TIMER_EVENT_RESET: if (breaker->get_break_state() == BreakControl::BREAK_ACTIVE) { breaker->stop_break(); } break; default: break; } } //! starts the specified break. /*! * \param break_id ID of the timer that caused the break. */ void Core::start_break(BreakId break_id, BreakId resume_this_break) { // Don't show MB when RB is active, RB when DL is active. for (int bi = break_id; bi <= BREAK_ID_DAILY_LIMIT; bi++) { if (breaks[bi].get_break_control()->get_break_state() == BreakControl::BREAK_ACTIVE) { return; } } // Advance restbreak if it follows within 30s after the end of a microbreak if (break_id == BREAK_ID_REST_BREAK && resume_this_break == BREAK_ID_NONE) { breaks[BREAK_ID_REST_BREAK].override(BREAK_ID_REST_BREAK); } if (break_id == BREAK_ID_MICRO_BREAK && breaks[BREAK_ID_REST_BREAK].is_enabled()) { Timer *rb_timer = breaks[BREAK_ID_REST_BREAK].get_timer(); assert(rb_timer != NULL); bool activity_sensitive = breaks[BREAK_ID_REST_BREAK].get_timer_activity_sensitive(); // Only advance when // 0. It is activity sensitive // 1. we have a next limit reached time. if (activity_sensitive && rb_timer->get_next_limit_time() > 0) { Timer *timer = breaks[break_id].get_timer(); time_t duration = timer->get_auto_reset(); time_t now = get_time(); if (now + duration + 30 >= rb_timer->get_next_limit_time()) { breaks[BREAK_ID_REST_BREAK].override(BREAK_ID_MICRO_BREAK); start_break(BREAK_ID_REST_BREAK, BREAK_ID_MICRO_BREAK); // Snooze timer before the limit was reached. Just to make sure // that it doesn't reach its limit again when elapsed == limit rb_timer->snooze_timer(); return; } } } // Stop microbreak when a restbreak starts. should not happened. // restbreak should be advanced. for (int bi = BREAK_ID_MICRO_BREAK; bi < break_id; bi++) { if (breaks[bi].get_break_control()->get_break_state() == BreakControl::BREAK_ACTIVE) { breaks[bi].get_break_control()->stop_break(); } } // If break 'break_id' ends, and break 'resume_this_break' is still // active, resume it... resume_break = resume_this_break; BreakControl *breaker = breaks[break_id].get_break_control(); breaker->start_break(); } //! Sets the freeze state of all breaks. void Core::set_freeze_all_breaks(bool freeze) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *t = breaks[i].get_timer(); assert(t != NULL); if (!t->has_activity_monitor()) { t->freeze_timer(freeze); } } } void Core::set_insensitive_mode_all_breaks(InsensitiveMode mode) { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *t = breaks[i].get_timer(); assert(t != NULL); t->set_insensitive_mode(mode); } } //! Stops all breaks. void Core::stop_all_breaks() { for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakControl *bc = breaks[i].get_break_control(); assert(bc != NULL); bc->stop_break(); } } /********************************************************************************/ /**** Misc ******/ /********************************************************************************/ //! Performs a reset when the daily limit is reached. void Core::daily_reset() { TRACE_ENTER("Core::daily_reset"); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *t = breaks[i].get_timer(); assert(t != NULL); time_t overdue = t->get_total_overdue_time(); statistics->set_break_counter(((BreakId)i), Statistics::STATS_BREAKVALUE_TOTAL_OVERDUE, (int)overdue); t->daily_reset_timer(); } #ifdef HAVE_DISTRIBUTION idlelog_manager->reset(); #endif save_state(); TRACE_EXIT(); } //! Saves the current state. void Core::save_state() const { stringstream ss; ss << Util::get_home_directory(); ss << "state" << ends; ofstream stateFile(ss.str().c_str()); stateFile << "WorkRaveState 3" << endl << get_time() << endl; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { string stateStr = breaks[i].get_timer()->serialize_state(); stateFile << stateStr << endl; } stateFile.close(); } //! Loads miscellaneous void Core::load_misc() { configurator->rename_key("gui/operation-mode", CoreConfig::CFG_KEY_OPERATION_MODE); configurator->add_listener(CoreConfig::CFG_KEY_OPERATION_MODE, this); configurator->add_listener(CoreConfig::CFG_KEY_USAGE_MODE, this); int mode; if (!get_configurator()->get_value(CoreConfig::CFG_KEY_OPERATION_MODE, mode)) { mode = OPERATION_MODE_NORMAL; } set_operation_mode(OperationMode(mode)); if (!get_configurator()->get_value(CoreConfig::CFG_KEY_USAGE_MODE, mode)) { mode = USAGE_MODE_NORMAL; } set_usage_mode(UsageMode(mode)); } //! Loads the current state. void Core::load_state() { stringstream ss; ss << Util::get_home_directory(); ss << "state" << ends; ifstream stateFile(ss.str().c_str()); int version = 0; bool ok = stateFile.good(); if (ok) { string tag; stateFile >> tag; ok = (tag == WORKRAVESTATE); } if (ok) { stateFile >> version; ok = (version >= 1 && version <= 3); } if (ok) { time_t saveTime; stateFile >> saveTime; } while (ok && !stateFile.eof()) { string id; stateFile >> id; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { if (breaks[i].get_timer()->get_id() == id) { string state; getline(stateFile, state); breaks[i].get_timer()->deserialize_state(state, version); break; } } } } //! Post an event. void Core::post_event(CoreEvent event) { if (core_event_listener != NULL) { core_event_listener->core_event_notify(event); } } //! Execute the insist policy. void Core::freeze() { TRACE_ENTER_MSG("Core::freeze", insist_policy); ICore::InsistPolicy policy = insist_policy; switch (policy) { case ICore::INSIST_POLICY_IGNORE: { // Ignore all activity during break by suspending the activity monitor. monitor->suspend(); } break; case ICore::INSIST_POLICY_HALT: { // Halt timer when the user is active. set_freeze_all_breaks(true); } break; case ICore::INSIST_POLICY_RESET: // reset the timer when the user becomes active. // default. break; default: break; } active_insist_policy = policy; TRACE_EXIT(); } //! Undo the insist policy. void Core::defrost() { TRACE_ENTER_MSG("Core::defrost", active_insist_policy); switch (active_insist_policy) { case ICore::INSIST_POLICY_IGNORE: { // Resumes the activity monitor, if not suspended. if (operation_mode != OPERATION_MODE_SUSPENDED) { monitor->resume(); } } break; case ICore::INSIST_POLICY_HALT: { // Desfrost timers. set_freeze_all_breaks(false); } break; default: break; } active_insist_policy = ICore::INSIST_POLICY_INVALID; TRACE_EXIT(); } //! Is the user currently active? bool Core::is_user_active() const { return monitor_state == ACTIVITY_ACTIVE; } /********************************************************************************/ /**** Distribution ******/ /********************************************************************************/ #ifdef HAVE_DISTRIBUTION //! The distribution manager requests a client message. bool Core::request_client_message(DistributionClientMessageID id, PacketBuffer &buffer) { bool ret = false; switch (id) { case DCM_BREAKS: ret = request_break_state(buffer); break; case DCM_TIMERS: ret = request_timer_state(buffer); break; case DCM_CONFIG: break; case DCM_MONITOR: ret = true; break; case DCM_BREAKCONTROL: ret = true; break; case DCM_IDLELOG: idlelog_manager->get_idlelog(buffer); ret = true; break; default: break; } return ret; } //! The distribution manager delivers a client message. bool Core::client_message(DistributionClientMessageID id, bool master, const char *client_id, PacketBuffer &buffer) { bool ret = false; (void)client_id; switch (id) { case DCM_BREAKS: ret = set_break_state(master, buffer); break; case DCM_TIMERS: ret = set_timer_state(buffer); break; case DCM_MONITOR: ret = set_monitor_state(master, buffer); break; case DCM_BREAKCONTROL: ret = set_break_control(buffer); break; case DCM_CONFIG: break; case DCM_IDLELOG: idlelog_manager->set_idlelog(buffer); compute_timers(); ret = true; break; default: break; } return ret; } bool Core::request_break_state(PacketBuffer &buffer) { buffer.pack_ushort(BREAK_ID_SIZEOF); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakControl *bi = breaks[i].get_break_control(); if (bi != NULL) { BreakControl::BreakStateData state_data; bi->get_state_data(state_data); int pos = buffer.bytes_written(); buffer.pack_ushort(0); buffer.pack_byte((guint8)state_data.forced_break); buffer.pack_byte((guint8)state_data.reached_max_prelude); buffer.pack_ulong((guint32)state_data.prelude_count); buffer.pack_ulong((guint32)state_data.break_stage); buffer.pack_ulong((guint32)state_data.prelude_time); buffer.poke_ushort(pos, buffer.bytes_written() - pos); } else { buffer.pack_ushort(0); } } return true; } bool Core::set_break_state(bool master, PacketBuffer &buffer) { int num_breaks = buffer.unpack_ushort(); if (num_breaks > BREAK_ID_SIZEOF) { num_breaks = BREAK_ID_SIZEOF; } for (int i = 0; i < num_breaks; i++) { BreakControl *bi = breaks[i].get_break_control(); BreakControl::BreakStateData state_data; int data_size = buffer.unpack_ushort(); if (data_size > 0) { state_data.forced_break = buffer.unpack_byte(); state_data.reached_max_prelude = buffer.unpack_byte(); state_data.prelude_count = buffer.unpack_ulong(); state_data.break_stage = buffer.unpack_ulong(); state_data.prelude_time = buffer.unpack_ulong(); bi->set_state_data(master, state_data); } } return true; } bool Core::request_timer_state(PacketBuffer &buffer) const { TRACE_ENTER("Core::get_timer_state"); buffer.pack_ushort(BREAK_ID_SIZEOF); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *t = breaks[i].get_timer(); buffer.pack_string(t->get_id().c_str()); Timer::TimerStateData state_data; t->get_state_data(state_data); int pos = buffer.bytes_written(); buffer.pack_ushort(0); buffer.pack_ulong((guint32)state_data.current_time); buffer.pack_ulong((guint32)state_data.elapsed_time); buffer.pack_ulong((guint32)state_data.elapsed_idle_time); buffer.pack_ulong((guint32)state_data.last_pred_reset_time); buffer.pack_ulong((guint32)state_data.total_overdue_time); buffer.pack_ulong((guint32)state_data.last_limit_time); buffer.pack_ulong((guint32)state_data.last_limit_elapsed); buffer.pack_ushort((guint16)state_data.snooze_inhibited); buffer.poke_ushort(pos, buffer.bytes_written() - pos); } TRACE_EXIT(); return true; } bool Core::set_timer_state(PacketBuffer &buffer) { TRACE_ENTER("Core::set_timer_state"); int num_breaks = buffer.unpack_ushort(); TRACE_MSG("numtimer = " << num_breaks); for (int i = 0; i < num_breaks; i++) { gchar *id = buffer.unpack_string(); TRACE_MSG("id = " << id); if (id == NULL) { TRACE_EXIT(); return false; } Timer *t = (Timer *)get_timer(id); Timer::TimerStateData state_data; buffer.unpack_ushort(); state_data.current_time = buffer.unpack_ulong(); state_data.elapsed_time = buffer.unpack_ulong(); state_data.elapsed_idle_time = buffer.unpack_ulong(); state_data.last_pred_reset_time = buffer.unpack_ulong(); state_data.total_overdue_time = buffer.unpack_ulong(); state_data.last_limit_time = buffer.unpack_ulong(); state_data.last_limit_elapsed = buffer.unpack_ulong(); state_data.snooze_inhibited = buffer.unpack_ushort(); TRACE_MSG("state = " << state_data.current_time << " " << state_data.elapsed_time << " " << state_data.elapsed_idle_time << " " << state_data.last_pred_reset_time << " " << state_data.total_overdue_time); if (t != NULL) { t->set_state_data(state_data); } g_free(id); } TRACE_EXIT(); return true; } bool Core::set_monitor_state(bool master, PacketBuffer &buffer) { (void)master; TRACE_ENTER_MSG("Core::set_monitor_state", master << " " << master_node); if (!master_node) { buffer.unpack_ushort(); remote_state = (ActivityState)buffer.unpack_ushort(); TRACE_MSG(remote_state); } TRACE_EXIT(); return true; } //! A remote client has signed on. void Core::signon_remote_client(string client_id) { idlelog_manager->signon_remote_client(client_id); if (master_node) { PacketBuffer buffer; buffer.create(); ActivityState state = monitor->get_current_state(); buffer.pack_ushort(1); buffer.pack_ushort(state); dist_manager->broadcast_client_message(DCM_MONITOR, buffer); buffer.clear(); } } //! A remote client has signed off. void Core::signoff_remote_client(string client_id) { TRACE_ENTER_MSG("Core::signoff_remote_client", client_id); TRACE_MSG("Master = " << dist_manager->get_master_id()); if (client_id == dist_manager->get_master_id()) { TRACE_MSG("Idle"); remote_state = ACTIVITY_IDLE; } idlelog_manager->signoff_remote_client(client_id); TRACE_EXIT(); } void Core::compute_timers() { TRACE_ENTER("IdleLogManager:compute_timers"); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { int autoreset = breaks[i].get_timer()->get_auto_reset(); int idle = idlelog_manager->compute_idle_time(); if (autoreset != 0) { int active_time = idlelog_manager->compute_active_time(autoreset); if (idle > autoreset) { idle = autoreset; } breaks[i].get_timer()->set_values(active_time, idle); } else { int active_time = idlelog_manager->compute_total_active_time(); breaks[i].get_timer()->set_values(active_time, idle); } } TRACE_EXIT(); } //! Sends a break control message to all workrave clients. void Core::send_break_control_message(BreakId break_id, BreakControlMessage message) { PacketBuffer buffer; buffer.create(); buffer.pack_ushort(4); buffer.pack_ushort(break_id); buffer.pack_ushort(message); dist_manager->broadcast_client_message(DCM_BREAKCONTROL, buffer); } //! Sends a break control message with boolean parameter to all workrave clients. void Core::send_break_control_message_bool_param(BreakId break_id, BreakControlMessage message, bool param) { PacketBuffer buffer; buffer.create(); buffer.pack_ushort(5); buffer.pack_ushort(break_id); buffer.pack_ushort(message); buffer.pack_byte(param); dist_manager->broadcast_client_message(DCM_BREAKCONTROL, buffer); } bool Core::set_break_control(PacketBuffer &buffer) { int data_size = buffer.unpack_ushort(); if (data_size >= 4) { BreakId break_id = (BreakId)buffer.unpack_ushort(); BreakControlMessage message = (BreakControlMessage)buffer.unpack_ushort(); switch (message) { case BCM_POSTPONE: do_postpone_break(break_id); break; case BCM_SKIP: do_skip_break(break_id); break; case BCM_ABORT_PRELUDE: do_stop_prelude(break_id); break; case BCM_START_BREAK: if (data_size >= 6) { // Only for post 1.9.1 workrave... int break_hint = (int)buffer.unpack_ushort(); do_force_break(break_id, (BreakHint)break_hint); } else if (data_size >= 5) { // Only for post 1.6.2 workrave... bool initiated_by_user = (bool)buffer.unpack_byte(); do_force_break(break_id, initiated_by_user ? BREAK_HINT_USER_INITIATED : BREAK_HINT_NONE); } else { do_force_break(break_id, BREAK_HINT_USER_INITIATED); } break; } } return true; } #endif // HAVE_DISTRIBUTION namespace workrave { std::string operator%(const string &key, BreakId id) { IBreak *b = Core::get_instance()->get_break(id); string str = key; string::size_type pos = 0; string name = b->get_name(); while ((pos = str.find("%b", pos)) != string::npos) { str.replace(pos, 2, name); pos++; } return str; } } // namespace workrave workrave-1.10.50/backend/src/win32/0000755000000000000000000000000014221624436016640 5ustar00rootroot00000000000000workrave-1.10.50/backend/src/win32/ghmac.c0000644000175100001710000002442614221624106016774 0ustar00gdm00000000000000/* ghmac.h - data hashing functions * * Copyright (C) 2011 Collabora Ltd. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, see . * * Author: Stef Walter * * Modified for Workrave (and glib 2.28) */ #include #if !GLIB_CHECK_VERSION(2, 30, 0) # include "config.h" # include # include "ghmac.h" # include "glib/galloca.h" # include "glib/gatomic.h" # include "glib/gslice.h" # include "glib/gmem.h" # include "glib/gstrfuncs.h" # include "glib/gtestutils.h" # include "glib/gtypes.h" /** * SECTION:hmac * @title: Secure HMAC Digests * @short_description: computes the HMAC for data * * HMACs should be used when producing a cookie or hash based on data * and a key. Simple mechanisms for using SHA1 and other algorithms to * digest a key and data together are vulnerable to various security * issues. * [HMAC](http://en.wikipedia.org/wiki/HMAC) * uses algorithms like SHA1 in a secure way to produce a digest of a * key and data. * * Both the key and data are arbitrary byte arrays of bytes or characters. * * Support for HMAC Digests has been added in GLib 2.30, and support for SHA-512 * in GLib 2.42. */ struct _GHmac { int ref_count; GChecksumType digest_type; GChecksum *digesti; GChecksum *digesto; }; /** * g_hmac_new: * @digest_type: the desired type of digest * @key: (array length=key_len): the key for the HMAC * @key_len: the length of the keys * * Creates a new #GHmac, using the digest algorithm @digest_type. * If the @digest_type is not known, %NULL is returned. * A #GHmac can be used to compute the HMAC of a key and an * arbitrary binary blob, using different hashing algorithms. * * A #GHmac works by feeding a binary blob through g_hmac_update() * until the data is complete; the digest can then be extracted * using g_hmac_get_string(), which will return the checksum as a * hexadecimal string; or g_hmac_get_digest(), which will return a * array of raw bytes. Once either g_hmac_get_string() or * g_hmac_get_digest() have been called on a #GHmac, the HMAC * will be closed and it won't be possible to call g_hmac_update() * on it anymore. * * Support for digests of type %G_CHECKSUM_SHA512 has been added in GLib 2.42. * * Returns: the newly created #GHmac, or %NULL. * Use g_hmac_unref() to free the memory allocated by it. * * Since: 2.30 */ GHmac * g_hmac_new(GChecksumType digest_type, const guchar *key, gsize key_len) { GChecksum *checksum; GHmac *hmac; guchar *buffer; guchar *pad; gsize i, len; gsize block_size; checksum = g_checksum_new(digest_type); g_return_val_if_fail(checksum != NULL, NULL); switch (digest_type) { case G_CHECKSUM_MD5: case G_CHECKSUM_SHA1: block_size = 64; /* RFC 2104 */ break; case G_CHECKSUM_SHA256: block_size = 64; /* RFC 4868 */ break; default: g_return_val_if_reached(NULL); } hmac = g_slice_new0(GHmac); hmac->ref_count = 1; hmac->digest_type = digest_type; hmac->digesti = checksum; hmac->digesto = g_checksum_new(digest_type); buffer = (guchar *)g_alloca(block_size); pad = (guchar *)g_alloca(block_size); memset(buffer, 0, block_size); /* If the key is too long, hash it */ if (key_len > block_size) { len = block_size; g_checksum_update(hmac->digesti, key, key_len); g_checksum_get_digest(hmac->digesti, buffer, &len); g_checksum_reset(hmac->digesti); } /* Otherwise pad it with zeros */ else { memcpy(buffer, key, key_len); } /* First pad */ for (i = 0; i < block_size; i++) pad[i] = 0x36 ^ buffer[i]; /* ipad value */ g_checksum_update(hmac->digesti, pad, block_size); /* Second pad */ for (i = 0; i < block_size; i++) pad[i] = 0x5c ^ buffer[i]; /* opad value */ g_checksum_update(hmac->digesto, pad, block_size); return hmac; } /** * g_hmac_copy: * @hmac: the #GHmac to copy * * Copies a #GHmac. If @hmac has been closed, by calling * g_hmac_get_string() or g_hmac_get_digest(), the copied * HMAC will be closed as well. * * Returns: the copy of the passed #GHmac. Use g_hmac_unref() * when finished using it. * * Since: 2.30 */ GHmac * g_hmac_copy(const GHmac *hmac) { GHmac *copy; g_return_val_if_fail(hmac != NULL, NULL); copy = g_slice_new(GHmac); copy->ref_count = 1; copy->digest_type = hmac->digest_type; copy->digesti = g_checksum_copy(hmac->digesti); copy->digesto = g_checksum_copy(hmac->digesto); return copy; } /** * g_hmac_ref: * @hmac: a valid #GHmac * * Atomically increments the reference count of @hmac by one. * * This function is MT-safe and may be called from any thread. * * Returns: the passed in #GHmac. * * Since: 2.30 **/ GHmac * g_hmac_ref(GHmac *hmac) { g_return_val_if_fail(hmac != NULL, NULL); g_atomic_int_inc(&hmac->ref_count); return hmac; } /** * g_hmac_unref: * @hmac: a #GHmac * * Atomically decrements the reference count of @hmac by one. * * If the reference count drops to 0, all keys and values will be * destroyed, and all memory allocated by the hash table is released. * This function is MT-safe and may be called from any thread. * Frees the memory allocated for @hmac. * * Since: 2.30 */ void g_hmac_unref(GHmac *hmac) { g_return_if_fail(hmac != NULL); if (g_atomic_int_dec_and_test(&hmac->ref_count)) { g_checksum_free(hmac->digesti); g_checksum_free(hmac->digesto); g_slice_free(GHmac, hmac); } } /** * g_hmac_update: * @hmac: a #GHmac * @data: (array length=length): buffer used to compute the checksum * @length: size of the buffer, or -1 if it is a nul-terminated string * * Feeds @data into an existing #GHmac. * * The HMAC must still be open, that is g_hmac_get_string() or * g_hmac_get_digest() must not have been called on @hmac. * * Since: 2.30 */ void g_hmac_update(GHmac *hmac, const guchar *data, gssize length) { g_return_if_fail(hmac != NULL); g_return_if_fail(length == 0 || data != NULL); g_checksum_update(hmac->digesti, data, length); } /** * g_hmac_get_string: * @hmac: a #GHmac * * Gets the HMAC as an hexadecimal string. * * Once this function has been called the #GHmac can no longer be * updated with g_hmac_update(). * * The hexadecimal characters will be lower case. * * Returns: the hexadecimal representation of the HMAC. The * returned string is owned by the HMAC and should not be modified * or freed. * * Since: 2.30 */ const gchar * g_hmac_get_string(GHmac *hmac) { guint8 *buffer; gsize digest_len; g_return_val_if_fail(hmac != NULL, NULL); digest_len = g_checksum_type_get_length(hmac->digest_type); buffer = (guint8 *)g_alloca(digest_len); /* This is only called for its side-effect of updating hmac->digesto... */ g_hmac_get_digest(hmac, buffer, &digest_len); /* ... because we get the string from the checksum rather than * stringifying buffer ourselves */ return g_checksum_get_string(hmac->digesto); } /** * g_hmac_get_digest: * @hmac: a #GHmac * @buffer: output buffer * @digest_len: an inout parameter. The caller initializes it to the * size of @buffer. After the call it contains the length of the digest * * Gets the digest from @checksum as a raw binary array and places it * into @buffer. The size of the digest depends on the type of checksum. * * Once this function has been called, the #GHmac is closed and can * no longer be updated with g_checksum_update(). * * Since: 2.30 */ void g_hmac_get_digest(GHmac *hmac, guint8 *buffer, gsize *digest_len) { gsize len; g_return_if_fail(hmac != NULL); len = g_checksum_type_get_length(hmac->digest_type); g_return_if_fail(*digest_len >= len); /* Use the same buffer, because we can :) */ g_checksum_get_digest(hmac->digesti, buffer, &len); g_checksum_update(hmac->digesto, buffer, len); g_checksum_get_digest(hmac->digesto, buffer, digest_len); } /** * g_compute_hmac_for_data: * @digest_type: a #GChecksumType to use for the HMAC * @key: (array length=key_len): the key to use in the HMAC * @key_len: the length of the key * @data: binary blob to compute the HMAC of * @length: length of @data * * Computes the HMAC for a binary @data of @length. This is a * convenience wrapper for g_hmac_new(), g_hmac_get_string() * and g_hmac_unref(). * * The hexadecimal string returned will be in lower case. * * Returns: the HMAC of the binary data as a string in hexadecimal. * The returned string should be freed with g_free() when done using it. * * Since: 2.30 */ gchar * g_compute_hmac_for_data(GChecksumType digest_type, const guchar *key, gsize key_len, const guchar *data, gsize length) { GHmac *hmac; gchar *retval; g_return_val_if_fail(length == 0 || data != NULL, NULL); hmac = g_hmac_new(digest_type, key, key_len); if (!hmac) return NULL; g_hmac_update(hmac, data, length); retval = g_strdup(g_hmac_get_string(hmac)); g_hmac_unref(hmac); return retval; } /** * g_compute_hmac_for_string: * @digest_type: a #GChecksumType to use for the HMAC * @key: (array length=key_len): the key to use in the HMAC * @key_len: the length of the key * @str: the string to compute the HMAC for * @length: the length of the string, or -1 if the string is nul-terminated * * Computes the HMAC for a string. * * The hexadecimal string returned will be in lower case. * * Returns: the HMAC as a hexadecimal string. * The returned string should be freed with g_free() * when done using it. * * Since: 2.30 */ gchar * g_compute_hmac_for_string(GChecksumType digest_type, const guchar *key, gsize key_len, const gchar *str, gssize length) { g_return_val_if_fail(length == 0 || str != NULL, NULL); if (length < 0) length = strlen(str); return g_compute_hmac_for_data(digest_type, key, key_len, (const guchar *)str, length); } #endif workrave-1.10.50/backend/src/win32/W32InputMonitorFactory.hh0000644000175100001710000000271714221624106022364 0ustar00gdm00000000000000// W32InputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32INPUTMONITORFACTORY_HH #define W32INPUTMONITORFACTORY_HH #include #include #include "IInputMonitorFactory.hh" #include "Diagnostics.hh" //! Factory to create input monitors. class W32InputMonitorFactory : public IInputMonitorFactory { public: W32InputMonitorFactory(); virtual void init(const char *display); virtual IInputMonitor *get_monitor(MonitorCapability capability); private: IInputMonitor *create_statistics_monitor(); IInputMonitor *create_activity_monitor(); private: IInputMonitor *activity_monitor; IInputMonitor *statistics_monitor; TracedField actual_monitor_method; }; #endif // W32INPUTMONITORFACTORY_HH workrave-1.10.50/backend/src/win32/W32AlternateMonitor.hh0000644000175100001710000000257114221624106021652 0ustar00gdm00000000000000// W32AlternateMonitor.hh --- Alternate Activity monitor for win32 // // Copyright (C) 2007 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // See comments in W32AlternateMonitor.cc #ifndef W32ALTERNATEMONITOR_HH #define W32ALTERNATEMONITOR_HH #include #include #include "InputMonitor.hh" class W32AlternateMonitor : public InputMonitor { public: W32AlternateMonitor(); virtual ~W32AlternateMonitor(); bool init(); void terminate(); protected: static DWORD WINAPI thread_Monitor(LPVOID); private: void Monitor(); void Update(LASTINPUTINFO *); bool initialized; int interval; HANDLE thread_abort_event; HANDLE thread_handle; volatile DWORD thread_id; }; #endif // W32ALTERNATEMONITOR_HH workrave-1.10.50/backend/src/win32/Harpoon.cc0000644000175100001710000002243614221624106017465 0ustar00gdm00000000000000// Harpoon.cc --- ActivityMonitor for W32 // // Copyright (C) 2007, 2010, 2013 Ray Satiro // Copyright (C) 2007, 2008 Rob Caelers // Copyright (C) 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #include #include "debug.hh" #include "Harpoon.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "Util.hh" #include "timeutil.h" #include "harpoon.h" #include "HarpoonHelper.h" using namespace workrave; using namespace std; char Harpoon::critical_filename_list[HARPOON_MAX_UNBLOCKED_APPS][511]; HWND Harpoon::helper_window = NULL; bool Harpoon::helper_started = false; Harpoon::Harpoon() {} Harpoon::~Harpoon() { terminate(); } bool Harpoon::init(HarpoonHookFunc func) { TRACE_ENTER("Harpoon::init"); assert(HARPOON_MAX_UNBLOCKED_APPS); init_critical_filename_list(); bool debug, mouse_lowlevel, keyboard_lowlevel; CoreFactory::get_configurator()->get_value_with_default("advanced/harpoon/debug", debug, false); bool default_mouse_lowlevel = false; if (LOBYTE(LOWORD(GetVersion())) >= 6) { default_mouse_lowlevel = true; } CoreFactory::get_configurator()->get_value_with_default( "advanced/harpoon/mouse_lowlevel", mouse_lowlevel, default_mouse_lowlevel); CoreFactory::get_configurator()->get_value_with_default("advanced/harpoon/keyboard_lowlevel", keyboard_lowlevel, true); if (!harpoon_init(critical_filename_list, (BOOL)debug)) { TRACE_RETURN("Cannot init"); return false; } if (func != NULL) { if (!harpoon_hook(func, (BOOL)keyboard_lowlevel, (BOOL)mouse_lowlevel)) { TRACE_RETURN("Cannot hook"); return false; } } if (is_64bit_windows()) { TRACE_MSG("start helper"); start_harpoon_helper(); } TRACE_RETURN(true); return true; } //! Stops the activity monitoring. void Harpoon::terminate() { stop_harpoon_helper(); harpoon_exit(); } void Harpoon::block_input() { harpoon_block_input(); if (helper_started) { if (helper_window == NULL) { helper_window = recursive_find_window(NULL, HARPOON_HELPER_WINDOW_CLASS); } if (helper_window != NULL) { PostMessage(helper_window, WM_USER + HARPOON_HELPER_BLOCK, 0, 0); } } } void Harpoon::unblock_input() { harpoon_unblock_input(); if (helper_started) { if (helper_window == NULL) { helper_window = recursive_find_window(NULL, HARPOON_HELPER_WINDOW_CLASS); } if (helper_window != NULL) { PostMessage(helper_window, WM_USER + HARPOON_HELPER_UNBLOCK, 0, 0); } } } void Harpoon::init_critical_filename_list() { int i, filecount; // Task Manager is always on the critical_filename_list if (GetVersion() >= 0x80000000) // Windows Me/98/95 strcpy(critical_filename_list[0], "taskman.exe"); else if (!check_for_taskmgr_debugger(critical_filename_list[0])) strcpy(critical_filename_list[0], "taskmgr.exe"); for (i = 1; i < HARPOON_MAX_UNBLOCKED_APPS; ++i) critical_filename_list[i][0] = '\0'; filecount = 0; if (!CoreFactory::get_configurator()->get_value("advanced/critical_files/filecount", filecount) || !filecount) return; if (filecount >= HARPOON_MAX_UNBLOCKED_APPS) // This shouldn't happen { filecount = HARPOON_MAX_UNBLOCKED_APPS - 1; CoreFactory::get_configurator()->set_value("advanced/critical_files/filecount", filecount); } char loc[40]; string buffer; for (i = 1; i <= filecount; ++i) { sprintf(loc, "advanced/critical_files/file%d", i); if (CoreFactory::get_configurator()->get_value(loc, buffer)) { strncpy(critical_filename_list[i], buffer.c_str(), 510); critical_filename_list[i][510] = '\0'; } } } bool Harpoon::check_for_taskmgr_debugger(char *out) { HKEY hKey = NULL; LONG err; DWORD size; unsigned char *p, *p2, *buffer; // If there is a debugger for taskmgr, it's always critical err = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\" "Image File Execution Options\\taskmgr.exe", 0, KEY_QUERY_VALUE, &hKey); if (err != ERROR_SUCCESS) { RegCloseKey(hKey); return false; } // get the size, in bytes, required for buffer err = RegQueryValueExA(hKey, "Debugger", NULL, NULL, NULL, &size); if (err != ERROR_SUCCESS || !size) { RegCloseKey(hKey); return false; } if (!(buffer = (unsigned char *)malloc(size + 1))) { RegCloseKey(hKey); return false; } err = RegQueryValueExA(hKey, "Debugger", NULL, NULL, (LPBYTE)buffer, &size); if (err != ERROR_SUCCESS || !size) { free(buffer); RegCloseKey(hKey); return false; } buffer[size] = '\0'; // get to innermost quoted for (p2 = buffer; *p2 == '\"'; ++p2) ; if (p2 != buffer) // e.g. "my debugger.exe" /y /x { if ((p = _mbschr(p2, '\"'))) *p = '\0'; } else // e.g. debugger.exe /y /x { if ((p = _mbschr(p2, ' '))) *p = '\0'; } // Search the path to find where the filename starts: if ((p = (unsigned char *)_mbsrchr(p2, '\\'))) // Point to first (mb) filename character ++p; else // No path. p = p2; _mbstrncpy_lowercase(out, (char *)p, 510); out[510] = '\0'; RegCloseKey(hKey); free(buffer); return true; } bool Harpoon::is_64bit_windows() { TRACE_ENTER("Harpoon::is_64bit_windows"); #if defined(_WIN64) TRACE_RETURN("Yes. win64 build"); return true; // 64-bit programs run only on Win64 #elif defined(_WIN32) BOOL f64 = FALSE; typedef BOOL(WINAPI * LPFN_ISWOW64PROCESS)(HANDLE, PBOOL); LPFN_ISWOW64PROCESS fnIsWow64Process; fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandleA("kernel32.dll"), "IsWow64Process"); if (fnIsWow64Process != NULL) { bool ret = fnIsWow64Process(GetCurrentProcess(), &f64) && f64; TRACE_RETURN(ret); return ret; } else { TRACE_RETURN("No. IsWow64Process missing."); return false; } #else TRACE_RETURN("No. win16 build"); return false; // Win64 does not support Win16 #endif } HWND Harpoon::recursive_find_window(HWND hwnd, LPCTSTR lpClassName) { TRACE_ENTER("Harpoon::recursive_find_window"); static char buf[80]; int num = GetClassName(hwnd, buf, sizeof(buf) - 1); buf[num] = 0; HWND ret = NULL; TRACE_MSG(buf); if (!stricmp(lpClassName, buf)) { ret = hwnd; } else { HWND child = FindWindowEx(hwnd, 0, NULL, NULL); while (child != NULL) { ret = recursive_find_window(child, lpClassName); if (ret) { break; } child = FindWindowEx(hwnd, child, NULL, NULL); } } TRACE_EXIT(); return ret; } void Harpoon::start_harpoon_helper() { TRACE_ENTER("Harpoon::start_harpoon_helper"); if (helper_window == NULL) { helper_window = recursive_find_window(NULL, HARPOON_HELPER_WINDOW_CLASS); if (helper_window != NULL) { helper_started = true; } } if (!helper_started) { STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pi, sizeof(pi)); string install_dir = g_win32_get_package_installation_directory_of_module(NULL); string helper = install_dir + G_DIR_SEPARATOR_S + "lib" + G_DIR_SEPARATOR_S + "WorkraveHelper.exe"; string args = helper + " " + g_get_prgname(); TRACE_MSG(install_dir.c_str()); TRACE_MSG(helper.c_str()); TRACE_MSG(args.c_str()); if (CreateProcessA(helper.c_str(), (LPSTR)args.c_str(), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) { helper_started = true; helper_window = recursive_find_window(NULL, HARPOON_HELPER_WINDOW_CLASS); } else { TRACE_MSG("CreateProcess failed " << GetLastError()); } TRACE_MSG(pi.hProcess); TRACE_MSG(pi.hThread); } TRACE_EXIT(); } void Harpoon::stop_harpoon_helper() { TRACE_ENTER("Harpoon::stop_harpoon_helper"); if (helper_window == NULL) { helper_window = recursive_find_window(NULL, HARPOON_HELPER_WINDOW_CLASS); } if (helper_window != NULL) { PostMessage(helper_window, WM_USER + HARPOON_HELPER_EXIT, 0, 0); helper_window = NULL; helper_started = false; } TRACE_EXIT(); } workrave-1.10.50/backend/src/win32/Makefile.in0000644000000000000000000011766414221624200020711 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2008, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/src/win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_backend_win32_la_LIBADD = am__libworkrave_backend_win32_la_SOURCES_DIST = W32Configurator.cc \ W32InputMonitor.cc W32AlternateMonitor.cc \ W32LowLevelMonitor.cc W32InputMonitorFactory.cc \ W32ActiveSetup.cc Harpoon.cc ghmac.c @PLATFORM_OS_WINDOWS_TRUE@am__objects_1 = libworkrave_backend_win32_la-W32Configurator.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-W32InputMonitor.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-W32AlternateMonitor.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-W32LowLevelMonitor.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-W32InputMonitorFactory.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-W32ActiveSetup.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-Harpoon.lo \ @PLATFORM_OS_WINDOWS_TRUE@ libworkrave_backend_win32_la-ghmac.lo am_libworkrave_backend_win32_la_OBJECTS = $(am__objects_1) libworkrave_backend_win32_la_OBJECTS = \ $(am_libworkrave_backend_win32_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_backend_win32_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ @PLATFORM_OS_WINDOWS_TRUE@am_libworkrave_backend_win32_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_win32_la-ghmac.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_backend_win32_la_SOURCES) DIST_SOURCES = $(am__libworkrave_backend_win32_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in @PLATFORM_OS_WINDOWS_TRUE@noinst_LTLIBRARIES = libworkrave-backend-win32.la @PLATFORM_OS_WINDOWS_TRUE@sources = W32Configurator.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32InputMonitor.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32AlternateMonitor.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32LowLevelMonitor.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32InputMonitorFactory.cc \ @PLATFORM_OS_WINDOWS_TRUE@ W32ActiveSetup.cc \ @PLATFORM_OS_WINDOWS_TRUE@ Harpoon.cc \ @PLATFORM_OS_WINDOWS_TRUE@ ghmac.c libworkrave_backend_win32_la_SOURCES = ${sources} libworkrave_backend_win32_la_CXXFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 -D_WIN32_WINNT=0x0501 \ -I$(top_srcdir)/common/win32/harpoon/include/ \ -I$(top_srcdir)/common/win32/harpoonHelper/include/ \ @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ libworkrave_backend_win32_la_CFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 -D_WIN32_WINNT=0x0600\ @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc) \ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.icc) all: all-am .SUFFIXES: .SUFFIXES: .c .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/src/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/src/win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-backend-win32.la: $(libworkrave_backend_win32_la_OBJECTS) $(libworkrave_backend_win32_la_DEPENDENCIES) $(EXTRA_libworkrave_backend_win32_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_backend_win32_la_LINK) $(am_libworkrave_backend_win32_la_rpath) $(libworkrave_backend_win32_la_OBJECTS) $(libworkrave_backend_win32_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_win32_la-ghmac.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< libworkrave_backend_win32_la-ghmac.lo: ghmac.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) $(libworkrave_backend_win32_la_CFLAGS) $(CFLAGS) -MT libworkrave_backend_win32_la-ghmac.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-ghmac.Tpo -c -o libworkrave_backend_win32_la-ghmac.lo `test -f 'ghmac.c' || echo '$(srcdir)/'`ghmac.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-ghmac.Tpo $(DEPDIR)/libworkrave_backend_win32_la-ghmac.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ghmac.c' object='libworkrave_backend_win32_la-ghmac.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) $(libworkrave_backend_win32_la_CFLAGS) $(CFLAGS) -c -o libworkrave_backend_win32_la-ghmac.lo `test -f 'ghmac.c' || echo '$(srcdir)/'`ghmac.c .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_backend_win32_la-W32Configurator.lo: W32Configurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32Configurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Tpo -c -o libworkrave_backend_win32_la-W32Configurator.lo `test -f 'W32Configurator.cc' || echo '$(srcdir)/'`W32Configurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32Configurator.cc' object='libworkrave_backend_win32_la-W32Configurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32Configurator.lo `test -f 'W32Configurator.cc' || echo '$(srcdir)/'`W32Configurator.cc libworkrave_backend_win32_la-W32InputMonitor.lo: W32InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32InputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Tpo -c -o libworkrave_backend_win32_la-W32InputMonitor.lo `test -f 'W32InputMonitor.cc' || echo '$(srcdir)/'`W32InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32InputMonitor.cc' object='libworkrave_backend_win32_la-W32InputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32InputMonitor.lo `test -f 'W32InputMonitor.cc' || echo '$(srcdir)/'`W32InputMonitor.cc libworkrave_backend_win32_la-W32AlternateMonitor.lo: W32AlternateMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32AlternateMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Tpo -c -o libworkrave_backend_win32_la-W32AlternateMonitor.lo `test -f 'W32AlternateMonitor.cc' || echo '$(srcdir)/'`W32AlternateMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32AlternateMonitor.cc' object='libworkrave_backend_win32_la-W32AlternateMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32AlternateMonitor.lo `test -f 'W32AlternateMonitor.cc' || echo '$(srcdir)/'`W32AlternateMonitor.cc libworkrave_backend_win32_la-W32LowLevelMonitor.lo: W32LowLevelMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32LowLevelMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Tpo -c -o libworkrave_backend_win32_la-W32LowLevelMonitor.lo `test -f 'W32LowLevelMonitor.cc' || echo '$(srcdir)/'`W32LowLevelMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32LowLevelMonitor.cc' object='libworkrave_backend_win32_la-W32LowLevelMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32LowLevelMonitor.lo `test -f 'W32LowLevelMonitor.cc' || echo '$(srcdir)/'`W32LowLevelMonitor.cc libworkrave_backend_win32_la-W32InputMonitorFactory.lo: W32InputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32InputMonitorFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Tpo -c -o libworkrave_backend_win32_la-W32InputMonitorFactory.lo `test -f 'W32InputMonitorFactory.cc' || echo '$(srcdir)/'`W32InputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32InputMonitorFactory.cc' object='libworkrave_backend_win32_la-W32InputMonitorFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32InputMonitorFactory.lo `test -f 'W32InputMonitorFactory.cc' || echo '$(srcdir)/'`W32InputMonitorFactory.cc libworkrave_backend_win32_la-W32ActiveSetup.lo: W32ActiveSetup.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-W32ActiveSetup.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Tpo -c -o libworkrave_backend_win32_la-W32ActiveSetup.lo `test -f 'W32ActiveSetup.cc' || echo '$(srcdir)/'`W32ActiveSetup.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Tpo $(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='W32ActiveSetup.cc' object='libworkrave_backend_win32_la-W32ActiveSetup.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-W32ActiveSetup.lo `test -f 'W32ActiveSetup.cc' || echo '$(srcdir)/'`W32ActiveSetup.cc libworkrave_backend_win32_la-Harpoon.lo: Harpoon.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_win32_la-Harpoon.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Tpo -c -o libworkrave_backend_win32_la-Harpoon.lo `test -f 'Harpoon.cc' || echo '$(srcdir)/'`Harpoon.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Tpo $(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Harpoon.cc' object='libworkrave_backend_win32_la-Harpoon.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_win32_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_win32_la-Harpoon.lo `test -f 'Harpoon.cc' || echo '$(srcdir)/'`Harpoon.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-ghmac.Plo -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 -f ./$(DEPDIR)/libworkrave_backend_win32_la-Harpoon.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32ActiveSetup.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32AlternateMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32Configurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32InputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-W32LowLevelMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_win32_la-ghmac.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/src/win32/W32LowLevelMonitor.cc0000644000175100001710000002410314221624106021445 0ustar00gdm00000000000000// W32LowLevelMonitor.cc --- ActivityMonitor for W32 // // Copyright (C) 2007, 2010, 2012 Ray Satiro // All rights reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3, 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. // /* Alternate low-level activity monitor. -- From MSDN, re WH_KEYBOARD_LL & WH_MOUSE_LL: This hook is called in the context of the thread that installed it. The call is made by sending a message to the thread that installed the hook. Therefore, the thread that installed the hook must have a message loop. -- Because a low-level hook is called in the context of the thread that installed it, we can install the hook from a time critical thread, and run a message loop. This should solve the Philips slowdown problem: 1. high priority callback thread returns immediately after posting a message to the dispatch thread 2. the dispatch thread processes and notifies main thread LowLevelKeyboardProc Function (): http://msdn2.microsoft.com/en-us/library/ms644985.aspx LowLevelMouseProc Function (): http://msdn2.microsoft.com/en-us/library/ms644986.aspx Scheduling Priorities (Windows): http://msdn2.microsoft.com/en-us/library/ms685100.aspx jay satiro, workrave project, september 2007 */ #include #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "debug.hh" #include #include "W32LowLevelMonitor.hh" #include "Harpoon.hh" W32LowLevelMonitor *W32LowLevelMonitor::singleton = NULL; W32LowLevelMonitor::thread_struct *W32LowLevelMonitor::dispatch = NULL; W32LowLevelMonitor::thread_struct *W32LowLevelMonitor::callback = NULL; volatile HHOOK W32LowLevelMonitor::k_hook = NULL; volatile HHOOK W32LowLevelMonitor::m_hook = NULL; HMODULE W32LowLevelMonitor::process_handle = NULL; /* FYI: MS type BOOL is type int. Therefore BOOL functions can return -1. MSDN notes GetMessage BOOL return is not only 0,1 but also -1. */ W32LowLevelMonitor::W32LowLevelMonitor() { TRACE_ENTER("W32LowLevelMonitor::W32LowLevelMonitor"); if (singleton != NULL) { TRACE_RETURN(" singleton != NULL "); return; } singleton = this; dispatch = new thread_struct; dispatch->name = "Dispatch"; callback = new thread_struct; callback->name = "Callback"; k_hook = NULL; m_hook = NULL; process_handle = GetModuleHandle(NULL); TRACE_EXIT(); } W32LowLevelMonitor::~W32LowLevelMonitor() { TRACE_ENTER("W32LowLevelMonitor::~W32LowLevelMonitor"); if (singleton != this) { TRACE_RETURN(" singleton != this "); return; } terminate(); delete dispatch; delete callback; dispatch = NULL; callback = NULL; singleton = NULL; TRACE_EXIT(); } bool W32LowLevelMonitor::init() { TRACE_ENTER("W32LowLevelMonitor::init"); if (singleton != this) { TRACE_RETURN(" singleton != this "); return false; } terminate(); dispatch->handle = CreateThread(NULL, 0, thread_Dispatch, this, 0, &dispatch->id); if (!wait_for_thread_queue(dispatch)) { terminate(); TRACE_EXIT(); return false; } callback->handle = CreateThread(NULL, 0, thread_Callback, this, 0, &callback->id); if (!wait_for_thread_queue(callback)) { terminate(); TRACE_EXIT(); return false; } Harpoon::init(NULL); TRACE_EXIT(); return true; } bool W32LowLevelMonitor::wait_for_thread_queue(thread_struct *thread) { TRACE_ENTER_MSG("W32LowLevelMonitor::wait_for_thread_queue : ", thread->name); if (!thread->handle || !thread->id) { TRACE_RETURN(" thread: creation failed."); return false; } DWORD thread_exit_code; do { thread_exit_code = 0; Sleep(1); GetExitCodeThread(thread->handle, &thread_exit_code); if (thread_exit_code != STILL_ACTIVE) { TRACE_RETURN(" thread: terminated prematurely."); return false; } } while (thread->active == false); SetLastError(0); BOOL ret = PostThreadMessageW(thread->id, 0xFFFF, 0, 0); DWORD gle = GetLastError(); if (!ret || gle) { TRACE_MSG(" thread: PostThreadMessage test failed."); TRACE_MSG(" thread: PostThreadMessage returned: " << ret); TRACE_MSG(" thread: GetLastError returned: " << gle); TRACE_EXIT(); return false; } TRACE_EXIT(); return true; } void W32LowLevelMonitor::terminate() { if (singleton != this) return; unhook(); terminate_thread(callback); terminate_thread(dispatch); Harpoon::terminate(); } void W32LowLevelMonitor::terminate_thread(thread_struct *thread) { thread->active = false; if (thread->id) PostThreadMessageW(thread->id, WM_QUIT, 0, 0); wait_for_thread_to_exit(thread); if (thread->handle != NULL) { CloseHandle(thread->handle); thread->handle = NULL; } thread->id = 0; } void W32LowLevelMonitor::wait_for_thread_to_exit(thread_struct *thread) { DWORD thread_exit_code = 0; if (!thread || !thread->handle) return; do { Sleep(1); GetExitCodeThread(thread->handle, &thread_exit_code); } while (thread_exit_code == STILL_ACTIVE); } void W32LowLevelMonitor::unhook() { if (k_hook) { UnhookWindowsHookEx(k_hook); k_hook = NULL; } if (m_hook) { UnhookWindowsHookEx(m_hook); m_hook = NULL; } } DWORD WINAPI W32LowLevelMonitor::thread_Dispatch(LPVOID lpParam) { W32LowLevelMonitor *pThis = (W32LowLevelMonitor *)lpParam; return pThis->dispatch_thread(); } DWORD W32LowLevelMonitor::dispatch_thread() { dispatch->active = false; bool ret = 0; MSG msg; // It's good practice to force creation of the thread // message queue before setting active. PeekMessageW(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE); dispatch->active = true; while ((ret = GetMessageW(&msg, NULL, 0, 0) > 0) && dispatch->active) { msg.message &= 0xFFFF; if (msg.message > WM_APP) // mouse notification { switch (msg.message - WM_APP) { // msg.wParam == x coord // msg.lParam == y coord case WM_MOUSEMOVE: fire_mouse(msg.wParam, msg.lParam, 0); break; case WM_MOUSEWHEEL: case WM_MOUSEHWHEEL: fire_mouse(msg.wParam, msg.lParam, 1); break; case WM_LBUTTONDOWN: case WM_MBUTTONDOWN: case WM_RBUTTONDOWN: case WM_XBUTTONDOWN: fire_button(true); break; case WM_LBUTTONUP: case WM_MBUTTONUP: case WM_RBUTTONUP: case WM_XBUTTONUP: fire_button(false); break; } } else if (msg.message == WM_APP) // keyboard notification { // kb->flags == msg.wParam if (msg.wParam & 0x00000080) // Transition state: key released fire_keyboard(false); else // Transition state: key pressed fire_action(); } } dispatch->active = false; // Always return a value != STILL_ACTIVE (259) return (DWORD)ret; } DWORD WINAPI W32LowLevelMonitor::thread_Callback(LPVOID lpParam) { W32LowLevelMonitor *pThis = (W32LowLevelMonitor *)lpParam; return pThis->time_critical_callback_thread(); } DWORD W32LowLevelMonitor::time_critical_callback_thread() { callback->active = false; int i = 0; MSG msg; // An attempt to set the thread priority to // THREAD_PRIORITY_TIME_CRITICAL. for (i = 0; (!SetThreadPriority(GetCurrentThread(), 15) && (i < 100)); ++i) { Sleep(1); } /* Do not double check using GetThreadPriority. It's possible, throughout this thread's lifetime, that an administrative application could change the priority. */ // It's good practice to force creation of the thread // message queue before setting active. PeekMessageW(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE); unhook(); k_hook = SetWindowsHookExW(WH_KEYBOARD_LL, &k_hook_callback, process_handle, 0); m_hook = SetWindowsHookExW(WH_MOUSE_LL, &m_hook_callback, process_handle, 0); if (!k_hook || !m_hook) { unhook(); return (DWORD)0; } callback->active = true; // Message loop. As noted, a hook is called in the // context of the thread that installed it. i.e. this one. while (GetMessageW(&msg, NULL, 0, 0) && callback->active) ; unhook(); callback->active = false; // Always return a value != STILL_ACTIVE (259) return (DWORD)1; } LRESULT CALLBACK W32LowLevelMonitor::k_hook_callback(int nCode, WPARAM wParam, LPARAM lParam) { DWORD flags = ((_KBDLLHOOKSTRUCT *)lParam)->flags; if (!nCode && !(flags & LLKHF_INJECTED)) // If there is an event, and it's not injected, notify. { PostThreadMessageW(dispatch->id, // idThread WM_APP, // Msg (WPARAM)flags, // wParam (LPARAM)0 // lParam ); } return CallNextHookEx((HHOOK)0, nCode, wParam, lParam); } LRESULT CALLBACK W32LowLevelMonitor::m_hook_callback(int nCode, WPARAM wParam, LPARAM lParam) { DWORD flags = ((_MSLLHOOKSTRUCT *)lParam)->flags; if (!nCode) // && !( flags & LLMHF_INJECTED ) ) // If there is an event, and it's not injected, notify. // RC: My Wacom tablet driver injects mouse move events... { PostThreadMessageW(dispatch->id, // idThread WM_APP + (DWORD)wParam, // Msg (WPARAM)((_MSLLHOOKSTRUCT *)lParam)->pt.x, // wParam (LPARAM)((_MSLLHOOKSTRUCT *)lParam)->pt.y // lParam ); } return CallNextHookEx((HHOOK)0, nCode, wParam, lParam); } // POINTTOPOINTS( ( (MSLLHOOKSTRUCT *) lParam )->pt ) workrave-1.10.50/backend/src/win32/W32AlternateMonitor.cc0000644000175100001710000001011114221624106021625 0ustar00gdm00000000000000// W32AlternateMonitor.cc --- Alternate Activity monitor for win32 // // Copyright (C) 2007 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // This file contains code necessary to bypass mouse & keyboard // hooks normally required by Workrave. // // Upside: no hooks! // Downside: no mouse & keyboard statistics. // // jay satiro, workrave project, may 2007 // #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(PLATFORM_OS_WINDOWS) # include "debug.hh" # include # if !defined(PLATFORM_OS_WINDOWS_NATIVE) # include # endif # include "W32AlternateMonitor.hh" # include "Harpoon.hh" # include "CoreFactory.hh" # include "IConfigurator.hh" using namespace workrave; W32AlternateMonitor::W32AlternateMonitor() : initialized(false) , interval(500) , thread_abort_event(NULL) , thread_handle(NULL) , thread_id(0) { TRACE_ENTER("W32AlternateMonitor::W32AlternateMonitor"); TRACE_EXIT(); } W32AlternateMonitor::~W32AlternateMonitor() { TRACE_ENTER("W32AlternateMonitor::~W32AlternateMonitor"); terminate(); TRACE_EXIT(); } bool W32AlternateMonitor::init() { TRACE_ENTER("W32AlternateMonitor::init"); if (initialized) goto cleanup; CoreFactory::get_configurator()->get_value_with_default("advanced/interval", interval, 500); SetLastError(0); thread_abort_event = CreateEvent(NULL, FALSE, FALSE, NULL); if (!thread_abort_event) { TRACE_MSG("Thread abort event could not be created. GetLastError : " << GetLastError()); goto cleanup; } thread_id = 0; SetLastError(0); thread_handle = CreateThread(NULL, 0, thread_Monitor, this, 0, (DWORD *)&thread_id); if (!thread_handle || !thread_id) { TRACE_MSG("Thread could not be created. GetLastError : " << GetLastError()); goto cleanup; } Harpoon::init(NULL); initialized = true; cleanup: if (initialized == false) terminate(); TRACE_EXIT(); return initialized; } void W32AlternateMonitor::terminate() { TRACE_ENTER("W32AlternateMonitor::terminate"); thread_id = 0; if (thread_handle) { SetEvent(thread_abort_event); WaitForSingleObject(thread_handle, INFINITE); CloseHandle(thread_handle); thread_handle = NULL; } if (thread_abort_event) { CloseHandle(thread_abort_event); thread_abort_event = NULL; } Harpoon::terminate(); initialized = false; TRACE_EXIT(); } DWORD WINAPI W32AlternateMonitor::thread_Monitor(LPVOID lpParam) { W32AlternateMonitor *pThis = (W32AlternateMonitor *)lpParam; pThis->Monitor(); // invalidate the id to signal the thread is exiting pThis->thread_id = 0; return (DWORD)0; } void W32AlternateMonitor::Monitor() { const DWORD current_thread_id = GetCurrentThreadId(); TRACE_ENTER_MSG("W32AlternateMonitor::Monitor [ id: ", current_thread_id << " ]"); SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL); LASTINPUTINFO lii; DWORD dwPreviousTime = 0; lii.cbSize = sizeof(lii); lii.dwTime = GetTickCount(); while (thread_id == current_thread_id) /* Main loop */ { dwPreviousTime = lii.dwTime; if (GetLastInputInfo(&lii) && (lii.dwTime > dwPreviousTime)) /* User session has received input */ { /* Notify the activity monitor */ fire_action(); } if (WaitForSingleObject(thread_abort_event, interval) != WAIT_TIMEOUT) break; } TRACE_EXIT(); } #endif // defined(PLATFORM_OS_WINDOWS) workrave-1.10.50/backend/src/win32/W32LowLevelMonitor.hh0000644000175100001710000000445214221624106021464 0ustar00gdm00000000000000// W32LowLevelMonitor.cc --- ActivityMonitor for W32 // // Copyright (C) 2007, 2010, 2012 Ray Satiro // All rights reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3, or (at your option) // any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // #ifndef W32LOWLEVELMONITOR_HH #define W32LOWLEVELMONITOR_HH #include "InputMonitor.hh" class W32LowLevelMonitor : public InputMonitor { public: W32LowLevelMonitor(); virtual ~W32LowLevelMonitor(); bool init(); void terminate(); static W32LowLevelMonitor *singleton; protected: static DWORD WINAPI thread_Dispatch(LPVOID); static DWORD WINAPI thread_Callback(LPVOID); private: struct thread_struct { volatile bool active; DWORD id; HANDLE handle; const char *name; thread_struct() { active = false; id = 0; handle = NULL; name = NULL; } }; static thread_struct *dispatch, *callback; bool wait_for_thread_queue(thread_struct *); void terminate_thread(thread_struct *); void wait_for_thread_to_exit(thread_struct *); void unhook(); DWORD dispatch_thread(); DWORD time_critical_callback_thread(); static LRESULT CALLBACK k_hook_callback(int, WPARAM, LPARAM); static LRESULT CALLBACK m_hook_callback(int, WPARAM, LPARAM); static volatile HHOOK k_hook; static volatile HHOOK m_hook; static HMODULE process_handle; }; #ifndef WM_XBUTTONDOWN # define WM_XBUTTONDOWN 523 #endif #ifndef WM_XBUTTONUP # define WM_XBUTTONUP 524 #endif #ifndef WM_XBUTTONDBLCLK # define WM_XBUTTONDBLCLK 525 #endif #ifndef WM_MOUSEHWHEEL # define WM_MOUSEHWHEEL 526 #endif #define LLKHF_INJECTED 0x00000010 #define LLMHF_INJECTED 0x00000001 typedef struct { DWORD vkCode; DWORD scanCode; DWORD flags; DWORD time; ULONG_PTR dwExtraInfo; } _KBDLLHOOKSTRUCT; typedef struct { POINT pt; DWORD mouseData; DWORD flags; DWORD time; ULONG_PTR dwExtraInfo; } _MSLLHOOKSTRUCT; #endif // W32LOWLEVELMONITOR_HH workrave-1.10.50/backend/src/win32/W32InputMonitorFactory.cc0000644000175100001710000001400014221624106022336 0ustar00gdm00000000000000// W32InputMonitorFactory.cc -- Factory to create input monitors // // Copyright (C) 2007, 2008, 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "debug.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "W32InputMonitorFactory.hh" #include "W32InputMonitor.hh" #include "W32LowLevelMonitor.hh" #include "W32AlternateMonitor.hh" using namespace std; using namespace workrave; W32InputMonitorFactory::W32InputMonitorFactory() : actual_monitor_method{"monitor.method", ""} { activity_monitor = NULL; statistics_monitor = NULL; } void W32InputMonitorFactory::init(const char *display) { (void)display; } //! Retrieves the input activity monitor IInputMonitor * W32InputMonitorFactory::get_monitor(IInputMonitorFactory::MonitorCapability capability) { if (capability == CAPABILITY_ACTIVITY) { return create_activity_monitor(); } else if (capability == CAPABILITY_STATISTICS) { return create_statistics_monitor(); } return NULL; } //! Retrieves the input activity monitor IInputMonitor * W32InputMonitorFactory::create_activity_monitor() { TRACE_ENTER("W32InputMonitorFactory::create_activity_monitor"); IInputMonitor *monitor = NULL; if (activity_monitor != NULL) { monitor = activity_monitor; } else { bool initialized = false; string configure_monitor_method; int max_tries = 3; CoreFactory::get_configurator()->get_value_with_default("advanced/monitor", configure_monitor_method, "default"); if (configure_monitor_method == "default") { TRACE_MSG("use default"); actual_monitor_method = "nohook"; } else { TRACE_MSG("use configured: " << configure_monitor_method); actual_monitor_method = configure_monitor_method; } while (!initialized && max_tries > 0) { TRACE_MSG("try: " << actual_monitor_method); if (actual_monitor_method == "lowlevel") { monitor = new W32LowLevelMonitor(); initialized = monitor->init(); if (!initialized) { delete monitor; monitor = NULL; actual_monitor_method = "nohook"; TRACE_MSG("failed to init"); } } else if (actual_monitor_method == "nohook") { monitor = new W32AlternateMonitor(); initialized = monitor->init(); if (!initialized) { delete monitor; monitor = NULL; actual_monitor_method = "normal"; TRACE_MSG("failed to init"); } } else if (actual_monitor_method == "normal") { monitor = new W32InputMonitor(); initialized = monitor->init(); if (!initialized) { delete monitor; monitor = NULL; actual_monitor_method = "lowlevel"; TRACE_MSG("failed to init"); } } max_tries--; } if (!initialized) { MessageBoxA(NULL, "Workrave must be able to monitor certain system " "events in order to determine when you are idle.\n\n" "Attempts were made to monitor your system, " "but they were unsuccessful.\n\n" "Workrave has reset itself to use its default monitor." "Please run Workrave again. If you see this message " "again, please file a bug report:\n\n" "http://issues.workrave.org/\n\n" "Workrave must exit now.\n", "Workrave", MB_OK); CoreFactory::get_configurator()->set_value("advanced/monitor", "normal"); CoreFactory::get_configurator()->save(); actual_monitor_method = ""; } else { activity_monitor = monitor; if (configure_monitor_method != "default") { CoreFactory::get_configurator()->set_value("advanced/monitor", actual_monitor_method); CoreFactory::get_configurator()->save(); } TRACE_MSG("using " << actual_monitor_method); } } TRACE_EXIT(); return monitor; } //! Retrieves the current input monitor for detailed statistics IInputMonitor * W32InputMonitorFactory::create_statistics_monitor() { TRACE_ENTER("W32InputMonitorFactory::create_statistics_monitor"); if (activity_monitor == NULL) { create_activity_monitor(); } if (actual_monitor_method == "nohook") { IInputMonitor *monitor = new W32LowLevelMonitor(); bool initialized = monitor->init(); if (!initialized) { TRACE_RETURN("failed to init lowlevel monitor"); delete monitor; monitor = NULL; } else { TRACE_RETURN("use lowlevel monitor"); statistics_monitor = monitor; return statistics_monitor; } } else { TRACE_RETURN("use activity monitor"); return activity_monitor; } TRACE_EXIT(); return NULL; } workrave-1.10.50/backend/src/win32/W32InputMonitor.cc0000644000175100001710000000512614221624106021017 0ustar00gdm00000000000000// W32InputMonitor.cc --- ActivityMonitor for W32 // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2010 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "debug.hh" #include "W32InputMonitor.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "timeutil.h" #include "Harpoon.hh" #ifndef HAVE_STRUCT_MOUSEHOOKSTRUCT typedef struct tagMOUSEHOOKSTRUCT { POINT pt; HWND hwnd; UINT wHitTestCode; DWORD dwExtraInfo; } MOUSEHOOKSTRUCT, FAR *LPMOUSEHOOKSTRUCT, *PMOUSEHOOKSTRUCT; #endif #ifndef HAVE_STRUCT_MOUSEHOOKSTRUCTEX typedef struct { struct tagMOUSEHOOKSTRUCT MOUSEHOOKSTRUCT; DWORD mouseData; } MOUSEHOOKSTRUCTEX, *PMOUSEHOOKSTRUCTEX; #endif W32InputMonitor *W32InputMonitor::singleton = NULL; W32InputMonitor::W32InputMonitor() {} W32InputMonitor::~W32InputMonitor() { terminate(); } bool W32InputMonitor::init() { if (singleton == NULL) { singleton = this; return Harpoon::init(on_harpoon_event); } else { return false; } } //! Stops the activity monitoring. void W32InputMonitor::terminate() { Harpoon::terminate(); } void W32InputMonitor::on_harpoon_event(HarpoonEvent *event) { switch (event->type) { case HARPOON_BUTTON_PRESS: singleton->fire_button(true); break; case HARPOON_BUTTON_RELEASE: singleton->fire_button(false); break; case HARPOON_2BUTTON_PRESS: case HARPOON_KEY_PRESS: singleton->fire_action(); break; case HARPOON_MOUSE_WHEEL: singleton->fire_mouse(event->mouse.x, event->mouse.y, event->mouse.wheel); break; case HARPOON_KEY_RELEASE: singleton->fire_keyboard(false); break; case HARPOON_MOUSE_MOVE: singleton->fire_mouse(event->mouse.x, event->mouse.y, 0); break; default: break; } } workrave-1.10.50/backend/src/win32/W32Configurator.cc0000644000175100001710000001541714221624106021016 0ustar00gdm00000000000000// W32Configurator.cc --- Configuration Access // // Copyright (C) 2002, 2005, 2006, 2007, 2009, 2012 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "debug.hh" #include "W32Configurator.hh" using namespace std; W32Configurator::W32Configurator() { key_root = "Software/Workrave"; } W32Configurator::~W32Configurator() {} bool W32Configurator::load(string filename) { (void)filename; return true; } bool W32Configurator::save(string filename) { (void)filename; return true; } bool W32Configurator::save() { return true; } bool W32Configurator::remove_key(const std::string &key) { TRACE_ENTER_MSG("W32Configurator::remove_key", key); HKEY handle; bool rc = false; string k, p, p32, c; LONG err; k = key_add_part(key_root, key); key_split(k, p, c); p32 = key_win32ify(p); err = RegOpenKeyEx(HKEY_CURRENT_USER, p32.c_str(), 0, KEY_ALL_ACCESS, &handle); if (err == ERROR_SUCCESS) { DWORD size; char buf[256]; // FIXME: yuck, should be dynamic. size = sizeof(buf); err = RegDeleteKey(handle, c.c_str()); if (err == ERROR_SUCCESS) { rc = true; } RegCloseKey(handle); } TRACE_EXIT(); return rc; } bool W32Configurator::get_config_value(const string &key, string &out) const { TRACE_ENTER_MSG("W32Configurator::get_config_value", key << "," << out); HKEY handle; bool rc = false; string k, p, p32, c; LONG err; k = key_add_part(key_root, key); key_split(k, p, c); p32 = key_win32ify(p); err = RegOpenKeyEx(HKEY_CURRENT_USER, p32.c_str(), 0, KEY_ALL_ACCESS, &handle); if (err == ERROR_SUCCESS) { DWORD size, type; char *buffer; // get the size, in bytes, required for buffer err = RegQueryValueExA(handle, c.c_str(), NULL, NULL, NULL, &size); if (err != ERROR_SUCCESS || !size) { RegCloseKey(handle); TRACE_EXIT(); return false; } else if (!(buffer = (char *)malloc(size + 1))) { RegCloseKey(handle); TRACE_EXIT(); return false; } err = RegQueryValueExA(handle, c.c_str(), NULL, &type, (LPBYTE)buffer, &size); buffer[size] = '\0'; if (err == ERROR_SUCCESS && type == REG_SZ) { out = buffer; rc = true; } RegCloseKey(handle); free(buffer); } TRACE_EXIT(); return rc; } bool W32Configurator::get_config_value(const string &key, bool &out) const { long l; bool rc = get_config_value(key, l); if (rc) { out = l ? true : false; } return rc; } //! Returns the value of the specified attribute /*! * \retval true value successfully returned. * \retval false attribute not found. */ bool W32Configurator::get_config_value(const string &key, int &out) const { long l; bool rc = get_config_value(key, l); if (rc) { out = (int)l; } return rc; } //! Returns the value of the specified attribute /*! * \retval true value successfully returned. * \retval false attribute not found. */ bool W32Configurator::get_config_value(const string &key, long &out) const { string s; bool rc = get_config_value(key, s); if (rc) { int f = sscanf(s.c_str(), "%ld", &out); rc = (f == 1); } return rc; } //! Returns the value of the specified attribute /*! * \retval true value successfully returned. * \retval false attribute not found. */ bool W32Configurator::get_config_value(const string &key, double &out) const { string s; bool rc = get_config_value(key, s); if (rc) { int f = sscanf(s.c_str(), "%lf", &out); rc = (f == 1); } return rc; } bool W32Configurator::set_config_value(const string &key, string v) { TRACE_ENTER_MSG("W32Configurator::set_config_value", key << "," << v); HKEY handle; bool rc = false; string k, p, p32, c; DWORD disp; LONG err; k = key_add_part(key_root, key); key_split(k, p, c); p32 = key_win32ify(p); err = RegCreateKeyEx(HKEY_CURRENT_USER, p32.c_str(), 0, "", REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &handle, &disp); if (err == ERROR_SUCCESS) { err = RegSetValueEx(handle, c.c_str(), 0, REG_SZ, (BYTE *)v.c_str(), v.length() + 1); RegCloseKey(handle); rc = (err == ERROR_SUCCESS); } TRACE_EXIT(); return rc; } bool W32Configurator::set_config_value(const string &key, int v) { char buf[32]; sprintf(buf, "%d", v); return set_config_value(key, string(buf)); } bool W32Configurator::set_config_value(const string &key, long v) { char buf[32]; sprintf(buf, "%ld", v); return set_config_value(key, string(buf)); } bool W32Configurator::set_config_value(const string &key, bool v) { char buf[32]; sprintf(buf, "%d", v ? 1 : 0); return set_config_value(key, string(buf)); } bool W32Configurator::set_config_value(const string &key, double v) { char buf[32]; sprintf(buf, "%f", v); return set_config_value(key, string(buf)); } string W32Configurator::key_add_part(string s, string t) const { string ret = s; add_trailing_slash(ret); return ret + t; } void W32Configurator::key_split(const string &key, string &parent, string &child) const { const char *s = key.c_str(); const char *slash = strrchr(s, '/'); if (slash) { parent = key.substr(0, slash - s); child = slash + 1; } else { parent = ""; child = ""; } } string W32Configurator::key_win32ify(const string &key) const { string rc = key; strip_trailing_slash(rc); for (unsigned int i = 0; i < rc.length(); i++) { if (rc[i] == '/') { rc[i] = '\\'; } } return rc; } //! Removes the trailing '/'. void W32Configurator::strip_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] == '/') { key = key.substr(0, len - 1); } } } //! Adds add trailing '/' if it isn't there yet. void W32Configurator::add_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] != '/') { key += '/'; } } } workrave-1.10.50/backend/src/win32/Makefile.am0000644000175100001710000000241714221624106017601 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2008, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in if PLATFORM_OS_WINDOWS noinst_LTLIBRARIES = libworkrave-backend-win32.la sources = W32Configurator.cc \ W32InputMonitor.cc \ W32AlternateMonitor.cc \ W32LowLevelMonitor.cc \ W32InputMonitorFactory.cc \ W32ActiveSetup.cc \ Harpoon.cc \ ghmac.c endif libworkrave_backend_win32_la_SOURCES = ${sources} libworkrave_backend_win32_la_CXXFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 -D_WIN32_WINNT=0x0501 \ -I$(top_srcdir)/common/win32/harpoon/include/ \ -I$(top_srcdir)/common/win32/harpoonHelper/include/ \ @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ libworkrave_backend_win32_la_CFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 -D_WIN32_WINNT=0x0600\ @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc) \ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) \ $(wildcard $(srcdir)/*.icc) workrave-1.10.50/backend/src/win32/W32InputMonitor.hh0000644000175100001710000000271414221624106021031 0ustar00gdm00000000000000// W32InputMonitor.hh --- ActivityMonitor for W32 // // Copyright (C) 2002, 2004, 2006, 2007 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32INPUTMONITOR_HH #define W32INPUTMONITOR_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include #include "InputMonitor.hh" typedef union HarpoonEventUnion HarpoonEvent; //! Activity monitor for a local X server. class W32InputMonitor : public InputMonitor { public: //! Constructor. W32InputMonitor(); //! Destructor. virtual ~W32InputMonitor(); bool init(); void terminate(); private: static W32InputMonitor *singleton; static void on_harpoon_event(HarpoonEvent *event); }; #endif // W32INPUTMONITOR_HH workrave-1.10.50/backend/src/win32/ghmac.h0000644000175100001710000000340614221624106016774 0ustar00gdm00000000000000/* ghmac.h - secure data hashing * * Copyright (C) 2011 Stef Walter * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, see . */ #ifndef __G_HMAC_H__ #define __G_HMAC_H__ #include #include #include "glib/gchecksum.h" #if !GLIB_CHECK_VERSION(2, 30, 0) G_BEGIN_DECLS /** * GHmac: * * An opaque structure representing a HMAC operation. * To create a new GHmac, use g_hmac_new(). To free * a GHmac, use g_hmac_unref(). * * Since: 2.30 */ typedef struct _GHmac GHmac; GHmac *g_hmac_new(GChecksumType digest_type, const guchar *key, gsize key_len); GHmac *g_hmac_copy(const GHmac *hmac); GHmac *g_hmac_ref(GHmac *hmac); void g_hmac_unref(GHmac *hmac); void g_hmac_update(GHmac *hmac, const guchar *data, gssize length); const gchar *g_hmac_get_string(GHmac *hmac); void g_hmac_get_digest(GHmac *hmac, guint8 *buffer, gsize *digest_len); gchar *g_compute_hmac_for_data(GChecksumType digest_type, const guchar *key, gsize key_len, const guchar *data, gsize length); gchar *g_compute_hmac_for_string(GChecksumType digest_type, const guchar *key, gsize key_len, const gchar *str, gssize length); G_END_DECLS #endif #endif workrave-1.10.50/backend/src/win32/W32ActiveSetup.cc0000644000175100001710000003575714221624106020621 0ustar00gdm00000000000000// W32ActiveSetup.cc --- Active Setup for Workrave // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // /* Active Setup is post install data that's set by the Inno Setup installer. After Active Setup data is set it will be run for each user the next time that user logs on. However, in the case that the user hasn't yet logged off and then back on, any programs specified by Active Setup have not yet ran. In order to ensure the proper behavior of Workrave, Workrave's Active Setup key(s) should always be checked before Workrave loads, and run if they haven't already. This module emulates the behavior of Microsoft's Active Setup. ##############################################WARNING############################################## Active Setup is undocumented and can be dangerous if not used properly. Its behavior is blocking and there is no interaction available to the user in a typical case. In a typical case it will block the explorer shell, with explorer running the Active Setup programs hidden from view and waiting for them to complete before completing user initialization on logon. This emulation is very similar. It was designed for the Workrave application to block before continuing execution until Workrave's Active Setup programs have run and terminated. Therefore, it is extremely important that any program put under the purview of Active Setup does not require any user interaction, does not have any error message boxes, and has all its dependencies (so there are no message boxes about failure to load libraries). The Workrave Active Setup program (I've only written one so far -- to change a user's autorun settings) takes an extra step, to void user interaction during any potential crash. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include #include #include #include #include "W32ActiveSetup.hh" using namespace std; /* using 32-bit registry view on 32-bit OS, 64-bit registry view on 64-bit OS http://support.microsoft.com/kb/907660 */ const REGSAM W32ActiveSetup::registry_view = (W32ActiveSetup::is_os_64() ? KEY_WOW64_64KEY : KEY_WOW64_32KEY); /* The subkey path to HKLM/HKCU Active Setup GUIDs */ const wchar_t W32ActiveSetup::component_path[] = L"SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\"; /* Right now there is only one GUID key set by Inno and it's used by Workrave's 'ChangeAutorun' program, which adds/updates each user's Workrave autorun setting. */ const wchar_t W32ActiveSetup::guid_autorun[] = L"{180B0AC5-6FDA-438B-9466-C9894322B6BA}"; /* W32ActiveSetup::is_os_64() returns true if the windows operating system is 64-bit */ bool W32ActiveSetup::is_os_64() { SYSTEM_INFO si = { 0, }; GetNativeSystemInfo(&si); return ((si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_IA64) || (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)); } /* W32ActiveSetup::get_user_profile_dir() returns the path contained in environment variable %USERPROFILE% */ const WCHAR * W32ActiveSetup::get_user_profile_dir() { static vector buffer; if (buffer.size() && *buffer.begin()) return &buffer[0]; WCHAR *env_var = L"USERPROFILE"; DWORD ret = GetEnvironmentVariableW(env_var, NULL, 0); if (!ret || (ret > 32767)) return NULL; buffer.resize(ret); ret = GetEnvironmentVariableW(env_var, &buffer[0], buffer.size()); if (!ret || (ret >= buffer.size()) || !*buffer.begin()) return NULL; return &buffer[0]; } /* W32ActiveSetup::check_guid() Check for the existence of an Active Setup GUID key (HKLM or HKCU). returns true if the key exists */ bool W32ActiveSetup::check_guid(const enum reg reg, // HKLM or HKCU const wstring &guid) { HKEY root_hkey = NULL; switch (reg) { case HKLM: root_hkey = HKEY_LOCAL_MACHINE; break; case HKCU: root_hkey = HKEY_CURRENT_USER; break; default: return false; } wstring keyname(W32ActiveSetup::component_path); keyname += guid; HKEY hkey = NULL; LONG ret = RegOpenKeyExW(root_hkey, keyname.c_str(), 0, (STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | W32ActiveSetup::registry_view), &hkey); if (ret) return false; CloseHandle(hkey); return true; } /* W32ActiveSetup::is_guid_enabled() returns true if the HKLM Active Setup GUID key exists and the key value "IsInstalled" either does not exist or does exist and does not have both a REG_DWORD type and data 0. Those conditions are based on the my testing in Windows XP SP3 x86. In most cases for GUID keys "IsInstalled" exists with a REG_DWORD type and data 1, in which case this function returns true. */ bool W32ActiveSetup::is_guid_enabled(const wstring &guid) { if (guid.empty()) return false; wstring keyname(W32ActiveSetup::component_path); keyname += guid; HKEY hkey = NULL; LONG ret = RegOpenKeyExW( HKEY_LOCAL_MACHINE, keyname.c_str(), 0, (STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | W32ActiveSetup::registry_view), &hkey); if (ret) return false; DWORD type = REG_NONE; DWORD data = 0; DWORD bytelen = sizeof(data); ret = RegQueryValueExW(hkey, L"IsInstalled", NULL, &type, (LPBYTE)&data, &bytelen); CloseHandle(hkey); if (!ret && (type == REG_DWORD) && (bytelen == sizeof(data)) && !data) return false; return true; } /* W32ActiveSetup::read_from_registry_value() Get the REG_SZ data from a registry value in an Active Setup GUID key (HKLM or HKCU). Before this function does anything else 'data' is cleared. 'data' may be empty even on success. returns true if the value exists in the registry. 'data' receives the value's data, if any. */ bool W32ActiveSetup::read_from_registry_value(const enum reg reg, // HKLM or HKCU const wstring &guid, const wstring &value, wstring &data // out ) { data.clear(); if (guid.empty() || value.empty()) return false; HKEY root_hkey = NULL; switch (reg) { case HKLM: root_hkey = HKEY_LOCAL_MACHINE; break; case HKCU: root_hkey = HKEY_CURRENT_USER; break; default: return false; } wstring keyname(W32ActiveSetup::component_path); keyname += guid; HKEY hkey = NULL; LONG ret = RegOpenKeyExW(root_hkey, keyname.c_str(), 0, (STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | W32ActiveSetup::registry_view), &hkey); if (ret) return false; DWORD type = REG_NONE, bytelen = 0; ret = RegQueryValueExW(hkey, value.c_str(), NULL, &type, NULL, &bytelen); if (ret || !bytelen || (type != REG_SZ)) { CloseHandle(hkey); return false; } vector buffer(bytelen + sizeof(wchar_t)); ret = RegQueryValueExW(hkey, value.c_str(), NULL, &type, &buffer[0], &bytelen); CloseHandle(hkey); if (ret || (type != REG_SZ)) return false; data = (wchar_t *)&buffer[0]; return true; } /* W32ActiveSetup::write_to_registry_value() Set a value and its REG_SZ data in an Active Setup GUID key (HKCU only). If the HKCU Active Setup GUID key does not exist this function will create it. If 'value' is empty this function sets the GUID key's default value. 'data' can also be an empty string. returns true if the value and its data (if any) were set in the registry. */ bool W32ActiveSetup::write_to_registry_value(const wstring &guid, const wstring &value, const wstring &data) { if (guid.empty()) return false; wstring keyname(W32ActiveSetup::component_path); keyname += guid; HKEY hkey = NULL; LONG ret = RegCreateKeyExW( HKEY_CURRENT_USER, keyname.c_str(), 0, NULL, 0, (KEY_READ | KEY_WRITE | W32ActiveSetup::registry_view), NULL, &hkey, NULL); if (ret) return false; ret = RegSetValueExW(hkey, value.c_str(), 0, REG_SZ, (const BYTE *)data.c_str(), ((data.length() + 1) * sizeof(wchar_t))); CloseHandle(hkey); return !ret; } /* W32ActiveSetup::get_version() Converts the REG_SZ data from value "Version" in an Active Setup GUID key (HKLM or HKCU) into a vector of 4 DWORDs. Active Setup observations: A valid "Version" value string of a GUID key has four parts or less, separated by comma. If a number is greater than dword max the version is still valid, and that number is wrapped around. "2012,05,10,023701" returns DWORDs 2012, 5, 10, 23701 "1" returns DWORDs 1, 0, 0, 0 "" or "0" returns DWORDs 0, 0, 0, 0 "1,2,3,4,5" (invalid) returns DWORDs 0, 0, 0, 0 "25,4294967299,77,4" returns DWORDs 25, 3, 77, 4 Before this function does anything else 'version' is cleared and then resized to 4 DWORDs. returns true if the "Version" value exists in the registry and it's valid. 'version' receives the version as a vector of 4 DWORDs. */ bool W32ActiveSetup::get_version(const enum reg reg, // HKLM or HKCU const wstring &guid, vector &version // out ) { version.clear(); version.resize(4, 0); wstring data; if (!read_from_registry_value(reg, guid, L"Version", data)) return false; /* testing shows anything other than these characters invalidates the version string. Active Setup treats it the same as a version where all parts are zeroes */ size_t pos = data.find_first_not_of(L"0123456789,"); if (pos != wstring::npos) return false; /* testing shows if there is more than 3 commas that invalidates the version string. Active Setup treats it the same as a version where all parts are zeroes */ for (unsigned i = 0, count = 0; i < data.length(); ++i) { if (data[i] == L',') { ++count; if (count > 3) return false; } } wstringstream ss(data); for (unsigned i = 0; i < 4; ++i) { wstring s; if (!getline(ss, s, L',')) break; for (unsigned j = 0; j < s.length(); ++j) { version[i] *= 10; version[i] += s[j] - 48; } } return true; } /* W32ActiveSetup::set_version() Converts a vector of 4 DWORDs to a comma separated string of unsigned numbers and sets it as the REG_SZ data for the "Version" value of an Active Setup GUID key. returns true on success */ bool W32ActiveSetup::set_version(const wstring &guid, const vector &version) { if (version.size() != 4) return false; wstringstream ss; ss << version[0] << "," << version[1] << "," << version[2] << "," << version[3]; return write_to_registry_value(guid, L"Version", ss.str()); } /* W32ActiveSetup::update() This function emulates Active Setup behavior. It should be called synchronously by the main thread before Workrave is initialized. The way Active Setup basically works is it checks the HKLM GUID key for a "Version" REG_SZ value and compares it to the same HKCU GUID key's "Version" value. If the HKCU GUID key does not exist, or its "Version" value does not exist, or its version is less than the HKLM version then Active Setup will add/update the HKCU GUID key by copying any HKLM "Version" value to the HKCU "Version" value, and then execute the string contained in HKLM GUID key's "StubPath" value, if any. http://www.sepago.de/helge/2010/04/22/active-setup-explained/ returns true if the HKLM Active Setup GUID key needed to be added/updated in HKCU Active Setup. */ bool W32ActiveSetup::update(const wstring &guid) { if (guid.empty() || !check_guid(HKLM, guid) || !is_guid_enabled(guid)) return false; vector hklm_version; get_version(HKLM, guid, hklm_version); if (check_guid(HKCU, guid)) { vector hkcu_version; get_version(HKCU, guid, hkcu_version); if (hkcu_version >= hklm_version) return false; } if (!set_version(guid, hklm_version)) return false; // At this point HKCU Active Setup has been updated so any return should be true wstring data; if (read_from_registry_value(HKLM, guid, L"Locale", data)) write_to_registry_value(guid, L"Locale", data); if (!read_from_registry_value(HKLM, guid, L"StubPath", data) || data.empty()) return true; vector buffer(data.begin(), data.end()); buffer.push_back(L'\0'); HANDLE thread = CreateThread(NULL, 0, create_process, &buffer[0], 0, NULL); if (thread) { WaitForSingleObject(thread, INFINITE); CloseHandle(thread); thread = NULL; } /* Active Setup only attempts to run the StubPath, it doesn't record whether or not it was successful in doing so. */ return true; } /* W32ActiveSetup::update_all() returns true if any of Workrave's HKLM Active Setup GUID keys needed to be installed in HKCU Active Setup. */ bool W32ActiveSetup::update_all() { /* For now there's only one entry, for setting up Workrave's autorun for each user */ return update(W32ActiveSetup::guid_autorun); } /* W32ActiveSetup::create_process() This is the starting function for a thread that creates a process and waits for it to terminate. */ DWORD WINAPI W32ActiveSetup::create_process(LPVOID lpParam) { DWORD exit_code = ((DWORD)-1); WCHAR *command = (WCHAR *)lpParam; STARTUPINFOW si = { sizeof(si), }; PROCESS_INFORMATION pi = { INVALID_HANDLE_VALUE, INVALID_HANDLE_VALUE, }; if (!command || !*command) return exit_code; void *OldValue = NULL; bool wow64_disabled = false; BOOL(WINAPI * pWow64DisableWow64FsRedirection)(void **) = NULL; BOOL(WINAPI * pWow64RevertWow64FsRedirection)(void *) = NULL; if (W32ActiveSetup::is_os_64()) { pWow64DisableWow64FsRedirection = (BOOL(WINAPI *)(void **))GetProcAddress(GetModuleHandleA("kernel32"), "Wow64DisableWow64FsRedirection"); pWow64RevertWow64FsRedirection = (BOOL(WINAPI *)(void *))GetProcAddress(GetModuleHandleA("kernel32"), "Wow64RevertWow64FsRedirection"); } if (pWow64DisableWow64FsRedirection && pWow64RevertWow64FsRedirection) wow64_disabled = !!pWow64DisableWow64FsRedirection(&OldValue); BOOL ret = CreateProcessW(NULL, command, NULL, NULL, FALSE, 0, NULL, get_user_profile_dir(), &si, &pi); if (wow64_disabled && pWow64DisableWow64FsRedirection && pWow64RevertWow64FsRedirection) wow64_disabled = !pWow64RevertWow64FsRedirection(OldValue); if (ret) { if (pi.hProcess != INVALID_HANDLE_VALUE) { WaitForSingleObject(pi.hProcess, INFINITE); if (!GetExitCodeProcess(pi.hProcess, &exit_code)) exit_code = ((DWORD)-1); CloseHandle(pi.hProcess); } if (pi.hThread != INVALID_HANDLE_VALUE) CloseHandle(pi.hThread); } return exit_code; } workrave-1.10.50/backend/src/win32/W32Configurator.hh0000644000175100001710000000455614221624106021032 0ustar00gdm00000000000000// W32Configurator.hh // // Copyright (C) 2002, 2006, 2007, 2012 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32CONFIGURATOR_HH #define W32CONFIGURATOR_HH #include #include #include #include #include "IConfigBackend.hh" #include "ConfigBackendAdapter.hh" class W32Configurator : public virtual IConfigBackend , public virtual ConfigBackendAdapter { public: W32Configurator(); virtual ~W32Configurator(); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_config_value(const std::string &key, std::string &out) const; virtual bool get_config_value(const std::string &key, bool &out) const; virtual bool get_config_value(const std::string &key, int &out) const; virtual bool get_config_value(const std::string &key, long &out) const; virtual bool get_config_value(const std::string &key, double &out) const; virtual bool set_config_value(const std::string &key, std::string v); virtual bool set_config_value(const std::string &key, int v); virtual bool set_config_value(const std::string &key, long v); virtual bool set_config_value(const std::string &key, bool v); virtual bool set_config_value(const std::string &key, double v); private: std::string key_win32ify(const std::string &key) const; std::string key_add_part(std::string s, std::string t) const; void key_split(const std::string &key, std::string &parent, std::string &child) const; void strip_trailing_slash(std::string &key) const; void add_trailing_slash(std::string &key) const; std::string key_root; PHKEY key_root_handle; }; #endif // W32CONFIGURATOR_HH workrave-1.10.50/backend/src/win32/W32ActiveSetup.hh0000644000175100001710000000405314221624106020614 0ustar00gdm00000000000000// W32ActiveSetup.hh --- Active Setup for Workrave // // Copyright (C) 2012 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef W32ACTIVESETUP_HH #define W32ACTIVESETUP_HH class W32ActiveSetup { public: static const REGSAM registry_view; static const wchar_t component_path[]; static const wchar_t guid_autorun[]; static const WCHAR *get_user_profile_dir(); static bool update(const std::wstring &guid); static bool update_all(); private: enum reg { HKCU, HKLM }; static bool is_os_64(); static bool check_guid(const enum reg reg, // HKLM or HKCU const std::wstring &guid); static bool is_guid_enabled(const std::wstring &guid); static bool read_from_registry_value(const enum reg reg, // HKLM or HKCU const std::wstring &guid, const std::wstring &value, std::wstring &data // out ); static bool write_to_registry_value(const std::wstring &guid, const std::wstring &value, const std::wstring &data); static bool get_version(const enum reg reg, // HKLM or HKCU const std::wstring &guid, std::vector &version // out ); static bool set_version(const std::wstring &guid, const std::vector &version); static DWORD WINAPI create_process(LPVOID lpParam); }; #endif // W32ACTIVESETUP_HH workrave-1.10.50/backend/src/GNetSocketDriver.cc0000644000175100001710000001562214221624106020276 0ustar00gdm00000000000000// GnetSocketDriver.cc // // Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_DISTRIBUTION) && defined(HAVE_GNET) # define GNET_EXPERIMENTAL # include "debug.hh" # include "GNetSocketDriver.hh" using namespace std; //! Creates a new listen socket. GNetSocketServer::GNetSocketServer() : socket(NULL) , iochannel(NULL) , watch_flags(0) , watch(0) { } //! Destructs the listen socket. GNetSocketServer::~GNetSocketServer() { # ifndef HAVE_GNET2 if (iochannel != NULL) { // this causes troubles with gnet2 g_io_channel_unref(iochannel); } # endif if (socket != NULL) { gnet_tcp_socket_delete(socket); } if (watch != 0) { g_source_remove(watch); } } //! Listen at the specified port. void GNetSocketServer::listen(int port) { // set_listener MUST have been called. g_assert(listener != NULL); socket = gnet_tcp_socket_server_new_with_port(port); if (socket == NULL) { throw SocketException("listen error"); } gnet_tcp_socket_server_accept_async(socket, static_async_accept, this); } //! GNet has accepted a new connection. void GNetSocketServer::static_async_accept(GTcpSocket *server, GTcpSocket *client, gpointer data) { GNetSocketServer *s = (GNetSocketServer *)data; s->async_accept(server, client); } //! GNet has accepted a new connection. void GNetSocketServer::async_accept(GTcpSocket *server, GTcpSocket *client) { (void)server; try { GNetSocket *socket = new GNetSocket(client); listener->socket_accepted(this, socket); } catch (...) { // Make sure that no exception reach the glib mainloop. } } //! GNet reports that data is ready to be read. gboolean GNetSocket::static_async_io(GIOChannel *iochannel, GIOCondition condition, gpointer data) { GNetSocket *con = (GNetSocket *)data; return con->async_io(iochannel, condition); } //! GNet reports that data is ready to be read. bool GNetSocket::async_io(GIOChannel *iochannel, GIOCondition condition) { (void)iochannel; bool ret = true; try { // check for socket error if (condition & (G_IO_ERR | G_IO_HUP | G_IO_NVAL)) { if (listener != NULL) { close(); listener->socket_closed(this, user_data); } ret = false; } // process input if (ret && (condition & G_IO_IN)) { if (listener != NULL) { listener->socket_io(this, user_data); } } } catch (...) { // Make sure that no exception reach the glib mainloop. close(); ret = false; } return ret; } //! GNet reports that the connection is established. void GNetSocket::async_connected(GTcpSocket *socket, GInetAddr *ia, GTcpSocketConnectAsyncStatus status) { try { if (status != GTCP_SOCKET_CONNECT_ASYNC_STATUS_OK) { gnet_tcp_socket_delete(socket); socket = NULL; if (listener != NULL) { listener->socket_closed(this, user_data); } } else { socket = socket; iochannel = gnet_tcp_socket_get_io_channel(socket); watch_flags = G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL; watch = g_io_add_watch(iochannel, (GIOCondition)watch_flags, static_async_io, this); if (listener != NULL) { listener->socket_connected(this, user_data); } gnet_inetaddr_delete(ia); } } catch (...) { // Make sure that no exception reach the glib mainloop. } } //! Connection established. void GNetSocket::static_async_connected(GTcpSocket *socket, GTcpSocketConnectAsyncStatus status, gpointer data) { GNetSocket *con = (GNetSocket *)data; GInetAddr *ia = NULL; if (socket != NULL) { ia = gnet_tcp_socket_get_remote_inetaddr(socket); } con->async_connected(socket, ia, status); } //! Creates a new connection. GNetSocket::GNetSocket(GTcpSocket *socket) : socket(socket) { iochannel = gnet_tcp_socket_get_io_channel(socket); watch_flags = G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL; watch = g_io_add_watch(iochannel, (GIOCondition)watch_flags, static_async_io, this); } //! Creates a new connection. GNetSocket::GNetSocket() : socket(NULL) , iochannel(NULL) , watch_flags(0) , watch(0) { } //! Destructs the connection. GNetSocket::~GNetSocket() { if (socket != NULL) { gnet_tcp_socket_delete(socket); } if (watch != 0) { g_source_remove(watch); } } //! Connects to the specified host. void GNetSocket::connect(const string &host, int port) { gnet_tcp_socket_connect_async(host.c_str(), port, static_async_connected, this); } //! Read from the connection. void GNetSocket::read(void *buf, int count, int &bytes_read) { if (iochannel == NULL) { throw SocketException("socket not connected"); } gsize num_read = 0; GIOError error = g_io_channel_read(iochannel, (char *)buf, (gsize)count, &num_read); if (error != G_IO_ERROR_NONE) { throw SocketException("read error"); } bytes_read = (int)num_read; } //! Write to the connection. void GNetSocket::write(void *buf, int count, int &bytes_written) { if (iochannel == NULL) { throw SocketException("socket not connected"); } gsize num_written = 0; GIOError error = g_io_channel_write(iochannel, (char *)buf, (gsize)count, &num_written); if (error != G_IO_ERROR_NONE) { throw SocketException("write error"); } bytes_written = (int)num_written; } //! Close the connection. void GNetSocket::close() { # ifndef HAVE_GNET2 if (iochannel != NULL) { // this causes troubles with gnet2 g_io_channel_unref(iochannel); iochannel = NULL; } # endif if (socket != NULL) { gnet_tcp_socket_delete(socket); socket = NULL; } if (watch != 0) { g_source_remove(watch); } watch = 0; watch_flags = 0; } //! Create a new socket ISocket * GNetSocketDriver::create_socket() { return new GNetSocket(); } //! Create a new listen socket ISocketServer * GNetSocketDriver::create_server() { return new GNetSocketServer(); } #endif workrave-1.10.50/backend/src/PacketBuffer.cc0000644000175100001710000002211414221624106017447 0ustar00gdm00000000000000// Control.cc --- The main controller // // Copyright (C) 2001, 2002, 2003, 2005, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include "PacketBuffer.hh" PacketBuffer::PacketBuffer() : buffer(NULL) , read_ptr(NULL) , write_ptr(NULL) , buffer_size(0) , original_buffer(NULL) , original_buffer_size(0) { } PacketBuffer::~PacketBuffer() { narrow(0, -1); if (buffer != NULL) { g_free(buffer); } } void PacketBuffer::create(int size) { narrow(0, -1); if (buffer != NULL) { g_free(buffer); } if (size == 0) { size = 1024; } buffer = g_new(guint8, size); read_ptr = buffer; write_ptr = buffer; buffer_size = size; } void PacketBuffer::resize(int size) { // TRACE_ENTER_MSG("PacketBuffer::resize", size); narrow(0, -1); if (size == 0) { size = 1024; } if (size != buffer_size && buffer != NULL) { int read_offset = read_ptr - buffer; int write_offset = write_ptr - buffer; if (read_offset >= size) { read_offset = size - 1; } if (write_offset >= size) { write_offset = size - 1; } // TRACE_MSG(read_offset << " " << write_offset); buffer = g_renew(guint8, buffer, size); // TRACE_MSG(buffer); read_ptr = buffer + read_offset; write_ptr = buffer + write_offset; buffer_size = size; } // TRACE_EXIT(); } void PacketBuffer::grow(int size) { // TRACE_ENTER_MSG("PacketBuffer::grow()", size) if (size < GROW_SIZE) { size = GROW_SIZE; } resize(buffer_size + size); // TRACE_EXIT(); } void PacketBuffer::pack(const guint8 *data, int size) { if (write_ptr + size + 2 >= buffer + buffer_size) { grow(size + 2); } pack_ushort(size); memcpy(write_ptr, data, size); write_ptr += size; } void PacketBuffer::pack_raw(const guint8 *data, int size) { if (write_ptr + size >= buffer + buffer_size) { grow(size); } memcpy(write_ptr, data, size); write_ptr += size; } void PacketBuffer::pack_string(const std::string &data) { pack_string(data.c_str()); } void PacketBuffer::pack_string(const gchar *data) { int size = 0; if (data != NULL) { size = strlen(data); } if (write_ptr + size + 2 >= buffer + buffer_size) { grow(size + 2); } pack_ushort(size); if (size > 0) { memcpy(write_ptr, data, size); write_ptr += size; } } void PacketBuffer::poke_string(int pos, const gchar *data) { int size = 0; if (data != NULL) { size = strlen(data); } if (pos + size + 2 >= buffer_size) { grow(size + 2); } poke_ushort(pos, size); if (size > 0) { memcpy(buffer + pos + 2, data, size); } } void PacketBuffer::pack_ushort(guint16 data) { if (write_ptr + 2 >= buffer + buffer_size) { grow(2); } guint8 *w = (guint8 *)write_ptr; w[0] = ((data & 0x0000ff00) >> 8); w[1] = ((data & 0x000000ff)); write_ptr += 2; } void PacketBuffer::pack_ulong(guint32 data) { if (write_ptr + 4 >= buffer + buffer_size) { grow(4); } guint8 *w = (guint8 *)write_ptr; w[0] = ((data & 0xff000000) >> 24); w[1] = ((data & 0x00ff0000) >> 16); w[2] = ((data & 0x0000ff00) >> 8); w[3] = ((data & 0x000000ff)); write_ptr += 4; } void PacketBuffer::pack_byte(guint8 data) { if (write_ptr + 1 >= buffer + buffer_size) { grow(1); } write_ptr[0] = data; write_ptr++; } void PacketBuffer::poke_byte(int pos, guint8 data) { if (pos + 1 > buffer_size) { grow(pos + 1 - buffer_size); } buffer[pos] = data; } void PacketBuffer::poke_ushort(int pos, guint16 data) { if (pos + 2 > buffer_size) { grow(pos + 2 - buffer_size); } guint8 *w = (guint8 *)buffer; w[pos] = ((data & 0x0000ff00) >> 8); w[pos + 1] = ((data & 0x000000ff)); } int PacketBuffer::unpack(guint8 **data) { g_assert(data != NULL); int size = unpack_ushort(); guint8 *r = (guint8 *)read_ptr; if (read_ptr + size <= buffer + buffer_size) { *data = g_new(guint8, size); memcpy(*data, r, size); read_ptr += size; } else { size = 0; } return size; } int PacketBuffer::unpack_raw(guint8 **data, int size) { g_assert(data != NULL); guint8 *r = (guint8 *)read_ptr; if (read_ptr + size <= buffer + buffer_size) { *data = g_new(guint8, size); memcpy(*data, r, size); read_ptr += size; } else { size = 0; } return size; } gchar * PacketBuffer::unpack_string() { gchar *str = NULL; if (read_ptr + 2 <= buffer + buffer_size) { int length = unpack_ushort(); if (read_ptr + length <= buffer + buffer_size) { str = g_new(gchar, length + 1); for (int i = 0; i < length; i++) { str[i] = *read_ptr; read_ptr++; } str[length] = '\0'; } } return str; } guint32 PacketBuffer::unpack_ulong() { guint32 ret = 0; guint8 *r = (guint8 *)read_ptr; if (read_ptr + 4 <= buffer + buffer_size) { ret = (((guint32)(r[0]) << 24) + ((guint32)(r[1]) << 16) + ((guint32)(r[2]) << 8) + ((guint32)(r[3]))); read_ptr += 4; } return ret; } guint16 PacketBuffer::unpack_ushort() { guint16 ret = 0; guint8 *r = (guint8 *)read_ptr; if (read_ptr + 2 <= write_ptr) { ret = (r[0] << 8) + r[1]; read_ptr += 2; } return ret; } guint8 PacketBuffer::unpack_byte() { guint8 ret = 0; if (read_ptr + 1 <= write_ptr) { ret = read_ptr[0]; read_ptr++; } return ret; } int PacketBuffer::peek(int pos, guint8 **data) { g_assert(data != NULL); int size = peek_ushort(pos); if (read_ptr + 2 + pos + size <= buffer + buffer_size) { *data = g_new(guint8, size); memcpy(*data, read_ptr + 2 + pos, size); } else { size = 0; } return size; } gchar * PacketBuffer::peek_string(int pos) { gchar *str = NULL; if (read_ptr + pos + 2 <= buffer + buffer_size) { int length = peek_ushort(pos); if (read_ptr + 2 + pos + length <= buffer + buffer_size) { str = g_new(gchar, length + 1); memcpy(str, read_ptr + pos + 2, length); str[length] = '\0'; } } return str; } guint32 PacketBuffer::peek_ulong(int pos) { guint32 ret = 0; if (read_ptr + pos + 4 <= buffer + buffer_size) { guint8 *r = (guint8 *)read_ptr; ret = (((guint32)(r[pos]) << 24) + ((guint32)(r[pos + 1]) << 16) + ((guint32)(r[pos + 2]) << 8) + ((guint32)(r[pos + 3]))); } return ret; } guint16 PacketBuffer::peek_ushort(int pos) { guint16 ret = 0; if (read_ptr + pos + 2 <= write_ptr) { guint8 *r = (guint8 *)read_ptr; ret = (r[pos] << 8) + r[pos + 1]; } return ret; } guint8 PacketBuffer::peek_byte(int pos) { guint8 ret = 0; if (read_ptr + pos + 1 <= buffer + buffer_size) { ret = read_ptr[pos]; } return ret; } void PacketBuffer::reserve_size(int &pos) { pos = bytes_written(); pack_ushort(0); } void PacketBuffer::update_size(int pos) { poke_ushort(pos, bytes_written() - pos - 2); } int PacketBuffer::read_size(int &pos) { int size = unpack_ushort(); pos = bytes_read() + size; return size; } void PacketBuffer::skip_size(int &pos) { int size = (pos - bytes_read()); skip(size); } void PacketBuffer::insert(int pos, int size) { if (pos < bytes_written()) { int move = bytes_written() - pos; memmove(buffer + pos + size, buffer + pos, move); write_ptr += size; } } void PacketBuffer::narrow(int pos, int size) { // TRACE_ENTER_MSG("PacketBuffer::narrow", pos << " " << size); if (pos == 0 && size == -1) { if (original_buffer != NULL) { // unnarrow. buffer = original_buffer; buffer_size = original_buffer_size; original_buffer_size = 0; original_buffer = NULL; } } else { if (pos == -1) { pos = bytes_read(); } if (original_buffer == NULL) { original_buffer = buffer; original_buffer_size = buffer_size; } if (size > original_buffer_size - pos) { size = original_buffer_size - pos; } buffer = original_buffer + pos; buffer_size = size; read_ptr = buffer; } // TRACE_EXIT(); } workrave-1.10.50/backend/src/ConfiguratorFactory.cc0000644000175100001710000000420614221624106021102 0ustar00gdm00000000000000// ConfiguratorFactory.cc // // Copyright (C) 2007, 2008, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "Configurator.hh" #include "ConfiguratorFactory.hh" #ifdef HAVE_GLIB # include "GlibIniConfigurator.hh" #endif #ifdef HAVE_GSETTINGS # include "GSettingsConfigurator.hh" #endif #ifdef HAVE_GDOME # include "XMLConfigurator.hh" #endif #ifdef HAVE_GCONF # include "GConfConfigurator.hh" #endif #ifdef PLATFORM_OS_WINDOWS # include "W32Configurator.hh" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSConfigurator.hh" #endif //! Creates a configurator of the specified type. Configurator * ConfiguratorFactory::create(Format fmt) { Configurator *c = NULL; IConfigBackend *b = NULL; #ifdef HAVE_GDOME if (fmt == FormatXml) { b = new XMLConfigurator(); } else #endif #if HAVE_GSETTINGS if (fmt == FormatNative) { b = new GSettingsConfigurator(); } else #endif #ifdef HAVE_GCONF if (fmt == FormatNative) { b = new GConfConfigurator(); } else #endif #ifdef PLATFORM_OS_WINDOWS if (fmt == FormatNative) { b = new W32Configurator(); } else #endif #ifdef PLATFORM_OS_MACOS if (fmt == FormatNative) { b = new MacOSConfigurator(); } else #endif if (fmt == FormatIni) { #ifdef HAVE_GLIB b = new GlibIniConfigurator(); #else # error Not ported #endif } if (b != NULL) { c = new Configurator(b); } return c; } workrave-1.10.50/backend/src/DayTimePred.hh0000644000175100001710000000233714221624106017274 0ustar00gdm00000000000000// DayTimePred.hh --- Daily Time Predicate // // Copyright (C) 2001, 2002, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DAYTIMEPRED_HH #define DAYTIMEPRED_HH #include "TimePred.hh" class DayTimePred : public TimePred { public: bool init(std::string spec); bool init(int hour, int min); void set_last(time_t lastTime); time_t get_next(); time_t get_time_offset(); std::string to_string() const; private: int days_in_month(int month, int year); int time_cmp(int h1, int m1, int h2, int m2); int pred_hour; int pred_min; }; #endif // DAYTIMEPRED_HH workrave-1.10.50/backend/src/IdleLogManager.cc0000644000175100001710000006401714221624106017730 0ustar00gdm00000000000000// IdleLogManager.cc // // Copyright (C) 2003, 2004, 2005, 2007, 2009, 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include "nls.h" #include "debug.hh" #include #include #include #ifdef HAVE_UNISTD_H # include #endif #include "Util.hh" #include "IdleLogManager.hh" #include "TimeSource.hh" #include "PacketBuffer.hh" #define IDLELOG_MAXSIZE (4000) #define IDLELOG_MAXAGE (12 * 60 * 60) #define IDLELOG_INTERVAL (30 * 60) #define IDLELOG_VERSION (3) #define IDLELOG_INTERVAL_SIZE (17) //! Constructs a new idlelog manager. IdleLogManager::IdleLogManager(string myid, const TimeSource *time_source) { this->myid = myid; this->time_source = time_source; this->last_expiration_time = 0; } //! Update the idlelogs of all clients. void IdleLogManager::update_all_idlelogs(string master_id, ActivityState current_state) { TRACE_ENTER_MSG("IdleLogManager::update_all_idlelogs", master_id << " " << current_state); if (current_state == ACTIVITY_NOISE) { // Not interested in noise. current_state = ACTIVITY_IDLE; } for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = i->second; // Default: remote client is idle and not master ActivityState state = ACTIVITY_IDLE; bool master = false; // Only the master can be active. if (i->first == master_id) { // This client is master, sets its state. state = current_state; master = true; } // Update history. update_idlelog(info, state, master); // Remember current state/master status. info.master = master; info.state = state; } expire(); TRACE_EXIT(); } //! Resets the total active time of all clients. void IdleLogManager::reset() { for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; info.update_active_time(time_source->get_time()); info.total_active_time = 0; } } //! Initializes the idlelog manager. void IdleLogManager::init() { TRACE_ENTER("IdleLogManager::init()"); load(); if (clients.find(myid) == clients.end()) { TRACE_MSG("Didn't find myself"); ClientInfo &myinfo = clients[myid]; myinfo.current_interval = IdleInterval(1, time_source->get_time()); myinfo.client_id = myid; save(); } else { ClientInfo &myinfo = clients[myid]; myinfo.current_interval = IdleInterval(time_source->get_time(), time_source->get_time()); } TRACE_EXIT(); } //! Terminates the idlelog manager. void IdleLogManager::terminate() { save(); } //! Expire entries that are too old. void IdleLogManager::expire() { time_t current_time = time_source->get_time(); if (last_expiration_time == 0) { last_expiration_time = current_time + IDLELOG_INTERVAL; } else if (current_time <= last_expiration_time) { last_expiration_time = current_time + IDLELOG_INTERVAL; for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; expire(info); } } } //! Expire entries that are too old. void IdleLogManager::expire(ClientInfo &info) { if (info.idlelog.size() > IDLELOG_MAXSIZE) { info.idlelog.resize(IDLELOG_MAXSIZE); } time_t current_time = time_source->get_time(); int count = 0; for (IdleLogRIter i = info.idlelog.rbegin(); i != info.idlelog.rend(); i++) { IdleInterval &idle = info.idlelog.back(); if (idle.end_idle_time < current_time - IDLELOG_MAXAGE) { count++; } else { break; } } if (count != 0) { if (info.idlelog.size() > (size_t)count) { info.idlelog.resize(info.idlelog.size() - count); } else { info.idlelog.clear(); } } } //! Update the idle log of a single client. void IdleLogManager::update_idlelog(ClientInfo &info, ActivityState state, bool master) { (void)master; TRACE_ENTER_MSG("IdleLogManager::update_idlelog", ((int)state) << " " << master); // Did the state/master status change? bool changed = state != info.state; // RC: removed... || master != info.master; time_t current_time = time_source->get_time(); IdleInterval *idle = &(info.current_interval); idle->end_time = current_time; if (state == ACTIVITY_IDLE) { if (changed) { // State changed from active to idle: // update active time of last interval. info.update_active_time(current_time); // save front. if (info.idlelog.size() > 0) { IdleInterval *save_interval = &(info.idlelog.front()); if (save_interval->to_be_saved) { update_idlelog(info, *save_interval); save_interval->to_be_saved = false; } } // Push current info.current_interval.to_be_saved = true; info.idlelog.push_front(info.current_interval); // create a new (empty) idle interval. info.current_interval = IdleInterval(current_time, current_time); idle = &(info.current_interval); } else { // State remained idle. Update end time of idle interval. idle->end_idle_time = current_time; if (info.idlelog.size() > 0) { time_t total_idle = idle->end_idle_time - idle->begin_time; if (total_idle >= 10) { IdleInterval *save_interval = &(info.idlelog.front()); if (save_interval->to_be_saved) { TRACE_MSG("Saving"); update_idlelog(info, *save_interval); save_interval->to_be_saved = false; } } } } } else if (state == ACTIVITY_ACTIVE) { if (changed) { // State changed from idle to active: idle->end_idle_time = current_time; time_t total_idle = idle->end_idle_time - idle->begin_time; if (total_idle < 10 && info.idlelog.size() > 1) { // Idle period too short. remove it. and reuse previous IdleInterval &oldidle = info.idlelog.front(); if (oldidle.to_be_saved) { info.current_interval = oldidle; info.idlelog.pop_front(); idle = &(info.current_interval); } } // Update start time of last active period. info.last_active_time = 0; info.last_active_begin_time = current_time; } else if (info.last_active_begin_time != 0) { // State remained active. info.last_active_time = current_time - info.last_active_begin_time; } } info.last_update_time = current_time; dump_idlelog(info); TRACE_EXIT(); } //! Returns the total active time of all clients. time_t IdleLogManager::compute_total_active_time() { TRACE_ENTER("IdleLogManager::compute_total_active_time"); time_t current_time = time_source->get_time(); time_t active_time = 0; for (ClientMapIter it = clients.begin(); it != clients.end(); it++) { ClientInfo &info = (*it).second; info.update_active_time(current_time); active_time += info.total_active_time; } TRACE_EXIT(); return active_time; } //! Returns the active time since an idle period of a least the specified amount of time. time_t IdleLogManager::compute_active_time(int length) { TRACE_ENTER("IdleLogManager::compute_active_time"); time_t current_time = time_source->get_time(); // Number of client. int size = clients.size(); // Data for each client. IdleLogIter *iterators = new IdleLogIter[size]; IdleLogIter *end_iterators = new IdleLogIter[size]; bool *at_end = new bool[size]; time_t *active_time = new time_t[size]; // Init data for all clients. int count = 0; for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; iterators[count] = info.idlelog.begin(); end_iterators[count] = info.idlelog.end(); active_time[count] = 0; at_end[count] = true; info.update_active_time(current_time); count++; } // Number of simultaneous idle periods. int idle_count = 0; // Time of last unprocessed event. time_t last_time = -1; // Iterator of last unprocessed event. int last_iter = -1; // Stop criterium bool stop = false; // Begin and End time of idle perdiod. time_t end_idle_time = -1; while (!stop) { // Find latest event. last_time = -1; for (int i = 0; i < size; i++) { if (iterators[i] != end_iterators[i]) { IdleInterval &ii = *(iterators[i]); time_t t = at_end[i] ? ii.end_idle_time : ii.begin_time; if (last_time == -1 || t > last_time) { last_time = t; last_iter = i; } } } // Did we found one? if (last_time != -1) { IdleInterval &ii = *(iterators[last_iter]); if (at_end[last_iter]) { TRACE_MSG("End time " << ii.end_idle_time << " active " << ii.active_time); idle_count++; at_end[last_iter] = false; active_time[last_iter] += ii.active_time; end_idle_time = ii.end_idle_time; } else { TRACE_MSG("Begin time " << ii.begin_time); at_end[last_iter] = true; iterators[last_iter]++; if (idle_count == size) { TRACE_MSG("Common idle period of " << (end_idle_time - ii.begin_time)); if ((end_idle_time - ii.begin_time) > length) { stop = true; } } idle_count--; } } else { stop = true; } } time_t total_active_time = 0; for (int i = 0; i < size; i++) { TRACE_MSG("active time of " << i << " = " << active_time[i]); total_active_time += active_time[i]; } TRACE_MSG("total = " << total_active_time); delete[] iterators; delete[] end_iterators; delete[] at_end; delete[] active_time; TRACE_EXIT(); return total_active_time; } //! Computes the current idle time. time_t IdleLogManager::compute_idle_time() { TRACE_ENTER("IdleLogManager::compute_idle_time"); time_t current_time = time_source->get_time(); int count = 0; time_t latest_start_time = 0; for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; info.update_active_time(current_time); IdleInterval &idle = info.idlelog.front(); if (idle.active_time == 0) { count++; } if (idle.begin_time > latest_start_time) { latest_start_time = idle.begin_time; TRACE_MSG(current_time - latest_start_time); } } TRACE_MSG("count = " << count); if ((unsigned int)count != clients.size() + 1) { latest_start_time = current_time; } TRACE_MSG((current_time - latest_start_time)); TRACE_EXIT(); return current_time - latest_start_time; } //! Packs the idle interval to the buffer. void IdleLogManager::pack_idle_interval(PacketBuffer &buffer, const IdleInterval &idle) const { int pos = 0; buffer.reserve_size(pos); buffer.pack_byte(IDLELOG_VERSION); buffer.pack_ulong((guint32)idle.begin_time); buffer.pack_ulong((guint32)idle.end_idle_time); buffer.pack_ulong((guint32)idle.end_time); buffer.pack_ushort((guint32)idle.active_time); buffer.update_size(pos); } //! Unpacks the idle interval from the buffer. void IdleLogManager::unpack_idle_interval(PacketBuffer &buffer, IdleInterval &idle, time_t delta_time) const { int pos = 0; int size = buffer.read_size(pos); if (size > 0 && buffer.bytes_available() >= size) { /*int version = */ buffer.unpack_byte(); idle.begin_time = buffer.unpack_ulong() - delta_time; idle.end_idle_time = buffer.unpack_ulong() - delta_time; idle.end_time = buffer.unpack_ulong() - delta_time; idle.active_time = buffer.unpack_ushort(); buffer.skip_size(pos); } else { buffer.clear(); } } //! Packs the idlelog header to the buffer. void IdleLogManager::pack_idlelog(PacketBuffer &buffer, const ClientInfo &ci) const { time_t current_time = time_source->get_time(); // Add size. int pos = 0; buffer.reserve_size(pos); // Pack buffer.pack_ulong((guint32)current_time); buffer.pack_string(ci.client_id.c_str()); buffer.pack_ulong((guint32)ci.total_active_time); buffer.pack_byte(ci.master); buffer.pack_byte(ci.state); buffer.pack_ushort(ci.idlelog.size()); buffer.update_size(pos); } //! Unpacks the idlelog header from the buffer. void IdleLogManager::unpack_idlelog(PacketBuffer &buffer, ClientInfo &ci, time_t &pack_time, int &num_intervals) const { int pos = 0; int size = buffer.read_size(pos); if (size > 0 && buffer.bytes_available() >= size) { pack_time = buffer.unpack_ulong(); char *id = buffer.unpack_string(); if (id != NULL) { ci.client_id = id; } ci.total_active_time = buffer.unpack_ulong(); ci.master = buffer.unpack_byte() != 0; ci.state = (ActivityState)buffer.unpack_byte(); num_intervals = buffer.unpack_ushort(); g_free(id); buffer.skip_size(pos); } else { buffer.clear(); } } //! Removes the idlelog specified in the buffer. void IdleLogManager::unlink_idlelog(PacketBuffer &buffer) const { TRACE_ENTER("IdleLogManager::unlink_idlelog()"); int pos = 0; int size = buffer.read_size(pos); if (size > 0 && buffer.bytes_available() >= size) { buffer.unpack_ulong(); // skip pack time. char *id = buffer.unpack_string(); if (id != NULL) { stringstream ss; ss << Util::get_home_directory(); ss << "idlelog." << id << ".log" << ends; #ifdef PLATFORM_OS_WINDOWS _unlink(ss.str().c_str()); #else unlink(ss.str().c_str()); #endif g_free(id); } buffer.skip_size(pos); } else { buffer.clear(); } TRACE_EXIT(); } //! Saves the idlelog index. void IdleLogManager::save_index() { TRACE_ENTER("IdleLogManager::save_index()"); PacketBuffer buffer; buffer.create(); buffer.pack_ushort(IDLELOG_VERSION); buffer.pack_string(myid.c_str()); for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; info.update_active_time(time_source->get_time()); TRACE_MSG("Saving " << i->first << " " << info.client_id); pack_idlelog(buffer, info); } stringstream ss; ss << Util::get_home_directory(); ss << "idlelog.idx" << ends; ofstream file(ss.str().c_str(), ios::binary); file.write(buffer.get_buffer(), buffer.bytes_written()); file.close(); TRACE_EXIT(); } //! Loads the idlelog index. void IdleLogManager::load_index() { TRACE_ENTER("IdleLogManager::load()"); stringstream ss; ss << Util::get_home_directory(); ss << "idlelog.idx" << ends; bool exists = Util::file_exists(ss.str()); if (exists) { TRACE_MSG("File exists - ok"); // Open file ifstream file(ss.str().c_str(), ios::binary); // get file size using buffer's members filebuf *pbuf = file.rdbuf(); int size = pbuf->pubseekoff(0, ios::end, ios::in); pbuf->pubseekpos(0, ios::in); TRACE_MSG("Size - " << size); PacketBuffer buffer; buffer.create(size); file.read(buffer.get_buffer(), size); file.close(); buffer.write_ptr += size; // Read int version = buffer.unpack_ushort(); TRACE_MSG("Version - " << version); if (version == IDLELOG_VERSION) { TRACE_MSG("Version - ok"); char *id = buffer.unpack_string(); if (id != NULL) { TRACE_MSG("id = " << id); } while (buffer.bytes_available() > 0) { ClientInfo info; int num_intervals; time_t pack_time; unpack_idlelog(buffer, info, pack_time, num_intervals); info.master = false; info.state = ACTIVITY_IDLE; info.last_update_time = pack_time; TRACE_MSG("Add client " << info.client_id); clients[info.client_id] = info; } g_free(id); } else { TRACE_MSG("Old version - deleting logs of old version"); char *id = buffer.unpack_string(); if (id != NULL) { TRACE_MSG("id = " << id); } while (buffer.bytes_available() > 0) { unlink_idlelog(buffer); } g_free(id); } } TRACE_EXIT(); } //! Saves the idlelog for the specified client. void IdleLogManager::save_idlelog(ClientInfo &info) { info.update_active_time(time_source->get_time()); PacketBuffer buffer; buffer.create(); for (IdleLogRIter i = info.idlelog.rbegin(); i != info.idlelog.rend(); i++) { IdleInterval &idle = *i; pack_idle_interval(buffer, idle); } stringstream ss; ss << Util::get_home_directory(); ss << "idlelog." << info.client_id << ".log" << ends; ofstream file(ss.str().c_str(), ios::binary); file.write(buffer.get_buffer(), buffer.bytes_written()); file.close(); } //! Loads the idlelog for the specified client. void IdleLogManager::load_idlelog(ClientInfo &info) { TRACE_ENTER("IdleLogManager::load_idlelog()"); time_t current_time = time_source->get_time(); stringstream ss; ss << Util::get_home_directory(); ss << "idlelog." << info.client_id << ".log" << ends; // Open file ifstream file(ss.str().c_str(), ios::binary); // get file size using buffer's members filebuf *pbuf = file.rdbuf(); int size = pbuf->pubseekoff(0, ios::end, ios::in); pbuf->pubseekpos(0, ios::in); // Process it. int num_intervals = size / IDLELOG_INTERVAL_SIZE; if (num_intervals * IDLELOG_INTERVAL_SIZE == size) { if (num_intervals > IDLELOG_MAXSIZE) { TRACE_MSG("Skipping " << (num_intervals - IDLELOG_MAXSIZE) << " intervals"); int skip = (num_intervals - IDLELOG_MAXSIZE) * IDLELOG_INTERVAL_SIZE; file.seekg(skip); size -= skip; num_intervals = IDLELOG_MAXSIZE; } // Create buffer and load data. PacketBuffer buffer; buffer.create(size); file.read(buffer.get_buffer(), size); file.close(); buffer.write_ptr += size; TRACE_MSG("loading " << num_intervals << " intervals"); for (int i = 0; i < num_intervals; i++) { IdleInterval idle; unpack_idle_interval(buffer, idle, 0); if (idle.end_idle_time >= current_time - IDLELOG_MAXAGE) { info.idlelog.push_front(idle); } } if (info.idlelog.size() > 0) { IdleInterval &idle = info.idlelog.back(); idle.begin_time = 1; } } dump_idlelog(info); fix_idlelog(info); dump_idlelog(info); TRACE_EXIT(); } //! Loads the entire idlelog. void IdleLogManager::load() { load_index(); for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; load_idlelog(info); } } //! Saves the entire idlelog. void IdleLogManager::save() { save_index(); for (ClientMapIter i = clients.begin(); i != clients.end(); i++) { ClientInfo &info = (*i).second; save_idlelog(info); } } //! Adds the specified idle interval to persistent storage. void IdleLogManager::update_idlelog(ClientInfo &info, const IdleInterval &idle) { info.update_active_time(time_source->get_time()); PacketBuffer buffer; buffer.create(); pack_idle_interval(buffer, idle); stringstream ss; ss << Util::get_home_directory(); ss << "idlelog." << info.client_id << ".log" << ends; ofstream file(ss.str().c_str(), ios::app | ios::binary); file.write(buffer.get_buffer(), buffer.bytes_written()); file.close(); save_index(); } void IdleLogManager::get_idlelog(PacketBuffer &buffer) { TRACE_ENTER("IdleLogManager::get_idlelog"); // Information about me. ClientInfo &myinfo = clients[myid]; // First make sure that all data is up-to-date. myinfo.update_active_time(time_source->get_time()); // Pack header. pack_idlelog(buffer, myinfo); for (IdleLogIter i = myinfo.idlelog.begin(); i != myinfo.idlelog.end(); i++) { pack_idle_interval(buffer, *i); } TRACE_EXIT(); } void IdleLogManager::set_idlelog(PacketBuffer &buffer) { TRACE_ENTER("IdleLogManager::set_idlelog"); time_t delta_time = 0; time_t pack_time = 0; int num_intervals = 0; ClientInfo info; unpack_idlelog(buffer, info, pack_time, num_intervals); delta_time = pack_time - time_source->get_time(); clients[info.client_id] = info; info.last_update_time = 0; for (int i = 0; i < num_intervals; i++) { IdleInterval idle; unpack_idle_interval(buffer, idle, delta_time); TRACE_MSG(info.client_id << " " << idle.begin_time << " " << idle.end_idle_time << " " << idle.active_time); clients[info.client_id].idlelog.push_back(idle); } fix_idlelog(info); save_index(); save_idlelog(clients[info.client_id]); TRACE_EXIT(); } //! A remote client has signed on. void IdleLogManager::signon_remote_client(string client_id) { TRACE_ENTER_MSG("signon_remote_client", client_id); time_t current_time = time_source->get_time(); ClientInfo &info = clients[client_id]; info.idlelog.push_front(IdleInterval(1, current_time)); info.client_id = client_id; save_index(); save_idlelog(info); TRACE_EXIT(); } //! A remote client has signed off. void IdleLogManager::signoff_remote_client(string client_id) { TRACE_ENTER_MSG("signoff_remote_client", client_id); clients[client_id].state = ACTIVITY_IDLE; clients[client_id].master = false; TRACE_EXIT(); } //! Dumps the idle log of the specified client. void IdleLogManager::dump_idlelog(ClientInfo &info) { (void)info; #if 0 # ifndef PLATFORM_OS_WINDOWS TRACE_ENTER("IdleLogManager::dump_idlelog"); TRACE_MSG("id = " << info.client_id); TRACE_MSG("last_active_time = " << info.last_active_time); TRACE_MSG("total_active_time = " << info.total_active_time); { IdleInterval &idle = info.current_interval; struct tm begin_time; localtime_r(&idle.begin_time, &begin_time); struct tm end_idle_time; localtime_r(&idle.end_idle_time, &end_idle_time); struct tm end_time; localtime_r(&idle.end_time, &end_time); TRACE_MSG( begin_time.tm_hour << ":" << begin_time.tm_min << ":" << begin_time.tm_sec << " - " << end_idle_time.tm_hour << ":" << end_idle_time.tm_min << ":" << end_idle_time.tm_sec << " " << idle.active_time << " " << end_time.tm_hour << ":" << end_time.tm_min << ":" << end_time.tm_sec ); } IdleLogIter i = info.idlelog.begin(); while (i != info.idlelog.end()) { IdleInterval &idle = *i; struct tm begin_time; localtime_r(&idle.begin_time, &begin_time); struct tm end_idle_time; localtime_r(&idle.end_idle_time, &end_idle_time); struct tm end_time; localtime_r(&idle.end_time, &end_time); TRACE_MSG( begin_time.tm_hour << ":" << begin_time.tm_min << ":" << begin_time.tm_sec << " - " << end_idle_time.tm_hour << ":" << end_idle_time.tm_min << ":" << end_idle_time.tm_sec << " " << idle.active_time << " " << end_time.tm_hour << ":" << end_time.tm_min << ":" << end_time.tm_sec ); i++; } TRACE_EXIT(); # endif #endif } void IdleLogManager::fix_idlelog(ClientInfo &info) { TRACE_ENTER("IdleLogManager::fix_idlelog"); time_t current_time = time_source->get_time(); info.update_active_time(current_time); time_t next_time = -1; for (IdleLogRIter i = info.idlelog.rbegin(); i != info.idlelog.rend(); i++) { IdleInterval &idle = *i; TRACE_MSG(idle.begin_time << " " << idle.end_time << " " << idle.end_idle_time << " " << idle.active_time); if (next_time == -1) { if (idle.begin_time != 1) { TRACE_MSG("Fixing first start time. setting to 1"); idle.begin_time = 1; } } else { if (idle.begin_time < next_time) { TRACE_MSG("Fixing start time. setting from " << idle.begin_time << " to " << next_time); idle.begin_time = next_time; } } if (idle.end_time != 0) { next_time = idle.end_time; } else { next_time = idle.end_idle_time; } } info.idlelog.push_front(IdleInterval(next_time, current_time)); TRACE_EXIT(); } workrave-1.10.50/backend/src/PacketBuffer.hh0000644000175100001710000000512314221624106017462 0ustar00gdm00000000000000// PacketBufer.hh // // Copyright (C) 2002, 2003, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef PACKETBUFER_HH #define PACKETBUFER_HH #include #include "glib.h" #define GROW_SIZE (4096) class PacketBuffer { public: PacketBuffer(); PacketBuffer(int size); ~PacketBuffer(); void create(int size = 0); void resize(int size); void grow(int size); void narrow(int pos, int size); void clear() { narrow(0, -1); write_ptr = read_ptr = buffer; } void skip(int size) { read_ptr += size; } void insert(int pos, int size); void pack(const guint8 *data, int size); void pack_raw(const guint8 *data, int size); void pack_raw(PacketBuffer &buffer); void pack_string(const std::string &data); void pack_string(const gchar *data); void pack_ushort(guint16 data); void pack_ulong(guint32 data); void pack_byte(guint8 data); void poke_byte(int pos, guint8 data); void poke_ushort(int pos, guint16 data); void poke_string(int pos, const gchar *data); int unpack(guint8 **data); int unpack_raw(guint8 **data, int size); gchar *unpack_string(); guint32 unpack_ulong(); guint16 unpack_ushort(); guint8 unpack_byte(); int peek(int pos, guint8 **data); gchar *peek_string(int pos); guint32 peek_ulong(int pos); guint16 peek_ushort(int pos); guint8 peek_byte(int pos); void reserve_size(int &pos); void update_size(int pos); int read_size(int &pos); void skip_size(int &pos); int bytes_available() { return write_ptr - read_ptr; } int bytes_written() { return write_ptr - buffer; } int bytes_read() { return read_ptr - buffer; } gchar *get_buffer() { return (gchar *)buffer; } gchar *get_write_ptr() { return (gchar *)write_ptr; } int get_buffer_size() { return buffer_size; } void restart_read() { read_ptr = buffer; } public: guint8 *buffer; guint8 *read_ptr; guint8 *write_ptr; int buffer_size; guint8 *original_buffer; int original_buffer_size; }; #endif workrave-1.10.50/backend/src/GIOSocketDriver.hh0000644000175100001710000000512114221624106020062 0ustar00gdm00000000000000// // Copyright (C) 2002, 2003, 2007, 2008, 2009, 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GIOSOCKETDRIVER_HH #define GIOSOCKETDRIVER_HH #if defined(HAVE_GIO_NET) && defined(HAVE_DISTRIBUTION) # include # include # include # include "SocketDriver.hh" using namespace workrave; //! Listen socket implementation using GIO class GIOSocketServer : public ISocketServer { public: GIOSocketServer(); virtual ~GIOSocketServer(); // ISocketServer interface virtual void listen(int port); private: static gboolean static_socket_incoming(GSocketService *service, GSocketConnection *connection, GObject *src_object, gpointer user_data); private: GSocketService *service; }; //! Socket implementation based on GIO class GIOSocket : public ISocket { public: GIOSocket(); GIOSocket(GSocketConnection *connection); virtual ~GIOSocket(); // ISocket interface virtual void connect(const std::string &hostname, int port); virtual void read(void *buf, int count, int &bytes_read); virtual void write(void *buf, int count, int &bytes_written); virtual void close(); private: void connect(GInetAddress *inet_addr, int port); static void static_connect_after_resolve(GObject *source_object, GAsyncResult *res, gpointer user_data); static void static_connected_callback(GObject *source_object, GAsyncResult *result, gpointer user_data); static gboolean static_data_callback(GSocket *socket, GIOCondition condition, gpointer user_data); private: GSocketConnection *connection; GSocket *socket; GResolver *resolver; GSource *source; int port; }; class GIOSocketDriver : public SocketDriver { //! Create a new socket ISocket *create_socket(); //! Create a new listen socket ISocketServer *create_server(); }; #endif #endif // GIOSOCKETDRIVER_HH workrave-1.10.50/backend/src/InputMonitorFactoryInterface.hh0000644000175100001710000000237514221624106022747 0ustar00gdm00000000000000// InputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef INPUTMONITORFACTORYINTERFACE_HH #define INPUTMONITORFACTORYINTERFACE_HH #include #include #include "IInputMonitor.hh" //! Factory to create input monitors. class InputMonitorFactoryInterface { public: enum MonitorCapability { CAPABILITY_ACTIVITY, CAPABILITY_STATISTICS }; virtual void init(const std::string &display); virtual IInputMonitor *get_monitor(MonitorCapability capability); }; #endif // INPUTMONITORFACTORYINTERFACE_HH workrave-1.10.50/backend/src/IDistributionClientMessage.hh0000644000175100001710000000305714221624106022361 0ustar00gdm00000000000000// IDistributionClientMessage.hh // // Copyright (C) 2002, 2003, 2004, 2005, 2006 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifndef IDISTRIBUTIONCLIENTMESSAGE_HH #define IDISTRIBUTIONCLIENTMESSAGE_HH class PacketBuffer; enum DistributionClientMessageID { DCM_TIMERS = 0x0010, DCM_MONITOR = 0x0011, DCM_IDLELOG = 0x0012, DCM_SCRIPT = 0x0013, DCM_CONFIG = 0x0014, DCM_BREAKS = 0x0020, DCM_STATS = 0x0030, DCM_BREAKCONTROL = 0x0040, }; enum DistributionClientMessageType { DCMT_PASSIVE = 0x0000, DCMT_MASTER = 0x0010, DCMT_SIGNON = 0x0020, }; class IDistributionClientMessage { public: virtual ~IDistributionClientMessage() {} virtual bool request_client_message(DistributionClientMessageID id, PacketBuffer &buffer) = 0; virtual bool client_message(DistributionClientMessageID id, bool active, const char *client_id, PacketBuffer &buffer) = 0; }; #endif // IDISTRIBUTIONCLIENTMESSAGE_HH workrave-1.10.50/backend/src/IInputMonitorFactory.hh0000644000175100001710000000237514221624106021237 0ustar00gdm00000000000000// InputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IINPUTMONITORFACTORY_HH #define IINPUTMONITORFACTORY_HH #include #include class IInputMonitor; //! Factory to create input monitors. class IInputMonitorFactory { public: enum MonitorCapability { CAPABILITY_ACTIVITY, CAPABILITY_STATISTICS }; virtual ~IInputMonitorFactory() {} virtual void init(const char *display) = 0; virtual IInputMonitor *get_monitor(MonitorCapability capability) = 0; }; #endif // IINPUTMONITORFACTORY_HH workrave-1.10.50/backend/src/Configurator.hh0000644000175100001710000001167014221624106017567 0ustar00gdm00000000000000// Configurator.hh // // Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008 Rob Caelers // Copyright (C) 2007 Ray Satiro // // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CONFIGURATOR_HH #define CONFIGURATOR_HH #include #include #include #include "Mutex.hh" #include "IConfigurator.hh" #include "IConfiguratorListener.hh" #include "IConfigBackend.hh" using namespace workrave; using namespace std; // Forward declarion of external interface. namespace workrave { class IConfiguratorListener; } #include "Variant.hh" class IConfigBackend; class Configurator : public IConfigurator , public IConfiguratorListener { public: Configurator(IConfigBackend *backend); virtual ~Configurator(); void heartbeat(); // IConfigurator virtual void set_delay(const std::string &name, int delay); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key) const; virtual bool rename_key(const std::string &key, const std::string &new_key); virtual bool get_value(const std::string &key, std::string &out) const; virtual bool get_value(const std::string &key, bool &out) const; virtual bool get_value(const std::string &key, int &out) const; virtual bool get_value(const std::string &key, double &out) const; virtual void get_value_with_default(const std::string &key, std::string &out, string s) const; virtual void get_value_with_default(const std::string &key, bool &out, const bool def) const; virtual void get_value_with_default(const std::string &key, int &out, const int def) const; virtual void get_value_with_default(const std::string &key, double &out, const double def) const; virtual bool set_value(const std::string &key, const std::string &v, ConfigFlags flags = CONFIG_FLAG_NONE); virtual bool set_value(const std::string &key, const char *v, ConfigFlags flags = CONFIG_FLAG_NONE); virtual bool set_value(const std::string &key, int v, ConfigFlags flags = CONFIG_FLAG_NONE); virtual bool set_value(const std::string &key, bool v, ConfigFlags flags = CONFIG_FLAG_NONE); virtual bool set_value(const std::string &key, double v, ConfigFlags flags = CONFIG_FLAG_NONE); virtual bool get_typed_value(const std::string &key, std::string &t) const; virtual bool set_typed_value(const std::string &key, const std::string &t); virtual bool add_listener(const std::string &key_prefix, IConfiguratorListener *listener); virtual bool remove_listener(IConfiguratorListener *listener); virtual bool remove_listener(const std::string &key_prefix, IConfiguratorListener *listener); virtual bool find_listener(IConfiguratorListener *listener, std::string &key) const; private: typedef std::list> Listeners; typedef std::list>::iterator ListenerIter; typedef std::list>::const_iterator ListenerCIter; //! Configuration change listeners. Listeners listeners; private: struct DelayedConfig { std::string key; Variant value; time_t until; }; struct Setting { std::string key; int delay; }; typedef std::map DelayedList; typedef DelayedList::iterator DelayedListIter; typedef DelayedList::const_iterator DelayedListCIter; typedef std::map Settings; typedef std::map::iterator SettingIter; typedef std::map::const_iterator SettingCIter; private: bool find_setting(const string &name, Setting &setting) const; bool set_value(const std::string &key, Variant &value, ConfigFlags flags = CONFIG_FLAG_NONE); bool get_value(const std::string &key, VariantType type, Variant &value) const; void fire_configurator_event(const std::string &key); void strip_leading_slash(std::string &key) const; void strip_trailing_slash(std::string &key) const; void add_trailing_slash(std::string &key) const; void config_changed_notify(const std::string &key); private: //! Registered settings. Settings settings; //! Delayed settings DelayedList delayed_config; //! The backend in use. IConfigBackend *backend; //! Next auto save time. time_t auto_save_time; }; #endif // CONFIGURATOR_HH workrave-1.10.50/backend/src/GlibIniConfigurator.cc0000644000175100001710000001341514221624106021012 0ustar00gdm00000000000000// IniConfigurator.cc --- Configuration Access // // Copyright (C) 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include "debug.hh" #include #include #include #include #include #include "GlibIniConfigurator.hh" #include using namespace std; GlibIniConfigurator::GlibIniConfigurator() : config(NULL) { } GlibIniConfigurator::~GlibIniConfigurator() { if (config != NULL) { g_key_file_free(config); } } bool GlibIniConfigurator::load(string filename) { GError *error = NULL; gboolean r = TRUE; last_filename = filename; TRACE_ENTER_MSG("GlibIniConfigurator::load", filename) config = g_key_file_new(); r = g_key_file_load_from_file(config, filename.c_str(), G_KEY_FILE_KEEP_COMMENTS, &error); if (r) { } if (error != NULL) { g_error_free(error); } TRACE_EXIT(); return error == NULL; } bool GlibIniConfigurator::save(string filename) { GError *error = NULL; char *str = g_key_file_to_data(config, NULL, &error); TRACE_ENTER_MSG("GlibIniConfigurator::save", filename); if (error != NULL) { g_error_free(error); } else { ofstream config_file(filename.c_str()); config_file << str; config_file.close(); } if (str != NULL) { g_free(str); } TRACE_EXIT(); return error == NULL; } bool GlibIniConfigurator::save() { return save(last_filename); } bool GlibIniConfigurator::remove_key(const std::string &key) { bool ret = true; GError *error = NULL; string group; string inikey; TRACE_ENTER_MSG("GlibIniConfigurator::remove_key", key); split_key(key, group, inikey); inikey = key_inify(inikey); g_key_file_remove_key(config, group.c_str(), inikey.c_str(), &error); if (error != NULL) { g_error_free(error); ret = false; } TRACE_EXIT(); return ret; } bool GlibIniConfigurator::get_value(const std::string &key, VariantType type, Variant &out) const { bool ret = false; GError *error = NULL; string group; string inikey; TRACE_ENTER_MSG("GlibIniConfigurator::get_value", key); split_key(key, group, inikey); inikey = key_inify(inikey); out.type = type; gboolean has_key = g_key_file_has_key(config, group.c_str(), inikey.c_str(), &error); if (has_key == TRUE && error == NULL) { ret = true; switch (type) { case VARIANT_TYPE_INT: out.int_value = g_key_file_get_integer(config, group.c_str(), inikey.c_str(), &error); break; case VARIANT_TYPE_BOOL: out.bool_value = g_key_file_get_boolean(config, group.c_str(), inikey.c_str(), &error); break; case VARIANT_TYPE_DOUBLE: { char *s = g_key_file_get_string(config, group.c_str(), inikey.c_str(), &error); if (error == NULL && s != NULL) { sscanf(s, "%lf", &out.double_value); } break; } case VARIANT_TYPE_NONE: out.type = VARIANT_TYPE_STRING; // FALLTHROUGH case VARIANT_TYPE_STRING: { char *s = g_key_file_get_string(config, group.c_str(), inikey.c_str(), &error); if (error == NULL && s != NULL) { out.string_value = s; } g_free(s); } break; default: ret = false; } } if (error != NULL) { g_error_free(error); ret = false; } TRACE_RETURN(ret); return ret; } bool GlibIniConfigurator::set_value(const std::string &key, Variant &value) { bool ret = true; string group; string inikey; split_key(key, group, inikey); inikey = key_inify(inikey); switch (value.type) { case VARIANT_TYPE_INT: g_key_file_set_integer(config, group.c_str(), inikey.c_str(), value.int_value); break; case VARIANT_TYPE_BOOL: g_key_file_set_boolean(config, group.c_str(), inikey.c_str(), value.bool_value); break; case VARIANT_TYPE_DOUBLE: { char buf[32]; sprintf(buf, "%f", value.double_value); split_key(key, group, inikey); inikey = key_inify(inikey); g_key_file_set_string(config, group.c_str(), inikey.c_str(), buf); } break; case VARIANT_TYPE_NONE: case VARIANT_TYPE_STRING: g_key_file_set_string(config, group.c_str(), inikey.c_str(), value.string_value.c_str()); break; default: ret = false; } return ret; } void GlibIniConfigurator::split_key(const string &key, string &group, string &out_key) const { const char *s = key.c_str(); const char *slash = strchr(s, '/'); if (slash) { group = key.substr(0, slash - s); out_key = slash + 1; } else { group = ""; out_key = ""; } } string GlibIniConfigurator::key_inify(const string &key) const { string rc = key; for (unsigned int i = 0; i < rc.length(); i++) { if (rc[i] == '/') { rc[i] = '.'; } } return rc; } workrave-1.10.50/backend/src/Timer.cc0000644000175100001710000006300714221624106016174 0ustar00gdm00000000000000// Timer.cc --- break timer // // Copyright (C) 2001 - 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include "debug.hh" #include #include #include #include #include "CoreFactory.hh" #include "ICore.hh" #include "Timer.hh" #include "TimePredFactory.hh" #include "TimePred.hh" #include "TimeSource.hh" #include "timeutil.h" using namespace std; using namespace workrave; #ifdef HAVE_EXTERN_TIMEZONE # ifndef HAVE_EXTERN_TIMEZONE_DEFINED extern long timezone; # endif #else static int timezone = 0; #endif //! Constructs a new break timer. /*! * \param time_source source of the current time that will be used by the timer. */ Timer::Timer(const std::string &timer_id) : timer_id(timer_id) , timer_enabled{timer_id + ".timer.enabled", false} , timer_frozen{timer_id + ".timer.frozen", false} , activity_state{timer_id + ".timer.activity_state", ACTIVITY_UNKNOWN} , timer_state{timer_id + ".timer.state", STATE_INVALID} , snooze_interval(60) , snooze_on_active(true) , snooze_inhibited(false) , limit_enabled(true) , limit_interval(600) , autoreset_enabled(true) , autoreset_interval(120) , autoreset_interval_predicate(NULL) , elapsed_time(0) , elapsed_idle_time(0) , last_limit_time(0) , last_limit_elapsed(0) , last_start_time(0) , last_reset_time(0) , last_stop_time(0) , next_reset_time(0) , last_pred_reset_time(0) , next_pred_reset_time(0) , next_limit_time(0) , total_overdue_time(0) , activity_monitor(NULL) , activity_sensitive{timer_id + ".timer.activity_sensitive", true} , insensitive_mode{timer_id + ".timer.insensitive_mode", INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED} { core = CoreFactory::get_core(); } //! Destructor Timer::~Timer() { delete autoreset_interval_predicate; delete activity_monitor; } //! Enables the timer. void Timer::enable() { TRACE_ENTER_MSG("Timer::enable", timer_id << timer_enabled); if (!timer_enabled) { timer_enabled = true; snooze_inhibited = false; snooze_on_active = true; stop_timer(); if (autoreset_enabled && autoreset_interval != 0 && get_elapsed_time() == 0) { // Start with idle time at maximum. elapsed_idle_time = autoreset_interval; } if (limit_enabled && get_elapsed_time() >= limit_interval) { // Break is overdue, force a snooze. last_limit_time = core->get_time(); last_limit_elapsed = 0; compute_next_limit_time(); } compute_next_predicate_reset_time(); } TRACE_EXIT(); } //! Disables the timer. void Timer::disable() { TRACE_ENTER_MSG("Timer::disable", timer_id << timer_enabled); if (timer_enabled) { timer_enabled = false; stop_timer(); last_start_time = 0; last_stop_time = 0; last_reset_time = 0; next_limit_time = 0; next_reset_time = 0; timer_state = STATE_INVALID; } TRACE_EXIT(); } //! Enables or disables limiting /*! * \param b indicates whether the timer limit must be enabled (\c true) or * disabled (\c false). */ void Timer::set_limit_enabled(bool b) { if (limit_enabled != b) { limit_enabled = b; compute_next_limit_time(); } } //! Sets the limit time in seconds. /*! * \param limit_time time at which this timer reaches its limit. * */ void Timer::set_limit(int limit_time) { limit_interval = limit_time; if (get_elapsed_time() < limit_time) { // limit increased, pretend there was no limit-reached yet. last_limit_time = 0; last_limit_elapsed = 0; } compute_next_limit_time(); } //! Enables or disables auto-reset. /*! * \param b indicates whether the timer auto-reset must be enabled (\c true) * or disabled (\c false). */ void Timer::set_auto_reset_enabled(bool b) { autoreset_enabled = b; compute_next_reset_time(); } //! Sets auto-reset time period. /*! * \param resetTime after this amount of idle time the timer will reset itself. */ void Timer::set_auto_reset(int reset_time) { if (reset_time > autoreset_interval) { // increasing reset_time, re-enable limit-reached snoozing. snooze_inhibited = false; } autoreset_interval = reset_time; compute_next_reset_time(); } //! Sets the auto-reset predicate. /*! * \param predicate auto-reset predicate. */ void Timer::set_auto_reset(string predicate) { delete autoreset_interval_predicate; autoreset_interval_predicate = TimePredFactory::create_time_pred(predicate); compute_next_predicate_reset_time(); } //! Sets the snooze interval of the timer. void Timer::set_snooze_interval(time_t t) { snooze_interval = t; } //! Prevents 'limit reached' snoozing until timer reset. void Timer::inhibit_snooze() { snooze_inhibited = true; } //! Marks timer sensitive or insensitive for activity void Timer::set_activity_sensitive(bool a) { TRACE_ENTER_MSG("Timer::set_activity_sensitive", a); activity_sensitive = a; activity_state = ACTIVITY_UNKNOWN; if (!activity_sensitive) { // If timer is made insensitive, start it if // it has some elasped time. Otherwise a daily limit // will never start (well, not until it resets...) time_t elasped = get_elapsed_time(); if (elasped > 0 && (elasped < limit_interval || !limit_enabled)) { activity_state = ACTIVITY_ACTIVE; } } TRACE_EXIT(); } //! Sets the activity insensitive mode void Timer::set_insensitive_mode(InsensitiveMode mode) { TRACE_ENTER_MSG("Timer::set_insensitive_mode", mode); insensitive_mode = mode; TRACE_EXIT(); } //! Forces a activity insensitive timer to become idle void Timer::force_idle() { TRACE_ENTER("Timer::force_idle"); if (!activity_sensitive) { TRACE_MSG("Forcing idle"); activity_state = ACTIVITY_IDLE; } TRACE_EXIT(); } //! Forces a activity insensitive timer to become active void Timer::force_active() { TRACE_ENTER("Timer::force_active"); if (!activity_sensitive) { TRACE_MSG("Forcing active"); activity_state = ACTIVITY_ACTIVE; } TRACE_EXIT(); } //! Computes the time the limit will be reached. void Timer::compute_next_limit_time() { // default action. No next limit. next_limit_time = 0; if (timer_enabled) { if (last_limit_time > 0 && !snooze_on_active) { // The timer already reached its limit. We need to re-send the // limit-reached event 'snooze_interval' seconds after the previous // event. Unless snoozing is inhibted. This is independent of // user activity. if (!snooze_inhibited) { next_limit_time = last_limit_time + snooze_interval; } } else if (timer_state == STATE_RUNNING && last_start_time != 0 && limit_enabled && limit_interval != 0) { // The timer is running and a limit != 0 is set. if (last_limit_time > 0) { // The timer already reached its limit. We need to re-send the // limit-reached event after 'snooze_interval' seconds of // activity after the previous event. Unless snoozing is // inhibted. This is dependent of user activity. if (snooze_on_active && !snooze_inhibited) { next_limit_time = (last_start_time - elapsed_time + last_limit_elapsed + snooze_interval); } } else { // The timer did not yet reaches its limit. // new limit = last start time + limit - elapsed. next_limit_time = last_start_time + limit_interval - elapsed_time; } } } } //! Computes the time the auto-reset must take place. void Timer::compute_next_reset_time() { // default action. No next reset. next_reset_time = 0; if (timer_enabled && timer_state == STATE_STOPPED && last_stop_time != 0 && autoreset_enabled && autoreset_interval != 0) { // We are enabled, not running and a reset time != 0 was set. // next reset time = last stop time + auto reset next_reset_time = last_stop_time + autoreset_interval - elapsed_idle_time; if (next_reset_time <= last_reset_time) { // Just is sanity check, can't reset before the previous one.. next_reset_time = 0; } } } void Timer::compute_next_predicate_reset_time() { // This one ALWAYS sends a reset, also when the timer is disabled. if (autoreset_interval_predicate) { if (last_pred_reset_time == 0) { // The timer did not reach a predicate reset before. Just take // the current time as the last reset time... last_pred_reset_time = core->get_time(); } autoreset_interval_predicate->set_last(last_pred_reset_time); next_pred_reset_time = autoreset_interval_predicate->get_next(); } } //! Daily Reset. void Timer::daily_reset_timer() { total_overdue_time = 0; } //! Resets and stops the timer. void Timer::reset_timer() { TRACE_ENTER_MSG("Timer::reset", timer_id << timer_state); // Update total overdue. time_t elapsed = get_elapsed_time(); if (limit_enabled && elapsed > limit_interval) { total_overdue_time += (elapsed - limit_interval); } // Full reset. elapsed_time = 0; last_limit_time = 0; last_limit_elapsed = 0; last_reset_time = core->get_time(); snooze_inhibited = false; snooze_on_active = true; if (timer_state == STATE_RUNNING) { // The timer is reset while running, Pretend the timer just started. last_start_time = core->get_time(); last_stop_time = 0; compute_next_limit_time(); next_reset_time = 0; elapsed_idle_time = 0; } else { // The timer is reset while it is not running. last_start_time = 0; next_reset_time = 0; next_limit_time = 0; if (autoreset_enabled && autoreset_interval != 0) { elapsed_idle_time = autoreset_interval; last_stop_time = core->get_time(); } } next_pred_reset_time = 0; compute_next_predicate_reset_time(); TRACE_EXIT(); } //! Starts the timer. void Timer::start_timer() { TRACE_ENTER_MSG("Timer::start_timer", timer_id << timer_state); if (timer_state != STATE_RUNNING) { // Set last start and stop times. if (!timer_frozen) { // Timer is not frozen, so let's start. last_start_time = core->get_time(); elapsed_idle_time = 0; } else { TRACE_MSG("timer is frozen."); // The timer is frozen, so we don't start counting 'active' time. // Instead, update the elapsed idle time. if (last_stop_time != 0) { elapsed_idle_time += (core->get_time() - last_stop_time); } last_start_time = 0; } // Reset values that are only used when the timer is not running. last_stop_time = 0; next_reset_time = 0; // update state. timer_state = STATE_RUNNING; // When to generate a limit-reached-event. compute_next_limit_time(); } TRACE_EXIT(); } //! Stops the timer. void Timer::stop_timer() { TRACE_ENTER_MSG("Timer::stop_timer", timer_id << " " << timer_state); if (timer_state != STATE_STOPPED) { TRACE_MSG("last_start_time = " << last_start_time); // Update last stop time. last_stop_time = core->get_time(); // Update elapsed time. if (last_start_time != 0) { // But only if we are running... elapsed_time += (last_stop_time - last_start_time); } TRACE_MSG("elapsed_idle_time = " << elapsed_idle_time); TRACE_MSG("elapsed_time = " << elapsed_time); // Reset last start time. last_start_time = 0; // Update state. timer_state = STATE_STOPPED; // When to reset the timer. compute_next_reset_time(); // When to re-send a limit reached? // (in case of !snooze_on_active) compute_next_limit_time(); } TRACE_EXIT(); } //! Snoozes the timer. /*! * When the limit of this timer was reached, the limit reached event will be * re-sent. */ void Timer::snooze_timer() { TRACE_ENTER("Timer::snooze_timer"); if (timer_enabled) { // recompute. snooze_on_active = true; next_limit_time = 0; last_limit_time = core->get_time(); last_limit_elapsed = get_elapsed_time(); compute_next_limit_time(); if (!activity_sensitive) { // Start the clock in case of insensitive timer. activity_state = ACTIVITY_ACTIVE; } } TRACE_EXIT(); } //! Freezes the elapsed time of the timer. void Timer::freeze_timer(bool freeze) { TRACE_ENTER_MSG("Timer::freeze_timer", timer_id << freeze << " " << timer_frozen << " " << timer_enabled << " " << timer_state << " " << activity_sensitive); // Only enabled activity sensitive timers care about freezing. if (timer_enabled && activity_sensitive) { if (freeze && !timer_frozen) { // freeze timer. if (last_start_time != 0 && timer_state == STATE_RUNNING) { TRACE_MSG("was started"); elapsed_time += (core->get_time() - last_start_time); last_start_time = 0; } } else if (!freeze && timer_frozen) { // defrost timer. if (timer_state == STATE_RUNNING) { last_start_time = core->get_time(); elapsed_idle_time = 0; compute_next_limit_time(); } } } // test fix for Bug 746 - Micro-break not counting down if (timer_enabled && !freeze && timer_frozen && timer_state == STATE_RUNNING && !last_start_time && !activity_sensitive) { TRACE_MSG("fix746"); last_start_time = core->get_time(); elapsed_idle_time = 0; compute_next_limit_time(); } timer_frozen = freeze; TRACE_EXIT(); } //! Returns the elapsed idle time. time_t Timer::get_elapsed_idle_time() const { TRACE_ENTER("Timer::get_elapsed_idle_time"); time_t ret = elapsed_idle_time; if (timer_enabled && last_stop_time != 0) { ret += (core->get_time() - last_stop_time); } TRACE_RETURN(ret); return ret; } //! Returns the elapsed time. time_t Timer::get_elapsed_time() const { TRACE_ENTER("Timer::get_elapsed_time"); time_t ret = elapsed_time; TRACE_MSG(ret << " " << core->get_time() << " " << last_start_time); if (timer_enabled && last_start_time != 0) { ret += (core->get_time() - last_start_time); } TRACE_RETURN(ret); return ret; } //! Returns the total overdue time of the timer. time_t Timer::get_total_overdue_time() const { TRACE_ENTER("Timer::get_total_overdue_time"); time_t ret = total_overdue_time; time_t elapsed = get_elapsed_time(); TRACE_MSG(ret << " " << elapsed); if (limit_enabled && elapsed > limit_interval) { ret += (elapsed - limit_interval); } TRACE_EXIT(); return ret; } //! Ajusts the timer when the system clock time changed. void Timer::shift_time(int delta) { TRACE_ENTER_MSG("Timer::shift_time", delta); if (last_limit_time > 0) { last_limit_time += delta; } if (last_start_time > 0) { last_start_time += delta; } if (last_reset_time > 0) { last_reset_time += delta; } if (last_pred_reset_time > 0) { last_pred_reset_time += delta; } if (last_stop_time > 0) { last_stop_time += delta; } compute_next_limit_time(); compute_next_reset_time(); compute_next_predicate_reset_time(); TRACE_EXIT(); } //! Perform timer processing. /*! \param new_activity_state the current activity state as reported by the * (global) activity monitor. * \param info returns the state of the timer. */ void Timer::process(ActivityState new_activity_state, TimerInfo &info) { TRACE_ENTER_MSG("Timer::Process", timer_id << timer_id << " " << new_activity_state); time_t current_time = core->get_time(); // Default event to return. info.event = TIMER_EVENT_NONE; info.idle_time = get_elapsed_idle_time(); info.elapsed_time = get_elapsed_time(); TRACE_MSG("idle_time = " << info.idle_time); TRACE_MSG("elapsed_time = " << info.elapsed_time); TRACE_MSG("enabled = " << timer_enabled); TRACE_MSG("last_start_time " << last_start_time); TRACE_MSG("next_pred_reset_time " << next_pred_reset_time); TRACE_MSG("next_reset_time " << next_reset_time); TRACE_MSG("time " << current_time); if (activity_monitor != NULL) { // The timer uses its own activity monitor and ignores the 'global' // activity monitor state (ie. new_activity_state). So get the state // of the activity monitor used by this timer. new_activity_state = activity_monitor->get_current_state(); TRACE_MSG("foreign activity state =" << new_activity_state); } else if (activity_sensitive) { // This timer responds to the activity monitoring. TRACE_MSG("is activity sensitive"); } else { // This timer is activity insensitive. It periodically switches between // idle and active. TRACE_MSG("is not activity sensitive"); if (activity_state != ACTIVITY_UNKNOWN) { TRACE_MSG("activity_state = " << activity_state << " new_activity_state = " << new_activity_state << " elapsed_time =" << get_elapsed_time()); if (insensitive_mode == INSENSITIVE_MODE_IDLE_ALWAYS) // Forces ACTIVITY_IDLE every time, regardless of sensitivity { TRACE_MSG("MODE_IDLE_ALWAYS: Forcing ACTIVITY_IDLE"); new_activity_state = activity_state = ACTIVITY_IDLE; } if (activity_state == ACTIVITY_ACTIVE) { if (insensitive_mode == INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED) { TRACE_MSG("MODE_IDLE_ON_LIMIT_REACHED"); new_activity_state = activity_state; } TRACE_MSG("new_activity_state = " << new_activity_state); } TRACE_MSG("activity_state = " << new_activity_state); } } // Start or stop timer. if (timer_enabled) { if (new_activity_state == ACTIVITY_ACTIVE && timer_state != STATE_RUNNING) { start_timer(); } else if (new_activity_state != ACTIVITY_ACTIVE && timer_state == STATE_RUNNING) { stop_timer(); } } activity_state = new_activity_state; TRACE_MSG("time, next limit, limit: " << current_time << " " << next_limit_time << " " << limit_interval << " " << (next_limit_time - current_time)); TRACE_MSG("activity_state = " << activity_state); if (autoreset_interval_predicate && next_pred_reset_time != 0 && current_time >= next_pred_reset_time) { // A next reset time was set and the current time >= reset time. // So reset the timer and send a reset event. reset_timer(); last_pred_reset_time = core->get_time(); next_pred_reset_time = 0; compute_next_predicate_reset_time(); info.event = TIMER_EVENT_RESET; if (!activity_sensitive) { activity_state = ACTIVITY_IDLE; TRACE_MSG("pred reset, setting state = IDLE"); stop_timer(); } } else if (next_limit_time != 0 && current_time >= next_limit_time) { // A next limit time was set and the current time >= limit time. next_limit_time = 0; last_limit_time = core->get_time(); last_limit_elapsed = get_elapsed_time(); snooze_on_active = true; compute_next_limit_time(); info.event = TIMER_EVENT_LIMIT_REACHED; // Its very unlikely (but not impossible) that this will overrule // the EventStarted. Hey, shit happens. if (!activity_sensitive) { activity_state = ACTIVITY_IDLE; TRACE_MSG("limit reached, setting state = IDLE"); } } else if (next_reset_time != 0 && current_time >= next_reset_time) { // A next reset time was set and the current time >= reset time. next_reset_time = 0; bool natural = limit_enabled && limit_interval >= get_elapsed_time(); reset_timer(); info.event = natural ? TIMER_EVENT_NATURAL_RESET : TIMER_EVENT_RESET; // Idem, may overrule the EventStopped. if (!activity_sensitive) { TRACE_MSG("reset reached, setting state = IDLE"); activity_state = ACTIVITY_IDLE; } } TRACE_EXIT(); } std::string Timer::serialize_state() const { stringstream ss; ss << timer_id << " " << core->get_time() << " " << get_elapsed_time() << " " << last_pred_reset_time << " " << total_overdue_time << " " << snooze_inhibited << " " << last_limit_time << " " << last_limit_elapsed << " " << timezone; return ss.str(); } bool Timer::deserialize_state(const std::string &state, int version) { TRACE_ENTER("Timer::deserialize_state"); istringstream ss(state); time_t saveTime = 0; time_t elapsed = 0; time_t lastReset = 0; time_t overdue = 0; time_t now = core->get_time(); time_t llt = 0; time_t lle = 0; time_t tz = 0; bool si = false; ss >> saveTime >> elapsed >> lastReset >> overdue >> si >> llt >> lle; if (version == 3) { ss >> tz; tz -= timezone; } // Sanity check... if (lastReset > saveTime) { lastReset = saveTime; } // lastReset -= tz; TRACE_MSG(si << " " << llt << " " << lle); TRACE_MSG(snooze_inhibited); last_pred_reset_time = lastReset; total_overdue_time = overdue; elapsed_time = 0; last_start_time = 0; last_stop_time = 0; bool tooOld = ((autoreset_enabled && autoreset_interval != 0) && (now - saveTime > autoreset_interval)); if (!tooOld) { if (autoreset_enabled) { next_reset_time = now + autoreset_interval; } elapsed_time = elapsed; snooze_inhibited = si; } // overdue, so snooze if (limit_enabled && get_elapsed_time() >= limit_interval) { last_limit_time = llt; last_limit_elapsed = lle; compute_next_limit_time(); } compute_next_predicate_reset_time(); TRACE_MSG("elapsed = " << elapsed_time); return true; } void Timer::set_state(int elapsed, int idle, int overdue) { TRACE_ENTER_MSG("Timer::set_state", elapsed << " " << idle << " " << overdue); elapsed_time = elapsed; elapsed_idle_time = idle; if (last_start_time != 0) { last_start_time = core->get_time(); } if (last_stop_time != 0) { last_stop_time = core->get_time(); } if (elapsed_idle_time > autoreset_interval && autoreset_enabled) { elapsed_idle_time = autoreset_interval; } if (overdue != -1) { total_overdue_time = overdue; if (limit_enabled && get_elapsed_time() > limit_interval) { total_overdue_time -= (get_elapsed_time() - limit_interval); } } compute_next_reset_time(); compute_next_limit_time(); compute_next_predicate_reset_time(); TRACE_EXIT(); } void Timer::set_values(int elapsed, int idle) { elapsed_time = elapsed; elapsed_idle_time = idle; last_start_time = 0; last_stop_time = 0; if (timer_state == STATE_RUNNING) { last_start_time = core->get_time(); } else if (timer_state == STATE_STOPPED) { last_stop_time = core->get_time(); } compute_next_limit_time(); compute_next_reset_time(); compute_next_predicate_reset_time(); } void Timer::set_state_data(const TimerStateData &data) { time_t time_diff = core->get_time() - data.current_time; elapsed_time = data.elapsed_time; elapsed_idle_time = data.elapsed_idle_time; last_pred_reset_time = data.last_pred_reset_time; total_overdue_time = data.total_overdue_time; last_limit_time = data.last_limit_time; last_limit_elapsed = data.last_limit_elapsed; snooze_inhibited = data.snooze_inhibited; if (last_pred_reset_time > 0) { last_pred_reset_time += time_diff; } if (last_limit_time > 0) { last_limit_time += time_diff; } last_start_time = 0; last_stop_time = 0; if (timer_state == STATE_RUNNING) { last_start_time = core->get_time(); } else if (timer_state == STATE_STOPPED) { last_stop_time = core->get_time(); } compute_next_limit_time(); compute_next_reset_time(); compute_next_predicate_reset_time(); } void Timer::get_state_data(TimerStateData &data) { TRACE_ENTER("Timer::get_state_data"); data.current_time = core->get_time(); data.elapsed_time = get_elapsed_time(); data.elapsed_idle_time = get_elapsed_idle_time(); data.last_pred_reset_time = last_pred_reset_time; data.total_overdue_time = total_overdue_time; data.last_limit_time = last_limit_time; data.last_limit_elapsed = last_limit_elapsed; data.snooze_inhibited = snooze_inhibited; TRACE_MSG("elapsed = " << data.elapsed_time); TRACE_EXIT(); } workrave-1.10.50/backend/src/Timer.hh0000644000175100001710000001600314221624106016200 0ustar00gdm00000000000000// Timer.hh --- Break Timer // // Copyright (C) 2001 - 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMER_HH #define TIMER_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include #include #include "IActivityMonitor.hh" #include "Diagnostics.hh" class TimeSource; class TimePred; class DataNode; namespace workrave { class ICore; } enum TimerState { STATE_INVALID, STATE_RUNNING, STATE_STOPPED }; inline std::ostream & operator<<(std::ostream &stream, TimerState state) { switch (state) { case STATE_INVALID: stream << "invalid"; break; case STATE_RUNNING: stream << "running"; break; case STATE_STOPPED: stream << "stopped"; break; } return stream; } enum InsensitiveMode { INSENSITIVE_MODE_FOLLOW_IDLE, INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED, INSENSITIVE_MODE_IDLE_ALWAYS }; inline std::ostream & operator<<(std::ostream &stream, InsensitiveMode mode) { switch (mode) { case INSENSITIVE_MODE_FOLLOW_IDLE: stream << "follow"; break; case INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED: stream << "idle"; break; case INSENSITIVE_MODE_IDLE_ALWAYS: stream << "always"; break; } return stream; } //! Event generated by the timer. enum TimerEvent { //! No event occurred. TIMER_EVENT_NONE, //! The timer was reset back to 0 after the limit was reached. TIMER_EVENT_RESET, //! The timer was reset back to 0 before the limit was reached. TIMER_EVENT_NATURAL_RESET, //! The timer reached its limit. TIMER_EVENT_LIMIT_REACHED, }; //! Status information of a timer. struct TimerInfo { //! Is this timer enabled? bool enabled; //! Event the timer generated. TimerEvent event; //! Total idle time of the timer. time_t idle_time; //! Total elasped time of the timer. time_t elapsed_time; }; //! The Timer class. /*! * The Timer receives 'active' and 'idle' events from an activity monitor. * Based on these events, the timer will start or stop the clock. * */ class Timer { public: struct TimerStateData { time_t current_time; time_t elapsed_time; time_t elapsed_idle_time; time_t last_pred_reset_time; time_t total_overdue_time; time_t last_limit_time; time_t last_limit_elapsed; bool snooze_inhibited; }; public: // Construction/Destruction. Timer(const std::string &timer_id); virtual ~Timer(); // Control void enable(); void disable(); void snooze_timer(); void freeze_timer(bool f); // Timer processing. void process(ActivityState activityState, TimerInfo &info); // State inquiry time_t get_elapsed_time() const; time_t get_elapsed_idle_time() const; TimerState get_state() const; bool is_enabled() const; // Auto-resetting. void set_auto_reset(int t); void set_auto_reset(TimePred *predicate); void set_auto_reset(std::string predicate); void set_auto_reset_enabled(bool b); bool is_auto_reset_enabled() const; time_t get_auto_reset() const; TimePred *get_auto_reset_predicate() const; time_t get_next_reset_time() const; // Limiting. void set_limit(int t); void set_limit_enabled(bool b); bool is_limit_enabled() const; time_t get_limit() const; time_t get_next_limit_time() const; // Timer ID std::string get_id() const; // State serialization. std::string serialize_state() const; bool deserialize_state(const std::string &state, int version); void set_state(int elapsed, int idle, int overdue = -1); void set_state_data(const TimerStateData &data); void get_state_data(TimerStateData &data); void set_values(int elapsed, int idle); // Misc time_t get_snooze() const; void set_snooze_interval(time_t time); void inhibit_snooze(); void set_activity_monitor(IActivityMonitor *am); IActivityMonitor *get_activity_monitor() const; bool has_activity_monitor() const; time_t get_total_overdue_time() const; void daily_reset_timer(); void shift_time(int delta); void start_timer(); void stop_timer(); void reset_timer(); bool get_activity_sensitive(); void set_activity_sensitive(bool a); void force_idle(); void force_active(); void set_insensitive_mode(InsensitiveMode mode); private: //! Id of the timer. std::string timer_id; //! Is this timer enabled ? TracedField timer_enabled; //! Is the timer frozen? A frozen timer only counts idle time. TracedField timer_frozen; //! State of the state monitor. TracedField activity_state; //! State of the timer. TracedField timer_state; //! Default snooze time time_t snooze_interval; //! Snooze on active time instead of on actual time. bool snooze_on_active; //! Don't snooze til next reset or changes. bool snooze_inhibited; //! Is the timer limit enabled? bool limit_enabled; //! Timer limit interval. time_t limit_interval; //! Is the timer auto reset enabled? bool autoreset_enabled; //! Automatic reset time interval. time_t autoreset_interval; //! Auto reset time predicate. (or NULL if not used) TimePred *autoreset_interval_predicate; //! Elapsed time. time_t elapsed_time; //! Elapsed Idle time. time_t elapsed_idle_time; //! Last time the limit was reached. time_t last_limit_time; //! The total elapsed time the last time the limit was reached. time_t last_limit_elapsed; //! Time when the timer was last started. time_t last_start_time; //! Time when the timer was last reset. time_t last_reset_time; //! Time when the timer was last stopped. time_t last_stop_time; //! Next automatic reset time. time_t next_reset_time; //! Time when the timer was last reset because of a predicate. time_t last_pred_reset_time; //! Next automatic predicate reset time. time_t next_pred_reset_time; //! Next limit time. time_t next_limit_time; //! Total overdue time. time_t total_overdue_time; //! Core workrave::ICore *core; //! Activity Mobnitor to use. IActivityMonitor *activity_monitor; //! Is this timer sensitive for activity TracedField activity_sensitive; //! TracedField insensitive_mode; private: void compute_next_limit_time(); void compute_next_reset_time(); void compute_next_predicate_reset_time(); }; #include "Timer.icc" #endif // TIMER_HH workrave-1.10.50/backend/src/ActivityMonitorListener.hh0000644000175100001710000000212414221624106021771 0ustar00gdm00000000000000// ActivityMonitorListener.hh // // Copyright (C) 2001 - 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ACTIVITYMONITORLISTENER_HH #define ACTIVITYMONITORLISTENER_HH //! Listener for user activity from the Activity Monitor class ActivityMonitorListener { public: virtual ~ActivityMonitorListener() {} // Notification that the user is currently active. virtual bool action_notify() = 0; }; #endif // ACTIVITYMONITORLISTENER_HH workrave-1.10.50/backend/src/InputMonitorFactory.hh0000644000175100001710000000231114221624106021114 0ustar00gdm00000000000000// InputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef INPUTMONITORFACTORY_HH #define INPUTMONITORFACTORY_HH #include #include #include "IInputMonitorFactory.hh" //! Factory to create input monitors. class InputMonitorFactory { public: static void init(const char *display); static IInputMonitor *get_monitor(IInputMonitorFactory::MonitorCapability capability); private: static IInputMonitorFactory *factory; }; #endif // INPUTMONITORFACTORY_HH workrave-1.10.50/backend/src/BreakControl.cc0000644000175100001710000004625114221624106017503 0ustar00gdm00000000000000// BreakControl.cc // // Copyright (C) 2001 - 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include "BreakControl.hh" #include "IBreak.hh" #include "Core.hh" #include "Statistics.hh" #include "IApp.hh" #include "IActivityMonitor.hh" #include "ActivityMonitorListener.hh" #include "Timer.hh" #include "Statistics.hh" #ifdef HAVE_DISTRIBUTION # include "DistributionManager.hh" #endif #ifdef HAVE_DBUS # include "dbus/IDBus.hh" # include "DBusWorkrave.hh" #endif using namespace std; //! Construct a new Break Controller. /*! * \param id ID of the break this BreakControl controls. * \param c pointer to control interface. * \param factory pointer to the GUI window factory used to create the break * windows. * \param timer pointer to the interface of the timer that belongs to this break. */ BreakControl::BreakControl(BreakId id, const std::string &break_name, IApp *app, Timer *timer) : break_id(id) , break_name(break_name) , application(app) , break_timer(timer) , break_stage{break_name + ".break.state", STAGE_NONE} , reached_max_prelude(false) , prelude_time(0) , prelude_count{break_name + ".break.prelude_count", 0} , forced_break{break_name + ".break.forced", false} , max_number_of_preludes(2) , fake_break{break_name + ".break.fake", false} , fake_break_count(0) , user_abort{break_name + ".break.user_abort", false} , delayed_abort{break_name + ".break.delayed_abort", false} , break_hint(BREAK_HINT_NONE) { assert(break_timer != NULL); assert(application != NULL); core = Core::get_instance(); } //! Destructor. BreakControl::~BreakControl() { application->hide_break_window(); } //! Periodic heartbeat. void BreakControl::heartbeat() { TRACE_ENTER_MSG("BreakControl::heartbeat", break_id); prelude_time++; bool is_idle = false; if (!break_timer->has_activity_monitor()) { // Prefer the running state of the break timer as input for // our current activity. TimerState tstate = break_timer->get_state(); is_idle = (tstate == STATE_STOPPED); } else { // Unless the timer has its own activity monitor. ActivityState activity_state = core->get_current_monitor_state(); is_idle = (activity_state != ACTIVITY_ACTIVE); } TRACE_MSG("stage = " << break_stage); switch (break_stage) { case STAGE_NONE: break; case STAGE_SNOOZED: break; case STAGE_DELAYED: { if (delayed_abort) { // User become active during delayed break. goto_stage(STAGE_SNOOZED); } else if (is_idle) { // User is idle. goto_stage(STAGE_TAKING); } } break; case STAGE_PRELUDE: { assert(application != NULL); TRACE_MSG("prelude time = " << prelude_time); update_prelude_window(); application->refresh_break_window(); if (is_idle) { // User is idle. if (prelude_time >= 10) { // User is idle and prelude is visible for at least 10s. goto_stage(STAGE_TAKING); } } else if (prelude_time == 30) { // User is not idle and the prelude is visible for 30s. if (reached_max_prelude) { // Final prelude, force break. goto_stage(STAGE_TAKING); } else { // Delay break. goto_stage(STAGE_DELAYED); } } else if (prelude_time == 20) { // Still not idle after 20s. Red alert. application->set_prelude_stage(IApp::STAGE_ALERT); application->refresh_break_window(); } else if (prelude_time == 10) { // Still not idle after 10s. Yellow alert. application->set_prelude_stage(IApp::STAGE_WARN); application->refresh_break_window(); } if (prelude_time == 4) { // Move prelude window to top of screen after 4s. application->set_prelude_stage(IApp::STAGE_MOVE_OUT); } } break; case STAGE_TAKING: { // refresh the break window. update_break_window(); application->refresh_break_window(); } break; } TRACE_EXIT(); } //! Initiates the specified break stage. void BreakControl::goto_stage(BreakStage stage) { TRACE_ENTER_MSG("BreakControl::goto_stage", break_id << " " << stage); send_signal(stage); switch (stage) { case STAGE_DELAYED: { IActivityMonitor *monitor = core->get_activity_monitor(); monitor->set_listener(this); core->set_insensitive_mode_all_breaks(INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED); } break; case STAGE_NONE: { // Terminate the break. core->set_insensitive_mode_all_breaks(INSENSITIVE_MODE_IDLE_ON_LIMIT_REACHED); application->hide_break_window(); core->defrost(); if (break_id == BREAK_ID_MICRO_BREAK && core->get_usage_mode() == USAGE_MODE_READING) { for (int i = BREAK_ID_MICRO_BREAK; i < BREAK_ID_SIZEOF; i++) { Timer *timer = core->get_timer(BreakId(i)); timer->force_active(); } } if (break_stage == STAGE_TAKING && !fake_break) { // Update statistics and play sound if the break end // was "natural" time_t idle = break_timer->get_elapsed_idle_time(); time_t reset = break_timer->get_auto_reset(); if (idle >= reset && !user_abort) { // natural break end. // Update stats. Statistics *stats = core->get_statistics(); stats->increment_break_counter(break_id, Statistics::STATS_BREAKVALUE_TAKEN); // Play sound switch (break_id) { case BREAK_ID_REST_BREAK: post_event(CORE_EVENT_SOUND_REST_BREAK_ENDED); break; case BREAK_ID_MICRO_BREAK: post_event(CORE_EVENT_SOUND_MICRO_BREAK_ENDED); break; default: break; } } } } break; case STAGE_SNOOZED: { application->hide_break_window(); if (!forced_break) { post_event(CORE_EVENT_SOUND_BREAK_IGNORED); } core->defrost(); } break; case STAGE_PRELUDE: { core->set_insensitive_mode_all_breaks(INSENSITIVE_MODE_FOLLOW_IDLE); prelude_count++; prelude_time = 0; application->hide_break_window(); prelude_window_start(); application->refresh_break_window(); post_event(CORE_EVENT_SOUND_BREAK_PRELUDE); } break; case STAGE_TAKING: { // Break timer should always idle. // Previous revisions set MODE_IDLE_ON_LIMIT_REACHED // core->set_insensitive_mode_all_breaks(INSENSITIVE_MODE_IDLE_ALWAYS); core->set_insensitive_mode_all_breaks(INSENSITIVE_MODE_FOLLOW_IDLE); // Remove the prelude window, if necessary. application->hide_break_window(); // "Innocent until proven guilty". TRACE_MSG("Force idle"); core->force_idle(break_id); break_timer->stop_timer(); // Start the break. break_window_start(); // Play sound if (!forced_break) { CoreEvent event = CORE_EVENT_NONE; switch (break_id) { case BREAK_ID_REST_BREAK: event = CORE_EVENT_SOUND_REST_BREAK_STARTED; break; case BREAK_ID_MICRO_BREAK: event = CORE_EVENT_SOUND_MICRO_BREAK_STARTED; break; case BREAK_ID_DAILY_LIMIT: event = CORE_EVENT_SOUND_DAILY_LIMIT; break; default: break; } post_event(event); } core->freeze(); } break; } break_stage = stage; TRACE_EXIT(); } //! Updates the contents of the prelude window. void BreakControl::update_prelude_window() { application->set_break_progress(prelude_time, 29); } //! Updates the contents of the break window. void BreakControl::update_break_window() { assert(break_timer != NULL); time_t duration = break_timer->get_auto_reset(); time_t idle = 0; if (fake_break) { idle = duration - fake_break_count; if (fake_break_count <= 0) { stop_break(); } fake_break_count--; } else { idle = break_timer->get_elapsed_idle_time(); } if (idle > duration) { idle = duration; } application->set_break_progress((int)idle, (int)duration); } //! Starts the break. void BreakControl::start_break() { TRACE_ENTER_MSG("BreakControl::start_break", break_id); break_hint = BREAK_HINT_NONE; forced_break = false; fake_break = false; prelude_time = 0; user_abort = false; delayed_abort = false; reached_max_prelude = max_number_of_preludes >= 0 && prelude_count + 1 >= max_number_of_preludes; if (max_number_of_preludes >= 0 && prelude_count >= max_number_of_preludes) { // Forcing break without prelude. goto_stage(STAGE_TAKING); } else { // Starting break with prelude. // Idle until proven guilty. TRACE_MSG("Force idle"); core->force_idle(break_id); break_timer->stop_timer(); // Update statistics. Statistics *stats = core->get_statistics(); stats->increment_break_counter(break_id, Statistics::STATS_BREAKVALUE_PROMPTED); if (prelude_count == 0) { stats->increment_break_counter(break_id, Statistics::STATS_BREAKVALUE_UNIQUE_BREAKS); } // Start prelude. goto_stage(STAGE_PRELUDE); } TRACE_EXIT(); } //! Starts the break without preludes. void BreakControl::force_start_break(BreakHint hint) { TRACE_ENTER_MSG("BreakControl::force_start_break", break_id); break_hint = hint; forced_break = (break_hint & (BREAK_HINT_USER_INITIATED | BREAK_HINT_NATURAL_BREAK)) != 0; fake_break = false; prelude_time = 0; user_abort = false; delayed_abort = false; if (break_timer->is_auto_reset_enabled()) { TRACE_MSG("auto reset enabled"); time_t idle = break_timer->get_elapsed_idle_time(); TRACE_MSG(idle << " " << break_timer->get_auto_reset() << " " << break_timer->is_enabled()); if (idle >= break_timer->get_auto_reset() || !break_timer->is_enabled()) { TRACE_MSG("Faking break"); fake_break = true; fake_break_count = break_timer->get_auto_reset(); } } if (!break_timer->get_activity_sensitive()) { TRACE_MSG("Forcing idle"); core->force_idle(break_id); } goto_stage(STAGE_TAKING); TRACE_EXIT(); } //! Stops the break. /*! * Stopping a break will reset the "number of presented preludes" counter. So, * wrt, "max-preludes", the break will start over when it comes back. */ void BreakControl::stop_break(bool reset_count) { TRACE_ENTER_MSG("BreakControl::stop_break", break_id << " " << reset_count); suspend_break(); if (reset_count) { prelude_count = 0; } TRACE_EXIT(); } //! Suspend the break. /*! * A suspended break will come back after snooze time. The number of times the * break will come back can be defined with set_max_preludes. */ void BreakControl::suspend_break() { TRACE_ENTER_MSG("BreakControl::suspend_break", break_id); break_hint = BREAK_HINT_NONE; goto_stage(STAGE_NONE); TRACE_EXIT(); } //! Does the controller need a heartbeat? bool BreakControl::need_heartbeat() { return (break_stage != STAGE_NONE && break_stage != STAGE_SNOOZED); } //! Is the break active ? BreakControl::BreakState BreakControl::get_break_state() { BreakState ret = BREAK_INACTIVE; if (break_stage == STAGE_NONE) { ret = BREAK_INACTIVE; } else if (break_stage == STAGE_SNOOZED) { ret = BREAK_INACTIVE; } else { ret = BREAK_ACTIVE; } return ret; } bool BreakControl::is_taking() { return break_stage == STAGE_TAKING; } bool BreakControl::is_max_preludes_reached() const { TRACE_ENTER_MSG("BreakControl::is_max_preludes_reached", reached_max_prelude << " " << prelude_count << " " << max_number_of_preludes); TRACE_EXIT(); return reached_max_prelude; } //! Postpones the active break. /*! * Postponing a break does not reset the break timer. The break prelude window * will re-appear after snooze time. */ void BreakControl::postpone_break() { if (break_stage == STAGE_TAKING) { if (!forced_break) { if (!fake_break) { // Snooze the timer. break_timer->snooze_timer(); } // Update stats. Statistics *stats = core->get_statistics(); stats->increment_break_counter(break_id, Statistics::STATS_BREAKVALUE_POSTPONED); } // This is to avoid a skip sound... user_abort = true; // and stop the break. stop_break(); send_postponed(); } } //! Skips the active break. /*! * Skipping a break resets the break timer. */ void BreakControl::skip_break() { // This is to avoid a skip sound... if (break_stage == STAGE_TAKING) { user_abort = true; if (break_id == BREAK_ID_DAILY_LIMIT) { // Make sure the daily limit remains silent after skipping. break_timer->inhibit_snooze(); } else { // Reset the restbreak timer. break_timer->reset_timer(); } // Update stats. Statistics *stats = core->get_statistics(); stats->increment_break_counter(break_id, Statistics::STATS_BREAKVALUE_SKIPPED); // and stop the break. stop_break(); send_skipped(); } } void BreakControl::stop_prelude() { delayed_abort = true; } //! Sets the maximum number of preludes. /*! * After the maximum number of preludes, the break either stops bothering the * user, or forces a break. This can be set with set_force_after_preludes. */ void BreakControl::set_max_preludes(int m) { max_number_of_preludes = m; } //! Creates and shows the break window. void BreakControl::break_window_start() { TRACE_ENTER_MSG("BreakControl::break_window_start", break_id); application->create_break_window(break_id, break_hint); update_break_window(); application->show_break_window(); TRACE_EXIT(); } //! Creates and shows the prelude window. void BreakControl::prelude_window_start() { TRACE_ENTER_MSG("BreakControl::prelude_window_start", break_id); application->create_prelude_window(break_id); application->set_prelude_stage(IApp::STAGE_INITIAL); if (!reached_max_prelude) { application->set_prelude_progress_text(IApp::PROGRESS_TEXT_DISAPPEARS_IN); } else { application->set_prelude_progress_text(IApp::PROGRESS_TEXT_BREAK_IN); } update_prelude_window(); application->show_break_window(); TRACE_EXIT(); } bool BreakControl::action_notify() { TRACE_ENTER("GUI::action_notify"); core->stop_prelude(break_id); TRACE_EXIT(); return false; // false: kill listener. } //! Initializes this control to the specified state. void BreakControl::set_state_data(bool active, const BreakStateData &data) { (void)active; TRACE_ENTER_MSG("BreakStateData::set_state_data", active); TRACE_MSG("forced = " << data.forced_break << " prelude = " << data.prelude_count << " stage = " << data.break_stage << " final = " << reached_max_prelude << " time = " << data.prelude_time); forced_break = data.forced_break; prelude_count = data.prelude_count; prelude_time = data.prelude_time; TRACE_EXIT(); } //! Returns the state of this control. void BreakControl::get_state_data(BreakStateData &data) { data.forced_break = forced_break; data.prelude_count = prelude_count; data.break_stage = break_stage; data.reached_max_prelude = reached_max_prelude; data.prelude_time = prelude_time; } //! Plays the specified sound unless action is user initiated. void BreakControl::post_event(CoreEvent event) { TRACE_ENTER_MSG("BreakControl::post_event", break_id); if (event >= 0) { core->post_event(event); } TRACE_EXIT(); } void BreakControl::send_postponed() { #ifdef HAVE_DBUS workrave::dbus::IDBus::Ptr dbus = core->get_dbus(); org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { iface->BreakPostponed("/org/workrave/Workrave/Core", break_id); } #endif } void BreakControl::send_skipped() { #ifdef HAVE_DBUS workrave::dbus::IDBus::Ptr dbus = core->get_dbus(); org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { iface->BreakSkipped("/org/workrave/Workrave/Core", break_id); } #endif } std::string BreakControl::get_current_stage() { return get_stage_text(break_stage); } std::string BreakControl::get_stage_text(BreakStage stage) { std::string progress; switch (stage) { case STAGE_NONE: progress = "none"; break; case STAGE_SNOOZED: progress = "none"; break; case STAGE_DELAYED: // Do not send this stage. break; case STAGE_PRELUDE: progress = "prelude"; break; case STAGE_TAKING: progress = "break"; break; } return progress; } //! Send DBus signal when break stage changes. void BreakControl::send_signal(BreakStage stage) { (void)stage; #ifdef HAVE_DBUS std::string progress = get_stage_text(stage); if (progress != "") { workrave::dbus::IDBus::Ptr dbus = core->get_dbus(); org_workrave_CoreInterface *iface = org_workrave_CoreInterface::instance(dbus); if (iface != NULL) { switch (break_id) { case BREAK_ID_MICRO_BREAK: iface->MicrobreakChanged("/org/workrave/Workrave/Core", progress); break; case BREAK_ID_REST_BREAK: iface->RestbreakChanged("/org/workrave/Workrave/Core", progress); break; case BREAK_ID_DAILY_LIMIT: iface->DailylimitChanged("/org/workrave/Workrave/Core", progress); break; default: break; } } } #endif } workrave-1.10.50/backend/src/InputMonitor.icc0000644000175100001710000000317514221624106017734 0ustar00gdm00000000000000// InputMonitor.icc // // Copyright (C) 2007, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // inline void InputMonitor::fire_action() { if (activity_listener != NULL) { activity_listener->action_notify(); } } inline void InputMonitor::fire_mouse(int x, int y, int wheel) { if (activity_listener != NULL) { activity_listener->mouse_notify(x, y, wheel); } if (statistics_listener != NULL) { statistics_listener->mouse_notify(x, y, wheel); } } inline void InputMonitor::fire_button(bool is_press) { if (activity_listener != NULL) { activity_listener->button_notify(is_press); } if (statistics_listener != NULL) { statistics_listener->button_notify(is_press); } } inline void InputMonitor::fire_keyboard(bool repeat) { if (activity_listener != NULL) { activity_listener->keyboard_notify(repeat); } if (statistics_listener != NULL) { statistics_listener->keyboard_notify(repeat); } } workrave-1.10.50/backend/src/Makefile.in0000644000000000000000000022213314221624200017733 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = org.workrave.gschema.xml.in CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_backend_la_DEPENDENCIES = $(platform_ldadd) am__libworkrave_backend_la_SOURCES_DIST = ActivityMonitor.cc Break.cc \ BreakControl.cc Configurator.cc ConfiguratorFactory.cc Core.cc \ CoreConfig.cc CoreFactory.cc GlibIniConfigurator.cc \ GSettingsConfigurator.cc IdleLogManager.cc InputMonitor.cc \ InputMonitorFactory.cc Statistics.cc TimePredFactory.cc \ Timer.cc DayTimePred.cc Test.cc XMLConfigurator.cc \ GNetSocketDriver.cc DistributionManager.cc \ DistributionSocketLink.cc PacketBuffer.cc SocketDriver.cc \ GIOSocketDriver.cc DBusWorkrave.cc DBusWorkrave.hh am__objects_1 = libworkrave_backend_la-ActivityMonitor.lo \ libworkrave_backend_la-Break.lo \ libworkrave_backend_la-BreakControl.lo \ libworkrave_backend_la-Configurator.lo \ libworkrave_backend_la-ConfiguratorFactory.lo \ libworkrave_backend_la-Core.lo \ libworkrave_backend_la-CoreConfig.lo \ libworkrave_backend_la-CoreFactory.lo \ libworkrave_backend_la-GlibIniConfigurator.lo \ libworkrave_backend_la-GSettingsConfigurator.lo \ libworkrave_backend_la-IdleLogManager.lo \ libworkrave_backend_la-InputMonitor.lo \ libworkrave_backend_la-InputMonitorFactory.lo \ libworkrave_backend_la-Statistics.lo \ libworkrave_backend_la-TimePredFactory.lo \ libworkrave_backend_la-Timer.lo \ libworkrave_backend_la-DayTimePred.lo \ libworkrave_backend_la-Test.lo \ libworkrave_backend_la-TimePredFactory.lo @HAVE_GDOME_TRUE@am__objects_2 = \ @HAVE_GDOME_TRUE@ libworkrave_backend_la-XMLConfigurator.lo @HAVE_DISTRIBUTION_TRUE@@HAVE_GNET_TRUE@am__objects_3 = libworkrave_backend_la-GNetSocketDriver.lo @HAVE_DISTRIBUTION_TRUE@am__objects_4 = libworkrave_backend_la-DistributionManager.lo \ @HAVE_DISTRIBUTION_TRUE@ libworkrave_backend_la-DistributionSocketLink.lo \ @HAVE_DISTRIBUTION_TRUE@ libworkrave_backend_la-PacketBuffer.lo \ @HAVE_DISTRIBUTION_TRUE@ libworkrave_backend_la-SocketDriver.lo \ @HAVE_DISTRIBUTION_TRUE@ libworkrave_backend_la-GIOSocketDriver.lo @HAVE_DBUS_TRUE@am__objects_5 = \ @HAVE_DBUS_TRUE@ libworkrave_backend_la-DBusWorkrave.lo am_libworkrave_backend_la_OBJECTS = $(am__objects_1) $(am__objects_2) \ $(am__objects_3) $(am__objects_4) $(am__objects_5) libworkrave_backend_la_OBJECTS = $(am_libworkrave_backend_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_backend_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Break.Plo \ ./$(DEPDIR)/libworkrave_backend_la-BreakControl.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Configurator.Plo \ ./$(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Core.Plo \ ./$(DEPDIR)/libworkrave_backend_la-CoreConfig.Plo \ ./$(DEPDIR)/libworkrave_backend_la-CoreFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Plo \ ./$(DEPDIR)/libworkrave_backend_la-DayTimePred.Plo \ ./$(DEPDIR)/libworkrave_backend_la-DistributionManager.Plo \ ./$(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Plo \ ./$(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Plo \ ./$(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Plo \ ./$(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Plo \ ./$(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Plo \ ./$(DEPDIR)/libworkrave_backend_la-IdleLogManager.Plo \ ./$(DEPDIR)/libworkrave_backend_la-InputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_la-PacketBuffer.Plo \ ./$(DEPDIR)/libworkrave_backend_la-SocketDriver.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Statistics.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Test.Plo \ ./$(DEPDIR)/libworkrave_backend_la-TimePredFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_la-Timer.Plo \ ./$(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libworkrave_backend_la_SOURCES) DIST_SOURCES = $(am__libworkrave_backend_la_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in \ $(srcdir)/org.workrave.gschema.xml.in.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ -I$(top_srcdir)/intl -I. -I $(top_srcdir)/backend/include DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in $(gsettings_SCHEMAS:.xml=.valid) SUBDIRS = unix win32 macos noinst_LTLIBRARIES = libworkrave-backend.la sources = ActivityMonitor.cc \ Break.cc \ BreakControl.cc \ Configurator.cc \ ConfiguratorFactory.cc \ Core.cc \ CoreConfig.cc \ CoreFactory.cc \ GlibIniConfigurator.cc \ GSettingsConfigurator.cc \ IdleLogManager.cc \ InputMonitor.cc \ InputMonitorFactory.cc \ Statistics.cc \ TimePredFactory.cc \ Timer.cc \ DayTimePred.cc \ Test.cc \ TimePredFactory.cc @HAVE_GDOME_TRUE@sourcesgdome = XMLConfigurator.cc @HAVE_DISTRIBUTION_TRUE@sourcesdistribution = DistributionManager.cc \ @HAVE_DISTRIBUTION_TRUE@ DistributionSocketLink.cc \ @HAVE_DISTRIBUTION_TRUE@ PacketBuffer.cc \ @HAVE_DISTRIBUTION_TRUE@ SocketDriver.cc \ @HAVE_DISTRIBUTION_TRUE@ GIOSocketDriver.cc @HAVE_DISTRIBUTION_TRUE@@HAVE_GNET_TRUE@sourcesgnet = GNetSocketDriver.cc @PLATFORM_OS_MACOS_TRUE@platform_ldadd = macos/libworkrave-backend-macos.la @PLATFORM_OS_UNIX_TRUE@platform_ldadd = unix/libworkrave-backend-unix.la @PLATFORM_OS_WINDOWS_TRUE@platform_ldadd = win32/libworkrave-backend-win32.la @PLATFORM_OS_MACOS_TRUE@platform_cflags = -I$(top_srcdir)/backend/src/macos @PLATFORM_OS_UNIX_TRUE@platform_cflags = -I$(top_srcdir)/backend/src/unix @PLATFORM_OS_WINDOWS_TRUE@platform_cflags = -I$(top_srcdir)/backend/src/win32 #DBusWorkrave.hh: DBusWorkrave.cc ; test -f $@ #BreakControl.cc: DBusWorkrave.hh ; test -f $@ #workrave-client-bindings.h: DBusWorkrave.cc ; test -f $@ #workrave-server-bindings.h: DBusWorkrave.cc ; test -f $@ @HAVE_DBUS_FALSE@dbussources = # DBus service file @HAVE_DBUS_TRUE@dbussources = DBusWorkrave.cc \ @HAVE_DBUS_TRUE@ DBusWorkrave.hh @HAVE_DBUS_TRUE@BUILT_SOURCES = $(dbussources) @HAVE_GSETTINGS_TRUE@gsettings_ENUM_NAMESPACE = org.workrave @HAVE_GSETTINGS_TRUE@gsettings_ENUM_FILES = $(srcdir)/../include/enum.h @HAVE_GSETTINGS_TRUE@gsettings_SCHEMAS = org.workrave.gschema.xml libworkrave_backend_la_SOURCES = \ ${sources} ${sourcesgdome} ${sourcesgnet} ${sourcesdistribution} \ ${dbussources} libworkrave_backend_la_CFLAGS = \ -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 @X_CFLAGS@ \ ${platform_cflags} @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ @GDOME_CFLAGS@ @GNET_CFLAGS@ \ @GCONF_CFLAGS@ libworkrave_backend_la_CXXFLAGS = ${libworkrave_backend_la_CFLAGS} libworkrave_backend_la_LIBADD = ${platform_ldadd} DISTCLEANFILES = org.workrave.gschema.xml EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc) $(wildcard $(srcdir)/*.hh) \ $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) workrave-service.xml \ org.workrave.Workrave.service.in $(gsettings_SCHEMAS:.xml=.xml.in.in) all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): org.workrave.gschema.xml.in: $(top_builddir)/config.status $(srcdir)/org.workrave.gschema.xml.in.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-backend.la: $(libworkrave_backend_la_OBJECTS) $(libworkrave_backend_la_DEPENDENCIES) $(EXTRA_libworkrave_backend_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_backend_la_LINK) $(libworkrave_backend_la_OBJECTS) $(libworkrave_backend_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Break.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-BreakControl.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Configurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Core.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-CoreConfig.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-CoreFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-DayTimePred.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-DistributionManager.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-IdleLogManager.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-InputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-PacketBuffer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-SocketDriver.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Statistics.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Test.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-TimePredFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-Timer.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_backend_la-ActivityMonitor.lo: ActivityMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-ActivityMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Tpo -c -o libworkrave_backend_la-ActivityMonitor.lo `test -f 'ActivityMonitor.cc' || echo '$(srcdir)/'`ActivityMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Tpo $(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ActivityMonitor.cc' object='libworkrave_backend_la-ActivityMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-ActivityMonitor.lo `test -f 'ActivityMonitor.cc' || echo '$(srcdir)/'`ActivityMonitor.cc libworkrave_backend_la-Break.lo: Break.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Break.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Break.Tpo -c -o libworkrave_backend_la-Break.lo `test -f 'Break.cc' || echo '$(srcdir)/'`Break.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Break.Tpo $(DEPDIR)/libworkrave_backend_la-Break.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Break.cc' object='libworkrave_backend_la-Break.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Break.lo `test -f 'Break.cc' || echo '$(srcdir)/'`Break.cc libworkrave_backend_la-BreakControl.lo: BreakControl.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-BreakControl.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-BreakControl.Tpo -c -o libworkrave_backend_la-BreakControl.lo `test -f 'BreakControl.cc' || echo '$(srcdir)/'`BreakControl.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-BreakControl.Tpo $(DEPDIR)/libworkrave_backend_la-BreakControl.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BreakControl.cc' object='libworkrave_backend_la-BreakControl.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-BreakControl.lo `test -f 'BreakControl.cc' || echo '$(srcdir)/'`BreakControl.cc libworkrave_backend_la-Configurator.lo: Configurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Configurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Configurator.Tpo -c -o libworkrave_backend_la-Configurator.lo `test -f 'Configurator.cc' || echo '$(srcdir)/'`Configurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Configurator.Tpo $(DEPDIR)/libworkrave_backend_la-Configurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Configurator.cc' object='libworkrave_backend_la-Configurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Configurator.lo `test -f 'Configurator.cc' || echo '$(srcdir)/'`Configurator.cc libworkrave_backend_la-ConfiguratorFactory.lo: ConfiguratorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-ConfiguratorFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Tpo -c -o libworkrave_backend_la-ConfiguratorFactory.lo `test -f 'ConfiguratorFactory.cc' || echo '$(srcdir)/'`ConfiguratorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Tpo $(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ConfiguratorFactory.cc' object='libworkrave_backend_la-ConfiguratorFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-ConfiguratorFactory.lo `test -f 'ConfiguratorFactory.cc' || echo '$(srcdir)/'`ConfiguratorFactory.cc libworkrave_backend_la-Core.lo: Core.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Core.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Core.Tpo -c -o libworkrave_backend_la-Core.lo `test -f 'Core.cc' || echo '$(srcdir)/'`Core.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Core.Tpo $(DEPDIR)/libworkrave_backend_la-Core.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Core.cc' object='libworkrave_backend_la-Core.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Core.lo `test -f 'Core.cc' || echo '$(srcdir)/'`Core.cc libworkrave_backend_la-CoreConfig.lo: CoreConfig.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-CoreConfig.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-CoreConfig.Tpo -c -o libworkrave_backend_la-CoreConfig.lo `test -f 'CoreConfig.cc' || echo '$(srcdir)/'`CoreConfig.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-CoreConfig.Tpo $(DEPDIR)/libworkrave_backend_la-CoreConfig.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CoreConfig.cc' object='libworkrave_backend_la-CoreConfig.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-CoreConfig.lo `test -f 'CoreConfig.cc' || echo '$(srcdir)/'`CoreConfig.cc libworkrave_backend_la-CoreFactory.lo: CoreFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-CoreFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-CoreFactory.Tpo -c -o libworkrave_backend_la-CoreFactory.lo `test -f 'CoreFactory.cc' || echo '$(srcdir)/'`CoreFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-CoreFactory.Tpo $(DEPDIR)/libworkrave_backend_la-CoreFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CoreFactory.cc' object='libworkrave_backend_la-CoreFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-CoreFactory.lo `test -f 'CoreFactory.cc' || echo '$(srcdir)/'`CoreFactory.cc libworkrave_backend_la-GlibIniConfigurator.lo: GlibIniConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-GlibIniConfigurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Tpo -c -o libworkrave_backend_la-GlibIniConfigurator.lo `test -f 'GlibIniConfigurator.cc' || echo '$(srcdir)/'`GlibIniConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Tpo $(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GlibIniConfigurator.cc' object='libworkrave_backend_la-GlibIniConfigurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-GlibIniConfigurator.lo `test -f 'GlibIniConfigurator.cc' || echo '$(srcdir)/'`GlibIniConfigurator.cc libworkrave_backend_la-GSettingsConfigurator.lo: GSettingsConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-GSettingsConfigurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Tpo -c -o libworkrave_backend_la-GSettingsConfigurator.lo `test -f 'GSettingsConfigurator.cc' || echo '$(srcdir)/'`GSettingsConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Tpo $(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GSettingsConfigurator.cc' object='libworkrave_backend_la-GSettingsConfigurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-GSettingsConfigurator.lo `test -f 'GSettingsConfigurator.cc' || echo '$(srcdir)/'`GSettingsConfigurator.cc libworkrave_backend_la-IdleLogManager.lo: IdleLogManager.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-IdleLogManager.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-IdleLogManager.Tpo -c -o libworkrave_backend_la-IdleLogManager.lo `test -f 'IdleLogManager.cc' || echo '$(srcdir)/'`IdleLogManager.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-IdleLogManager.Tpo $(DEPDIR)/libworkrave_backend_la-IdleLogManager.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IdleLogManager.cc' object='libworkrave_backend_la-IdleLogManager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-IdleLogManager.lo `test -f 'IdleLogManager.cc' || echo '$(srcdir)/'`IdleLogManager.cc libworkrave_backend_la-InputMonitor.lo: InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-InputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-InputMonitor.Tpo -c -o libworkrave_backend_la-InputMonitor.lo `test -f 'InputMonitor.cc' || echo '$(srcdir)/'`InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-InputMonitor.Tpo $(DEPDIR)/libworkrave_backend_la-InputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='InputMonitor.cc' object='libworkrave_backend_la-InputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-InputMonitor.lo `test -f 'InputMonitor.cc' || echo '$(srcdir)/'`InputMonitor.cc libworkrave_backend_la-InputMonitorFactory.lo: InputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-InputMonitorFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Tpo -c -o libworkrave_backend_la-InputMonitorFactory.lo `test -f 'InputMonitorFactory.cc' || echo '$(srcdir)/'`InputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Tpo $(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='InputMonitorFactory.cc' object='libworkrave_backend_la-InputMonitorFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-InputMonitorFactory.lo `test -f 'InputMonitorFactory.cc' || echo '$(srcdir)/'`InputMonitorFactory.cc libworkrave_backend_la-Statistics.lo: Statistics.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Statistics.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Statistics.Tpo -c -o libworkrave_backend_la-Statistics.lo `test -f 'Statistics.cc' || echo '$(srcdir)/'`Statistics.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Statistics.Tpo $(DEPDIR)/libworkrave_backend_la-Statistics.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Statistics.cc' object='libworkrave_backend_la-Statistics.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Statistics.lo `test -f 'Statistics.cc' || echo '$(srcdir)/'`Statistics.cc libworkrave_backend_la-TimePredFactory.lo: TimePredFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-TimePredFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-TimePredFactory.Tpo -c -o libworkrave_backend_la-TimePredFactory.lo `test -f 'TimePredFactory.cc' || echo '$(srcdir)/'`TimePredFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-TimePredFactory.Tpo $(DEPDIR)/libworkrave_backend_la-TimePredFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TimePredFactory.cc' object='libworkrave_backend_la-TimePredFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-TimePredFactory.lo `test -f 'TimePredFactory.cc' || echo '$(srcdir)/'`TimePredFactory.cc libworkrave_backend_la-Timer.lo: Timer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Timer.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Timer.Tpo -c -o libworkrave_backend_la-Timer.lo `test -f 'Timer.cc' || echo '$(srcdir)/'`Timer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Timer.Tpo $(DEPDIR)/libworkrave_backend_la-Timer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Timer.cc' object='libworkrave_backend_la-Timer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Timer.lo `test -f 'Timer.cc' || echo '$(srcdir)/'`Timer.cc libworkrave_backend_la-DayTimePred.lo: DayTimePred.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-DayTimePred.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-DayTimePred.Tpo -c -o libworkrave_backend_la-DayTimePred.lo `test -f 'DayTimePred.cc' || echo '$(srcdir)/'`DayTimePred.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-DayTimePred.Tpo $(DEPDIR)/libworkrave_backend_la-DayTimePred.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DayTimePred.cc' object='libworkrave_backend_la-DayTimePred.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-DayTimePred.lo `test -f 'DayTimePred.cc' || echo '$(srcdir)/'`DayTimePred.cc libworkrave_backend_la-Test.lo: Test.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-Test.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-Test.Tpo -c -o libworkrave_backend_la-Test.lo `test -f 'Test.cc' || echo '$(srcdir)/'`Test.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-Test.Tpo $(DEPDIR)/libworkrave_backend_la-Test.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Test.cc' object='libworkrave_backend_la-Test.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-Test.lo `test -f 'Test.cc' || echo '$(srcdir)/'`Test.cc libworkrave_backend_la-XMLConfigurator.lo: XMLConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-XMLConfigurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Tpo -c -o libworkrave_backend_la-XMLConfigurator.lo `test -f 'XMLConfigurator.cc' || echo '$(srcdir)/'`XMLConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Tpo $(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XMLConfigurator.cc' object='libworkrave_backend_la-XMLConfigurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-XMLConfigurator.lo `test -f 'XMLConfigurator.cc' || echo '$(srcdir)/'`XMLConfigurator.cc libworkrave_backend_la-GNetSocketDriver.lo: GNetSocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-GNetSocketDriver.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Tpo -c -o libworkrave_backend_la-GNetSocketDriver.lo `test -f 'GNetSocketDriver.cc' || echo '$(srcdir)/'`GNetSocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Tpo $(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GNetSocketDriver.cc' object='libworkrave_backend_la-GNetSocketDriver.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-GNetSocketDriver.lo `test -f 'GNetSocketDriver.cc' || echo '$(srcdir)/'`GNetSocketDriver.cc libworkrave_backend_la-DistributionManager.lo: DistributionManager.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-DistributionManager.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-DistributionManager.Tpo -c -o libworkrave_backend_la-DistributionManager.lo `test -f 'DistributionManager.cc' || echo '$(srcdir)/'`DistributionManager.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-DistributionManager.Tpo $(DEPDIR)/libworkrave_backend_la-DistributionManager.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DistributionManager.cc' object='libworkrave_backend_la-DistributionManager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-DistributionManager.lo `test -f 'DistributionManager.cc' || echo '$(srcdir)/'`DistributionManager.cc libworkrave_backend_la-DistributionSocketLink.lo: DistributionSocketLink.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-DistributionSocketLink.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Tpo -c -o libworkrave_backend_la-DistributionSocketLink.lo `test -f 'DistributionSocketLink.cc' || echo '$(srcdir)/'`DistributionSocketLink.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Tpo $(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DistributionSocketLink.cc' object='libworkrave_backend_la-DistributionSocketLink.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-DistributionSocketLink.lo `test -f 'DistributionSocketLink.cc' || echo '$(srcdir)/'`DistributionSocketLink.cc libworkrave_backend_la-PacketBuffer.lo: PacketBuffer.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-PacketBuffer.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-PacketBuffer.Tpo -c -o libworkrave_backend_la-PacketBuffer.lo `test -f 'PacketBuffer.cc' || echo '$(srcdir)/'`PacketBuffer.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-PacketBuffer.Tpo $(DEPDIR)/libworkrave_backend_la-PacketBuffer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PacketBuffer.cc' object='libworkrave_backend_la-PacketBuffer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-PacketBuffer.lo `test -f 'PacketBuffer.cc' || echo '$(srcdir)/'`PacketBuffer.cc libworkrave_backend_la-SocketDriver.lo: SocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-SocketDriver.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-SocketDriver.Tpo -c -o libworkrave_backend_la-SocketDriver.lo `test -f 'SocketDriver.cc' || echo '$(srcdir)/'`SocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-SocketDriver.Tpo $(DEPDIR)/libworkrave_backend_la-SocketDriver.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SocketDriver.cc' object='libworkrave_backend_la-SocketDriver.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-SocketDriver.lo `test -f 'SocketDriver.cc' || echo '$(srcdir)/'`SocketDriver.cc libworkrave_backend_la-GIOSocketDriver.lo: GIOSocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-GIOSocketDriver.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Tpo -c -o libworkrave_backend_la-GIOSocketDriver.lo `test -f 'GIOSocketDriver.cc' || echo '$(srcdir)/'`GIOSocketDriver.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Tpo $(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GIOSocketDriver.cc' object='libworkrave_backend_la-GIOSocketDriver.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-GIOSocketDriver.lo `test -f 'GIOSocketDriver.cc' || echo '$(srcdir)/'`GIOSocketDriver.cc libworkrave_backend_la-DBusWorkrave.lo: DBusWorkrave.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_la-DBusWorkrave.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Tpo -c -o libworkrave_backend_la-DBusWorkrave.lo `test -f 'DBusWorkrave.cc' || echo '$(srcdir)/'`DBusWorkrave.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Tpo $(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBusWorkrave.cc' object='libworkrave_backend_la-DBusWorkrave.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_la-DBusWorkrave.lo `test -f 'DBusWorkrave.cc' || echo '$(srcdir)/'`DBusWorkrave.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-recursive -rm -f ./$(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Break.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-BreakControl.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Configurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Core.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-CoreConfig.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-CoreFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DayTimePred.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DistributionManager.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-IdleLogManager.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-PacketBuffer.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-SocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Statistics.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Test.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-TimePredFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Timer.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f ./$(DEPDIR)/libworkrave_backend_la-ActivityMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Break.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-BreakControl.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Configurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-ConfiguratorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Core.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-CoreConfig.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-CoreFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DBusWorkrave.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DayTimePred.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DistributionManager.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-DistributionSocketLink.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GIOSocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GNetSocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GSettingsConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-GlibIniConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-IdleLogManager.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-InputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-PacketBuffer.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-SocketDriver.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Statistics.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Test.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-TimePredFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-Timer.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_la-XMLConfigurator.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-generic clean-libtool \ clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile @HAVE_DBUS_TRUE@DBusWorkrave.cc: workrave-service.xml \ @HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ @HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/data/gio-cc.jinja @HAVE_DBUS_TRUE@ $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-service.xml $(top_srcdir)/libs/dbus/data/gio-cc.jinja DBusWorkrave.cc @HAVE_DBUS_TRUE@DBusWorkrave.hh: workrave-service.xml \ @HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ @HAVE_DBUS_TRUE@ $(top_srcdir)/libs/dbus/data/gio-hh.jinja @HAVE_DBUS_TRUE@ $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-service.xml $(top_srcdir)/libs/dbus/data/gio-hh.jinja DBusWorkrave.hh @HAVE_GSETTINGS_TRUE@@INTLTOOL_XML_NOMERGE_RULE@ @HAVE_GSETTINGS_TRUE@@GSETTINGS_RULES@ # 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: workrave-1.10.50/backend/src/Break.cc0000644000175100001710000002416014221624106016135 0ustar00gdm00000000000000// Break.cc // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "Break.hh" #include "IConfigurator.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "BreakControl.hh" #include "Timer.hh" #include "TimerActivityMonitor.hh" #include "CoreConfig.hh" using namespace std; struct Defaults { string name; // Timer settings. int limit; int auto_reset; string resetpred; int snooze; // Break settings int max_preludes; } default_config[] = {{ // FIXME: Rename to micro_break, but in a backwards compatible manner. "micro_pause", 3 * 60, 30, "", 150, 3, }, { "rest_break", 45 * 60, 10 * 60, "", 180, 3, }, { "daily_limit", 14400, 0, "day/4:00", 20 * 60, 3, }}; //! Constructs a new Break Break::Break() : break_id(BREAK_ID_NONE) , config(NULL) , application(NULL) , timer(NULL) , break_control(NULL) , enabled(true) , usage_mode(USAGE_MODE_NORMAL) { TRACE_ENTER("Break:Break"); TRACE_EXIT() } //! Initializes the break. void Break::init(BreakId id, IApp *app) { TRACE_ENTER("Break::init"); break_id = id; config = CoreFactory::get_configurator(); application = app; Defaults &def = default_config[break_id]; break_name = def.name; timer = new Timer(break_name); break_control = new BreakControl(break_id, break_name, app, timer); init_timer(); init_break_control(); init_defaults(); TRACE_EXIT() } //! Destructor. Break::~Break() { TRACE_ENTER("Break:~Break"); delete break_control; delete timer; TRACE_EXIT(); } string Break::expand(const string &key, BreakId id) { string str = key; string::size_type pos = 0; string name = get_name(id); while ((pos = str.find("%b", pos)) != string::npos) { str.replace(pos, 2, name); pos++; } return str; } string Break::expand(const string &key) { string str = key; string::size_type pos = 0; string name = get_name(); while ((pos = str.find("%b", pos)) != string::npos) { str.replace(pos, 2, name); pos++; } return str; } void Break::init_defaults() { Defaults &def = default_config[break_id]; config->set_delay(CoreConfig::CFG_KEY_TIMER_LIMIT % break_id, 2); config->set_delay(CoreConfig::CFG_KEY_TIMER_AUTO_RESET % break_id, 2); // Convert old settings. config->rename_key(string("gui/breaks/%b/max_preludes") % break_id, CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id); config->rename_key(string("gui/breaks/%b/enabled") % break_id, CoreConfig::CFG_KEY_BREAK_ENABLED % break_id); config->remove_key(string("gui/breaks/%b/max_postpone") % break_id); // Set defaults. config->set_value(CoreConfig::CFG_KEY_TIMER_LIMIT % break_id, def.limit, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_TIMER_AUTO_RESET % break_id, def.auto_reset, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_TIMER_RESET_PRED % break_id, def.resetpred, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_TIMER_SNOOZE % break_id, def.snooze, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_TIMER_MONITOR % break_id, "", CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_TIMER_ACTIVITY_SENSITIVE % break_id, true, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, def.max_preludes, CONFIG_FLAG_DEFAULT); config->set_value(CoreConfig::CFG_KEY_BREAK_ENABLED % break_id, true, CONFIG_FLAG_DEFAULT); } //! Returns the id of the break BreakId Break::get_id() const { return break_id; } //! Returns the name of the break (used in configuration) string Break::get_name() const { return break_name; } //! Returns the name of the break (used in configuration) string Break::get_name(BreakId id) { Defaults &def = default_config[id]; return def.name; } //! Returns the timer. Timer * Break::get_timer() const { return timer; } //! Returns the Break controller. BreakControl * Break::get_break_control() { return break_control; } // Initialize the timer based. void Break::init_timer() { load_timer_config(); timer->enable(); timer->stop_timer(); config->add_listener(CoreConfig::CFG_KEY_TIMER % break_id, this); } //! Load the configuration of the timer. void Break::load_timer_config() { TRACE_ENTER("Break::load_timer_config"); // Read break limit. int limit; config->get_value(CoreConfig::CFG_KEY_TIMER_LIMIT % break_id, limit); timer->set_limit(limit); timer->set_limit_enabled(limit > 0); // Read autoreset interval int autoreset; config->get_value(CoreConfig::CFG_KEY_TIMER_AUTO_RESET % break_id, autoreset); timer->set_auto_reset(autoreset); timer->set_auto_reset_enabled(autoreset > 0); // Read reset predicate string reset_pred; config->get_value(CoreConfig::CFG_KEY_TIMER_RESET_PRED % break_id, reset_pred); if (reset_pred != "") { timer->set_auto_reset(reset_pred); } // Read the snooze time. int snooze; config->get_value(CoreConfig::CFG_KEY_TIMER_SNOOZE % break_id, snooze); timer->set_snooze_interval(snooze); // Load the monitor setting for the timer. string monitor_name; bool ret = config->get_value(CoreConfig::CFG_KEY_TIMER_MONITOR % break_id, monitor_name); TRACE_MSG(ret << " " << monitor_name); if (ret && monitor_name != "") { Core *core = Core::get_instance(); Timer *master = core->get_timer(monitor_name); if (master != NULL) { TRACE_MSG("found master timer"); TimerActivityMonitor *am = new TimerActivityMonitor(master); timer->set_activity_monitor(am); } } else { timer->set_activity_monitor(NULL); } TRACE_EXIT(); } // Initialize the break control. void Break::init_break_control() { load_break_control_config(); config->add_listener(CoreConfig::CFG_KEY_BREAK % break_id, this); } void Break::load_break_control_config() { // Maximum number of prelude windows. int max_preludes; config->get_value(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, max_preludes); break_control->set_max_preludes(max_preludes); // Break enabled? enabled = true; config->get_value(CoreConfig::CFG_KEY_BREAK_ENABLED % break_id, enabled); } void Break::override(BreakId id) { int max_preludes; config->get_value(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % break_id, max_preludes); if (break_id != id) { int override_max_preludes; config->get_value(CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES % id, override_max_preludes); if (override_max_preludes != -1 && override_max_preludes < max_preludes) { max_preludes = override_max_preludes; } } break_control->set_max_preludes(max_preludes); } bool Break::get_timer_activity_sensitive() const { return timer->get_activity_sensitive(); } bool Break::is_enabled() const { return enabled; } bool Break::is_running() const { TimerState state = timer->get_state(); return state == STATE_RUNNING; } bool Break::is_taking() const { return break_control->is_taking(); } bool Break::is_max_preludes_reached() const { return break_control->is_max_preludes_reached(); } time_t Break::get_elapsed_time() const { return timer->get_elapsed_time(); } time_t Break::get_elapsed_idle_time() const { return timer->get_elapsed_idle_time(); } time_t Break::get_auto_reset() const { return timer->get_auto_reset(); } bool Break::is_auto_reset_enabled() const { return timer->is_auto_reset_enabled(); } time_t Break::get_limit() const { return timer->get_limit(); } bool Break::is_limit_enabled() const { return timer->is_limit_enabled(); } void Break::set_usage_mode(UsageMode mode) { TRACE_ENTER_MSG("Break::set_usage_mode", mode); if (usage_mode != mode) { usage_mode = mode; TRACE_MSG("changing"); if (mode == USAGE_MODE_NORMAL) { timer->set_activity_sensitive(true); } else if (mode == USAGE_MODE_READING) { timer->set_activity_sensitive(false); } } TRACE_EXIT(); } bool Break::starts_with(const string &key, string prefix, string &name) { TRACE_ENTER_MSG("Break::starts_with", key << " " << prefix); bool ret = false; // Search prefix (just in case some Configurator added a leading /) string::size_type pos = key.rfind(prefix); string k; if (pos != string::npos) { TRACE_MSG(pos); k = key.substr(pos + prefix.length()); pos = k.find('/'); if (pos != string::npos) { name = k.substr(0, pos); } ret = true; } TRACE_EXIT(); return ret; } //! Notification that the configuration changed. void Break::config_changed_notify(const string &key) { TRACE_ENTER_MSG("Break::config_changed_notify", key); string name; if (starts_with(key, CoreConfig::CFG_KEY_BREAKS, name)) { TRACE_MSG("break: " << name); load_break_control_config(); } else if (starts_with(key, CoreConfig::CFG_KEY_TIMERS, name)) { TRACE_MSG("timer: " << name); load_timer_config(); } TRACE_EXIT(); } workrave-1.10.50/backend/src/Test.cc0000644000175100001710000000217714221624106016034 0ustar00gdm00000000000000// Test.cc --- The main controller // // Copyright (C) 2006, 2007, 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DBUS # include "dbus/IDBus.hh" #endif #ifdef HAVE_TESTS # include "nls.h" # include "Test.hh" # include "CoreFactory.hh" # include "Core.hh" # include "IApp.hh" Test *Test::instance = NULL; void Test::quit() { Core *core = Core::get_instance(); core->application->terminate(); } #endif workrave-1.10.50/backend/src/macos/0000755000000000000000000000000014221624436017000 5ustar00rootroot00000000000000workrave-1.10.50/backend/src/macos/MacOSConfigurator.cc0000644000175100001710000001002214221624106021530 0ustar00gdm00000000000000// MacOSConfigurator.cc --- Configuration Access // // Copyright (C) 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #import #import #include #include #include "MacOSConfigurator.hh" using namespace std; MacOSConfigurator::MacOSConfigurator() {} MacOSConfigurator::~MacOSConfigurator() {} bool MacOSConfigurator::load(string filename) { (void)filename; return true; } bool MacOSConfigurator::save(string filename) { (void)filename; return true; } bool MacOSConfigurator::save() { return true; } bool MacOSConfigurator::remove_key(const std::string &key) { TRACE_ENTER_MSG("MacOSConfigurator::remove_key", key); NSString *keystring = [NSString stringWithCString:key.c_str() encoding:NSUTF8StringEncoding]; [[NSUserDefaults standardUserDefaults] removeObjectForKey:keystring]; TRACE_EXIT(); return true; } bool MacOSConfigurator::get_value(const std::string &key, VariantType type, Variant &out) const { bool ret = false; TRACE_ENTER_MSG("MacOSConfigurator::get_value", key); NSString *keystring = [NSString stringWithCString:key.c_str() encoding:NSASCIIStringEncoding]; out.type = type; if ([[NSUserDefaults standardUserDefaults] objectForKey:keystring] != nil) { ret = true; switch (type) { case VARIANT_TYPE_INT: out.int_value = [[NSUserDefaults standardUserDefaults] integerForKey:keystring]; break; case VARIANT_TYPE_BOOL: out.bool_value = [[NSUserDefaults standardUserDefaults] boolForKey:keystring]; break; case VARIANT_TYPE_DOUBLE: out.double_value = [[NSUserDefaults standardUserDefaults] floatForKey:keystring]; break; case VARIANT_TYPE_NONE: out.type = VARIANT_TYPE_STRING; // FALLTHROUGH case VARIANT_TYPE_STRING: { NSString *val = [[NSUserDefaults standardUserDefaults] stringForKey:keystring]; if (val != nil) { out.string_value = [val cStringUsingEncoding:NSUTF8StringEncoding]; } else { ret = false; } } break; default: ret = false; } } TRACE_EXIT(); return ret; } bool MacOSConfigurator::set_value(const std::string &key, Variant &value) { bool ret = true; NSString *keystring = [NSString stringWithCString:key.c_str() encoding:NSASCIIStringEncoding]; switch (value.type) { case VARIANT_TYPE_INT: [[NSUserDefaults standardUserDefaults] setInteger:value.int_value forKey:keystring]; break; case VARIANT_TYPE_BOOL: [[NSUserDefaults standardUserDefaults] setBool:value.bool_value forKey:keystring]; break; case VARIANT_TYPE_DOUBLE: [[NSUserDefaults standardUserDefaults] setFloat:value.double_value forKey:keystring]; break; case VARIANT_TYPE_NONE: ret = false; break; case VARIANT_TYPE_STRING: { string val = value.string_value; NSString *string_value = [NSString stringWithCString:val.c_str() encoding:NSASCIIStringEncoding]; [[NSUserDefaults standardUserDefaults] setObject:string_value forKey:keystring]; } break; default: ret = false; } return ret; } workrave-1.10.50/backend/src/macos/Makefile.in0000644000000000000000000007123314221624200021040 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008, 2011 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/src/macos ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_backend_macos_la_LIBADD = am__libworkrave_backend_macos_la_SOURCES_DIST = MacOSInputMonitor.cc \ MacOSInputMonitorFactory.cc MacOSConfigurator.cc @PLATFORM_OS_MACOS_TRUE@am__objects_1 = libworkrave_backend_macos_la-MacOSInputMonitor.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo \ @PLATFORM_OS_MACOS_TRUE@ libworkrave_backend_macos_la-MacOSConfigurator.lo am_libworkrave_backend_macos_la_OBJECTS = $(am__objects_1) libworkrave_backend_macos_la_OBJECTS = \ $(am_libworkrave_backend_macos_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_backend_macos_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Plo \ ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_backend_macos_la_SOURCES) DIST_SOURCES = $(am__libworkrave_backend_macos_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-backend-macos.la AM_CPPFLAGS = -xobjective-c++ @PLATFORM_OS_MACOS_TRUE@sourcesmacos = MacOSInputMonitor.cc MacOSInputMonitorFactory.cc MacOSConfigurator.cc libworkrave_backend_macos_la_SOURCES = \ ${sourcesmacos} libworkrave_backend_macos_la_CXXFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @WR_COMMON_INCLUDES@ \ -D_XOPEN_SOURCE=600 @GLIB_CFLAGS@ @MacOS_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc)\ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/src/macos/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/src/macos/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-backend-macos.la: $(libworkrave_backend_macos_la_OBJECTS) $(libworkrave_backend_macos_la_DEPENDENCIES) $(EXTRA_libworkrave_backend_macos_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_backend_macos_la_LINK) $(libworkrave_backend_macos_la_OBJECTS) $(libworkrave_backend_macos_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_backend_macos_la-MacOSInputMonitor.lo: MacOSInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_macos_la-MacOSInputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Tpo -c -o libworkrave_backend_macos_la-MacOSInputMonitor.lo `test -f 'MacOSInputMonitor.cc' || echo '$(srcdir)/'`MacOSInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Tpo $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSInputMonitor.cc' object='libworkrave_backend_macos_la-MacOSInputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_macos_la-MacOSInputMonitor.lo `test -f 'MacOSInputMonitor.cc' || echo '$(srcdir)/'`MacOSInputMonitor.cc libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo: MacOSInputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Tpo -c -o libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo `test -f 'MacOSInputMonitorFactory.cc' || echo '$(srcdir)/'`MacOSInputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Tpo $(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSInputMonitorFactory.cc' object='libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_macos_la-MacOSInputMonitorFactory.lo `test -f 'MacOSInputMonitorFactory.cc' || echo '$(srcdir)/'`MacOSInputMonitorFactory.cc libworkrave_backend_macos_la-MacOSConfigurator.lo: MacOSConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_macos_la-MacOSConfigurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Tpo -c -o libworkrave_backend_macos_la-MacOSConfigurator.lo `test -f 'MacOSConfigurator.cc' || echo '$(srcdir)/'`MacOSConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Tpo $(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MacOSConfigurator.cc' object='libworkrave_backend_macos_la-MacOSConfigurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_macos_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_macos_la-MacOSConfigurator.lo `test -f 'MacOSConfigurator.cc' || echo '$(srcdir)/'`MacOSConfigurator.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Plo -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 -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_macos_la-MacOSInputMonitorFactory.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/src/macos/MacOSInputMonitorFactory.cc0000644000175100001710000000304214221624106023071 0ustar00gdm00000000000000// MacOSInputMonitorFactory.cc -- Factory to create input monitors // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "debug.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "MacOSInputMonitorFactory.hh" #include "MacOSInputMonitor.hh" MacOSInputMonitorFactory::MacOSInputMonitorFactory() { monitor = NULL; } void MacOSInputMonitorFactory::init(const char *display) { (void)display; } //! Retrieves the input activity monitor IInputMonitor * MacOSInputMonitorFactory::get_monitor(IInputMonitorFactory::MonitorCapability capability) { (void)capability; if (monitor == NULL) { monitor = new MacOSInputMonitor(); bool init_ok = monitor->init(); if (!init_ok) { delete monitor; monitor = NULL; } } return monitor; } workrave-1.10.50/backend/src/macos/MacOSInputMonitor.cc0000644000175100001710000000421214221624106021541 0ustar00gdm00000000000000// MacOSInputMonitor.cc --- ActivityMonitor for MacOS // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include "MacOSInputMonitor.hh" #include "IInputMonitorListener.hh" #include "Thread.hh" MacOSInputMonitor::MacOSInputMonitor() : terminate_loop(false) { monitor_thread = new Thread(this); io_service = NULL; } MacOSInputMonitor::~MacOSInputMonitor() { if (monitor_thread != NULL) { monitor_thread->wait(); delete monitor_thread; } } bool MacOSInputMonitor::init() { mach_port_t master; IOMasterPort(MACH_PORT_NULL, &master); io_service = IOServiceGetMatchingService(master, IOServiceMatching("IOHIDSystem")); monitor_thread->start(); return true; } //! Stops the activity monitoring. void MacOSInputMonitor::terminate() { terminate_loop = true; monitor_thread->wait(); } void MacOSInputMonitor::run() { TRACE_ENTER("MacOSInputMonitor::run"); while (!terminate_loop) { CFTypeRef property; uint64_t idle_time = 0; property = IORegistryEntryCreateCFProperty(io_service, CFSTR("HIDIdleTime"), kCFAllocatorDefault, 0); CFNumberGetValue((CFNumberRef)property, kCFNumberSInt64Type, &idle_time); CFRelease(property); TRACE_MSG(idle_time); if (idle_time < 1000000000) { fire_action(); TRACE_MSG("fire"); } g_usleep(500000); } TRACE_EXIT() } workrave-1.10.50/backend/src/macos/MacOSInputMonitor.hh0000644000175100001710000000321614221624106021556 0ustar00gdm00000000000000// MacOSInputMonitor.hh --- ActivityMonitor for MacOS // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSINPUTMONITOR_HH #define MacOSINPUTMONITOR_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef HAVE_IOKIT # include # include #endif #include "InputMonitor.hh" #include "IInputMonitorListener.hh" #include "Runnable.hh" #include "Thread.hh" //! Activity monitor for MacOS. class MacOSInputMonitor : public InputMonitor , public Runnable { public: //! Constructor. MacOSInputMonitor(); //! Destructor. virtual ~MacOSInputMonitor(); bool init(); void terminate(); void run(); private: //! Terminate driver? bool terminate_loop; //! The activity monitor thread. Thread *monitor_thread; // OS X IO Service io_service_t io_service; }; #endif // MacOSINPUTMONITOR_HH workrave-1.10.50/backend/src/macos/Makefile.am0000644000175100001710000000147314221624106017742 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-backend-macos.la AM_CPPFLAGS=-xobjective-c++ if PLATFORM_OS_MACOS sourcesmacos = MacOSInputMonitor.cc MacOSInputMonitorFactory.cc MacOSConfigurator.cc endif libworkrave_backend_macos_la_SOURCES = \ ${sourcesmacos} libworkrave_backend_macos_la_CXXFLAGS = \ -W -I$(top_srcdir)/backend/src -I$(top_srcdir)/backend/include \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ @WR_COMMON_INCLUDES@ \ -D_XOPEN_SOURCE=600 @GLIB_CFLAGS@ @MacOS_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc)\ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) workrave-1.10.50/backend/src/macos/MacOSConfigurator.hh0000644000175100001710000000253114221624106021550 0ustar00gdm00000000000000// MacOSConfigurator.hh // // Copyright (C) 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSCONFIGURATOR_HH #define MacOSCONFIGURATOR_HH #include #include #include #include "IConfigBackend.hh" class MacOSConfigurator : public virtual IConfigBackend { public: MacOSConfigurator(); virtual ~MacOSConfigurator(); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_value(const std::string &key, VariantType type, Variant &value) const; virtual bool set_value(const std::string &key, Variant &value); }; #endif // MacOSCONFIGURATOR_HH workrave-1.10.50/backend/src/macos/MacOSInputMonitorFactory.hh0000644000175100001710000000240314221624106023103 0ustar00gdm00000000000000// MacOSInputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MacOSINPUTMONITORFACTORY_HH #define MacOSINPUTMONITORFACTORY_HH #include #include #include "IInputMonitor.hh" #include "IInputMonitorFactory.hh" //! Factory to create input monitors. class MacOSInputMonitorFactory : public IInputMonitorFactory { public: MacOSInputMonitorFactory(); void init(const char *display); IInputMonitor *get_monitor(MonitorCapability capability); private: IInputMonitor *monitor; }; #endif // INPUTMONITORFACTORY_HH workrave-1.10.50/backend/src/DBusWorkrave.cc0000644000000000000000000016250314221624226020567 0ustar00rootroot00000000000000#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include "dbus/DBusBindingGio.hh" #include "dbus/DBusException.hh" #include "DBusWorkrave.hh" using namespace std; using namespace workrave::dbus; class DBusWorkrave_Marshall : public DBusMarshallGio { public: void get_break_id(GVariant *variant, BreakId *result); GVariant *put_break_id(const BreakId *result); void get_operation_mode(GVariant *variant, OperationMode *result); GVariant *put_operation_mode(const OperationMode *result); void get_usage_mode(GVariant *variant, UsageMode *result); GVariant *put_usage_mode(const UsageMode *result); }; void DBusWorkrave_Marshall::get_break_id(GVariant *variant, BreakId *result) { std::string value; get_string(variant, &value); if("microbreak" == value) { *result = BREAK_ID_MICRO_BREAK; } else if("restbreak" == value) { *result = BREAK_ID_REST_BREAK; } else if("dailylimit" == value) { *result = BREAK_ID_DAILY_LIMIT; } else { throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("break_id"); } } GVariant * DBusWorkrave_Marshall::put_break_id(const BreakId *result) { string value; switch (*result) { case BREAK_ID_MICRO_BREAK: value = "microbreak"; break; case BREAK_ID_REST_BREAK: value = "restbreak"; break; case BREAK_ID_DAILY_LIMIT: value = "dailylimit"; break; default: throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("break_id"); } return put_string(&value); } void DBusWorkrave_Marshall::get_operation_mode(GVariant *variant, OperationMode *result) { std::string value; get_string(variant, &value); if("normal" == value) { *result = OPERATION_MODE_NORMAL; } else if("suspended" == value) { *result = OPERATION_MODE_SUSPENDED; } else if("quiet" == value) { *result = OPERATION_MODE_QUIET; } else { throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("operation_mode"); } } GVariant * DBusWorkrave_Marshall::put_operation_mode(const OperationMode *result) { string value; switch (*result) { case OPERATION_MODE_NORMAL: value = "normal"; break; case OPERATION_MODE_SUSPENDED: value = "suspended"; break; case OPERATION_MODE_QUIET: value = "quiet"; break; default: throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("operation_mode"); } return put_string(&value); } void DBusWorkrave_Marshall::get_usage_mode(GVariant *variant, UsageMode *result) { std::string value; get_string(variant, &value); if("normal" == value) { *result = USAGE_MODE_NORMAL; } else if("reading" == value) { *result = USAGE_MODE_READING; } else { throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("usage_mode"); } } GVariant * DBusWorkrave_Marshall::put_usage_mode(const UsageMode *result) { string value; switch (*result) { case USAGE_MODE_NORMAL: value = "normal"; break; case USAGE_MODE_READING: value = "reading"; break; default: throw DBusRemoteException() << message_info("Type error in enum") << error_code_info(DBUS_ERROR_INVALID_ARGS) << actual_type_info("usage_mode"); } return put_string(&value); } class org_workrave_CoreInterface_Stub : public DBusBindingGio, public org_workrave_CoreInterface, DBusWorkrave_Marshall { private: typedef void (org_workrave_CoreInterface_Stub::*DBusMethodPointer)(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); struct DBusMethod { const string name; DBusMethodPointer fn; }; virtual void call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); virtual const char *get_interface_introspect() { return interface_introspect; } public: org_workrave_CoreInterface_Stub(IDBus::Ptr dbus); ~org_workrave_CoreInterface_Stub(); void MicrobreakChanged(const string &path , std::string progress ); void RestbreakChanged(const string &path , std::string progress ); void DailylimitChanged(const string &path , std::string progress ); void OperationModeChanged(const string &path , OperationMode mode ); void UsageModeChanged(const string &path , UsageMode mode ); void BreakPostponed(const string &path , BreakId timer_id ); void BreakSkipped(const string &path , BreakId timer_id ); private: void SetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SetUsageMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetUsageMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void ReportActivity(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void IsTimerRunning(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTimerIdle(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTimerElapsed(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTimerRemaining(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTimerOverdue(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetTime(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetBreakState(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void IsActive(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void PostponeBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SkipBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); static const DBusMethod method_table[]; static const char *interface_introspect; }; org_workrave_CoreInterface *org_workrave_CoreInterface::instance(const ::workrave::dbus::IDBus::Ptr dbus) { org_workrave_CoreInterface_Stub *iface = NULL; DBusBinding *binding = dbus->find_binding("org.workrave.CoreInterface"); if (binding != NULL) { iface = dynamic_cast(binding); } return iface; } org_workrave_CoreInterface_Stub::org_workrave_CoreInterface_Stub(IDBus::Ptr dbus) : DBusBindingGio(dbus) { } org_workrave_CoreInterface_Stub::~org_workrave_CoreInterface_Stub() { } void org_workrave_CoreInterface_Stub::call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { const DBusMethod *table = method_table; while (table->fn != NULL) { if (method_name == table->name) { DBusMethodPointer ptr = table->fn; if (ptr != NULL) { (this->*ptr)(object, invocation, sender, inargs); } return; } table++; } throw DBusRemoteException() << message_info("Unknown method") << error_code_info(DBUS_ERROR_UNKNOWN_METHOD) << method_info(method_name) << interface_info("org.workrave.CoreInterface"); } void org_workrave_CoreInterface_Stub::SetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; OperationMode p_mode ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetOperationMode") << interface_info("org.workrave.CoreInterface"); } GVariant *v_mode = g_variant_get_child_value(inargs, 0 ); get_operation_mode(v_mode, &p_mode); dbus_object->set_operation_mode( p_mode ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetOperationMode") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetOperationMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; OperationMode p_mode ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetOperationMode") << interface_info("org.workrave.CoreInterface"); } p_mode = dbus_object->get_operation_mode( ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_mode = put_operation_mode(&p_mode); g_variant_builder_add_value(&builder, v_mode); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetOperationMode") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::SetUsageMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; UsageMode p_mode ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetUsageMode") << interface_info("org.workrave.CoreInterface"); } GVariant *v_mode = g_variant_get_child_value(inargs, 0 ); get_usage_mode(v_mode, &p_mode); dbus_object->set_usage_mode( p_mode ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetUsageMode") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetUsageMode(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; UsageMode p_mode ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetUsageMode") << interface_info("org.workrave.CoreInterface"); } p_mode = dbus_object->get_usage_mode( ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_mode = put_usage_mode(&p_mode); g_variant_builder_add_value(&builder, v_mode); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetUsageMode") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::ReportActivity(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; std::string p_who ; bool p_act ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("ReportActivity") << interface_info("org.workrave.CoreInterface"); } GVariant *v_who = g_variant_get_child_value(inargs, 0 ); get_string(v_who, &p_who); GVariant *v_act = g_variant_get_child_value(inargs, 1 ); get_bool(v_act, &p_act); dbus_object->report_external_activity( p_who , p_act ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("ReportActivity") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::IsTimerRunning(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; bool p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("IsTimerRunning") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->is_timer_running( p_timer_id , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_value = put_bool(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("IsTimerRunning") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetTimerIdle(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; int32_t p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTimerIdle") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->get_timer_idle( p_timer_id , &p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(i)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTimerIdle") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetTimerElapsed(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; int32_t p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTimerElapsed") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->get_timer_elapsed( p_timer_id , &p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(i)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTimerElapsed") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetTimerRemaining(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; int32_t p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTimerRemaining") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->get_timer_remaining( p_timer_id , &p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(i)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTimerRemaining") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetTimerOverdue(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; int32_t p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTimerOverdue") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->get_timer_overdue( p_timer_id , &p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(i)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTimerOverdue") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetTime(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; int32_t p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetTime") << interface_info("org.workrave.CoreInterface"); } p_value = dbus_object->get_time( ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(i)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetTime") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::GetBreakState(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; std::string p_stage ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetBreakState") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); p_stage = dbus_object->get_break_stage( p_timer_id ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_stage = put_string(&p_stage); g_variant_builder_add_value(&builder, v_stage); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetBreakState") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::IsActive(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; bool p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("IsActive") << interface_info("org.workrave.CoreInterface"); } p_value = dbus_object->is_user_active( ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_value = put_bool(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("IsActive") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::PostponeBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("PostponeBreak") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->postpone_break( p_timer_id ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("PostponeBreak") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::SkipBreak(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Core *dbus_object = (Core *) object; BreakId p_timer_id ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SkipBreak") << interface_info("org.workrave.CoreInterface"); } GVariant *v_timer_id = g_variant_get_child_value(inargs, 0 ); get_break_id(v_timer_id, &p_timer_id); dbus_object->skip_break( p_timer_id ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SkipBreak") << interface_info("org.workrave.CoreInterface"); throw; } } void org_workrave_CoreInterface_Stub::MicrobreakChanged(const string &path , std::string progress ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_progress = put_string(&progress); g_variant_builder_add_value(&builder, v_progress); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "MicrobreakChanged", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::RestbreakChanged(const string &path , std::string progress ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_progress = put_string(&progress); g_variant_builder_add_value(&builder, v_progress); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "RestbreakChanged", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::DailylimitChanged(const string &path , std::string progress ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_progress = put_string(&progress); g_variant_builder_add_value(&builder, v_progress); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "DailylimitChanged", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::OperationModeChanged(const string &path , OperationMode mode ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_mode = put_operation_mode(&mode); g_variant_builder_add_value(&builder, v_mode); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "OperationModeChanged", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::UsageModeChanged(const string &path , UsageMode mode ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_mode = put_usage_mode(&mode); g_variant_builder_add_value(&builder, v_mode); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "UsageModeChanged", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::BreakPostponed(const string &path , BreakId timer_id ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_timer_id = put_break_id(&timer_id); g_variant_builder_add_value(&builder, v_timer_id); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "BreakPostponed", out, &error); if (error != NULL) { g_error_free(error); } } void org_workrave_CoreInterface_Stub::BreakSkipped(const string &path , BreakId timer_id ) { IDBusPrivateGio::Ptr p = std::dynamic_pointer_cast(dbus); GDBusConnection *connection = p->get_connection(); if (connection == NULL) { return; } GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(s)"); GVariant *v_timer_id = put_break_id(&timer_id); g_variant_builder_add_value(&builder, v_timer_id); GVariant *out = g_variant_builder_end(&builder); GError *error = NULL; g_dbus_connection_emit_signal(connection, NULL, path.c_str(), "org.workrave.CoreInterface", "BreakSkipped", out, &error); if (error != NULL) { g_error_free(error); } } const org_workrave_CoreInterface_Stub::DBusMethod org_workrave_CoreInterface_Stub::method_table[] = { { "SetOperationMode", &org_workrave_CoreInterface_Stub::SetOperationMode }, { "GetOperationMode", &org_workrave_CoreInterface_Stub::GetOperationMode }, { "SetUsageMode", &org_workrave_CoreInterface_Stub::SetUsageMode }, { "GetUsageMode", &org_workrave_CoreInterface_Stub::GetUsageMode }, { "ReportActivity", &org_workrave_CoreInterface_Stub::ReportActivity }, { "IsTimerRunning", &org_workrave_CoreInterface_Stub::IsTimerRunning }, { "GetTimerIdle", &org_workrave_CoreInterface_Stub::GetTimerIdle }, { "GetTimerElapsed", &org_workrave_CoreInterface_Stub::GetTimerElapsed }, { "GetTimerRemaining", &org_workrave_CoreInterface_Stub::GetTimerRemaining }, { "GetTimerOverdue", &org_workrave_CoreInterface_Stub::GetTimerOverdue }, { "GetTime", &org_workrave_CoreInterface_Stub::GetTime }, { "GetBreakState", &org_workrave_CoreInterface_Stub::GetBreakState }, { "IsActive", &org_workrave_CoreInterface_Stub::IsActive }, { "PostponeBreak", &org_workrave_CoreInterface_Stub::PostponeBreak }, { "SkipBreak", &org_workrave_CoreInterface_Stub::SkipBreak }, { "", NULL } }; const char * org_workrave_CoreInterface_Stub::interface_introspect = " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n"; #if defined(HAVE_TESTS) class org_workrave_DebugInterface_Stub : public DBusBindingGio, public org_workrave_DebugInterface, DBusWorkrave_Marshall { private: typedef void (org_workrave_DebugInterface_Stub::*DBusMethodPointer)(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); struct DBusMethod { const string name; DBusMethodPointer fn; }; virtual void call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); virtual const char *get_interface_introspect() { return interface_introspect; } public: org_workrave_DebugInterface_Stub(IDBus::Ptr dbus); ~org_workrave_DebugInterface_Stub(); private: void Quit(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); static const DBusMethod method_table[]; static const char *interface_introspect; }; org_workrave_DebugInterface *org_workrave_DebugInterface::instance(const ::workrave::dbus::IDBus::Ptr dbus) { org_workrave_DebugInterface_Stub *iface = NULL; DBusBinding *binding = dbus->find_binding("org.workrave.DebugInterface"); if (binding != NULL) { iface = dynamic_cast(binding); } return iface; } org_workrave_DebugInterface_Stub::org_workrave_DebugInterface_Stub(IDBus::Ptr dbus) : DBusBindingGio(dbus) { } org_workrave_DebugInterface_Stub::~org_workrave_DebugInterface_Stub() { } void org_workrave_DebugInterface_Stub::call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { const DBusMethod *table = method_table; while (table->fn != NULL) { if (method_name == table->name) { DBusMethodPointer ptr = table->fn; if (ptr != NULL) { (this->*ptr)(object, invocation, sender, inargs); } return; } table++; } throw DBusRemoteException() << message_info("Unknown method") << error_code_info(DBUS_ERROR_UNKNOWN_METHOD) << method_info(method_name) << interface_info("org.workrave.DebugInterface"); } void org_workrave_DebugInterface_Stub::Quit(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { Test *dbus_object = (Test *) object; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 0) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("Quit") << interface_info("org.workrave.DebugInterface"); } dbus_object->quit( ); GVariant *out = NULL; g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("Quit") << interface_info("org.workrave.DebugInterface"); throw; } } const org_workrave_DebugInterface_Stub::DBusMethod org_workrave_DebugInterface_Stub::method_table[] = { { "Quit", &org_workrave_DebugInterface_Stub::Quit }, { "", NULL } }; const char * org_workrave_DebugInterface_Stub::interface_introspect = " \n" " \n" " \n" " \n"; #endif // defined(HAVE_TESTS) class org_workrave_ConfigInterface_Stub : public DBusBindingGio, public org_workrave_ConfigInterface, DBusWorkrave_Marshall { private: typedef void (org_workrave_ConfigInterface_Stub::*DBusMethodPointer)(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); struct DBusMethod { const string name; DBusMethodPointer fn; }; virtual void call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); virtual const char *get_interface_introspect() { return interface_introspect; } public: org_workrave_ConfigInterface_Stub(IDBus::Ptr dbus); ~org_workrave_ConfigInterface_Stub(); private: void SetString(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SetInt(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SetBool(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void SetDouble(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetString(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetInt(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetBool(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); void GetDouble(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs); static const DBusMethod method_table[]; static const char *interface_introspect; }; org_workrave_ConfigInterface *org_workrave_ConfigInterface::instance(const ::workrave::dbus::IDBus::Ptr dbus) { org_workrave_ConfigInterface_Stub *iface = NULL; DBusBinding *binding = dbus->find_binding("org.workrave.ConfigInterface"); if (binding != NULL) { iface = dynamic_cast(binding); } return iface; } org_workrave_ConfigInterface_Stub::org_workrave_ConfigInterface_Stub(IDBus::Ptr dbus) : DBusBindingGio(dbus) { } org_workrave_ConfigInterface_Stub::~org_workrave_ConfigInterface_Stub() { } void org_workrave_ConfigInterface_Stub::call(const std::string &method_name, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { const DBusMethod *table = method_table; while (table->fn != NULL) { if (method_name == table->name) { DBusMethodPointer ptr = table->fn; if (ptr != NULL) { (this->*ptr)(object, invocation, sender, inargs); } return; } table++; } throw DBusRemoteException() << message_info("Unknown method") << error_code_info(DBUS_ERROR_UNKNOWN_METHOD) << method_info(method_name) << interface_info("org.workrave.ConfigInterface"); } void org_workrave_ConfigInterface_Stub::SetString(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; std::string p_value ; bool p_success ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetString") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); GVariant *v_value = g_variant_get_child_value(inargs, 1 ); get_string(v_value, &p_value); p_success = dbus_object->set_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_success = put_bool(&p_success); g_variant_builder_add_value(&builder, v_success); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetString") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::SetInt(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; int32_t p_value ; bool p_success ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetInt") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); GVariant *v_value = g_variant_get_child_value(inargs, 1 ); get_int32(v_value, &p_value); p_success = dbus_object->set_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_success = put_bool(&p_success); g_variant_builder_add_value(&builder, v_success); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetInt") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::SetBool(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; bool p_value ; bool p_success ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetBool") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); GVariant *v_value = g_variant_get_child_value(inargs, 1 ); get_bool(v_value, &p_value); p_success = dbus_object->set_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_success = put_bool(&p_success); g_variant_builder_add_value(&builder, v_success); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetBool") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::SetDouble(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; double p_value ; bool p_success ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 2) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("SetDouble") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); GVariant *v_value = g_variant_get_child_value(inargs, 1 ); get_double(v_value, &p_value); p_success = dbus_object->set_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(b)"); GVariant *v_success = put_bool(&p_success); g_variant_builder_add_value(&builder, v_success); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("SetDouble") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::GetString(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; bool p_found ; std::string p_value ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetString") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); p_found = dbus_object->get_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(bs)"); GVariant *v_found = put_bool(&p_found); g_variant_builder_add_value(&builder, v_found); GVariant *v_value = put_string(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetString") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::GetInt(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; int32_t p_value ; bool p_found ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetInt") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); p_found = dbus_object->get_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(ib)"); GVariant *v_value = put_int32(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *v_found = put_bool(&p_found); g_variant_builder_add_value(&builder, v_found); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetInt") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::GetBool(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; bool p_value ; bool p_found ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetBool") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); p_found = dbus_object->get_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(bb)"); GVariant *v_value = put_bool(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *v_found = put_bool(&p_found); g_variant_builder_add_value(&builder, v_found); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetBool") << interface_info("org.workrave.ConfigInterface"); throw; } } void org_workrave_ConfigInterface_Stub::GetDouble(void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) { (void) sender; try { IConfigurator *dbus_object = (IConfigurator *) object; std::string p_key ; double p_value ; bool p_found ; gsize num_in_args = g_variant_n_children(inargs); if (num_in_args != 1) { throw DBusRemoteException() << message_info("Incorrecy number of in-paraeters") << error_code_info(DBUS_ERROR_INVALID_ARGS) << method_info("GetDouble") << interface_info("org.workrave.ConfigInterface"); } GVariant *v_key = g_variant_get_child_value(inargs, 0 ); get_string(v_key, &p_key); p_found = dbus_object->get_value( p_key , p_value ); GVariantBuilder builder; g_variant_builder_init(&builder, (GVariantType*)"(db)"); GVariant *v_value = put_double(&p_value); g_variant_builder_add_value(&builder, v_value); GVariant *v_found = put_bool(&p_found); g_variant_builder_add_value(&builder, v_found); GVariant *out = g_variant_builder_end(&builder); g_dbus_method_invocation_return_value(invocation, out); } catch (const DBusRemoteException &e) { e << method_info("GetDouble") << interface_info("org.workrave.ConfigInterface"); throw; } } const org_workrave_ConfigInterface_Stub::DBusMethod org_workrave_ConfigInterface_Stub::method_table[] = { { "SetString", &org_workrave_ConfigInterface_Stub::SetString }, { "SetInt", &org_workrave_ConfigInterface_Stub::SetInt }, { "SetBool", &org_workrave_ConfigInterface_Stub::SetBool }, { "SetDouble", &org_workrave_ConfigInterface_Stub::SetDouble }, { "GetString", &org_workrave_ConfigInterface_Stub::GetString }, { "GetInt", &org_workrave_ConfigInterface_Stub::GetInt }, { "GetBool", &org_workrave_ConfigInterface_Stub::GetBool }, { "GetDouble", &org_workrave_ConfigInterface_Stub::GetDouble }, { "", NULL } }; const char * org_workrave_ConfigInterface_Stub::interface_introspect = " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n"; void init_DBusWorkrave(IDBus::Ptr dbus) { dbus->register_binding("org.workrave.CoreInterface", new org_workrave_CoreInterface_Stub(dbus)); #if defined(HAVE_TESTS) dbus->register_binding("org.workrave.DebugInterface", new org_workrave_DebugInterface_Stub(dbus)); #endif // defined(HAVE_TESTS) dbus->register_binding("org.workrave.ConfigInterface", new org_workrave_ConfigInterface_Stub(dbus)); }workrave-1.10.50/backend/src/Configurator.cc0000644000175100001710000003353514221624106017561 0ustar00gdm00000000000000// Configurator.cc --- Configuration Access // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include "debug.hh" #include #include #include "Configurator.hh" #include "IConfigBackend.hh" #include "ICore.hh" #include "CoreFactory.hh" #include "IConfiguratorListener.hh" using namespace std; using namespace workrave; // Constructs a new configurator. Configurator::Configurator(IConfigBackend *backend) { this->auto_save_time = 0; this->backend = backend; if (dynamic_cast(backend) != NULL) { dynamic_cast(backend)->set_listener(this); } } // Destructs the configurator. Configurator::~Configurator() { delete backend; } bool Configurator::load(std::string filename) { return backend->load(filename); } bool Configurator::save(std::string filename) { TRACE_ENTER_MSG("Configurator::save", filename); bool ret = backend->save(filename); TRACE_RETURN(ret); return ret; } bool Configurator::save() { TRACE_ENTER("Configurator::save"); bool ret = backend->save(); TRACE_RETURN(ret); return ret; } void Configurator::heartbeat() { ICore *core = CoreFactory::get_core(); time_t now = core->get_time(); DelayedListIter it = delayed_config.begin(); while (it != delayed_config.end()) { DelayedConfig &delayed = it->second; DelayedListIter next = it; next++; if (now >= delayed.until) { Variant old_value; bool old_value_valid = backend->get_value(delayed.key, delayed.value.type, old_value); bool b = backend->set_value(delayed.key, delayed.value); if (b && dynamic_cast(backend) == NULL) { if (!old_value_valid || old_value != delayed.value) { fire_configurator_event(delayed.key); if (auto_save_time == 0) { ICore *core = CoreFactory::get_core(); auto_save_time = core->get_time() + 30; } } } delayed_config.erase(it); } it = next; } if (auto_save_time != 0 && now >= auto_save_time) { save(); auto_save_time = 0; } } void Configurator::set_delay(const std::string &key, int delay) { Setting setting; bool b = find_setting(key, setting); if (b) { setting.delay = delay; } else { setting.key = key; setting.delay = delay; settings[key] = setting; } } bool Configurator::remove_key(const std::string &key) const { return backend->remove_key(key); } bool Configurator::rename_key(const std::string &key, const std::string &new_key) { bool ok = false; Variant value; bool exists = get_value(new_key, VARIANT_TYPE_NONE, value); if (!exists) { ok = get_value(key, VARIANT_TYPE_NONE, value); } if (ok) { ok = set_value(new_key, value, CONFIG_FLAG_IMMEDIATE); } if (ok) { // Ignore error... remove_key(key); } return ok; } bool Configurator::set_value(const std::string &key, Variant &value, ConfigFlags flags) { bool ret = true; bool skip = false; Setting setting; string newkey; TRACE_ENTER_MSG("Configurator::set_value", key); if ((flags & CONFIG_FLAG_DEFAULT) != 0) { skip = get_value(key, value.type, value); } if (!skip) { newkey = key; strip_trailing_slash(newkey); strip_leading_slash(newkey); } if (!skip && flags == CONFIG_FLAG_NONE) { bool b = find_setting(newkey, setting); if (b) { if (setting.delay) { ICore *core = CoreFactory::get_core(); DelayedConfig &d = delayed_config[key]; d.key = (string)key; d.value = value; d.until = core->get_time() + setting.delay; skip = true; } } } if (!skip) { Variant old_value; bool old_value_valid = backend->get_value(newkey, value.type, old_value); ret = backend->set_value(newkey, value); if (ret && dynamic_cast(backend) == NULL) { if (!old_value_valid || old_value != value) { fire_configurator_event(newkey); if (auto_save_time == 0) { ICore *core = CoreFactory::get_core(); auto_save_time = core->get_time() + 30; } } } } TRACE_EXIT(); return ret || skip; } bool Configurator::get_value(const std::string &key, VariantType type, Variant &out) const { bool ret = false; Setting setting; TRACE_ENTER_MSG("Configurator::get_value", key); string newkey = key; strip_trailing_slash(newkey); strip_leading_slash(newkey); DelayedListCIter it = delayed_config.find(newkey); if (it != delayed_config.end()) { const DelayedConfig &delayed = it->second; out = delayed.value; ret = true; } if (!ret) { ret = backend->get_value(newkey, type, out); } if (ret && type != VARIANT_TYPE_NONE && out.type != type) { ret = false; out.type = VARIANT_TYPE_NONE; } TRACE_EXIT(); return ret; } bool Configurator::get_value(const std::string &key, std::string &out) const { Variant value; bool b = get_value(key, VARIANT_TYPE_STRING, value); if (b) { out = value.string_value; } return b; } bool Configurator::get_value(const std::string &key, bool &out) const { Variant value; bool b = get_value(key, VARIANT_TYPE_BOOL, value); if (b) { out = value.bool_value; } return b; } bool Configurator::get_value(const std::string &key, int &out) const { Variant value; bool b = get_value(key, VARIANT_TYPE_INT, value); if (b) { out = value.int_value; } return b; } bool Configurator::get_value(const std::string &key, double &out) const { Variant value; bool b = get_value(key, VARIANT_TYPE_DOUBLE, value); if (b) { out = value.double_value; } return b; } bool Configurator::set_value(const std::string &key, const std::string &v, ConfigFlags flags) { Variant value; bool ret = false; value.type = VARIANT_TYPE_STRING; value.string_value = v; ret = set_value(key, value, flags); return ret; } bool Configurator::set_value(const std::string &key, const char *v, ConfigFlags flags) { Variant value; bool ret = false; value.type = VARIANT_TYPE_STRING; value.string_value = v; ret = set_value(key, value, flags); return ret; } bool Configurator::set_value(const std::string &key, int v, ConfigFlags flags) { Variant value; bool ret = false; value.type = VARIANT_TYPE_INT; value.int_value = v; ret = set_value(key, value, flags); return ret; } bool Configurator::set_value(const std::string &key, bool v, ConfigFlags flags) { Variant value; bool ret = false; value.type = VARIANT_TYPE_BOOL; value.bool_value = v; ret = set_value(key, value, flags); return ret; } bool Configurator::set_value(const std::string &key, double v, ConfigFlags flags) { Variant value; bool ret = false; value.type = VARIANT_TYPE_DOUBLE; value.double_value = v; ret = set_value(key, value, flags); return ret; } void Configurator::get_value_with_default(const string &key, int &out, const int def) const { bool b = get_value(key, out); if (!b) { out = def; b = true; } } void Configurator::get_value_with_default(const string &key, bool &out, const bool def) const { bool b = get_value(key, out); if (!b) { out = def; } } void Configurator::get_value_with_default(const string &key, string &out, const string def) const { bool b = get_value(key, out); if (!b) { out = def; } } void Configurator::get_value_with_default(const string &key, double &out, const double def) const { bool b = get_value(key, out); if (!b) { out = def; } } bool Configurator::get_typed_value(const std::string &key, std::string &t) const { bool b = false; stringstream ss; if (!b) { string s; b = get_value(key, s); if (b) { ss << "string:" << s; } } if (!b) { int i; b = get_value(key, i); if (b) { ss << "int:" << i; } } if (!b) { bool bv; b = get_value(key, bv); if (b) { ss << "bool:" << bv; } } if (!b) { double d; b = get_value(key, d); if (b) { ss << "double:" << d; } } if (b) { t = ss.str(); } return b; } bool Configurator::set_typed_value(const std::string &key, const std::string &t) { string::size_type pos = t.find(':'); string type; string value; if (pos != string::npos) { type = t.substr(0, pos); value = t.substr(pos + 1); } else { type = "string"; value = t; } if (type == "string") { set_value(key, value, CONFIG_FLAG_IMMEDIATE); } else if (type == "int") { set_value(key, atoi(value.c_str()), CONFIG_FLAG_IMMEDIATE); } else if (type == "bool") { bool b = atoi(value.c_str()) > 0; set_value(key, b, CONFIG_FLAG_IMMEDIATE); } else if (type == "double") { set_value(key, atof(value.c_str()), CONFIG_FLAG_IMMEDIATE); } else { return false; } return true; } bool Configurator::add_listener(const std::string &key_prefix, IConfiguratorListener *listener) { bool ret = true; string key = key_prefix; strip_leading_slash(key); strip_trailing_slash(key); if (dynamic_cast(backend) != NULL) { ret = dynamic_cast(backend)->add_listener(key_prefix); } if (ret) { ListenerIter i = listeners.begin(); while (ret && i != listeners.end()) { if (key == i->first && listener == i->second) { // Already added. Skip ret = false; } i++; } } if (ret) { // not found -> add listeners.push_back(make_pair(key, listener)); } return ret; } bool Configurator::remove_listener(IConfiguratorListener *listener) { bool ret = false; ListenerIter i = listeners.begin(); while (i != listeners.end()) { if (listener == i->second) { // Found. Remove i = listeners.erase(i); ret = true; } else { i++; } } return ret; } bool Configurator::remove_listener(const std::string &key_prefix, IConfiguratorListener *listener) { bool ret = false; if (dynamic_cast(backend) != NULL) { dynamic_cast(backend)->remove_listener(key_prefix); } ListenerIter i = listeners.begin(); while (i != listeners.end()) { if (i->first == key_prefix && i->second == listener) { // Found. Remove i = listeners.erase(i); ret = true; } else { i++; } } return ret; } bool Configurator::find_listener(IConfiguratorListener *listener, std::string &key) const { bool ret = false; ListenerCIter i = listeners.begin(); while (i != listeners.end()) { if (listener == i->second) { key = i->first; ret = true; break; } i++; } return ret; } //! Fire a configuration changed event. void Configurator::fire_configurator_event(const string &key) { TRACE_ENTER_MSG("Configurator::fire_configurator_event", key); string k = key; strip_leading_slash(k); strip_trailing_slash(k); ListenerIter i = listeners.begin(); while (i != listeners.end()) { string prefix = i->first; if (k.substr(0, prefix.length()) == prefix) { IConfiguratorListener *l = i->second; if (l != NULL) { l->config_changed_notify(k); } } i++; } TRACE_EXIT(); } //! Removes the leading '/'. void Configurator::strip_leading_slash(string &key) const { int len = key.length(); if (len > 1) { if (key[0] == '/') { key = key.substr(1, len - 1); } } } //! Removes the trailing '/'. void Configurator::strip_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] == '/') { key = key.substr(0, len - 1); } } } //! Adds add trailing '/' if it isn't there yet. void Configurator::add_trailing_slash(string &key) const { int len = key.length(); if (len > 0) { if (key[len - 1] != '/') { key += '/'; } } } bool Configurator::find_setting(const string &key, Setting &setting) const { bool ret = false; SettingCIter it = settings.find(key); if (it != settings.end()) { setting = it->second; ret = true; } return ret; } void Configurator::config_changed_notify(const std::string &key) { fire_configurator_event(key); } workrave-1.10.50/backend/src/TimerActivityMonitor.hh0000644000175100001710000000626114221624106021272 0ustar00gdm00000000000000// TimerActivityMonitor.hh // // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMERACTIVITYMONITOR_HH #define TIMERACTIVITYMONITOR_HH #include "Core.hh" #include "IActivityMonitor.hh" //! An Activity Monitor that takes its activity state from a timer. /*! This Activity Monitor is 'active' if the timer is running or if * the timer has its idle time not at maximum, 'idle' otherwise. */ class TimerActivityMonitor : public IActivityMonitor { public: //! Constructs an activity monitor that depends on specified timer. TimerActivityMonitor(Timer *t) : timer(t) , suspended(false) , forced_idle(false) { Core *core = Core::get_instance(); monitor = core->get_activity_monitor(); } virtual ~TimerActivityMonitor() {} //! Stops the activity monitoring. void terminate() {} //! Suspends the activity monitoring. void suspend() { suspended = true; } //! Resumes the activity monitoring. void resume() { suspended = false; } //! Returns the current state ActivityState get_current_state() { TRACE_ENTER("TimerActivityMonitor::get_current_state"); if (forced_idle) { ActivityState local_state = monitor->get_current_state(); TRACE_MSG(local_state) if (local_state != ACTIVITY_IDLE && local_state != ACTIVITY_SUSPENDED) { forced_idle = false; } } if (forced_idle) { TRACE_RETURN("Idle"); return ACTIVITY_IDLE; } if (suspended) { TRACE_RETURN("Suspended"); return ACTIVITY_SUSPENDED; } TimerState state = timer->get_state(); time_t idle = timer->get_elapsed_idle_time(); time_t reset = timer->get_auto_reset(); if (state == STATE_STOPPED && idle >= reset) { TRACE_RETURN("Idle stopped"); return ACTIVITY_IDLE; } else { TRACE_RETURN("Active"); return ACTIVITY_ACTIVE; } } //! Force state to be idle. void force_idle() { TRACE_ENTER("TimerActivityMonitor::force_idle"); TRACE_MSG("Forcing idle"); forced_idle = true; TRACE_EXIT(); } // Returns the collected statistics. //! Sets the activity listener of this monitor. void set_listener(ActivityMonitorListener *l) { (void)l; } private: //! Reference monitor IActivityMonitor *monitor; //! Reference timer. Timer *timer; //! Monitor suspended? bool suspended; //! Is this timer forced idle? bool forced_idle; }; #endif // TIMERACTIVITYMONITOR_HH workrave-1.10.50/backend/src/DistributionLink.hh0000644000175100001710000000535214221624106020422 0ustar00gdm00000000000000// DistributionLink.hh // // Copyright (C) 2002, 2003, 2005, 2006, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DISTRIBUTIONLINK_HH #define DISTRIBUTIONLINK_HH #include class DistributionLinkListener; class IDistributionClientMessage; class PacketBuffer; #include "IDistributionClientMessage.hh" class DistributionLink { public: virtual ~DistributionLink() {} //! Returns the ID of the node. virtual std::string get_my_id() const = 0; //! Returns the number of remote peers. virtual int get_number_of_peers() = 0; //! Sets the callback interface to the distribution manager. // virtual void set_distribution_manager(DistributionLinkListener *dll) = 0; //! Enable/Disable distributed operation. virtual bool set_network_enabled(bool enabled) = 0; virtual bool set_server_enabled(bool enabled) = 0; //! Periodic heartbeat. virtual void heartbeat() = 0; //! Sets the username and password. virtual void set_user(string username, string password) = 0; //! Connects to a certain host. virtual void connect(string url) = 0; //! Disconnect the specified client. virtual void disconnect(string id) = 0; //! Request to become master. virtual bool claim() = 0; //! Locks the current master status. /*! If locked, requests from remote hosts to become master will be denied. */ virtual bool set_lock_master(bool lock) = 0; //! Registers a client message callback. virtual bool register_client_message(DistributionClientMessageID id, DistributionClientMessageType type, IDistributionClientMessage *callback) = 0; //! Unregisters a client message callback. virtual bool unregister_client_message(DistributionClientMessageID id) = 0; //! Sends a client message to all remote hosts. virtual bool broadcast_client_message(DistributionClientMessageID id, PacketBuffer &buffer) = 0; //! Disconnects from all remote clients. virtual bool disconnect_all() = 0; //! Reconnects to all remote clients. virtual bool reconnect_all() = 0; }; #endif // DISTRIBUTIONLINK_HH workrave-1.10.50/backend/src/Test.hh0000644000175100001710000000214214221624106016036 0ustar00gdm00000000000000// Test.hh --- Whitebox testing code // // Copyright (C) 2006, 2007, 2008, 2009 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TEST_H #define TEST_H class Test { public: static Test *get_instance(); void quit(); private: //! The one and only instance static Test *instance; }; //! Returns the singleton Test instance. inline Test * Test::get_instance() { if (instance == NULL) { instance = new Test(); } return instance; } #endif // TEST_H workrave-1.10.50/backend/src/GlibIniConfigurator.hh0000644000175100001710000000315314221624106021022 0ustar00gdm00000000000000// IniConfigurator.hh // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GLIBINICONFIGURATOR_HH #define GLIBINICONFIGURATOR_HH #include #include #include #include #include "IConfigBackend.hh" class GlibIniConfigurator : public virtual IConfigBackend { public: GlibIniConfigurator(); virtual ~GlibIniConfigurator(); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_value(const std::string &key, VariantType type, Variant &value) const; virtual bool set_value(const std::string &key, Variant &value); private: void split_key(const std::string &key, std::string &group, std::string &out_key) const; std::string key_inify(const std::string &key) const; private: GKeyFile *config; std::string last_filename; }; #endif // GLIBINICONFIGURATOR_HH workrave-1.10.50/backend/src/org.workrave.gschema.xml.in.in0000644000175100001710000001742414221624106022377 0ustar00gdm00000000000000 "default" true 0 14400 "" "day/4:00" 1200 true 30 180 "" "" 150 true 600 2700 "" "" 180 true 3 true 3 true 3 1000 5000 9000 3 "" 0 0 false false "" "" 27273 3 15 "" "" workrave-1.10.50/backend/src/GSettingsConfigurator.cc0000644000175100001710000001654614221624106021414 0ustar00gdm00000000000000// GSettingsConfigurator.cc --- Configuration Access // // Copyright (C) 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_GSETTINGS # include "debug.hh" # include "GSettingsConfigurator.hh" # include "Configurator.hh" # include "Core.hh" # include "StringUtil.hh" using namespace workrave; using namespace std; static string underscore_exceptions[] = { "general/usage-mode", "general/operation-mode", }; GSettingsConfigurator::GSettingsConfigurator() { schema_base = "org.workrave"; path_base = "/org/workrave/"; add_children(); } GSettingsConfigurator::~GSettingsConfigurator() {} bool GSettingsConfigurator::load(string filename) { (void)filename; return true; } bool GSettingsConfigurator::save(string filename) { (void)filename; return true; } bool GSettingsConfigurator::save() { return true; } bool GSettingsConfigurator::remove_key(const std::string &key) { bool ret = true; (void)key; return ret; } bool GSettingsConfigurator::get_value(const std::string &full_path, VariantType type, Variant &out) const { bool ret = false; string key; GSettings *child = get_settings(full_path, key); if (child != NULL) { GVariant *value = g_settings_get_value(child, key.c_str()); if (value != NULL) { if (type == VARIANT_TYPE_NONE) { const GVariantType *value_type = g_variant_get_type(value); if (g_variant_type_equal(G_VARIANT_TYPE_INT32, value_type)) { type = VARIANT_TYPE_INT; } else if (g_variant_type_equal(G_VARIANT_TYPE_BOOLEAN, value_type)) { type = VARIANT_TYPE_BOOL; } else if (g_variant_type_equal(G_VARIANT_TYPE_DOUBLE, value_type)) { type = VARIANT_TYPE_DOUBLE; } else if (g_variant_type_equal(G_VARIANT_TYPE_STRING, value_type)) { type = VARIANT_TYPE_STRING; } } ret = false; const GVariantType *value_type = g_variant_get_type(value); if (g_variant_type_equal(G_VARIANT_TYPE_INT32, value_type)) { out.int_value = g_settings_get_int(child, key.c_str()); ret = true; } else if (g_variant_type_equal(G_VARIANT_TYPE_BOOLEAN, value_type)) { out.bool_value = g_settings_get_boolean(child, key.c_str()); ret = true; } else if (g_variant_type_equal(G_VARIANT_TYPE_DOUBLE, value_type)) { out.double_value = g_settings_get_double(child, key.c_str()); ret = true; } else if (g_variant_type_equal(G_VARIANT_TYPE_STRING, value_type)) { out.string_value = g_settings_get_string(child, key.c_str()); ret = true; } // g_variant_unref(value); } if (ret) { out.type = type; } } return ret; } bool GSettingsConfigurator::set_value(const std::string &full_path, Variant &value) { bool ret = true; string key; GSettings *child = get_settings(full_path, key); if (child != NULL) { switch (value.type) { case VARIANT_TYPE_NONE: ret = false; break; case VARIANT_TYPE_INT: ret = g_settings_set_int(child, key.c_str(), value.int_value); break; case VARIANT_TYPE_BOOL: ret = g_settings_set_boolean(child, key.c_str(), value.bool_value); break; case VARIANT_TYPE_DOUBLE: ret = g_settings_set_double(child, key.c_str(), value.double_value); break; case VARIANT_TYPE_STRING: ret = g_settings_set_string(child, key.c_str(), value.string_value.c_str()); break; default: ret = false; } } return ret; } void GSettingsConfigurator::set_listener(IConfiguratorListener *listener) { this->listener = listener; } bool GSettingsConfigurator::add_listener(const string &key) { (void)key; return true; } bool GSettingsConfigurator::remove_listener(const string &remove_key) { (void)remove_key; return true; } void GSettingsConfigurator::add_children() { TRACE_ENTER("GSettingsConfigurator::add_children"); int len = schema_base.length(); GSettingsSchemaSource *global_schema_source = g_settings_schema_source_get_default(); gchar **schemas = NULL; g_settings_schema_source_list_schemas(global_schema_source, TRUE, &schemas, NULL); for (int i = 0; schemas[i] != NULL; i++) { if (g_ascii_strncasecmp(schemas[i], schema_base.c_str(), len) == 0) { GSettings *gsettings = g_settings_new(schemas[i]); settings[schemas[i]] = gsettings; g_signal_connect(gsettings, "changed", G_CALLBACK(on_settings_changed), this); } } TRACE_EXIT(); } void GSettingsConfigurator::on_settings_changed(GSettings *gsettings, const gchar *key, void *user_data) { TRACE_ENTER_MSG("GSettingsConfigurator::on_settings_changed", key); gchar *path; g_object_get(gsettings, "path", &path, NULL); string tmp = StringUtil::search_replace(string(path) + key, "/org/workrave/", ""); string changed = StringUtil::search_replace(tmp, "-", "_"); TRACE_MSG(changed); for (unsigned int i = 0; i < sizeof(underscore_exceptions) / sizeof(string); i++) { string mangled = StringUtil::search_replace(underscore_exceptions[i], "-", "_"); if (mangled == changed) { changed = underscore_exceptions[i]; TRACE_MSG(" exception: " << changed); break; } } GSettingsConfigurator *self = (GSettingsConfigurator *)user_data; self->listener->config_changed_notify(changed); g_free(path); TRACE_EXIT(); } void GSettingsConfigurator::key_split(const string &key, string &parent, string &child) const { const char *s = key.c_str(); const char *slash = strrchr(s, '/'); if (slash) { parent = key.substr(0, slash - s); child = slash + 1; } else { parent = ""; child = ""; } } GSettings * GSettingsConfigurator::get_settings(const std::string &full_path, string &key) const { TRACE_ENTER_MSG("GSettingsConfigurator::get_settings", full_path); string path; key_split(StringUtil::search_replace(full_path, "_", "-"), path, key); string schema = StringUtil::search_replace(path, "/", "."); TRACE_MSG(key << " " << path << " " << schema); SettingsCIter i = settings.find(schema_base + "." + schema); if (i == settings.end()) { TRACE_RETURN("NULL"); return NULL; } TRACE_EXIT(); return i->second; } #endif workrave-1.10.50/backend/src/InputMonitorFactory.cc0000644000175100001710000000310614221624106021105 0ustar00gdm00000000000000// InputMonitorFactory.cc // // Copyright (C) 2003, 2004, 2005, 2007 Rob Caelers // All rights reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3, 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. // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "InputMonitorFactory.hh" #ifdef PLATFORM_OS_WINDOWS # include "W32InputMonitorFactory.hh" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSInputMonitorFactory.hh" #endif #ifdef PLATFORM_OS_UNIX # include "UnixInputMonitorFactory.hh" #endif #include "nls.h" IInputMonitorFactory *InputMonitorFactory::factory = NULL; void InputMonitorFactory::init(const char *display) { if (factory == NULL) { #if defined(PLATFORM_OS_WINDOWS) factory = new W32InputMonitorFactory(); #elif defined(PLATFORM_OS_MACOS) factory = new MacOSInputMonitorFactory(); #elif defined(PLATFORM_OS_UNIX) factory = new UnixInputMonitorFactory(); #endif } if (factory != NULL) { factory->init(display); } } IInputMonitor * InputMonitorFactory::get_monitor(IInputMonitorFactory::MonitorCapability capability) { if (factory != NULL) { return factory->get_monitor(capability); } return NULL; } workrave-1.10.50/backend/src/IdleLogManager.hh0000644000175100001710000001164614221624106017742 0ustar00gdm00000000000000// IdleLogManager.hh --- Bookkeeping of idle time // // Copyright (C) 2003, 2004 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifndef IDLELOGMANAGER_HH #define IDLELOGMANAGER_HH #include #include #include #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_UNISTD_H # include #endif #include #include #include #include using namespace std; #include "ActivityMonitor.hh" class TimeSource; class PacketBuffer; class IdleLogManager { private: // A Single idle time interval struct IdleInterval { IdleInterval() : begin_time(0) , end_idle_time(0) , end_time(0) , active_time(0) , to_be_saved(false) { } IdleInterval(time_t b, time_t e) : begin_time(b) , end_idle_time(e) , end_time(e) , active_time(0) , to_be_saved(false) { } //! Start time of idle interval time_t begin_time; //! End time of idle interval (and start of active part) time_t end_idle_time; //! End time of active interval. time_t end_time; //! Elapsed active time AFTER the idle interval. time_t active_time; //! Yet to be saved bool to_be_saved; }; typedef list IdleLog; typedef IdleLog::iterator IdleLogIter; typedef IdleLog::reverse_iterator IdleLogRIter; //! Idle information of a single client. struct ClientInfo { ClientInfo() : state(ACTIVITY_UNKNOWN) , master(false) , total_active_time(0) , last_active_begin_time(0) , last_active_time(0) , last_update_time() { } //! ID string client_id; //! List of idle period of this client. IdleLog idlelog; //! Current interval IdleInterval current_interval; //! Last known state ActivityState state; //! Last known master status; bool master; //! Total active time since daily reset. time_t total_active_time; //! Start time of last active period. time_t last_active_begin_time; //! Total active time since last_active_begin_time time_t last_active_time; //! Last time this idle log was updated. time_t last_update_time; //! Update the active time of the most recent idle interval. void update_active_time(time_t current_time) { if (last_active_begin_time != 0) { current_interval.active_time += (current_time - last_active_begin_time); total_active_time += (current_time - last_active_begin_time); last_active_time = 0; last_active_begin_time = 0; } } }; typedef map ClientMap; typedef ClientMap::iterator ClientMapIter; private: // My ID string myid; //! Info about all clients. ClientMap clients; //! Time const TimeSource *time_source; //! Last time we performed an expiration run. time_t last_expiration_time; public: IdleLogManager(string myid, const TimeSource *control); void update_all_idlelogs(string master_id, ActivityState state); void reset(); void init(); void terminate(); void signon_remote_client(string client_id); void signoff_remote_client(string client_id); void get_idlelog(PacketBuffer &buffer); void set_idlelog(PacketBuffer &buffer); time_t compute_total_active_time(); time_t compute_active_time(int length); time_t compute_idle_time(); private: void update_idlelog(ClientInfo &info, ActivityState state, bool master); void expire(); void expire(ClientInfo &info); void pack_idle_interval(PacketBuffer &buffer, const IdleInterval &idle) const; void unpack_idle_interval(PacketBuffer &buffer, IdleInterval &idle, time_t delta_time) const; void pack_idlelog(PacketBuffer &buffer, const ClientInfo &ci) const; void unpack_idlelog(PacketBuffer &buffer, ClientInfo &ci, time_t &pack_time, int &num_intervals) const; void unlink_idlelog(PacketBuffer &buffer) const; void save_index(); void load_index(); void save_idlelog(ClientInfo &info); void load_idlelog(ClientInfo &info); void save(); void load(); void update_idlelog(ClientInfo &info, const IdleInterval &idle); void fix_idlelog(ClientInfo &info); void dump_idlelog(ClientInfo &info); }; #endif // IDLELOGMANAGER_HH workrave-1.10.50/backend/src/CoreConfig.cc0000644000175100001710000000657514221624106017141 0ustar00gdm00000000000000// CoreConfig.cc --- The WorkRave Core Configuration // // Copyright (C) 2007, 2008, 2009, 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "CoreConfig.hh" #include "ICore.hh" using namespace std; using namespace workrave; const string CoreConfig::CFG_KEY_TIMERS = "timers"; const string CoreConfig::CFG_KEY_TIMER = "timers/%b"; const string CoreConfig::CFG_KEY_TIMER_LIMIT = "timers/%b/limit"; const string CoreConfig::CFG_KEY_TIMER_AUTO_RESET = "timers/%b/auto_reset"; const string CoreConfig::CFG_KEY_TIMER_RESET_PRED = "timers/%b/reset_pred"; const string CoreConfig::CFG_KEY_TIMER_SNOOZE = "timers/%b/snooze"; const string CoreConfig::CFG_KEY_TIMER_MONITOR = "timers/%b/monitor"; const string CoreConfig::CFG_KEY_TIMER_ACTIVITY_SENSITIVE = "timers/%b/activity_sensitive"; const string CoreConfig::CFG_KEY_BREAKS = "breaks"; const string CoreConfig::CFG_KEY_BREAK = "breaks/%b"; const string CoreConfig::CFG_KEY_BREAK_MAX_PRELUDES = "breaks/%b/max_preludes"; const string CoreConfig::CFG_KEY_BREAK_ENABLED = "breaks/%b/enabled"; const string CoreConfig::CFG_KEY_MONITOR = "monitor"; const string CoreConfig::CFG_KEY_MONITOR_NOISE = "monitor/noise"; const string CoreConfig::CFG_KEY_MONITOR_ACTIVITY = "monitor/activity"; const string CoreConfig::CFG_KEY_MONITOR_IDLE = "monitor/idle"; const string CoreConfig::CFG_KEY_MONITOR_SENSITIVITY = "monitor/sensitivity"; const string CoreConfig::CFG_KEY_GENERAL_DATADIR = "general/datadir"; const string CoreConfig::CFG_KEY_OPERATION_MODE = "general/operation-mode"; const string CoreConfig::CFG_KEY_USAGE_MODE = "general/usage-mode"; const string CoreConfig::CFG_KEY_DISTRIBUTION = "distribution"; const string CoreConfig::CFG_KEY_DISTRIBUTION_ENABLED = "distribution/enabled"; const string CoreConfig::CFG_KEY_DISTRIBUTION_LISTENING = "distribution/listening"; const string CoreConfig::CFG_KEY_DISTRIBUTION_PEERS = "distribution/peers"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP = "distribution/tcp"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PORT = "distribution/port"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP_USERNAME = "distribution/username"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PASSWORD = "distribution/password"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP_ATTEMPTS = "distribution/reconnect_attempts"; const string CoreConfig::CFG_KEY_DISTRIBUTION_TCP_INTERVAL = "distribution/reconnect_interval"; bool CoreConfig::match(const std::string &str, const std::string &key, workrave::BreakId &id) { bool ret = false; for (int i = 0; !ret && i < BREAK_ID_SIZEOF; i++) { if (key % BreakId(i) == str) { id = BreakId(i); ret = true; } } return ret; } workrave-1.10.50/backend/src/InputMonitor.cc0000644000175100001710000000310614221624106017555 0ustar00gdm00000000000000// InputMonitor.cc // // Copyright (C) 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "InputMonitor.hh" InputMonitor::InputMonitor() : activity_listener(NULL) , statistics_listener(NULL) { } InputMonitor::~InputMonitor() {} void InputMonitor::subscribe_activity(IInputMonitorListener *listener) { assert(activity_listener == NULL); activity_listener = listener; } void InputMonitor::subscribe_statistics(IInputMonitorListener *listener) { assert(statistics_listener == NULL); statistics_listener = listener; } void InputMonitor::unsubscribe_activity(IInputMonitorListener *listener) { (void)listener; assert(activity_listener != NULL); activity_listener = NULL; } void InputMonitor::unsubscribe_statistics(IInputMonitorListener *listener) { (void)listener; assert(statistics_listener != NULL); statistics_listener = NULL; } workrave-1.10.50/backend/src/DistributionSocketLink.cc0000644000175100001710000015231514221624106021563 0ustar00gdm00000000000000// DistributionSocketLink.cc // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #ifdef HAVE_DISTRIBUTION # include "debug.hh" # include # include # include # include # include "nls.h" # include # include # include # include # include "Configurator.hh" # include "CoreConfig.hh" # include "DistributionManager.hh" # include "DistributionLink.hh" # include "DistributionSocketLink.hh" # include "Util.hh" # ifdef PLATFORM_OS_WINDOWS # include "win32/ghmac.h" # endif using namespace std; //! Construct a new socket link. /*! * \param conf Configurator to use. */ DistributionSocketLink::DistributionSocketLink(Configurator *conf) : dist_manager(NULL) , configurator(conf) , username(NULL) , password(NULL) , master_client(NULL) , i_am_master(false) , master_locked(false) , server_port(DEFAULT_PORT) , server_socket(NULL) , network_enabled(false) , server_enabled(false) , reconnect_attempts(DEFAULT_ATTEMPTS) , reconnect_interval(DEFAULT_INTERVAL) , heartbeat_count(0) { socket_driver = SocketDriver::create(); init_my_id(); } //! Destructs the socket link. DistributionSocketLink::~DistributionSocketLink() { remove_client(NULL); g_free(username); g_free(password); delete server_socket; delete socket_driver; } //! Initialize the link. void DistributionSocketLink::init() { TRACE_ENTER("DistributionSocketLink::init"); // I'm master. master_client = NULL; i_am_master = true; // Read all tcp link configuration. read_configuration(); configurator->add_listener(CoreConfig::CFG_KEY_DISTRIBUTION_TCP, this); configurator->add_listener(CoreConfig::CFG_KEY_DISTRIBUTION, this); TRACE_EXIT(); } //! Periodic heartbeat. void DistributionSocketLink::heartbeat() { if (server_enabled) { TRACE_ENTER("DistributionSocketLink::heartbeat"); heartbeat_count++; time_t current_time = time(NULL); // See if we have some clients that need reconncting. list::iterator i = clients.begin(); while (i != clients.end()) { Client *c = *i; if (c->type == CLIENTTYPE_DIRECT && c->reconnect_count > 0 && c->reconnect_time != 0 && current_time >= c->reconnect_time && c->hostname != NULL) { c->reconnect_count--; c->reconnect_time = 0; dist_manager->log(_("Reconnecting to %s."), c->id == NULL ? "Unknown" : c->id); if (c->socket != NULL) { c->socket->close(); delete c->socket; } ISocket *socket = socket_driver->create_socket(); socket->set_data(c); socket->set_listener(this); socket->connect(c->hostname, c->port); c->socket = socket; } i++; } // Periodically distribute state, in case the master crashes. if (heartbeat_count % 30 == 0 && i_am_master) { send_client_message(DCMT_MASTER); } TRACE_EXIT(); } } //! Initializes the network wrapper. void DistributionSocketLink::init_my_id() { TRACE_ENTER("DistributionSocketLink::init_my_id"); bool ok = false; string idfilename = Util::get_home_directory() + "id"; if (Util::file_exists(idfilename)) { ifstream file(idfilename.c_str()); if (file) { string id_str; file >> id_str; if (id_str.length() == WRID::STR_LENGTH) { ok = my_id.set(id_str); } file.close(); } } if (!ok) { ofstream file(idfilename.c_str()); file << my_id.str() << endl; file.close(); } TRACE_EXIT(); } //! Returns the id of this node. string DistributionSocketLink::get_my_id() const { return my_id.str(); } //! Returns the total number of peer in the network. int DistributionSocketLink::get_number_of_peers() { int count = 0; list::iterator i = clients.begin(); while (i != clients.end()) { Client *c = *i; if (c->socket != NULL) { count++; } i++; } return count; } //! Join the WR network. void DistributionSocketLink::connect(string url) { TRACE_ENTER_MSG("DistributionSocketLink::connect", url); if (network_enabled) { std::string::size_type pos = url.find("://"); std::string hostport; if (pos == std::string::npos) { hostport = url; } else { hostport = url.substr(pos + 3); } pos = hostport.rfind(":"); std::string host; std::string port = "0"; if (pos == std::string::npos) { host = hostport; } else { host = hostport.substr(0, pos); port = hostport.substr(pos + 1); } add_client(NULL, (gchar *)host.c_str(), atoi(port.c_str()), CLIENTTYPE_DIRECT); } TRACE_EXIT(); } //! Disconnects the specified client. void DistributionSocketLink::disconnect(string id) { TRACE_ENTER_MSG("DistributionSocketLink::disconnect", id); Client *c = find_client_by_id((gchar *)id.c_str()); if (c != NULL) { TRACE_MSG("close"); close_client(c); } TRACE_EXIT(); } //! Disconnects all clients. bool DistributionSocketLink::disconnect_all() { TRACE_ENTER("DistributionSocketLink::disconnect_all"); list::iterator i = clients.begin(); bool ret = false; master_client = NULL; while (i != clients.end()) { close_client(*i); ret = true; i++; } set_me_master(); TRACE_EXIT(); return ret; } //! Reconnects all clients. bool DistributionSocketLink::reconnect_all() { TRACE_ENTER("DistributionSocketLink::reconnect_all"); list::iterator i = clients.begin(); bool ret = false; while (i != clients.end()) { if ((*i)->type == CLIENTTYPE_DIRECT) { close_client(*i, true); ret = true; } i++; } TRACE_EXIT(); return ret; } //! Attempt to become the master node. /*! * \return true if the claim was successful. */ bool DistributionSocketLink::claim() { TRACE_ENTER("DistributionSocketLink::claim"); bool ret = true; if (master_client != NULL) { // Another client is master. Politely request to become // master client. send_claim(master_client); ret = false; } else if (!i_am_master && clients.size() > 0) { // No one is master. Just force to be master // potential problem when more client do this simultaneously... send_new_master(); i_am_master = true; } else { // No one master, no other clients. Be happy. i_am_master = true; } TRACE_EXIT(); return ret; } //! Lock the master status. Claim will be denied when locked. bool DistributionSocketLink::set_lock_master(bool lock) { master_locked = lock; return true; } //! Sets the username and password. void DistributionSocketLink::set_user(string user, string pw) { TRACE_ENTER_MSG("DistributionSocketLink::set_user", user << " " << pw); g_free(username); g_free(password); username = g_strdup(user.c_str()); password = g_strdup(pw.c_str()); TRACE_EXIT(); } //! Sets the distribution manager for callbacks. void DistributionSocketLink::set_distribution_manager(DistributionManager *dll) { dist_manager = dll; } //! Enable/disable connecting to distributed operation. bool DistributionSocketLink::set_network_enabled(bool enabled) { if (network_enabled && !enabled) { network_enabled = enabled; set_server_enabled(false); set_me_master(); } else if (!network_enabled && enabled) { network_enabled = enabled; set_server_enabled(server_enabled); } return network_enabled; } //! Enable/disable listening for distributed operation. bool DistributionSocketLink::set_server_enabled(bool enabled) { TRACE_ENTER_MSG("DistributionSocketLink:set_server_enabled", enabled); bool ret = server_enabled; if (!network_enabled) { // Don't start the server if the network is not enabled return ret; } if (server_socket == NULL && enabled) { // Switching from disabled to enabled; if (!start_async_server()) { // We did not succeed in starting the server. Arghh. dist_manager->log(_("Could not enable network operation.")); enabled = false; } } else if (server_socket != NULL && !enabled) { // Switching from enabled to disabled. if (server_socket != NULL) { dist_manager->log(_("Disabling network operation.")); delete server_socket; } server_socket = NULL; disconnect_all(); } server_enabled = enabled; TRACE_EXIT(); return ret; } //! Register a distributed client message callback. bool DistributionSocketLink::register_client_message(DistributionClientMessageID id, DistributionClientMessageType type, IDistributionClientMessage *callback) { ClientMessageListener sl; sl.listener = callback; sl.type = type; client_message_map[id] = sl; return true; } //! Unregister a distributed clien _message callback. bool DistributionSocketLink::unregister_client_message(DistributionClientMessageID id) { (void)id; return false; } //! Force is state distribution. bool DistributionSocketLink::broadcast_client_message(DistributionClientMessageID dsid, PacketBuffer &buffer) { TRACE_ENTER("DistributionSocketLink::broadcast_client_message"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_CLIENTMSG); string id = get_master(); packet.pack_string(id); packet.pack_ushort(1); packet.pack_ushort(dsid); packet.pack_ushort(buffer.bytes_written()); packet.pack_raw((unsigned char *)buffer.get_buffer(), buffer.bytes_written()); send_packet_broadcast(packet); TRACE_EXIT(); return true; } //! Returns whether the specified client is this client. bool DistributionSocketLink::client_is_me(gchar *id) { return id != NULL && strcmp(id, my_id.str().c_str()) == 0; } //! Returns whether the specified client exists. /*! * This method checks if the specified client is an existing remote * client or the local client. */ bool DistributionSocketLink::exists_client(gchar *id) { TRACE_ENTER_MSG("DistributionSocketLink::exists_client", id); bool ret = client_is_me(id); if (!ret) { Client *c = find_client_by_id(id); ret = (c != NULL); } TRACE_EXIT(); return ret; } //! Adds a new client and connect to it. bool DistributionSocketLink::add_client(gchar *id, gchar *host, gint port, ClientType type, Client *peer) { TRACE_ENTER_MSG("DistributionSocketLink::add_client", (id != NULL ? id : "NULL") << " " << (host != NULL ? host : "NULL") << " " << port); gchar *canonical_host = NULL; Client *c = find_client_by_canonicalname(host, port); if (c != NULL && c->type == CLIENTTYPE_SIGNEDOFF && type == CLIENTTYPE_DIRECT) { if (c->id != NULL) { dist_manager->signon_remote_client(c->id); } c->type = type; dist_manager->log(_("Connecting to %s."), host); if (c->socket != NULL) { c->socket->close(); delete c->socket; } ISocket *socket = socket_driver->create_socket(); socket->set_data(c); socket->set_listener(this); socket->connect(host, port); c->socket = socket; } else { // Client does not yet exists as far as we can see. // So, create a new one. Client *client = new Client; client->type = type; client->peer = peer; client->packet.create(); client->hostname = g_strdup(host); client->id = g_strdup(id); client->port = port; clients.push_back(client); if (client->id != NULL) { dist_manager->signon_remote_client(client->id); } if (type == CLIENTTYPE_DIRECT) { dist_manager->log(_("Connecting to %s."), host); if (client->socket != NULL) { client->socket->close(); delete client->socket; } ISocket *socket = socket_driver->create_socket(); socket->set_data(client); socket->set_listener(this); socket->connect(host, port); client->socket = socket; } } g_free(canonical_host); TRACE_EXIT(); return true; } //! Sets the id of a client. /*! * This method also checks for duplicates. * * \return true if the client is a duplicate. The id will not * changed if the client is a duplicate. */ bool DistributionSocketLink::set_client_id(Client *client, gchar *id) { TRACE_ENTER_MSG("DistributionSocketLink::set_id", id); bool ret = true; bool exists = exists_client(id); if (exists) { // Already have a client with this name/port Client *old_client = find_client_by_id(id); if (old_client == NULL) { // Iek this is me. TRACE_MSG("It'me me"); ret = false; } else if (old_client != client) { TRACE_MSG("It's not me " << old_client->type << " " << old_client->socket); // It's a remote client, but not the same one. bool reuse = ((old_client->type == CLIENTTYPE_DIRECT || old_client->type == CLIENTTYPE_SIGNEDOFF) && old_client->socket == NULL); TRACE_MSG("reuse " << reuse); if (reuse) { // Client exist, but is not connected. // Silently remove the old client. remove_client(old_client); } else { // Already connected to this client. // Duplicate. ret = false; } } else { // it's ok. It's same one. } } if (ret) { // No duplicate, so change the canonical name. g_free(client->id); g_free(client->hostname); client->id = g_strdup(id); client->hostname = NULL; client->port = 0; if (client->id != NULL) { dist_manager->signon_remote_client(client->id); } } TRACE_RETURN(ret); return ret; } //! Removes a client (or all clients) /*! * Network connections to removed client are closed. * * \param client client to remove, or NULL if all clients to be removed. * */ void DistributionSocketLink::remove_client(Client *client) { TRACE_ENTER("DistributionSocketLink::remove_client"); list::iterator i = clients.begin(); while (i != clients.end()) { if (client == NULL || *i == client || (*i)->peer == client) { if ((*i)->id != NULL) { dist_manager->signoff_remote_client((*i)->id); } dist_manager->log(_("Removing client %s."), (*i)->id == NULL ? "Unknown" : (*i)->id); delete *i; i = clients.erase(i); } else { i++; } } if (client == master_client) { // Client to be removed is master. Unset master client. master_client = NULL; } TRACE_EXIT(); } //! Removes all peers of the specified client. void DistributionSocketLink::remove_peer_clients(Client *client) { TRACE_ENTER("DistributionSocketLink::remove_peer_clients"); list::iterator i = clients.begin(); while (i != clients.end()) { if ((*i)->peer == client) { TRACE_MSG("Client " << (*i)->peer->id << " is peer of " << client->id); dist_manager->log(_("Removing client %s."), (*i)->id == NULL ? "Unknown" : (*i)->id); send_signoff(NULL, *i); if ((*i)->id != NULL) { dist_manager->signoff_remote_client((*i)->id); } if (client == master_client) { // Connection to master is lost. Unset master client. set_master(NULL); } delete *i; i = clients.erase(i); } else { i++; } } TRACE_EXIT(); } //! Closes the connection to a client. void DistributionSocketLink::close_client(Client *client, bool reconnect /* = false*/) { TRACE_ENTER_MSG("DistributionSocketLink::close_client", (client->id != NULL ? client->id : "Unknown") << " " << reconnect); if (client->id != NULL) { dist_manager->signoff_remote_client(client->id); } if (client == master_client) { // Client to be closed is master. Unset master client. set_master(NULL); } if (client->type == CLIENTTYPE_DIRECT) { TRACE_MSG("Is direct"); // Closing direct connection. dist_manager->log(_("Disconnecting %s"), client->id != NULL ? client->id : "Unknown"); // Inform the client that we are disconnecting. send_signoff(client, NULL); if (client->socket != NULL) { TRACE_MSG("Still connected"); // Still connected. Disconnect. delete client->socket; client->socket = NULL; if (reconnect) { TRACE_MSG("must reconnected"); client->reconnect_count = reconnect_attempts; client->reconnect_time = time(NULL) + 5; } else { TRACE_MSG("set signed off"); client->reconnect_count = 0; client->reconnect_time = 0; client->type = CLIENTTYPE_SIGNEDOFF; } } send_signoff(NULL, client); remove_peer_clients(client); } else if (client->type == CLIENTTYPE_SIGNEDOFF) { TRACE_MSG("is signed off"); if (client->socket != NULL) { TRACE_MSG("still connected"); // Still connected. Disconnect. delete client->socket; client->socket = NULL; client->reconnect_count = 0; client->reconnect_time = 0; } remove_peer_clients(client); } TRACE_EXIT(); } //! Check if a client point is stil valid.... bool DistributionSocketLink::is_client_valid(Client *client) { list::iterator i = clients.begin(); bool ret = false; while (!ret && i != clients.end()) { if (*i == client) { ret = true; } i++; } return ret; } //! Finds a remote client by its canonical name and port. DistributionSocketLink::Client * DistributionSocketLink::find_client_by_canonicalname(gchar *name, gint port) { Client *ret = NULL; list::iterator i = clients.begin(); while (i != clients.end()) { if ((*i)->port == port && (*i)->hostname != NULL && strcmp((*i)->hostname, name) == 0) { ret = *i; } i++; } return ret; } //! Finds a remote client by its id. DistributionSocketLink::Client * DistributionSocketLink::find_client_by_id(gchar *id) { Client *ret = NULL; list::iterator i = clients.begin(); while (i != clients.end()) { if ((*i)->id != NULL && strcmp((*i)->id, id) == 0) { ret = *i; } i++; } return ret; } //! Returns the master client. string DistributionSocketLink::get_master() const { string id; if (i_am_master) { id = get_my_id(); } else if (master_client != NULL && master_client->id != NULL) { id = master_client->id; } return id; } //! Sets the specified remote client as master. void DistributionSocketLink::set_master(Client *client) { TRACE_ENTER("DistributionSocketLink::set_master") master_client = client; i_am_master = false; if (dist_manager != NULL) { dist_manager->master_changed(false, client != NULL ? client->id : ""); } TRACE_EXIT(); } //! Sets the local client as master. void DistributionSocketLink::set_me_master() { TRACE_ENTER("DistributionSocketLink::set_me_master"); master_client = NULL; i_am_master = true; if (dist_manager != NULL) { dist_manager->master_changed(true, get_my_id()); } TRACE_EXIT(); } //! Sets the specified client master. void DistributionSocketLink::set_master_by_id(gchar *id) { TRACE_ENTER_MSG("DistributionSocketLink::set_master", id); Client *c = find_client_by_id(id); if (c != NULL) { // It's a remote client. mark it master. dist_manager->log(_("Client %s is now master."), c->id == NULL ? "Unknown" : c->id); set_master(c); } else if (strcmp(id, get_my_id().c_str()) == 0) { // Its ME! dist_manager->log(_("I'm now master.")); set_me_master(); } else { // Huh??? TRACE_MSG("Iek"); } TRACE_EXIT(); } //! Initialize an outgoing packet. void DistributionSocketLink::init_packet(PacketBuffer &packet, PacketCommand cmd) { // Length. packet.pack_ushort(0); // Version packet.pack_byte(3); // Flags packet.pack_byte(0); // Command packet.pack_ushort(cmd); } //! Sends the specified packet to all clients. void DistributionSocketLink::send_packet_broadcast(PacketBuffer &packet) { TRACE_ENTER("DistributionSocketLink::send_packet_broadcast"); send_packet_except(packet, NULL); TRACE_EXIT(); } //! Sends the specified packet to all clients with the exception of one client. void DistributionSocketLink::send_packet_except(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::send_packet_except"); gint size = packet.bytes_written(); // Length. packet.poke_ushort(0, size); list::iterator i = clients.begin(); while (i != clients.end()) { Client *c = *i; if (c != client && c->socket != NULL) { int bytes_written = 0; try { c->socket->write(packet.get_buffer(), size, bytes_written); } catch (SocketException &) { TRACE_MSG("Failed to send"); } } i++; } TRACE_EXIT(); } //! Sends the specified packet to the specified client. void DistributionSocketLink::send_packet(Client *client, PacketBuffer &packet) { TRACE_ENTER("DistributionSocketLink::send_packet"); if (client != NULL && client->type == CLIENTTYPE_ROUTED) { TRACE_MSG("Must route packet."); if (client->id == NULL) { TRACE_MSG("Client's ID == NULL"); } packet.restart_read(); int flags = packet.peek_byte(3); if (!(flags & PACKETFLAG_DEST) && client->id != NULL) { assert(!(flags & PACKETFLAG_SOURCE)); TRACE_MSG("Add destination " << client->id); packet.poke_byte(3, flags | PACKETFLAG_DEST); packet.insert(4, strlen(client->id) + 2); packet.poke_string(6, client->id); } client = client->peer; } if (client != NULL && client->socket != NULL) { if (client->id != NULL) { TRACE_MSG("Sending to " << client->id); } gint size = packet.bytes_written(); // Length. packet.poke_ushort(0, size); int bytes_written = 0; try { client->socket->write(packet.get_buffer(), size, bytes_written); } catch (SocketException &) { TRACE_MSG("Failed to send"); } } TRACE_EXIT(); } //! Processed an incoming packet. void DistributionSocketLink::process_client_packet(Client *client) { TRACE_ENTER("DistributionSocketLink::process_client_packet"); PacketBuffer &packet = client->packet; client->claim_count = 0; gint size = packet.unpack_ushort(); g_assert(size == packet.bytes_written()); gint version = packet.unpack_byte(); gint flags = packet.unpack_byte(); gint type = packet.unpack_ushort(); TRACE_MSG("type = " << type); if (client != NULL && client->id != NULL) { TRACE_MSG("From = " << client->id); } Client *source = client; bool forward = true; if (flags & PACKETFLAG_SOURCE) { gchar *id = packet.unpack_string(); if (!client_is_me(id)) { TRACE_MSG("routed, source = " << id); source = find_client_by_id(id); if (source == NULL) { TRACE_MSG("Unknown source. Dropping"); } else if (source != client && source->peer != client) { TRACE_MSG("Illegal source in routing."); source = NULL; } } else { TRACE_MSG("Cycle detected."); type = 0; flags = 0; source = NULL; // Duplicate client. inform client that it's bogus and close. // dist_manager->log(_("Client %s:%d is duplicate."), client->hostname, client->port); // send_duplicate(client); // remove_client(client); } g_free(id); } if (flags & PACKETFLAG_DEST) { gchar *id = packet.unpack_string(); if (id != NULL && !client_is_me(id)) { TRACE_MSG("Destination = " << id); Client *dest = find_client_by_id(id); if (dest != NULL) { TRACE_MSG("Forwarding to destination"); forward_packet(packet, dest, source); } source = NULL; } g_free(id); } TRACE_MSG("size = " << size << ", version = " << version << ", flags = " << flags); if (source != NULL || type == PACKET_CLIENT_LIST) { switch (type) { case PACKET_HELLO1: handle_hello1(packet, source); forward = false; break; case PACKET_HELLO2: handle_hello2(packet, source); forward = false; break; case PACKET_SIGNOFF: handle_signoff(packet, source); break; case PACKET_CLAIM: handle_claim(packet, source); break; case PACKET_WELCOME: handle_welcome(packet, source); forward = false; break; case PACKET_CLIENT_LIST: forward = handle_client_list(packet, source, client); break; case PACKET_NEW_MASTER: handle_new_master(packet, source); break; case PACKET_CLIENTMSG: handle_client_message(packet, source); break; case PACKET_DUPLICATE: handle_duplicate(packet, source); forward = false; break; case PACKET_CLAIM_REJECT: handle_claim_reject(packet, source); break; } if (forward && find(clients.begin(), clients.end(), client) != clients.end()) { forward_packet_except(packet, client, source); } } if (find(clients.begin(), clients.end(), client) != clients.end()) { // hack... client may have been removed... packet.clear(); packet.resize(0); } TRACE_EXIT(); } void DistributionSocketLink::forward_packet_except(PacketBuffer &packet, Client *client, Client *source) { TRACE_ENTER("DistributionSocketLink::forward_packet_except"); packet.restart_read(); int flags = packet.peek_byte(3); if (!(flags & PACKETFLAG_SOURCE) && source->id != NULL) { TRACE_MSG("Add source " << source->id); packet.poke_byte(3, flags | PACKETFLAG_SOURCE); packet.insert(4, strlen(source->id) + 2); packet.poke_string(6, source->id); } send_packet_except(packet, client); TRACE_EXIT(); } void DistributionSocketLink::forward_packet(PacketBuffer &packet, Client *dest, Client *source) { TRACE_ENTER("DistributionSocketLink::forward_packet"); packet.restart_read(); int flags = packet.peek_byte(3); if (!(flags & PACKETFLAG_SOURCE) && source->id != NULL) { TRACE_MSG("Add source " << source->id); packet.poke_byte(3, flags | PACKETFLAG_SOURCE); packet.insert(4, strlen(source->id) + 2); packet.poke_string(6, source->id); } send_packet(dest, packet); TRACE_EXIT(); } string DistributionSocketLink::get_random_string() const { static const char alphanum[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; std::string rnd; for (int i = 0; i < 100; ++i) { rnd += alphanum[g_random_int_range(0, sizeof(alphanum) - 1)]; } return rnd; } //! Sends a hello to the specified client. void DistributionSocketLink::send_hello1(Client *client) { TRACE_ENTER("DistributionSocketLink::send_hello1"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_HELLO1); string rnd = get_random_string(); client->challenge = rnd; TRACE_MSG(username << " " << get_my_id() << " " << rnd); packet.pack_string(username); packet.pack_string(get_my_id()); packet.pack_string(rnd); send_packet(client, packet); TRACE_EXIT(); } //! Handles a Hello from the specified client. void DistributionSocketLink::handle_hello1(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_hello1"); gchar *user = packet.unpack_string(); gchar *id = packet.unpack_string(); gchar *rnd = packet.unpack_string(); TRACE_MSG(user << " " << id << " " << rnd); dist_manager->log(_("Client %s saying hello."), id != NULL ? id : "Unknown"); if (user != NULL && (username == NULL || (strcmp(username, user) == 0))) { send_hello2(client, rnd); } else { // Incorrect user. dist_manager->log(_("Client %s access denied."), id != NULL ? id : "Unknown"); remove_client(client); } g_free(user); g_free(id); g_free(rnd); TRACE_EXIT(); } //! Sends a hello to the specified client. void DistributionSocketLink::send_hello2(Client *client, gchar *rnd) { TRACE_ENTER_MSG("DistributionSocketLink::send_hello2", username << " " << rnd << " " << get_my_id()); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_HELLO2); GHmac *hmac = g_hmac_new(G_CHECKSUM_SHA1, (const guchar *)password, strlen(password)); g_hmac_update(hmac, (const guchar *)username, strlen(username)); g_hmac_update(hmac, (const guchar *)rnd, strlen(rnd)); g_hmac_update(hmac, (const guchar *)get_my_id().c_str(), get_my_id().length()); packet.pack_string(username); packet.pack_string(g_hmac_get_string(hmac)); packet.pack_string(get_my_id()); g_hmac_unref(hmac); send_packet(client, packet); TRACE_EXIT(); } //! Handles a Hello from the specified client. void DistributionSocketLink::handle_hello2(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_hello2"); gchar *user = packet.unpack_string(); gchar *pass = packet.unpack_string(); gchar *id = packet.unpack_string(); TRACE_MSG(user << " " << pass << " " << id << " " << client->challenge); dist_manager->log(_("Client %s saying hello."), id != NULL ? id : "Unknown"); GHmac *hmac = g_hmac_new(G_CHECKSUM_SHA1, (const guchar *)password, strlen(password)); g_hmac_update(hmac, (const guchar *)username, strlen(username)); g_hmac_update(hmac, (const guchar *)client->challenge.c_str(), client->challenge.length()); g_hmac_update(hmac, (const guchar *)id, strlen(id)); if (user != NULL && pass != NULL && (username == NULL || (strcmp(username, user) == 0)) && (password == NULL || (strcmp(g_hmac_get_string(hmac), pass) == 0))) { bool ok = set_client_id(client, id); if (ok) { // Welcome! send_welcome(client); client->welcome = true; } else { // Duplicate client. inform client that it's bogus and close. dist_manager->log(_("Client %s is duplicate."), id != NULL ? id : "Unknown"); send_duplicate(client); remove_client(client); } } else { // Incorrect password. dist_manager->log(_("Client %s access denied."), id != NULL ? id : "Unknown"); remove_client(client); } g_free(user); g_free(id); g_free(pass); g_hmac_unref(hmac); TRACE_EXIT(); } //! Sends a hello to the specified client. void DistributionSocketLink::send_signoff(Client *to, Client *signedoff_client) { TRACE_ENTER("DistributionSocketLink::send_signoff"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_SIGNOFF); if (signedoff_client != NULL) { TRACE_MSG("remote client " << (signedoff_client->id != NULL ? signedoff_client->id : "?")); packet.pack_string(signedoff_client->id); } else { TRACE_MSG("me " << my_id.str()); packet.pack_string(get_my_id()); } if (to != NULL) { TRACE_MSG("sending to " << (to->id != NULL ? to->id : "?")); send_packet(to, packet); } else { TRACE_MSG("broadcasting"); send_packet_broadcast(packet); } TRACE_EXIT(); } //! Handles a Hello from the specified client. void DistributionSocketLink::handle_signoff(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_signoff"); if (!client->welcome) { return; } gchar *id = packet.unpack_string(); Client *c = NULL; if (id != NULL) { c = find_client_by_id(id); g_free(id); } if (c != NULL) { dist_manager->log(_("Client %s signed off."), c->id == NULL ? "Unknown" : c->id); if (c->type == CLIENTTYPE_DIRECT) { TRACE_MSG("Direct connection. setting signedoff"); c->type = CLIENTTYPE_SIGNEDOFF; remove_peer_clients(c); if (c->socket != NULL) { TRACE_MSG("Remove connection"); delete c->socket; c->socket = NULL; } remove_client(c); } else { TRACE_MSG("Routed connection. removing"); remove_client(c); } } TRACE_EXIT(); } //! Sends a duplicate to the specified client. void DistributionSocketLink::send_duplicate(Client *client) { TRACE_ENTER("DistributionSocketLink::send_duplicate"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_DUPLICATE); send_packet(client, packet); TRACE_EXIT(); } //! Handles a duplicate for the specified client. void DistributionSocketLink::handle_duplicate(PacketBuffer &packet, Client *client) { (void)packet; TRACE_ENTER("DistributionSocketLink::handle_duplicate"); dist_manager->log(_("Client %s is duplicate."), client->id == NULL ? "Unknown" : client->id); remove_client(client); TRACE_EXIT(); } //! Sends a welcome message to the specified client void DistributionSocketLink::send_welcome(Client *client) { TRACE_ENTER("DistributionSocketLink::send_welcome"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_WELCOME); // My Info packet.pack_string(get_my_id()); packet.pack_string(get_my_id()); // was: hostname packet.pack_ushort(server_port); send_packet(client, packet); TRACE_EXIT(); } //! Handles a welcome message from the specified client. void DistributionSocketLink::handle_welcome(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_welcome"); gchar *id = packet.unpack_string(); gchar *name = packet.unpack_string(); /*gint port = */ packet.unpack_ushort(); dist_manager->log(_("Client %s is welcoming us."), id == NULL ? "Unknown" : id); bool ok = set_client_id(client, id); if (ok) { client->welcome = true; // The connected client offers the master client. // This info will be received in the client list. // So, we no longer know who's master... set_master(NULL); // All, ok. Send list of known client. // WITHOUT info about who's master on out side. send_client_list(client); } else { // Duplicate. send_duplicate(client); remove_client(client); } g_free(id); g_free(name); TRACE_EXIT(); } //! Sends the list of known clients to the specified client. void DistributionSocketLink::send_client_list(Client *client, bool except) { TRACE_ENTER("DistributionSocketLink::send_client_list"); if (clients.size() > 0) { PacketBuffer packet; packet.create(); init_packet(packet, PACKET_CLIENT_LIST); int count = 1; gint clients_pos = packet.bytes_written(); packet.pack_ushort(0); // number of clients in the list packet.pack_ushort(0); // flags. // Put muself in list. gint pos = packet.bytes_written(); TRACE_MSG("client me: " << my_id.str() << " " << server_port << " " << i_am_master); int flags = CLIENTLIST_ME | (i_am_master ? CLIENTLIST_MASTER : 0); packet.pack_ushort(0); // Length packet.pack_ushort(flags); // Flags packet.pack_string(get_my_id()); // ID packet.pack_string(get_my_id()); // Canonical name packet.pack_ushort(server_port); // Listen port. // Size of the client data. packet.poke_ushort(pos, packet.bytes_written() - pos); // Put known client in the list. list::iterator i = clients.begin(); while (i != clients.end()) { Client *c = *i; if (c->id != NULL) { count++; pos = packet.bytes_written(); int flags = 0; if (c == master_client) { flags |= CLIENTLIST_MASTER; } TRACE_MSG("Send client: " << c->id); packet.pack_ushort(0); // Length packet.pack_ushort(flags); // Flags packet.pack_string(c->id); // ID packet.pack_string(c->hostname); // Canonical name packet.pack_ushort(c->port); // Listen port. // Size of the client data. packet.poke_ushort(pos, packet.bytes_written() - pos); } i++; } // Put packet size in the packet and send. packet.poke_ushort(clients_pos, count); if (except) { send_packet_except(packet, client); } else { send_packet(client, packet); } } TRACE_EXIT(); } //! Handles a client list from the specified client. bool DistributionSocketLink::handle_client_list(PacketBuffer &packet, Client *client, Client *direct) { TRACE_ENTER("DistributionSocketLink::handle_client_list"); if (!client->welcome) { TRACE_EXIT(); return false; ; } // Extract data. gint num_clients = packet.unpack_ushort(); gint flags = packet.unpack_ushort(); (void)flags; gchar *master_id = NULL; gchar **names = new gchar *[num_clients]; gchar **ids = new gchar *[num_clients]; gint *ports = new gint[num_clients]; bool ok = true; // Loop over remote clients. for (int i = 0; i < num_clients; i++) { names[i] = NULL; ids[i] = NULL; ports[i] = 0; // Extract data. gint pos = packet.bytes_read(); gint size = packet.unpack_ushort(); gint flags = packet.unpack_ushort(); gchar *id = packet.unpack_string(); gchar *name = packet.unpack_string(); gint port = packet.unpack_ushort(); if (flags & CLIENTLIST_MASTER) { master_id = g_strdup(id); TRACE_MSG("Master: " << master_id); } if (id != NULL) { if (!exists_client(id)) { // A new client TRACE_MSG("new client: " << id); names[i] = name; ids[i] = id; ports[i] = port; } else if (client != NULL && direct == client && !client_is_me(id) && strcmp(client->id, id) != 0) { TRACE_MSG("Strange client: " << id); ok = false; } } // Skip trailing junk... size -= (packet.bytes_read() - pos); packet.skip(size); g_free(name); g_free(id); } if (ok) { // And send the list of client we are connected to. if (client != NULL && direct == client && !client->sent_client_list) { client->sent_client_list = true; send_client_list(client); } TRACE_MSG("Adding: "); for (int i = 0; i < num_clients; i++) { if (ids[i] != NULL && names[i] != NULL) { add_client(ids[i], names[i], ports[i], CLIENTTYPE_ROUTED, direct); } } if (master_id != NULL) { set_master_by_id(master_id); TRACE_MSG(master_id << " is now master"); } send_client_message(DCMT_SIGNON); } else { TRACE_MSG("Dup: "); dist_manager->log(_("Client %s is duplicate."), client->id != NULL ? client->id : "Unknown"); send_duplicate(client); remove_client(client); } TRACE_MSG("Ok: "); for (int i = 0; i < num_clients; i++) { g_free(ids[i]); g_free(names[i]); } g_free(master_id); delete[] names; delete[] ids; delete[] ports; TRACE_EXIT(); return ok; } //! Requests to become master. void DistributionSocketLink::send_claim(Client *client) { TRACE_ENTER("DistributionSocketLink::send_claim"); if (client->next_claim_time == 0 || time(NULL) >= client->next_claim_time) { PacketBuffer packet; dist_manager->log(_("Requesting master status from %s."), client->id == NULL ? "Unknown" : client->id); packet.create(); init_packet(packet, PACKET_CLAIM); packet.pack_ushort(0); client->next_claim_time = time(NULL) + 10; send_packet(client, packet); if (client->claim_count >= 3) { dist_manager->log(_("Client timeout from %s."), client->id == NULL ? "Unknown" : client->id); close_client(client, client->outbound); } client->claim_count++; } TRACE_EXIT(); } //! Handles a request from a remote client to become master. void DistributionSocketLink::handle_claim(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_claim"); if (!client->welcome) { TRACE_EXIT(); return; } /*gint count = */ packet.unpack_ushort(); if (i_am_master && master_locked) { dist_manager->log(_("Rejecting master request from client %s."), client->id == NULL ? "Unknown" : client->id); send_claim_reject(client); } else { dist_manager->log(_("Acknowledging master request from client %s."), client->id == NULL ? "Unknown" : client->id); bool was_master = i_am_master; // Marks client as master set_master(client); assert(!i_am_master); // If I was previously master, distribute state. if (was_master) { // dist_manager->log(_("Transferring state to client %s:%d."), // client->hostname, client->port); send_client_message(DCMT_MASTER); } // And tell everyone we have a new master. send_new_master(); } TRACE_EXIT(); } //! Inform that the claim has been rejected. void DistributionSocketLink::send_claim_reject(Client *client) { TRACE_ENTER("DistributionSocketLink::send_claim_reject"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_CLAIM_REJECT); send_packet(client, packet); TRACE_EXIT(); } //! Handles a rejection of my claim. void DistributionSocketLink::handle_claim_reject(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_claim"); (void)packet; if (!client->welcome) { TRACE_EXIT(); return; } if (client != master_client) { dist_manager->log(_("Non-master client %s rejected master request."), client->id == NULL ? "Unknown" : client->id); } else { dist_manager->log(_("Client %s rejected master request, delaying."), client->id == NULL ? "Unknown" : client->id); client->reject_count++; int count = client->reject_count; if (count > 6) { count = 6; } client->next_claim_time = time(NULL) + 5 * count; } TRACE_EXIT(); } //! Informs the specified client (or all remote clients) that a new client is now master. void DistributionSocketLink::send_new_master(Client *client) { TRACE_ENTER("DistributionSocketLink::send_new_master"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_NEW_MASTER); string id; if (master_client == NULL) { // I've become master id = get_my_id(); } else if (master_client->id != NULL) { // Another remote client becomes master id = master_client->id; } packet.pack_string(id); packet.pack_ushort(0); if (client != NULL) { send_packet(client, packet); } else { send_packet_broadcast(packet); } TRACE_EXIT(); } //! Handles a new master event. void DistributionSocketLink::handle_new_master(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink::handle_new_master"); if (!client->welcome) { TRACE_EXIT(); return; } for (list::iterator i = clients.begin(); i != clients.end(); i++) { (*i)->reject_count = 0; } gchar *id = packet.unpack_string(); /* gint count = */ packet.unpack_ushort(); dist_manager->log(_("Client %s is now the new master."), id == NULL ? "Unknown" : id); if (client->id != NULL) { TRACE_MSG("new master from " << client->id << " -> " << id); } set_master_by_id(id); g_free(id); TRACE_EXIT(); } // Distributes the current client message. void DistributionSocketLink::send_client_message(DistributionClientMessageType type) { TRACE_ENTER("DistributionSocketLink:send_client_message"); PacketBuffer packet; packet.create(); init_packet(packet, PACKET_CLIENTMSG); string id = get_master(); packet.pack_string(id); packet.pack_ushort(client_message_map.size()); ClientMessageMap::iterator i = client_message_map.begin(); while (i != client_message_map.end()) { DistributionClientMessageID id = i->first; ClientMessageListener &sl = i->second; IDistributionClientMessage *itf = sl.listener; int pos = 0; packet.pack_ushort(id); packet.reserve_size(pos); if ((sl.type & type) != 0) { TRACE_MSG("request " << id << " " << type); itf->request_client_message(id, packet); } packet.update_size(pos); i++; } send_packet_broadcast(packet); TRACE_EXIT(); } //! Handles client message from a remote client. void DistributionSocketLink::handle_client_message(PacketBuffer &packet, Client *client) { TRACE_ENTER("DistributionSocketLink:handle_client_message"); if (!client->welcome) { TRACE_EXIT(); return; } bool will_i_become_master = false; // dist_manager->log(_("Reveived client message from client %s:%d."), client->hostname, client->port); gchar *id = packet.unpack_string(); if (id != NULL) { // TRACE_MSG("id = " << id); will_i_become_master = client_is_me(id); g_free(id); } gint size = packet.unpack_ushort(); int pos; TRACE_MSG("size = " << size); for (int i = 0; i < size; i++) { DistributionClientMessageID id = (DistributionClientMessageID)packet.unpack_ushort(); gint datalen = packet.read_size(pos); TRACE_MSG("len = " << datalen << " " << id); if (datalen != 0) { // Narrow the buffer to the client message data. packet.narrow(-1, datalen); ClientMessageMap::iterator it = client_message_map.find(id); if (it != client_message_map.end()) { client_message_map[id].listener->client_message(id, will_i_become_master, client->id, packet); } packet.narrow(0, -1); } packet.skip_size(pos); } TRACE_EXIT(); } bool DistributionSocketLink::start_async_server() { TRACE_ENTER("DistributionSocketLink::start_async_server"); bool ret = false; try { /* Create the server */ server_socket = socket_driver->create_server(); if (server_socket != NULL) { server_socket->set_listener(this); server_socket->listen(server_port); dist_manager->log(_("Network operation started.")); ret = true; } } catch (SocketException &e) { } TRACE_RETURN(ret); return ret; } void DistributionSocketLink::socket_accepted(ISocketServer *scon, ISocket *ccon) { (void)scon; TRACE_ENTER("DistributionSocketLink::socket_accepted"); if (ccon != NULL) { dist_manager->log(_("Accepted new client.")); Client *client = new Client; client->type = CLIENTTYPE_DIRECT; client->peer = NULL; client->packet.create(); TRACE_RETURN(client->packet.bytes_available()); client->socket = ccon; client->hostname = NULL; client->id = NULL; client->port = 0; client->reconnect_count = 0; client->reconnect_time = 0; ccon->set_data(client); ccon->set_listener(this); clients.push_back(client); send_hello1(client); } TRACE_EXIT(); } void DistributionSocketLink::socket_io(ISocket *con, void *data) { TRACE_ENTER("DistributionSocketLink::socket_io"); bool ret = true; Client *client = (Client *)data; g_assert(client != NULL); TRACE_MSG("1"); if (!is_client_valid(client) && client->type == CLIENTTYPE_DIRECT) { TRACE_RETURN("Invalid client"); return; } int bytes_read = 0; int bytes_to_read = 4; TRACE_MSG("2 " << client->packet.bytes_available()); if (client->packet.bytes_available() >= 4) { TRACE_MSG("3"); bytes_to_read = client->packet.peek_ushort(0) - 4; TRACE_MSG("4 " << bytes_to_read); if (bytes_to_read + 4 > client->packet.get_buffer_size()) { TRACE_MSG("5 " << bytes_to_read << " " << client->packet.get_buffer_size()); // FIXME: the 1024 is lame... client->packet.resize(bytes_to_read + 4 + 1024); } } TRACE_MSG("5"); bool ok = true; try { con->read(client->packet.get_write_ptr(), bytes_to_read, bytes_read); } catch (SocketException &) { ok = false; } if (!ok) { dist_manager->log(_("Client %s read error, closing."), client->id == NULL ? "Unknown" : client->id); ret = false; } else if (bytes_read == 0) { dist_manager->log(_("Client %s closed connection."), client->id == NULL ? "Unknown" : client->id); ret = false; } else { g_assert(bytes_read > 0); client->packet.write_ptr += bytes_read; if (client->packet.peek_ushort(0) == client->packet.bytes_written()) { process_client_packet(client); } } if (!ret) { close_client(client, client->outbound); } TRACE_EXIT(); return; } void DistributionSocketLink::socket_connected(ISocket *con, void *data) { TRACE_ENTER("DistributionSocketLink::socket_connected"); Client *client = (Client *)data; g_assert(client != NULL); g_assert(con != NULL); if (!is_client_valid(client) && client->type == CLIENTTYPE_DIRECT) { TRACE_RETURN("Invalid client"); return; } dist_manager->log(_("Client %s connected."), client->id != NULL ? client->id : "Unknown"); client->reconnect_count = 0; client->reconnect_time = 0; client->outbound = true; client->socket = con; TRACE_EXIT(); } void DistributionSocketLink::socket_closed(ISocket *con, void *data) { TRACE_ENTER("DistributionSocketLink::socket_closed"); (void)con; Client *client = (Client *)data; assert(client != NULL); if (!is_client_valid(client) && client->type == CLIENTTYPE_DIRECT) { TRACE_RETURN("Invalid client"); return; } // Socket error. Disable client. if (client->socket != NULL) { dist_manager->log(_("Client %s closed connection."), client->id != NULL ? client->id : "Unknown"); close_client(client, client->outbound); } else { dist_manager->log(_("Could not connect to client %s."), client->id != NULL ? client->id : "Unknown"); remove_client(client); } TRACE_EXIT(); } //! Read the configuration from the configurator. void DistributionSocketLink::read_configuration() { TRACE_ENTER("DistributionSocketLink::read_configuration"); int old_port = server_port; const char *port = getenv("WORKRAVE_PORT"); if (port != NULL) { server_port = atoi(port); } else { server_port = dist_manager->get_port(); } if (old_port != server_port && server_enabled) { set_server_enabled(false); set_server_enabled(true); } reconnect_interval = dist_manager->get_reconnect_interval(); reconnect_attempts = dist_manager->get_reconnect_attempts(); string str; str = dist_manager->get_username(); username = str != "" ? g_strdup(str.c_str()) : NULL; str = dist_manager->get_password(); password = str != "" ? g_strdup(str.c_str()) : NULL; TRACE_EXIT(); } //! Notification from the configurator that the configuration has changed. void DistributionSocketLink::config_changed_notify(const string &key) { (void)key; read_configuration(); } #endif workrave-1.10.50/backend/src/DistributionSocketLink.hh0000644000175100001710000002021014221624106021561 0ustar00gdm00000000000000// DistributionSocketLink.hh // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifndef DISTRIBUTIONSOCKETLINK_HH #define DISTRIBUTIONSOCKETLINK_HH #include #include #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include "DistributionLink.hh" #include "IDistributionClientMessage.hh" #include "IConfiguratorListener.hh" #include "PacketBuffer.hh" #include "SocketDriver.hh" #include "WRID.hh" #define DEFAULT_PORT (27273) #define DEFAULT_INTERVAL (15) #define DEFAULT_ATTEMPTS (5) class Configurator; class DistributionSocketLink : public DistributionLink , public IConfiguratorListener , public ISocketServerListener , public ISocketListener { public: private: enum PacketCommand { PACKET_HELLO1 = 0x0001, PACKET_CLAIM = 0x0002, PACKET_CLIENT_LIST = 0x0003, PACKET_WELCOME = 0x0004, PACKET_NEW_MASTER = 0x0005, PACKET_CLIENTMSG = 0x0006, PACKET_DUPLICATE = 0x0007, PACKET_CLAIM_REJECT = 0x0008, PACKET_SIGNOFF = 0x0009, PACKET_HELLO2 = 0x000A, }; enum PacketFlags { PACKETFLAG_SOURCE = 0x0001, PACKETFLAG_DEST = 0x0002, }; enum ClientListFlags { CLIENTLIST_ME = 1, CLIENTLIST_MASTER = 2, }; struct ClientMessageListener { IDistributionClientMessage *listener; DistributionClientMessageType type; ClientMessageListener() : listener(NULL) , type(DCMT_PASSIVE) { } }; enum ClientType { CLIENTTYPE_UNKNOWN = 1, CLIENTTYPE_DIRECT = 2, CLIENTTYPE_ROUTED = 3, CLIENTTYPE_SIGNEDOFF = 4, }; struct Client { Client() : type(CLIENTTYPE_UNKNOWN) , peer(NULL) , socket(NULL) , id(NULL) , hostname(NULL) , port(0) , sent_client_list(false) , welcome(false) , reconnect_count(0) , reconnect_time(0) , next_claim_time(0) , reject_count(0) , claim_count(0) , outbound(false) { } ~Client() { if (socket != NULL) { delete socket; } if (hostname != NULL) { g_free(hostname); } hostname = NULL; } //! Type of connection with client. ClientType type; //! Peer client for remote clients. Client *peer; //! ISocket *socket; //! ID gchar *id; //! Challenge std::string challenge; //! Canonical IP. gchar *hostname; //! port. gint port; //! bool sent_client_list; //! bool welcome; //! PacketBuffer packet; //! Reconnect counter; int reconnect_count; //! Last reconnect attempt time; time_t reconnect_time; //! Next time we can try to claim from this client; time_t next_claim_time; //! Number of time a claim was rejected. int reject_count; //! Number of claims send since the last received packet. int claim_count; //! Is this an outbound connection bool outbound; }; public: DistributionSocketLink(Configurator *conf); virtual ~DistributionSocketLink(); void init_my_id(); std::string get_my_id() const; int get_number_of_peers(); void set_distribution_manager(DistributionManager *dll); void init(); void heartbeat(); bool set_network_enabled(bool enabled); bool set_server_enabled(bool enabled); void set_user(string user, string password); void connect(string url); void disconnect(string id); bool disconnect_all(); bool reconnect_all(); bool claim(); bool set_lock_master(bool lock); bool register_client_message(DistributionClientMessageID id, DistributionClientMessageType type, IDistributionClientMessage *callback); bool unregister_client_message(DistributionClientMessageID id); bool broadcast_client_message(DistributionClientMessageID id, PacketBuffer &buffer); void socket_accepted(ISocketServer *server, ISocket *con); void socket_connected(ISocket *con, void *data); void socket_io(ISocket *con, void *data); void socket_closed(ISocket *con, void *data); private: bool is_client_valid(Client *client); bool add_client(gchar *id, gchar *host, gint port, ClientType type, Client *peer = NULL); void remove_client(Client *client); void remove_peer_clients(Client *client); void close_client(Client *client, bool reconnect = false); Client *find_client_by_canonicalname(gchar *name, gint port); Client *find_client_by_id(gchar *id); bool client_is_me(gchar *id); bool exists_client(gchar *id); bool set_client_id(Client *client, gchar *id); string get_master() const; void set_master_by_id(gchar *id); void set_master(Client *client); void set_me_master(); void init_packet(PacketBuffer &packet, PacketCommand cmd); void send_packet_broadcast(PacketBuffer &packet); void send_packet_except(PacketBuffer &packet, Client *client); void send_packet(Client *client, PacketBuffer &packet); void forward_packet_except(PacketBuffer &packet, Client *client, Client *source); void forward_packet(PacketBuffer &packet, Client *dest, Client *source); void process_client_packet(Client *client); void handle_hello1(PacketBuffer &packet, Client *client); void handle_hello2(PacketBuffer &packet, Client *client); void handle_signoff(PacketBuffer &packet, Client *client); void handle_welcome(PacketBuffer &packet, Client *client); void handle_duplicate(PacketBuffer &packet, Client *client); bool handle_client_list(PacketBuffer &packet, Client *client, Client *direct); void handle_claim(PacketBuffer &packet, Client *client); void handle_new_master(PacketBuffer &packet, Client *client); void handle_client_message(PacketBuffer &packet, Client *client); void handle_claim_reject(PacketBuffer &packet, Client *client); void send_hello1(Client *client); void send_hello2(Client *client, gchar *rnd); void send_signoff(Client *to, Client *signedoff_client); void send_welcome(Client *client); void send_duplicate(Client *client); void send_client_list(Client *client, bool except = false); void send_claim(Client *client); void send_new_master(Client *client = NULL); void send_claim_reject(Client *client); void send_client_message(DistributionClientMessageType type); bool start_async_server(); void read_configuration(); void config_changed_notify(const string &key); std::string get_random_string() const; private: typedef map ClientMessageMap; //! The distribution manager. DistributionManager *dist_manager; SocketDriver *socket_driver; //! The configuration access. Configurator *configurator; //! My ID WRID my_id; //! Username for client authentication gchar *username; //! Password for client authentication. gchar *password; //! All clients. list clients; //! Active client Client *master_client; //! Whether I'm the master. bool i_am_master; //! Whether the master status is locked by me. bool master_locked; //! My name // gchar *myname; //! My ID across the network. // gchar *myid; //! My server port gint server_port; //! The server socket. ISocketServer *server_socket; //! Whether distribution is enabled. bool network_enabled; bool server_enabled; //! ClientMessage listeners ClientMessageMap client_message_map; //! int reconnect_attempts; //! int reconnect_interval; //! int heartbeat_count; }; #endif // DISTRIBUTIONSOCKETLINK_HH workrave-1.10.50/backend/src/DistributionManager.cc0000644000175100001710000003752114221624106021070 0ustar00gdm00000000000000// DistributionManager.cc // // Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_DISTRIBUTION # include "debug.hh" # include # include # include # include # include # include # include "DistributionManager.hh" # include "DistributionSocketLink.hh" # include "DistributionLogListener.hh" # include "DistributionListener.hh" # include "Configurator.hh" # include "CoreConfig.hh" # ifdef PLATFORM_OS_WINDOWS # define snprintf _snprintf # define vsnprintf _vsnprintf # endif # define MAX_LOG_LEN (256) //! Constructs a new DistributionManager. DistributionManager::DistributionManager() : network_enabled(false) , server_enabled(false) , link(NULL) , state(NODE_ACTIVE) { } //! Destructs this DistributionManager. DistributionManager::~DistributionManager() { delete link; } //! Initialize the DistributionManager from the specified Configurator. void DistributionManager::init(Configurator *conf) { configurator = conf; // Create link to the outside world. DistributionSocketLink *socketlink = new DistributionSocketLink(conf); socketlink->set_distribution_manager(this); socketlink->init(); link = socketlink; // Read configuration. read_configuration(); configurator->add_listener(CoreConfig::CFG_KEY_DISTRIBUTION, this); } //! Periodic heartbeat. void DistributionManager::heartbeart() { // Forward heartbeat to link. if (link != NULL) { link->heartbeat(); } } //! Returns the current distribution state of this node. DistributionManager::NodeState DistributionManager::get_state() const { return state; } //! Returns the number of peers in the network. This node excluded. int DistributionManager::get_number_of_peers() { int ret = 0; if (link != NULL) { ret = link->get_number_of_peers(); } return ret; } //! Returns true if this node is master. bool DistributionManager::is_master() const { return state == NODE_ACTIVE; } //! Returns the name of the current master (or "" if requesting node is master) string DistributionManager::get_master_id() const { return state == NODE_ACTIVE ? get_my_id() : current_master; } //! Returns the id of this node. string DistributionManager::get_my_id() const { string id; if (link != NULL) { id = link->get_my_id(); } return id; } //! Requests to become master. /*! * \return true is the claim succeeded. */ bool DistributionManager::claim() { bool ret = false; if (link != NULL) { ret = link->claim(); } if (ret) { state = NODE_ACTIVE; } return ret; } //! Locks the current master status. /*! * If this node has locked its master status, all requests from remote hosts * to become master will be denied. */ bool DistributionManager::set_lock_master(bool lock) { bool ret = false; if (link != NULL) { ret = link->set_lock_master(lock); } return ret; } //! Connect to the specified URL. bool DistributionManager::connect(string url) { bool ret = false; if (link != NULL) { link->connect(url); ret = true; } return ret; } //! Disconnects from client with the specified id. bool DistributionManager::disconnect(string id) { bool ret = false; if (link != NULL) { link->disconnect(id); ret = true; } return ret; } //! Disconnects from all remote hosts. bool DistributionManager::disconnect_all() { bool ret = false; if (link != NULL) { link->disconnect_all(); ret = true; } return ret; } //! Reconnects to all remote hosts. bool DistributionManager::reconnect_all() { bool ret = false; if (link != NULL) { link->reconnect_all(); ret = true; } return ret; } //! Register the specified state callback. bool DistributionManager::register_client_message(DistributionClientMessageID id, DistributionClientMessageType type, IDistributionClientMessage *callback) { bool ret = false; if (link != NULL) { link->register_client_message(id, type, callback); ret = true; } return ret; } //! Unregister the specified state callback. bool DistributionManager::unregister_client_message(DistributionClientMessageID id) { bool ret = false; if (link != NULL) { link->unregister_client_message(id); ret = true; } return ret; } //! Register a control listener. bool DistributionManager::add_listener(DistributionListener *listener) { bool ret = true; ListenerIter i = listeners.begin(); while (ret && i != listeners.end()) { DistributionListener *l = *i; if (listener == l) { // Already added. Skip ret = false; } i++; } if (ret) { // not found -> add listeners.push_back(listener); } return ret; } //! Unregister a control listener. bool DistributionManager::remove_listener(DistributionListener *listener) { bool ret = false; ListenerIter i = listeners.begin(); while (!ret && i != listeners.end()) { DistributionListener *l = *i; if (listener == l) { // Found. Remove i = listeners.erase(i); ret = true; } else { i++; } } return ret; } //! Broadcasts a client message to all bool DistributionManager::broadcast_client_message(DistributionClientMessageID id, PacketBuffer &buffer) { bool ret = false; if (link != NULL) { ret = link->broadcast_client_message(id, buffer); } return ret; } //! Event from Link that our 'master' status changed. void DistributionManager::master_changed(bool new_master, string id) { TRACE_ENTER_MSG("DistributionManager::master_changed", new_master); state = (new_master ? NODE_ACTIVE : NODE_STANDBY); current_master = id; TRACE_EXIT(); } //! Cleanup the peer's name?. void DistributionManager::sanitize_peer(string &peer) { int len = peer.length(); while (len > 1 && (peer[0] == ' ')) { peer = peer.substr(1, len - 1); len--; } while (len > 1 && (peer[len - 1] == ' ')) { peer = peer.substr(0, len - 1); len--; } std::string::size_type pos = peer.find("://"); if (pos == std::string::npos) { peer = "tcp://" + peer; } } //! Adds the specified peer. bool DistributionManager::add_peer(string peer) { TRACE_ENTER_MSG("DistributionManager:add_peer", peer); bool ret = false; sanitize_peer(peer); list::iterator i = find(peer_urls.begin(), peer_urls.end(), peer); if (i == peer_urls.end()) { peer_urls.push_back(peer); connect(peer); ret = true; } write_peers(); TRACE_EXIT(); return ret; } //! Removes the specified peer. bool DistributionManager::remove_peer(string peer) { TRACE_ENTER_MSG("DistributionManager:remove_peer", peer); bool ret = false; sanitize_peer(peer); list::iterator i = find(peer_urls.begin(), peer_urls.end(), peer); if (i != peer_urls.end()) { peer_urls.erase(i); ret = true; } write_peers(); TRACE_EXIT(); return ret; } void DistributionManager::set_peers(string peers, bool connect) { TRACE_ENTER_MSG("DistributionManager::set_peers", peers); parse_peers(peers, connect); write_peers(); TRACE_EXIT(); } // void DistributionManager::parse_peers(string peers, bool doconnect) { TRACE_ENTER_MSG("DistributionManager::parse_peers", peers); peer_urls.clear(); std::string::size_type pos = peers.find(','); while (pos != std::string::npos) { string peer = peers.substr(0, pos); peers = peers.substr(pos + 1); if (peer != "") { sanitize_peer(peer); peer_urls.push_back(peer); if (doconnect) { connect(peer); } } pos = peers.find(','); } if (peers.length() > 0) { sanitize_peer(peers); peer_urls.push_back(peers); if (doconnect) { connect(peers); } } TRACE_EXIT(); } //! Read all disbution manager configuration. void DistributionManager::read_configuration() { bool is_set; // Distributed operation enabled or not. network_enabled = get_enabled(); server_enabled = get_listening(); // Enable/Disable link. assert(link != NULL); link->set_network_enabled(network_enabled); link->set_server_enabled(server_enabled); // Peers const char *env = getenv("WORKRAVE_URL"); if (env != NULL) { parse_peers(env); } else { string peer; is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_PEERS, peer); if (is_set && peer != "") { parse_peers(peer); } } } void DistributionManager::write_peers() { TRACE_ENTER("DistributionManager::write_peers"); string peers; for (list::iterator i = peer_urls.begin(); i != peer_urls.end(); i++) { if (i != peer_urls.begin()) { peers += ","; } peers += (*i); } configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_PEERS, peers); TRACE_EXIT(); } //! Notification that the specified configuration key has changed. void DistributionManager::config_changed_notify(const string &key) { TRACE_ENTER_MSG("DistributionManager:config_changed_notify", key); (void)key; read_configuration(); TRACE_EXIT(); } //! void DistributionManager::log(const char *fmt, ...) { va_list va; va_start(va, fmt); time_t current_time = time(NULL); struct tm *lt = localtime(¤t_time); char log_str[MAX_LOG_LEN - 32]; vsnprintf(log_str, MAX_LOG_LEN - 32 - 1, fmt, va); log_str[MAX_LOG_LEN - 32 - 1] = '\0'; char str[MAX_LOG_LEN]; snprintf(str, MAX_LOG_LEN - 1, "[%02d/%02d/%02d %02d:%02d:%02d] %s\n", lt->tm_mday, lt->tm_mon + 1, lt->tm_year + 1900, lt->tm_hour, lt->tm_min, lt->tm_sec, log_str); str[MAX_LOG_LEN - 1] = '\0'; log_messages.push_back(str); if (log_messages.size() > 500) { log_messages.erase(log_messages.begin()); } fire_log_event(str); } //! Adds the log listener. /*! * \param listener listener to add. * * \retval true listener successfully added. * \retval false listener already added. */ bool DistributionManager::add_log_listener(DistributionLogListener *listener) { bool ret = true; LogListenerIter i = log_listeners.begin(); while (ret && i != log_listeners.end()) { DistributionLogListener *l = *i; if (listener == l) { // Already added. Skip ret = false; } i++; } if (ret) { // not found -> add log_listeners.push_back(listener); } return ret; } //! Removes the log listener. /*! * \param listener listener to stop monitoring. * * \retval true listener successfully removed. * \retval false listener not found. */ bool DistributionManager::remove_log_listener(DistributionLogListener *listener) { bool ret = false; LogListenerIter i = log_listeners.begin(); while (!ret && i != log_listeners.end()) { DistributionLogListener *l = *i; if (listener == l) { // Found. Remove i = log_listeners.erase(i); ret = true; } else { i++; } } return ret; } //! Fire a log event. void DistributionManager::fire_log_event(string message) { TRACE_ENTER_MSG("DistributionManager::fire_log_event", message); LogListenerIter i = log_listeners.begin(); while (i != log_listeners.end()) { DistributionLogListener *l = *i; if (l != NULL) { l->distribution_log(message); } i++; } TRACE_EXIT(); } void DistributionManager::fire_signon_client(char *id) { TRACE_ENTER_MSG("DistributionManager::fire_signon_client", id); ListenerIter i = listeners.begin(); while (i != listeners.end()) { DistributionListener *l = *i; if (l != NULL) { l->signon_remote_client(id); } i++; } TRACE_EXIT(); } void DistributionManager::fire_signoff_client(char *id) { TRACE_ENTER_MSG("DistributionManager::fire_signoff_client", id); ListenerIter i = listeners.begin(); while (i != listeners.end()) { DistributionListener *l = *i; if (l != NULL) { l->signoff_remote_client(id); } i++; } TRACE_EXIT(); } void DistributionManager::signon_remote_client(char *client_id) { fire_signon_client(client_id); } void DistributionManager::signoff_remote_client(char *client_id) { fire_signoff_client(client_id); } //! Returns log messages. list DistributionManager::get_logs() const { return log_messages; } //! Returns all peers. list DistributionManager::get_peers() const { return peer_urls; } bool DistributionManager::get_enabled() const { bool ret = true; bool is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_ENABLED, ret); if (!is_set) { ret = false; } return ret; } void DistributionManager::set_enabled(bool b) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_ENABLED, b); } bool DistributionManager::get_listening() const { bool ret = true; bool is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_LISTENING, ret); if (!is_set) { ret = false; } return ret; } void DistributionManager::set_listening(bool b) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_LISTENING, b); } string DistributionManager::get_username() const { string ret; configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_USERNAME, ret); return ret; } void DistributionManager::set_username(string name) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_USERNAME, name); } string DistributionManager::get_password() const { string ret; configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PASSWORD, ret); return ret; } void DistributionManager::set_password(string name) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PASSWORD, name); } int DistributionManager::get_port() const { int ret; bool is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PORT, ret); if (!is_set) { ret = DEFAULT_PORT; } return ret; } void DistributionManager::set_port(int v) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_PORT, v); } int DistributionManager::get_reconnect_attempts() const { int ret; bool is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_ATTEMPTS, ret); if (!is_set) { ret = DEFAULT_ATTEMPTS; } return ret; } void DistributionManager::set_reconnect_attempts(int v) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_ATTEMPTS, v); } int DistributionManager::get_reconnect_interval() const { int ret; bool is_set = configurator->get_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_INTERVAL, ret); if (!is_set) { ret = DEFAULT_INTERVAL; } return ret; } void DistributionManager::set_reconnect_interval(int v) { configurator->set_value(CoreConfig::CFG_KEY_DISTRIBUTION_TCP_INTERVAL, v); } #endif workrave-1.10.50/backend/src/TimePredFactory.cc0000644000175100001710000000263114221624106020151 0ustar00gdm00000000000000// TimePredFactory.cc // // Copyright (C) 2001, 2002, 2007, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "TimePredFactory.hh" #include "DayTimePred.hh" using namespace std; TimePred * TimePredFactory::create_time_pred(string spec) { TimePred *pred = 0; bool ok = false; std::string type; std::string::size_type pos = spec.find('/'); if (pos != std::string::npos) { type = spec.substr(0, pos); spec = spec.substr(pos + 1); if (type == "day") { DayTimePred *dayPred = new DayTimePred(); ok = dayPred->init(spec); pred = dayPred; } } if (pred && !ok) { delete pred; pred = NULL; } return pred; } workrave-1.10.50/backend/src/DayTimePred.cc0000644000175100001710000000614414221624106017262 0ustar00gdm00000000000000// DayTimePred.cc --- Daily Time Predicate // // Copyright (C) 2001, 2002, 2003, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "ICore.hh" #include "CoreFactory.hh" #include "DayTimePred.hh" using namespace std; using namespace workrave; //! Sets the last time the predicate matched. void DayTimePred::set_last(time_t lastTime) { last_time = lastTime; ICore *core = CoreFactory::get_core(); time_t now = core->get_time(); if (last_time == 0) { last_time = now; } } int DayTimePred::time_cmp(int h1, int m1, int h2, int m2) { if (h1 < h2) return -1; else if (h1 > h2) return 1; if (m1 < m2) return -1; else if (m1 > m2) return 1; return 0; } bool DayTimePred::init(int hour, int min) { pred_hour = hour; pred_min = min; return true; } bool DayTimePred::init(std::string spec) { bool ret = false; std::string::size_type pos = spec.find(':'); if (pos != std::string::npos) { std::string hours; std::string minutes; hours = spec.substr(0, pos); minutes = spec.substr(pos + 1); ret = init(atoi(hours.c_str()), atoi(minutes.c_str())); } return ret; } int DayTimePred::days_in_month(int month, int year) { int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; if (month == 1) { // Feb if (year % 4 == 0 && ((year % 100 != 0) || (year % 400) == 0)) { return 29; } else { return 28; } } else { return days[month]; } } time_t DayTimePred::get_time_offset() { return pred_hour * 60 * 60 + pred_min * 60; } time_t DayTimePred::get_next() { struct tm *ret; ret = localtime(&last_time); if (ret != NULL) { if (time_cmp(ret->tm_hour, ret->tm_min, pred_hour, pred_min) >= 0) { ret->tm_mday++; } ret->tm_sec = 0; ret->tm_min = pred_min; ret->tm_hour = pred_hour; if (ret->tm_mday > days_in_month(ret->tm_mon, ret->tm_year + 1900)) { ret->tm_mday = 1; ret->tm_mon++; } if (ret->tm_mon > 11) { ret->tm_mon = 0; ret->tm_year++; } return mktime(ret); } else { return 0; } } string DayTimePred::to_string() const { char buf[16]; sprintf(buf, "day/%d:%02d", pred_hour, pred_min); return string(buf); } workrave-1.10.50/backend/src/BreakControl.hh0000644000175100001710000001003414221624106017503 0ustar00gdm00000000000000// BreakControl.hh --- controller for a single break // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef BREAKCONTROL_HH #define BREAKCONTROL_HH #include "ICore.hh" #include "ICoreEventListener.hh" #include "IBreak.hh" #include "IBreakResponse.hh" #include "ActivityMonitorListener.hh" #include "Diagnostics.hh" using namespace workrave; // Forward declarion of external interface. namespace workrave { class IActivityMonitorListener; class IApp; } // namespace workrave class Core; class PreludeWindow; class Timer; class BreakControl : public ActivityMonitorListener { public: enum BreakState { BREAK_ACTIVE, BREAK_INACTIVE, BREAK_SUSPENDED }; //! Defines what to do when the user is active during a break. struct BreakStateData { bool forced_break; int prelude_count; int break_stage; bool reached_max_prelude; int prelude_time; }; BreakControl(BreakId id, const std::string &break_name, IApp *app, Timer *timer); virtual ~BreakControl(); // BreakInterface void start_break(); void force_start_break(BreakHint break_hint); void stop_break(bool reset_count = true); bool need_heartbeat(); void heartbeat(); BreakState get_break_state(); void set_state_data(bool activate, const BreakStateData &data); void get_state_data(BreakStateData &data); bool is_taking(); bool is_max_preludes_reached() const; // ActivityMonitorListener bool action_notify(); // Configuration void set_max_preludes(int m); // BreakResponseInterface void postpone_break(); void skip_break(); void stop_prelude(); std::string get_current_stage(); private: void break_window_start(); void prelude_window_start(); void post_event(CoreEvent event); private: enum BreakStage { STAGE_NONE, STAGE_SNOOZED, STAGE_PRELUDE, STAGE_TAKING, STAGE_DELAYED }; void update_prelude_window(); void update_break_window(); void goto_stage(BreakStage stage); void suspend_break(); std::string get_stage_text(BreakStage stage); void send_signal(BreakStage stage); void send_skipped(); void send_postponed(); private: //! ID of the break controlled by this BreakControl. BreakId break_id; //! Name of the break controlled by this BreakControl. std::string break_name; //! The Controller. Core *core; //! GUI Factory used to create the break/prelude windows. IApp *application; //! Interface to the timer controlling the break. Timer *break_timer; //! Current stage in the break. TracedField break_stage; //! This is a final prelude prompt, forcing break after this prelude bool reached_max_prelude; //! How long is the prelude active. int prelude_time; //! How many times have we preluded (since the limit was reached) TracedField prelude_count; //! forced break (i.e. RestBreak now, or screenlock) TracedField forced_break; //! After how many preludes do we force a break or give up? int max_number_of_preludes; //! Is this a break that is not controlled by the timer. TracedField fake_break; //! Fake break counter. time_t fake_break_count; //! Break will be stopped because the user pressed postpone/skip. TracedField user_abort; //! User became active during delayed break. TracedField delayed_abort; //! Break hint if break has been started. BreakHint break_hint; }; #endif // BREAKCONTROL_HH workrave-1.10.50/backend/src/XMLConfigurator.hh0000644000175100001710000000627014221624106020150 0ustar00gdm00000000000000// XMLConfigurator.hh // // Copyright (C) 2001, 2002, 2006, 2007, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef XMLCONFIGURATOR_HH #define XMLCONFIGURATOR_HH #include #include #include #undef interface #include #include "IConfigBackend.hh" #include "ConfigBackendAdapter.hh" class XMLConfigurator : public virtual IConfigBackend , public virtual ConfigBackendAdapter { public: XMLConfigurator(); XMLConfigurator(XMLConfigurator *parent); virtual ~XMLConfigurator(); // Pure virtuals from Configurator virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_config_value(const std::string &key, std::string &out) const; virtual bool get_config_value(const std::string &key, bool &out) const; virtual bool get_config_value(const std::string &key, int &out) const; virtual bool get_config_value(const std::string &key, long &out) const; virtual bool get_config_value(const std::string &key, double &out) const; virtual bool set_config_value(const std::string &key, std::string v); virtual bool set_config_value(const std::string &key, int v); virtual bool set_config_value(const std::string &key, long v); virtual bool set_config_value(const std::string &key, bool v); virtual bool set_config_value(const std::string &key, double v); private: void init(GdomeNode *node); void save_to(GdomeDOMImplementation *impl, GdomeDocument **doc, GdomeElement *node); std::string strip_path(std::string &key) const; XMLConfigurator *get_child(const std::string &key) const; std::list get_all_children() const; virtual bool create_child(const std::string &key); std::string getName() const { return node_name; } void setName(std::string name) { node_name = name; if (parent != NULL) { node_path = parent->getPath() + node_name + "/"; } } std::string getPath() const { return node_path; } private: typedef std::map Attributes; typedef std::map Children; //! Parent XMLConfigurator *parent; //! File name of the last 'load'. std::string last_file_name; //! Name in XML file. std::string xml_node_name; //! My name (relative to parent) std::string node_name; //! My path (absolute name); std::string node_path; //! All child nodes. Children node_children; //! All attributes Attributes node_attributes; }; #endif // XMLCONFIGURATOR_HH workrave-1.10.50/backend/src/TimeSource.hh0000644000175100001710000000223614221624106017202 0ustar00gdm00000000000000// TimeSource.hh --- The Time // // Copyright (C) 2001, 2002, 2003, 2004, 2005 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMESOURCE_HH #define TIMESOURCE_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif //! A source of time. class TimeSource { public: virtual ~TimeSource() {} //! Returns the time of this source. virtual time_t get_time() const = 0; }; #endif // TIMESOURCE_HH workrave-1.10.50/backend/src/XMLConfigurator.cc0000644000175100001710000003240014221624106020130 0ustar00gdm00000000000000// XMLConfigurator.cc --- Configuration Access // // Copyright (C) 2002, 2003, 2006, 2007, 2009, 2011, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include "Util.hh" #include "XMLConfigurator.hh" using namespace std; //! Constructor XMLConfigurator::XMLConfigurator() : parent(NULL) { } //! Constructor /*! * \param parent pointer to the parent XML node. */ XMLConfigurator::XMLConfigurator(XMLConfigurator *p) : parent(p) { } //! Destructor XMLConfigurator::~XMLConfigurator() { Children::const_iterator i; for (i = node_children.begin(); i != node_children.end(); i++) { delete i->second; } } bool XMLConfigurator::load(string filename) { TRACE_ENTER("XMLConfigurator::load"); last_file_name = filename; GdomeElement *root = NULL; GdomeException exc; // Create URI from filename string uri = "file:///" + filename; if (Util::file_exists(filename)) { // First get a DOMImplementation reference GdomeDOMImplementation *domImpl = NULL; domImpl = gdome_di_mkref(); // Load XML from file. GdomeDocument *doc = gdome_di_createDocFromURI(domImpl, uri.c_str(), GDOME_LOAD_PARSING, &exc); if (doc != NULL) { // Get root element root = gdome_doc_documentElement(doc, &exc); if (root != NULL) { GdomeNode *node = GDOME_N(root); init(node); gdome_el_unref(root, &exc); } gdome_di_freeDoc(domImpl, doc, &exc); } gdome_di_unref(domImpl, &exc); } TRACE_EXIT(); return root != NULL; } bool XMLConfigurator::save(string filename) { TRACE_ENTER_MSG("XMLConfigurator::save", filename); string saveStr; GdomeException exc; // First get a DOMImplementation reference GdomeDOMImplementation *domImpl = NULL; domImpl = gdome_di_mkref(); // Create Doc GdomeDocument *doc = NULL; GdomeElement *root = NULL; save_to(domImpl, &doc, root); if (doc != NULL) { /* Save the created document */ gdome_di_saveDocToFile(domImpl, doc, filename.c_str(), GDOME_SAVE_STANDARD, &exc); gdome_di_freeDoc(domImpl, doc, &exc); } gdome_di_unref(domImpl, &exc); TRACE_EXIT(); return true; } bool XMLConfigurator::save() { return save(last_file_name); } bool XMLConfigurator::remove_key(const std::string &key) { (void)key; return false; } bool XMLConfigurator::get_config_value(const string &key, string &out) const { TRACE_ENTER_MSG("XMLConfigurator::get_config_value", key); bool ret = false; string stripped_key = key; string path = strip_path(stripped_key); if (path != "") { XMLConfigurator *child = get_child(path); if (child != NULL) { ret = child->get_config_value(stripped_key, out); } } else { Attributes::const_iterator i = node_attributes.find(stripped_key); if (i != node_attributes.end()) { out = (*i).second; ret = true; } } TRACE_RETURN(out); return ret; } bool XMLConfigurator::get_config_value(const string &key, bool &out) const { string s; bool ret = get_config_value(key, s); if (ret) { if (s == "true" || s == "yes" || s == "TRUE" || s == "1") out = true; else out = false; } return ret; } bool XMLConfigurator::get_config_value(const string &key, int &out) const { string s; bool ret = get_config_value(key, s); if (ret) { out = atoi(s.c_str()); } return ret; } bool XMLConfigurator::get_config_value(const string &key, long &out) const { string s; bool ret = get_config_value(key, s); if (ret) { out = atol(s.c_str()); } return ret; } bool XMLConfigurator::get_config_value(const string &key, double &out) const { string s; bool ret = get_config_value(key, s); if (ret) { out = atof(s.c_str()); } return ret; } bool XMLConfigurator::set_config_value(const string &key, string v) { TRACE_ENTER_MSG("XMLConfigurator::set_config_value", key << " " << v); bool ret = false; string stripped_key = key; string path = strip_path(stripped_key); if (path != "") { XMLConfigurator *child = get_child(path); if (child != NULL) { ret = child->set_config_value(stripped_key, v); } else if (create_child(path)) { child = get_child(path); if (child != NULL) { ret = child->set_config_value(stripped_key, v); } } } else { node_attributes[stripped_key] = v; ret = true; } TRACE_EXIT(); return ret; } bool XMLConfigurator::set_config_value(const string &key, int v) { stringstream ss; ss << v; set_config_value(key, ss.str()); return true; } bool XMLConfigurator::set_config_value(const string &key, long v) { stringstream ss; ss << v; set_config_value(key, ss.str()); return true; } bool XMLConfigurator::set_config_value(const string &key, bool v) { stringstream ss; if (v) { ss << "1"; } else { ss << "0"; } set_config_value(key, ss.str()); return true; } bool XMLConfigurator::set_config_value(const string &key, double v) { stringstream ss; ss << v; set_config_value(key, ss.str()); return true; } //! Initialize this node. /*! * \param node the Gdome XML node. */ void XMLConfigurator::init(GdomeNode *node) { TRACE_ENTER("XMLConfigurator::init"); GdomeException exc; GdomeDOMString *nodeName = gdome_n_nodeName(node, &exc); GdomeDOMString *nodeValue = gdome_n_nodeValue(node, &exc); if (nodeName != NULL) { setName(nodeName->str); xml_node_name = nodeName->str; } GdomeNodeType nodeType = (GdomeNodeType)gdome_n_nodeType(node, &exc); switch (nodeType) { case GDOME_TEXT_NODE: { break; } case GDOME_DOCUMENT_NODE: { GdomeNode *child = gdome_n_firstChild(node, &exc); while (child != NULL) { if (gdome_n_nodeType(child, &exc) == GDOME_ELEMENT_NODE) { XMLConfigurator *n = new XMLConfigurator(this); n->init(child); node_children[n->getName()] = n; } child = gdome_n_nextSibling(child, &exc); } } break; case GDOME_ELEMENT_NODE: { GdomeNamedNodeMap *attributes = gdome_n_attributes(node, &exc); int attrCount = gdome_nnm_length(attributes, &exc); for (int i = 0; i < attrCount; i++) { GdomeNode *attribute = gdome_nnm_item(attributes, i, &exc); GdomeDOMString *k = gdome_n_nodeName(attribute, &exc); GdomeDOMString *v = gdome_n_nodeValue(attribute, &exc); if (k != NULL && v != NULL) { string key = k->str; string value = v->str; node_attributes[key] = value; if (key == "id") { setName(value); xml_node_name = value; } } if (k != NULL) gdome_str_unref(k); if (v != NULL) gdome_str_unref(v); } GdomeNode *child = gdome_n_firstChild(node, &exc); while (child != NULL) { if (gdome_n_nodeType(child, &exc) == GDOME_ELEMENT_NODE) { XMLConfigurator *n = new XMLConfigurator(this); n->init(child); node_children[n->getName()] = n; } child = gdome_n_nextSibling(child, &exc); } } break; default: cerr << "Unrecognized node type = " << nodeType << endl; } if (nodeName != NULL) gdome_str_unref(nodeName); if (nodeValue != NULL) gdome_str_unref(nodeValue); TRACE_EXIT(); } void XMLConfigurator::save_to(GdomeDOMImplementation *impl, GdomeDocument **doc, GdomeElement *node) { TRACE_ENTER_MSG("XMLConfigurator::save_to", node_name); GdomeException exc; GdomeElement *elem = NULL; /* Create a new element */ GdomeDOMString *name = NULL; if (node_name == "") { name = gdome_str_mkref("workrave"); } else if (xml_node_name != "") { name = gdome_str_mkref(xml_node_name.c_str()); } else { GdomeDOMString *node_name = gdome_n_nodeName((GdomeNode *)node, &exc); if (node_name != NULL) { xml_node_name = node_name->str; gdome_str_unref(node_name); } } if (node == NULL || *doc == NULL) { // Top level node -> Create Doc *doc = gdome_di_createDocument(impl, NULL, name, NULL, &exc); if (doc != NULL) { // Get root element elem = gdome_doc_documentElement(*doc, &exc); } } else { elem = gdome_doc_createElement(*doc, name, &exc); /* append the element to the childs list of the root element */ gdome_el_appendChild(node, (GdomeNode *)elem, &exc); } gdome_str_unref(name); // Add Text Node. // if (m_text != "") // { // GdomeDOMString *value = NULL; // value = gdome_str_mkref(m_text.c_str()); // // GdomeText *textNode = gdome_doc_createTextNode(*doc, value, &exc); // gdome_str_unref(value); // // gdome_el_appendChild (elem, (GdomeNode *)textNode, &exc); // gdome_t_unref(textNode, &exc); // } Attributes::iterator i = node_attributes.begin(); while (i != node_attributes.end()) { GdomeDOMString *name = NULL; GdomeDOMString *value = NULL; name = gdome_str_mkref((*i).first.c_str()); value = gdome_str_mkref((*i).second.c_str()); gdome_el_setAttribute(elem, name, value, &exc); gdome_str_unref(name); gdome_str_unref(value); i++; } Children::iterator ic = node_children.begin(); while (ic != node_children.end()) { ic->second->save_to(impl, doc, elem); ic++; } gdome_el_unref(elem, &exc); TRACE_EXIT(); } string XMLConfigurator::strip_path(string &key) const { TRACE_ENTER("XMLConfigurator::strip_path") std::string::size_type pos = key.rfind('/'); string path; if (pos != std::string::npos) { path = key.substr(0, pos); key = key.substr(pos + 1); } TRACE_EXIT(); return path; } XMLConfigurator * XMLConfigurator::get_child(const string &key) const { TRACE_ENTER_MSG("XMLConfigurator::get_config_value_child", key << "(" << node_name << ")"); XMLConfigurator *ret = NULL; std::string::size_type pos = key.find('/'); string prefix; string newKey; if (pos != std::string::npos) { prefix = key.substr(0, pos); newKey = key.substr(pos + 1); } else { prefix = key; newKey = ""; } TRACE_MSG("new = |" << prefix << "|" << newKey << "|"); Children::const_iterator i = node_children.find(prefix); if (i != node_children.end()) { TRACE_MSG("found"); if (newKey != "") { TRACE_MSG("recursing"); ret = i->second->get_child(newKey); } else { TRACE_MSG("this"); ret = i->second; } } else { TRACE_MSG("not found"); } TRACE_RETURN(" " << (ret != NULL)); return ret; } bool XMLConfigurator::create_child(const string &key) { TRACE_ENTER_MSG("XMLConfigurator::create_child", "|" << key << "|"); bool ret = true; if (key != "") { std::string::size_type pos = key.find('/'); string prefix; string newKey; if (pos != std::string::npos) { prefix = key.substr(0, pos); newKey = key.substr(pos + 1); } else { prefix = key; newKey = ""; } TRACE_MSG("new = " << prefix << " " << newKey); Children::const_iterator i = node_children.find(prefix); if (i != node_children.end()) { TRACE_MSG("found " << newKey); i->second->create_child(newKey); } else { XMLConfigurator *n = new XMLConfigurator(this); n->setName(prefix); n->xml_node_name = prefix; node_children[prefix] = n; TRACE_MSG("|" << node_path << "|" << prefix << "|" << newKey << "|"); n->create_child(newKey); } } TRACE_EXIT(); return ret; } //! Returns all children. list XMLConfigurator::get_all_children() const { list ret; Children::const_iterator i; for (i = node_children.begin(); i != node_children.end(); i++) { ret.push_back(i->second); } return ret; } workrave-1.10.50/backend/src/Timer.icc0000644000175100001710000000527214221624106016345 0ustar00gdm00000000000000// Timer.icc --- Timer // // Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // //! Does this timer have a limit set? inline bool Timer::is_limit_enabled() const { return limit_enabled; } //! Returns the limit. inline time_t Timer::get_limit() const { return limit_interval; } //! Returns the time the limit will be reached. inline time_t Timer::get_next_limit_time() const { return next_limit_time; } //! Does this timer have an auto reset? inline bool Timer::is_auto_reset_enabled() const { return autoreset_enabled; } //! Returns the auto reset interval. inline time_t Timer::get_auto_reset() const { return autoreset_interval; } //! Returns the auto reset predicate. inline TimePred * Timer::get_auto_reset_predicate() const { return autoreset_interval_predicate; } //! Returns the time the timer will reset. inline time_t Timer::get_next_reset_time() const { return next_reset_time; } //! Returns the snooze interval. inline time_t Timer::get_snooze() const { return snooze_interval; } //! Gets ID of this timer. inline std::string Timer::get_id() const { return timer_id; } //! Returns the enabled state. /*! * The timer only responds to activity events when enabled. * * \retval true the timer is enabled * \retval false otherwise. */ inline bool Timer::is_enabled() const { return timer_enabled; } //! Returns the timer state. inline TimerState Timer::get_state() const { return timer_state; } //! Sets the activity monitor to be used for this timer. inline void Timer::set_activity_monitor(IActivityMonitor *am) { delete activity_monitor; activity_monitor = am; } //! Returns the activity monitor to be used for this timer. inline IActivityMonitor * Timer::get_activity_monitor() const { return activity_monitor; } //! Does this timer have its own activity monitor? inline bool Timer::has_activity_monitor() const { return activity_monitor != NULL; } //! Is this timer activity sensitive? inline bool Timer::get_activity_sensitive() { return activity_sensitive; } workrave-1.10.50/backend/src/IInputMonitorListener.hh0000644000175100001710000000260314221624106021407 0ustar00gdm00000000000000// IInputMonitorListener.hh // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef INPUTMONITORLISTENER_HH #define INPUTMONITORLISTENER_HH #include //! Listener for events from the input monitor. class IInputMonitorListener { public: virtual ~IInputMonitorListener() {} //! Generic user activity (if no details info is available) virtual void action_notify() = 0; //! Reports mouse movement activity virtual void mouse_notify(int x, int y, int wheel = 0) = 0; //! Reports mouse button activity virtual void button_notify(bool is_press) = 0; //! Reports keyboard activity virtual void keyboard_notify(bool repeat) = 0; }; #endif // IINPUTMONITORLISTENER_HH workrave-1.10.50/backend/src/GNetSocketDriver.hh0000644000175100001710000000522414221624106020305 0ustar00gdm00000000000000// // Copyright (C) 2002, 2003, 2007, 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GNETSOCKETDRIVER_HH #define GNETSOCKETDRIVER_HH #define GNET_EXPERIMENTAL #include #include #include "SocketDriver.hh" using namespace workrave; //! Listen socket implementation usinf GNet class GNetSocketServer : public ISocketServer { public: GNetSocketServer(); virtual ~GNetSocketServer(); // ISocketServer interface virtual void listen(int port); private: // GNET callbacks void async_accept(GTcpSocket *server, GTcpSocket *client); static void static_async_accept(GTcpSocket *server, GTcpSocket *client, gpointer data); private: //! GNet socket GTcpSocket *socket; //! Glib IOChannel GIOChannel *iochannel; //! I/O Events we are monitoring. gint watch_flags; //! Our watch ID guint watch; }; //! Socket implementation based on GNet class GNetSocket : public ISocket { public: GNetSocket(); GNetSocket(GTcpSocket *socket); virtual ~GNetSocket(); // ISocket interface virtual void connect(const std::string &hostname, int port); virtual void read(void *buf, int count, int &bytes_read); virtual void write(void *buf, int count, int &bytes_written); virtual void close(); private: // GNET callbacks bool async_io(GIOChannel *iochannel, GIOCondition condition); void async_connected(GTcpSocket *socket, GInetAddr *ia, GTcpSocketConnectAsyncStatus status); static gboolean static_async_io(GIOChannel *iochannel, GIOCondition condition, gpointer data); static void static_async_connected(GTcpSocket *socket, GTcpSocketConnectAsyncStatus status, gpointer data); private: //! GNet socket GTcpSocket *socket; //! Glib IOChannel GIOChannel *iochannel; //! I/O Events we are monitoring gint watch_flags; //! Our watch ID guint watch; }; class GNetSocketDriver : public SocketDriver { //! Create a new socket ISocket *create_socket(); //! Create a new listen socket ISocketServer *create_server(); }; #endif // GNETSOCKETDRIVER_HH workrave-1.10.50/backend/src/IInputMonitor.hh0000644000175100001710000000325014221624106017700 0ustar00gdm00000000000000// IInputMonitor.hh --- Interface definition for the Input monitors. // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IINPUTMONITOR_HH #define IINPUTMONITOR_HH // Forward declarion of internal interfaces. class IInputMonitorListener; //! Interface that all input monitors must support. class IInputMonitor { public: virtual ~IInputMonitor() {} //! Initializes the activity monitor. virtual bool init() = 0; //! Stops the activity monitoring. virtual void terminate() = 0; //! Subscribe for activity monitor. virtual void subscribe_activity(IInputMonitorListener *listener) = 0; //! Subscribe for statistics monitor. virtual void subscribe_statistics(IInputMonitorListener *listener) = 0; //! Unsubscribe for activity monitor. virtual void unsubscribe_activity(IInputMonitorListener *listener) = 0; //! Unsubscribe for statistics monitor. virtual void unsubscribe_statistics(IInputMonitorListener *listener) = 0; }; #endif // IINPUTMONITOR_HH workrave-1.10.50/backend/src/DistributionListener.hh0000644000175100001710000000217114221624106021306 0ustar00gdm00000000000000// DistributionListener.hh // // Copyright (C) 2002, 2003, 2005 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef DISTRIBUTIONLISTENER_HH #define DISTRIBUTIONLISTENER_HH class DistributionListener { public: virtual ~DistributionListener() {} //! A remote client has signed on. virtual void signon_remote_client(string client_id) = 0; //! A remote client has signed off. virtual void signoff_remote_client(string client_id) = 0; }; #endif // DISTRIBUTIONLISTENER_HH workrave-1.10.50/backend/src/InputMonitor.hh0000644000175100001710000000332214221624106017567 0ustar00gdm00000000000000// InputMonitor.hh --- Base class of an activity monitor // // Copyright (C) 2007, 2008, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef INPUTMONITOR_HH #define INPUTMONITOR_HH #include #include "IInputMonitor.hh" #include "IInputMonitorListener.hh" // Forward declarion of internal interfaces. class IInputMonitorListener; //! Base for activity monitors. class InputMonitor : public IInputMonitor { public: InputMonitor(); virtual ~InputMonitor(); virtual void subscribe_activity(IInputMonitorListener *listener); virtual void subscribe_statistics(IInputMonitorListener *listener); virtual void unsubscribe_activity(IInputMonitorListener *listener); virtual void unsubscribe_statistics(IInputMonitorListener *listener); protected: void fire_action(); void fire_mouse(int x, int y, int wheel = 0); void fire_button(bool is_press); void fire_keyboard(bool repeat); private: //! IInputMonitorListener *activity_listener; //! IInputMonitorListener *statistics_listener; }; #include "InputMonitor.icc" #endif // INPUTMONITOR_HH workrave-1.10.50/backend/src/Variant.hh0000644000175100001710000000733214221624106016531 0ustar00gdm00000000000000// Variant.hh // // Copyright (C) 2001 - 2008, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef VARIANT_HH #define VARIANT_HH #include "debug.hh" #include using namespace std; enum VariantType { VARIANT_TYPE_NONE, VARIANT_TYPE_INT, VARIANT_TYPE_LONG, VARIANT_TYPE_BOOL, VARIANT_TYPE_DOUBLE, VARIANT_TYPE_STRING }; class Variant { public: Variant() {} Variant(std::string v) { type = VARIANT_TYPE_STRING; string_value = v; } Variant(int v) { type = VARIANT_TYPE_INT; int_value = v; } Variant(long v) { type = VARIANT_TYPE_LONG; int_value = v; } Variant(bool v) { type = VARIANT_TYPE_BOOL; bool_value = v; } Variant(double v) { type = VARIANT_TYPE_DOUBLE; double_value = v; } Variant(const Variant &rhs) { type = rhs.type; switch (rhs.type) { case VARIANT_TYPE_INT: int_value = rhs.int_value; break; case VARIANT_TYPE_LONG: long_value = rhs.long_value; break; case VARIANT_TYPE_BOOL: bool_value = rhs.bool_value; break; case VARIANT_TYPE_DOUBLE: double_value = rhs.double_value; break; case VARIANT_TYPE_STRING: string_value = rhs.string_value; break; case VARIANT_TYPE_NONE: default: break; } } Variant &operator=(const Variant &lid) { if (this != &lid) { type = lid.type; switch (lid.type) { case VARIANT_TYPE_INT: int_value = lid.int_value; break; case VARIANT_TYPE_LONG: long_value = lid.long_value; break; case VARIANT_TYPE_BOOL: bool_value = lid.bool_value; break; case VARIANT_TYPE_DOUBLE: double_value = lid.double_value; break; case VARIANT_TYPE_STRING: string_value = lid.string_value; break; case VARIANT_TYPE_NONE: default: break; } } return *this; } bool operator!=(const Variant &lid) { return !operator==(lid); } bool operator==(const Variant &lid) { if (type != lid.type) { return false; } switch (lid.type) { case VARIANT_TYPE_INT: return int_value == lid.int_value; break; case VARIANT_TYPE_LONG: return long_value == lid.long_value; break; case VARIANT_TYPE_BOOL: return bool_value == lid.bool_value; break; case VARIANT_TYPE_DOUBLE: return double_value == lid.double_value; break; case VARIANT_TYPE_STRING: return string_value == lid.string_value; break; case VARIANT_TYPE_NONE: default: return false; } } virtual ~Variant() { type = VARIANT_TYPE_NONE; } VariantType get_type() { return type; } // private: VariantType type; std::string string_value; union { int int_value; long long_value; bool bool_value; double double_value; }; }; #endif // VARIANT_HH workrave-1.10.50/backend/src/SocketDriver.icc0000644000175100001710000000214614221624106017666 0ustar00gdm00000000000000// SocketDriver.icc // // Copyright (C) 2002, 2003, 2007, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // //! Sets the callback handler for asynchronous socket events. inline void ISocket::set_listener(ISocketListener *l) { listener = l; } inline void ISocket::set_data(void *data) { user_data = data; } //! Sets the callback handler for asynchronous server events. inline void ISocketServer::set_listener(ISocketServerListener *l) { listener = l; } workrave-1.10.50/backend/src/Break.hh0000644000175100001710000000541414221624106016150 0ustar00gdm00000000000000// Break.hh // // Copyright (C) 2001 - 2011 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef BREAK_HH #define BREAK_HH #include "ICore.hh" #include "IConfiguratorListener.hh" #include "IBreak.hh" #include "Timer.hh" using namespace workrave; // Forward declarion of external interface. namespace workrave { class IApp; class IConfigurator; class IBreak; } // namespace workrave class BreakControl; class Break : public IBreak , public IConfiguratorListener { private: //! ID of the break. BreakId break_id; //! Name of the break (used in configuration) std::string break_name; //! Break config prefix std::string break_prefix; //! The Configurator IConfigurator *config; //! IApp *application; //! Interface pointer to the timer. Timer *timer; //! Interface pointer to the break controller. BreakControl *break_control; //! Break enabled? bool enabled; //! UsageMode usage_mode; public: Break(); virtual ~Break(); void init(BreakId id, IApp *app); static std::string expand(const std::string &str, BreakId id); static std::string get_name(BreakId id); std::string expand(const std::string &str); std::string get_name() const; BreakId get_id() const; Timer *get_timer() const; BreakControl *get_break_control(); // IBreak virtual bool is_enabled() const; virtual bool is_running() const; virtual time_t get_elapsed_time() const; virtual time_t get_elapsed_idle_time() const; virtual time_t get_auto_reset() const; virtual bool is_auto_reset_enabled() const; virtual time_t get_limit() const; virtual bool is_limit_enabled() const; virtual bool is_taking() const; virtual bool is_max_preludes_reached() const; void set_usage_mode(UsageMode mode); bool get_timer_activity_sensitive() const; void override(BreakId id); private: void config_changed_notify(const std::string &key); private: void init_defaults(); void init_timer(); void load_timer_config(); void init_break_control(); void load_break_control_config(); bool starts_with(const std::string &key, std::string prefix, std::string &timer_name); }; #endif // TIMERDATA_HH workrave-1.10.50/backend/src/GIOSocketDriver.cc0000644000175100001710000002141314221624106020052 0ustar00gdm00000000000000// GnetSocketDriver.cc // // Copyright (C) 2009, 2010, 2011 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_GIO_NET) && defined(HAVE_DISTRIBUTION) # include "debug.hh" # include "GIOSocketDriver.hh" using namespace std; //! Creates a new listen socket. GIOSocketServer::GIOSocketServer() : service(NULL) { } //! Destructs the listen socket. GIOSocketServer::~GIOSocketServer() { if (service != NULL) { g_socket_service_stop(service); g_object_unref(service); service = NULL; } } //! Listen at the specified port. void GIOSocketServer::listen(int port) { GError *error = NULL; service = g_socket_service_new(); if (service == NULL) { throw SocketException("Failed to create server"); } gboolean rc = g_socket_listener_add_inet_port(G_SOCKET_LISTENER(service), port, NULL, &error); if (!rc) { g_object_unref(service); service = NULL; throw SocketException(string("Failed to listen: ") + error->message); } g_signal_connect(service, "incoming", G_CALLBACK(static_socket_incoming), this); g_socket_service_start(service); } gboolean GIOSocketServer::static_socket_incoming(GSocketService *service, GSocketConnection *connection, GObject *src_object, gpointer user_data) { TRACE_ENTER("GIOSocketServer::static_socket_incoming"); (void)service; (void)src_object; try { GIOSocketServer *ss = (GIOSocketServer *)user_data; GIOSocket *socket = new GIOSocket(connection); ss->listener->socket_accepted(ss, socket); } catch (...) { // Make sure that no exception reach the glib mainloop. } TRACE_EXIT(); return FALSE; } void GIOSocket::static_connected_callback(GObject *source_object, GAsyncResult *result, gpointer user_data) { TRACE_ENTER("GIOSocketServer::static_connected_callback"); GIOSocket *socket = (GIOSocket *)user_data; GError *error = NULL; GSocketConnection *socket_connection = g_socket_client_connect_finish(G_SOCKET_CLIENT(source_object), result, &error); if (error != NULL) { TRACE_MSG("failed to connect"); g_error_free(error); } else if (socket_connection != NULL) { socket->connection = socket_connection; socket->socket = g_socket_connection_get_socket(socket->connection); g_socket_set_blocking(socket->socket, FALSE); g_socket_set_keepalive(socket->socket, TRUE); socket->source = g_socket_create_source(socket->socket, (GIOCondition)(G_IO_IN | G_IO_ERR | G_IO_HUP), NULL); g_source_set_callback(socket->source, reinterpret_cast(static_data_callback), (void *)socket, NULL); g_source_attach(socket->source, NULL); // g_source_unref(source); if (socket->listener != NULL) { socket->listener->socket_connected(socket, socket->user_data); } } TRACE_EXIT(); } gboolean GIOSocket::static_data_callback(GSocket *socket, GIOCondition condition, gpointer user_data) { TRACE_ENTER_MSG("GIOSocket::static_data_callback", (int)condition); GIOSocket *giosocket = (GIOSocket *)user_data; gboolean ret = TRUE; (void)socket; try { // check for socket error if (condition & (G_IO_ERR | G_IO_HUP | G_IO_NVAL)) { if (giosocket->listener != NULL) { TRACE_MSG("Closing socket"); // giosocket->close(); giosocket->listener->socket_closed(giosocket, giosocket->user_data); } ret = FALSE; } // process input if (ret && (condition & G_IO_IN)) { if (giosocket->listener != NULL) { giosocket->listener->socket_io(giosocket, giosocket->user_data); } } } catch (...) { // Make sure that no exception reach the glib mainloop. TRACE_MSG("Exception. Closing socket"); giosocket->close(); ret = FALSE; } TRACE_EXIT(); return ret; } //! Creates a new connection. GIOSocket::GIOSocket(GSocketConnection *connection) : connection(connection) , resolver(NULL) { TRACE_ENTER("GIOSocket::GIOSocket(con)"); socket = g_socket_connection_get_socket(connection); g_object_ref(connection); g_socket_set_blocking(socket, FALSE); g_socket_set_keepalive(socket, TRUE); source = g_socket_create_source(socket, (GIOCondition)G_IO_IN, NULL); g_source_set_callback(source, reinterpret_cast(static_data_callback), (void *)this, NULL); g_source_attach(source, NULL); g_source_unref(source); TRACE_EXIT(); } //! Creates a new connection. GIOSocket::GIOSocket() : connection(NULL) , socket(NULL) , resolver(NULL) , source(NULL) , port(0) { TRACE_ENTER("GIOSocket::GIOSocket()"); TRACE_EXIT(); } //! Destructs the connection. GIOSocket::~GIOSocket() { TRACE_ENTER("GIOSocket::~GIOSocket"); if (connection != NULL) { g_object_unref(connection); } if (resolver != NULL) { g_object_unref(resolver); } if (source != NULL) { g_source_destroy(source); } TRACE_EXIT(); } //! Connects to the specified host. void GIOSocket::connect(const string &host, int port) { TRACE_ENTER_MSG("GIOSocket::connect", host << " " << port); this->port = port; GInetAddress *inet_addr = g_inet_address_new_from_string(host.c_str()); if (inet_addr != NULL) { connect(inet_addr, port); g_object_unref(inet_addr); } else { resolver = g_resolver_get_default(); g_resolver_lookup_by_name_async(resolver, host.c_str(), NULL, static_connect_after_resolve, this); } TRACE_EXIT(); } void GIOSocket::connect(GInetAddress *inet_addr, int port) { TRACE_ENTER_MSG("GIOSocket::connect", port); GSocketAddress *socket_address = g_inet_socket_address_new(inet_addr, port); GSocketClient *socket_client = g_socket_client_new(); g_socket_client_connect_async(socket_client, G_SOCKET_CONNECTABLE(socket_address), NULL, static_connected_callback, this); TRACE_EXIT(); } void GIOSocket::static_connect_after_resolve(GObject *source_object, GAsyncResult *res, gpointer user_data) { TRACE_ENTER("GIOSocket::static_connect_after_resolve"); GError *error = NULL; GList *addresses = g_resolver_lookup_by_name_finish((GResolver *)source_object, res, &error); if (error != NULL) { TRACE_MSG("failed"); g_error_free(error); } if (addresses != NULL) { // Take first result if (addresses->data != NULL) { GInetAddress *a = (GInetAddress *)addresses->data; GIOSocket *socket = (GIOSocket *)user_data; socket->connect(a, socket->port); } g_resolver_free_addresses(addresses); } TRACE_EXIT(); } //! Read from the connection. void GIOSocket::read(void *buf, int count, int &bytes_read) { TRACE_ENTER_MSG("GIOSocket::read", count); GError *error = NULL; gsize num_read = 0; if (socket != NULL) { num_read = g_socket_receive(socket, (char *)buf, count, NULL, &error); if (error != NULL) { throw SocketException(string("socket read error: ") + error->message); } } bytes_read = (int)num_read; TRACE_RETURN(bytes_read); } //! Write to the connection. void GIOSocket::write(void *buf, int count, int &bytes_written) { GError *error = NULL; gsize num_written = 0; if (socket != NULL) { num_written = g_socket_send(socket, (char *)buf, count, NULL, &error); if (error != NULL) { throw SocketException(string("socket write error: ") + error->message); } } bytes_written = (int)num_written; } //! Close the connection. void GIOSocket::close() { TRACE_ENTER("GIOSocket::close"); GError *error = NULL; if (socket != NULL) { g_socket_shutdown(socket, TRUE, TRUE, &error); g_socket_close(socket, &error); socket = NULL; } TRACE_EXIT(); } //! Create a new socket ISocket * GIOSocketDriver::create_socket() { return new GIOSocket(); } //! Create a new listen socket ISocketServer * GIOSocketDriver::create_server() { return new GIOSocketServer(); } #endif workrave-1.10.50/backend/src/IConfigBackend.hh0000644000175100001710000000317114221624106017710 0ustar00gdm00000000000000// IConfigBackend.hh // // Copyright (C) 2001 - 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ICONFIGBACKEND_HH #define ICONFIGBACKEND_HH #include namespace workrave { class IConfiguratorListener; } using namespace workrave; #include "Variant.hh" class IConfigBackend { public: virtual ~IConfigBackend() {} virtual bool load(std::string filename) = 0; virtual bool save(std::string filename) = 0; virtual bool save() = 0; virtual bool remove_key(const std::string &key) = 0; virtual bool get_value(const std::string &key, VariantType type, Variant &value) const = 0; virtual bool set_value(const std::string &key, Variant &value) = 0; }; class IConfigBackendMonitoring { public: virtual ~IConfigBackendMonitoring() {} virtual void set_listener(IConfiguratorListener *listener) = 0; virtual bool add_listener(const std::string &key_prefix) = 0; virtual bool remove_listener(const std::string &key_prefix) = 0; }; #endif // ICONFIGBACKEND_HH workrave-1.10.50/backend/src/ConfiguratorFactory.hh0000644000175100001710000000221414221624106021111 0ustar00gdm00000000000000// configuratorfactory.hh // // Copyright (C) 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CONFIGURATORFACTORY_HH #define CONFIGURATORFACTORY_HH // Forward declarion of internal interfaces. class Configurator; //! Factory that creates configurators class ConfiguratorFactory { public: enum Format { FormatIni, FormatXml, FormatNative }; //! Creates a link server of the specified type. static Configurator *create(Format fmt); }; #endif // CONFIGURATORFACTORY_HH workrave-1.10.50/backend/src/ActivityMonitor.hh0000644000175100001710000000552514221624106020273 0ustar00gdm00000000000000// ActivityMonitor.hh --- ActivityMonitor functionality // // Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2010, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef ACTIVITYMONITOR_HH #define ACTIVITYMONITOR_HH #include "IActivityMonitor.hh" #include "IInputMonitorListener.hh" #include "Mutex.hh" #include "Diagnostics.hh" #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif class ActivityListener; class IInputMonitor; class ActivityMonitor : public IInputMonitorListener , public IActivityMonitor { public: ActivityMonitor(); virtual ~ActivityMonitor(); void terminate(); void suspend(); void resume(); void force_idle(); void shift_time(int delta); ActivityState get_current_state(); void set_parameters(int noise, int activity, int idle, int sensitivity); void get_parameters(int &noise, int &activity, int &idle, int &sensitivity); void set_listener(ActivityMonitorListener *l); void action_notify(); void mouse_notify(int x, int y, int wheel = 0); void button_notify(bool is_press); void keyboard_notify(bool repeat); private: void call_listener(); private: //! The actual monitoring driver. IInputMonitor *input_monitor; //! the current state. TracedField activity_state{"monitor.activity_state", ACTIVITY_IDLE, true}; //! Internal locking Mutex lock; //! Previous X coordinate int prev_x; //! Previous Y coordinate int prev_y; //! Is the button currently pressed? bool button_is_pressed; //! Last time activity was detected gint64 last_action_time; //! First time the \c ACTIVITY_IDLE state was left. gint64 first_action_time; //! The noise threshold TracedField noise_threshold{"monitor.noise_threshold", 0}; //! The activity threshold. TracedField activity_threshold{"monitor.activity_threshold", 0}; //! The idle threshold. TracedField idle_threshold{"monitor.idle_threshold", 0}; //! Mouse sensitivity TracedField sensitivity{"monitor.sensitivity", 3}; //! Activity listener. ActivityMonitorListener *listener; }; #endif // ACTIVITYMONITOR_HH workrave-1.10.50/backend/src/ConfigBackendAdapter.hh0000644000175100001710000000543614221624106021106 0ustar00gdm00000000000000// IConfigBackend.hh // // Copyright (C) 2001 - 2007, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CONFIGBACKENDADAPTER_HH #define CONFIGBACKENDADAPTER_HH #include #include "IConfigBackend.hh" class ConfigBackendAdapter : public virtual IConfigBackend { public: virtual bool get_config_value(const std::string &key, std::string &out) const = 0; virtual bool get_config_value(const std::string &key, bool &out) const = 0; virtual bool get_config_value(const std::string &key, int &out) const = 0; virtual bool get_config_value(const std::string &key, long &out) const = 0; virtual bool get_config_value(const std::string &key, double &out) const = 0; virtual bool set_config_value(const std::string &key, std::string v) = 0; virtual bool set_config_value(const std::string &key, bool v) = 0; virtual bool set_config_value(const std::string &key, int v) = 0; virtual bool set_config_value(const std::string &key, long v) = 0; virtual bool set_config_value(const std::string &key, double v) = 0; virtual bool get_value(const std::string &key, VariantType type, Variant &value) const { value.type = type; switch (type) { case VARIANT_TYPE_INT: return get_config_value(key, value.int_value); case VARIANT_TYPE_BOOL: return get_config_value(key, value.bool_value); case VARIANT_TYPE_DOUBLE: return get_config_value(key, value.double_value); case VARIANT_TYPE_NONE: case VARIANT_TYPE_STRING: return get_config_value(key, value.string_value); default: return false; } } virtual bool set_value(const std::string &key, Variant &value) { switch (value.type) { case VARIANT_TYPE_NONE: return false; case VARIANT_TYPE_INT: return set_config_value(key, value.int_value); case VARIANT_TYPE_BOOL: return set_config_value(key, value.bool_value); case VARIANT_TYPE_DOUBLE: return set_config_value(key, value.double_value); case VARIANT_TYPE_STRING: return set_config_value(key, value.string_value); default: return false; } } }; #endif workrave-1.10.50/backend/src/CoreFactory.cc0000644000175100001710000000243114221624106017326 0ustar00gdm00000000000000// CoreFactory.cc // // Copyright (C) 2001, 2002, 2003, 2006, 2007 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "CoreFactory.hh" #include "Configurator.hh" #include "Core.hh" ICore * CoreFactory::get_core() { return Core::get_instance(); } IConfigurator * CoreFactory::get_configurator() { Core *core = Core::get_instance(); assert(core != NULL); return core->get_configurator(); } #ifdef HAVE_DBUS workrave::dbus::IDBus::Ptr CoreFactory::get_dbus() { Core *core = Core::get_instance(); assert(core != NULL); return core->get_dbus(); } #endif workrave-1.10.50/backend/src/Makefile.am0000644000175100001710000000653714221624106016646 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010, 2011 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in $(gsettings_SCHEMAS:.xml=.valid) SUBDIRS = unix win32 macos noinst_LTLIBRARIES = libworkrave-backend.la sources = ActivityMonitor.cc \ Break.cc \ BreakControl.cc \ Configurator.cc \ ConfiguratorFactory.cc \ Core.cc \ CoreConfig.cc \ CoreFactory.cc \ GlibIniConfigurator.cc \ GSettingsConfigurator.cc \ IdleLogManager.cc \ InputMonitor.cc \ InputMonitorFactory.cc \ Statistics.cc \ TimePredFactory.cc \ Timer.cc \ DayTimePred.cc \ Test.cc \ TimePredFactory.cc DEFS = @DEFS@ -I$(top_srcdir)/intl -I. -I $(top_srcdir)/backend/include if HAVE_GDOME sourcesgdome = XMLConfigurator.cc endif if HAVE_DISTRIBUTION sourcesdistribution = DistributionManager.cc \ DistributionSocketLink.cc \ PacketBuffer.cc \ SocketDriver.cc \ GIOSocketDriver.cc if HAVE_GNET sourcesgnet = GNetSocketDriver.cc endif endif if PLATFORM_OS_WINDOWS platform_ldadd = win32/libworkrave-backend-win32.la platform_cflags = -I$(top_srcdir)/backend/src/win32 endif if PLATFORM_OS_MACOS platform_ldadd = macos/libworkrave-backend-macos.la platform_cflags = -I$(top_srcdir)/backend/src/macos endif if PLATFORM_OS_UNIX platform_ldadd = unix/libworkrave-backend-unix.la platform_cflags = -I$(top_srcdir)/backend/src/unix endif # DBus service file if HAVE_DBUS dbussources = DBusWorkrave.cc \ DBusWorkrave.hh BUILT_SOURCES = $(dbussources) DBusWorkrave.cc: workrave-service.xml \ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ $(top_srcdir)/libs/dbus/data/gio-cc.jinja $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-service.xml $(top_srcdir)/libs/dbus/data/gio-cc.jinja DBusWorkrave.cc DBusWorkrave.hh: workrave-service.xml \ $(top_srcdir)/libs/dbus/bin/dbusgen.py \ $(top_srcdir)/libs/dbus/data/gio-hh.jinja $(PYTHON) $(top_srcdir)/libs/dbus/bin/dbusgen.py $(srcdir)/workrave-service.xml $(top_srcdir)/libs/dbus/data/gio-hh.jinja DBusWorkrave.hh #DBusWorkrave.hh: DBusWorkrave.cc ; test -f $@ #BreakControl.cc: DBusWorkrave.hh ; test -f $@ #workrave-client-bindings.h: DBusWorkrave.cc ; test -f $@ #workrave-server-bindings.h: DBusWorkrave.cc ; test -f $@ else # HAVE_DBUS dbussources = endif # HAVE_DBUS if HAVE_GSETTINGS gsettings_ENUM_NAMESPACE = org.workrave gsettings_ENUM_FILES = $(srcdir)/../include/enum.h gsettings_SCHEMAS = org.workrave.gschema.xml @INTLTOOL_XML_NOMERGE_RULE@ @GSETTINGS_RULES@ endif libworkrave_backend_la_SOURCES = \ ${sources} ${sourcesgdome} ${sourcesgnet} ${sourcesdistribution} \ ${dbussources} libworkrave_backend_la_CFLAGS = \ -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 @X_CFLAGS@ \ ${platform_cflags} @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ @GDOME_CFLAGS@ @GNET_CFLAGS@ \ @GCONF_CFLAGS@ libworkrave_backend_la_CXXFLAGS = ${libworkrave_backend_la_CFLAGS} libworkrave_backend_la_LIBADD=${platform_ldadd} DISTCLEANFILES = org.workrave.gschema.xml EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc) $(wildcard $(srcdir)/*.hh) \ $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) workrave-service.xml \ org.workrave.Workrave.service.in $(gsettings_SCHEMAS:.xml=.xml.in.in) workrave-1.10.50/backend/src/Statistics.cc0000644000175100001710000005674014221624106017254 0ustar00gdm00000000000000// Statistics.cc // // Copyright (C) 2002 - 2008, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include #include #include #include "debug.hh" #include "Statistics.hh" #include "Core.hh" #include "Util.hh" #include "Timer.hh" #include "TimePred.hh" #include "InputMonitorFactory.hh" #include "IInputMonitor.hh" #include "timeutil.h" #ifdef HAVE_DISTRIBUTION # include "DistributionManager.hh" #endif const char *WORKRAVESTATS = "WorkRaveStats"; const int STATSVERSION = 4; #define MAX_JUMP (10000) //! Constructor Statistics::Statistics() : core(NULL) , current_day(NULL) , been_active(false) , prev_x(-1) , prev_y(-1) , click_x(-1) , click_y(-1) { last_mouse_time = 0; } //! Destructor Statistics::~Statistics() { update(); for (vector::iterator i = history.begin(); i != history.end(); i++) { delete *i; } delete current_day; if (input_monitor != NULL) { input_monitor->unsubscribe_statistics(this); } } //! Initializes the Statistics. void Statistics::init(Core *control) { core = control; input_monitor = InputMonitorFactory::get_monitor(IInputMonitorFactory::CAPABILITY_STATISTICS); if (input_monitor != NULL) { input_monitor->subscribe_statistics(this); } #ifdef HAVE_DISTRIBUTION init_distribution_manager(); #endif current_day = NULL; bool ok = load_current_day(); if (!ok) { start_new_day(); } load_history(); } //! Periodic heartbeat. void Statistics::update() { TRACE_ENTER("Statistics::update"); IActivityMonitor *monitor = core->get_activity_monitor(); ActivityState state = monitor->get_current_state(); if (state == ACTIVITY_ACTIVE && !been_active) { const time_t now = core->get_time(); struct tm *tmnow = localtime(&now); current_day->start = *tmnow; current_day->stop = *tmnow; been_active = true; } update_current_day(state == ACTIVITY_ACTIVE); save_day(current_day); TRACE_EXIT(); } bool Statistics::delete_all_history() { update(); string histfile = Util::get_home_directory() + "historystats"; if (Util::file_exists(histfile.c_str()) && std::remove(histfile.c_str())) { return false; } else { for (vector::iterator i = history.begin(); (i != history.end()); delete *i++) ; history.clear(); } string todayfile = Util::get_home_directory() + "todaystats"; if (Util::file_exists(todayfile.c_str()) && std::remove(todayfile.c_str())) { return false; } else { if (current_day) { delete current_day; current_day = NULL; } start_new_day(); } return true; } //! Starts a new day and archive current any (if exists) void Statistics::start_new_day() { TRACE_ENTER("Statistics::start_new_day"); const time_t now = core->get_time(); struct tm *tmnow = localtime(&now); if (current_day == NULL || tmnow->tm_mday != current_day->start.tm_mday || tmnow->tm_mon != current_day->start.tm_mon || tmnow->tm_year != current_day->start.tm_year) { TRACE_MSG("New day"); if (current_day != NULL) { TRACE_MSG("Save old day"); day_to_history(current_day); day_to_remote_history(current_day); } current_day = new DailyStatsImpl(); been_active = false; current_day->start = *tmnow; current_day->stop = *tmnow; } update_current_day(false); save_day(current_day); TRACE_EXIT(); } void Statistics::day_to_history(DailyStatsImpl *stats) { add_history(stats); stringstream ss; ss << Util::get_home_directory(); ss << "historystats" << ends; bool exists = Util::file_exists(ss.str()); ofstream stats_file(ss.str().c_str(), ios::app); if (!exists) { stats_file << WORKRAVESTATS << " " << STATSVERSION << endl; } save_day(stats, stats_file); stats_file.close(); } //! Adds the current day to this history. void Statistics::day_to_remote_history(DailyStatsImpl *stats) { #ifdef HAVE_DISTRIBUTION DistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { PacketBuffer state_packet; state_packet.create(); state_packet.pack_byte(STATS_MARKER_HISTORY); pack_stats(state_packet, stats); state_packet.pack_byte(STATS_MARKER_END); dist_manager->broadcast_client_message(DCM_STATS, state_packet); } #else (void)stats; #endif } //! Saves the current day to the specified stream. void Statistics::save_day(DailyStatsImpl *stats, ofstream &stats_file) { stats_file << "D " << stats->start.tm_mday << " " << stats->start.tm_mon << " " << stats->start.tm_year << " " << stats->start.tm_hour << " " << stats->start.tm_min << " " << stats->stop.tm_mday << " " << stats->stop.tm_mon << " " << stats->stop.tm_year << " " << stats->stop.tm_hour << " " << stats->stop.tm_min << endl; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakStats &bs = stats->break_stats[i]; stats_file << "B " << i << " " << STATS_BREAKVALUE_SIZEOF << " "; for (int j = 0; j < STATS_BREAKVALUE_SIZEOF; j++) { stats_file << bs[j] << " "; } stats_file << endl; } stats_file << "m " << STATS_VALUE_SIZEOF << " "; for (int j = 0; j < STATS_VALUE_SIZEOF; j++) { stats_file << stats->misc_stats[j] << " "; } stats_file << endl; stats_file.close(); } //! Saves the statistics of the specified day. void Statistics::save_day(DailyStatsImpl *stats) { stringstream ss; ss << Util::get_home_directory(); ss << "todaystats" << ends; ofstream stats_file(ss.str().c_str()); stats_file << WORKRAVESTATS << " " << STATSVERSION << endl; save_day(stats, stats_file); } //! Add the stats the the history list. void Statistics::add_history(DailyStatsImpl *stats) { if (history.size() == 0) { history.push_back(stats); } else { bool found = false; HistoryRIter i = history.rbegin(); while (i != history.rend()) { DailyStatsImpl *ref = *i; if (stats->start.tm_year == ref->start.tm_year && stats->start.tm_mon == ref->start.tm_mon && stats->start.tm_mday == ref->start.tm_mday) { delete *i; *i = stats; found = true; break; } else if (stats->start.tm_year > ref->start.tm_year || (stats->start.tm_year == ref->start.tm_year && (stats->start.tm_mon > ref->start.tm_mon || (stats->start.tm_mon == ref->start.tm_mon && stats->start.tm_mday > ref->start.tm_mday)))) { if (i == history.rbegin()) { history.push_back(stats); } else { history.insert(i.base(), stats); } found = true; break; } i++; } if (!found) { history.insert(history.begin(), stats); } } } //! Load the statistics of the current day. bool Statistics::load_current_day() { TRACE_ENTER("Statistics::load_current_day"); stringstream ss; ss << Util::get_home_directory(); ss << "todaystats" << ends; ifstream stats_file(ss.str().c_str()); load(stats_file, false); been_active = true; TRACE_EXIT(); return current_day != NULL; } //! Loads the history. void Statistics::load_history() { TRACE_ENTER("Statistics::load_history"); stringstream ss; ss << Util::get_home_directory(); ss << "historystats" << ends; ifstream stats_file(ss.str().c_str()); load(stats_file, true); TRACE_EXIT(); } //! Loads the statistics. void Statistics::load(ifstream &infile, bool history) { TRACE_ENTER("Statistics::load"); DailyStatsImpl *stats = NULL; bool ok = infile.good(); if (ok) { string tag; infile >> tag; ok = (tag == WORKRAVESTATS); } if (ok) { int version; infile >> version; ok = (version == STATSVERSION) || (version == 3); } while (ok && !infile.eof()) { char line[BUFSIZ] = ""; char cmd; infile.getline(line, BUFSIZ); if (strlen(line) > 1) { cmd = line[0]; stringstream ss(line + 1); if (cmd == 'D') { if (history && stats != NULL) { add_history(stats); stats = NULL; } else if (!history && stats != NULL) { /* Corrupt today stats */ return; } stats = new DailyStatsImpl(); ss >> stats->start.tm_mday >> stats->start.tm_mon >> stats->start.tm_year >> stats->start.tm_hour >> stats->start.tm_min >> stats->stop.tm_mday >> stats->stop.tm_mon >> stats->stop.tm_year >> stats->stop.tm_hour >> stats->stop.tm_min; if (!history) { current_day = stats; } } else if (stats != NULL) { if (cmd == 'B') { int bt, size; ss >> bt; ss >> size; BreakStats &bs = stats->break_stats[bt]; if (size > STATS_BREAKVALUE_SIZEOF) { size = STATS_BREAKVALUE_SIZEOF; } for (int j = 0; j < size; j++) { int value; ss >> value; bs[j] = value; } } else if (cmd == 'M' || cmd == 'm') { int size; ss >> size; if (size > STATS_VALUE_SIZEOF) { size = STATS_VALUE_SIZEOF; } for (int j = 0; j < size; j++) { int value; ss >> value; if (cmd == 'm') { // Ignore older 'M' stats. they are broken.... stats->misc_stats[j] = value; } else { stats->misc_stats[j] = 0; } } } else if (cmd == 'G') { int total_active; ss >> total_active; stats->misc_stats[STATS_VALUE_TOTAL_ACTIVE_TIME] = total_active; } } } } if (history && stats != NULL) { add_history(stats); } TRACE_EXIT(); } //! Increment the specified statistics counter of the current day. void Statistics::increment_break_counter(BreakId bt, StatsBreakValueType st) { if (current_day == NULL) { start_new_day(); } BreakStats &bs = current_day->break_stats[bt]; bs[st]++; } void Statistics::set_break_counter(BreakId bt, StatsBreakValueType st, int value) { if (current_day == NULL) { start_new_day(); } BreakStats &bs = current_day->break_stats[bt]; bs[st] = value; } void Statistics::add_break_counter(BreakId bt, StatsBreakValueType st, int value) { if (current_day == NULL) { start_new_day(); } BreakStats &bs = current_day->break_stats[bt]; bs[st] += value; } void Statistics::set_counter(StatsValueType t, int value) { current_day->misc_stats[t] = value; } int64_t Statistics::get_counter(StatsValueType t) { return current_day->misc_stats[t]; } //! Dump void Statistics::dump() { TRACE_ENTER("Statistics::dump"); update_current_day(false); stringstream ss; for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakStats &bs = current_day->break_stats[i]; ss << "Break " << i << " "; for (int j = 0; j < STATS_BREAKVALUE_SIZEOF; j++) { int value = bs[j]; ss << value << " "; } } ss << "stats "; for (int j = 0; j < STATS_VALUE_SIZEOF; j++) { int64_t value = current_day->misc_stats[j]; ss << value << " "; } TRACE_EXIT(); } Statistics::DailyStatsImpl * Statistics::get_current_day() const { return current_day; } Statistics::DailyStatsImpl * Statistics::get_day(int day) const { DailyStatsImpl *ret = NULL; if (day == 0) { ret = current_day; } else { if (day > 0) { day = history.size() - day; } else { day = -day; day--; } if (day < int(history.size()) && day >= 0) { ret = history[day]; } } return ret; } void Statistics::get_day_index_by_date(int y, int m, int d, int &idx, int &next, int &prev) const { TRACE_ENTER_MSG("Statistics::get_day_by_date", y << "/" << m << "/" << d); idx = next = prev = -1; for (int i = 0; i <= int(history.size()); i++) { int j = history.size() - i; DailyStatsImpl *stats = j == 0 ? current_day : history[i]; if (idx < 0 && stats->starts_at_date(y, m, d)) { idx = j; } else if (stats->starts_before_date(y, m, d)) { prev = j; } else if (next < 0) { next = j; } } if (prev < 0 && current_day->starts_before_date(y, m, d)) { prev = 0; } if (next < 0 && !current_day->starts_at_date(y, m, d) && !current_day->starts_before_date(y, m, d)) { next = 0; } TRACE_EXIT(); } int Statistics::get_history_size() const { return history.size(); } void Statistics::update_current_day(bool active) { if (core != NULL) { // Collect total active time from dialy limit timer. Timer *t = core->get_break(BREAK_ID_DAILY_LIMIT)->get_timer(); assert(t != NULL); current_day->misc_stats[STATS_VALUE_TOTAL_ACTIVE_TIME] = (int)t->get_elapsed_time(); if (active) { const time_t now = core->get_time(); struct tm *tmnow = localtime(&now); current_day->stop = *tmnow; } for (int i = 0; i < BREAK_ID_SIZEOF; i++) { Timer *t = core->get_break(BreakId(i))->get_timer(); assert(t != NULL); time_t overdue = t->get_total_overdue_time(); set_break_counter(((BreakId)i), Statistics::STATS_BREAKVALUE_TOTAL_OVERDUE, (int)overdue); } } } #ifdef HAVE_DISTRIBUTION // Create the monitor based on the specified configuration. void Statistics::init_distribution_manager() { DistributionManager *dist_manager = core->get_distribution_manager(); if (dist_manager != NULL) { dist_manager->register_client_message(DCM_STATS, DCMT_MASTER, this); } } bool Statistics::request_client_message(DistributionClientMessageID id, PacketBuffer &buffer) { TRACE_ENTER("Statistics::request_client_message"); (void)id; update_current_day(false); dump(); buffer.pack_byte(STATS_MARKER_TODAY); pack_stats(buffer, current_day); buffer.pack_byte(STATS_MARKER_END); TRACE_EXIT(); return true; } bool Statistics::pack_stats(PacketBuffer &buf, const DailyStatsImpl *stats) { TRACE_ENTER("Statistics::pack_stats"); int pos = 0; buf.pack_byte(STATS_MARKER_STARTTIME); buf.reserve_size(pos); buf.pack_byte(stats->start.tm_mday); buf.pack_byte(stats->start.tm_mon); buf.pack_ushort(stats->start.tm_year); buf.pack_byte(stats->start.tm_hour); buf.pack_byte(stats->start.tm_min); buf.update_size(pos); buf.pack_byte(STATS_MARKER_STOPTIME); buf.reserve_size(pos); buf.pack_byte(stats->stop.tm_mday); buf.pack_byte(stats->stop.tm_mon); buf.pack_ushort(stats->stop.tm_year); buf.pack_byte(stats->stop.tm_hour); buf.pack_byte(stats->stop.tm_min); buf.update_size(pos); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { BreakStats &bs = current_day->break_stats[i]; buf.pack_byte(STATS_MARKER_BREAK_STATS); buf.reserve_size(pos); buf.pack_byte(i); buf.pack_ushort(STATS_BREAKVALUE_SIZEOF); for (int j = 0; j < STATS_BREAKVALUE_SIZEOF; j++) { buf.pack_ulong(bs[j]); } buf.update_size(pos); } buf.pack_byte(STATS_MARKER_MISC_STATS); buf.reserve_size(pos); buf.pack_ushort(STATS_VALUE_SIZEOF); for (int j = 0; j < STATS_VALUE_SIZEOF; j++) { buf.pack_ulong(current_day->misc_stats[j]); } buf.update_size(pos); TRACE_EXIT(); return true; } bool Statistics::client_message(DistributionClientMessageID id, bool master, const char *client_id, PacketBuffer &buffer) { TRACE_ENTER("Statistics::client_message"); (void)id; (void)master; (void)client_id; return false; DailyStatsImpl *stats = NULL; int pos = 0; bool stats_to_history = false; while (buffer.bytes_available() > 0) { StatsMarker marker = (StatsMarker)buffer.unpack_byte(); TRACE_MSG("Marker = " << marker); switch (marker) { case STATS_MARKER_TODAY: stats = current_day; break; case STATS_MARKER_HISTORY: stats = new DailyStatsImpl(); stats_to_history = true; break; case STATS_MARKER_STARTTIME: { int size = buffer.unpack_ushort(); (void)size; stats->start.tm_mday = buffer.unpack_byte(); stats->start.tm_mon = buffer.unpack_byte(); stats->start.tm_year = buffer.unpack_ushort(); stats->start.tm_hour = buffer.unpack_byte(); stats->start.tm_min = buffer.unpack_byte(); } break; case STATS_MARKER_STOPTIME: { int size = buffer.unpack_ushort(); (void)size; stats->stop.tm_mday = buffer.unpack_byte(); stats->stop.tm_mon = buffer.unpack_byte(); stats->stop.tm_year = buffer.unpack_ushort(); stats->stop.tm_hour = buffer.unpack_byte(); stats->stop.tm_min = buffer.unpack_byte(); } break; case STATS_MARKER_BREAK_STATS: { int size = buffer.read_size(pos); int bt = buffer.unpack_byte(); (void)size; BreakStats &bs = stats->break_stats[bt]; int count = buffer.unpack_ushort(); if (count > STATS_BREAKVALUE_SIZEOF) { count = STATS_BREAKVALUE_SIZEOF; } for (int j = 0; j < count; j++) { bs[j] = buffer.unpack_ulong(); } buffer.skip_size(pos); } break; case STATS_MARKER_MISC_STATS: { int size = buffer.read_size(pos); int count = buffer.unpack_ushort(); (void)size; if (count > STATS_VALUE_SIZEOF) { count = STATS_VALUE_SIZEOF; } for (int j = 0; j < count; j++) { stats->misc_stats[j] = buffer.unpack_ulong(); } buffer.skip_size(pos); } break; case STATS_MARKER_END: if (stats_to_history) { TRACE_MSG("Save to history"); day_to_history(stats); stats_to_history = false; } break; default: { TRACE_MSG("Unknown marker"); int size = buffer.read_size(pos); (void)size; buffer.skip_size(pos); } } } if (stats_to_history) { // this should not happened. but just to avoid a potential memory leak... TRACE_MSG("Save to history"); day_to_history(stats); stats_to_history = false; } dump(); TRACE_EXIT(); return true; } #endif bool Statistics::DailyStatsImpl::starts_at_date(int y, int m, int d) { return (start.tm_year + 1900 == y && start.tm_mon + 1 == m && start.tm_mday == d); } bool Statistics::DailyStatsImpl::starts_before_date(int y, int m, int d) { return (start.tm_year + 1900 < y || (start.tm_year + 1900 == y && (start.tm_mon + 1 < m || (start.tm_mon + 1 == m && start.tm_mday < d)))); } //! Activity is reported by the input monitor. void Statistics::action_notify() { } //! Mouse activity is reported by the input monitor. void Statistics::mouse_notify(int x, int y, int wheel_delta) { static const int sensitivity = 3; lock.lock(); if (current_day != NULL && x >= 0 && y >= 0) { int delta_x = sensitivity; int delta_y = sensitivity; if (prev_x != -1 && prev_y != -1) { delta_x = abs(x - prev_x); delta_y = abs(y - prev_y); } prev_x = x; prev_y = y; // Sanity checks, ignore unreasonable large jumps... if (delta_x < MAX_JUMP && delta_y < MAX_JUMP && (delta_x >= sensitivity || delta_y >= sensitivity || wheel_delta != 0)) { int64_t movement = current_day->misc_stats[STATS_VALUE_TOTAL_MOUSE_MOVEMENT]; int distance = int(sqrt((double)(delta_x * delta_x + delta_y * delta_y))); movement += distance; if (movement > 0) { current_day->misc_stats[STATS_VALUE_TOTAL_MOUSE_MOVEMENT] = movement; } gint64 now = g_get_real_time(); gint64 tv = now - last_mouse_time; int tv_sec = tv / G_USEC_PER_SEC; if (last_mouse_time != 0 && tv_sec >= 0 && tv_sec < 1) { current_day->total_mouse_time += tv; current_day->misc_stats[STATS_VALUE_TOTAL_MOVEMENT_TIME] = current_day->total_mouse_time / G_USEC_PER_SEC; } last_mouse_time = now; } } lock.unlock(); } //! Mouse button activity is reported by the input monitor. void Statistics::button_notify(bool is_press) { lock.lock(); if (current_day != NULL) { if (click_x != -1 && click_y != -1 && prev_x != -1 && prev_y != -1) { int delta_x = click_x - prev_x; int delta_y = click_y - prev_y; int64_t movement = current_day->misc_stats[STATS_VALUE_TOTAL_CLICK_MOVEMENT]; int64_t distance = int(sqrt((double)(delta_x * delta_x + delta_y * delta_y))); movement += distance; if (movement > 0) { current_day->misc_stats[STATS_VALUE_TOTAL_CLICK_MOVEMENT] = movement; } } click_x = prev_x; click_y = prev_y; if (is_press) { current_day->misc_stats[STATS_VALUE_TOTAL_CLICKS]++; } } lock.unlock(); } //! Keyboard activity is reported by the input monitor. void Statistics::keyboard_notify(bool repeat) { if (repeat) return; lock.lock(); if (current_day != NULL) { current_day->misc_stats[STATS_VALUE_TOTAL_KEYSTROKES]++; } lock.unlock(); } workrave-1.10.50/backend/src/GSettingsConfigurator.hh0000644000175100001710000000424314221624106021415 0ustar00gdm00000000000000// GConfConfigurator.hh // // Copyright (C) 2011 Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GSETTINGSCONFIGURATOR_HH #define GSETTINGSCONFIGURATOR_HH #include #include #include #include #include "IConfigBackend.hh" class GSettingsConfigurator : public IConfigBackend , public IConfigBackendMonitoring { public: GSettingsConfigurator(); virtual ~GSettingsConfigurator(); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_value(const std::string &key, VariantType type, Variant &value) const; virtual bool set_value(const std::string &key, Variant &value); virtual void set_listener(IConfiguratorListener *listener); virtual bool add_listener(const std::string &key_prefix); virtual bool remove_listener(const std::string &key_prefix); private: //! Send changes to. IConfiguratorListener *listener; std::string schema_base; std::string path_base; typedef std::map SettingsMap; typedef SettingsMap::iterator SettingsIter; typedef SettingsMap::const_iterator SettingsCIter; //! SettingsMap settings; void add_children(); void key_split(const string &key, string &parent, std::string &child) const; GSettings *get_settings(const std::string &path, std::string &key) const; static void on_settings_changed(GSettings *settings, const gchar *key, void *user_data); }; #endif // GGSETTINGSCONFIGURATOR_HH workrave-1.10.50/backend/src/workrave-service.xml0000644000175100001710000001661614221624106020631 0ustar00gdm00000000000000 workrave-1.10.50/backend/src/unix/0000755000000000000000000000000014221624436016661 5ustar00rootroot00000000000000workrave-1.10.50/backend/src/unix/MutterInputMonitor.hh0000644000175100001710000000555514221624106021765 0ustar00gdm00000000000000// Copyright (C) 2016 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef MUTTERINPUTMONITOR_HH #define MUTTERINPUTMONITOR_HH #include "InputMonitor.hh" #include #include #include "Runnable.hh" #include "Thread.hh" #include "Diagnostics.hh" class MutterInputMonitor : public InputMonitor , public Runnable { public: MutterInputMonitor(); //! Destructor. virtual ~MutterInputMonitor(); //! Initialize virtual bool init(); //! Terminate the monitor. virtual void terminate(); private: static void on_idle_monitor_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data); static void on_session_manager_property_changed(GDBusProxy *session, GVariant *changed, char **invalidated, gpointer user_data); static void on_register_active_watch_reply(GObject *source_object, GAsyncResult *res, gpointer user_data); static void on_unregister_active_watch_reply(GObject *source_object, GAsyncResult *res, gpointer user_data); static void on_bus_name_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data); //! The monitor's execution thread. virtual void run(); bool register_active_watch(); bool unregister_active_watch(); void register_active_watch_async(); void unregister_active_watch_async(); bool register_idle_watch(); bool unregister_idle_watch(); bool init_idle_monitor(); void init_inhibitors(); void init_service_monitor(); private: static const int GSM_INHIBITOR_FLAG_IDLE = 8; GDBusProxy *idle_proxy = NULL; GDBusProxy *session_proxy = NULL; std::atomic active{false}; std::atomic inhibited{false}; TracedField trace_active{"monitor.mutter.active", false}; TracedField trace_inhibited{"monitor.inhibited", false}; TracedField watch_active{"monitor.mutter.watch_active", 0}; TracedField watch_idle{"monitor.mutter.watch_idle", 0}; bool abort = false; Thread *monitor_thread = NULL; GMutex mutex; GCond cond; guint watch_id{0}; }; #endif // MUTTERINPUTMONITOR_HH workrave-1.10.50/backend/src/unix/Makefile.in0000644000000000000000000011111114221624200020707 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008, 2009, 2010, 2012 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/src/unix ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_backend_unix_la_LIBADD = am__libworkrave_backend_unix_la_SOURCES_DIST = \ UnixInputMonitorFactory.cc X11InputMonitor.cc \ RecordInputMonitor.cc XScreenSaverMonitor.cc \ MutterInputMonitor.cc GConfConfigurator.cc dummy.c @PLATFORM_OS_UNIX_TRUE@am__objects_1 = libworkrave_backend_unix_la-UnixInputMonitorFactory.lo \ @PLATFORM_OS_UNIX_TRUE@ libworkrave_backend_unix_la-X11InputMonitor.lo \ @PLATFORM_OS_UNIX_TRUE@ libworkrave_backend_unix_la-RecordInputMonitor.lo \ @PLATFORM_OS_UNIX_TRUE@ libworkrave_backend_unix_la-XScreenSaverMonitor.lo \ @PLATFORM_OS_UNIX_TRUE@ libworkrave_backend_unix_la-MutterInputMonitor.lo @HAVE_GCONF_TRUE@am__objects_2 = libworkrave_backend_unix_la-GConfConfigurator.lo @PLATFORM_OS_MACOS_TRUE@am__objects_3 = dummy.lo am_libworkrave_backend_unix_la_OBJECTS = $(am__objects_1) \ $(am__objects_2) $(am__objects_3) libworkrave_backend_unix_la_OBJECTS = \ $(am_libworkrave_backend_unix_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libworkrave_backend_unix_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/dummy.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Plo \ ./$(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_backend_unix_la_SOURCES) DIST_SOURCES = $(am__libworkrave_backend_unix_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-backend-unix.la @PLATFORM_OS_UNIX_TRUE@sourcesxinput = UnixInputMonitorFactory.cc X11InputMonitor.cc RecordInputMonitor.cc XScreenSaverMonitor.cc MutterInputMonitor.cc @PLATFORM_OS_UNIX_TRUE@X11LIBS = @X_LIBS@ @HAVE_GCONF_TRUE@sourcesgconf = GConfConfigurator.cc @PLATFORM_OS_MACOS_TRUE@sourcesdummy = dummy.c libworkrave_backend_unix_la_SOURCES = \ ${sourcesxinput} ${sourcesgconf} ${sourcesdummy} libworkrave_backend_unix_la_CXXFLAGS = \ -W -I${top_srcdir}/backend/src -I${top_srcdir}/backend/include @X_CFLAGS@ \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 \ @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ @GTK_CFLAGS@ @GCONF_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc)\ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) all: all-am .SUFFIXES: .SUFFIXES: .c .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/src/unix/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/src/unix/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-backend-unix.la: $(libworkrave_backend_unix_la_OBJECTS) $(libworkrave_backend_unix_la_DEPENDENCIES) $(EXTRA_libworkrave_backend_unix_la_DEPENDENCIES) $(AM_V_CXXLD)$(libworkrave_backend_unix_la_LINK) $(libworkrave_backend_unix_la_OBJECTS) $(libworkrave_backend_unix_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dummy.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libworkrave_backend_unix_la-UnixInputMonitorFactory.lo: UnixInputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-UnixInputMonitorFactory.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Tpo -c -o libworkrave_backend_unix_la-UnixInputMonitorFactory.lo `test -f 'UnixInputMonitorFactory.cc' || echo '$(srcdir)/'`UnixInputMonitorFactory.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Tpo $(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='UnixInputMonitorFactory.cc' object='libworkrave_backend_unix_la-UnixInputMonitorFactory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-UnixInputMonitorFactory.lo `test -f 'UnixInputMonitorFactory.cc' || echo '$(srcdir)/'`UnixInputMonitorFactory.cc libworkrave_backend_unix_la-X11InputMonitor.lo: X11InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-X11InputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Tpo -c -o libworkrave_backend_unix_la-X11InputMonitor.lo `test -f 'X11InputMonitor.cc' || echo '$(srcdir)/'`X11InputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Tpo $(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='X11InputMonitor.cc' object='libworkrave_backend_unix_la-X11InputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-X11InputMonitor.lo `test -f 'X11InputMonitor.cc' || echo '$(srcdir)/'`X11InputMonitor.cc libworkrave_backend_unix_la-RecordInputMonitor.lo: RecordInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-RecordInputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Tpo -c -o libworkrave_backend_unix_la-RecordInputMonitor.lo `test -f 'RecordInputMonitor.cc' || echo '$(srcdir)/'`RecordInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Tpo $(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='RecordInputMonitor.cc' object='libworkrave_backend_unix_la-RecordInputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-RecordInputMonitor.lo `test -f 'RecordInputMonitor.cc' || echo '$(srcdir)/'`RecordInputMonitor.cc libworkrave_backend_unix_la-XScreenSaverMonitor.lo: XScreenSaverMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-XScreenSaverMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Tpo -c -o libworkrave_backend_unix_la-XScreenSaverMonitor.lo `test -f 'XScreenSaverMonitor.cc' || echo '$(srcdir)/'`XScreenSaverMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Tpo $(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XScreenSaverMonitor.cc' object='libworkrave_backend_unix_la-XScreenSaverMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-XScreenSaverMonitor.lo `test -f 'XScreenSaverMonitor.cc' || echo '$(srcdir)/'`XScreenSaverMonitor.cc libworkrave_backend_unix_la-MutterInputMonitor.lo: MutterInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-MutterInputMonitor.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Tpo -c -o libworkrave_backend_unix_la-MutterInputMonitor.lo `test -f 'MutterInputMonitor.cc' || echo '$(srcdir)/'`MutterInputMonitor.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Tpo $(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MutterInputMonitor.cc' object='libworkrave_backend_unix_la-MutterInputMonitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-MutterInputMonitor.lo `test -f 'MutterInputMonitor.cc' || echo '$(srcdir)/'`MutterInputMonitor.cc libworkrave_backend_unix_la-GConfConfigurator.lo: GConfConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -MT libworkrave_backend_unix_la-GConfConfigurator.lo -MD -MP -MF $(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Tpo -c -o libworkrave_backend_unix_la-GConfConfigurator.lo `test -f 'GConfConfigurator.cc' || echo '$(srcdir)/'`GConfConfigurator.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Tpo $(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='GConfConfigurator.cc' object='libworkrave_backend_unix_la-GConfConfigurator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libworkrave_backend_unix_la_CXXFLAGS) $(CXXFLAGS) -c -o libworkrave_backend_unix_la-GConfConfigurator.lo `test -f 'GConfConfigurator.cc' || echo '$(srcdir)/'`GConfConfigurator.cc mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/dummy.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Plo -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 -f ./$(DEPDIR)/dummy.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-GConfConfigurator.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-MutterInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-RecordInputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-UnixInputMonitorFactory.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-X11InputMonitor.Plo -rm -f ./$(DEPDIR)/libworkrave_backend_unix_la-XScreenSaverMonitor.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/src/unix/X11InputMonitor.cc0000644000175100001710000001600014221624106021027 0ustar00gdm00000000000000// X11InputMonitor.cc --- ActivityMonitor for X11 // // Copyright (C) 2001 - 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef HAVE_SYS_SELECT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_UNISTD_H # include #endif // Solaris needs this... #define NEED_EVENTS #include #include #include #include #include #include #include "X11InputMonitor.hh" #include "Core.hh" #include "ICore.hh" #include "ICoreEventListener.hh" #include "IInputMonitorListener.hh" #include "timeutil.h" #ifdef HAVE_APP_GTK # include #endif #include "Thread.hh" using namespace std; using namespace workrave; #ifndef HAVE_APP_GTK static int (*old_handler)(Display *dpy, XErrorEvent *error); #endif #ifndef HAVE_APP_GTK //! Intercepts X11 protocol errors. static int errorHandler(Display *dpy, XErrorEvent *error) { (void)dpy; if (error->error_code == BadWindow || error->error_code == BadDrawable) return 0; return 0; } #endif //! Obtains the next X11 event with specified timeout. static Bool XNextEventTimed(Display *dsp, XEvent *event_return, long millis) { if (millis == 0) { XNextEvent(dsp, event_return); return True; } struct timeval tv; tv.tv_sec = millis / 1000; tv.tv_usec = (millis % 1000) * 1000; XFlush(dsp); if (XPending(dsp)) { XNextEvent(dsp, event_return); return True; } else { int fd = ConnectionNumber(dsp); fd_set readset; FD_ZERO(&readset); FD_SET(fd, &readset); if (select(fd + 1, &readset, NULL, NULL, &tv) <= 0) { return False; } else { if (XPending(dsp)) { XNextEvent(dsp, event_return); return True; } else { return False; } } } } X11InputMonitor::X11InputMonitor(const char *display_name) : x11_display_name(display_name) , x11_display(NULL) , abort(false) { monitor_thread = new Thread(this); } // FIXME: never executed.... X11InputMonitor::~X11InputMonitor() { TRACE_ENTER("X11InputMonitor::~X11InputMonitor"); if (monitor_thread != NULL) { monitor_thread->wait(); delete monitor_thread; } TRACE_EXIT(); } bool X11InputMonitor::init() { monitor_thread->start(); return true; } void X11InputMonitor::terminate() { TRACE_ENTER("X11InputMonitor::terminate"); abort = true; monitor_thread->wait(); TRACE_EXIT(); } void X11InputMonitor::run() { TRACE_ENTER("X11InputMonitor::run"); if ((x11_display = XOpenDisplay(x11_display_name)) == NULL) { return; } error_trap_enter(); root_window = DefaultRootWindow(x11_display); set_all_events(root_window); XGrabButton(x11_display, AnyButton, AnyModifier, root_window, True, ButtonPressMask, GrabModeSync, GrabModeAsync, None, None); XSync(x11_display, False); error_trap_exit(); while (1) { XEvent event; bool gotEvent = XNextEventTimed(x11_display, &event, 100); if (abort) { TRACE_EXIT(); return; } if (gotEvent) { error_trap_enter(); switch (event.xany.type) { case KeyPress: handle_keypress(&event); break; case CreateNotify: handle_create(&event); break; case ButtonPress: case ButtonRelease: handle_button(&event); break; } error_trap_exit(); } // timeout Window root, child; int root_x, root_y, win_x, win_y; unsigned mask; error_trap_enter(); XQueryPointer(x11_display, root_window, &root, &child, &root_x, &root_y, &win_x, &win_y, &mask); error_trap_exit(); fire_mouse(root_x, root_y); } TRACE_EXIT(); } void X11InputMonitor::set_event_mask(Window window) { XWindowAttributes attrs; unsigned long events; Window root, parent, *children; unsigned int nchildren; char *name; if (!XQueryTree(x11_display, window, &root, &parent, &children, &nchildren)) return; if (XFetchName(x11_display, window, &name)) { // printf("Watching: %s\n", name); XFree(name); } if (parent == None) { attrs.all_event_masks = attrs.do_not_propagate_mask = KeyPressMask; } else { XGetWindowAttributes(x11_display, window, &attrs); } events = ((attrs.all_event_masks | attrs.do_not_propagate_mask) & KeyPressMask); XSelectInput(x11_display, window, SubstructureNotifyMask | PropertyChangeMask | EnterWindowMask | events); if (children) { while (nchildren) { set_event_mask(children[--nchildren]); } XFree(children); } } void X11InputMonitor::set_all_events(Window window) { error_trap_enter(); set_event_mask(window); XSync(x11_display, False); error_trap_exit(); } void X11InputMonitor::handle_keypress(XEvent *event) { (void)event; fire_keyboard(false); } void X11InputMonitor::handle_create(XEvent *event) { set_all_events(event->xcreatewindow.window); } void X11InputMonitor::handle_button(XEvent *event) { (void)event; XSync(x11_display, 0); XAllowEvents(x11_display, ReplayPointer, CurrentTime); XSync(x11_display, 0); if (event != NULL) { // FIXME: this is a hack. XGrabButton does not generate a button release // event... fire_button(true); fire_button(false); } else { fire_action(); } } void X11InputMonitor::error_trap_enter() { #ifdef HAVE_APP_GTK gdk_x11_display_error_trap_push(gdk_display_get_default()); #else old_handler = XSetErrorHandler(&errorHandler); #endif } void X11InputMonitor::error_trap_exit() { #ifdef HAVE_APP_GTK gdk_display_flush(gdk_display_get_default()); gdk_x11_display_error_trap_pop_ignored(gdk_display_get_default()); #else XSetErrorHandler(old_handler); #endif } workrave-1.10.50/backend/src/unix/GConfConfigurator.cc0000644000175100001710000001704214221624106021454 0ustar00gdm00000000000000// GConfConfigurator.cc --- Configuration Access // // Copyright (C) 2002, 2003, 2006, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #define GCONF_HACK #include "GConfConfigurator.hh" #include "Configurator.hh" #include "Core.hh" using namespace workrave; using namespace std; GConfConfigurator::GConfConfigurator() { gconf_client = gconf_client_get_default(); gconf_root = "/apps/workrave"; #ifndef NDEBUG const char *env = getenv("WORKRAVE_GCONF_ROOT"); if (env != NULL) { gconf_root = env; } int len = gconf_root.length(); if (len > 0) { if (gconf_root[len - 1] == '/') { gconf_root = gconf_root.substr(0, len - 1); } } #endif GError *error = NULL; gconf_client_add_dir(gconf_client, gconf_root.c_str(), GCONF_CLIENT_PRELOAD_NONE, &error); if (error != NULL) { g_error_free(error); } } GConfConfigurator::~GConfConfigurator() { GError *error = NULL; for (IDMapIter i = ids.begin(); i != ids.end(); i++) { guint id = i->first; gconf_client_notify_remove(gconf_client, id); } gconf_client_remove_dir(gconf_client, gconf_root.c_str(), &error); if (error != NULL) { g_error_free(error); } } bool GConfConfigurator::load(string filename) { (void)filename; return true; } bool GConfConfigurator::save(string filename) { (void)filename; return true; } bool GConfConfigurator::save() { return true; } bool GConfConfigurator::get_value(const string &key, GConfValue **value) const { bool ret = true; GError *error = NULL; string full_key = gconf_root + "/" + key; assert(value != NULL); *value = gconf_client_get_without_default(gconf_client, full_key.c_str(), &error); if (error != NULL || *value == NULL) { ret = false; if (*value != NULL) { gconf_value_free(*value); *value = NULL; } if (error != NULL) { g_error_free(error); } } return ret; } bool GConfConfigurator::remove_key(const std::string &key) { bool ret = true; GError *error = NULL; string full_key = gconf_root + "/" + key; ret = gconf_client_unset(gconf_client, full_key.c_str(), &error); if (error != NULL) { g_error_free(error); ret = false; } return ret; } bool GConfConfigurator::get_value(const std::string &key, VariantType type, Variant &out) const { bool ret = false; GConfValue *value; ret = get_value(key, &value); if (ret) { if (type == VARIANT_TYPE_NONE) { switch (value->type) { case GCONF_VALUE_INT: type = VARIANT_TYPE_INT; break; case GCONF_VALUE_BOOL: type = VARIANT_TYPE_BOOL; break; case GCONF_VALUE_FLOAT: type = VARIANT_TYPE_DOUBLE; break; case GCONF_VALUE_STRING: type = VARIANT_TYPE_STRING; break; default: break; } } ret = false; switch (type) { case VARIANT_TYPE_INT: if (value->type == GCONF_VALUE_INT) { out.int_value = gconf_value_get_int(value); ret = true; } break; case VARIANT_TYPE_BOOL: if (value->type == GCONF_VALUE_BOOL) { out.bool_value = gconf_value_get_bool(value); ret = true; } break; case VARIANT_TYPE_DOUBLE: if (value->type == GCONF_VALUE_FLOAT) { out.double_value = gconf_value_get_float(value); ret = true; } break; case VARIANT_TYPE_STRING: if (value->type == GCONF_VALUE_STRING) { out.string_value = gconf_value_get_string(value); ret = true; } break; case VARIANT_TYPE_NONE: default: ret = false; } gconf_value_free(value); } if (ret) { out.type = type; } return ret; } bool GConfConfigurator::set_value(const std::string &key, Variant &value) { bool ret = true; GError *error = NULL; string full_key = gconf_root + "/" + key; switch (value.type) { case VARIANT_TYPE_NONE: ret = false; break; case VARIANT_TYPE_INT: ret = gconf_client_set_int(gconf_client, full_key.c_str(), value.int_value, &error); break; case VARIANT_TYPE_BOOL: ret = gconf_client_set_bool(gconf_client, full_key.c_str(), value.bool_value, &error); break; case VARIANT_TYPE_DOUBLE: ret = gconf_client_set_float(gconf_client, full_key.c_str(), value.double_value, &error); break; case VARIANT_TYPE_STRING: ret = gconf_client_set_string(gconf_client, full_key.c_str(), value.string_value.c_str(), &error); break; default: ret = false; } if (error != NULL) { ret = false; if (error != NULL) { g_error_free(error); } } return ret; } void GConfConfigurator::set_listener(IConfiguratorListener *listener) { this->listener = listener; } bool GConfConfigurator::add_listener(const string &key_prefix) { TRACE_ENTER_MSG("GConfConfigurator::add_listener", key_prefix); string full_key = gconf_root + "/" + key_prefix; GError *error = NULL; guint id = 0; int len = full_key.length(); if (len > 0) { if (full_key[len - 1] == '/') { full_key = full_key.substr(0, len - 1); } } // Add notification callback. id = gconf_client_notify_add(gconf_client, full_key.c_str(), &GConfConfigurator::static_key_changed, (gpointer)this, NULL, &error); if (error != NULL) { g_error_free(error); } else { ids[id] = key_prefix; } TRACE_EXIT(); return error == NULL; } bool GConfConfigurator::remove_listener(const string &remove_key) { bool ret = false; IDMapIter i = ids.begin(); while (i != ids.end()) { IDMapIter next = i; next++; string &key = i->second; if (key == remove_key) { guint id = i->first; gconf_client_notify_remove(gconf_client, id); ids.erase(i); ret = true; } i = next; } return ret; } void GConfConfigurator::static_key_changed(GConfClient *client, guint cnxn_id, GConfEntry *entry, gpointer user_data) { (void)client; GConfConfigurator *c = (GConfConfigurator *)user_data; c->key_changed(cnxn_id, entry); } void GConfConfigurator::key_changed(guint id, GConfEntry *entry) { TRACE_ENTER_MSG("GConfConfigurator::key_changed", id); (void)entry; IDMapIter i = ids.find(id); if (i != ids.end()) { listener->config_changed_notify(i->second); } TRACE_EXIT(); } workrave-1.10.50/backend/src/unix/dummy.c0000644000175100001710000000222714221624106017064 0ustar00gdm00000000000000/* * Copyright (C) 2001-2007 Rob Caelers * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* Some systems, reportedly OpenBSD and Mac OS X, refuse to create libraries without any object files. You might get an error like: > ar cru .libs/libgl.a > ar: no archive members specified Compiling this file, and adding its object file to the library, will prevent the library from being empty. */ /* This declaration is solely to ensure that after preprocessing this file is never empty. */ typedef int dummy; workrave-1.10.50/backend/src/unix/UnixInputMonitorFactory.hh0000644000175100001710000000272614221624106022755 0ustar00gdm00000000000000// UnixInputMonitorFactory.hh --- Factory to create input monitors. // // Copyright (C) 2007, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef UNIXINPUTMONITORFACTORY_HH #define UNIXINPUTMONITORFACTORY_HH #include #include #include "IInputMonitorFactory.hh" #include "Diagnostics.hh" #include //! Factory to create input monitors. class UnixInputMonitorFactory : public IInputMonitorFactory { public: UnixInputMonitorFactory(); virtual void init(const char *display); virtual IInputMonitor *get_monitor(IInputMonitorFactory::MonitorCapability capability); private: static gboolean static_report_failure(void *data); bool error_reported; TracedField actual_monitor_method; IInputMonitor *monitor; const char *display; }; #endif // UNIXINPUTMONITORFACTORY_HH workrave-1.10.50/backend/src/unix/XScreenSaverMonitor.hh0000644000175100001710000000314714221624106022030 0ustar00gdm00000000000000// XScreenSaverMonitor.hh --- ActivityMonitor for X11 // // Copyright (C) 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef XSCREENSAVERMONITOR_HH #define XSCREENSAVERMONITOR_HH #include #include #include #include #include "InputMonitor.hh" #include "Runnable.hh" #include "Thread.hh" //! Activity monitor for a local X server. class XScreenSaverMonitor : public InputMonitor , public Runnable { public: //! Constructor. XScreenSaverMonitor(); //! Destructor. virtual ~XScreenSaverMonitor(); //! Initialize virtual bool init(); //! Terminate the monitor. virtual void terminate(); private: //! The monitor's execution thread. virtual void run(); private: //! Abort the main loop bool abort; //! The activity monitor thread. Thread *monitor_thread; // XScreenSaverInfo *screen_saver_info; GMutex mutex; GCond cond; }; #endif // XSCREENSAVERMONITOR_HH workrave-1.10.50/backend/src/unix/X11InputMonitor.hh0000644000175100001710000000407114221624106021046 0ustar00gdm00000000000000// X11InputMonitor.hh --- ActivityMonitor for X11 // // Copyright (C) 2001 - 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef X11INPUTMONITOR_HH #define X11INPUTMONITOR_HH #include #include #include #include "InputMonitor.hh" #include "Runnable.hh" #include "Thread.hh" //! Activity monitor for a local X server. class X11InputMonitor : public InputMonitor , public Runnable { public: //! Constructor. X11InputMonitor(const char *display_name); //! Destructor. virtual ~X11InputMonitor(); //! Initialize virtual bool init(); //! Terminate the monitor. virtual void terminate(); private: //! The monitor's execution thread. virtual void run(); void error_trap_enter(); void error_trap_exit(); private: //! Internal X magic void set_event_mask(Window window); //! Internal X magic void set_all_events(Window window); //! Handle a key press event. void handle_keypress(XEvent *event); //! Handle a window creation event. void handle_create(XEvent *event); //! Handle a mouse button event. void handle_button(XEvent *event); private: //! The X11 display name. const char *x11_display_name; //! The X11 display handle. Display *x11_display; //! The X11 root window handle. Window root_window; //! Abort the main loop bool abort; //! The activity monitor thread. Thread *monitor_thread; }; #endif // X11INPUTMONITOR_HH workrave-1.10.50/backend/src/unix/GConfConfigurator.hh0000644000175100001710000000436514221624106021472 0ustar00gdm00000000000000// GConfConfigurator.hh // // Copyright (C) 2001, 2002, 2003, 2006, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef GCONFCONFIGURATOR_HH #define GCONFCONFIGURATOR_HH #include #include #include "glib.h" #ifndef GCONF_HACK class GConfClient; class GConfEntry; class GConfValue; #endif #include "IConfigBackend.hh" class GConfConfigurator : public IConfigBackend , public IConfigBackendMonitoring { public: GConfConfigurator(); virtual ~GConfConfigurator(); virtual bool load(std::string filename); virtual bool save(std::string filename); virtual bool save(); virtual bool remove_key(const std::string &key); virtual bool get_value(const std::string &key, VariantType type, Variant &value) const; virtual bool set_value(const std::string &key, Variant &value); virtual void set_listener(IConfiguratorListener *listener); virtual bool add_listener(const std::string &key_prefix); virtual bool remove_listener(const std::string &key_prefix); private: bool get_value(const std::string &key, GConfValue **value) const; typedef std::map IDMap; typedef IDMap::iterator IDMapIter; //! id -> key maps IDMap ids; //! GConf thingy GConfClient *gconf_client; //! notify connection ID guint connection_id; //! GConf Root of workrave std::string gconf_root; //! Send changes to. IConfiguratorListener *listener; //! Callback. static void static_key_changed(GConfClient *client, guint cnxn_id, GConfEntry *entry, gpointer user_data); //! void key_changed(guint cnxn_id, GConfEntry *entry); }; #endif // GCONFCONFIGURATOR_HH workrave-1.10.50/backend/src/unix/UnixInputMonitorFactory.cc0000644000175100001710000001113514221624106022735 0ustar00gdm00000000000000// UnixInputMonitorFactory.cc -- Factory to create input monitors // // Copyright (C) 2007, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "debug.hh" #include "Core.hh" #include "CoreFactory.hh" #include "IConfigurator.hh" #include "StringUtil.hh" #include "UnixInputMonitorFactory.hh" #include "RecordInputMonitor.hh" #include "X11InputMonitor.hh" #include "XScreenSaverMonitor.hh" #include "MutterInputMonitor.hh" UnixInputMonitorFactory::UnixInputMonitorFactory() : error_reported(false) , actual_monitor_method{"monitor.method", ""} { monitor = NULL; } void UnixInputMonitorFactory::init(const char *display) { this->display = display; } //! Retrieves the input activity monitor IInputMonitor * UnixInputMonitorFactory::get_monitor(IInputMonitorFactory::MonitorCapability capability) { TRACE_ENTER("UnixInputMonitorFactory::get_monitor"); (void)capability; if (monitor == NULL) { bool initialized = false; string configure_monitor_method; vector available_monitors; StringUtil::split(HAVE_MONITORS, ',', available_monitors); TRACE_MSG("available_monitors " << HAVE_MONITORS << " " << available_monitors.size()); CoreFactory::get_configurator()->get_value_with_default("advanced/monitor", configure_monitor_method, "default"); vector::const_iterator start = available_monitors.end(); if (configure_monitor_method != "default") { TRACE_MSG("use configured: " << configure_monitor_method); start = find(available_monitors.begin(), available_monitors.end(), configure_monitor_method); } if (start == available_monitors.end()) { start = available_monitors.begin(); TRACE_MSG("Start first available"); } vector::const_iterator loop = start; string monitor_method; while (1) { monitor_method = *loop; TRACE_MSG("Test " << monitor_method); if (monitor_method == "record") { monitor = new RecordInputMonitor(display); } else if (monitor_method == "screensaver") { monitor = new XScreenSaverMonitor(); } else if (monitor_method == "x11events") { monitor = new X11InputMonitor(display); } else if (monitor_method == "mutter") { monitor = new MutterInputMonitor(); } initialized = monitor->init(); if (initialized) { TRACE_MSG("Success"); break; } delete monitor; monitor = NULL; loop++; if (loop == available_monitors.end()) { loop = available_monitors.begin(); } if (loop == start) { break; } } if (!initialized) { TRACE_MSG("Non found"); if (!error_reported) { error_reported = true; g_idle_add(static_report_failure, NULL); } CoreFactory::get_configurator()->set_value("advanced/monitor", "default"); CoreFactory::get_configurator()->save(); monitor_method = ""; } else { if (configure_monitor_method != "default") { CoreFactory::get_configurator()->set_value("advanced/monitor", actual_monitor_method); CoreFactory::get_configurator()->save(); } TRACE_MSG("using " << monitor_method); } actual_monitor_method = monitor_method; } TRACE_EXIT(); return monitor; } gboolean UnixInputMonitorFactory::static_report_failure(void *data) { (void)data; Core *core = Core::get_instance(); core->post_event(CORE_EVENT_MONITOR_FAILURE); return FALSE; } workrave-1.10.50/backend/src/unix/Makefile.am0000644000175100001710000000203414221624106017615 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2007, 2008, 2009, 2010, 2012 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in noinst_LTLIBRARIES = libworkrave-backend-unix.la if PLATFORM_OS_UNIX sourcesxinput = UnixInputMonitorFactory.cc X11InputMonitor.cc RecordInputMonitor.cc XScreenSaverMonitor.cc MutterInputMonitor.cc X11LIBS = @X_LIBS@ endif if HAVE_GCONF sourcesgconf = GConfConfigurator.cc endif if PLATFORM_OS_MACOS sourcesdummy = dummy.c endif libworkrave_backend_unix_la_SOURCES = \ ${sourcesxinput} ${sourcesgconf} ${sourcesdummy} libworkrave_backend_unix_la_CXXFLAGS = \ -W -I${top_srcdir}/backend/src -I${top_srcdir}/backend/include @X_CFLAGS@ \ -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" \ -D_XOPEN_SOURCE=600 \ @WR_COMMON_INCLUDES@ \ @GLIB_CFLAGS@ @GTK_CFLAGS@ @GCONF_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.cc) $(wildcard $(srcdir)/*.rc)\ $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) workrave-1.10.50/backend/src/unix/XScreenSaverMonitor.cc0000644000175100001710000000536314221624106022020 0ustar00gdm00000000000000// XScreenSaverMonitor.cc --- ActivityMonitor for X11 // // Copyright (C) 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include "XScreenSaverMonitor.hh" #include "Core.hh" #include "ICore.hh" #include "ICoreEventListener.hh" #include "IInputMonitorListener.hh" #include "Thread.hh" using namespace std; using namespace workrave; XScreenSaverMonitor::XScreenSaverMonitor() : abort(false) , screen_saver_info(NULL) { monitor_thread = new Thread(this); g_mutex_init(&mutex); g_cond_init(&cond); } XScreenSaverMonitor::~XScreenSaverMonitor() { TRACE_ENTER("XScreenSaverMonitor::~XScreenSaverMonitor"); if (monitor_thread != NULL) { monitor_thread->wait(); delete monitor_thread; } g_mutex_clear(&mutex); g_cond_clear(&cond); TRACE_EXIT(); } bool XScreenSaverMonitor::init() { int event_base; int error_base; Bool has_extension = XScreenSaverQueryExtension(gdk_x11_display_get_xdisplay(gdk_display_get_default()), &event_base, &error_base); if (has_extension) { screen_saver_info = XScreenSaverAllocInfo(); monitor_thread->start(); } return has_extension; } void XScreenSaverMonitor::terminate() { TRACE_ENTER("XScreenSaverMonitor::terminate"); g_mutex_lock(&mutex); abort = true; g_cond_broadcast(&cond); g_mutex_unlock(&mutex); monitor_thread->wait(); monitor_thread = NULL; TRACE_EXIT(); } void XScreenSaverMonitor::run() { TRACE_ENTER("XScreenSaverMonitor::run"); g_mutex_lock(&mutex); while (!abort) { XScreenSaverQueryInfo( gdk_x11_display_get_xdisplay(gdk_display_get_default()), gdk_x11_get_default_root_xwindow(), screen_saver_info); if (screen_saver_info->idle < 1000) { /* Notify the activity monitor */ fire_action(); } #if GLIB_CHECK_VERSION(2, 32, 0) gint64 end_time = g_get_monotonic_time() + G_TIME_SPAN_SECOND; g_cond_wait_until(&cond, &mutex, end_time); #else g_usleep(500000); #endif } g_mutex_unlock(&mutex); TRACE_EXIT(); } workrave-1.10.50/backend/src/unix/MutterInputMonitor.cc0000644000175100001710000003055414221624106021750 0ustar00gdm00000000000000// Copyright (C) 2016 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "MutterInputMonitor.hh" #include "debug.hh" #include "IInputMonitorListener.hh" #include "Diagnostics.hh" using namespace std; MutterInputMonitor::MutterInputMonitor() { monitor_thread = new Thread(this); g_mutex_init(&mutex); g_cond_init(&cond); } MutterInputMonitor::~MutterInputMonitor() { if (watch_id != 0) { g_bus_unwatch_name(watch_id); } if (idle_proxy != nullptr) { g_object_unref(idle_proxy); } if (session_proxy != nullptr) { g_object_unref(session_proxy); } if (monitor_thread != NULL) { monitor_thread->wait(); delete monitor_thread; } g_mutex_clear(&mutex); g_cond_clear(&cond); } bool MutterInputMonitor::init() { TRACE_ENTER("MutterInputMonitor::init"); bool result = init_idle_monitor(); if (result) { init_inhibitors(); init_service_monitor(); } TRACE_EXIT(); return result; } bool MutterInputMonitor::init_idle_monitor() { TRACE_ENTER("MutterInputMonitor::init"); GError *error = NULL; bool result = true; idle_proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.gnome.Mutter.IdleMonitor", "/org/gnome/Mutter/IdleMonitor/Core", "org.gnome.Mutter.IdleMonitor", NULL, &error); if (error == NULL) { g_signal_connect(idle_proxy, "g-signal", G_CALLBACK(on_idle_monitor_signal), this); result = register_active_watch(); if (result) { result = register_idle_watch(); if (!result) { unregister_active_watch(); } } if (result) { monitor_thread->start(); } } else { TRACE_MSG("Error: " << error->message); g_error_free(error); result = false; } TRACE_EXIT(); return result; } void MutterInputMonitor::init_inhibitors() { TRACE_ENTER("MutterInputMonitor::monitor_inhibitors"); session_proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.gnome.SessionManager", "/org/gnome/SessionManager", "org.gnome.SessionManager", NULL, NULL); if (session_proxy != NULL) { g_signal_connect(session_proxy, "g-properties-changed", G_CALLBACK(on_session_manager_property_changed), this); GVariant *v = g_dbus_proxy_get_cached_property(session_proxy, "InhibitedActions"); inhibited = (g_variant_get_uint32(v) & GSM_INHIBITOR_FLAG_IDLE) != 0; trace_inhibited = inhibited; TRACE_MSG("Inhibited:" << g_variant_get_uint32(v) << " " << inhibited); g_variant_unref(v); } TRACE_EXIT(); } void MutterInputMonitor::on_bus_name_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { TRACE_ENTER_MSG("MutterInputMonitor::on_bus_name_appeared", name); (void)connection; (void)name; (void)name_owner; auto *self = (MutterInputMonitor *)user_data; if (self->watch_active != 0u) { self->register_active_watch(); } if (self->watch_idle != 0u) { self->register_idle_watch(); } TRACE_EXIT(); } void MutterInputMonitor::init_service_monitor() { TRACE_ENTER("MutterInputMonitor::init_service_monitor"); watch_id = g_bus_watch_name(G_BUS_TYPE_SESSION, "org.gnome.Mutter.IdleMonitor", G_BUS_NAME_WATCHER_FLAGS_NONE, on_bus_name_appeared, nullptr, this, nullptr); TRACE_EXIT(); } bool MutterInputMonitor::register_active_watch() { TRACE_ENTER("MutterInputMonitor::register_active_watch"); GError *error = NULL; GVariant *reply = g_dbus_proxy_call_sync(idle_proxy, "AddUserActiveWatch", NULL, G_DBUS_CALL_FLAGS_NONE, 10000, NULL, &error); if (error == NULL) { guint watch = 0; g_variant_get(reply, "(u)", &watch); watch_active = active; g_variant_unref(reply); } else { TRACE_MSG("Error: " << error->message); g_error_free(error); } TRACE_EXIT(); return error == NULL; } void MutterInputMonitor::register_active_watch_async() { TRACE_ENTER("MutterInputMonitor::register_active_watch_aync"); g_dbus_proxy_call( idle_proxy, "AddUserActiveWatch", NULL, G_DBUS_CALL_FLAGS_NONE, 10000, NULL, on_register_active_watch_reply, this); TRACE_EXIT(); } void MutterInputMonitor::on_register_active_watch_reply(GObject *object, GAsyncResult *res, gpointer user_data) { TRACE_ENTER("MutterInputMonitor::on_register_active_watch_reply"); GError *error = NULL; GDBusProxy *proxy = G_DBUS_PROXY(object); MutterInputMonitor *self = (MutterInputMonitor *)user_data; GVariant *params = g_dbus_proxy_call_finish(proxy, res, &error); if (error) { TRACE_MSG("Error: " << error->message); g_clear_error(&error); return; } guint watch = 0; g_variant_get(params, "(u)", &watch); self->watch_active = watch; g_variant_unref(params); } bool MutterInputMonitor::unregister_active_watch() { TRACE_ENTER("MutterInputMonitor::unregister_active_watch"); GError *error = NULL; if (watch_active != 0u) { GVariant *result = g_dbus_proxy_call_sync( idle_proxy, "RemoveWatch", g_variant_new("(u)", watch_active), G_DBUS_CALL_FLAGS_NONE, 10000, NULL, &error); if (error == NULL) { g_variant_unref(result); watch_active = 0; } else { TRACE_MSG("Error: " << error->message); g_error_free(error); } } TRACE_EXIT(); return error == NULL; } void MutterInputMonitor::unregister_active_watch_async() { TRACE_ENTER("MutterInputMonitor::unregister_active_watch_async"); if (watch_active != 0u) { g_dbus_proxy_call(idle_proxy, "RemoveWatch", g_variant_new("(u)", watch_active), G_DBUS_CALL_FLAGS_NONE, 10000, NULL, on_unregister_active_watch_reply, this); } TRACE_EXIT(); } void MutterInputMonitor::on_unregister_active_watch_reply(GObject *object, GAsyncResult *res, gpointer user_data) { TRACE_ENTER("MutterInputMonitor::on_unregister_active_watch_reply"); GError *error = NULL; GDBusProxy *proxy = G_DBUS_PROXY(object); MutterInputMonitor *self = (MutterInputMonitor *)user_data; g_dbus_proxy_call_finish(proxy, res, &error); if (error) { TRACE_MSG("Error: " << error->message); g_clear_error(&error); return; } self->watch_active = 0; TRACE_EXIT(); } bool MutterInputMonitor::register_idle_watch() { TRACE_ENTER("MutterInputMonitor::register_idle_watch"); GError *error = NULL; GVariant *reply = g_dbus_proxy_call_sync(idle_proxy, "AddIdleWatch", g_variant_new("(t)", 500), G_DBUS_CALL_FLAGS_NONE, 10000, NULL, &error); if (error == NULL) { guint watch = 0; ; g_variant_get(reply, "(u)", &watch); watch_idle = watch; g_variant_unref(reply); } else { TRACE_MSG("Error: " << error->message); g_error_free(error); } TRACE_EXIT(); return error == NULL; } bool MutterInputMonitor::unregister_idle_watch() { TRACE_ENTER("MutterInputMonitor::unregister_idle_watch"); GError *error = NULL; if (watch_idle != 0u) { GVariant *result = g_dbus_proxy_call_sync( idle_proxy, "RemoveWatch", g_variant_new("(u)", watch_idle), G_DBUS_CALL_FLAGS_NONE, 10000, NULL, &error); if (error == NULL) { g_variant_unref(result); watch_idle = 0; } else { TRACE_MSG("Error: " << error->message); g_error_free(error); } } TRACE_EXIT(); return error == NULL; } void MutterInputMonitor::terminate() { unregister_idle_watch(); unregister_active_watch(); g_mutex_lock(&mutex); abort = true; g_cond_broadcast(&cond); g_mutex_unlock(&mutex); monitor_thread->wait(); monitor_thread = NULL; } void MutterInputMonitor::on_idle_monitor_signal(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data) { (void)proxy; (void)sender_name; MutterInputMonitor *self = (MutterInputMonitor *)user_data; if (g_strcmp0(signal_name, "WatchFired") == 0) { guint handlerID; g_variant_get(parameters, "(u)", &handlerID); Diagnostics::instance().log("mutter: watch fired"); if (handlerID == self->watch_active) { self->unregister_active_watch_async(); self->active = true; self->trace_active = true; } else if (handlerID == self->watch_idle) { self->register_active_watch_async(); self->active = false; self->trace_active = false; } else { Diagnostics::instance().log("mutter: unknown handler ID"); } } } void MutterInputMonitor::on_session_manager_property_changed(GDBusProxy *session, GVariant *changed, char **invalidated, gpointer user_data) { TRACE_ENTER("MutterInputMonitor::on_session_manager_property_changed"); (void)session; (void)invalidated; MutterInputMonitor *self = (MutterInputMonitor *)user_data; GVariant *v = g_variant_lookup_value(changed, "InhibitedActions", G_VARIANT_TYPE_UINT32); if (v != NULL) { self->inhibited = g_variant_get_uint32(v) & GSM_INHIBITOR_FLAG_IDLE; self->trace_inhibited = self->inhibited; TRACE_MSG("Inhibited:" << g_variant_get_uint32(v)); g_variant_unref(v); } TRACE_EXIT(); } void MutterInputMonitor::run() { TRACE_ENTER("MutterInputMonitor::run"); g_mutex_lock(&mutex); while (!abort) { bool local_active = active; if (inhibited) { GError *error = NULL; guint64 idletime; GVariant *reply = g_dbus_proxy_call_sync(idle_proxy, "GetIdletime", NULL, G_DBUS_CALL_FLAGS_NONE, 10000, NULL, &error); if (error == NULL) { g_variant_get(reply, "(t)", &idletime); g_variant_unref(reply); Diagnostics::instance().log("mutter: " + std::to_string(idletime)); local_active = idletime < 1000; } else { TRACE_MSG("Error: " << error->message); g_error_free(error); } } if (local_active) { /* Notify the activity monitor */ fire_action(); } gint64 end_time = g_get_monotonic_time() + G_TIME_SPAN_SECOND; g_cond_wait_until(&cond, &mutex, end_time); } g_mutex_unlock(&mutex); TRACE_EXIT(); } workrave-1.10.50/backend/src/unix/RecordInputMonitor.cc0000644000175100001710000002315614221624106021706 0ustar00gdm00000000000000// RecordInputMonitor.cc --- ActivityMonitor for X11 // // Copyright (C) 2001-2007, 2009, 2010, 2011, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef HAVE_SYS_SELECT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_UNISTD_H # include #endif // Solaris needs this... #define NEED_EVENTS #include #include #include #include #include #include #include "RecordInputMonitor.hh" #include "Core.hh" #include "ICore.hh" #include "ICoreEventListener.hh" #include "IInputMonitorListener.hh" #include "timeutil.h" #ifdef HAVE_APP_GTK # include #endif #include "Thread.hh" using namespace std; using namespace workrave; int RecordInputMonitor::xi_event_base = 0; #ifndef HAVE_APP_GTK static int (*old_handler)(Display *dpy, XErrorEvent *error); #endif #ifndef HAVE_APP_GTK //! Intercepts X11 protocol errors. static int errorHandler(Display *dpy, XErrorEvent *error) { (void)dpy; if (error->error_code == BadWindow || error->error_code == BadDrawable) return 0; return 0; } #endif RecordInputMonitor::RecordInputMonitor(const char *display_name) : x11_display_name(display_name) , x11_display(NULL) , abort(false) , xrecord_context(0) , xrecord_datalink(NULL) { monitor_thread = new Thread(this); } RecordInputMonitor::~RecordInputMonitor() { TRACE_ENTER("RecordInputMonitor::~RecordInputMonitor"); if (monitor_thread != NULL) { monitor_thread->wait(); delete monitor_thread; } if (xrecord_datalink != NULL) { XCloseDisplay(xrecord_datalink); } TRACE_EXIT(); } bool RecordInputMonitor::init() { bool ok = init_xrecord(); if (ok) { monitor_thread->start(); } return ok; } void RecordInputMonitor::terminate() { TRACE_ENTER("RecordInputMonitor::terminate"); stop_xrecord(); abort = true; monitor_thread->wait(); TRACE_EXIT(); } void RecordInputMonitor::run() { TRACE_ENTER("RecordInputMonitor::run"); error_trap_enter(); if (XRecordEnableContext(xrecord_datalink, xrecord_context, &handle_xrecord_callback, (XPointer)this)) { error_trap_exit(); xrecord_datalink = NULL; } TRACE_EXIT(); } void RecordInputMonitor::error_trap_enter() { #ifdef HAVE_APP_GTK gdk_x11_display_error_trap_push(gdk_display_get_default()); #else old_handler = XSetErrorHandler(&errorHandler); #endif } void RecordInputMonitor::error_trap_exit() { #ifdef HAVE_APP_GTK gdk_display_flush(gdk_display_get_default()); gdk_x11_display_error_trap_pop_ignored(gdk_display_get_default()); #else XSetErrorHandler(old_handler); #endif } void RecordInputMonitor::handle_xrecord_handle_key_event(XRecordInterceptData *data) { (void)data; fire_keyboard(false); } void RecordInputMonitor::handle_xrecord_handle_motion_event(XRecordInterceptData *data) { xEvent *event = (xEvent *)data->data; if (event != NULL) { int x = event->u.keyButtonPointer.rootX; int y = event->u.keyButtonPointer.rootY; fire_mouse(x, y, 0); } else { fire_action(); } } void RecordInputMonitor::handle_xrecord_handle_button_event(XRecordInterceptData *data) { xEvent *event = (xEvent *)data->data; if (event != NULL) { fire_button(event->u.u.type == ButtonPress); } else { fire_action(); } } void RecordInputMonitor::handle_xrecord_handle_device_key_event(bool press, XRecordInterceptData *data) { deviceKeyButtonPointer *event = (deviceKeyButtonPointer *)data->data; static Time lastTime = 0; static int detail = 0; static int state = 0; if (press) { if (event->time != lastTime) { lastTime = event->time; fire_keyboard(state == event->state && detail == event->detail); detail = event->detail; state = event->state; } } else { detail = 0; state = 0; } } void RecordInputMonitor::handle_xrecord_handle_device_motion_event(XRecordInterceptData *data) { deviceKeyButtonPointer *event = (deviceKeyButtonPointer *)data->data; static Time lastTime = 0; if (event->time != lastTime) { lastTime = event->time; int x = event->root_x; int y = event->root_y; fire_mouse(x, y, 0); } } void RecordInputMonitor::handle_xrecord_handle_device_button_event(XRecordInterceptData *data) { deviceKeyButtonPointer *event = (deviceKeyButtonPointer *)data->data; static Time lastTime = 0; if (event->time != lastTime) { lastTime = event->time; fire_button(event->type == xi_event_base + XI_DeviceButtonPress); } } void RecordInputMonitor::handle_xrecord_callback(XPointer closure, XRecordInterceptData *data) { xEvent *event; RecordInputMonitor *monitor = (RecordInputMonitor *)closure; switch (data->category) { case XRecordStartOfData: case XRecordFromClient: case XRecordClientStarted: case XRecordClientDied: case XRecordEndOfData: break; case XRecordFromServer: event = (xEvent *)data->data; if (event->u.u.type == KeyPress) monitor->handle_xrecord_handle_key_event(data); else if (event->u.u.type == ButtonPress || event->u.u.type == ButtonRelease) monitor->handle_xrecord_handle_button_event(data); else if (event->u.u.type == MotionNotify) monitor->handle_xrecord_handle_motion_event(data); else if (xi_event_base != 0) { if (event->u.u.type == xi_event_base + XI_DeviceMotionNotify) { monitor->handle_xrecord_handle_device_motion_event(data); } else if (event->u.u.type == xi_event_base + XI_DeviceKeyPress) { monitor->handle_xrecord_handle_device_key_event(true, data); } else if (event->u.u.type == xi_event_base + XI_DeviceKeyRelease) { monitor->handle_xrecord_handle_device_key_event(false, data); } else if (event->u.u.type == xi_event_base + XI_DeviceButtonPress || event->u.u.type == xi_event_base + XI_DeviceButtonRelease) { monitor->handle_xrecord_handle_device_button_event(data); } } break; } if (data != NULL) { XRecordFreeData(data); } } //! Initialize the XRecord monitoring. bool RecordInputMonitor::init_xrecord() { TRACE_ENTER("RecordInputMonitor::init_xrecord"); bool use_xrecord = false; int major, minor; x11_display = XOpenDisplay(x11_display_name); if (x11_display != NULL && XRecordQueryVersion(x11_display, &major, &minor)) { xrecord_context = 0; xrecord_datalink = NULL; use_xrecord = true; // Receive from ALL clients, including future clients. XRecordClientSpec client = XRecordAllClients; // Receive KeyPress, KeyRelease, ButtonPress, ButtonRelease and // MotionNotify events. XRecordRange *recordRange = XRecordAllocRange(); if (recordRange != NULL) { memset(recordRange, 0, sizeof(XRecordRange)); int opcode, error_base; Bool have_xi = XQueryExtension(x11_display, "XInputExtension", &opcode, &xi_event_base, &error_base); if (have_xi && xi_event_base != 0) { TRACE_MSG("Using XI Events"); recordRange->device_events.first = xi_event_base + XI_DeviceKeyPress; recordRange->device_events.last = xi_event_base + XI_DeviceMotionNotify; } else { TRACE_MSG("Using Core Events"); recordRange->device_events.first = KeyPress; recordRange->device_events.last = MotionNotify; } // And create the XRECORD context. xrecord_context = XRecordCreateContext(x11_display, 0, &client, 1, &recordRange, 1); XFree(recordRange); } if (xrecord_context != 0) { XSync(x11_display, True); xrecord_datalink = XOpenDisplay(x11_display_name); } if (xrecord_datalink == NULL) { XRecordFreeContext(x11_display, xrecord_context); xrecord_context = 0; use_xrecord = false; } } TRACE_MSG("use_xrecord= " << use_xrecord); TRACE_EXIT(); return use_xrecord; } //! Stop the XRecord activity monitoring. bool RecordInputMonitor::stop_xrecord() { TRACE_ENTER("RecordInputMonitor::stop_xrecord"); XRecordDisableContext(xrecord_datalink, xrecord_context); XRecordFreeContext(x11_display, xrecord_context); XFlush(xrecord_datalink); XCloseDisplay(x11_display); x11_display = NULL; TRACE_EXIT(); return true; } workrave-1.10.50/backend/src/unix/RecordInputMonitor.hh0000644000175100001710000000506414221624106021716 0ustar00gdm00000000000000// RecordInputMonitor.hh --- ActivityMonitor for X11 // // Copyright (C) 2001 - 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef RECORDINPUTMONITOR_HH #define RECORDINPUTMONITOR_HH #include #include #include #include #include "InputMonitor.hh" #include "Runnable.hh" #include "Thread.hh" //! Activity monitor for a local X server. class RecordInputMonitor : public InputMonitor , public Runnable { public: //! Constructor. RecordInputMonitor(const char *display_name); //! Destructor. virtual ~RecordInputMonitor(); //! Initialize virtual bool init(); //! Terminate the monitor. virtual void terminate(); private: //! The monitor's execution thread. virtual void run(); void error_trap_enter(); void error_trap_exit(); //! Initialize bool init_xrecord(); //! Stop the capturing. bool stop_xrecord(); void handle_xrecord_handle_key_event(XRecordInterceptData *data); void handle_xrecord_handle_motion_event(XRecordInterceptData *data); void handle_xrecord_handle_button_event(XRecordInterceptData *data); void handle_xrecord_handle_device_key_event(bool press, XRecordInterceptData *data); void handle_xrecord_handle_device_motion_event(XRecordInterceptData *data); void handle_xrecord_handle_device_button_event(XRecordInterceptData *data); static void handle_xrecord_callback(XPointer closure, XRecordInterceptData *data); private: //! The X11 display name. const char *x11_display_name; //! The X11 display handle. Display *x11_display; //! Abort the main loop bool abort; //! The activity monitor thread. Thread *monitor_thread; //! XRecord context. Defines clients and events to capture. XRecordContext xrecord_context; //! X Connection for event capturing. Display *xrecord_datalink; // Event base for Xinput events static int xi_event_base; }; #endif // RECORDINPUTMONITOR_HH workrave-1.10.50/backend/src/SocketDriver.cc0000644000175100001710000000241214221624106017511 0ustar00gdm00000000000000// SocketDriver.cc // // Copyright (C) 2007, 2009, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // static const char rcsid[] = "$Id: GNetSocketDriver.cc 1184 2007-05-12 09:16:31Z rcaelers $"; #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "SocketDriver.hh" #if defined(HAVE_GIO_NET) # include "GIOSocketDriver.hh" #endif #if defined(HAVE_GNET) # include "GNetSocketDriver.hh" #endif //! Create a new socket SocketDriver * SocketDriver::create() { #if defined(HAVE_GIO_NET) return new GIOSocketDriver(); #elif defined(HAVE_GNET) return new GNetSocketDriver(); #else # error No socket driver #endif } workrave-1.10.50/backend/src/DBusWorkrave.hh0000644000000000000000000000275114221624226020577 0ustar00rootroot00000000000000#ifndef DBUS_DBUSWORKRAVE_HH #define DBUS_DBUSWORKRAVE_HH #include "dbus/DBusBindingGio.hh" #include "Core.hh" #include "IConfigurator.hh" class org_workrave_CoreInterface { public: virtual ~org_workrave_CoreInterface() {} static org_workrave_CoreInterface *instance(const ::workrave::dbus::IDBus::Ptr dbus); virtual void MicrobreakChanged(const std::string &path , std::string progress ) = 0; virtual void RestbreakChanged(const std::string &path , std::string progress ) = 0; virtual void DailylimitChanged(const std::string &path , std::string progress ) = 0; virtual void OperationModeChanged(const std::string &path , OperationMode mode ) = 0; virtual void UsageModeChanged(const std::string &path , UsageMode mode ) = 0; virtual void BreakPostponed(const std::string &path , BreakId timer_id ) = 0; virtual void BreakSkipped(const std::string &path , BreakId timer_id ) = 0; }; #if defined(HAVE_TESTS) class org_workrave_DebugInterface { public: virtual ~org_workrave_DebugInterface() {} static org_workrave_DebugInterface *instance(const ::workrave::dbus::IDBus::Ptr dbus); }; #endif // defined(HAVE_TESTS) class org_workrave_ConfigInterface { public: virtual ~org_workrave_ConfigInterface() {} static org_workrave_ConfigInterface *instance(const ::workrave::dbus::IDBus::Ptr dbus); }; #endif // DBUS_DBUSWORKRAVE_HHworkrave-1.10.50/backend/src/Statistics.hh0000644000175100001710000001142714221624106017257 0ustar00gdm00000000000000// Statistics.hh // // Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2010 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef STATISTICS_HH #define STATISTICS_HH #include #include #include #include #include #include "IStatistics.hh" #include "IInputMonitorListener.hh" #include "Mutex.hh" // Forward declarion of external interface. namespace workrave { class IBreak; } class TimePred; class PacketBuffer; class Core; class IInputMonitor; using namespace workrave; using namespace std; #ifdef HAVE_DISTRIBUTION # include "IDistributionClientMessage.hh" # include "PacketBuffer.hh" #endif class Statistics : public IStatistics , public IInputMonitorListener #ifdef HAVE_DISTRIBUTION , public IDistributionClientMessage #endif { private: enum StatsMarker { STATS_MARKER_TODAY, STATS_MARKER_HISTORY, STATS_MARKER_END, STATS_MARKER_STARTTIME, STATS_MARKER_STOPTIME, STATS_MARKER_BREAK_STATS, STATS_MARKER_MISC_STATS, }; struct DailyStatsImpl : public DailyStats { //! Total time that the mouse was moving. gint64 total_mouse_time; DailyStatsImpl() { memset((void *)&start, 0, sizeof(start)); memset((void *)&stop, 0, sizeof(stop)); for (int i = 0; i < BREAK_ID_SIZEOF; i++) { for (int j = 0; j < STATS_BREAKVALUE_SIZEOF; j++) { break_stats[i][j] = 0; } } for (int j = 0; j < STATS_VALUE_SIZEOF; j++) { misc_stats[j] = 0; } // Empty marker. start.tm_year = 0; total_mouse_time = 0; } bool starts_at_date(int y, int m, int d); bool starts_before_date(int y, int m, int d); bool is_empty() const { return start.tm_year == 0; } }; typedef std::vector History; typedef std::vector::iterator HistoryIter; typedef std::vector::reverse_iterator HistoryRIter; public: //! Constructor. Statistics(); //! Destructor virtual ~Statistics(); bool delete_all_history(); public: void init(Core *core); void update(); void dump(); void start_new_day(); void increment_break_counter(BreakId, StatsBreakValueType st); void set_break_counter(BreakId bt, StatsBreakValueType st, int value); void add_break_counter(BreakId bt, StatsBreakValueType st, int value); DailyStatsImpl *get_current_day() const; DailyStatsImpl *get_day(int day) const; void get_day_index_by_date(int y, int m, int d, int &idx, int &next, int &prev) const; int get_history_size() const; void set_counter(StatsValueType t, int value); int64_t get_counter(StatsValueType t); private: void action_notify(); void mouse_notify(int x, int y, int wheel = 0); void button_notify(bool is_press); void keyboard_notify(bool repeat); bool load_current_day(); void update_current_day(bool active); void load_history(); private: void save_day(DailyStatsImpl *stats); void save_day(DailyStatsImpl *stats, std::ofstream &stats_file); void load(std::ifstream &infile, bool history); void day_to_history(DailyStatsImpl *stats); void day_to_remote_history(DailyStatsImpl *stats); void add_history(DailyStatsImpl *stats); #ifdef HAVE_DISTRIBUTION void init_distribution_manager(); bool request_client_message(DistributionClientMessageID id, PacketBuffer &buffer); bool client_message(DistributionClientMessageID id, bool master, const char *client_id, PacketBuffer &buffer); bool pack_stats(PacketBuffer &buffer, const DailyStatsImpl *stats); #endif private: //! Interface to the core_control. Core *core; //! Mouse/Keyboard monitoring. IInputMonitor *input_monitor; //! Last time a mouse event was received. gint64 last_mouse_time; //! Statistics of current day. DailyStatsImpl *current_day; //! Has the user been active on the current day? bool been_active; //! History History history; //! Internal locking Mutex lock; //! Previous X coordinate int prev_x; //! Previous Y coordinate int prev_y; //! Previous X-click coordinate int click_x; //! Previous Y-click coordinate int click_y; }; #endif // STATISTICS_HH workrave-1.10.50/backend/src/org.workrave.Workrave.service.in0000644000175100001710000000011214221624106023005 0ustar00gdm00000000000000[Workrave D-BUS Service] Name=org.workrave.Workrave Exec=@bindir@/workraveworkrave-1.10.50/backend/src/SocketDriver.hh0000644000175100001710000000661314221624106017532 0ustar00gdm00000000000000// SocketDriver.hh // // Copyright (C) 2002, 2003, 2005, 2007, 2010, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef SOCKETDRIVER_HH #define SOCKETDRIVER_HH class ISocket; class ISocketServer; #include "Exception.hh" using namespace workrave; //! Asynchronous socket callbacks. class ISocketListener { public: ISocketListener() {} virtual ~ISocketListener() {} //! The specified socket is now connected. virtual void socket_connected(ISocket *con, void *data) = 0; //! The specified socket has data ready to be read. virtual void socket_io(ISocket *con, void *data) = 0; //! The specified socket closed its connection. virtual void socket_closed(ISocket *con, void *data) = 0; }; //! Asynchronous server socket callbacks. class ISocketServerListener { public: ISocketServerListener() {} virtual ~ISocketServerListener() {} //! The specified server socket has accepted a new connection virtual void socket_accepted(ISocketServer *server, ISocket *con) = 0; }; //! TCP Socket. class ISocket { public: ISocket() : listener(NULL) { } virtual ~ISocket(){}; //! Create a connection to the specified host and port. virtual void connect(const std::string &hostname, int port) = 0; //! Read data from the connection. virtual void read(void *buf, int count, int &bytes_read) = 0; //! Write data to the connection virtual void write(void *buf, int count, int &bytes_written) = 0; //! Close the connection. virtual void close() = 0; //! Set the callback listener for asynchronous socket events. void set_listener(ISocketListener *l); //! Set user data void set_data(void *data); protected: //! Listener that received notifications of socket events. ISocketListener *listener; // User data for callback. void *user_data; }; //! TCP Listen ISocket. class ISocketServer { public: ISocketServer() : listener(NULL) { } virtual ~ISocketServer(){}; //! Listen at the specified port. /*! \pre set_listener called */ virtual void listen(int port) = 0; //! Sets the callback listener for asynchronous events. void set_listener(ISocketServerListener *l); protected: //! Listener that receives notification of accepted connections. ISocketServerListener *listener; }; //! TCP Socket abstraction. class SocketDriver { public: static SocketDriver *create(); virtual ~SocketDriver(){}; //! Create a new socket virtual ISocket *create_socket() = 0; //! Create a new listen socket virtual ISocketServer *create_server() = 0; }; //! Socket exception class SocketException : public Exception { public: explicit SocketException(const std::string &detail) : Exception(detail) { } virtual ~SocketException() throw() {} }; #include "SocketDriver.icc" #endif // SOCKETDRIVER_HH workrave-1.10.50/backend/src/DistributionManager.hh0000644000175100001710000001047414221624106021100 0ustar00gdm00000000000000// DistributionManager.hh // // Copyright (C) 2002, 2003, 2006, 2007, 2008, 2009, 2010 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifndef DISTRIBUTIOMANAGER_HH #define DISTRIBUTIOMANAGER_HH #include #include using namespace std; #include "IConfiguratorListener.hh" #include "IDistributionClientMessage.hh" #include "IDistributionManager.hh" using namespace workrave; namespace workrave { class IDistributionManager; class DistributionLogListener; } // namespace workrave class DistributionLink; class Configurator; class DistributionListener; class PacketBuffer; class DistributionManager : public IDistributionManager , public IConfiguratorListener { public: enum NodeState { NODE_ACTIVE, NODE_PASSIVE, NODE_STANDBY }; DistributionManager(); virtual ~DistributionManager(); NodeState get_state() const; void init(Configurator *conf); void heartbeart(); bool is_master() const; string get_master_id() const; string get_my_id() const; int get_number_of_peers(); bool claim(); bool set_lock_master(bool lock); bool connect(string url); bool disconnect(string id); bool register_client_message(DistributionClientMessageID id, DistributionClientMessageType type, IDistributionClientMessage *callback); bool unregister_client_message(DistributionClientMessageID id); bool add_listener(DistributionListener *listener); bool remove_listener(DistributionListener *listener); bool broadcast_client_message(DistributionClientMessageID id, PacketBuffer &buffer); bool add_peer(string peer); bool remove_peer(string peer); bool disconnect_all(); bool reconnect_all(); void set_peers(string peers, bool connect = true); list get_peers() const; // Logging. bool add_log_listener(DistributionLogListener *listener); bool remove_log_listener(DistributionLogListener *listener); list get_logs() const; bool get_enabled() const; void set_enabled(bool b); bool get_listening() const; void set_listening(bool b); string get_username() const; void set_username(string name); string get_password() const; void set_password(string name); int get_port() const; void set_port(int v); int get_reconnect_attempts() const; void set_reconnect_attempts(int v); int get_reconnect_interval() const; void set_reconnect_interval(int v); // DistributionLinkListener void master_changed(bool result, std::string id); void signon_remote_client(char *client_id); void signoff_remote_client(char *client_id); void log(const char *fmt, ...); private: void sanitize_peer(string &peer); void parse_peers(string peers, bool connect = true); void write_peers(); void read_configuration(); void config_changed_notify(const string &key); void fire_log_event(string message); void fire_signon_client(char *id); void fire_signoff_client(char *id); private: typedef std::list LogListeners; typedef std::list::iterator LogListenerIter; typedef std::list Listeners; typedef std::list::iterator ListenerIter; //! Is distribution operation enabled? bool network_enabled; bool server_enabled; //! Access to the configuration. Configurator *configurator; //! Link to other clients DistributionLink *link; //! Current State NodeState state; //! All peers list peer_urls; // ! All log messages list log_messages; //! Log listeners. LogListeners log_listeners; //! Event listeners. Listeners listeners; //! Current master. string current_master; }; #endif // DISTRIBUTIOMANAGER_HH workrave-1.10.50/backend/src/Core.hh0000644000175100001710000002151114221624106016010 0ustar00gdm00000000000000// Core.hh --- The main controller // // Copyright (C) 2001 - 2012 Rob Caelers & Raymond Penners // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef CORE_HH #define CORE_HH #include #include #include #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_UNISTD_H # include #endif #ifdef PLATFORM_OS_MACOS # include "MacOSHelpers.hh" #endif #include #include #include #include "Break.hh" #include "IBreakResponse.hh" #include "IActivityMonitor.hh" #include "ICore.hh" #include "ICoreEventListener.hh" #include "IConfiguratorListener.hh" #include "TimeSource.hh" #include "Timer.hh" #include "Statistics.hh" #include "Diagnostics.hh" #ifdef HAVE_DBUS # include "dbus/IDBus.hh" #endif using namespace workrave; // Forward declarion of external interface. namespace workrave { class ISoundPlayer; class IApp; class INetwork; } // namespace workrave class ActivityMonitor; class Configurator; class Statistics; class FakeActivityMonitor; class IdleLogManager; class BreakControl; #ifdef HAVE_DISTRIBUTION # include "DistributionManager.hh" # include "IDistributionClientMessage.hh" # include "DistributionListener.hh" #endif class Core : #ifdef HAVE_DISTRIBUTION public IDistributionClientMessage , public DistributionListener , #endif public TimeSource , public ICore , public IConfiguratorListener , public IBreakResponse { public: Core(); virtual ~Core(); static Core *get_instance(); Timer *get_timer(std::string name) const; Timer *get_timer(BreakId id) const; Break *get_break(BreakId id); Break *get_break(std::string name); Configurator *get_configurator() const; IActivityMonitor *get_activity_monitor() const; bool is_user_active() const; std::string get_break_stage(BreakId id); #ifdef HAVE_DISTRIBUTION DistributionManager *get_distribution_manager() const; #endif Statistics *get_statistics() const; void set_core_events_listener(ICoreEventListener *l); void force_break(BreakId id, BreakHint break_hint); void time_changed(); void set_powersave(bool down); time_t get_time() const; void post_event(CoreEvent event); OperationMode get_operation_mode(); OperationMode get_operation_mode_regular(); bool is_operation_mode_an_override(); void set_operation_mode(OperationMode mode); void set_operation_mode_override(OperationMode mode, const std::string &id); void remove_operation_mode_override(const std::string &id); UsageMode get_usage_mode(); void set_usage_mode(UsageMode mode); void set_freeze_all_breaks(bool freeze); void set_insensitive_mode_all_breaks(InsensitiveMode mode); void stop_prelude(BreakId break_id); void do_force_break(BreakId id, BreakHint break_hint); void freeze(); void defrost(); void force_idle(); void force_idle(BreakId break_id); ActivityState get_current_monitor_state() const; bool is_master() const; // DBus functions. void report_external_activity(std::string who, bool act); void is_timer_running(BreakId id, bool &value); void get_timer_elapsed(BreakId id, int *value); void get_timer_remaining(BreakId id, int *value); void get_timer_idle(BreakId id, int *value); void get_timer_overdue(BreakId id, int *value); // BreakResponseInterface void postpone_break(BreakId break_id); void skip_break(BreakId break_id); #ifdef HAVE_DBUS workrave::dbus::IDBus::Ptr get_dbus() { return dbus; } #endif private: #ifndef NDEBUG enum ScriptCommand { SCRIPT_START = 1, }; #endif void init(int argc, char **argv, IApp *application, const char *display_name); void init_breaks(); void init_configurator(); void init_monitor(const char *display_name); void init_distribution_manager(); void init_bus(); void init_statistics(); void load_monitor_config(); void config_changed_notify(const std::string &key); void heartbeat(); void timer_action(BreakId id, TimerInfo info); void process_distribution(); void process_state(); bool process_timewarp(); void process_timers(); void start_break(BreakId break_id, BreakId resume_this_break = BREAK_ID_NONE); void stop_all_breaks(); void daily_reset(); void save_state() const; void load_state(); void load_misc(); void do_postpone_break(BreakId break_id); void do_skip_break(BreakId break_id); void do_stop_prelude(BreakId break_id); void set_insist_policy(ICore::InsistPolicy p); ICore::InsistPolicy get_insist_policy() const; void set_operation_mode_internal(OperationMode mode, bool persistent, const std::string &override_id = ""); void set_usage_mode_internal(UsageMode mode, bool persistent); #ifdef HAVE_DISTRIBUTION bool request_client_message(DistributionClientMessageID id, PacketBuffer &buffer); bool client_message(DistributionClientMessageID id, bool master, const char *client_id, PacketBuffer &buffer); bool request_break_state(PacketBuffer &buffer); bool set_break_state(bool master, PacketBuffer &buffer); bool request_timer_state(PacketBuffer &buffer) const; bool set_timer_state(PacketBuffer &buffer); bool set_monitor_state(bool master, PacketBuffer &buffer); enum BreakControlMessage { BCM_POSTPONE, BCM_SKIP, BCM_ABORT_PRELUDE, BCM_START_BREAK, }; void send_break_control_message(BreakId break_id, BreakControlMessage message); void send_break_control_message_bool_param(BreakId break_id, BreakControlMessage message, bool param); bool set_break_control(PacketBuffer &buffer); void signon_remote_client(string client_id); void signoff_remote_client(string client_id); void compute_timers(); #endif // HAVE_DISTRIBUTION private: //! The one and only instance static Core *instance; //! Number of command line arguments passed to the program. int argc; //! Command line arguments passed to the program. char **argv; //! The current time. time_t current_time; //! The time we last processed the timers. time_t last_process_time; //! Are we the master node?? TracedField master_node; //! List of breaks. Break breaks[BREAK_ID_SIZEOF]; //! The Configurator. Configurator *configurator; //! The activity monitor ActivityMonitor *monitor; //! GUI Widget factory. IApp *application; //! The statistics collector. Statistics *statistics; //! Current operation mode. TracedField operation_mode; //! The same as operation_mode unless operation_mode is an override mode. TracedField operation_mode_regular; //! Active operation mode overrides. std::map operation_mode_overrides; //! Current usage mode. TracedField usage_mode; //! Where to send core events to? ICoreEventListener *core_event_listener; //! Did the OS announce a powersave? TracedField powersave; //! Time the OS announces a resume from powersave time_t powersave_resume_time; //! What to do with activity during insisted break? TracedField insist_policy; //! Policy currently in effect. TracedField active_insist_policy; //! Resumes this break if current break ends. TracedField resume_break; //! Current local monitor state. TracedField local_state; //! Current overall monitor state. TracedField monitor_state; #ifdef HAVE_DBUS //! DBUS bridge workrave::dbus::IDBus::Ptr dbus; #endif #ifdef HAVE_DISTRIBUTION //! The Distribution Manager DistributionManager *dist_manager; //! State of the remote master. TracedField remote_state; //! Manager that collects idle times of all clients. IdleLogManager *idlelog_manager; # ifndef NDEBUG //! A fake activity monitor for testing puposes. FakeActivityMonitor *fake_monitor; # endif #endif //! External activity std::map external_activity; #ifdef HAVE_TESTS friend class Test; #endif }; //! Returns the singleton Core instance. inline Core * Core::get_instance() { if (instance == NULL) { instance = new Core(); } return instance; } //! inline ActivityState Core::get_current_monitor_state() const { return monitor_state; } //! inline bool Core::is_master() const { return master_node; } #endif // CORE_HH workrave-1.10.50/backend/src/FakeActivityMonitor.hh0000644000175100001710000000341014221624106021051 0ustar00gdm00000000000000// FakeActivityMonitor.hh // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef FAKEACTIVITYMONITOR_HH #define FAKEACTIVITYMONITOR_HH #include "IActivityMonitor.hh" using namespace workrave; class FakeActivityMonitor : public IActivityMonitor { public: FakeActivityMonitor() : suspended(false) , state(ACTIVITY_IDLE) { } virtual ~FakeActivityMonitor() {} //! Stops the activity monitoring. void terminate() {} //! Suspends the activity monitoring. void suspend() { suspended = true; } //! Resumes the activity monitoring. void resume() { suspended = false; } //! Returns the current state ActivityState get_current_state() { if (suspended) { return ACTIVITY_SUSPENDED; } return state; } //! Force state to be idle. void force_idle() { state = ACTIVITY_IDLE; } void set_state(ActivityState s) { state = s; } void set_listener(ActivityMonitorListener *l) { (void)l; } private: //! Monitor suspended? bool suspended; //! Current state ActivityState state; }; #endif // FAKEACTIVITYMONITOR_HH workrave-1.10.50/backend/src/TimePred.hh0000644000175100001710000000355314221624106016637 0ustar00gdm00000000000000// TimePred.hh --- Time Predicate // // Copyright (C) 2001, 2002, 2003, 2005, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMEPRED_HH #define TIMEPRED_HH #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif //! A time predicate. /*! Given a previous time that matched, it computes the next time that matches * a certain time-predicate. This is used for, for example, daily limits. * Given the last daily limit (or the current time if there was no previous * daily limit), a time predicate computes the time of the next daily limit. * * This is base class for all time predicates (e.g. daily, weekly,...) */ class TimePred { public: virtual ~TimePred() {} //! Set the last time the predicate matched. virtual void set_last(time_t lastTime) { last_time = lastTime; } //! Computes the next time the predicate matches given the time of the previous match. virtual time_t get_next() = 0; //! Returns the string representation of this predicate. virtual std::string to_string() const = 0; protected: //! Last time the predicate matched. time_t last_time; }; #endif // TIMEPRED_HH workrave-1.10.50/backend/src/TimePredFactory.hh0000644000175100001710000000172114221624106020162 0ustar00gdm00000000000000// TimePredFactory.hh // // Copyright (C) 2001, 2002, 2007 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef TIMEPREDFACTORY_HH #define TIMEPREDFACTORY_HH #include class TimePred; class TimePredFactory { public: static TimePred *create_time_pred(std::string type); }; #endif // TIMEPREDFACTORY_HH workrave-1.10.50/backend/src/IActivityMonitor.hh0000644000175100001710000000422714221624106020402 0ustar00gdm00000000000000// IActivityMonitor.hh --- Interface definition for the Activity Monitor // // Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef IACTIVITYMONITOR_HH #define IACTIVITYMONITOR_HH #include #include class ActivityMonitorListener; //! State of the activity monitor. enum ActivityState { ACTIVITY_UNKNOWN, ACTIVITY_SUSPENDED, ACTIVITY_IDLE, ACTIVITY_NOISE, ACTIVITY_ACTIVE }; inline std::ostream & operator<<(std::ostream &stream, ActivityState mode) { switch (mode) { case ACTIVITY_UNKNOWN: stream << "unknown"; break; case ACTIVITY_SUSPENDED: stream << "suspended"; break; case ACTIVITY_IDLE: stream << "idle"; break; case ACTIVITY_NOISE: stream << "noise"; break; case ACTIVITY_ACTIVE: stream << "active"; break; } return stream; } //! Interface that all activity monitor implements. class IActivityMonitor { public: virtual ~IActivityMonitor() {} //! Stops the activity monitoring. virtual void terminate() = 0; //! Suspends the activity monitoring. virtual void suspend() = 0; //! Resumes the activity monitoring. virtual void resume() = 0; //! Returns the current state virtual ActivityState get_current_state() = 0; //! Force state to be idle. virtual void force_idle() = 0; //! Sets the callback for activity monitor events. virtual void set_listener(ActivityMonitorListener *l) = 0; }; #endif // IACTIVITYMONITOR_HH workrave-1.10.50/backend/src/ActivityMonitor.cc0000644000175100001710000001567714221624106020272 0ustar00gdm00000000000000// // Copyright (C) 2001 - 2010, 2012, 2013 Rob Caelers // Copyright (C) 2007 Ray Satiro // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "ActivityMonitor.hh" #include "ActivityMonitorListener.hh" #include "debug.hh" #include "timeutil.h" #include #include #include #include #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_UNISTD_H # include #endif #include "IInputMonitor.hh" #include "InputMonitorFactory.hh" using namespace std; //! Constructor. ActivityMonitor::ActivityMonitor() : prev_x(-10) , prev_y(-10) , button_is_pressed(false) , listener(NULL) { TRACE_ENTER("ActivityMonitor::ActivityMonitor"); first_action_time = 0; last_action_time = 0; noise_threshold = 1 * G_USEC_PER_SEC; activity_threshold = 2 * G_USEC_PER_SEC; idle_threshold = 5 * G_USEC_PER_SEC; input_monitor = InputMonitorFactory::get_monitor(IInputMonitorFactory::CAPABILITY_ACTIVITY); if (input_monitor != NULL) { input_monitor->subscribe_activity(this); } TRACE_EXIT(); } //! Destructor. ActivityMonitor::~ActivityMonitor() { TRACE_ENTER("ActivityMonitor::~ActivityMonitor"); delete input_monitor; TRACE_EXIT(); } //! Terminates the monitor. void ActivityMonitor::terminate() { TRACE_ENTER("ActivityMonitor::terminate"); if (input_monitor != NULL) { input_monitor->terminate(); } TRACE_EXIT(); } //! Suspends the activity monitoring. void ActivityMonitor::suspend() { TRACE_ENTER_MSG("ActivityMonitor::suspend", activity_state); lock.lock(); activity_state = ACTIVITY_SUSPENDED; lock.unlock(); activity_state.publish(); TRACE_RETURN(activity_state); } //! Resumes the activity monitoring. void ActivityMonitor::resume() { TRACE_ENTER_MSG("ActivityMonitor::resume", activity_state); lock.lock(); activity_state = ACTIVITY_IDLE; lock.unlock(); activity_state.publish(); TRACE_RETURN(activity_state); } //! Forces state te be idle. void ActivityMonitor::force_idle() { TRACE_ENTER_MSG("ActivityMonitor::force_idle", activity_state); lock.lock(); if (activity_state != ACTIVITY_SUSPENDED) { activity_state = ACTIVITY_IDLE; last_action_time = 0; } lock.unlock(); activity_state.publish(); TRACE_RETURN(activity_state); } //! Returns the current state ActivityState ActivityMonitor::get_current_state() { TRACE_ENTER_MSG("ActivityMonitor::get_current_state", activity_state); lock.lock(); // First update the state... if (activity_state == ACTIVITY_ACTIVE) { gint64 now = g_get_real_time(); gint64 tv = now - last_action_time; TRACE_MSG("Active: " << (tv / G_USEC_PER_SEC) << "." << tv << " " << (idle_threshold / G_USEC_PER_SEC) << " " << idle_threshold); if (tv > idle_threshold) { // No longer active. activity_state = ACTIVITY_IDLE; } } lock.unlock(); activity_state.publish(); TRACE_RETURN(activity_state); return activity_state; } //! Sets the operation parameters. void ActivityMonitor::set_parameters(int noise, int activity, int idle, int sensitivity) { noise_threshold = noise * 1000; activity_threshold = activity * 1000; ; idle_threshold = idle * 1000; this->sensitivity = sensitivity; // The easy way out. activity_state = ACTIVITY_IDLE; } //! Sets the operation parameters. void ActivityMonitor::get_parameters(int &noise, int &activity, int &idle, int &sensitivity) { noise = noise_threshold / 1000; activity = activity_threshold / 1000; idle = idle_threshold / 1000; sensitivity = this->sensitivity; } //! Shifts the internal time (after system clock has been set) void ActivityMonitor::shift_time(int delta) { gint64 d = delta * G_USEC_PER_SEC; Diagnostics::instance().log("activity_monitor: shift"); lock.lock(); if (last_action_time != 0) last_action_time += d; if (first_action_time != 0) first_action_time += d; lock.unlock(); } //! Sets the callback listener. void ActivityMonitor::set_listener(ActivityMonitorListener *l) { lock.lock(); listener = l; lock.unlock(); } //! Activity is reported by the input monitor. void ActivityMonitor::action_notify() { lock.lock(); gint64 now = g_get_real_time(); switch (activity_state) { case ACTIVITY_IDLE: { first_action_time = now; last_action_time = now; if (activity_threshold == 0) { activity_state = ACTIVITY_ACTIVE; } else { activity_state = ACTIVITY_NOISE; } } break; case ACTIVITY_NOISE: { gint64 tv = now - last_action_time; if (tv > noise_threshold) { first_action_time = now; } else { tv = now - first_action_time; if (tv >= activity_threshold) { activity_state = ACTIVITY_ACTIVE; } } } break; default: break; } last_action_time = now; lock.unlock(); call_listener(); } //! Mouse activity is reported by the input monitor. void ActivityMonitor::mouse_notify(int x, int y, int wheel_delta) { lock.lock(); const int delta_x = x - prev_x; const int delta_y = y - prev_y; prev_x = x; prev_y = y; if (abs(delta_x) >= sensitivity || abs(delta_y) >= sensitivity || wheel_delta != 0 || button_is_pressed) { action_notify(); } lock.unlock(); } //! Mouse button activity is reported by the input monitor. void ActivityMonitor::button_notify(bool is_press) { lock.lock(); button_is_pressed = is_press; if (is_press) { action_notify(); } lock.unlock(); } //! Keyboard activity is reported by the input monitor. void ActivityMonitor::keyboard_notify(bool repeat) { (void)repeat; lock.lock(); action_notify(); lock.unlock(); } //! Calls the callback listener. void ActivityMonitor::call_listener() { ActivityMonitorListener *l = NULL; lock.lock(); l = listener; lock.unlock(); if (l != NULL) { // Listener is set. if (!l->action_notify()) { // Remove listener. lock.lock(); listener = NULL; lock.unlock(); } } } workrave-1.10.50/backend/Makefile.in0000644000000000000000000005521514221624200017151 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src test include all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/test/0000755000000000000000000000000014221624436016066 5ustar00rootroot00000000000000workrave-1.10.50/backend/test/Makefile.in0000644000000000000000000004061714221624200020130 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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@ # Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007 Rob Caelers & Raymond Penners # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = backend/test ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = *.pyc all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign backend/test/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign backend/test/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/backend/test/Makefile.am0000644000175100001710000000025114221624106017021 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2001, 2002, 2003, 2006, 2007 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = *.pyc workrave-1.10.50/backend/Makefile.am0000644000175100001710000000027714221624106016052 0ustar00gdm00000000000000# Process this file with automake to produce Makefile.in # # Copyright (C) 2002, 2003, 2008 Rob Caelers & Raymond Penners # MAINTAINERCLEANFILES = Makefile.in SUBDIRS = src test include workrave-1.10.50/config.h.in0000644000000000000000000001737514221624177015562 0ustar00rootroot00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* All available languages */ #undef ALL_LINGUAS /* Dont */ #undef BUILD_INCLUDED_LIBINTL /* Define if PULSE sound server should be used */ #undef CONFIG_PULSE /* Where services dir for DBUS is */ #undef DBUS_SERVICES_DIR /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define to the gettext domain name. */ #undef GETTEXT_PACKAGE /* GIT Version */ #undef GIT_VERSION /* Define for debugging purposes */ #undef GLIBCPP_FORCE_NEW /* Define for debugging purposes */ #undef GLIBCXX_FORCE_NEW /* Define if GTK+ is available */ #undef HAVE_APP_GTK /* Define if Text is available */ #undef HAVE_APP_TEXT /* define if the Boost library is available */ #undef HAVE_BOOST /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* define if the compiler supports basic C++11 syntax */ #undef HAVE_CXX11 /* DBus support */ #undef HAVE_DBUS /* DBusmenu header in new location */ #undef HAVE_DBUSMENU_NEW_INCLUDES /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define if network-distributed operation is available */ #undef HAVE_DISTRIBUTION /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define if we have DirectSound */ #undef HAVE_DSOUND /* Define to 1 if you have the header file. */ #undef HAVE_DXERR8_H /* Define to 1 if you have the header file. */ #undef HAVE_DXERR_H /* Define to 1 if you have the header file. */ #undef HAVE_ERRNO_H /* Define if exercises are available */ #undef HAVE_EXERCISES /* Define if experimental features are available */ #undef HAVE_EXPERIMENTAL /* "External timezone" */ #undef HAVE_EXTERN_TIMEZONE /* "External timezone" */ #undef HAVE_EXTERN_TIMEZONE_DEFINED /* Define if GConf is available */ #undef HAVE_GCONF /* Define if GDome is available */ #undef HAVE_GDOME /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY /* Have GIO networking support */ #undef HAVE_GIO_NET /* Define if GLib is available */ #undef HAVE_GLIB /* Define if GNet is available */ #undef HAVE_GNET /* Define if GNet2 is available */ #undef HAVE_GNET2 /* Have GSettings */ #undef HAVE_GSETTINGS /* Use GStreamer for playing sounds */ #undef HAVE_GSTREAMER /* Support for GTK2 */ #undef HAVE_GTK2 /* Support for GTK3 */ #undef HAVE_GTK3 /* Define if we have gtk-mac-integration 2.0+ */ #undef HAVE_GTK_MAC_INTEGRATION /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define if we have ige-mac-integration 0.6+ */ #undef HAVE_IGE_MAC_INTEGRATION /* Support for indicator applet */ #undef HAVE_INDICATOR /* Support for ayatana indicator applet */ #undef HAVE_INDICATOR_AYATANA /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define if we have IOKit */ #undef HAVE_IOKIT /* "IShellDispatch" */ #undef HAVE_ISHELLDISPATCH /* Define if the UI language can be defined in the preferences */ #undef HAVE_LANGUAGE_SELECTION /* Support for GNOME Panel applet */ #undef HAVE_LIBGNOME_PANEL /* Define to 1 if you have the `resolv' library (-lresolv). */ #undef HAVE_LIBRESOLV /* Support for mate applet */ #undef HAVE_MATE /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define if we have mm device api */ #undef HAVE_MMDEVICEAPI_H /* "Enabled activity monitors" */ #undef HAVE_MONITORS /* Define to 1 if you have the `nanosleep' function. */ #undef HAVE_NANOSLEEP /* Support for Gnome panel applet v4/v5 */ #undef HAVE_PANELAPPLET /* Support for Gnome panel applet v4 */ #undef HAVE_PANELAPPLET4 /* Support for Gnome panel applet v5 */ #undef HAVE_PANELAPPLET5 /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH /* Define if XScreenSaver is available. */ #undef HAVE_SCREENSAVER /* Define to 1 if you have the `select' function. */ #undef HAVE_SELECT /* Define to 1 if you have the `setlocale' function. */ #undef HAVE_SETLOCALE /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* struct MOUSEHOOKSTRUCT */ #undef HAVE_STRUCT_MOUSEHOOKSTRUCT /* struct MOUSEHOOKSTRUCTEX */ #undef HAVE_STRUCT_MOUSEHOOKSTRUCTEX /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SELECT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define if test code is enabled */ #undef HAVE_TESTS /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Support for xfce applet */ #undef HAVE_XFCE /* Support for xfce applet */ #undef HAVE_XFCE_GTK2 /* Support for xfce applet */ #undef HAVE_XFCE_GTK3 /* Define if the RECORD extension is available */ #undef HAVE_XRECORD /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define if debugging code should be disabled */ #undef NDEBUG /* 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 /* Define if compiling for the OS X platform */ #undef PLATFORM_OS_MACOS /* Define if compiling for a Unix platform */ #undef PLATFORM_OS_UNIX /* Define if compiling for the Win32 platform */ #undef PLATFORM_OS_WINDOWS /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define to enable method call tracing */ #undef TRACING /* Dont */ #undef USE_INCLUDED_LIBINTL /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Version number of package */ #undef VERSION /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE /* Windows version */ #undef _WIN32_IE /* Windows version */ #undef _WIN32_WINNT /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif workrave-1.10.50/config.sub0000755000000000000000000010645014221624200015476 0ustar00rootroot00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2018 Free Software Foundation, Inc. timestamp='2018-02-22' # 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 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception 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 Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # 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: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # 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 or ALIAS Canonicalize a configuration name. Options: -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 1992-2018 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-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ kopensolaris*-gnu* | cloudabi*-eabi* | \ 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/'` ;; -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 | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | 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 \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]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 \ | visium \ | wasm32 \ | 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 ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; 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-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | 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-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pru-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | 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-* \ | visium-* \ | wasm32-* \ | 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-pc 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 ;; asmjs) basic_machine=asmjs-unknown ;; 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*) basic_machine=m68k-bull os=-sysv3 ;; e500v[12]) basic_machine=powerpc-unknown os=$os"spe" ;; e500v[12]-*) basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=$os"spe" ;; 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 ;; 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 ;; 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 ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-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 ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-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 ;; nsv-tandem) basic_machine=nsv-tandem ;; nsx-tandem) basic_machine=nsx-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) 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) 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 | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) 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 ;; sh5el) basic_machine=sh5le-unknown ;; 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 ;; x64) basic_machine=x86_64-pc ;; 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 ;; 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 ;; 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 ;; 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 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # es1800 is here to avoid being matched by es* (a different OS) -es1800*) os=-ose ;; # Now 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* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -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* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ | -midnightbsd*) # 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 | -xray | -os68k* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* \ | -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 ;; -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 ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -pikeos*) # Until real need of OS specific support for # particular features comes up, bare metal # configurations are quite functional. case $basic_machine in arm*) os=-eabi ;; *) os=-elf ;; esac ;; -nacl*) ;; -ios) ;; -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 ;; c8051-*) os=-elf ;; 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 ;; pru-*) os=-elf ;; *-be) os=-beos ;; *-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 ;; *-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-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: workrave-1.10.50/aclocal.m40000644000000000000000000033230414221624176015366 0ustar00rootroot00000000000000# generated automatically by aclocal 1.16.1 -*- Autoconf -*- # Copyright (C) 1996-2018 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_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) 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'.])]) # =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_boost_base.html # =========================================================================== # # SYNOPSIS # # AX_BOOST_BASE([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # DESCRIPTION # # Test for the Boost C++ libraries of a particular version (or newer) # # If no path to the installed boost library is given the macro searchs # under /usr, /usr/local, /opt and /opt/local and evaluates the # $BOOST_ROOT environment variable. Further documentation is available at # . # # This macro calls: # # AC_SUBST(BOOST_CPPFLAGS) / AC_SUBST(BOOST_LDFLAGS) # # And sets: # # HAVE_BOOST # # LICENSE # # Copyright (c) 2008 Thomas Porschberg # Copyright (c) 2009 Peter Adolphs # # 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 any # warranty. #serial 45 # example boost program (need to pass version) m4_define([_AX_BOOST_BASE_PROGRAM], [AC_LANG_PROGRAM([[ #include ]],[[ (void) ((void)sizeof(char[1 - 2*!!((BOOST_VERSION) < ($1))])); ]])]) AC_DEFUN([AX_BOOST_BASE], [ AC_ARG_WITH([boost], [AS_HELP_STRING([--with-boost@<:@=ARG@:>@], [use Boost library from a standard location (ARG=yes), from the specified location (ARG=), or disable it (ARG=no) @<:@ARG=yes@:>@ ])], [ AS_CASE([$withval], [no],[want_boost="no";_AX_BOOST_BASE_boost_path=""], [yes],[want_boost="yes";_AX_BOOST_BASE_boost_path=""], [want_boost="yes";_AX_BOOST_BASE_boost_path="$withval"]) ], [want_boost="yes"]) AC_ARG_WITH([boost-libdir], [AS_HELP_STRING([--with-boost-libdir=LIB_DIR], [Force given directory for boost libraries. Note that this will override library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located.])], [ AS_IF([test -d "$withval"], [_AX_BOOST_BASE_boost_lib_path="$withval"], [AC_MSG_ERROR([--with-boost-libdir expected directory name])]) ], [_AX_BOOST_BASE_boost_lib_path=""]) BOOST_LDFLAGS="" BOOST_CPPFLAGS="" AS_IF([test "x$want_boost" = "xyes"], [_AX_BOOST_BASE_RUNDETECT([$1],[$2],[$3])]) AC_SUBST(BOOST_CPPFLAGS) AC_SUBST(BOOST_LDFLAGS) ]) # convert a version string in $2 to numeric and affect to polymorphic var $1 AC_DEFUN([_AX_BOOST_BASE_TONUMERICVERSION],[ AS_IF([test "x$2" = "x"],[_AX_BOOST_BASE_TONUMERICVERSION_req="1.20.0"],[_AX_BOOST_BASE_TONUMERICVERSION_req="$2"]) _AX_BOOST_BASE_TONUMERICVERSION_req_shorten=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '\([[0-9]]*\.[[0-9]]*\)'` _AX_BOOST_BASE_TONUMERICVERSION_req_major=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '\([[0-9]]*\)'` AS_IF([test "x$_AX_BOOST_BASE_TONUMERICVERSION_req_major" = "x"], [AC_MSG_ERROR([You should at least specify libboost major version])]) _AX_BOOST_BASE_TONUMERICVERSION_req_minor=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '[[0-9]]*\.\([[0-9]]*\)'` AS_IF([test "x$_AX_BOOST_BASE_TONUMERICVERSION_req_minor" = "x"], [_AX_BOOST_BASE_TONUMERICVERSION_req_minor="0"]) _AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'` AS_IF([test "X$_AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor" = "X"], [_AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor="0"]) _AX_BOOST_BASE_TONUMERICVERSION_RET=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req_major \* 100000 \+ $_AX_BOOST_BASE_TONUMERICVERSION_req_minor \* 100 \+ $_AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor` AS_VAR_SET($1,$_AX_BOOST_BASE_TONUMERICVERSION_RET) ]) dnl Run the detection of boost should be run only if $want_boost AC_DEFUN([_AX_BOOST_BASE_RUNDETECT],[ _AX_BOOST_BASE_TONUMERICVERSION(WANT_BOOST_VERSION,[$1]) succeeded=no AC_REQUIRE([AC_CANONICAL_HOST]) dnl On 64-bit systems check for system libraries in both lib64 and lib. dnl The former is specified by FHS, but e.g. Debian does not adhere to dnl this (as it rises problems for generic multi-arch support). dnl The last entry in the list is chosen by default when no libraries dnl are found, e.g. when only header-only libraries are installed! AS_CASE([${host_cpu}], [x86_64],[libsubdirs="lib64 libx32 lib lib64"], [ppc64|powerpc64|s390x|sparc64|aarch64|ppc64le|powerpc64le|riscv64],[libsubdirs="lib64 lib lib64"], [libsubdirs="lib"] ) dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give dnl them priority over the other paths since, if libs are found there, they dnl are almost assuredly the ones desired. AS_CASE([${host_cpu}], [i?86],[multiarch_libsubdir="lib/i386-${host_os}"], [multiarch_libsubdir="lib/${host_cpu}-${host_os}"] ) dnl first we check the system location for boost libraries dnl this location ist chosen if boost libraries are installed with the --layout=system option dnl or if you install boost with RPM AS_IF([test "x$_AX_BOOST_BASE_boost_path" != "x"],[ AC_MSG_CHECKING([for boostlib >= $1 ($WANT_BOOST_VERSION) includes in "$_AX_BOOST_BASE_boost_path/include"]) AS_IF([test -d "$_AX_BOOST_BASE_boost_path/include" && test -r "$_AX_BOOST_BASE_boost_path/include"],[ AC_MSG_RESULT([yes]) BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path/include" for _AX_BOOST_BASE_boost_path_tmp in $multiarch_libsubdir $libsubdirs; do AC_MSG_CHECKING([for boostlib >= $1 ($WANT_BOOST_VERSION) lib path in "$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp"]) AS_IF([test -d "$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp" && test -r "$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp" ],[ AC_MSG_RESULT([yes]) BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp"; break; ], [AC_MSG_RESULT([no])]) done],[ AC_MSG_RESULT([no])]) ],[ if test X"$cross_compiling" = Xyes; then search_libsubdirs=$multiarch_libsubdir else search_libsubdirs="$multiarch_libsubdir $libsubdirs" fi for _AX_BOOST_BASE_boost_path_tmp in /usr /usr/local /opt /opt/local ; do if test -d "$_AX_BOOST_BASE_boost_path_tmp/include/boost" && test -r "$_AX_BOOST_BASE_boost_path_tmp/include/boost" ; then for libsubdir in $search_libsubdirs ; do if ls "$_AX_BOOST_BASE_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path_tmp/$libsubdir" BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path_tmp/include" break; fi done ]) dnl overwrite ld flags if we have required special directory with dnl --with-boost-libdir parameter AS_IF([test "x$_AX_BOOST_BASE_boost_lib_path" != "x"], [BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_lib_path"]) AC_MSG_CHECKING([for boostlib >= $1 ($WANT_BOOST_VERSION)]) CPPFLAGS_SAVED="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" export CPPFLAGS LDFLAGS_SAVED="$LDFLAGS" LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" export LDFLAGS AC_REQUIRE([AC_PROG_CXX]) AC_LANG_PUSH(C++) AC_COMPILE_IFELSE([_AX_BOOST_BASE_PROGRAM($WANT_BOOST_VERSION)],[ AC_MSG_RESULT(yes) succeeded=yes found_system=yes ],[ ]) AC_LANG_POP([C++]) dnl if we found no boost with system layout we search for boost libraries dnl built and installed without the --layout=system option or for a staged(not installed) version if test "x$succeeded" != "xyes" ; then CPPFLAGS="$CPPFLAGS_SAVED" LDFLAGS="$LDFLAGS_SAVED" BOOST_CPPFLAGS= if test -z "$_AX_BOOST_BASE_boost_lib_path" ; then BOOST_LDFLAGS= fi _version=0 if test -n "$_AX_BOOST_BASE_boost_path" ; then if test -d "$_AX_BOOST_BASE_boost_path" && test -r "$_AX_BOOST_BASE_boost_path"; then for i in `ls -d $_AX_BOOST_BASE_boost_path/include/boost-* 2>/dev/null`; do _version_tmp=`echo $i | sed "s#$_AX_BOOST_BASE_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` V_CHECK=`expr $_version_tmp \> $_version` if test "x$V_CHECK" = "x1" ; then _version=$_version_tmp fi VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path/include/boost-$VERSION_UNDERSCORE" done dnl if nothing found search for layout used in Windows distributions if test -z "$BOOST_CPPFLAGS"; then if test -d "$_AX_BOOST_BASE_boost_path/boost" && test -r "$_AX_BOOST_BASE_boost_path/boost"; then BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path" fi fi dnl if we found something and BOOST_LDFLAGS was unset before dnl (because "$_AX_BOOST_BASE_boost_lib_path" = ""), set it here. if test -n "$BOOST_CPPFLAGS" && test -z "$BOOST_LDFLAGS"; then for libsubdir in $libsubdirs ; do if ls "$_AX_BOOST_BASE_boost_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path/$libsubdir" fi fi else if test "x$cross_compiling" != "xyes" ; then for _AX_BOOST_BASE_boost_path in /usr /usr/local /opt /opt/local ; do if test -d "$_AX_BOOST_BASE_boost_path" && test -r "$_AX_BOOST_BASE_boost_path" ; then for i in `ls -d $_AX_BOOST_BASE_boost_path/include/boost-* 2>/dev/null`; do _version_tmp=`echo $i | sed "s#$_AX_BOOST_BASE_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` V_CHECK=`expr $_version_tmp \> $_version` if test "x$V_CHECK" = "x1" ; then _version=$_version_tmp best_path=$_AX_BOOST_BASE_boost_path fi done fi done VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" if test -z "$_AX_BOOST_BASE_boost_lib_path" ; then for libsubdir in $libsubdirs ; do if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$best_path/$libsubdir" fi fi if test -n "$BOOST_ROOT" ; then for libsubdir in $libsubdirs ; do if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'` V_CHECK=`expr $stage_version_shorten \>\= $_version` if test "x$V_CHECK" = "x1" && test -z "$_AX_BOOST_BASE_boost_lib_path" ; then AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT) BOOST_CPPFLAGS="-I$BOOST_ROOT" BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" fi fi fi fi CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" export CPPFLAGS LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" export LDFLAGS AC_LANG_PUSH(C++) AC_COMPILE_IFELSE([_AX_BOOST_BASE_PROGRAM($WANT_BOOST_VERSION)],[ AC_MSG_RESULT(yes) succeeded=yes found_system=yes ],[ ]) AC_LANG_POP([C++]) fi if test "x$succeeded" != "xyes" ; then if test "x$_version" = "x0" ; then AC_MSG_NOTICE([[We could not detect the boost libraries (version $1 or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation.]]) else AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).]) fi # execute ACTION-IF-NOT-FOUND (if present): ifelse([$3], , :, [$3]) else AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available]) # execute ACTION-IF-FOUND (if present): ifelse([$2], , :, [$2]) fi CPPFLAGS="$CPPFLAGS_SAVED" LDFLAGS="$LDFLAGS_SAVED" ]) # =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html # =========================================================================== # # SYNOPSIS # # AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS], [INPUT]) # # DESCRIPTION # # Check whether the given FLAG works with the current language's compiler # or gives an error. (Warnings, however, are ignored) # # ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on # success/failure. # # If EXTRA-FLAGS is defined, it is added to the current language's default # flags (e.g. CFLAGS) when the check is done. The check is thus made with # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to # force the compiler to issue an error when a bad flag is given. # # INPUT gives an alternative input source to AC_COMPILE_IFELSE. # # NOTE: Implementation based on AX_CFLAGS_GCC_OPTION. Please keep this # macro in sync with AX_CHECK_{PREPROC,LINK}_FLAG. # # LICENSE # # Copyright (c) 2008 Guido U. Draheim # Copyright (c) 2011 Maarten Bosmans # # 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 any # warranty. #serial 6 AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [ ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1" AC_COMPILE_IFELSE([m4_default([$5],[AC_LANG_PROGRAM()])], [AS_VAR_SET(CACHEVAR,[yes])], [AS_VAR_SET(CACHEVAR,[no])]) _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags]) AS_VAR_IF(CACHEVAR,yes, [m4_default([$2], :)], [m4_default([$3], :)]) AS_VAR_POPDEF([CACHEVAR])dnl ])dnl AX_CHECK_COMPILE_FLAGS # =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html # =========================================================================== # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX(VERSION, [ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the specified # version of the C++ standard. If necessary, add switches to CXX and # CXXCPP to enable support. VERSION may be '11' (for the C++11 standard) # or '14' (for the C++14 standard). # # The second argument, if specified, indicates whether you insist on an # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g. # -std=c++11). If neither is specified, you get whatever works, with # preference for an extended mode. # # The third argument, if specified 'mandatory' or if left unspecified, # indicates that baseline support for the specified C++ standard is # required and that the macro should error out if no mode with that # support is found. If specified 'optional', then configuration proceeds # regardless, after defining HAVE_CXX${VERSION} if and only if a # supporting mode is found. # # LICENSE # # Copyright (c) 2008 Benjamin Kosnik # Copyright (c) 2012 Zack Weinberg # Copyright (c) 2013 Roy Stogner # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov # Copyright (c) 2015 Paul Norman # Copyright (c) 2015 Moritz Klammler # Copyright (c) 2016, 2018 Krzesimir Nowak # # 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 any # warranty. #serial 10 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro dnl (serial version number 13). AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"], [$1], [14], [ax_cxx_compile_alternatives="14 1y"], [$1], [17], [ax_cxx_compile_alternatives="17 1z"], [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl m4_if([$2], [], [], [$2], [ext], [], [$2], [noext], [], [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX])])dnl m4_if([$3], [], [ax_cxx_compile_cxx$1_required=true], [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true], [$3], [optional], [ax_cxx_compile_cxx$1_required=false], [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])]) AC_LANG_PUSH([C++])dnl ac_success=no m4_if([$2], [noext], [], [dnl if test x$ac_success = xno; then for alternative in ${ax_cxx_compile_alternatives}; do switch="-std=gnu++${alternative}" cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, [ac_save_CXX="$CXX" CXX="$CXX $switch" AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], [eval $cachevar=yes], [eval $cachevar=no]) CXX="$ac_save_CXX"]) if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done fi]) m4_if([$2], [ext], [], [dnl if test x$ac_success = xno; then dnl HP's aCC needs +std=c++11 according to: dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf dnl Cray's crayCC needs "-h std=c++11" for alternative in ${ax_cxx_compile_alternatives}; do for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, [ac_save_CXX="$CXX" CXX="$CXX $switch" AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], [eval $cachevar=yes], [eval $cachevar=no]) CXX="$ac_save_CXX"]) if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done if test x$ac_success = xyes; then break fi done fi]) AC_LANG_POP([C++]) if test x$ax_cxx_compile_cxx$1_required = xtrue; then if test x$ac_success = xno; then AC_MSG_ERROR([*** A compiler with support for C++$1 language features is required.]) fi fi if test x$ac_success = xno; then HAVE_CXX$1=0 AC_MSG_NOTICE([No compiler with C++$1 support was found]) else HAVE_CXX$1=1 AC_DEFINE(HAVE_CXX$1,1, [define if the compiler supports basic C++$1 syntax]) fi AC_SUBST(HAVE_CXX$1) ]) dnl Test body for checking C++11 support m4_define([_AX_CXX_COMPILE_STDCXX_testbody_11], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 ) dnl Test body for checking C++14 support m4_define([_AX_CXX_COMPILE_STDCXX_testbody_14], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 ) m4_define([_AX_CXX_COMPILE_STDCXX_testbody_17], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 _AX_CXX_COMPILE_STDCXX_testbody_new_in_17 ) dnl Tests for new features in C++11 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_11], [[ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual void f() {} }; struct Derived : public Base { virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L ]]) dnl Tests for new features in C++14 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_14], [[ // If the compiler admits that it is not ready for C++14, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201402L #error "This is not a C++14 compiler" #else namespace cxx14 { namespace test_polymorphic_lambdas { int test() { const auto lambda = [](auto&&... args){ const auto istiny = [](auto x){ return (sizeof(x) == 1UL) ? 1 : 0; }; const int aretiny[] = { istiny(args)... }; return aretiny[0]; }; return lambda(1, 1L, 1.0f, '1'); } } namespace test_binary_literals { constexpr auto ivii = 0b0000000000101010; static_assert(ivii == 42, "wrong value"); } namespace test_generalized_constexpr { template < typename CharT > constexpr unsigned long strlen_c(const CharT *const s) noexcept { auto length = 0UL; for (auto p = s; *p; ++p) ++length; return length; } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("x") == 1UL, ""); static_assert(strlen_c("test") == 4UL, ""); static_assert(strlen_c("another\0test") == 7UL, ""); } namespace test_lambda_init_capture { int test() { auto x = 0; const auto lambda1 = [a = x](int b){ return a + b; }; const auto lambda2 = [a = lambda1(x)](){ return a; }; return lambda2(); } } namespace test_digit_separators { constexpr auto ten_million = 100'000'000; static_assert(ten_million == 100000000, ""); } namespace test_return_type_deduction { auto f(int& x) { return x; } decltype(auto) g(int& x) { return x; } template < typename T1, typename T2 > struct is_same { static constexpr auto value = false; }; template < typename T > struct is_same { static constexpr auto value = true; }; int test() { auto x = 0; static_assert(is_same::value, ""); static_assert(is_same::value, ""); return x; } } } // namespace cxx14 #endif // __cplusplus >= 201402L ]]) dnl Tests for new features in C++17 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_17], [[ // If the compiler admits that it is not ready for C++17, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201703L #error "This is not a C++17 compiler" #else #include #include #include namespace cxx17 { namespace test_constexpr_lambdas { constexpr int foo = [](){return 42;}(); } namespace test::nested_namespace::definitions { } namespace test_fold_expression { template int multiply(Args... args) { return (args * ... * 1); } template bool all(Args... args) { return (args && ...); } } namespace test_extended_static_assert { static_assert (true); } namespace test_auto_brace_init_list { auto foo = {5}; auto bar {5}; static_assert(std::is_same, decltype(foo)>::value); static_assert(std::is_same::value); } namespace test_typename_in_template_template_parameter { template typename X> struct D; } namespace test_fallthrough_nodiscard_maybe_unused_attributes { int f1() { return 42; } [[nodiscard]] int f2() { [[maybe_unused]] auto unused = f1(); switch (f1()) { case 17: f1(); [[fallthrough]]; case 42: f1(); } return f1(); } } namespace test_extended_aggregate_initialization { struct base1 { int b1, b2 = 42; }; struct base2 { base2() { b3 = 42; } int b3; }; struct derived : base1, base2 { int d; }; derived d1 {{1, 2}, {}, 4}; // full initialization derived d2 {{}, {}, 4}; // value-initialized bases } namespace test_general_range_based_for_loop { struct iter { int i; int& operator* () { return i; } const int& operator* () const { return i; } iter& operator++() { ++i; return *this; } }; struct sentinel { int i; }; bool operator== (const iter& i, const sentinel& s) { return i.i == s.i; } bool operator!= (const iter& i, const sentinel& s) { return !(i == s); } struct range { iter begin() const { return {0}; } sentinel end() const { return {5}; } }; void f() { range r {}; for (auto i : r) { [[maybe_unused]] auto v = i; } } } namespace test_lambda_capture_asterisk_this_by_value { struct t { int i; int foo() { return [*this]() { return i; }(); } }; } namespace test_enum_class_construction { enum class byte : unsigned char {}; byte foo {42}; } namespace test_constexpr_if { template int f () { if constexpr(cond) { return 13; } else { return 42; } } } namespace test_selection_statement_with_initializer { int f() { return 13; } int f2() { if (auto i = f(); i > 0) { return 3; } switch (auto i = f(); i + 4) { case 17: return 2; default: return 1; } } } namespace test_template_argument_deduction_for_class_templates { template struct pair { pair (T1 p1, T2 p2) : m1 {p1}, m2 {p2} {} T1 m1; T2 m2; }; void f() { [[maybe_unused]] auto p = pair{13, 42u}; } } namespace test_non_type_auto_template_parameters { template struct B {}; B<5> b1; B<'a'> b2; } namespace test_structured_bindings { int arr[2] = { 1, 2 }; std::pair pr = { 1, 2 }; auto f1() -> int(&)[2] { return arr; } auto f2() -> std::pair& { return pr; } struct S { int x1 : 2; volatile double y1; }; S f3() { return {}; } auto [ x1, y1 ] = f1(); auto& [ xr1, yr1 ] = f1(); auto [ x2, y2 ] = f2(); auto& [ xr2, yr2 ] = f2(); const auto [ x3, y3 ] = f3(); } namespace test_exception_spec_type_system { struct Good {}; struct Bad {}; void g1() noexcept; void g2(); template Bad f(T*, T*); template Good f(T1*, T2*); static_assert (std::is_same_v); } namespace test_inline_variables { template void f(T) {} template inline T g(T) { return T{}; } template<> inline void f<>(int) {} template<> int g<>(int) { return 5; } } } // namespace cxx17 #endif // __cplusplus < 201703L ]]) # ============================================================================= # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html # ============================================================================= # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX_11([ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the C++11 # standard; if necessary, add switches to CXX and CXXCPP to enable # support. # # This macro is a convenience alias for calling the AX_CXX_COMPILE_STDCXX # macro with the version set to C++11. The two optional arguments are # forwarded literally as the second and third argument respectively. # Please see the documentation for the AX_CXX_COMPILE_STDCXX macro for # more information. If you want to use this macro, you also need to # download the ax_cxx_compile_stdcxx.m4 file. # # LICENSE # # Copyright (c) 2008 Benjamin Kosnik # Copyright (c) 2012 Zack Weinberg # Copyright (c) 2013 Roy Stogner # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov # Copyright (c) 2015 Paul Norman # Copyright (c) 2015 Moritz Klammler # # 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 any # warranty. #serial 18 AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX]) AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX([11], [$1], [$2])]) # =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_python_module.html # =========================================================================== # # SYNOPSIS # # AX_PYTHON_MODULE(modname[, fatal, python]) # # DESCRIPTION # # Checks for Python module. # # If fatal is non-empty then absence of a module will trigger an error. # The third parameter can either be "python" for Python 2 or "python3" for # Python 3; defaults to Python 3. # # LICENSE # # Copyright (c) 2008 Andrew Collier # # 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 any # warranty. #serial 9 AU_ALIAS([AC_PYTHON_MODULE], [AX_PYTHON_MODULE]) AC_DEFUN([AX_PYTHON_MODULE],[ if test -z $PYTHON; then if test -z "$3"; then PYTHON="python3" else PYTHON="$3" fi fi PYTHON_NAME=`basename $PYTHON` AC_MSG_CHECKING($PYTHON_NAME module: $1) $PYTHON -c "import $1" 2>/dev/null if test $? -eq 0; then AC_MSG_RESULT(yes) eval AS_TR_CPP(HAVE_PYMOD_$1)=yes else AC_MSG_RESULT(no) eval AS_TR_CPP(HAVE_PYMOD_$1)=no # if test -n "$2" then AC_MSG_ERROR(failed to find required module $1) exit 1 fi fi ]) # Increment this whenever this file is changed. #serial 2 dnl GLIB_GSETTINGS dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether dnl the schema should be compiled dnl AC_DEFUN([GLIB_GSETTINGS], [ dnl We can't use PKG_PREREQ because that needs 0.29. m4_ifndef([PKG_PROG_PKG_CONFIG], [pkg.m4 version 0.28 or later is required]) m4_pattern_allow([AM_V_GEN]) AC_ARG_ENABLE(schemas-compile, AS_HELP_STRING([--disable-schemas-compile], [Disable regeneration of gschemas.compiled on install]), [case ${enableval} in yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; esac]) AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) PKG_PROG_PKG_CONFIG([0.16]) AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) AS_IF([test x$cross_compiling != xyes], [PKG_CHECK_VAR([GLIB_COMPILE_SCHEMAS], [gio-2.0], [glib_compile_schemas])], [AC_PATH_PROG([GLIB_COMPILE_SCHEMAS], [glib-compile-schemas])]) AC_SUBST(GLIB_COMPILE_SCHEMAS) if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) else ifelse([$1],,[:],[$1]) fi GSETTINGS_RULES=' .PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas mostlyclean-am: clean-gsettings-schemas gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) %.gschema.valid: %.gschema.xml $(gsettings__enum_file) $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && touch [$]@ all-am: $(gsettings_SCHEMAS:.xml=.valid) uninstall-am: uninstall-gsettings-schemas install-data-am: install-gsettings-schemas .SECONDARY: $(gsettings_SCHEMAS) install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) @$(NORMAL_INSTALL) if test -n "$^"; then \ test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ fi uninstall-gsettings-schemas: @$(NORMAL_UNINSTALL) @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ test -n "$$files" || exit 0; \ echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) clean-gsettings-schemas: rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) ifdef gsettings_ENUM_NAMESPACE $(gsettings__enum_file): $(gsettings_ENUM_FILES) $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ endif ' _GSETTINGS_SUBST(GSETTINGS_RULES) ]) dnl _GSETTINGS_SUBST(VARIABLE) dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST AC_DEFUN([_GSETTINGS_SUBST], [ AC_SUBST([$1]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) ] ) dnl -*- mode: autoconf -*- dnl Copyright 2009 Johan Dahlin dnl dnl This file is free software; the author(s) gives unlimited dnl permission to copy and/or distribute it, with or without dnl modifications, as long as this notice is preserved. dnl # serial 1 dnl This is a copy of AS_AC_EXPAND dnl dnl (C) 2003, 2004, 2005 Thomas Vander Stichele dnl Copying and distribution of this file, with or without modification, dnl are permitted in any medium without royalty provided the copyright dnl notice and this notice are preserved. m4_define([_GOBJECT_INTROSPECTION_AS_AC_EXPAND], [ EXP_VAR=[$1] FROM_VAR=[$2] dnl first expand prefix and exec_prefix if necessary prefix_save=$prefix exec_prefix_save=$exec_prefix dnl if no prefix given, then use /usr/local, the default prefix if test "x$prefix" = "xNONE"; then prefix="$ac_default_prefix" fi dnl if no exec_prefix given, then use prefix if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi full_var="$FROM_VAR" dnl loop until it doesn't change anymore while true; do new_full_var="`eval echo $full_var`" if test "x$new_full_var" = "x$full_var"; then break; fi full_var=$new_full_var done dnl clean up full_var=$new_full_var AC_SUBST([$1], "$full_var") dnl restore prefix and exec_prefix prefix=$prefix_save exec_prefix=$exec_prefix_save ]) m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL], [ AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([LT_INIT],[$0])dnl setup libtool first dnl enable/disable introspection m4_if([$2], [require], [dnl enable_introspection=yes ],[dnl AC_ARG_ENABLE(introspection, AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]], [Enable introspection for this build]),, [enable_introspection=auto]) ])dnl AC_MSG_CHECKING([for gobject-introspection]) dnl presence/version checking AS_CASE([$enable_introspection], [no], [dnl found_introspection="no (disabled, use --enable-introspection to enable)" ],dnl [yes],[dnl PKG_CHECK_EXISTS([gobject-introspection-1.0],, AC_MSG_ERROR([gobject-introspection-1.0 is not installed])) PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME])) ],dnl [auto],[dnl PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no) dnl Canonicalize enable_introspection enable_introspection=$found_introspection ],dnl [dnl AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@]) ])dnl AC_MSG_RESULT([$found_introspection]) dnl expand datadir/libdir so we can pass them to pkg-config dnl and get paths relative to our target directories _GOBJECT_INTROSPECTION_AS_AC_EXPAND(_GI_EXP_DATADIR, "$datadir") _GOBJECT_INTROSPECTION_AS_AC_EXPAND(_GI_EXP_LIBDIR, "$libdir") INTROSPECTION_SCANNER= INTROSPECTION_COMPILER= INTROSPECTION_GENERATE= INTROSPECTION_GIRDIR= INTROSPECTION_TYPELIBDIR= if test "x$found_introspection" = "xyes"; then INTROSPECTION_SCANNER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0` INTROSPECTION_COMPILER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0` INTROSPECTION_GENERATE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0` INTROSPECTION_GIRDIR=`$PKG_CONFIG --define-variable=datadir="${_GI_EXP_DATADIR}" --variable=girdir gobject-introspection-1.0` INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --define-variable=libdir="${_GI_EXP_LIBDIR}" --variable=typelibdir gobject-introspection-1.0)" INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0` INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0` INTROSPECTION_MAKEFILE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection fi AC_SUBST(INTROSPECTION_SCANNER) AC_SUBST(INTROSPECTION_COMPILER) AC_SUBST(INTROSPECTION_GENERATE) AC_SUBST(INTROSPECTION_GIRDIR) AC_SUBST(INTROSPECTION_TYPELIBDIR) AC_SUBST(INTROSPECTION_CFLAGS) AC_SUBST(INTROSPECTION_LIBS) AC_SUBST(INTROSPECTION_MAKEFILE) AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes") ]) dnl Usage: dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version]) AC_DEFUN([GOBJECT_INTROSPECTION_CHECK], [ _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1]) ]) dnl Usage: dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version]) AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE], [ _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require]) ]) dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- dnl serial 11 (pkg-config-0.29.1) dnl dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. 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 ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl 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]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. 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 ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. 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 ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl 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 ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR # Copyright (C) 2002-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16' 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.16.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.1])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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_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], [AC_LANG_PUSH([C]) 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 ]) AC_LANG_POP([C])]) 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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$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-2018 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. # 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", "OBJC", "OBJCXX", "UPC", or "GJC". # 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 m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" 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 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) 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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _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. # This creates each '.Po' and '.Plo' makefile fragment that we'll 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" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2018 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 macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # 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.65])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], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) 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], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [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([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). 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])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro 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 # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) 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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2018 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. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_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 is modern enough. # If it is, 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 --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for 'mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl FIXME we are no longer going to remove this! adjust warning dnl FIXME message accordingly. AC_DIAGNOSE([obsolete], [$0: this macro is deprecated, and will soon be removed. You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead, and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.]) 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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_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])]) # Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 dnl python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl python3.2 python3.1 python3.0 dnl python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version is >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) AC_MSG_ERROR([Python interpreter is too old])]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[[:3]] == '2.7': can_use_sysconfig = 0 except ImportError: pass" dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_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], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) 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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_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-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_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}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/gettext.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intlmacosx.m4]) m4_include([m4/intltool.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/progtest.m4]) m4_include([acinclude.m4]) workrave-1.10.50/configure0000755000000000000000000354147614221624177015455 0ustar00rootroot00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for workrave 1.10.50. # # 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 \$(( 1 + 1 )) = 2 || 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" 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: https://github.com/rcaelers/workrave/issues about your $0: system, including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script 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='workrave' PACKAGE_TARNAME='workrave' PACKAGE_VERSION='1.10.50' PACKAGE_STRING='workrave 1.10.50' PACKAGE_BUGREPORT='https://github.com/rcaelers/workrave/issues' PACKAGE_URL='http://www.workrave.org' ac_unique_file="backend/include/ICore.hh" # 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" gt_needs= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS HAVE_APP_TEXT_FALSE HAVE_APP_TEXT_TRUE HAVE_EXPERIMENTAL_FALSE HAVE_EXPERIMENTAL_TRUE HAVE_EXERCISES_FALSE HAVE_EXERCISES_TRUE HAVE_TESTS_FALSE HAVE_TESTS_TRUE WR_BACKEND_INCLUDES WR_COMMON_INCLUDES WR_FRONTEND_COMMON_INCLUDES WR_LDFLAGS WR_LDADD ENABLE_MANUAL_FALSE ENABLE_MANUAL_TRUE XMLTO JW ALL_LINGUAS INTLTOOL_PERL INTLTOOL_POLICY_RULE INTLTOOL_SERVICE_RULE INTLTOOL_THEME_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_CAVES_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_XML_RULE INTLTOOL_KBD_RULE INTLTOOL_XAM_RULE INTLTOOL_UI_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_SHEET_RULE INTLTOOL_SERVER_RULE INTLTOOL_PONG_RULE INTLTOOL_OAF_RULE INTLTOOL_PROP_RULE INTLTOOL_KEYS_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_DESKTOP_RULE intltool__v_merge_options_0 intltool__v_merge_options_ INTLTOOL_V_MERGE_OPTIONS INTLTOOL__v_MERGE_0 INTLTOOL__v_MERGE_ INTLTOOL_V_MERGE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE GETTEXT_PACKAGE POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV INTL_MACOSX_LIBS XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION USE_NLS CONFIG_PULSE_FALSE CONFIG_PULSE_TRUE PULSE_LIBS PULSE_CFLAGS GSTREAMER_LIBS GSTREAMER_CFLAGS HAVE_GNET_FALSE HAVE_GNET_TRUE HAVE_DISTRIBUTION_FALSE HAVE_DISTRIBUTION_TRUE GNET_LIBS GNET_CFLAGS HAVE_GDOME_FALSE HAVE_GDOME_TRUE GDOME_LIBS GDOME_CFLAGS HAVE_GCONF_FALSE HAVE_GCONF_TRUE GCONF_LIBS GCONF_CFLAGS HAVE_GTK2_FALSE HAVE_GTK2_TRUE GTK2_LIBS GTK2_CFLAGS HAVE_MATE_GTK3_FALSE HAVE_MATE_GTK3_TRUE HAVE_MATE_GTK2_FALSE HAVE_MATE_GTK2_TRUE HAVE_MATE_FALSE HAVE_MATE_TRUE LIBMATEPANEL_LIBS LIBMATEPANEL_CFLAGS HAVE_XFCE_GTK3_FALSE HAVE_XFCE_GTK3_TRUE HAVE_XFCE_GTK2_FALSE HAVE_XFCE_GTK2_TRUE HAVE_XFCE_FALSE HAVE_XFCE_TRUE XFCE4LIBDIR LIBXFCE4PANEL_LIBS LIBXFCE4PANEL_CFLAGS HAVE_INDICATOR_FALSE HAVE_INDICATOR_TRUE INDICATORICONSDIR INDICATORDIR LOCALINSTALL_FALSE LOCALINSTALL_TRUE INDICATOR_LIBS INDICATOR_CFLAGS HAVE_INTROSPECTION_FALSE HAVE_INTROSPECTION_TRUE INTROSPECTION_MAKEFILE INTROSPECTION_LIBS INTROSPECTION_CFLAGS INTROSPECTION_TYPELIBDIR INTROSPECTION_GIRDIR INTROSPECTION_GENERATE INTROSPECTION_COMPILER INTROSPECTION_SCANNER _GI_EXP_LIBDIR _GI_EXP_DATADIR HAVE_GTK3_FALSE HAVE_GTK3_TRUE HAVE_APP_GTKMM_FALSE HAVE_APP_GTKMM_TRUE GTK_LIBS GTK_CFLAGS HAVE_GSETTINGS_FALSE HAVE_GSETTINGS_TRUE GSETTINGS_RULES GLIB_COMPILE_SCHEMAS gsettingsschemadir GSETTINGS_DISABLE_SCHEMAS_COMPILE GLIB_LIBS GLIB_CFLAGS HAVE_LIBGNOME_PANEL_FALSE HAVE_LIBGNOME_PANEL_TRUE HAVE_PANELAPPLET5_FALSE HAVE_PANELAPPLET5_TRUE HAVE_PANELAPPLET4_FALSE HAVE_PANELAPPLET4_TRUE HAVE_PANELAPPLET_FALSE HAVE_PANELAPPLET_TRUE LIBGNOME_PANEL_MODULES_DIR GNOME3_LIBS GNOME3_CFLAGS HAVE_PYTHON_JINJA2_FALSE HAVE_PYTHON_JINJA2_TRUE HAVE_DBUS_FALSE HAVE_DBUS_TRUE pkgpyexecdir pyexecdir pkgpythondir pythondir PYTHON_PLATFORM PYTHON_EXEC_PREFIX PYTHON_PREFIX PYTHON_VERSION PYTHON DBUS_SERVICES_DIR DATADIR BOOST_LDFLAGS BOOST_CPPFLAGS GIO_LIBS GIO_CFLAGS X11SM_LIBS X11SM_CFLAGS X_EXTRA_LIBS X_LIBS X_PRE_LIBS X_CFLAGS XMKMF IGE_LIBS IGE_CFLAGS MacOS_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG HAVE_DSOUND_FALSE HAVE_DSOUND_TRUE DIRECTSOUNDLIBS WIN32CONSOLE LIBSTDCPP_LIBS HAVE_LANGUAGE_SELECTION_FALSE HAVE_LANGUAGE_SELECTION_TRUE PLATFORM_OS_UNIX_FALSE PLATFORM_OS_UNIX_TRUE PLATFORM_OS_MACOS_FALSE PLATFORM_OS_MACOS_TRUE PLATFORM_OS_WINDOWS_FALSE PLATFORM_OS_WINDOWS_TRUE ac_prefix_program RESOURCE_VERSION ISODATE HAVE_CXX11 WINDRES M4 CXXCPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED LIBTOOL LN_S am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX am__fastdepOBJCXX_FALSE am__fastdepOBJCXX_TRUE OBJCXXDEPMODE ac_ct_OBJCXX OBJCXXFLAGS OBJCXX am__fastdepOBJC_FALSE am__fastdepOBJC_TRUE OBJCDEPMODE ac_ct_OBJC OBJCFLAGS OBJC ac_ct_AR AR EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC GNOME_SHELL_VERSION AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V 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_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_app_gtk enable_app_text enable_xml enable_gconf enable_gsettings enable_gnome3 enable_indicator enable_xfce enable_mate enable_dbus enable_gstreamer enable_pulse enable_debug enable_distribution enable_experimental enable_exercises enable_tests enable_tracing enable_monitors enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock with_x with_boost with_boost_libdir enable_schemas_compile enable_introspection enable_localinstall enable_nls enable_rpath with_libiconv_prefix with_libintl_prefix enable_manual ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP OBJC OBJCFLAGS OBJCXX OBJCXXFLAGS CXX CXXFLAGS CCC LT_SYS_LIBRARY_PATH CXXCPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR IGE_CFLAGS IGE_LIBS XMKMF X11SM_CFLAGS X11SM_LIBS GIO_CFLAGS GIO_LIBS PYTHON GNOME3_CFLAGS GNOME3_LIBS GLIB_CFLAGS GLIB_LIBS GLIB_COMPILE_SCHEMAS GTK_CFLAGS GTK_LIBS INDICATOR_CFLAGS INDICATOR_LIBS LIBXFCE4PANEL_CFLAGS LIBXFCE4PANEL_LIBS LIBMATEPANEL_CFLAGS LIBMATEPANEL_LIBS GTK2_CFLAGS GTK2_LIBS GCONF_CFLAGS GCONF_LIBS GDOME_CFLAGS GDOME_LIBS GNET_CFLAGS GNET_LIBS GSTREAMER_CFLAGS GSTREAMER_LIBS PULSE_CFLAGS PULSE_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' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # 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 ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$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 runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $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 workrave 1.10.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/workrave] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of workrave 1.10.50:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --disable-app-gtk compile without Gtk support (NOT recommended) --enable-app-text compile with dummy text GUI support (NOT recommended) --disable-xml compile without XML support --enable-gconf compile with Gnome gconf2 support --disable-gsettings compile without GSettings support --disable-gnome3 compile without Gnome 3 support --enable-indicator compile with Unity/Ayatana indicator applet support --enable-xfce compile with preliminary XFCE applet support --enable-mate compile with preliminary MATE applet support --disable-dbus compile without DBus support --disable-gstreamer compile without GStreamer audio support --disable-pulse compile without PulseAudio support --enable-debug compile with debugging flags set --disable-distribution compile without support for distributed operation --enable-experimental compile with experimental features --disable-exercises compile without exercises support --enable-tests compile with test code --enable-tracing compile with method call tracing --enable-monitors=LIST comma separated list of activity monitors to use, currently support: record, screensaver, x11events (Unix Only) [default=yes] --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --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) --disable-schemas-compile Disable regeneration of gschemas.compiled on install --enable-introspection=[no/auto/yes] Enable introspection for this build --enable-localinstall install all of the files localy instead of system directories (for distcheck) --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths --enable-manual Build user manual. Requires jw and xmlto binaries. 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-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-x use the X Window System --with-boost[=ARG] use Boost library from a standard location (ARG=yes), from the specified location (ARG=), or disable it (ARG=no) [ARG=yes] --with-boost-libdir=LIB_DIR Force given directory for boost libraries. Note that this will override library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located. --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir 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 OBJC Objective C compiler command OBJCFLAGS Objective C compiler flags OBJCXX Objective C++ compiler command OBJCXXFLAGS Objective C++ compiler flags CXX C++ compiler command CXXFLAGS C++ compiler flags LT_SYS_LIBRARY_PATH User-defined run-time library search path. CXXCPP 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 IGE_CFLAGS C compiler flags for IGE, overriding pkg-config IGE_LIBS linker flags for IGE, overriding pkg-config XMKMF Path to xmkmf, Makefile generator for X Window System X11SM_CFLAGS C compiler flags for X11SM, overriding pkg-config X11SM_LIBS linker flags for X11SM, overriding pkg-config GIO_CFLAGS C compiler flags for GIO, overriding pkg-config GIO_LIBS linker flags for GIO, overriding pkg-config PYTHON the Python interpreter GNOME3_CFLAGS C compiler flags for GNOME3, overriding pkg-config GNOME3_LIBS linker flags for GNOME3, overriding pkg-config GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config GLIB_LIBS linker flags for GLIB, overriding pkg-config GLIB_COMPILE_SCHEMAS value of glib_compile_schemas for gio-2.0, overriding pkg-config GTK_CFLAGS C compiler flags for GTK, overriding pkg-config GTK_LIBS linker flags for GTK, overriding pkg-config INDICATOR_CFLAGS C compiler flags for INDICATOR, overriding pkg-config INDICATOR_LIBS linker flags for INDICATOR, overriding pkg-config LIBXFCE4PANEL_CFLAGS C compiler flags for LIBXFCE4PANEL, overriding pkg-config LIBXFCE4PANEL_LIBS linker flags for LIBXFCE4PANEL, overriding pkg-config LIBMATEPANEL_CFLAGS C compiler flags for LIBMATEPANEL, overriding pkg-config LIBMATEPANEL_LIBS linker flags for LIBMATEPANEL, overriding pkg-config GTK2_CFLAGS C compiler flags for GTK2, overriding pkg-config GTK2_LIBS linker flags for GTK2, overriding pkg-config GCONF_CFLAGS C compiler flags for GCONF, overriding pkg-config GCONF_LIBS linker flags for GCONF, overriding pkg-config GDOME_CFLAGS C compiler flags for GDOME, overriding pkg-config GDOME_LIBS linker flags for GDOME, overriding pkg-config GNET_CFLAGS C compiler flags for GNET, overriding pkg-config GNET_LIBS linker flags for GNET, overriding pkg-config GSTREAMER_CFLAGS C compiler flags for GSTREAMER, overriding pkg-config GSTREAMER_LIBS linker flags for GSTREAMER, overriding pkg-config PULSE_CFLAGS C compiler flags for PULSE, overriding pkg-config PULSE_LIBS linker flags for PULSE, 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 . workrave home page: . _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 workrave configure 1.10.50 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_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_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 https://github.com/rcaelers/workrave/issues ## ## ---------------------------------------------------------- ##" ) | 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_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_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_objc_try_compile LINENO # ----------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_objc_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_objc_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_objc_try_compile # ac_fn_objcxx_try_compile LINENO # ------------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_objcxx_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_objcxx_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_objcxx_try_compile # ac_fn_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_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_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_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || 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_cxx_try_link # ac_fn_cxx_try_run LINENO # ------------------------ # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_cxx_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_run # ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES # --------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_cxx_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$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_cxx_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ---------------------------------------------------------- ## ## Report this to https://github.com/rcaelers/workrave/issues ## ## ---------------------------------------------------------- ##" ) | 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_cxx_check_header_mongrel # ac_fn_cxx_check_member LINENO AGGR MEMBER VAR INCLUDES # ------------------------------------------------------ # Tries to find if the field MEMBER exists in type AGGR, after including # INCLUDES, setting cache variable VAR accordingly. ac_fn_cxx_check_member () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 $as_echo_n "checking for $2.$3... " >&6; } if eval \${$4+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int main () { static $2 ac_aggr; if (ac_aggr.$3) return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : eval "$4=yes" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int main () { static $2 ac_aggr; if (sizeof ac_aggr.$3) return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : eval "$4=yes" else eval "$4=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 eval ac_res=\$$4 { $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_cxx_check_member # ac_fn_cxx_check_func LINENO FUNC VAR # ------------------------------------ # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_cxx_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_cxx_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_cxx_check_func # ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES # --------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_cxx_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$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_cxx_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_cxx_check_header_compile cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by workrave $as_me 1.10.50, 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 gt_needs="$gt_needs " # 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_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # 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 target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- ac_config_headers="$ac_config_headers config.h" am__api_version='1.16' # 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; } # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$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 --is-lightweight"; then am_missing_run="$MISSING " 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+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $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; } 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 # 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='\' 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='workrave' VERSION='1.10.50' 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"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar plaintar pax cpio none' # The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5 $as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; } if test $am_uid -le $am_max_uid; 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; } _am_tools=none fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5 $as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; } if test $am_gid -le $am_max_gid; 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; } _am_tools=none fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 $as_echo_n "checking how to create a ustar tar archive... " >&6; } # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_ustar-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do { echo "$as_me:$LINENO: $_am_tar --version" >&5 ($_am_tar --version) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && break done am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"' am__tar_="$_am_tar --format=ustar -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 ustar -w "$$tardir"' am__tar_='pax -L -x ustar -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H ustar -L' am__tar_='find "$tardir" -print | cpio -o -H ustar -L' am__untar='cpio -i -H ustar -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_ustar}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -rf conftest.dir if test -s conftest.tar; then { echo "$as_me:$LINENO: $am__untar &5 ($am__untar &5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: cat conftest.dir/file" >&5 (cat conftest.dir/file) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } grep GrepMe conftest.dir/file >/dev/null 2>&1 && break fi done rm -rf conftest.dir if ${am_cv_prog_tar_ustar+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_prog_tar_ustar=$_am_tool fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5 $as_echo "$am_cv_prog_tar_ustar" >&6; } # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi GNOME_SHELL_VERSION=3.26.1 if test -n "$WORKRAVE_GIT_VERSION"; then cat >>confdefs.h <<_ACEOF #define GIT_VERSION "$WORKRAVE_GIT_VERSION" _ACEOF fi if test "X$prefix" != "XNONE" ; then pkg_config_prefix="--define-variable=prefix=$prefix" fi # Check whether --enable-app-gtk was given. if test "${enable_app_gtk+set}" = set; then : enableval=$enable_app_gtk; fi # Check whether --enable-app-text was given. if test "${enable_app_text+set}" = set; then : enableval=$enable_app_text; fi # Check whether --enable-xml was given. if test "${enable_xml+set}" = set; then : enableval=$enable_xml; fi # Check whether --enable-gconf was given. if test "${enable_gconf+set}" = set; then : enableval=$enable_gconf; fi # Check whether --enable-gsettings was given. if test "${enable_gsettings+set}" = set; then : enableval=$enable_gsettings; fi # Check whether --enable-gnome3 was given. if test "${enable_gnome3+set}" = set; then : enableval=$enable_gnome3; fi # Check whether --enable-indicator was given. if test "${enable_indicator+set}" = set; then : enableval=$enable_indicator; fi # Check whether --enable-xfce was given. if test "${enable_xfce+set}" = set; then : enableval=$enable_xfce; fi # Check whether --enable-mate was given. if test "${enable_mate+set}" = set; then : enableval=$enable_mate; fi # Check whether --enable-dbus was given. if test "${enable_dbus+set}" = set; then : enableval=$enable_dbus; fi # Check whether --enable-gstreamer was given. if test "${enable_gstreamer+set}" = set; then : enableval=$enable_gstreamer; fi # Check whether --enable-pulse was given. if test "${enable_pulse+set}" = set; then : enableval=$enable_pulse; fi # Check whether --enable-debug was given. if test "${enable_debug+set}" = set; then : enableval=$enable_debug; fi # Check whether --enable-distribution was given. if test "${enable_distribution+set}" = set; then : enableval=$enable_distribution; fi # Check whether --enable-experimental was given. if test "${enable_experimental+set}" = set; then : enableval=$enable_experimental; fi # Check whether --enable-exercises was given. if test "${enable_exercises+set}" = set; then : enableval=$enable_exercises; fi # Check whether --enable-tests was given. if test "${enable_tests+set}" = set; then : enableval=$enable_tests; fi # Check whether --enable-tracing was given. if test "${enable_tracing+set}" = set; then : enableval=$enable_tracing; test "x$enable_tracing" = "xyes" && enable_debug=yes fi # Check whether --enable-monitors was given. if test "${enable_monitors+set}" = set; then : enableval=$enable_monitors; fi case x"$target" in xNONE | x) target_or_host="$host" ;; *) target_or_host="$target" ;; esac DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 $as_echo "${_am_result}" >&6; } # 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 ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_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. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $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 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $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 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 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 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu 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 { $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 ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_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. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $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 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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 ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR 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 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: $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 ac_ext=m ac_cpp='$OBJCPP $CPPFLAGS' ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_objc_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in gcc objcc objc cc CC 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_OBJC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJC"; then ac_cv_prog_OBJC="$OBJC" # 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_OBJC="$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 OBJC=$ac_cv_prog_OBJC if test -n "$OBJC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5 $as_echo "$OBJC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$OBJC" && break done fi if test -z "$OBJC"; then ac_ct_OBJC=$OBJC for ac_prog in gcc objcc objc cc CC 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_OBJC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJC"; then ac_cv_prog_ac_ct_OBJC="$ac_ct_OBJC" # 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_OBJC="$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_OBJC=$ac_cv_prog_ac_ct_OBJC if test -n "$ac_ct_OBJC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5 $as_echo "$ac_ct_OBJC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_OBJC" && break done if test "x$ac_ct_OBJC" = x; then OBJC="gcc" 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 OBJC=$ac_ct_OBJC fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C compiler" >&5 $as_echo_n "checking whether we are using the GNU Objective C compiler... " >&6; } if ${ac_cv_objc_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_objc_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_objc_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 $as_echo "$ac_cv_objc_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GOBJC=yes else GOBJC= fi ac_test_OBJCFLAGS=${OBJCFLAGS+set} ac_save_OBJCFLAGS=$OBJCFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 $as_echo_n "checking whether $OBJC accepts -g... " >&6; } if ${ac_cv_prog_objc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_objc_werror_flag=$ac_objc_werror_flag ac_objc_werror_flag=yes ac_cv_prog_objc_g=no OBJCFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objc_try_compile "$LINENO"; then : ac_cv_prog_objc_g=yes else OBJCFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objc_try_compile "$LINENO"; then : else ac_objc_werror_flag=$ac_save_objc_werror_flag OBJCFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objc_try_compile "$LINENO"; then : ac_cv_prog_objc_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_objc_werror_flag=$ac_save_objc_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 $as_echo "$ac_cv_prog_objc_g" >&6; } if test "$ac_test_OBJCFLAGS" = set; then OBJCFLAGS=$ac_save_OBJCFLAGS elif test $ac_cv_prog_objc_g = yes; then if test "$GOBJC" = yes; then OBJCFLAGS="-g -O2" else OBJCFLAGS="-g" fi else if test "$GOBJC" = yes; then OBJCFLAGS="-O2" else OBJCFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$OBJC" am_compiler_list='gcc3 gcc' { $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_OBJC_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_OBJC_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 for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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_OBJC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_OBJC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_OBJC_dependencies_compiler_type" >&5 $as_echo "$am_cv_OBJC_dependencies_compiler_type" >&6; } OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3; then am__fastdepOBJC_TRUE= am__fastdepOBJC_FALSE='#' else am__fastdepOBJC_TRUE='#' am__fastdepOBJC_FALSE= fi ac_ext=mm ac_cpp='$OBJCXXCPP $CPPFLAGS' ac_compile='$OBJCXX -c $OBJCXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$OBJCXX -o conftest$ac_exeext $OBJCXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_objcxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g++ objc++ objcxx c++ CXX 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_OBJCXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJCXX"; then ac_cv_prog_OBJCXX="$OBJCXX" # 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_OBJCXX="$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 OBJCXX=$ac_cv_prog_OBJCXX if test -n "$OBJCXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJCXX" >&5 $as_echo "$OBJCXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$OBJCXX" && break done fi if test -z "$OBJCXX"; then ac_ct_OBJCXX=$OBJCXX for ac_prog in g++ objc++ objcxx c++ CXX 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_OBJCXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJCXX"; then ac_cv_prog_ac_ct_OBJCXX="$ac_ct_OBJCXX" # 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_OBJCXX="$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_OBJCXX=$ac_cv_prog_ac_ct_OBJCXX if test -n "$ac_ct_OBJCXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJCXX" >&5 $as_echo "$ac_ct_OBJCXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_OBJCXX" && break done if test "x$ac_ct_OBJCXX" = x; then OBJCXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJCXX=$ac_ct_OBJCXX fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU Objective C++ compiler... " >&6; } if ${ac_cv_objcxx_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_objcxx_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_objcxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objcxx_compiler_gnu" >&5 $as_echo "$ac_cv_objcxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GOBJCXX=yes else GOBJCXX= fi ac_test_OBJCXXFLAGS=${OBJCXXFLAGS+set} ac_save_OBJCXXFLAGS=$OBJCXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJCXX accepts -g" >&5 $as_echo_n "checking whether $OBJCXX accepts -g... " >&6; } if ${ac_cv_prog_objcxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_objcxx_werror_flag=$ac_objcxx_werror_flag ac_objcxx_werror_flag=yes ac_cv_prog_objcxx_g=no OBJCXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objcxx_try_compile "$LINENO"; then : ac_cv_prog_objcxx_g=yes else OBJCXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objcxx_try_compile "$LINENO"; then : else ac_objcxx_werror_flag=$ac_save_objcxx_werror_flag OBJCXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_objcxx_try_compile "$LINENO"; then : ac_cv_prog_objcxx_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_objcxx_werror_flag=$ac_save_objcx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objcxx_g" >&5 $as_echo "$ac_cv_prog_objcxx_g" >&6; } if test "$ac_test_OBJCXXFLAGS" = set; then OBJCXXFLAGS=$ac_save_OBJCXXFLAGS elif test $ac_cv_prog_objcxx_g = yes; then if test "$GOBJCXX" = yes; then OBJCXXFLAGS="-g -O2" else OBJCXXFLAGS="-g" fi else if test "$GOBJCXX" = yes; then OBJCXXFLAGS="-O2" else OBJCXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$OBJCXX" am_compiler_list='gcc3 gcc' { $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_OBJCXX_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_OBJCXX_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 for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain 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_OBJCXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_OBJCXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_OBJCXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_OBJCXX_dependencies_compiler_type" >&6; } OBJCXXDEPMODE=depmode=$am_cv_OBJCXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_OBJCXX_dependencies_compiler_type" = gcc3; then am__fastdepOBJCXX_TRUE= am__fastdepOBJCXX_FALSE='#' else am__fastdepOBJCXX_TRUE='#' am__fastdepOBJCXX_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $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_cxx_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_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_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_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=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 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 { $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 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.6' macro_revision='2.4.6' 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 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 no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; 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 yes = "$with_gnu_ld"; 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 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $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 -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $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; } # 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; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac 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"} 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 yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac 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 # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/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. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' 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* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac 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 one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac 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=cr} { $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 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$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 no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $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 bitrig* | 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 ia64 = "$host_cpu"; 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 if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){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 $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5 if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $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 yes = "$pipe_works"; 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 yes = "$GCC"; 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; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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 what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; 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* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $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 yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $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 yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $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 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi 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 cr libconftest.a conftest.o" >&5 $AR cr 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 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM 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 yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } 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 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 # 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 # 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 shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # 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 func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $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 yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $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" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* 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 yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # flang / f18. f95 an alias for gfortran or flang on Debian flang* | f18* | f95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *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 that 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" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* 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 yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $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 yes = "$lt_cv_prog_compiler_static_works"; 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 no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; 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 no = "$hard_links"; 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 yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) 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 yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | 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, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${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 -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${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 yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | 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,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -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 yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $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 yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $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 yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi link_all_deplibs=no else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; 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* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $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 yes = "$GCC"; 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` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | 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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac 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=no 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${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 # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; 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* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $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 yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | 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 ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $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 no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $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 yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __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 yes = "$lt_cv_dlopen_self"; 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 yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __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 what 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 no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $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 yes = "$enable_shared" || 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 if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=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 else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext 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* # 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 compiler_CXX=$CC func_cc_basename $compiler cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; 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 yes = "$with_gnu_ld"; 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 # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$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' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -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 { $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; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec_CXX='$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_CXX=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} 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_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} 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_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' $wl-bernotok' allow_undefined_flag_CXX=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | 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. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # 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_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -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, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='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, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec_CXX='`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_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds_CXX="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_CXX="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" if test yes != "$lt_cv_apple_cc_single_mod"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" archive_expsym_cmds_CXX="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 ld_shlibs_CXX=no fi ;; os2*) hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_minus_L_CXX=yes allow_undefined_flag_CXX=unsupported shrext_cmds=.dll archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes_CXX=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$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 ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && 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. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then archive_cmds_CXX='$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 archive_cmds_CXX='$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 link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=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. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | 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."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='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`"' old_archive_cmds_CXX='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' archive_cmds_CXX='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' archive_expsym_cmds_CXX='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 archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`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 hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='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 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='$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_CXX=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. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='$wl-E' whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=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. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) archive_cmds_CXX='$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' ;; *) archive_cmds_CXX='$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 hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=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. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' fi hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='$wl-z,text' allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no GCC_CXX=$GXX LD_CXX=$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... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _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 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 # 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 x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX=$prev$p else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX=$prev$p else postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken 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. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-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_CXX='-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 lt_prog_compiler_pic_CXX='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static_CXX='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; 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_prog_compiler_pic_CXX=-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_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; 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). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-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_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac { $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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=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_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= 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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=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_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=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_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; 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 no = "$hard_links"; 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; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$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_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $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_CXX+:} 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_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | 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' ;; 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_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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac 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=no 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec_CXX='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${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_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_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 # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; 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* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $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_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test relink = "$hardcode_action_CXX" || test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" ac_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_commands="$ac_config_commands libtool" # Only expand once: for ac_prog in gm4 m4 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_M4+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$M4"; then ac_cv_prog_M4="$M4" # 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_M4="$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 M4=$ac_cv_prog_M4 if test -n "$M4"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $M4" >&5 $as_echo "$M4" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$M4" && break done test -n "$M4" || M4="m4" for ac_prog in ${target_or_host}-windres 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_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINDRES"; then ac_cv_prog_WINDRES="$WINDRES" # 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_WINDRES="$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 WINDRES=$ac_cv_prog_WINDRES if test -n "$WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 $as_echo "$WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$WINDRES" && break done test -n "$WINDRES" || WINDRES="false" ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac { $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_cxx_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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wno-cast-function-type" >&5 $as_echo_n "checking whether C++ compiler accepts -Wno-cast-function-type... " >&6; } if ${ax_cv_check_cxxflags___Wno_cast_function_type+:} false; then : $as_echo_n "(cached) " >&6 else ax_check_save_flags=$CXXFLAGS CXXFLAGS="$CXXFLAGS -Wno-cast-function-type" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_check_cxxflags___Wno_cast_function_type=yes else ax_cv_check_cxxflags___Wno_cast_function_type=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_check_save_flags fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wno_cast_function_type" >&5 $as_echo "$ax_cv_check_cxxflags___Wno_cast_function_type" >&6; } if test "x$ax_cv_check_cxxflags___Wno_cast_function_type" = xyes; then : CPPFLAGS="$CPPFLAGS -Wno-cast-function-type" else : fi ax_cxx_compile_alternatives="11 0x" ax_cxx_compile_cxx11_required=true ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_success=no if test x$ac_success = xno; then for alternative in ${ax_cxx_compile_alternatives}; do switch="-std=gnu++${alternative}" cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5 $as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; } if eval \${$cachevar+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_CXX="$CXX" CXX="$CXX $switch" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual void f() {} }; struct Derived : public Base { virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : eval $cachevar=yes else eval $cachevar=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXX="$ac_save_CXX" fi eval ac_res=\$$cachevar { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test x$ax_cxx_compile_cxx11_required = xtrue; then if test x$ac_success = xno; then as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5 fi fi if test x$ac_success = xno; then HAVE_CXX11=0 { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5 $as_echo "$as_me: No compiler with C++11 support was found" >&6;} else HAVE_CXX11=1 $as_echo "#define HAVE_CXX11 1" >>confdefs.h fi { $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_cxx_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_cxx_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 stdlib.h sys/time.h sys/select.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_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 ac_fn_cxx_check_member "$LINENO" "MOUSEHOOKSTRUCT" "hwnd" "ac_cv_member_MOUSEHOOKSTRUCT_hwnd" "#include " if test "x$ac_cv_member_MOUSEHOOKSTRUCT_hwnd" = xyes; then : $as_echo "#define HAVE_STRUCT_MOUSEHOOKSTRUCT /**/" >>confdefs.h fi ac_fn_cxx_check_member "$LINENO" "MOUSEHOOKSTRUCTEX" "mouseData" "ac_cv_member_MOUSEHOOKSTRUCTEX_mouseData" "#include " if test "x$ac_cv_member_MOUSEHOOKSTRUCTEX_mouseData" = xyes; then : $as_echo "#define HAVE_STRUCT_MOUSEHOOKSTRUCTEX /**/" >>confdefs.h fi have_ishelldispatch=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking IShellDispatch" >&5 $as_echo_n "checking IShellDispatch... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { IShellDispatch* pShellDispatch = NULL; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : have_ishelldispatch=yes $as_echo "#define HAVE_ISHELLDISPATCH 1" >>confdefs.h { $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 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext for ac_func in gettimeofday nanosleep select setlocale realpath do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_cxx_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 have_extern_timezone_defined=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking external timezone variable defined in time.h" >&5 $as_echo_n "checking external timezone variable defined in time.h... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { timezone += 1; return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : have_extern_timezone_defined=yes $as_echo "#define HAVE_EXTERN_TIMEZONE_DEFINED 1" >>confdefs.h { $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 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext have_extern_timezone=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking external timezone variable" >&5 $as_echo_n "checking external timezone variable... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { extern long timezone; timezone += 1; return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : have_extern_timezone=yes $as_echo "#define HAVE_EXTERN_TIMEZONE 1" >>confdefs.h { $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 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ISODATE=`date +%Y-%m-%d` RESOURCE_VERSION=1,10,50,0 if test "x$prefix" = xNONE; then $as_echo_n "checking for prefix by " >&6 # Extract the first word of "workrave", so it can be a program name with args. set dummy workrave; 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_prefix_program+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_prefix_program in [\\/]* | ?:[\\/]*) ac_cv_path_ac_prefix_program="$ac_prefix_program" # 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_prefix_program="$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_prefix_program=$ac_cv_path_ac_prefix_program if test -n "$ac_prefix_program"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prefix_program" >&5 $as_echo "$ac_prefix_program" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -n "$ac_prefix_program"; then prefix=`$as_dirname -- "$ac_prefix_program" || $as_expr X"$ac_prefix_program" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_prefix_program" : 'X\(//\)[^/]' \| \ X"$ac_prefix_program" : 'X\(//\)$' \| \ X"$ac_prefix_program" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_prefix_program" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` prefix=`$as_dirname -- "$prefix" || $as_expr X"$prefix" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$prefix" : 'X\(//\)[^/]' \| \ X"$prefix" : 'X\(//\)$' \| \ X"$prefix" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$prefix" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for platform" >&5 $as_echo_n "checking for platform... " >&6; } PLATFORM_OS_WINDOWS=no PLATFORM_OS_MACOS=no platform_os_unix=no platform_variant_x11=no case "$target_or_host" in *-*mingw*|*-*-mingw*|*-*-cygwin*) PLATFORM_OS_WINDOWS=yes platform_os_name="Windows" $as_echo "#define PLATFORM_OS_WINDOWS /**/" >>confdefs.h $as_echo "#define HAVE_LANGUAGE_SELECTION /**/" >>confdefs.h ;; *-*-darwin* | *-*-rhapsody*) PLATFORM_OS_MACOS=yes platform_os_name="OS X" $as_echo "#define PLATFORM_OS_MACOS /**/" >>confdefs.h ;; *) platform_os_unix=yes platform_os_name="Unix" $as_echo "#define PLATFORM_OS_UNIX /**/" >>confdefs.h ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $platform_os_name" >&5 $as_echo "$platform_os_name" >&6; } if test "x$PLATFORM_OS_WINDOWS" = "xyes"; then PLATFORM_OS_WINDOWS_TRUE= PLATFORM_OS_WINDOWS_FALSE='#' else PLATFORM_OS_WINDOWS_TRUE='#' PLATFORM_OS_WINDOWS_FALSE= fi if test "x$PLATFORM_OS_MACOS" = "xyes"; then PLATFORM_OS_MACOS_TRUE= PLATFORM_OS_MACOS_FALSE='#' else PLATFORM_OS_MACOS_TRUE='#' PLATFORM_OS_MACOS_FALSE= fi if test "x$platform_os_unix" = "xyes"; then PLATFORM_OS_UNIX_TRUE= PLATFORM_OS_UNIX_FALSE='#' else PLATFORM_OS_UNIX_TRUE='#' PLATFORM_OS_UNIX_FALSE= fi if test "x$PLATFORM_OS_WINDOWS" = "xyes"; then HAVE_LANGUAGE_SELECTION_TRUE= HAVE_LANGUAGE_SELECTION_FALSE='#' else HAVE_LANGUAGE_SELECTION_TRUE='#' HAVE_LANGUAGE_SELECTION_FALSE= fi config_debug=no config_tracing=no if test "x$enable_debug" = "xyes" then config_debug=yes CFLAGS="${CFLAGS} -O0 -g -Wall" CXXFLAGS="${CXXFLAGS} -O0 -g -Wall" LDFLAGS="${LDFLAGS} -g" $as_echo "#define GLIBCXX_FORCE_NEW /**/" >>confdefs.h $as_echo "#define GLIBCPP_FORCE_NEW /**/" >>confdefs.h else $as_echo "#define NDEBUG /**/" >>confdefs.h fi if test "x$enable_tracing" = "xyes" then config_tracing=yes $as_echo "#define TRACING /**/" >>confdefs.h fi have_dsound=no LIBSTDCPP_LIBS= WIN32CONSOLE= DIRECTSOUNDLIBS= if test "x$PLATFORM_OS_WINDOWS" = "xyes" then LIBSTDCPP_LIBS=-lstdc++ $as_echo "#define _WIN32_IE 0x0600" >>confdefs.h $as_echo "#define _WIN32_WINNT 0x0600" >>confdefs.h #if test "x$enable_debug" != "xyes" #then WIN32CONSOLE=-mwindows #else # WIN32CONSOLE=-mconsole #fi enable_gconf=no enable_gnome3=no enable_xml=no enable_indicator=no enable_xfce=no enable_mate=no ac_fn_cxx_check_header_mongrel "$LINENO" "dsound.h" "ac_cv_header_dsound_h" "$ac_includes_default" if test "x$ac_cv_header_dsound_h" = xyes; then : $as_echo "#define HAVE_DSOUND 1" >>confdefs.h have_dsound=yes DIRECTSOUNDLIBS="-ldsound -luuid -ldxguid -ldxerr8" fi for ac_header in dxerr.h dxerr8.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include " 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 cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include static REFIID foo = __uuidof(IAudioEndpointVolume); int main () { IMMDeviceEnumerator *device_enum = NULL; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : have_mmdeviceapi=yes $as_echo "#define HAVE_MMDEVICEAPI_H 1" >>confdefs.h { $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 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test "x$have_dsound" = "xyes"; then HAVE_DSOUND_TRUE= HAVE_DSOUND_FALSE='#' else HAVE_DSOUND_TRUE='#' HAVE_DSOUND_FALSE= fi 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 if test "x$PLATFORM_OS_MACOS" = "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IGE" >&5 $as_echo_n "checking for IGE... " >&6; } if test -n "$IGE_CFLAGS"; then pkg_cv_IGE_CFLAGS="$IGE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-mac-integration >= 2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-mac-integration >= 2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_CFLAGS=`$PKG_CONFIG --cflags "gtk-mac-integration >= 2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$IGE_LIBS"; then pkg_cv_IGE_LIBS="$IGE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-mac-integration >= 2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-mac-integration >= 2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_LIBS=`$PKG_CONFIG --libs "gtk-mac-integration >= 2.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 IGE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk-mac-integration >= 2.0" 2>&1` else IGE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk-mac-integration >= 2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$IGE_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IGE" >&5 $as_echo_n "checking for IGE... " >&6; } if test -n "$IGE_CFLAGS"; then pkg_cv_IGE_CFLAGS="$IGE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ige-mac-integration >= 0.6\""; } >&5 ($PKG_CONFIG --exists --print-errors "ige-mac-integration >= 0.6") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_CFLAGS=`$PKG_CONFIG --cflags "ige-mac-integration >= 0.6" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$IGE_LIBS"; then pkg_cv_IGE_LIBS="$IGE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ige-mac-integration >= 0.6\""; } >&5 ($PKG_CONFIG --exists --print-errors "ige-mac-integration >= 0.6") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_LIBS=`$PKG_CONFIG --libs "ige-mac-integration >= 0.6" 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 IGE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "ige-mac-integration >= 0.6" 2>&1` else IGE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "ige-mac-integration >= 0.6" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$IGE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (ige-mac-integration >= 0.6) were not met: $IGE_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 IGE_CFLAGS and IGE_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 IGE_CFLAGS and IGE_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 IGE_CFLAGS=$pkg_cv_IGE_CFLAGS IGE_LIBS=$pkg_cv_IGE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_IGE_MAC_INTEGRATION 1" >>confdefs.h fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IGE" >&5 $as_echo_n "checking for IGE... " >&6; } if test -n "$IGE_CFLAGS"; then pkg_cv_IGE_CFLAGS="$IGE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ige-mac-integration >= 0.6\""; } >&5 ($PKG_CONFIG --exists --print-errors "ige-mac-integration >= 0.6") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_CFLAGS=`$PKG_CONFIG --cflags "ige-mac-integration >= 0.6" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$IGE_LIBS"; then pkg_cv_IGE_LIBS="$IGE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ige-mac-integration >= 0.6\""; } >&5 ($PKG_CONFIG --exists --print-errors "ige-mac-integration >= 0.6") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_IGE_LIBS=`$PKG_CONFIG --libs "ige-mac-integration >= 0.6" 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 IGE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "ige-mac-integration >= 0.6" 2>&1` else IGE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "ige-mac-integration >= 0.6" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$IGE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (ige-mac-integration >= 0.6) were not met: $IGE_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 IGE_CFLAGS and IGE_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 IGE_CFLAGS and IGE_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 IGE_CFLAGS=$pkg_cv_IGE_CFLAGS IGE_LIBS=$pkg_cv_IGE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_IGE_MAC_INTEGRATION 1" >>confdefs.h fi else IGE_CFLAGS=$pkg_cv_IGE_CFLAGS IGE_LIBS=$pkg_cv_IGE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_GTK_MAC_INTEGRATION 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_query in -lresolv" >&5 $as_echo_n "checking for res_query in -lresolv... " >&6; } if ${ac_cv_lib_resolv_res_query+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $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 res_query (); int main () { return res_query (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_resolv_res_query=yes else ac_cv_lib_resolv_res_query=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_resolv_res_query" >&5 $as_echo "$ac_cv_lib_resolv_res_query" >&6; } if test "x$ac_cv_lib_resolv_res_query" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBRESOLV 1 _ACEOF LIBS="-lresolv $LIBS" fi ac_fn_cxx_check_header_mongrel "$LINENO" "CoreFoundation/CoreFoundation.h" "ac_cv_header_CoreFoundation_CoreFoundation_h" "$ac_includes_default" if test "x$ac_cv_header_CoreFoundation_CoreFoundation_h" = xyes; then : ac_fn_cxx_check_header_mongrel "$LINENO" "IOKit/IOKitLib.h" "ac_cv_header_IOKit_IOKitLib_h" "$ac_includes_default" if test "x$ac_cv_header_IOKit_IOKitLib_h" = xyes; then : $as_echo "#define HAVE_IOKIT 1" >>confdefs.h LIBS="$LIBS -framework IOKit -framework CoreFoundation" fi fi config_gnome3=no config_gconf=no LDFLAGS="$LDFLAGS -headerpad_max_install_names" LIBS="$LIBS -framework CoreServices -framework Carbon -framework Cocoa -framework Foundation" MacOS_CFLAGS="" fi if test "x$platform_os_unix" = "xyes" then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 $as_echo_n "checking for X... " >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then : withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else case $x_includes,$x_libraries in #( *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : $as_echo_n "(cached) " >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl dylib la dll; do if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && test -f "$ac_im_libdir/libX11.$ac_extension"; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R7/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R7 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R7/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R7 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # We can compile using X headers with no special include directory. ac_x_includes= else for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.i conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { XrmInitialize () ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else LIBS=$ac_save_LIBS for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no";; #( *) # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ ac_x_libraries='$ac_x_libraries'" esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 $as_echo "$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 $as_echo "libraries $x_libraries, headers $x_includes" >&6; } fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. $as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 $as_echo_n "checking whether -R must be followed by a space... " >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 $as_echo "neither works" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_cxx_werror_flag=$ac_xsave_cxx_werror_flag LIBS=$ac_xsave_LIBS fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XOpenDisplay (); int main () { return XOpenDisplay (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_dnet_dnet_ntoa=yes else ac_cv_lib_dnet_dnet_ntoa=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_dnet_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_dnet_stub_dnet_ntoa=yes else ac_cv_lib_dnet_stub_dnet_ntoa=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_dnet_stub_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ac_fn_cxx_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" if test "x$ac_cv_func_gethostbyname" = xyes; then : fi if test $ac_cv_func_gethostbyname = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; } if ${ac_cv_lib_nsl_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_nsl_gethostbyname=yes else ac_cv_lib_nsl_gethostbyname=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_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; } if ${ac_cv_lib_bsd_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_bsd_gethostbyname=yes else ac_cv_lib_bsd_gethostbyname=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_bsd_gethostbyname" >&5 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. ac_fn_cxx_check_func "$LINENO" "connect" "ac_cv_func_connect" if test "x$ac_cv_func_connect" = xyes; then : fi if test $ac_cv_func_connect = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 $as_echo_n "checking for connect in -lsocket... " >&6; } if ${ac_cv_lib_socket_connect+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char connect (); int main () { return connect (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_socket_connect=yes else ac_cv_lib_socket_connect=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_socket_connect" >&5 $as_echo "$ac_cv_lib_socket_connect" >&6; } if test "x$ac_cv_lib_socket_connect" = xyes; then : X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. ac_fn_cxx_check_func "$LINENO" "remove" "ac_cv_func_remove" if test "x$ac_cv_func_remove" = xyes; then : fi if test $ac_cv_func_remove = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 $as_echo_n "checking for remove in -lposix... " >&6; } if ${ac_cv_lib_posix_remove+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char remove (); int main () { return remove (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_posix_remove=yes else ac_cv_lib_posix_remove=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_posix_remove" >&5 $as_echo "$ac_cv_lib_posix_remove" >&6; } if test "x$ac_cv_lib_posix_remove" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ac_fn_cxx_check_func "$LINENO" "shmat" "ac_cv_func_shmat" if test "x$ac_cv_func_shmat" = xyes; then : fi if test $ac_cv_func_shmat = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 $as_echo_n "checking for shmat in -lipc... " >&6; } if ${ac_cv_lib_ipc_shmat+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shmat (); int main () { return shmat (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_ipc_shmat=yes else ac_cv_lib_ipc_shmat=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_ipc_shmat" >&5 $as_echo "$ac_cv_lib_ipc_shmat" >&6; } if test "x$ac_cv_lib_ipc_shmat" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char IceConnectionNumber (); int main () { return IceConnectionNumber (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_ICE_IceConnectionNumber=yes else ac_cv_lib_ICE_IceConnectionNumber=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_ICE_IceConnectionNumber" >&5 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS fi if test x$have_x != xyes ; then as_fn_error $? "X11 required on Unix platform" "$LINENO" 5 fi LIBS_save=$LIBS if test -n "$ac_x_libraries" then LIBS="$LIBS -L$x_libraries" fi CPPFLAGS_save="$CPPFLAGS" if test -n "$x_includes" then CPPFLAGS="$CPPFLAGS -I$x_includes" fi have_xrecord=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRecordEnableContext in -lXtst" >&5 $as_echo_n "checking for XRecordEnableContext in -lXtst... " >&6; } if ${ac_cv_lib_Xtst_XRecordEnableContext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXtst $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 XRecordEnableContext (); int main () { return XRecordEnableContext (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_Xtst_XRecordEnableContext=yes else ac_cv_lib_Xtst_XRecordEnableContext=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_Xtst_XRecordEnableContext" >&5 $as_echo "$ac_cv_lib_Xtst_XRecordEnableContext" >&6; } if test "x$ac_cv_lib_Xtst_XRecordEnableContext" = xyes; then : have_xrecord=yes X_LIBS="$X_LIBS -lXtst" $as_echo "#define HAVE_XRECORD /**/" >>confdefs.h fi if test x$have_xrecord != xyes ; then as_fn_error $? "X RECORD extension headers files required on Unix platform" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XScreenSaverRegister in -lXext" >&5 $as_echo_n "checking for XScreenSaverRegister in -lXext... " >&6; } if ${ac_cv_lib_Xext_XScreenSaverRegister+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext -lX11 -lXext -lm $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 XScreenSaverRegister (); int main () { return XScreenSaverRegister (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_Xext_XScreenSaverRegister=yes else ac_cv_lib_Xext_XScreenSaverRegister=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_Xext_XScreenSaverRegister" >&5 $as_echo "$ac_cv_lib_Xext_XScreenSaverRegister" >&6; } if test "x$ac_cv_lib_Xext_XScreenSaverRegister" = xyes; then : have_xscreensaver=yes X_LIBS="$X_LIBS -lX11 -lXext" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XScreenSaverRegister in -lXss" >&5 $as_echo_n "checking for XScreenSaverRegister in -lXss... " >&6; } if ${ac_cv_lib_Xss_XScreenSaverRegister+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXss -lX11 -lXext -lm $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 XScreenSaverRegister (); int main () { return XScreenSaverRegister (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_Xss_XScreenSaverRegister=yes else ac_cv_lib_Xss_XScreenSaverRegister=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_Xss_XScreenSaverRegister" >&5 $as_echo "$ac_cv_lib_Xss_XScreenSaverRegister" >&6; } if test "x$ac_cv_lib_Xss_XScreenSaverRegister" = xyes; then : have_xscreensaver=yes X_LIBS="$X_LIBS -lX11 -lXss" fi if test "x$have_xscreensaver" = "xyes"; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else have_xscreensaver=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test "x$have_xscreensaver" = "xyes" ; then $as_echo "#define HAVE_SCREENSAVER 1" >>confdefs.h fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X11SM" >&5 $as_echo_n "checking for X11SM... " >&6; } if test -n "$X11SM_CFLAGS"; then pkg_cv_X11SM_CFLAGS="$X11SM_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sm ice\""; } >&5 ($PKG_CONFIG --exists --print-errors "sm ice") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_X11SM_CFLAGS=`$PKG_CONFIG --cflags "sm ice" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$X11SM_LIBS"; then pkg_cv_X11SM_LIBS="$X11SM_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sm ice\""; } >&5 ($PKG_CONFIG --exists --print-errors "sm ice") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_X11SM_LIBS=`$PKG_CONFIG --libs "sm ice" 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 X11SM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sm ice" 2>&1` else X11SM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sm ice" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$X11SM_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (sm ice) were not met: $X11SM_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 X11SM_CFLAGS and X11SM_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 X11SM_CFLAGS and X11SM_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 X11SM_CFLAGS=$pkg_cv_X11SM_CFLAGS X11SM_LIBS=$pkg_cv_X11SM_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi LIBS=$LIBS_save CPPFLAGS=$CPPFLAGS_save fi if test "x$platform_os_unix" = "xyes" then if test "x$enable_monitors" = "x"; then enable_monitors="mutter" if test "x$have_xrecord" = "xyes" ; then if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}record" fi if test "x$have_xscreensaver" = "xyes" ; then if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}screensaver" fi if test "x$enable_monitors" != "x"; then enable_monitors="$enable_monitors," fi enable_monitors="${enable_monitors}x11events" fi loop=${enable_monitors}, while echo $loop | grep \, &> /dev/null do monitor=${loop%%\,*} loop=${loop#*\,} case "$monitor" in record) if test "x$have_xrecord" != "xyes" ; then as_fn_error $? "record activity monitor not supported." "$LINENO" 5 fi ;; x11events) ;; mutter) ;; screensaver) if test "x$have_xscreensaver" != "xyes" ; then as_fn_error $? "screensaver activity monitor not supported." "$LINENO" 5 fi ;; *) as_fn_error $? "unknown activity monitor: $monitor" "$LINENO" 5 ;; esac done cat >>confdefs.h <<_ACEOF #define HAVE_MONITORS "$enable_monitors" _ACEOF fi config_dbus=no have_python_jinja2=no if test "x$enable_dbus" != "xno" -a "x$PLATFORM_OS_WINDOWS" != "xyes" -a "x$PLATFORM_OS_MACOS" != "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO" >&5 $as_echo_n "checking for GIO... " >&6; } if test -n "$GIO_CFLAGS"; then pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GIO_CFLAGS=`$PKG_CONFIG --cflags "gio-2.0 >= 2.26.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GIO_LIBS"; then pkg_cv_GIO_LIBS="$GIO_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GIO_LIBS=`$PKG_CONFIG --libs "gio-2.0 >= 2.26.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 GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gio-2.0 >= 2.26.0" 2>&1` else GIO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-2.0 >= 2.26.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GIO_PKG_ERRORS" >&5 config_dbus=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } config_dbus=no else GIO_CFLAGS=$pkg_cv_GIO_CFLAGS GIO_LIBS=$pkg_cv_GIO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_dbus=yes fi fi if test "x$config_dbus" = "xyes" then # For now, only needed for DBus. # Check whether --with-boost was given. if test "${with_boost+set}" = set; then : withval=$with_boost; case $withval in #( no) : want_boost="no";_AX_BOOST_BASE_boost_path="" ;; #( yes) : want_boost="yes";_AX_BOOST_BASE_boost_path="" ;; #( *) : want_boost="yes";_AX_BOOST_BASE_boost_path="$withval" ;; esac else want_boost="yes" fi # Check whether --with-boost-libdir was given. if test "${with_boost_libdir+set}" = set; then : withval=$with_boost_libdir; if test -d "$withval"; then : _AX_BOOST_BASE_boost_lib_path="$withval" else as_fn_error $? "--with-boost-libdir expected directory name" "$LINENO" 5 fi else _AX_BOOST_BASE_boost_lib_path="" fi BOOST_LDFLAGS="" BOOST_CPPFLAGS="" if test "x$want_boost" = "xyes"; then : if test "x1.52" = "x"; then : _AX_BOOST_BASE_TONUMERICVERSION_req="1.20.0" else _AX_BOOST_BASE_TONUMERICVERSION_req="1.52" fi _AX_BOOST_BASE_TONUMERICVERSION_req_shorten=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '\([0-9]*\.[0-9]*\)'` _AX_BOOST_BASE_TONUMERICVERSION_req_major=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '\([0-9]*\)'` if test "x$_AX_BOOST_BASE_TONUMERICVERSION_req_major" = "x"; then : as_fn_error $? "You should at least specify libboost major version" "$LINENO" 5 fi _AX_BOOST_BASE_TONUMERICVERSION_req_minor=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '[0-9]*\.\([0-9]*\)'` if test "x$_AX_BOOST_BASE_TONUMERICVERSION_req_minor" = "x"; then : _AX_BOOST_BASE_TONUMERICVERSION_req_minor="0" fi _AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req : '[0-9]*\.[0-9]*\.\([0-9]*\)'` if test "X$_AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor" = "X"; then : _AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor="0" fi _AX_BOOST_BASE_TONUMERICVERSION_RET=`expr $_AX_BOOST_BASE_TONUMERICVERSION_req_major \* 100000 \+ $_AX_BOOST_BASE_TONUMERICVERSION_req_minor \* 100 \+ $_AX_BOOST_BASE_TONUMERICVERSION_req_sub_minor` WANT_BOOST_VERSION=$_AX_BOOST_BASE_TONUMERICVERSION_RET succeeded=no case ${host_cpu} in #( x86_64) : libsubdirs="lib64 libx32 lib lib64" ;; #( ppc64|powerpc64|s390x|sparc64|aarch64|ppc64le|powerpc64le|riscv64) : libsubdirs="lib64 lib lib64" ;; #( *) : libsubdirs="lib" ;; esac case ${host_cpu} in #( i?86) : multiarch_libsubdir="lib/i386-${host_os}" ;; #( *) : multiarch_libsubdir="lib/${host_cpu}-${host_os}" ;; esac if test "x$_AX_BOOST_BASE_boost_path" != "x"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for boostlib >= 1.52 ($WANT_BOOST_VERSION) includes in \"$_AX_BOOST_BASE_boost_path/include\"" >&5 $as_echo_n "checking for boostlib >= 1.52 ($WANT_BOOST_VERSION) includes in \"$_AX_BOOST_BASE_boost_path/include\"... " >&6; } if test -d "$_AX_BOOST_BASE_boost_path/include" && test -r "$_AX_BOOST_BASE_boost_path/include"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path/include" for _AX_BOOST_BASE_boost_path_tmp in $multiarch_libsubdir $libsubdirs; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for boostlib >= 1.52 ($WANT_BOOST_VERSION) lib path in \"$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp\"" >&5 $as_echo_n "checking for boostlib >= 1.52 ($WANT_BOOST_VERSION) lib path in \"$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp\"... " >&6; } if test -d "$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp" && test -r "$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp" ; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path/$_AX_BOOST_BASE_boost_path_tmp"; break; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi done else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else if test X"$cross_compiling" = Xyes; then search_libsubdirs=$multiarch_libsubdir else search_libsubdirs="$multiarch_libsubdir $libsubdirs" fi for _AX_BOOST_BASE_boost_path_tmp in /usr /usr/local /opt /opt/local ; do if test -d "$_AX_BOOST_BASE_boost_path_tmp/include/boost" && test -r "$_AX_BOOST_BASE_boost_path_tmp/include/boost" ; then for libsubdir in $search_libsubdirs ; do if ls "$_AX_BOOST_BASE_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path_tmp/$libsubdir" BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path_tmp/include" break; fi done fi if test "x$_AX_BOOST_BASE_boost_lib_path" != "x"; then : BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_lib_path" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for boostlib >= 1.52 ($WANT_BOOST_VERSION)" >&5 $as_echo_n "checking for boostlib >= 1.52 ($WANT_BOOST_VERSION)... " >&6; } CPPFLAGS_SAVED="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" export CPPFLAGS LDFLAGS_SAVED="$LDFLAGS" LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" export LDFLAGS ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { (void) ((void)sizeof(char[1 - 2*!!((BOOST_VERSION) < ($WANT_BOOST_VERSION))])); ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } succeeded=yes found_system=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "x$succeeded" != "xyes" ; then CPPFLAGS="$CPPFLAGS_SAVED" LDFLAGS="$LDFLAGS_SAVED" BOOST_CPPFLAGS= if test -z "$_AX_BOOST_BASE_boost_lib_path" ; then BOOST_LDFLAGS= fi _version=0 if test -n "$_AX_BOOST_BASE_boost_path" ; then if test -d "$_AX_BOOST_BASE_boost_path" && test -r "$_AX_BOOST_BASE_boost_path"; then for i in `ls -d $_AX_BOOST_BASE_boost_path/include/boost-* 2>/dev/null`; do _version_tmp=`echo $i | sed "s#$_AX_BOOST_BASE_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` V_CHECK=`expr $_version_tmp \> $_version` if test "x$V_CHECK" = "x1" ; then _version=$_version_tmp fi VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path/include/boost-$VERSION_UNDERSCORE" done if test -z "$BOOST_CPPFLAGS"; then if test -d "$_AX_BOOST_BASE_boost_path/boost" && test -r "$_AX_BOOST_BASE_boost_path/boost"; then BOOST_CPPFLAGS="-I$_AX_BOOST_BASE_boost_path" fi fi if test -n "$BOOST_CPPFLAGS" && test -z "$BOOST_LDFLAGS"; then for libsubdir in $libsubdirs ; do if ls "$_AX_BOOST_BASE_boost_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$_AX_BOOST_BASE_boost_path/$libsubdir" fi fi else if test "x$cross_compiling" != "xyes" ; then for _AX_BOOST_BASE_boost_path in /usr /usr/local /opt /opt/local ; do if test -d "$_AX_BOOST_BASE_boost_path" && test -r "$_AX_BOOST_BASE_boost_path" ; then for i in `ls -d $_AX_BOOST_BASE_boost_path/include/boost-* 2>/dev/null`; do _version_tmp=`echo $i | sed "s#$_AX_BOOST_BASE_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` V_CHECK=`expr $_version_tmp \> $_version` if test "x$V_CHECK" = "x1" ; then _version=$_version_tmp best_path=$_AX_BOOST_BASE_boost_path fi done fi done VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" if test -z "$_AX_BOOST_BASE_boost_lib_path" ; then for libsubdir in $libsubdirs ; do if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done BOOST_LDFLAGS="-L$best_path/$libsubdir" fi fi if test -n "$BOOST_ROOT" ; then for libsubdir in $libsubdirs ; do if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi done if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` stage_version_shorten=`expr $stage_version : '\([0-9]*\.[0-9]*\)'` V_CHECK=`expr $stage_version_shorten \>\= $_version` if test "x$V_CHECK" = "x1" && test -z "$_AX_BOOST_BASE_boost_lib_path" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: We will use a staged boost library from $BOOST_ROOT" >&5 $as_echo "$as_me: We will use a staged boost library from $BOOST_ROOT" >&6;} BOOST_CPPFLAGS="-I$BOOST_ROOT" BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" fi fi fi fi CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" export CPPFLAGS LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" export LDFLAGS ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { (void) ((void)sizeof(char[1 - 2*!!((BOOST_VERSION) < ($WANT_BOOST_VERSION))])); ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } succeeded=yes found_system=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi if test "x$succeeded" != "xyes" ; then if test "x$_version" = "x0" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: We could not detect the boost libraries (version 1.52 or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&5 $as_echo "$as_me: We could not detect the boost libraries (version 1.52 or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&6;} else { $as_echo "$as_me:${as_lineno-$LINENO}: Your boost libraries seems to old (version $_version)." >&5 $as_echo "$as_me: Your boost libraries seems to old (version $_version)." >&6;} fi # execute ACTION-IF-NOT-FOUND (if present): as_fn_error $? "requires boost library >= 1.52." "$LINENO" 5 else $as_echo "#define HAVE_BOOST /**/" >>confdefs.h # execute ACTION-IF-FOUND (if present): : fi CPPFLAGS="$CPPFLAGS_SAVED" LDFLAGS="$LDFLAGS_SAVED" fi $as_echo "#define HAVE_DBUS /**/" >>confdefs.h EXP_VAR=DATADIR FROM_VAR="$datadir" prefix_save=$prefix exec_prefix_save=$exec_prefix if test "x$prefix" = "xNONE"; then prefix=$ac_default_prefix fi if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi full_var="$FROM_VAR" while true; do new_full_var="`eval echo $full_var`" if test "x$new_full_var"="x$full_var"; then break; fi full_var=$new_full_var done full_var=$new_full_var DATADIR="$full_var" prefix=$prefix_save exec_prefix=$exec_prefix_save DBUS_SERVICES_DIR="$DATADIR/dbus-1/services" cat >>confdefs.h <<_ACEOF #define DBUS_SERVICES_DIR "$DBUS_SERVICES_DIR" _ACEOF if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 3.0" >&5 $as_echo_n "checking whether $PYTHON version is >= 3.0... " >&6; } prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '3.0'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 ($PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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_fn_error $? "Python interpreter is too old" "$LINENO" 5 fi am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 3.0" >&5 $as_echo_n "checking for a Python interpreter with version >= 3.0... " >&6; } if ${am_cv_pathless_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do test "$am_cv_pathless_PYTHON" = none && break prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '3.0'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5 ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then : break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_pathless_PYTHON" >&5 $as_echo "$am_cv_pathless_PYTHON" >&6; } # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. set dummy $am_cv_pathless_PYTHON; 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_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON="$PYTHON" # 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_PYTHON="$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 PYTHON=$ac_cv_path_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi am_display_PYTHON=$am_cv_pathless_PYTHON fi if test "$PYTHON" = :; then as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 $as_echo_n "checking for $am_display_PYTHON version... " >&6; } if ${am_cv_python_version+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 $as_echo "$am_cv_python_version" >&6; } PYTHON_VERSION=$am_cv_python_version PYTHON_PREFIX='${prefix}' PYTHON_EXEC_PREFIX='${exec_prefix}' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } if ${am_cv_python_platform+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 $as_echo "$am_cv_python_platform" >&6; } PYTHON_PLATFORM=$am_cv_python_platform # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[:3] == '2.7': can_use_sysconfig = 0 except ImportError: pass" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 $as_echo "$am_cv_python_pythondir" >&6; } pythondir=$am_cv_python_pythondir pkgpythondir=\${pythondir}/$PACKAGE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 $as_echo "$am_cv_python_pyexecdir" >&6; } pyexecdir=$am_cv_python_pyexecdir pkgpyexecdir=\${pyexecdir}/$PACKAGE fi if test -z $PYTHON; then if test -z "python3"; then PYTHON="python3" else PYTHON="python3" fi fi PYTHON_NAME=`basename $PYTHON` { $as_echo "$as_me:${as_lineno-$LINENO}: checking $PYTHON_NAME module: jinja2" >&5 $as_echo_n "checking $PYTHON_NAME module: jinja2... " >&6; } $PYTHON -c "import jinja2" 2>/dev/null if test $? -eq 0; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } eval HAVE_PYMOD_JINJA2=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } eval HAVE_PYMOD_JINJA2=no # if test -n "needed" then as_fn_error $? "failed to find required module jinja2" "$LINENO" 5 exit 1 fi fi fi if test x$config_dbus = xyes; then HAVE_DBUS_TRUE= HAVE_DBUS_FALSE='#' else HAVE_DBUS_TRUE='#' HAVE_DBUS_FALSE= fi if test x$HAVE_PYMOD_jinja2 = xyes; then HAVE_PYTHON_JINJA2_TRUE= HAVE_PYTHON_JINJA2_FALSE='#' else HAVE_PYTHON_JINJA2_TRUE='#' HAVE_PYTHON_JINJA2_FALSE= fi config_gnome3=no config_panelapplet4=no config_panelapplet5=no config_libgnome_panel=no if test "x$enable_gnome3" != "xno" -a "x$config_dbus" = "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME3" >&5 $as_echo_n "checking for GNOME3... " >&6; } if test -n "$GNOME3_CFLAGS"; then pkg_cv_GNOME3_CFLAGS="$GNOME3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_CFLAGS=`$PKG_CONFIG --cflags "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GNOME3_LIBS"; then pkg_cv_GNOME3_LIBS="$GNOME3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_LIBS=`$PKG_CONFIG --libs "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.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 GNOME3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0" 2>&1` else GNOME3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libgnome-panel >= 3.36.0 gio-2.0 >= 2.26.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME3_PKG_ERRORS" >&5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else GNOME3_CFLAGS=$pkg_cv_GNOME3_CFLAGS GNOME3_LIBS=$pkg_cv_GNOME3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gnome3=yes config_libgnome_panel=yes LIBGNOME_PANEL_MODULES_DIR=`$PKG_CONFIG ${pkg_config_prefix} --variable=modulesdir libgnome-panel` LIBGNOME_PANEL_MODULES_DIR=$LIBGNOME_PANEL_MODULES_DIR $as_echo "#define HAVE_LIBGNOME_PANEL 1" >>confdefs.h fi if test "x$config_libgnome_panel" != "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME3" >&5 $as_echo_n "checking for GNOME3... " >&6; } if test -n "$GNOME3_CFLAGS"; then pkg_cv_GNOME3_CFLAGS="$GNOME3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_CFLAGS=`$PKG_CONFIG --cflags "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GNOME3_LIBS"; then pkg_cv_GNOME3_LIBS="$GNOME3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_LIBS=`$PKG_CONFIG --libs "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.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 GNOME3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0" 2>&1` else GNOME3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libpanel-applet >= 3.16.1 gio-2.0 >= 2.26.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME3_PKG_ERRORS" >&5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else GNOME3_CFLAGS=$pkg_cv_GNOME3_CFLAGS GNOME3_LIBS=$pkg_cv_GNOME3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gnome3=yes config_panelapplet5=yes $as_echo "#define HAVE_PANELAPPLET 1" >>confdefs.h $as_echo "#define HAVE_PANELAPPLET5 1" >>confdefs.h fi if test "x$config_panelapplet5" != "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME3" >&5 $as_echo_n "checking for GNOME3... " >&6; } if test -n "$GNOME3_CFLAGS"; then pkg_cv_GNOME3_CFLAGS="$GNOME3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpanelapplet-4.0 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpanelapplet-4.0 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_CFLAGS=`$PKG_CONFIG --cflags "libpanelapplet-4.0 gio-2.0 >= 2.26.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GNOME3_LIBS"; then pkg_cv_GNOME3_LIBS="$GNOME3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpanelapplet-4.0 gio-2.0 >= 2.26.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpanelapplet-4.0 gio-2.0 >= 2.26.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOME3_LIBS=`$PKG_CONFIG --libs "libpanelapplet-4.0 gio-2.0 >= 2.26.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 GNOME3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libpanelapplet-4.0 gio-2.0 >= 2.26.0" 2>&1` else GNOME3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libpanelapplet-4.0 gio-2.0 >= 2.26.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNOME3_PKG_ERRORS" >&5 if test "x$enable_gnome3" = "xyes"; then as_fn_error $? "Gnome 3 development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_gnome3" = "xyes"; then as_fn_error $? "Gnome 3 development headers not found." "$LINENO" 5 fi else GNOME3_CFLAGS=$pkg_cv_GNOME3_CFLAGS GNOME3_LIBS=$pkg_cv_GNOME3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gnome3=yes config_panelapplet4=yes $as_echo "#define HAVE_PANELAPPLET 1" >>confdefs.h , $as_echo "#define HAVE_PANELAPPLET4 1" >>confdefs.h fi fi fi fi if test "x$config_panelapplet4" = "xyes" -o "x$config_panelapplet5" = "xyes"; then HAVE_PANELAPPLET_TRUE= HAVE_PANELAPPLET_FALSE='#' else HAVE_PANELAPPLET_TRUE='#' HAVE_PANELAPPLET_FALSE= fi if test "x$config_panelapplet4" = "xyes"; then HAVE_PANELAPPLET4_TRUE= HAVE_PANELAPPLET4_FALSE='#' else HAVE_PANELAPPLET4_TRUE='#' HAVE_PANELAPPLET4_FALSE= fi if test "x$config_panelapplet5" = "xyes"; then HAVE_PANELAPPLET5_TRUE= HAVE_PANELAPPLET5_FALSE='#' else HAVE_PANELAPPLET5_TRUE='#' HAVE_PANELAPPLET5_FALSE= fi if test "x$config_libgnome_panel" = "xyes"; then HAVE_LIBGNOME_PANEL_TRUE= HAVE_LIBGNOME_PANEL_FALSE='#' else HAVE_LIBGNOME_PANEL_TRUE='#' HAVE_LIBGNOME_PANEL_FALSE= fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 $as_echo_n "checking for GLIB... " >&6; } if test -n "$GLIB_CFLAGS"; then pkg_cv_GLIB_CFLAGS="$GLIB_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 gmodule-2.0 gthread-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GLIB_LIBS"; then pkg_cv_GLIB_LIBS="$GLIB_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 gmodule-2.0 gthread-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.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 GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0" 2>&1` else GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 >= 2.10 gmodule-2.0 gthread-2.0) were not met: $GLIB_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 GLIB_CFLAGS and GLIB_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 GLIB_CFLAGS and GLIB_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 GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS GLIB_LIBS=$pkg_cv_GLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_GLIB /**/" >>confdefs.h fi config_gsettings=no if test "x$enable_gsettings" != "xno" then if test "x$platform_os_unix" = "xyes"; then # Check whether --enable-schemas-compile was given. if test "${enable_schemas_compile+set}" = set; then : enableval=$enable_schemas_compile; case ${enableval} in yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; *) as_fn_error $? "bad value ${enableval} for --enable-schemas-compile" "$LINENO" 5 ;; esac fi 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.16 { $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 gsettingsschemadir=${datadir}/glib-2.0/schemas if test x$cross_compiling != xyes; then : if test -n "$GLIB_COMPILE_SCHEMAS"; then pkg_cv_GLIB_COMPILE_SCHEMAS="$GLIB_COMPILE_SCHEMAS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable="glib_compile_schemas" "gio-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi GLIB_COMPILE_SCHEMAS=$pkg_cv_GLIB_COMPILE_SCHEMAS if test "x$GLIB_COMPILE_SCHEMAS" = x""; then : fi else # Extract the first word of "glib-compile-schemas", so it can be a program name with args. set dummy glib-compile-schemas; 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_GLIB_COMPILE_SCHEMAS+:} false; then : $as_echo_n "(cached) " >&6 else case $GLIB_COMPILE_SCHEMAS in [\\/]* | ?:[\\/]*) ac_cv_path_GLIB_COMPILE_SCHEMAS="$GLIB_COMPILE_SCHEMAS" # 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_GLIB_COMPILE_SCHEMAS="$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 GLIB_COMPILE_SCHEMAS=$ac_cv_path_GLIB_COMPILE_SCHEMAS if test -n "$GLIB_COMPILE_SCHEMAS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_SCHEMAS" >&5 $as_echo "$GLIB_COMPILE_SCHEMAS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then as_fn_error $? "glib-compile-schemas not found." "$LINENO" 5 else : fi GSETTINGS_RULES=' .PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas mostlyclean-am: clean-gsettings-schemas gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) %.gschema.valid: %.gschema.xml $(gsettings__enum_file) $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p $(@D) && touch $@ all-am: $(gsettings_SCHEMAS:.xml=.valid) uninstall-am: uninstall-gsettings-schemas install-data-am: install-gsettings-schemas .SECONDARY: $(gsettings_SCHEMAS) install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) @$(NORMAL_INSTALL) if test -n "$^"; then \ test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ fi uninstall-gsettings-schemas: @$(NORMAL_UNINSTALL) @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ test -n "$$files" || exit 0; \ echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) clean-gsettings-schemas: rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) ifdef gsettings_ENUM_NAMESPACE $(gsettings__enum_file): $(gsettings_ENUM_FILES) $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" $^ > $@.tmp && mv $@.tmp $@ endif ' config_gsettings=yes $as_echo "#define HAVE_GSETTINGS 1" >>confdefs.h fi fi if test "x$config_gsettings" = "xyes"; then HAVE_GSETTINGS_TRUE= HAVE_GSETTINGS_FALSE='#' else HAVE_GSETTINGS_TRUE='#' HAVE_GSETTINGS_FALSE= fi config_gtk=no config_gtk_version=none if test "x$PLATFORM_OS_WINDOWS" != "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_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.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_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.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.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 GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.28.0 gio-2.0 >= 2.26.0 gtk+-3.0 >= 3.0.0 gdk-3.0 >= 3.0.0 sigc++-2.0 >= 2.2.4.2 glibmm-2.4 >= 2.28.0 gtkmm-3.0 >= 3.0.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gtk=yes config_gtk_version=3 $as_echo "#define HAVE_GTK3 1" >>confdefs.h $as_echo "#define HAVE_APP_GTK /**/" >>confdefs.h fi fi if test x$config_gtk = xno then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0 \\ gdk-2.0 >= 2.8 \\ sigc++-2.0 \\ glibmm-2.4 >= 2.10 \\ gtkmm-2.4 >= 2.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0 \\ gdk-2.0 >= 2.8 \\ sigc++-2.0 \\ glibmm-2.4 >= 2.10 \\ gtkmm-2.4 >= 2.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10" 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 GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (gtk+-2.0 >= 2.6.0 \ gdk-2.0 >= 2.8 \ sigc++-2.0 \ glibmm-2.4 >= 2.10 \ gtkmm-2.4 >= 2.10) were not met: $GTK_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 GTK_CFLAGS and GTK_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 GTK_CFLAGS and GTK_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 GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gtk=yes config_gtk_version=2 $as_echo "#define HAVE_APP_GTK /**/" >>confdefs.h fi fi if test $config_gtk = yes; then HAVE_APP_GTKMM_TRUE= HAVE_APP_GTKMM_FALSE='#' else HAVE_APP_GTKMM_TRUE='#' HAVE_APP_GTKMM_FALSE= fi if test "x$config_gtk_version" = "x3"; then HAVE_GTK3_TRUE= HAVE_GTK3_FALSE='#' else HAVE_GTK3_TRUE='#' HAVE_GTK3_FALSE= fi if test "x$PLATFORM_OS_WINDOWS" != "xyes" then # Check whether --enable-introspection was given. if test "${enable_introspection+set}" = set; then : enableval=$enable_introspection; else enable_introspection=auto fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gobject-introspection" >&5 $as_echo_n "checking for gobject-introspection... " >&6; } case $enable_introspection in #( no) : found_introspection="no (disabled, use --enable-introspection to enable)" ;; #( yes) : if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : else as_fn_error $? "gobject-introspection-1.0 is not installed" "$LINENO" 5 fi if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0 >= 0.6.7\""; } >&5 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= 0.6.7") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then found_introspection=yes else as_fn_error $? "You need to have gobject-introspection >= 0.6.7 installed to build workrave" "$LINENO" 5 fi ;; #( auto) : if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0 >= 0.6.7\""; } >&5 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= 0.6.7") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then found_introspection=yes else found_introspection=no fi enable_introspection=$found_introspection ;; #( *) : as_fn_error $? "invalid argument passed to --enable-introspection, should be one of [no/auto/yes]" "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $found_introspection" >&5 $as_echo "$found_introspection" >&6; } EXP_VAR=_GI_EXP_DATADIR FROM_VAR="$datadir" prefix_save=$prefix exec_prefix_save=$exec_prefix if test "x$prefix" = "xNONE"; then prefix="$ac_default_prefix" fi if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi full_var="$FROM_VAR" while true; do new_full_var="`eval echo $full_var`" if test "x$new_full_var" = "x$full_var"; then break; fi full_var=$new_full_var done full_var=$new_full_var _GI_EXP_DATADIR="$full_var" prefix=$prefix_save exec_prefix=$exec_prefix_save EXP_VAR=_GI_EXP_LIBDIR FROM_VAR="$libdir" prefix_save=$prefix exec_prefix_save=$exec_prefix if test "x$prefix" = "xNONE"; then prefix="$ac_default_prefix" fi if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi full_var="$FROM_VAR" while true; do new_full_var="`eval echo $full_var`" if test "x$new_full_var" = "x$full_var"; then break; fi full_var=$new_full_var done full_var=$new_full_var _GI_EXP_LIBDIR="$full_var" prefix=$prefix_save exec_prefix=$exec_prefix_save INTROSPECTION_SCANNER= INTROSPECTION_COMPILER= INTROSPECTION_GENERATE= INTROSPECTION_GIRDIR= INTROSPECTION_TYPELIBDIR= if test "x$found_introspection" = "xyes"; then INTROSPECTION_SCANNER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0` INTROSPECTION_COMPILER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0` INTROSPECTION_GENERATE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0` INTROSPECTION_GIRDIR=`$PKG_CONFIG --define-variable=datadir="${_GI_EXP_DATADIR}" --variable=girdir gobject-introspection-1.0` INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --define-variable=libdir="${_GI_EXP_LIBDIR}" --variable=typelibdir gobject-introspection-1.0)" INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0` INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0` INTROSPECTION_MAKEFILE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection fi if test "x$found_introspection" = "xyes"; then HAVE_INTROSPECTION_TRUE= HAVE_INTROSPECTION_FALSE='#' else HAVE_INTROSPECTION_TRUE='#' HAVE_INTROSPECTION_FALSE= fi else if false; then HAVE_INTROSPECTION_TRUE= HAVE_INTROSPECTION_FALSE='#' else HAVE_INTROSPECTION_TRUE='#' HAVE_INTROSPECTION_FALSE= fi fi config_indicator=no config_indicator_package=none INDICATOR_REQUIRED_VERSION=0.3.19 DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 DBUSMENUGTK_REQUIRED_VERSION=0.3.95 if test "x$enable_indicator" != "xno" -a "x$config_gtk_version" = "x3" then if test "x$found_introspection" != "xyes" then as_fn_error $? "Introspection development headers not found." "$LINENO" 5 else pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for INDICATOR" >&5 $as_echo_n "checking for INDICATOR... " >&6; } if test -n "$INDICATOR_CFLAGS"; then pkg_cv_INDICATOR_CFLAGS="$INDICATOR_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ayatana-indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_CFLAGS=`$PKG_CONFIG --cflags "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$INDICATOR_LIBS"; then pkg_cv_INDICATOR_LIBS="$INDICATOR_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ayatana-indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_LIBS=`$PKG_CONFIG --libs "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 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 INDICATOR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` else INDICATOR_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "ayatana-indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$INDICATOR_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for INDICATOR" >&5 $as_echo_n "checking for INDICATOR... " >&6; } if test -n "$INDICATOR_CFLAGS"; then pkg_cv_INDICATOR_CFLAGS="$INDICATOR_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_CFLAGS=`$PKG_CONFIG --cflags "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$INDICATOR_LIBS"; then pkg_cv_INDICATOR_LIBS="$INDICATOR_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_LIBS=`$PKG_CONFIG --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 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 INDICATOR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` else INDICATOR_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$INDICATOR_PKG_ERRORS" >&5 if test "x$enable_indicator" = "xyes"; then as_fn_error $? "Indicator development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_indicator" = "xyes"; then as_fn_error $? "Indicator development headers not found." "$LINENO" 5 fi else INDICATOR_CFLAGS=$pkg_cv_INDICATOR_CFLAGS INDICATOR_LIBS=$pkg_cv_INDICATOR_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_indicator=yes config_indicator_package=indicator3-0.4 $as_echo "#define HAVE_INDICATOR 1" >>confdefs.h fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for INDICATOR" >&5 $as_echo_n "checking for INDICATOR... " >&6; } if test -n "$INDICATOR_CFLAGS"; then pkg_cv_INDICATOR_CFLAGS="$INDICATOR_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_CFLAGS=`$PKG_CONFIG --cflags "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$INDICATOR_LIBS"; then pkg_cv_INDICATOR_LIBS="$INDICATOR_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"indicator3-0.4 >= \$INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= \$DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= \$DBUSMENUGTK_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_INDICATOR_LIBS=`$PKG_CONFIG --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 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 INDICATOR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` else INDICATOR_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "indicator3-0.4 >= $INDICATOR_REQUIRED_VERSION dbusmenu-glib-0.4 >= $DBUSMENUGLIB_REQUIRED_VERSION dbusmenu-gtk3-0.4 >= $DBUSMENUGTK_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$INDICATOR_PKG_ERRORS" >&5 if test "x$enable_indicator" = "xyes"; then as_fn_error $? "Indicator development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_indicator" = "xyes"; then as_fn_error $? "Indicator development headers not found." "$LINENO" 5 fi else INDICATOR_CFLAGS=$pkg_cv_INDICATOR_CFLAGS INDICATOR_LIBS=$pkg_cv_INDICATOR_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_indicator=yes config_indicator_package=indicator3-0.4 $as_echo "#define HAVE_INDICATOR 1" >>confdefs.h fi else INDICATOR_CFLAGS=$pkg_cv_INDICATOR_CFLAGS INDICATOR_LIBS=$pkg_cv_INDICATOR_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_indicator=yes config_indicator_package=ayatana-indicator3-0.4 $as_echo "#define HAVE_INDICATOR 1" >>confdefs.h $as_echo "#define HAVE_INDICATOR_AYATANA 1" >>confdefs.h fi if test "x$config_indicator" != "xno" then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbusmenu-gtk3-0.4 >= 0.5.90\""; } >&5 ($PKG_CONFIG --exists --print-errors "dbusmenu-gtk3-0.4 >= 0.5.90") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then $as_echo "#define HAVE_DBUSMENU_NEW_INCLUDES 1" >>confdefs.h else true fi fi fi fi with_localinstall="no" # Check whether --enable-localinstall was given. if test "${enable_localinstall+set}" = set; then : enableval=$enable_localinstall; with_localinstall=$enableval else with_localinstall=no fi if test "x$with_localinstall" = "xyes" -a "x$config_indicator_package" != "xnone"; then : INDICATORDIR="${libdir}/indicators3/7" INDICATORICONSDIR="${datadir}/libindicate/icons" else INDICATORDIR=`$PKG_CONFIG --variable=indicatordir $config_indicator_package | sed -e 's%/$%%'` INDICATORICONSDIR=`$PKG_CONFIG --variable=iconsdir $config_indicator_package` fi if test "x$with_localinstall" = "xyes"; then LOCALINSTALL_TRUE= LOCALINSTALL_FALSE='#' else LOCALINSTALL_TRUE='#' LOCALINSTALL_FALSE= fi if test "x$config_indicator" = "xyes"; then HAVE_INDICATOR_TRUE= HAVE_INDICATOR_FALSE='#' else HAVE_INDICATOR_TRUE='#' HAVE_INDICATOR_FALSE= fi config_xfce=no config_xfce_gtk_version=none if test "x$enable_xfce" != "xno" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXFCE4PANEL" >&5 $as_echo_n "checking for LIBXFCE4PANEL... " >&6; } if test -n "$LIBXFCE4PANEL_CFLAGS"; then pkg_cv_LIBXFCE4PANEL_CFLAGS="$LIBXFCE4PANEL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxfce4panel-2.0 >= 4.12\""; } >&5 ($PKG_CONFIG --exists --print-errors "libxfce4panel-2.0 >= 4.12") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXFCE4PANEL_CFLAGS=`$PKG_CONFIG --cflags "libxfce4panel-2.0 >= 4.12" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBXFCE4PANEL_LIBS"; then pkg_cv_LIBXFCE4PANEL_LIBS="$LIBXFCE4PANEL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxfce4panel-2.0 >= 4.12\""; } >&5 ($PKG_CONFIG --exists --print-errors "libxfce4panel-2.0 >= 4.12") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXFCE4PANEL_LIBS=`$PKG_CONFIG --libs "libxfce4panel-2.0 >= 4.12" 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 LIBXFCE4PANEL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxfce4panel-2.0 >= 4.12" 2>&1` else LIBXFCE4PANEL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxfce4panel-2.0 >= 4.12" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBXFCE4PANEL_PKG_ERRORS" >&5 true elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } true else LIBXFCE4PANEL_CFLAGS=$pkg_cv_LIBXFCE4PANEL_CFLAGS LIBXFCE4PANEL_LIBS=$pkg_cv_LIBXFCE4PANEL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_xfce=yes config_xfce_gtk_version=3 $as_echo "#define HAVE_XFCE 1" >>confdefs.h $as_echo "#define HAVE_XFCE_GTK3 1" >>confdefs.h XFCE4LIBDIR=`$PKG_CONFIG ${pkg_config_prefix} --variable=libdir libxfce4panel-2.0` fi if test x$config_xfce != xyes then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXFCE4PANEL" >&5 $as_echo_n "checking for LIBXFCE4PANEL... " >&6; } if test -n "$LIBXFCE4PANEL_CFLAGS"; then pkg_cv_LIBXFCE4PANEL_CFLAGS="$LIBXFCE4PANEL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxfce4panel-1.0 >= 4.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libxfce4panel-1.0 >= 4.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXFCE4PANEL_CFLAGS=`$PKG_CONFIG --cflags "libxfce4panel-1.0 >= 4.4" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBXFCE4PANEL_LIBS"; then pkg_cv_LIBXFCE4PANEL_LIBS="$LIBXFCE4PANEL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxfce4panel-1.0 >= 4.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libxfce4panel-1.0 >= 4.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXFCE4PANEL_LIBS=`$PKG_CONFIG --libs "libxfce4panel-1.0 >= 4.4" 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 LIBXFCE4PANEL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxfce4panel-1.0 >= 4.4" 2>&1` else LIBXFCE4PANEL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxfce4panel-1.0 >= 4.4" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBXFCE4PANEL_PKG_ERRORS" >&5 if test "x$enable_xfce" = "xyes"; then as_fn_error $? "XFCE Panel applet development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_xfce" = "xyes"; then as_fn_error $? "XFCE Panel applet development headers not found." "$LINENO" 5 fi else LIBXFCE4PANEL_CFLAGS=$pkg_cv_LIBXFCE4PANEL_CFLAGS LIBXFCE4PANEL_LIBS=$pkg_cv_LIBXFCE4PANEL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_xfce=yes config_xfce_gtk_version=2 $as_echo "#define HAVE_XFCE 1" >>confdefs.h $as_echo "#define HAVE_XFCE_GTK2 1" >>confdefs.h fi fi fi if test "x$config_xfce" = "xyes"; then HAVE_XFCE_TRUE= HAVE_XFCE_FALSE='#' else HAVE_XFCE_TRUE='#' HAVE_XFCE_FALSE= fi if test "x$config_xfce_gtk_version" = "x2"; then HAVE_XFCE_GTK2_TRUE= HAVE_XFCE_GTK2_FALSE='#' else HAVE_XFCE_GTK2_TRUE='#' HAVE_XFCE_GTK2_FALSE= fi if test "x$config_xfce_gtk_version" = "x3"; then HAVE_XFCE_GTK3_TRUE= HAVE_XFCE_GTK3_FALSE='#' else HAVE_XFCE_GTK3_TRUE='#' HAVE_XFCE_GTK3_FALSE= fi config_mate=no if test "x$enable_mate" != "xno" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBMATEPANEL" >&5 $as_echo_n "checking for LIBMATEPANEL... " >&6; } if test -n "$LIBMATEPANEL_CFLAGS"; then pkg_cv_LIBMATEPANEL_CFLAGS="$LIBMATEPANEL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmatepanelapplet-4.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libmatepanelapplet-4.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBMATEPANEL_CFLAGS=`$PKG_CONFIG --cflags "libmatepanelapplet-4.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBMATEPANEL_LIBS"; then pkg_cv_LIBMATEPANEL_LIBS="$LIBMATEPANEL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmatepanelapplet-4.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "libmatepanelapplet-4.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBMATEPANEL_LIBS=`$PKG_CONFIG --libs "libmatepanelapplet-4.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 LIBMATEPANEL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libmatepanelapplet-4.0" 2>&1` else LIBMATEPANEL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libmatepanelapplet-4.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBMATEPANEL_PKG_ERRORS" >&5 if test "x$enable_mate" = "xyes"; then as_fn_error $? "MATE Panel applet development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_mate" = "xyes"; then as_fn_error $? "MATE Panel applet development headers not found." "$LINENO" 5 fi else LIBMATEPANEL_CFLAGS=$pkg_cv_LIBMATEPANEL_CFLAGS LIBMATEPANEL_LIBS=$pkg_cv_LIBMATEPANEL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_mate=yes $as_echo "#define HAVE_MATE 1" >>confdefs.h fi config_mate_gtk_version=none if test "x$config_mate" = "xyes" then MATE_GTK=`$PKG_CONFIG --print-requires libmatepanelapplet-4.0 2>/dev/null | grep -m 1 '^gtk+-'` case "$MATE_GTK" in gtk+-2*) config_mate_gtk_version=2 ;; gtk+-3*) config_mate_gtk_version=3 ;; esac fi fi if test "x$config_mate" = "xyes"; then HAVE_MATE_TRUE= HAVE_MATE_FALSE='#' else HAVE_MATE_TRUE='#' HAVE_MATE_FALSE= fi if test "x$config_mate_gtk_version" = "x2"; then HAVE_MATE_GTK2_TRUE= HAVE_MATE_GTK2_FALSE='#' else HAVE_MATE_GTK2_TRUE='#' HAVE_MATE_GTK2_FALSE= fi if test "x$config_mate_gtk_version" = "x3"; then HAVE_MATE_GTK3_TRUE= HAVE_MATE_GTK3_FALSE='#' else HAVE_MATE_GTK3_TRUE='#' HAVE_MATE_GTK3_FALSE= fi if test "x$config_mate_gtk_version" = "x2" -o "x$config_xfce_gtk_version" = "x2" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK2" >&5 $as_echo_n "checking for GTK2... " >&6; } if test -n "$GTK2_CFLAGS"; then pkg_cv_GTK2_CFLAGS="$GTK2_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 \""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 ") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 " 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK2_LIBS"; then pkg_cv_GTK2_LIBS="$GTK2_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 \""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 ") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 " 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 GTK2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 " 2>&1` else GTK2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0 gdk-2.0 >= 2.8 " 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK2_PKG_ERRORS" >&5 as_fn_error $? "GTK2 development headers not found." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "GTK2 development headers not found." "$LINENO" 5 else GTK2_CFLAGS=$pkg_cv_GTK2_CFLAGS GTK2_LIBS=$pkg_cv_GTK2_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gtk2=yes $as_echo "#define HAVE_GTK2 1" >>confdefs.h fi fi if test "x$config_gtk2" = "xyes"; then HAVE_GTK2_TRUE= HAVE_GTK2_FALSE='#' else HAVE_GTK2_TRUE='#' HAVE_GTK2_FALSE= fi config_gconf=no if test "x$enable_gconf" != "xno" -a "x$config_gnome3" != "xyes" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GCONF" >&5 $as_echo_n "checking for GCONF... " >&6; } if test -n "$GCONF_CFLAGS"; then pkg_cv_GCONF_CFLAGS="$GCONF_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gconf-2.0 >= 2.31.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.31.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GCONF_CFLAGS=`$PKG_CONFIG --cflags "gconf-2.0 >= 2.31.1" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GCONF_LIBS"; then pkg_cv_GCONF_LIBS="$GCONF_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gconf-2.0 >= 2.31.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gconf-2.0 >= 2.31.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GCONF_LIBS=`$PKG_CONFIG --libs "gconf-2.0 >= 2.31.1" 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 GCONF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gconf-2.0 >= 2.31.1" 2>&1` else GCONF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gconf-2.0 >= 2.31.1" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GCONF_PKG_ERRORS" >&5 if test "x$enable_gconf" = "xyes"; then as_fn_error $? "GConf development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_gconf" = "xyes"; then as_fn_error $? "GConf development headers not found." "$LINENO" 5 fi else GCONF_CFLAGS=$pkg_cv_GCONF_CFLAGS GCONF_LIBS=$pkg_cv_GCONF_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gconf=yes $as_echo "#define HAVE_GCONF /**/" >>confdefs.h fi fi if test "x$config_gconf" = "xyes"; then HAVE_GCONF_TRUE= HAVE_GCONF_FALSE='#' else HAVE_GCONF_TRUE='#' HAVE_GCONF_FALSE= fi config_xml=no if test "x$enable_xml" != "xno" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GDOME" >&5 $as_echo_n "checking for GDOME... " >&6; } if test -n "$GDOME_CFLAGS"; then pkg_cv_GDOME_CFLAGS="$GDOME_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gdome2\""; } >&5 ($PKG_CONFIG --exists --print-errors "gdome2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GDOME_CFLAGS=`$PKG_CONFIG --cflags "gdome2" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GDOME_LIBS"; then pkg_cv_GDOME_LIBS="$GDOME_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gdome2\""; } >&5 ($PKG_CONFIG --exists --print-errors "gdome2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GDOME_LIBS=`$PKG_CONFIG --libs "gdome2" 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 GDOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gdome2" 2>&1` else GDOME_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gdome2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GDOME_PKG_ERRORS" >&5 if test "x$enable_xml" = "xyes"; then as_fn_error $? "GDome2 development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_xml" = "xyes"; then as_fn_error $? "GDome2 development headers not found." "$LINENO" 5 fi else GDOME_CFLAGS=$pkg_cv_GDOME_CFLAGS GDOME_LIBS=$pkg_cv_GDOME_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_xml=yes $as_echo "#define HAVE_GDOME /**/" >>confdefs.h fi fi if test "x$config_xml" = "xyes"; then HAVE_GDOME_TRUE= HAVE_GDOME_FALSE='#' else HAVE_GDOME_TRUE='#' HAVE_GDOME_FALSE= fi config_distribution=no have_gnet=no if test "x$enable_distribution" != "xno" then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO" >&5 $as_echo_n "checking for GIO... " >&6; } if test -n "$GIO_CFLAGS"; then pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= 2.22.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.22.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GIO_CFLAGS=`$PKG_CONFIG --cflags "gio-2.0 >= 2.22.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GIO_LIBS"; then pkg_cv_GIO_LIBS="$GIO_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= 2.22.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gio-2.0 >= 2.22.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GIO_LIBS=`$PKG_CONFIG --libs "gio-2.0 >= 2.22.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 GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gio-2.0 >= 2.22.0" 2>&1` else GIO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-2.0 >= 2.22.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GIO_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNET" >&5 $as_echo_n "checking for GNET... " >&6; } if test -n "$GNET_CFLAGS"; then pkg_cv_GNET_CFLAGS="$GNET_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnet-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnet-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNET_CFLAGS=`$PKG_CONFIG --cflags "gnet-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GNET_LIBS"; then pkg_cv_GNET_LIBS="$GNET_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnet-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnet-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNET_LIBS=`$PKG_CONFIG --libs "gnet-2.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 GNET_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gnet-2.0" 2>&1` else GNET_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gnet-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNET_PKG_ERRORS" >&5 if test "x$enable_distribution" = "xyes"; then as_fn_error $? "GIO/GNet development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_distribution" = "xyes"; then as_fn_error $? "GIO/GNet development headers not found." "$LINENO" 5 fi else GNET_CFLAGS=$pkg_cv_GNET_CFLAGS GNET_LIBS=$pkg_cv_GNET_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_distribution=yes have_gnet=yes $as_echo "#define HAVE_GNET /**/" >>confdefs.h $as_echo "#define HAVE_GNET2 /**/" >>confdefs.h fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNET" >&5 $as_echo_n "checking for GNET... " >&6; } if test -n "$GNET_CFLAGS"; then pkg_cv_GNET_CFLAGS="$GNET_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnet-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnet-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNET_CFLAGS=`$PKG_CONFIG --cflags "gnet-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GNET_LIBS"; then pkg_cv_GNET_LIBS="$GNET_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnet-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnet-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNET_LIBS=`$PKG_CONFIG --libs "gnet-2.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 GNET_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gnet-2.0" 2>&1` else GNET_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gnet-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GNET_PKG_ERRORS" >&5 if test "x$enable_distribution" = "xyes"; then as_fn_error $? "GIO/GNet development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_distribution" = "xyes"; then as_fn_error $? "GIO/GNet development headers not found." "$LINENO" 5 fi else GNET_CFLAGS=$pkg_cv_GNET_CFLAGS GNET_LIBS=$pkg_cv_GNET_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_distribution=yes have_gnet=yes $as_echo "#define HAVE_GNET /**/" >>confdefs.h $as_echo "#define HAVE_GNET2 /**/" >>confdefs.h fi else GIO_CFLAGS=$pkg_cv_GIO_CFLAGS GIO_LIBS=$pkg_cv_GIO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_distribution=yes $as_echo "#define HAVE_GIO_NET 1" >>confdefs.h fi fi if test $config_distribution = yes then $as_echo "#define HAVE_DISTRIBUTION /**/" >>confdefs.h fi if test "x$config_distribution" = "xyes"; then HAVE_DISTRIBUTION_TRUE= HAVE_DISTRIBUTION_FALSE='#' else HAVE_DISTRIBUTION_TRUE='#' HAVE_DISTRIBUTION_FALSE= fi if test $have_gnet = yes; then HAVE_GNET_TRUE= HAVE_GNET_FALSE='#' else HAVE_GNET_TRUE='#' HAVE_GNET_FALSE= fi config_gstreamer=no if test "x$enable_gstreamer" != "xno"; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GSTREAMER" >&5 $as_echo_n "checking for GSTREAMER... " >&6; } if test -n "$GSTREAMER_CFLAGS"; then pkg_cv_GSTREAMER_CFLAGS="$GSTREAMER_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GSTREAMER_LIBS"; then pkg_cv_GSTREAMER_LIBS="$GSTREAMER_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_LIBS=`$PKG_CONFIG --libs "gstreamer-0.10" 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 GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-0.10" 2>&1` else GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-0.10" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GSTREAMER_PKG_ERRORS" >&5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else GSTREAMER_CFLAGS=$pkg_cv_GSTREAMER_CFLAGS GSTREAMER_LIBS=$pkg_cv_GSTREAMER_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gstreamer=yes $as_echo "#define HAVE_GSTREAMER 1" >>confdefs.h fi if test "x$config_gstreamer" != "xyes"; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GSTREAMER" >&5 $as_echo_n "checking for GSTREAMER... " >&6; } if test -n "$GSTREAMER_CFLAGS"; then pkg_cv_GSTREAMER_CFLAGS="$GSTREAMER_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GSTREAMER_LIBS"; then pkg_cv_GSTREAMER_LIBS="$GSTREAMER_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_LIBS=`$PKG_CONFIG --libs "gstreamer-1.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 GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-1.0" 2>&1` else GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GSTREAMER_PKG_ERRORS" >&5 if test "x$enable_gstreamer" = "xyes"; then as_fn_error $? "GStreamer development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_gstreamer" = "xyes"; then as_fn_error $? "GStreamer development headers not found." "$LINENO" 5 fi else GSTREAMER_CFLAGS=$pkg_cv_GSTREAMER_CFLAGS GSTREAMER_LIBS=$pkg_cv_GSTREAMER_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_gstreamer=yes $as_echo "#define HAVE_GSTREAMER 1" >>confdefs.h fi fi fi config_pulse=no if test "$platform_os_unix" = "yes" -a "x$enable_pulse" != "xno" then PA_REQUIRED_VERSION=0.9.15 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PULSE" >&5 $as_echo_n "checking for PULSE... " >&6; } if test -n "$PULSE_CFLAGS"; then pkg_cv_PULSE_CFLAGS="$PULSE_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 libpulse >= \$PA_REQUIRED_VERSION libpulse-mainloop-glib >= \$PA_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PULSE_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$PULSE_LIBS"; then pkg_cv_PULSE_LIBS="$PULSE_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 libpulse >= \$PA_REQUIRED_VERSION libpulse-mainloop-glib >= \$PA_REQUIRED_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PULSE_LIBS=`$PKG_CONFIG --libs "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION" 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 PULSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION" 2>&1` else PULSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 libpulse >= $PA_REQUIRED_VERSION libpulse-mainloop-glib >= $PA_REQUIRED_VERSION" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$PULSE_PKG_ERRORS" >&5 if test "x$enable_pulse" = "xyes"; then as_fn_error $? "Pulseaudio development headers not found." "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "x$enable_pulse" = "xyes"; then as_fn_error $? "Pulseaudio development headers not found." "$LINENO" 5 fi else PULSE_CFLAGS=$pkg_cv_PULSE_CFLAGS PULSE_LIBS=$pkg_cv_PULSE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } config_pulse=yes $as_echo "#define CONFIG_PULSE 1" >>confdefs.h fi fi if test "x$config_pulse" = "xyes"; then CONFIG_PULSE_TRUE= CONFIG_PULSE_FALSE='#' else CONFIG_PULSE_TRUE='#' CONFIG_PULSE_FALSE= fi mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.18 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; 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_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; 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_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; 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_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; 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_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # 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 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi 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 GCC" >&5 $as_echo_n "checking for ld used by GCC... " >&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. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path 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 ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&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 ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 $as_echo_n "checking for 64-bit host... " >&6; } if ${gl_cv_solaris_64bit+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1; then : gl_cv_solaris_64bit=yes else gl_cv_solaris_64bit=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 $as_echo "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if eval \${$gt_func_gnugettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libc=yes" else eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 $as_echo_n "checking for working iconv... " >&6; } if ${am_cv_func_iconv_works+:} false; then : $as_echo_n "(cached) " >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : am_cv_func_iconv_works=yes else am_cv_func_iconv_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi LIBS="$am_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 $as_echo "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if eval \${$gt_func_gnugettext_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libintl=yes" else eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" if test "x$PLATFORM_OS_WINDOWS" = "xyes" then USE_NLS=yes $as_echo "#define ENABLE_NLS 1" >>confdefs.h $as_echo "#define USE_INCLUDED_LIBINTL \"no\"" >>confdefs.h $as_echo "#define BUILD_INCLUDED_LIBINTL \"no\"" >>confdefs.h USE_INCLUDED_LIBINTL=no BUILD_INCLUDED_LIBINTL=no fi GETTEXT_PACKAGE=workrave cat >>confdefs.h <<_ACEOF #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" _ACEOF case "$am__api_version" in 1.01234) as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 ;; *) ;; esac INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.40.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` if test -n "0.40.0"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.40.0" >&5 $as_echo_n "checking for intltool >= 0.40.0... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || as_fn_error $? "Your intltool is too old. You need intltool 0.40.0 or later." "$LINENO" 5 fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; 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_INTLTOOL_UPDATE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_UPDATE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # 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_INTLTOOL_UPDATE="$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 INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 $as_echo "$INTLTOOL_UPDATE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; 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_INTLTOOL_MERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_MERGE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # 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_INTLTOOL_MERGE="$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 INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 $as_echo "$INTLTOOL_MERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; 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_INTLTOOL_EXTRACT+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_EXTRACT in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # 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_INTLTOOL_EXTRACT="$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 INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 $as_echo "$INTLTOOL_EXTRACT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' intltool__v_merge_options_0='-q' INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' else INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir' fi INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; 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_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case $XGETTEXT in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # 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_XGETTEXT="$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 XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; 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_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGMERGE in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # 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_MSGMERGE="$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 MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; 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_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # 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_MSGFMT="$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 MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; 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_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; 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_INTLTOOL_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS 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_INTLTOOL_PERL="$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 INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 $as_echo "$INTLTOOL_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_PERL"; then as_fn_error $? "perl not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 $as_echo_n "checking for perl >= 5.8.1... " >&6; } $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 else IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi if test "x" != "xno-xml"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 $as_echo_n "checking for XML::Parser... " >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } else as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile # Check whether --enable-manual was given. if test "${enable_manual+set}" = set; then : enableval=$enable_manual; fi if test "x$enable_manual" = "xyes"; then # Extract the first word of "jw", so it can be a program name with args. set dummy jw; 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_JW+:} false; then : $as_echo_n "(cached) " >&6 else case $JW in [\\/]* | ?:[\\/]*) ac_cv_path_JW="$JW" # 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_JW="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_JW" && ac_cv_path_JW="no" ;; esac fi JW=$ac_cv_path_JW if test -n "$JW"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JW" >&5 $as_echo "$JW" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$JW" = "xno"; then as_fn_error $? "'jw' program needed by the manual not found in path" "$LINENO" 5 fi # Extract the first word of "xmlto", so it can be a program name with args. set dummy xmlto; 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_XMLTO+:} false; then : $as_echo_n "(cached) " >&6 else case $XMLTO in [\\/]* | ?:[\\/]*) ac_cv_path_XMLTO="$XMLTO" # 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_XMLTO="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_XMLTO" && ac_cv_path_XMLTO="no" ;; esac fi XMLTO=$ac_cv_path_XMLTO if test -n "$XMLTO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLTO" >&5 $as_echo "$XMLTO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$XMLTO" = "xno"; then as_fn_error $? "'xmlto' program needed by the manual not found in path" "$LINENO" 5 fi fi if test "x$enable_manual" = "xyes"; then ENABLE_MANUAL_TRUE= ENABLE_MANUAL_FALSE='#' else ENABLE_MANUAL_TRUE='#' ENABLE_MANUAL_FALSE= fi variant="" if test "x$PLATFORM_OS_WINDOWS" = "xyes" then variant="$variant win32" elif test "x$PLATFORM_OS_MACOS" = "xyes" then variant="$variant macos unix" elif test "x$platform_os_unix" = "xyes" then variant="$variant x11 unix" fi WR_BACKEND_INCLUDES="-I\$(top_srcdir)/backend/include" WR_COMMON_INCLUDES="-I\$(top_srcdir)/common/include -I\$(top_srcdir)/libs/dbus/include" WR_FRONTEND_COMMON_INCLUDES="-I\$(top_srcdir)/frontend/common/include" for v in $variant; do if test -d common/src/$v then WR_COMMON_INCLUDES="$WR_COMMON_INCLUDES -I\$(top_srcdir)/common/include/$v" fi done WR_LDADD="-lworkrave-backend -lworkrave-frontend-common -lworkrave-common" if test "x$config_dbus" = "xyes"; then WR_LDADD="$WR_LDADD -lworkrave-dbus" fi WR_LDFLAGS="-L\$(top_builddir)/common/src/ -L\$(top_builddir)/backend/src/ -L\$(top_builddir)/frontend/common/src -L\$(top_builddir)/libs/dbus/src/" config_tests=no if test "x$enable_tests" = "xyes"; then config_tests=yes $as_echo "#define HAVE_TESTS /**/" >>confdefs.h fi if test "x$config_tests" = "xyes"; then HAVE_TESTS_TRUE= HAVE_TESTS_FALSE='#' else HAVE_TESTS_TRUE='#' HAVE_TESTS_FALSE= fi config_exercises=no if test "x$enable_exercises" != "xno"; then config_exercises=yes $as_echo "#define HAVE_EXERCISES /**/" >>confdefs.h fi if test "x$config_exercises" = "xyes"; then HAVE_EXERCISES_TRUE= HAVE_EXERCISES_FALSE='#' else HAVE_EXERCISES_TRUE='#' HAVE_EXERCISES_FALSE= fi config_experimental=no if test "x$enable_experimental" = "xyes"; then config_experimental=yes $as_echo "#define HAVE_EXPERIMENTAL /**/" >>confdefs.h fi if test "x$config_experimental" = "xyes"; then HAVE_EXPERIMENTAL_TRUE= HAVE_EXPERIMENTAL_FALSE='#' else HAVE_EXPERIMENTAL_TRUE='#' HAVE_EXPERIMENTAL_FALSE= fi config_text=no if test "x$enable_app_text" = "xyes"; then config_text=yes $as_echo "#define HAVE_APP_TEXT /**/" >>confdefs.h fi if test "x$config_text" = "xyes"; then HAVE_APP_TEXT_TRUE= HAVE_APP_TEXT_FALSE='#' else HAVE_APP_TEXT_TRUE='#' HAVE_APP_TEXT_FALSE= fi if test "x$PLATFORM_OS_WINDOWS" = "xyes" then LANGFILE="./frontend/gtkmm/win32/setup/lang.iss" ALL_LINGUAS="$(cat ./po/LINGUAS |grep -v '^#' | tr '\n' ' ' | awk '{$1=$1;print}')" cat >>confdefs.h <<_ACEOF #define ALL_LINGUAS "$ALL_LINGUAS" _ACEOF echo -n "; language.iss --- Inno setup file, support languages" > $LANGFILE echo -en "\r\n" >> $LANGFILE for a in $ALL_LINGUAS; do X="Source: \"..\\..\\..\\..\\po\\$a.gmo\"; DestDir: \"{app}\\lib\\locale\\$a\\LC_MESSAGES\"; DestName: \"workrave.mo\"; Flags: ignoreversion;" echo -n $X >> $LANGFILE echo -en "\r\n" >> $LANGFILE done fi ac_config_files="$ac_config_files Makefile backend/Makefile backend/test/Makefile backend/src/Makefile backend/src/org.workrave.gschema.xml.in backend/src/unix/Makefile backend/src/macos/Makefile backend/src/win32/Makefile backend/include/Makefile common/Makefile common/bin/Makefile common/src/Makefile common/src/win32/Makefile common/include/Makefile common/include/win32/Makefile common/win32/Makefile common/win32/harpoon/Makefile common/win32/harpoon/include/Makefile common/win32/harpoon/src/Makefile common/win32/harpoonHelper/Makefile common/win32/harpoonHelper/include/Makefile common/win32/harpoonHelper/src/Makefile libs/Makefile libs/dbus/Makefile libs/dbus/bin/Makefile libs/dbus/data/Makefile libs/dbus/include/Makefile libs/dbus/include/dbus/Makefile libs/dbus/src/Makefile frontend/Makefile frontend/common/Makefile frontend/common/include/Makefile frontend/common/share/Makefile frontend/common/share/sounds/Makefile frontend/common/share/sounds/bells/Makefile frontend/common/share/sounds/subtle/Makefile frontend/common/share/sounds/default/Makefile frontend/common/share/images/Makefile frontend/common/share/images/16x16/Makefile frontend/common/share/images/24x24/Makefile frontend/common/share/images/32x32/Makefile frontend/common/share/images/48x48/Makefile frontend/common/share/images/64x64/Makefile frontend/common/share/images/96x96/Makefile frontend/common/share/images/128x128/Makefile frontend/common/share/images/scalable/Makefile frontend/common/share/images/win32/Makefile frontend/common/share/images/macos/Makefile frontend/common/src/Makefile frontend/common/src/win32/Makefile frontend/common/src/x11/Makefile frontend/common/src/macos/Makefile frontend/applets/Makefile frontend/applets/win32/Makefile frontend/applets/win32/src/Makefile frontend/applets/win32/include/Makefile frontend/applets/common/Makefile frontend/applets/common/src/Makefile frontend/applets/common/include/Makefile frontend/applets/gnome3/Makefile frontend/applets/gnome3/src/Makefile frontend/applets/indicator/Makefile frontend/applets/indicator/src/Makefile frontend/applets/indicator/include/Makefile frontend/applets/xfce/Makefile frontend/applets/xfce/src/Makefile frontend/applets/xfce/include/Makefile frontend/applets/mate/Makefile frontend/applets/mate/src/Makefile frontend/applets/mate/include/Makefile frontend/applets/gnome-shell/Makefile frontend/applets/gnome-shell/src/Makefile frontend/applets/cinnamon/Makefile frontend/applets/cinnamon/src/Makefile frontend/gtkmm/Makefile frontend/gtkmm/macos/Makefile frontend/gtkmm/win32/Makefile frontend/gtkmm/win32/setup/Makefile frontend/gtkmm/win32/setup/setup.iss frontend/gtkmm/win32/setup/src/Makefile frontend/gtkmm/src/Makefile frontend/gtkmm/src/org.workrave.gui.gschema.xml.in frontend/gtkmm/src/win32/Makefile frontend/gtkmm/src/unix/Makefile frontend/gtkmm/src/macos/Makefile frontend/text/Makefile frontend/text/src/Makefile frontend/plugin/Makefile frontend/plugin/distribution/Makefile frontend/plugin/distribution/gtkmm/Makefile frontend/plugin/distribution/gtkmm/src/Makefile frontend/plugin/statistics/Makefile frontend/plugin/statistics/gtkmm/Makefile frontend/plugin/statistics/gtkmm/src/Makefile frontend/plugin/exercises/Makefile frontend/plugin/exercises/common/Makefile frontend/plugin/exercises/common/share/Makefile frontend/plugin/exercises/common/src/Makefile frontend/plugin/exercises/gtkmm/Makefile frontend/plugin/exercises/gtkmm/src/Makefile po/Makefile.in contrib/Makefile contrib/plot/Makefile contrib/send_menu_command/Makefile contrib/send_menu_command/win32/Makefile contrib/send_dbus_command/Makefile contrib/send_dbus_command/kde/Makefile build/Makefile m4/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepOBJC_TRUE}" && test -z "${am__fastdepOBJC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepOBJC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepOBJCXX_TRUE}" && test -z "${am__fastdepOBJCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepOBJCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${PLATFORM_OS_WINDOWS_TRUE}" && test -z "${PLATFORM_OS_WINDOWS_FALSE}"; then as_fn_error $? "conditional \"PLATFORM_OS_WINDOWS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${PLATFORM_OS_MACOS_TRUE}" && test -z "${PLATFORM_OS_MACOS_FALSE}"; then as_fn_error $? "conditional \"PLATFORM_OS_MACOS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${PLATFORM_OS_UNIX_TRUE}" && test -z "${PLATFORM_OS_UNIX_FALSE}"; then as_fn_error $? "conditional \"PLATFORM_OS_UNIX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_LANGUAGE_SELECTION_TRUE}" && test -z "${HAVE_LANGUAGE_SELECTION_FALSE}"; then as_fn_error $? "conditional \"HAVE_LANGUAGE_SELECTION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_DSOUND_TRUE}" && test -z "${HAVE_DSOUND_FALSE}"; then as_fn_error $? "conditional \"HAVE_DSOUND\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_DBUS_TRUE}" && test -z "${HAVE_DBUS_FALSE}"; then as_fn_error $? "conditional \"HAVE_DBUS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PYTHON_JINJA2_TRUE}" && test -z "${HAVE_PYTHON_JINJA2_FALSE}"; then as_fn_error $? "conditional \"HAVE_PYTHON_JINJA2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PANELAPPLET_TRUE}" && test -z "${HAVE_PANELAPPLET_FALSE}"; then as_fn_error $? "conditional \"HAVE_PANELAPPLET\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PANELAPPLET4_TRUE}" && test -z "${HAVE_PANELAPPLET4_FALSE}"; then as_fn_error $? "conditional \"HAVE_PANELAPPLET4\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PANELAPPLET5_TRUE}" && test -z "${HAVE_PANELAPPLET5_FALSE}"; then as_fn_error $? "conditional \"HAVE_PANELAPPLET5\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_LIBGNOME_PANEL_TRUE}" && test -z "${HAVE_LIBGNOME_PANEL_FALSE}"; then as_fn_error $? "conditional \"HAVE_LIBGNOME_PANEL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GSETTINGS_TRUE}" && test -z "${HAVE_GSETTINGS_FALSE}"; then as_fn_error $? "conditional \"HAVE_GSETTINGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_APP_GTKMM_TRUE}" && test -z "${HAVE_APP_GTKMM_FALSE}"; then as_fn_error $? "conditional \"HAVE_APP_GTKMM\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GTK3_TRUE}" && test -z "${HAVE_GTK3_FALSE}"; then as_fn_error $? "conditional \"HAVE_GTK3\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_INTROSPECTION_TRUE}" && test -z "${HAVE_INTROSPECTION_FALSE}"; then as_fn_error $? "conditional \"HAVE_INTROSPECTION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_INTROSPECTION_TRUE}" && test -z "${HAVE_INTROSPECTION_FALSE}"; then as_fn_error $? "conditional \"HAVE_INTROSPECTION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LOCALINSTALL_TRUE}" && test -z "${LOCALINSTALL_FALSE}"; then as_fn_error $? "conditional \"LOCALINSTALL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_INDICATOR_TRUE}" && test -z "${HAVE_INDICATOR_FALSE}"; then as_fn_error $? "conditional \"HAVE_INDICATOR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_XFCE_TRUE}" && test -z "${HAVE_XFCE_FALSE}"; then as_fn_error $? "conditional \"HAVE_XFCE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_XFCE_GTK2_TRUE}" && test -z "${HAVE_XFCE_GTK2_FALSE}"; then as_fn_error $? "conditional \"HAVE_XFCE_GTK2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_XFCE_GTK3_TRUE}" && test -z "${HAVE_XFCE_GTK3_FALSE}"; then as_fn_error $? "conditional \"HAVE_XFCE_GTK3\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_MATE_TRUE}" && test -z "${HAVE_MATE_FALSE}"; then as_fn_error $? "conditional \"HAVE_MATE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_MATE_GTK2_TRUE}" && test -z "${HAVE_MATE_GTK2_FALSE}"; then as_fn_error $? "conditional \"HAVE_MATE_GTK2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_MATE_GTK3_TRUE}" && test -z "${HAVE_MATE_GTK3_FALSE}"; then as_fn_error $? "conditional \"HAVE_MATE_GTK3\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GTK2_TRUE}" && test -z "${HAVE_GTK2_FALSE}"; then as_fn_error $? "conditional \"HAVE_GTK2\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GCONF_TRUE}" && test -z "${HAVE_GCONF_FALSE}"; then as_fn_error $? "conditional \"HAVE_GCONF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GDOME_TRUE}" && test -z "${HAVE_GDOME_FALSE}"; then as_fn_error $? "conditional \"HAVE_GDOME\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_DISTRIBUTION_TRUE}" && test -z "${HAVE_DISTRIBUTION_FALSE}"; then as_fn_error $? "conditional \"HAVE_DISTRIBUTION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GNET_TRUE}" && test -z "${HAVE_GNET_FALSE}"; then as_fn_error $? "conditional \"HAVE_GNET\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${CONFIG_PULSE_TRUE}" && test -z "${CONFIG_PULSE_FALSE}"; then as_fn_error $? "conditional \"CONFIG_PULSE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi ac_config_commands="$ac_config_commands po/stamp-it" if test -z "${ENABLE_MANUAL_TRUE}" && test -z "${ENABLE_MANUAL_FALSE}"; then as_fn_error $? "conditional \"ENABLE_MANUAL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_TESTS_TRUE}" && test -z "${HAVE_TESTS_FALSE}"; then as_fn_error $? "conditional \"HAVE_TESTS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_EXERCISES_TRUE}" && test -z "${HAVE_EXERCISES_FALSE}"; then as_fn_error $? "conditional \"HAVE_EXERCISES\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_EXPERIMENTAL_TRUE}" && test -z "${HAVE_EXPERIMENTAL_FALSE}"; then as_fn_error $? "conditional \"HAVE_EXPERIMENTAL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_APP_TEXT_TRUE}" && test -z "${HAVE_APP_TEXT_FALSE}"; then as_fn_error $? "conditional \"HAVE_APP_TEXT\" 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 workrave $as_me 1.10.50, 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 . workrave home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ workrave config.status 1.10.50 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" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_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"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' 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_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $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_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "backend/Makefile") CONFIG_FILES="$CONFIG_FILES backend/Makefile" ;; "backend/test/Makefile") CONFIG_FILES="$CONFIG_FILES backend/test/Makefile" ;; "backend/src/Makefile") CONFIG_FILES="$CONFIG_FILES backend/src/Makefile" ;; "backend/src/org.workrave.gschema.xml.in") CONFIG_FILES="$CONFIG_FILES backend/src/org.workrave.gschema.xml.in" ;; "backend/src/unix/Makefile") CONFIG_FILES="$CONFIG_FILES backend/src/unix/Makefile" ;; "backend/src/macos/Makefile") CONFIG_FILES="$CONFIG_FILES backend/src/macos/Makefile" ;; "backend/src/win32/Makefile") CONFIG_FILES="$CONFIG_FILES backend/src/win32/Makefile" ;; "backend/include/Makefile") CONFIG_FILES="$CONFIG_FILES backend/include/Makefile" ;; "common/Makefile") CONFIG_FILES="$CONFIG_FILES common/Makefile" ;; "common/bin/Makefile") CONFIG_FILES="$CONFIG_FILES common/bin/Makefile" ;; "common/src/Makefile") CONFIG_FILES="$CONFIG_FILES common/src/Makefile" ;; "common/src/win32/Makefile") CONFIG_FILES="$CONFIG_FILES common/src/win32/Makefile" ;; "common/include/Makefile") CONFIG_FILES="$CONFIG_FILES common/include/Makefile" ;; "common/include/win32/Makefile") CONFIG_FILES="$CONFIG_FILES common/include/win32/Makefile" ;; "common/win32/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/Makefile" ;; "common/win32/harpoon/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoon/Makefile" ;; "common/win32/harpoon/include/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoon/include/Makefile" ;; "common/win32/harpoon/src/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoon/src/Makefile" ;; "common/win32/harpoonHelper/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoonHelper/Makefile" ;; "common/win32/harpoonHelper/include/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoonHelper/include/Makefile" ;; "common/win32/harpoonHelper/src/Makefile") CONFIG_FILES="$CONFIG_FILES common/win32/harpoonHelper/src/Makefile" ;; "libs/Makefile") CONFIG_FILES="$CONFIG_FILES libs/Makefile" ;; "libs/dbus/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/Makefile" ;; "libs/dbus/bin/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/bin/Makefile" ;; "libs/dbus/data/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/data/Makefile" ;; "libs/dbus/include/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/include/Makefile" ;; "libs/dbus/include/dbus/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/include/dbus/Makefile" ;; "libs/dbus/src/Makefile") CONFIG_FILES="$CONFIG_FILES libs/dbus/src/Makefile" ;; "frontend/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/Makefile" ;; "frontend/common/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/Makefile" ;; "frontend/common/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/include/Makefile" ;; "frontend/common/share/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/Makefile" ;; "frontend/common/share/sounds/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/sounds/Makefile" ;; "frontend/common/share/sounds/bells/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/sounds/bells/Makefile" ;; "frontend/common/share/sounds/subtle/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/sounds/subtle/Makefile" ;; "frontend/common/share/sounds/default/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/sounds/default/Makefile" ;; "frontend/common/share/images/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/Makefile" ;; "frontend/common/share/images/16x16/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/16x16/Makefile" ;; "frontend/common/share/images/24x24/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/24x24/Makefile" ;; "frontend/common/share/images/32x32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/32x32/Makefile" ;; "frontend/common/share/images/48x48/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/48x48/Makefile" ;; "frontend/common/share/images/64x64/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/64x64/Makefile" ;; "frontend/common/share/images/96x96/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/96x96/Makefile" ;; "frontend/common/share/images/128x128/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/128x128/Makefile" ;; "frontend/common/share/images/scalable/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/scalable/Makefile" ;; "frontend/common/share/images/win32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/win32/Makefile" ;; "frontend/common/share/images/macos/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/share/images/macos/Makefile" ;; "frontend/common/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/src/Makefile" ;; "frontend/common/src/win32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/src/win32/Makefile" ;; "frontend/common/src/x11/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/src/x11/Makefile" ;; "frontend/common/src/macos/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/common/src/macos/Makefile" ;; "frontend/applets/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/Makefile" ;; "frontend/applets/win32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/win32/Makefile" ;; "frontend/applets/win32/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/win32/src/Makefile" ;; "frontend/applets/win32/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/win32/include/Makefile" ;; "frontend/applets/common/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/common/Makefile" ;; "frontend/applets/common/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/common/src/Makefile" ;; "frontend/applets/common/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/common/include/Makefile" ;; "frontend/applets/gnome3/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/gnome3/Makefile" ;; "frontend/applets/gnome3/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/gnome3/src/Makefile" ;; "frontend/applets/indicator/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/indicator/Makefile" ;; "frontend/applets/indicator/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/indicator/src/Makefile" ;; "frontend/applets/indicator/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/indicator/include/Makefile" ;; "frontend/applets/xfce/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/xfce/Makefile" ;; "frontend/applets/xfce/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/xfce/src/Makefile" ;; "frontend/applets/xfce/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/xfce/include/Makefile" ;; "frontend/applets/mate/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/mate/Makefile" ;; "frontend/applets/mate/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/mate/src/Makefile" ;; "frontend/applets/mate/include/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/mate/include/Makefile" ;; "frontend/applets/gnome-shell/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/gnome-shell/Makefile" ;; "frontend/applets/gnome-shell/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/gnome-shell/src/Makefile" ;; "frontend/applets/cinnamon/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/cinnamon/Makefile" ;; "frontend/applets/cinnamon/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/applets/cinnamon/src/Makefile" ;; "frontend/gtkmm/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/Makefile" ;; "frontend/gtkmm/macos/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/macos/Makefile" ;; "frontend/gtkmm/win32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/win32/Makefile" ;; "frontend/gtkmm/win32/setup/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/win32/setup/Makefile" ;; "frontend/gtkmm/win32/setup/setup.iss") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/win32/setup/setup.iss" ;; "frontend/gtkmm/win32/setup/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/win32/setup/src/Makefile" ;; "frontend/gtkmm/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/src/Makefile" ;; "frontend/gtkmm/src/org.workrave.gui.gschema.xml.in") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/src/org.workrave.gui.gschema.xml.in" ;; "frontend/gtkmm/src/win32/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/src/win32/Makefile" ;; "frontend/gtkmm/src/unix/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/src/unix/Makefile" ;; "frontend/gtkmm/src/macos/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/gtkmm/src/macos/Makefile" ;; "frontend/text/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/text/Makefile" ;; "frontend/text/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/text/src/Makefile" ;; "frontend/plugin/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/Makefile" ;; "frontend/plugin/distribution/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/distribution/Makefile" ;; "frontend/plugin/distribution/gtkmm/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/distribution/gtkmm/Makefile" ;; "frontend/plugin/distribution/gtkmm/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/distribution/gtkmm/src/Makefile" ;; "frontend/plugin/statistics/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/statistics/Makefile" ;; "frontend/plugin/statistics/gtkmm/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/statistics/gtkmm/Makefile" ;; "frontend/plugin/statistics/gtkmm/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/statistics/gtkmm/src/Makefile" ;; "frontend/plugin/exercises/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/Makefile" ;; "frontend/plugin/exercises/common/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/common/Makefile" ;; "frontend/plugin/exercises/common/share/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/common/share/Makefile" ;; "frontend/plugin/exercises/common/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/common/src/Makefile" ;; "frontend/plugin/exercises/gtkmm/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/gtkmm/Makefile" ;; "frontend/plugin/exercises/gtkmm/src/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/plugin/exercises/gtkmm/src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "contrib/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/Makefile" ;; "contrib/plot/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/plot/Makefile" ;; "contrib/send_menu_command/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/send_menu_command/Makefile" ;; "contrib/send_menu_command/win32/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/send_menu_command/win32/Makefile" ;; "contrib/send_dbus_command/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/send_dbus_command/Makefile" ;; "contrib/send_dbus_command/kde/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/send_dbus_command/kde/Makefile" ;; "build/Makefile") CONFIG_FILES="$CONFIG_FILES build/Makefile" ;; "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; *) 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"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 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 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='CXX ' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build 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 # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # 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 into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using 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_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r po/POTFILES } ' "po/Makefile.in" >"po/Makefile" rm -f "po/Makefile.tmp" mv "po/stamp-it.tmp" "po/stamp-it" ;; 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 echo "" echo " Workrave $VERSION" echo " ===================" echo "" echo " prefix: ${prefix}" echo "" echo " OS : ${platform_os_name}" echo "" echo " GConf configuration : ${config_gconf}" echo " GSettings configuration : ${config_gsettings}" echo " XML configuration : ${config_xml}" echo "" if test "$platform_os_unix" = "yes"; then echo " Activity Monitors : ${enable_monitors}" echo "" fi echo " Gtk GUI : ${config_gtk} (Gtk${config_gtk_version})" echo " Gnome 3 support : ${config_gnome3}" echo "GObject-Introspection support : ${found_introspection}" echo " Indicator support : ${config_indicator}" echo " XFCE support : ${config_xfce} (Gtk${config_xfce_gtk_version})" echo " MATE support : ${config_mate} (Gtk${config_mate_gtk_version})" echo " DBUS support : ${config_dbus}" echo " Networking support : ${config_distribution}" echo " GStreamer support : ${config_gstreamer}" if test "$platform_os_unix" = "yes"; then echo " Pulseaudio support : ${config_pulse}" fi echo " Exercises : ${config_exercises}" echo "" echo " Experimental features : ${config_experimental}" echo " Debugging : ${config_debug}" echo " Debug logs : ${config_tracing}" echo " Test code : ${config_tests}" echo "" workrave-1.10.50/Makefile.am0000644000175100001710000000202314221624106014452 0ustar00gdm00000000000000MAINTAINERCLEANFILES = \ aclocal.m4 config.h.in configure stamp-h.in \ Makefile.in \ install-sh missing mkinstalldirs config.cache \ config.log config.status \ config.guess config.sub depcomp ltmain.sh \ build-stamp intltool-update.in intltool-update \ intltool-merge.in intltool-merge \ intltool-extract.in intltool-extract workrave.spec \ compile AUTHORS.txt COPYING.txt \ NEWS.txt README.txt DISTCLEANFILES = intltool-extract intltool-merge intltool-update SUBDIRS = m4 po common libs backend frontend DIST_SUBDIRS = $(SUBDIRS) build contrib EXTRA_DIST = config.xml README.md autogen.sh changes.yaml DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall noinst_PROGRAMS = if PLATFORM_OS_WINDOWS dist_pkgdata_DATA = README.txt NEWS.txt AUTHORS.txt COPYING.txt endif ACLOCAL_AMFLAGS = -I m4 unix2dos = perl -e 'while (<>) { s/$$/\r/; print; }' README.txt: README.md $(unix2dos) <$^ >$@ NEWS.txt: NEWS $(unix2dos) <$^ >$@ AUTHORS.txt: AUTHORS $(unix2dos) <$^ >$@ COPYING.txt: COPYING $(unix2dos) <$^ >$@ workrave-1.10.50/libs/0000755000000000000000000000000014221624436014451 5ustar00rootroot00000000000000workrave-1.10.50/libs/Makefile.in0000644000000000000000000005477314221624203016526 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = dbus all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/Makefile.am0000644000175100001710000000006414221624107015407 0ustar00gdm00000000000000MAINTAINERCLEANFILES = Makefile.in SUBDIRS = dbus workrave-1.10.50/libs/dbus/0000755000000000000000000000000014221624436015406 5ustar00rootroot00000000000000workrave-1.10.50/libs/dbus/include/0000755000000000000000000000000014221624436017031 5ustar00rootroot00000000000000workrave-1.10.50/libs/dbus/include/Makefile.in0000644000000000000000000005504214221624203021074 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs/dbus/include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = dbus all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/dbus/include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/dbus/include/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/dbus/include/Makefile.am0000644000175100001710000000006314221624107017766 0ustar00gdm00000000000000MAINTAINERCLEANFILES = Makefile.in SUBDIRS = dbus workrave-1.10.50/libs/dbus/include/dbus/0000755000000000000000000000000014221624436017766 5ustar00rootroot00000000000000workrave-1.10.50/libs/dbus/include/dbus/DBusException.hh0000644000175100001710000001134214221624107021726 0ustar00gdm00000000000000// DBusException.hh --- DBUS interface // // Copyright (C) 2007, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSEXCEPTION_HH #define WORKRAVE_DBUS_DBUSEXCEPTION_HH #include #include #include "Exception.hh" namespace workrave { namespace dbus { extern const char *DBUS_ERROR_FAILED; extern const char *DBUS_ERROR_NOT_SUPPORTED; extern const char *DBUS_ERROR_INVALID_ARGS; extern const char *DBUS_ERROR_UNKNOWN_METHOD; class DBusException : public Exception { public: explicit DBusException(const std::string &detail) : Exception(detail) { } ~DBusException() override = default; }; using message_info = boost::error_info; using error_code_info = boost::error_info; using object_info = boost::error_info; using interface_info = boost::error_info; using method_info = boost::error_info; using argument_info = boost::error_info; using actual_type_info = boost::error_info; using expected_type_info = boost::error_info; using field_info = boost::error_info; using parameter_info = boost::error_info; using field_path_info = boost::error_info; class DBusRemoteException : public virtual boost::exception , public virtual std::exception { public: std::string error() { std::string ret; if (const std::string *msg = boost::get_error_info(*this)) { ret = *msg; } return ret; } DBusRemoteException &operator<<(const field_info &rhs) { if (const std::string *msg = boost::get_error_info(*this)) { *this << field_path_info(rhs.value() + "." + *msg); } else { *this << field_path_info(rhs.value()); } return *this; } void prepend_field(const std::string &field) { if (const std::string *msg = boost::get_error_info(*this)) { *this << field_path_info(field + "." + *msg); } else { *this << field_path_info(field); } } std::string diag() { std::string ret; if (const std::string *msg = boost::get_error_info(*this)) { ret += *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " object path=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " interface=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " method=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " argument=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " type=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " expected_type=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " fieldpath=" + *msg; } if (const std::string *msg = boost::get_error_info(*this)) { ret += " parameter=" + *msg; } return ret; } }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSEXCEPTION_HH workrave-1.10.50/libs/dbus/include/dbus/IDBusWatch.hh0000644000175100001710000000223614221624107021151 0ustar00gdm00000000000000// IDBusWatch.hh --- DBUS bus watch interface // // Copyright (C) 2007, 2008, 2011, 2012 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_IDBUSWATCH_HH #define WORKRAVE_DBUS_IDBUSWATCH_HH #include namespace workrave { namespace dbus { class IDBusWatch { public: virtual ~IDBusWatch() = default; virtual void bus_name_presence(const std::string &name, bool present) = 0; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_IDBUSWATCH_HH workrave-1.10.50/libs/dbus/include/dbus/DBusBindingFreeDesktop.hh0000644000175100001710000000646214221624107023505 0ustar00gdm00000000000000// DBusBinding.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSBINDINGFREEDESKTOP_HH #define WORKRAVE_DBUS_DBUSBINDINGFREEDESKTOP_HH #include #include #include #include "dbus/DBusBinding.hh" #include "dbus/IDBus.hh" namespace workrave { namespace dbus { class IDBusPrivateFreeDesktop { public: typedef std::shared_ptr Ptr; virtual ~IDBusPrivateFreeDesktop() {} virtual void send(DBusMessage *msg) const = 0; }; struct DBusIntrospectArg { const char *name; const char *type; const char *direction; }; struct DBusIntrospect { const char *name; const char *signature; }; class DBusBindingFreeDesktop : public DBusBinding { public: explicit DBusBindingFreeDesktop(IDBus::Ptr dbus); virtual ~DBusBindingFreeDesktop(); virtual DBusIntrospect *get_method_introspect() = 0; virtual DBusIntrospect *get_signal_introspect() = 0; DBusMessage *call(const std::string &method, void *object, DBusMessage *message); protected: virtual DBusMessage *call(int method, void *object, DBusMessage *message) = 0; void send(DBusMessage *msg); void get_uint8(DBusMessageIter *it, uint8_t *value); void get_uint16(DBusMessageIter *it, uint16_t *value); void get_int16(DBusMessageIter *it, int16_t *value); void get_uint32(DBusMessageIter *it, uint32_t *value); void get_int32(DBusMessageIter *it, int32_t *value); void get_uint64(DBusMessageIter *it, uint64_t *value); void get_int64(DBusMessageIter *it, int64_t *value); void get_bool(DBusMessageIter *it, bool *value); void get_double(DBusMessageIter *it, double *value); void get_string(DBusMessageIter *it, std::string *value); void put_uint8(DBusMessageIter *it, const uint8_t *value); void put_uint16(DBusMessageIter *it, const uint16_t *value); void put_int16(DBusMessageIter *it, const int16_t *value); void put_uint32(DBusMessageIter *it, const uint32_t *value); void put_int32(DBusMessageIter *it, const int32_t *value); void put_uint64(DBusMessageIter *it, const uint64_t *value); void put_int64(DBusMessageIter *it, const int64_t *value); void put_bool(DBusMessageIter *it, const bool *value); void put_double(DBusMessageIter *it, const double *value); void put_string(DBusMessageIter *it, const std::string *value); IDBus::Ptr dbus; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSBINDINGFREEDESKTOP_HH workrave-1.10.50/libs/dbus/include/dbus/Makefile.in0000644000000000000000000004052214221624203022026 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs/dbus/include/dbus ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/dbus/include/dbus/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/dbus/include/dbus/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/dbus/include/dbus/DBusBinding.hh0000644000175100001710000000205114221624107021337 0ustar00gdm00000000000000// Copyright (C) 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSBINDING_HH #define WORKRAVE_DBUS_DBUSBINDING_HH #include #include "DBusBinding.hh" namespace workrave { namespace dbus { class DBusBinding { public: virtual ~DBusBinding() = default; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSBINDING_HH workrave-1.10.50/libs/dbus/include/dbus/DBusBindingQt.hh0000644000175100001710000000573214221624107021655 0ustar00gdm00000000000000// DBusBinding-qt.hh --- DBUS interface // // Copyright (C) 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSBINDINGQT_HH #define WORKRAVE_DBUS_DBUSBINDINGQT_HH #include #include #include "dbus/DBusBinding.hh" #include "dbus/IDBus.hh" namespace workrave { namespace dbus { class DBus; class IDBusPrivateQt { public: typedef std::shared_ptr Ptr; virtual ~IDBusPrivateQt() {} virtual QDBusConnection get_connection() = 0; }; class DBusBindingQt : public DBusBinding { public: explicit DBusBindingQt(IDBus::Ptr dbus); ~DBusBindingQt() override; virtual const char *get_interface_introspect() = 0; virtual bool call(void *object, const QDBusMessage &message, const QDBusConnection &connection) = 0; protected: IDBus::Ptr dbus; }; class DBusMarshallQt { public: void get_int(const QVariant &variant, int &value); void get_uint8(const QVariant &variant, uint8_t &value); void get_uint16(const QVariant &variant, uint16_t &value); void get_int16(const QVariant &variant, int16_t &value); void get_uint32(const QVariant &variant, uint32_t &value); void get_int32(const QVariant &variant, int32_t &value); void get_uint64(const QVariant &variant, uint64_t &value); void get_int64(const QVariant &variant, int64_t &value); void get_bool(const QVariant &variant, bool &value); void get_double(const QVariant &variant, double &value); void get_string(const QVariant &variant, std::string &value); void get_string(const QVariant &variant, QString &value); QVariant put_uint8(const uint8_t &value); QVariant put_int(const int &value); QVariant put_uint16(const uint16_t &value); QVariant put_int16(const int16_t &value); QVariant put_uint32(const uint32_t &value); QVariant put_int32(const int32_t &value); QVariant put_uint64(const uint64_t &value); QVariant put_int64(const int64_t &value); QVariant put_bool(const bool &value); QVariant put_double(const double &value); QVariant put_string(const std::string &value); QVariant put_string(const QString &value); }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSBINDINGQT_HH workrave-1.10.50/libs/dbus/include/dbus/Makefile.am0000644000175100001710000000011414221624107020720 0ustar00gdm00000000000000MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.hh) workrave-1.10.50/libs/dbus/include/dbus/IDBus.hh0000644000175100001710000000377414221624107020172 0ustar00gdm00000000000000// DBus.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_IDBUS_HH #define WORKRAVE_DBUS_IDBUS_HH #include #include "dbus/DBusException.hh" namespace workrave { namespace dbus { class IDBusWatch; class DBusBinding; class IDBus { public: using Ptr = std::shared_ptr; public: virtual ~IDBus() = default; virtual void init() = 0; virtual void register_service(const std::string &service, IDBusWatch *cb = nullptr) = 0; virtual void register_object_path(const std::string &object_path) = 0; virtual void connect(const std::string &object_path, const std::string &interface_name, void *object) = 0; virtual void disconnect(const std::string &object_path, const std::string &interface_name) = 0; virtual void register_binding(const std::string &interface_name, DBusBinding *binding) = 0; virtual DBusBinding *find_binding(const std::string &interface_name) const = 0; virtual bool is_available() const = 0; virtual bool is_running(const std::string &name) const = 0; virtual void watch(const std::string &name, IDBusWatch *cb) = 0; virtual void unwatch(const std::string &name) = 0; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_IDBUS_HH workrave-1.10.50/libs/dbus/include/dbus/DBusBindingGio.hh0000644000175100001710000000562714221624107022012 0ustar00gdm00000000000000// DBusBinding-gio.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSBINDINGGIO_HH #define WORKRAVE_DBUS_DBUSBINDINGGIO_HH #include #include #include "dbus/DBusBinding.hh" #include "dbus/IDBus.hh" namespace workrave { namespace dbus { class IDBusPrivateGio { public: using Ptr = std::shared_ptr; virtual ~IDBusPrivateGio() = default; virtual GDBusConnection *get_connection() const = 0; }; class DBusBindingGio : public DBusBinding { public: explicit DBusBindingGio(IDBus::Ptr dbus); ~DBusBindingGio() override; virtual const char *get_interface_introspect() = 0; virtual void call(const std::string &method, void *object, GDBusMethodInvocation *invocation, const std::string &sender, GVariant *inargs) = 0; protected: IDBus::Ptr dbus; }; class DBusMarshallGio { public: void get_int(GVariant *v, int *value); void get_uint8(GVariant *v, uint8_t *value); void get_uint16(GVariant *v, uint16_t *value); void get_int16(GVariant *v, int16_t *value); void get_uint32(GVariant *v, uint32_t *value); void get_int32(GVariant *v, int32_t *value); void get_uint64(GVariant *v, uint64_t *value); void get_int64(GVariant *v, int64_t *value); void get_bool(GVariant *v, bool *value); void get_double(GVariant *v, double *value); void get_string(GVariant *v, std::string *value); GVariant *put_int(const int *value); GVariant *put_uint8(const uint8_t *value); GVariant *put_uint16(const uint16_t *value); GVariant *put_int16(const int16_t *value); GVariant *put_uint32(const uint32_t *value); GVariant *put_int32(const int32_t *value); GVariant *put_uint64(const uint64_t *value); GVariant *put_int64(const int64_t *value); GVariant *put_bool(const bool *value); GVariant *put_double(const double *value); GVariant *put_string(const std::string *value); }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSBINDINGGIO_HH workrave-1.10.50/libs/dbus/include/dbus/DBusFactory.hh0000644000175100001710000000206014221624107021374 0ustar00gdm00000000000000// DBusFactory.hh // // Copyright (C) 2015 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSFACTORY_HH #define WORKRAVE_DBUS_DBUSFACTORY_HH #include #include "dbus/IDBus.hh" namespace workrave { namespace dbus { class DBusFactory { public: static IDBus::Ptr create(); }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_IDBUS_HH workrave-1.10.50/libs/dbus/src/0000755000000000000000000000000014221624436016175 5ustar00rootroot00000000000000workrave-1.10.50/libs/dbus/src/DBusFactory.cc0000644000175100001710000000224614221624107017577 0ustar00gdm00000000000000// DBus.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "dbus/DBusFactory.hh" #if defined(HAVE_DBUS) # include "DBusGio.hh" #else # include "DBusDummy.hh" #endif workrave::dbus::IDBus::Ptr workrave::dbus::DBusFactory::create() { #if defined(HAVE_DBUS) return std::make_shared(); #else return std::make_shared(); #endif } workrave-1.10.50/libs/dbus/src/DBusGio.cc0000644000175100001710000003525414221624107016713 0ustar00gdm00000000000000// DBus-gio.c // // Copyright (C) 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DBusGio.hh" #include "debug.hh" #include #include #include #include #include "dbus/DBusException.hh" #include "dbus/DBusBindingGio.hh" using namespace std; using namespace workrave; using namespace workrave::dbus; const GDBusInterfaceVTable DBusGio::interface_vtable = {&DBusGio::on_method_call, &DBusGio::on_get_property, &DBusGio::on_set_property, { nullptr, }}; //! Construct a new D-BUS bridge DBusGio::DBusGio() = default; //! Destruct the D-BUS bridge DBusGio::~DBusGio() { for (auto &service: services) { g_bus_unown_name(service.second); } for (auto &obj: objects) { for (auto &interface: obj.second.interfaces) { if (interface.second.registration_id != 0) { g_dbus_connection_unregister_object(connection, interface.second.registration_id); } if (interface.second.introspection_data != nullptr) { g_dbus_node_info_unref(interface.second.introspection_data); } } } } //! Initialize D-BUS bridge void DBusGio::init() { } //! Registers the specified service void DBusGio::register_service(const std::string &service_name, IDBusWatch *cb) { guint owner_id; owner_id = g_bus_own_name(G_BUS_TYPE_SESSION, service_name.c_str(), G_BUS_NAME_OWNER_FLAGS_NONE, &DBusGio::on_bus_acquired, cb != nullptr ? &DBusGio::on_name_acquired : nullptr, cb != nullptr ? &DBusGio::on_name_lost : nullptr, this, nullptr); services[service_name] = owner_id; if (cb != nullptr) { watched[service_name].id = owner_id; watched[service_name].callback = cb; watched[service_name].seen = false; } } //! Registers the specified object path void DBusGio::register_object_path(const string &object_path) { objects[object_path].registered = true; } void DBusGio::update_object_registration(InterfaceData &data) { TRACE_ENTER_MSG("DBusGio::update_object_registration", data.object_path); if (connection == nullptr) { TRACE_RETURN("No Connection"); return; } if (data.registration_id != 0) { g_dbus_connection_unregister_object(connection, data.registration_id); } string introspection_xml = get_introspect(data.object_path, data.interface_name); TRACE_MSG("Intro: %s" << introspection_xml); GError *error = nullptr; data.introspection_data = g_dbus_node_info_new_for_xml(introspection_xml.c_str(), &error); if (error != nullptr) { TRACE_MSG("Error: " << error->message); g_error_free(error); } data.registration_id = g_dbus_connection_register_object( connection, data.object_path.c_str(), data.introspection_data->interfaces[0], &interface_vtable, this, nullptr, nullptr); TRACE_EXIT(); } //! Connect a D-DBUS object/interface to a C object void DBusGio::connect(const std::string &object_path, const std::string &interface_name, void *object) { auto *binding = dynamic_cast(find_binding(interface_name)); if (binding == nullptr) { throw DBusException("No such interface"); } auto oit = objects.find(object_path); if (oit == objects.end()) { objects[object_path].registered = false; } ObjectData &object_data = objects[object_path]; auto iit = object_data.interfaces.find(interface_name); if (iit != object_data.interfaces.end()) { throw DBusException("Interface already registered"); } InterfaceData &interface_data = object_data.interfaces[interface_name]; interface_data.object_path = object_path; interface_data.interface_name = interface_name; interface_data.object = object; if (object_data.registered) { update_object_registration(interface_data); } } //! Disconnect a D-DBUS object/interface to a C object void DBusGio::disconnect(const std::string &object_path, const std::string &interface_name) { auto it = objects.find(object_path); if (it != objects.end()) { Interfaces &interfaces = it->second.interfaces; if (interfaces[interface_name].registration_id != 0) { g_dbus_connection_unregister_object(connection, interfaces[interface_name].registration_id); } if (interfaces[interface_name].introspection_data != nullptr) { g_dbus_node_info_unref(interfaces[interface_name].introspection_data); } interfaces.erase(interface_name); } } //! Register an interface binding void DBusGio::register_binding(const std::string &name, DBusBinding *interface) { bindings[name] = interface; } //! Find an interface binding DBusBinding * DBusGio::find_binding(const std::string &interface_name) const { DBusBinding *ret = nullptr; auto it = bindings.find(interface_name); if (it != bindings.end()) { ret = it->second; } return ret; } void * DBusGio::find_object(const std::string &path, const std::string &interface_name) const { void *object = nullptr; auto object_it = objects.find(path); if (object_it != objects.end()) { auto interface_it = object_it->second.interfaces.find(interface_name); if (interface_it != object_it->second.interfaces.end()) { object = interface_it->second.object; } } return object; } bool DBusGio::is_running(const std::string &name) const { TRACE_ENTER("DBusGio::is_running"); GError *error = nullptr; gboolean running = FALSE; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr, "org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", nullptr, &error); if (error != nullptr) { TRACE_MSG("Error1: " << error->message); g_error_free(error); } if (error == nullptr && proxy != nullptr) { GVariant *result = g_dbus_proxy_call_sync( proxy, "NameHasOwner", g_variant_new("(s)", name.c_str()), G_DBUS_CALL_FLAGS_NONE, -1, nullptr, &error); if (error != nullptr) { TRACE_MSG("Error2: " << error->message); g_error_free(error); } else { GVariant *first = g_variant_get_child_value(result, 0); running = g_variant_get_boolean(first); g_variant_unref(first); g_variant_unref(result); } } if (proxy != nullptr) { g_object_unref(proxy); } TRACE_RETURN(running); return running; } bool DBusGio::is_available() const { TRACE_ENTER("DBusGio::is_available"); GError *error = nullptr; GDBusProxy *proxy = g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr, "org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", nullptr, &error); if (proxy != nullptr) { g_object_unref(proxy); } if (error != nullptr) { TRACE_MSG("Error: " << error->message); g_error_free(error); return false; } return true; } void DBusGio::on_bus_name_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { (void)connection; (void)name_owner; auto *dbus = (DBusGio *)user_data; dbus->watched[name].seen = true; dbus->bus_name_presence(name, true); } void DBusGio::on_bus_name_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)connection; auto *dbus = (DBusGio *)user_data; if (dbus->watched[name].seen) { dbus->bus_name_presence(name, false); } } void DBusGio::bus_name_presence(const std::string &name, bool present) { if (watched.find(name) != watched.end()) { watched[name].callback->bus_name_presence(name, present); } } void DBusGio::watch(const std::string &name, IDBusWatch *cb) { guint id = g_bus_watch_name_on_connection( connection, name.c_str(), G_BUS_NAME_WATCHER_FLAGS_NONE, on_bus_name_appeared, on_bus_name_vanished, this, nullptr); watched[name].callback = cb; watched[name].id = id; watched[name].seen = false; } void DBusGio::unwatch(const std::string &name) { guint id = watched[name].id; g_bus_unwatch_name(id); watched.erase(name); } string DBusGio::get_introspect(const string &object_path, const string &interface_name) { TRACE_ENTER_MSG("DBusGio::get_introspect", object_path); string str; str += "\n"; str += "\n"; auto object_it = objects.find(object_path); if (object_it != objects.end()) { auto interface_it = object_it->second.interfaces.find(interface_name); if (interface_it != object_it->second.interfaces.end()) { auto *binding = dynamic_cast(find_binding(interface_it->first)); if (binding == nullptr) { throw DBusRemoteException() << message_info("Unknown interface") << error_code_info(DBUS_ERROR_FAILED) << interface_info(interface_name); } const char *interface_introspect = binding->get_interface_introspect(); str += string(interface_introspect); } } str += "\n"; TRACE_RETURN(str); return str; } void DBusGio::on_method_call(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *method_name, GVariant *parameters, GDBusMethodInvocation *invocation, gpointer user_data) { (void)connection; (void)sender; try { auto *self = (DBusGio *)user_data; void *object = self->find_object(object_path, interface_name); if (object == nullptr) { throw DBusRemoteException() << message_info("No such object") << error_code_info(DBUS_ERROR_FAILED) << object_info(object_path) << interface_info(interface_name); } DBusBindingGio *binding = dynamic_cast(self->find_binding(interface_name)); if (binding == nullptr) { throw DBusRemoteException() << message_info("No such interface") << error_code_info(DBUS_ERROR_FAILED) << object_info(object_path) << interface_info(interface_name); } binding->call(method_name, object, invocation, sender, parameters); } catch (DBusRemoteException &e) { std::cout << "error : " << e.diag() << std::endl; g_dbus_method_invocation_return_error(invocation, G_IO_ERROR, G_IO_ERROR_FAILED_HANDLED, "%s", e.diag().c_str()); } } GVariant * DBusGio::on_get_property(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *property_name, GError **error, gpointer user_data) { (void)connection; (void)sender; (void)object_path; (void)interface_name; (void)property_name; (void)error; (void)user_data; return nullptr; } gboolean DBusGio::on_set_property(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *property_name, GVariant *value, GError **error, gpointer user_data) { (void)connection; (void)sender; (void)object_path; (void)interface_name; (void)property_name; (void)value; (void)error; (void)user_data; return FALSE; } void DBusGio::on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)name; TRACE_ENTER_MSG("DBusGio::on_bus_acquired", name); auto *self = (DBusGio *)user_data; self->connection = connection; for (auto object_it = self->objects.begin(); object_it != self->objects.end(); object_it++) { for (auto &iface: object_it->second.interfaces) { self->update_object_registration(iface.second); } } TRACE_EXIT(); } void DBusGio::on_name_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)connection; (void)name; TRACE_ENTER_MSG("DBus::on_name_acquired", name); auto *dbus = (DBusGio *)user_data; dbus->bus_name_presence(name, true); dbus->watched.erase(name); TRACE_EXIT(); } void DBusGio::on_name_lost(GDBusConnection *connection, const gchar *name, gpointer user_data) { (void)connection; (void)name; (void)user_data; TRACE_ENTER_MSG("DBus::on_name_lost", name); auto *dbus = (DBusGio *)user_data; dbus->bus_name_presence(name, false); dbus->watched.erase(name); TRACE_EXIT(); } workrave-1.10.50/libs/dbus/src/Makefile.in0000644000000000000000000006044414221624203020242 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs/dbus/src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libworkrave_dbus_la_DEPENDENCIES = am__libworkrave_dbus_la_SOURCES_DIST = DBusFactory.cc DBusException.cc \ DBusDummy.cc DBusGio.cc DBusGeneric.cc DBusBindingGio.cc @HAVE_DBUS_TRUE@am_libworkrave_dbus_la_OBJECTS = DBusFactory.lo \ @HAVE_DBUS_TRUE@ DBusException.lo DBusDummy.lo DBusGio.lo \ @HAVE_DBUS_TRUE@ DBusGeneric.lo DBusBindingGio.lo libworkrave_dbus_la_OBJECTS = $(am_libworkrave_dbus_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = @HAVE_DBUS_TRUE@am_libworkrave_dbus_la_rpath = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/DBusBindingGio.Plo \ ./$(DEPDIR)/DBusDummy.Plo ./$(DEPDIR)/DBusException.Plo \ ./$(DEPDIR)/DBusFactory.Plo ./$(DEPDIR)/DBusGeneric.Plo \ ./$(DEPDIR)/DBusGio.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libworkrave_dbus_la_SOURCES) DIST_SOURCES = $(am__libworkrave_dbus_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in @HAVE_DBUS_TRUE@noinst_LTLIBRARIES = libworkrave-dbus.la @HAVE_DBUS_TRUE@libworkrave_dbus_la_SOURCES = DBusFactory.cc \ @HAVE_DBUS_TRUE@ DBusException.cc \ @HAVE_DBUS_TRUE@ DBusDummy.cc \ @HAVE_DBUS_TRUE@ DBusGio.cc \ @HAVE_DBUS_TRUE@ DBusGeneric.cc \ @HAVE_DBUS_TRUE@ DBusBindingGio.cc @HAVE_DBUS_TRUE@libworkrave_dbus_la_LIBADD = ${ldadd_platform} @HAVE_DBUS_TRUE@AM_CPPFLAGS = -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -DWORKRAVE_DATADIR="\"${datadir}\"" \ @HAVE_DBUS_TRUE@ -D_XOPEN_SOURCE=600 @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ @HAVE_DBUS_TRUE@EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/dbus/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/dbus/src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libworkrave-dbus.la: $(libworkrave_dbus_la_OBJECTS) $(libworkrave_dbus_la_DEPENDENCIES) $(EXTRA_libworkrave_dbus_la_DEPENDENCIES) $(AM_V_CXXLD)$(CXXLINK) $(am_libworkrave_dbus_la_rpath) $(libworkrave_dbus_la_OBJECTS) $(libworkrave_dbus_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusBindingGio.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusDummy.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusException.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusFactory.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusGeneric.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBusGio.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/DBusBindingGio.Plo -rm -f ./$(DEPDIR)/DBusDummy.Plo -rm -f ./$(DEPDIR)/DBusException.Plo -rm -f ./$(DEPDIR)/DBusFactory.Plo -rm -f ./$(DEPDIR)/DBusGeneric.Plo -rm -f ./$(DEPDIR)/DBusGio.Plo -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 -f ./$(DEPDIR)/DBusBindingGio.Plo -rm -f ./$(DEPDIR)/DBusDummy.Plo -rm -f ./$(DEPDIR)/DBusException.Plo -rm -f ./$(DEPDIR)/DBusFactory.Plo -rm -f ./$(DEPDIR)/DBusGeneric.Plo -rm -f ./$(DEPDIR)/DBusGio.Plo -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 TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstLTLIBRARIES \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-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 tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/dbus/src/DBusGio.hh0000644000175100001710000001402214221624107016713 0ustar00gdm00000000000000// DBus.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSGIO_HH #define WORKRAVE_DBUS_DBUSGIO_HH #include #include #include #include #undef signals #include #include #include "dbus/IDBus.hh" #include "dbus/IDBusWatch.hh" #include "dbus/DBusBindingGio.hh" namespace workrave { namespace dbus { class DBusGio : public IDBus , public IDBusPrivateGio { public: using Ptr = std::shared_ptr; public: DBusGio(); ~DBusGio() override; void init() override; void register_service(const std::string &service, IDBusWatch *cb = nullptr) override; void register_object_path(const std::string &object_path) override; void connect(const std::string &path, const std::string &interface_name, void *object) override; void disconnect(const std::string &path, const std::string &interface_name) override; void register_binding(const std::string &interface_name, DBusBinding *binding) override; DBusBinding *find_binding(const std::string &interface_name) const override; bool is_available() const override; bool is_running(const std::string &name) const override; GDBusConnection *get_connection() const override { return connection; } void watch(const std::string &name, IDBusWatch *cb) override; void unwatch(const std::string &name) override; private: using Bindings = std::map; using BindingIter = Bindings::iterator; using BindingCIter = Bindings::const_iterator; using Services = std::map; using ServicesIter = Services::iterator; using ServicesCIter = Services::const_iterator; struct InterfaceData { InterfaceData() = default; std::string object_path; std::string interface_name; GDBusNodeInfo *introspection_data{nullptr}; guint registration_id{0}; void *object{nullptr}; }; using Interfaces = std::map; using InterfaceIter = Interfaces::iterator; using InterfaceCIter = Interfaces::const_iterator; struct ObjectData { ObjectData() = default; Interfaces interfaces; bool registered{false}; }; using Objects = std::map; using ObjectIter = Objects::iterator; using ObjectCIter = Objects::const_iterator; struct WatchData { guint id; IDBusWatch *callback; bool seen; }; using Watched = std::map; using WatchIter = Watched::iterator; using WatchCIter = Watched::const_iterator; void *find_object(const std::string &path, const std::string &interface_name) const; void send() const; std::string get_introspect(const std::string &path, const std::string &interface_name); void update_object_registration(InterfaceData &data); static void on_bus_name_appeared(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data); static void on_bus_name_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data); void bus_name_presence(const std::string &name, bool present); static void on_method_call(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *method_name, GVariant *parameters, GDBusMethodInvocation *invocation, gpointer user_data); static GVariant *on_get_property(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *property_name, GError **error, gpointer user_data); static gboolean on_set_property(GDBusConnection *connection, const gchar *sender, const gchar *object_path, const gchar *interface_name, const gchar *property_name, GVariant *value, GError **error, gpointer user_data); static void on_bus_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data); static void on_name_acquired(GDBusConnection *connection, const gchar *name, gpointer user_data); static void on_name_lost(GDBusConnection *connection, const gchar *name, gpointer user_data); private: //! Services services; //! Bindings for interfaces. Bindings bindings; //! Objects objects; // Watched watched; GDBusConnection *connection{nullptr}; static const GDBusInterfaceVTable interface_vtable; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSGIO_HH workrave-1.10.50/libs/dbus/src/DBusException.cc0000644000175100001710000000232414221624107020123 0ustar00gdm00000000000000// DBusException.cc --- DBUS interface // // Copyright (C) 2007, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include "dbus/DBusException.hh" namespace workrave { namespace dbus { const char *DBUS_ERROR_FAILED = "org.freedesktop.DBus.Error.Failed"; const char *DBUS_ERROR_NOT_SUPPORTED = "org.freedesktop.DBus.Error.NotSupported"; const char *DBUS_ERROR_INVALID_ARGS = "org.freedesktop.DBus.Error.InvalidArgs"; const char *DBUS_ERROR_UNKNOWN_METHOD = "org.freedesktop.DBus.Error.UnknownMethod"; } // namespace dbus } // namespace workrave workrave-1.10.50/libs/dbus/src/DBusGeneric.hh0000644000175100001710000000451114221624107017553 0ustar00gdm00000000000000// DBus.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSGENERIC_HH #define WORKRAVE_DBUS_DBUSGENERIC_HH #include #include #include #include #include "dbus/IDBus.hh" #include "dbus/DBusBinding.hh" namespace workrave { namespace dbus { class DBusGeneric : public IDBus { public: using Ptr = std::shared_ptr; public: DBusGeneric(); ~DBusGeneric() override; void connect(const std::string &path, const std::string &interface_name, void *object) override; void disconnect(const std::string &path, const std::string &interface_name) override; void register_binding(const std::string &interface_name, DBusBinding *binding) override; DBusBinding *find_binding(const std::string &interface_name) const override; protected: using Bindings = std::map; using BindingIter = Bindings::iterator; using BindingCIter = Bindings::const_iterator; using Interfaces = std::map; using InterfaceIter = Interfaces::iterator; using InterfaceCIter = Interfaces::const_iterator; using Objects = std::map; using ObjectIter = Objects::iterator; using ObjectCIter = Objects::const_iterator; void *find_object(const std::string &path, const std::string &interface_name) const; friend class DBusBinding; //! Bindings for interfaces. Bindings bindings; //! Objects objects; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSGENERIC_HH workrave-1.10.50/libs/dbus/src/DBusBindingGio.cc0000644000175100001710000001531314221624107020200 0ustar00gdm00000000000000// DBusBinding-gio.c // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include "DBusGio.hh" #include "dbus/DBusBindingGio.hh" #include "dbus/DBusException.hh" using namespace workrave; using namespace workrave::dbus; DBusBindingGio::DBusBindingGio(IDBus::Ptr dbus) : dbus(dbus) { } DBusBindingGio::~DBusBindingGio() = default; void DBusMarshallGio::get_int(GVariant *v, int *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_INT32)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("int"); } *value = g_variant_get_int32(v); } void DBusMarshallGio::get_uint8(GVariant *v, uint8_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_BYTE)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("uint8"); } *value = g_variant_get_byte(v); } void DBusMarshallGio::get_uint16(GVariant *v, uint16_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_UINT16)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("uint16"); } *value = g_variant_get_uint16(v); } void DBusMarshallGio::get_int16(GVariant *v, int16_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_INT16)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("int16"); } *value = g_variant_get_int16(v); } void DBusMarshallGio::get_uint32(GVariant *v, uint32_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_UINT32)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("uint32"); } *value = g_variant_get_uint32(v); } void DBusMarshallGio::get_int32(GVariant *v, int32_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_INT32)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("int32"); } *value = g_variant_get_int32(v); } void DBusMarshallGio::get_uint64(GVariant *v, uint64_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_UINT64)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("uint64"); } *value = g_variant_get_uint64(v); } void DBusMarshallGio::get_int64(GVariant *v, int64_t *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_INT64)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("int64"); } *value = g_variant_get_int64(v); } void DBusMarshallGio::get_bool(GVariant *v, bool *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_BOOLEAN)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("bool"); } *value = g_variant_get_boolean(v); } void DBusMarshallGio::get_double(GVariant *v, double *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_DOUBLE)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("double"); } *value = g_variant_get_double(v); } void DBusMarshallGio::get_string(GVariant *v, std::string *value) { const GVariantType *argtype = g_variant_get_type(v); if (!g_variant_type_equal(argtype, G_VARIANT_TYPE_STRING)) { throw DBusRemoteException() << message_info("Type error") << error_code_info(DBUS_ERROR_INVALID_ARGS) << expected_type_info("string"); } const char *cstr = g_variant_get_string(v, nullptr); if (cstr != nullptr) { *value = cstr; } } GVariant * DBusMarshallGio::put_int(const int *value) { return g_variant_new_int32(*value); } GVariant * DBusMarshallGio::put_uint8(const uint8_t *value) { return g_variant_new_byte(*value); } GVariant * DBusMarshallGio::put_uint16(const uint16_t *value) { return g_variant_new_uint16(*value); } GVariant * DBusMarshallGio::put_int16(const int16_t *value) { return g_variant_new_int16(*value); } GVariant * DBusMarshallGio::put_uint32(const uint32_t *value) { return g_variant_new_uint32(*value); } GVariant * DBusMarshallGio::put_int32(const int32_t *value) { return g_variant_new_int32(*value); } GVariant * DBusMarshallGio::put_uint64(const uint64_t *value) { return g_variant_new_uint64(*value); } GVariant * DBusMarshallGio::put_int64(const int64_t *value) { return g_variant_new_int64(*value); } GVariant * DBusMarshallGio::put_double(const double *value) { return g_variant_new_double(*value); } GVariant * DBusMarshallGio::put_bool(const bool *value) { gboolean v = *value; return g_variant_new_boolean(v); } GVariant * DBusMarshallGio::put_string(const std::string *value) { const char *cstr = value->c_str(); return g_variant_new_string(cstr); } workrave-1.10.50/libs/dbus/src/DBusGeneric.cc0000644000175100001710000000562114221624107017544 0ustar00gdm00000000000000// DBus.c // // Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "debug.hh" #include #include #include #include #include "DBusGeneric.hh" #include "dbus/DBusException.hh" using namespace std; using namespace workrave; using namespace workrave::dbus; //! Construct a new D-BUS bridge DBusGeneric::DBusGeneric() = default; //! Destruct the D-BUS bridge DBusGeneric::~DBusGeneric() = default; //! Connect a D-DBUS object/interface to a C object void DBusGeneric::connect(const std::string &object_path, const std::string &interface_name, void *cobject) { DBusBinding *binding = find_binding(interface_name); if (binding == nullptr) { throw DBusException("No such interface"); } auto it = objects.find(object_path); if (it != objects.end()) { Interfaces &interfaces = it->second; interfaces[interface_name] = cobject; } else { Interfaces interfaces; interfaces[interface_name] = cobject; objects[object_path] = interfaces; } } //! Disconnect a D-DBUS object/interface to a C object void DBusGeneric::disconnect(const std::string &object_path, const std::string &interface_name) { auto it = objects.find(object_path); if (it != objects.end()) { Interfaces &interfaces = it->second; interfaces.erase(interface_name); } } //! Register an interface binding void DBusGeneric::register_binding(const std::string &name, DBusBinding *interface) { bindings[name] = interface; } //! Find an interface binding DBusBinding * DBusGeneric::find_binding(const std::string &interface_name) const { DBusBinding *ret = nullptr; auto it = bindings.find(interface_name); if (it != bindings.end()) { ret = it->second; } return ret; } void * DBusGeneric::find_object(const std::string &path, const std::string &interface_name) const { void *cobject = nullptr; auto object_it = objects.find(path); if (object_it != objects.end()) { auto interface_it = object_it->second.find(interface_name); if (interface_it != object_it->second.end()) { cobject = interface_it->second; } } return cobject; } workrave-1.10.50/libs/dbus/src/Makefile.am0000644000175100001710000000125714221624107017140 0ustar00gdm00000000000000MAINTAINERCLEANFILES = Makefile.in if HAVE_DBUS noinst_LTLIBRARIES = libworkrave-dbus.la libworkrave_dbus_la_SOURCES = DBusFactory.cc \ DBusException.cc \ DBusDummy.cc \ DBusGio.cc \ DBusGeneric.cc \ DBusBindingGio.cc libworkrave_dbus_la_LIBADD = ${ldadd_platform} AM_CPPFLAGS = -W -DWORKRAVE_PKGDATADIR="\"${pkgdatadir}\"" -DWORKRAVE_DATADIR="\"${datadir}\"" \ -D_XOPEN_SOURCE=600 @WR_COMMON_INCLUDES@ @GLIB_CFLAGS@ EXTRA_DIST = $(wildcard $(srcdir)/*.hh) $(wildcard $(srcdir)/*.h) $(wildcard $(srcdir)/*.icc) endif workrave-1.10.50/libs/dbus/src/DBusDummy.hh0000644000175100001710000000377514221624107017305 0ustar00gdm00000000000000// DBusDummy.hh --- DBUS interface // // Copyright (C) 2007, 2008, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifndef WORKRAVE_DBUS_DBUSDUMMY_HH #define WORKRAVE_DBUS_DBUSDUMMY_HH #include #include #include "dbus/IDBus.hh" namespace workrave { namespace dbus { class DBusDummy : public IDBus { public: using Ptr = std::shared_ptr; public: DBusDummy(); ~DBusDummy() override; // IDBus void init() override; void register_service(const std::string &service, IDBusWatch *cb = nullptr) override; void register_object_path(const std::string &object_path) override; void connect(const std::string &object_path, const std::string &interface_name, void *object) override; void disconnect(const std::string &object_path, const std::string &interface_name) override; void register_binding(const std::string &interface_name, DBusBinding *binding) override; DBusBinding *find_binding(const std::string &interface_name) const override; bool is_available() const override; bool is_running(const std::string &name) const override; void watch(const std::string &name, IDBusWatch *cb) override; void unwatch(const std::string &name) override; }; } // namespace dbus } // namespace workrave #endif // WORKRAVE_DBUS_DBUSDUMMY_HH workrave-1.10.50/libs/dbus/src/DBusDummy.cc0000644000175100001710000000407514221624107017265 0ustar00gdm00000000000000// DBus.c // // Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Rob Caelers // All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DBusDummy.hh" using namespace std; using namespace workrave; using namespace workrave::dbus; DBusDummy::DBusDummy() = default; DBusDummy::~DBusDummy() = default; void DBusDummy::init() { } void DBusDummy::register_service(const std::string &service, IDBusWatch *cb) { (void)service; (void)cb; } void DBusDummy::register_object_path(const string &object_path) { (void)object_path; } bool DBusDummy::is_available() const { return false; } bool DBusDummy::is_running(const std::string &name) const { (void)name; return false; } void DBusDummy::watch(const std::string &name, IDBusWatch *cb) { (void)name; (void)cb; } void DBusDummy::unwatch(const std::string &name) { (void)name; } void DBusDummy::connect(const std::string &object_path, const std::string &interface_name, void *cobject) { (void)object_path; (void)interface_name; (void)cobject; } void DBusDummy::disconnect(const std::string &object_path, const std::string &interface_name) { (void)object_path; (void)interface_name; } void DBusDummy::register_binding(const std::string &name, DBusBinding *interface) { (void)name; (void)interface; } DBusBinding * DBusDummy::find_binding(const std::string &interface_name) const { (void)interface_name; return nullptr; } workrave-1.10.50/libs/dbus/Makefile.in0000644000000000000000000005503214221624203017450 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs/dbus ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in SUBDIRS = bin data include src all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/dbus/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/dbus/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @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 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f 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: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/dbus/bin/0000755000000000000000000000000014221624436016156 5ustar00rootroot00000000000000workrave-1.10.50/libs/dbus/bin/Makefile.in0000644000000000000000000004046714221624203020226 0ustar00rootroot00000000000000# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ target_triplet = @target@ subdir = libs/dbus/bin ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BOOST_CPPFLAGS = @BOOST_CPPFLAGS@ BOOST_LDFLAGS = @BOOST_LDFLAGS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR = @DATADIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DIRECTSOUNDLIBS = @DIRECTSOUNDLIBS@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GCONF_CFLAGS = @GCONF_CFLAGS@ GCONF_LIBS = @GCONF_LIBS@ GDOME_CFLAGS = @GDOME_CFLAGS@ GDOME_LIBS = @GDOME_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GIO_CFLAGS = @GIO_CFLAGS@ GIO_LIBS = @GIO_LIBS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GNET_CFLAGS = @GNET_CFLAGS@ GNET_LIBS = @GNET_LIBS@ GNOME3_CFLAGS = @GNOME3_CFLAGS@ GNOME3_LIBS = @GNOME3_LIBS@ GNOME_SHELL_VERSION = @GNOME_SHELL_VERSION@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HAVE_CXX11 = @HAVE_CXX11@ IGE_CFLAGS = @IGE_CFLAGS@ IGE_LIBS = @IGE_LIBS@ INDICATORDIR = @INDICATORDIR@ INDICATORICONSDIR = @INDICATORICONSDIR@ INDICATOR_CFLAGS = @INDICATOR_CFLAGS@ INDICATOR_LIBS = @INDICATOR_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ ISODATE = @ISODATE@ JW = @JW@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBGNOME_PANEL_MODULES_DIR = @LIBGNOME_PANEL_MODULES_DIR@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMATEPANEL_CFLAGS = @LIBMATEPANEL_CFLAGS@ LIBMATEPANEL_LIBS = @LIBMATEPANEL_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP_LIBS = @LIBSTDCPP_LIBS@ LIBTOOL = @LIBTOOL@ LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ LIBXFCE4PANEL_LIBS = @LIBXFCE4PANEL_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ M4 = @M4@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ MacOS_CFLAGS = @MacOS_CFLAGS@ NM = @NM@ NMEDIT = @NMEDIT@ OBJC = @OBJC@ OBJCDEPMODE = @OBJCDEPMODE@ OBJCFLAGS = @OBJCFLAGS@ OBJCXX = @OBJCXX@ OBJCXXDEPMODE = @OBJCXXDEPMODE@ OBJCXXFLAGS = @OBJCXXFLAGS@ 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@ POSUB = @POSUB@ PULSE_CFLAGS = @PULSE_CFLAGS@ PULSE_LIBS = @PULSE_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ RESOURCE_VERSION = @RESOURCE_VERSION@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32CONSOLE = @WIN32CONSOLE@ WINDRES = @WINDRES@ WR_BACKEND_INCLUDES = @WR_BACKEND_INCLUDES@ WR_COMMON_INCLUDES = @WR_COMMON_INCLUDES@ WR_FRONTEND_COMMON_INCLUDES = @WR_FRONTEND_COMMON_INCLUDES@ WR_LDADD = @WR_LDADD@ WR_LDFLAGS = @WR_LDFLAGS@ X11SM_CFLAGS = @X11SM_CFLAGS@ X11SM_LIBS = @X11SM_LIBS@ XFCE4LIBDIR = @XFCE4LIBDIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMKMF = @XMKMF@ XMLTO = @XMLTO@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ _GI_EXP_DATADIR = @_GI_EXP_DATADIR@ _GI_EXP_LIBDIR = @_GI_EXP_LIBDIR@ 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_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_OBJC = @ac_ct_OBJC@ ac_ct_OBJCXX = @ac_ct_OBJCXX@ ac_prefix_program = @ac_prefix_program@ 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@ gsettingsschemadir = @gsettingsschemadir@ 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@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.py) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libs/dbus/bin/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign libs/dbus/bin/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile 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: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: workrave-1.10.50/libs/dbus/bin/Makefile.am0000644000175100001710000000011414221624107017110 0ustar00gdm00000000000000MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(wildcard $(srcdir)/*.py) workrave-1.10.50/libs/dbus/bin/dbusgen.py0000644000175100001710000004137214221624107017070 0ustar00gdm00000000000000#!/usr/bin/python # # Copyright (C) 2007, 2008, 2009, 2011, 2012, 2013, 2016 Rob Caelers # All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, 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. # """ DBUS C++ binding generator """ import re import string import sys import os import xml import jinja2 from optparse import OptionParser from xml.dom.minidom import parse class NodeBase(object): def sig(self): return "undefined" def symbol(self): return "undefined" pass class ArgNode(NodeBase): def __init__(self, interface_node): NodeBase.__init__(self) self.interface_node = interface_node self.name = '' self.type = '' self.direction = '' self.hint = [] def symbol(self): return self.csymbol def sig(self): return self.interface_node.get_type(self.type).sig() class TypeNode(NodeBase): name = "undefined" qname = "undefined" csymbol = None csymbol_internal = None type_sig = None top_node = None condition = None def __init__(self, csymbol = None, type_sig = None): NodeBase.__init__(self) self.csymbol = csymbol self.csymbol_internal = None self.type_sig = type_sig self.top_node = None def symbol(self): return self.csymbol def symbol_int(self): if self.csymbol_internal: return self.csymbol_internal else: return self.symbol() def sig(self): return self.type_sig def value_to_internal(s): return s def value_from_internal(s): return s class QStringTypeNode(TypeNode): def __init__(self): TypeNode.__init__(self) self.csymbol = "std::string" self.csymbol_internal = "QString" self.type_sig = 's' self.top_node = None def to_internal(s): return 'QString::fromStdString(' + s + ')' def from_internal(s): return s + '.toStdString()' class UserTypeNode(TypeNode): def __init__(self, top_node): TypeNode.__init__(self) self.top_node = top_node def handle(self, node): self.name = node.getAttribute('name') self.qname = self.name.replace('.','_') self.csymbol = node.getAttribute('csymbol') self.top_node.types[self.name] = self def sig(self): print('Signature of type ' + self.name + ' unknown') sys.exit(1) class TopNode(NodeBase): def __init__(self, inname, name, backend): NodeBase.__init__(self) self.file_name = inname self.namespace = None self.namespace_list = [] self.name = name self.guard = "" self.backend = backend self.interfaces = [] self.interfaces_map = {} self.types = {} self.structs = [] self.sequences = [] self.dictionaries = [] self.enums = [] self.imports = [] self.include_filename = self.name self.add_default_types() def parse(self): dom = parse(self.file_name) nodelist = dom.getElementsByTagName('unit') for node in nodelist: self.handle_node(node) def handle_node(self, node): self.namespace = node.getAttribute('namespace') if self.namespace : self.namespace_list = self.namespace.split(".") self.guard = self.namespace.replace(".", "_") + "_" self.guard = self.guard + self.name self.guard = self.guard.upper() for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'interface': p = InterfaceNode(self) p.handle(child) self.interfaces.append(p) self.interfaces_map[p.name] = p elif child.nodeName == 'struct': p = StructNode(self) p.handle(child) self.structs.append(p) elif child.nodeName == 'sequence': p = SequenceNode(self) p.handle(child) self.sequences.append(p) elif child.nodeName == 'dictionary': p = DictionaryNode(self) p.handle(child) self.dictionaries.append(p) elif child.nodeName == 'enum': p = EnumNode(self) p.handle(child) self.enums.append(p) elif child.nodeName == 'import': p = ImportNode(self) p.handle(child) self.imports.append(p) elif child.nodeName == 'type': p = UserTypeNode(self) p.handle(child) def add_default_types(self): self.types['void']= TypeNode('void','i') self.types['int']= TypeNode('int','i') self.types['uint8']= TypeNode('uint8_t', 'y') self.types['int16']= TypeNode('int16_t','n') self.types['uint16']= TypeNode('uint16_t','q') self.types['int32']= TypeNode('int32_t','i') self.types['uint32']= TypeNode('uint32_t','u') self.types['int64']= TypeNode('int64_t','x') self.types['uint64']= TypeNode('uint64_t','t') self.types['bool']= TypeNode('bool','b') self.types['double']= TypeNode('double','d') if self.backend == 'qt': self.types['string']= QStringTypeNode() else: self.types['string']= TypeNode('std::string','s') def get_type(self, typename): if typename in self.types: return self.types[typename] else: print('Cannot find type ' + typename) sys.exit(1) class InterfaceNode(NodeBase): def __init__(self, top_node): NodeBase.__init__(self) self.top_node = top_node self.name = None self.csymbol = None self.qname = None self.namespace = None self.namespace_list = [] self.methods = [] self.signals = [] def handle(self, node): self.name = node.getAttribute('name') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.condition = node.getAttribute('condition') self.namespace = node.getAttribute('namespace') if self.namespace : self.namespace_list = self.namespace.split(".") for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'method': p = MethodNode(self) p.handle(child) self.methods.append(p) elif child.nodeName == 'signal': p = SignalNode(self) p.handle(child) self.signals.append(p) def get_type(self, type): return self.top_node.get_type(type) def symbol(self): return self.csymbol class MethodNode(NodeBase): def __init__(self, interface_node): NodeBase.__init__(self) self.interface_node = interface_node self.name = None self.csymbol = None self.qname = None self.condition = "" self.params = [] self.num_in_args = 0 self.num_out_args = 0 def handle(self, node): self.name = node.getAttribute('name') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.condition = node.getAttribute('condition') for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'arg': self.handle_arg(child) def handle_arg(self, node): p = ArgNode(self.interface_node) p.name = node.getAttribute('name') p.type = node.getAttribute('type') p.direction = node.getAttribute('direction') p.bind = node.getAttribute('bind') if p.direction == 'in': self.num_in_args = self.num_in_args + 1 if p.direction == 'out': self.num_out_args = self.num_out_args + 1 hint = node.getAttribute('hint') if hint != None and hint != '': p.hint = hint.split(',') self.params.append(p) def introspect_sig(self): method_sig = '' for p in self.params: if p.direction != 'bind': param_sig = self.interface_node.get_type(p.type).sig() method_sig = method_sig + '%s\\0%s\\0%s\\0' % (p.direction, param_sig, p.name) return method_sig def symbol(self): return self.csymbol def sig(self): method_sig = '' for p in self.params: if p.direction != 'bind': param_sig = self.interface_node.get_type(p.type).sig() method_sig = method_sig + '%s\\0%s\\0%s\\0' % (p.direction, param_sig, p.name) return method_sig def sig_of_type(self, type): method_sig = '' for p in self.params: if p.direction == type: param_sig = self.interface_node.get_type(p.type).sig() method_sig = method_sig + '%s' % (param_sig, ) return '(' + method_sig + ')' def return_type(self): ret = 'void' for p in self.params: if 'return' in p.hint: ret = p.type return ret def return_name(self): ret = 'ret' for p in self.params: if 'return' in p.hint: ret = p.name return ret class SignalNode(NodeBase): def __init__(self, interface_node): NodeBase.__init__(self) self.interface_node = interface_node def handle(self, node): self.name = node.getAttribute('name') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.params = [] for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'arg': self.handle_arg(child) def handle_arg(self, node): p = ArgNode(self.interface_node) p.name = node.getAttribute('name') p.type = node.getAttribute('type') hint = node.getAttribute('hint') if hint != None and hint != '': p.hint = hint.split(',') self.params.append(p) def introspect_sig(self): method_sig = '' for p in self.params: param_sig = self.interface_node.get_type(p.type).sig() method_sig = method_sig + '%s\\0%s\\0' % (param_sig, p.name) return method_sig def symbol(self): return self.csymbol def sig(self): method_sig = '' for p in self.params: param_sig = self.interface_node.get_type(p.type).sig() method_sig = method_sig + param_sig return '(' + method_sig + ')' def return_type(self): ret = 'void' for p in self.params: if 'return' in p.hint: ret = p.type return ret def return_name(self): ret = 'ret' for p in self.params: if 'return' in p.hint: ret = p.name return ret class StructNode(TypeNode): def __init__(self, top_node): TypeNode.__init__(self) self.top_node = top_node def handle(self, node): self.name = node.getAttribute('name') self.csymbol = node.getAttribute('csymbol') self.condition = node.getAttribute('condition') self.qname = self.name.replace('.','_') self.fields = [] for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'field': self.handle_field(child) self.top_node.types[self.name] = self def handle_field(self, node): arg = ArgNode(self.top_node) arg.name = node.getAttribute('name') arg.type = node.getAttribute('type') self.fields.append(arg) def sig(self): struct_sig = '' for f in self.fields: field_sig = self.top_node.get_type(f.type).sig() struct_sig = struct_sig + field_sig return '(' + struct_sig + ')' class SequenceNode(TypeNode): def __init__(self, top_node): TypeNode.__init__(self) self.top_node = top_node def handle(self, node): self.name = node.getAttribute('name') self.condition = node.getAttribute('condition') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.container_type = node.getAttribute('container') self.data_type = node.getAttribute('type') self.top_node.types[self.name] = self def sig(self): return 'a' + self.top_node.get_type(self.data_type).sig() class DictionaryNode(TypeNode): def __init__(self, top_node): TypeNode.__init__(self) self.top_node = top_node def handle(self, node): self.name = node.getAttribute('name') self.condition = node.getAttribute('condition') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.key_type = node.getAttribute('key_type') self.value_type = node.getAttribute('value_type') if self.csymbol == '': self.csymbol = 'std::map<%s,%s>' % ( self.top_node.get_type(self.key_type).symbol(), self.top_node.get_type(self.value_type).symbol()) self.top_node.types[self.name] = self def sig(self): return 'e{' + \ self.top_node.get_type(self.key_type).sig() + \ self.top_node.get_type(self.value_type).sig() + '}' class EnumNode(TypeNode): def __init__(self, top_node): TypeNode.__init__(self) self.top_node = top_node self.count = 0 def handle(self, node): self.name = node.getAttribute('name') self.condition = node.getAttribute('condition') self.csymbol = node.getAttribute('csymbol') self.qname = self.name.replace('.','_') self.values = [] for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'value': self.handle_value(child) self.top_node.types[self.name] = self def handle_value(self, node): arg = ArgNode(self.top_node) val = node.getAttribute('value') if val != '': self.count = int(val) arg.name = node.getAttribute('name') arg.csymbol = node.getAttribute('csymbol') arg.value = self.count self.values.append(arg) def sig(self): return 's' class ImportNode(NodeBase): def __init__(self, top_node): NodeBase.__init__(self) self.top_node = top_node self.includes = [] self.namespaces = [] self.condition = None def handle(self, node): self.condition = node.getAttribute('condition') for child in node.childNodes: if child.nodeType == node.ELEMENT_NODE: if child.nodeName == 'include': self.handle_include(child) elif child.nodeName == 'namespace': self.handle_namespace(child) def handle_include(self, node): name = node.getAttribute('name') condition = node.getAttribute('condition') self.includes.append((name, condition)) def handle_namespace(self, node): name = node.getAttribute('name') condition = node.getAttribute('condition') self.namespaces.append((name, condition)) # Main program if __name__ == '__main__': usage = "usage: %prog [options]
  •   T$A#'J%?*tT&K+W&CE+%k*XS$)"s'mW!G%O$#=7"%~#x!&%"** /~/73937lp6|:57;N8U;\8s;&:7|:6*94\7BE3T6V25x2F<5346M'7":=;$>4?kB*CEVEKHoFh(ILFH&E]GZ\CE@A/C\>[@l;S=8: 6is8K576D7c7P99:'t:k5<:Z<9';m7*8V4 5;/L0vQ++Y&4&Y!!1akaWiVKՈ7Q}3#+[N==+x< L- 5!q`<ʅ]ElQ,dkUc( 'v_nHQP]Sٗ>f,-HG"&-kG%Z/%<$pCӿ*y^t]~eqs[ZGcd",?p+vG-u_ZxvJ`*=ަڞ@1գ?ح|ԭ?'7.y~ړjTH@ [g [ޖ-k7/}{8d޻ڇޤFiߡ#nH\ =yޯ#fBN h~ށBC3yS܀}׊?:֫8X֍ֻ Rݢ4qژTۛa oqoF :糺kTY[鮧d I6t+m8H` ~tX B97'al)荝%R\vpa;߆[gYaڕvۑԿ{8)iOђһ~ΣFTh'ͺͣgX [Ѳgmt9R׌9l+ڽ@9SpbaO 㬶SrK z95{]݉#܁~Qܨ1MyW޻,戧^{(9oT`frCzn4USӺ *B#p<_iaL!;C{#}$.\#ua!d\bZW uMJs]E:`b/7H&r$ȷxq :|D}QAbCF^IcLfNPRLSlAUS>UɽRA7TP6_QML2[MrGOHįA?]BM;;4_=5z.P/Rc*Ԩ*R''&%z%$ {$#",#H!'/!VT_- + ul`OO F  &v yjb z 3 Gy)6#[Q {V`y][Q# Z +P !5N XKg]V:t7 {,I 8eX핇T _ͭ.OX uyR2;Lw._8Q>m=bmK ﴌD͍*29 {uXex¶@V~€<ڀj ~J׍@Hq:ա)+ ZVҥٰԃ8۽* Kdc s&2pdFtEDYe08(YOۇhܩQoPlڋ l1@ٷI88]ܞ٘a2QG3qlX* ꤸDO\햔-MV-.qzo22?퀪#iziṉމER܋ T7F0oӃ.N2лyѽVϔ4,aϸAxCеҊ(qRցղ_dՃmSWXا ^%ن?q!P-ۈݝUˑLE)ᅨM|{G]{{]^呶߾7hsS߱z)PtxxsꝬ,+U+H6HOO; : " : !yW AL ת sagUCHO\lX߀XIQ@xl&#Gl{u 0R v ;J=:Lg!Hl#X4$&m f$c 7$o #P #g p# #J")%C$ ~''{*:+. 05336F69K8*;8pn;*A8Y:97l95E7*35240|2wS0]92r)13j3kt568:=>@?AƺCyCJu;g;8=9|6#7ea5"6h58W6}77f9^+:);W<"==4=`=;ت;,9߼85R4Q10c-!,@(;'%$Ob"-[; >aK69jQg9oxKH_ +}b%s< 8{D^?(m@Dˁa-uj} B Oo U 'H`L)cq72#fF"`D>y+9I+azZ?uBjxEV=8,O,V,ni {ɬxD<7z}o~:H"ދ#;" ^9.B ; .,#Qi!ޭB/۲հb؎NӁYѓ7fcz|ҽV!HyAքI܂svO%LJ6aI%uXLy]\7% +!4f`9Yi;❯wީۘ+I7y׹Ս50Փ>5֝@M$݇lG|jޠA)yAI8J$)(≖dߨtUݞ7ܕ|cӻ yY.G7׾q֙\%Ӣգ HֹJ5\qIִؖ0ٹlڈ;lf| clʞ!MI(i|x7 \eեinMg"^N,s d=YUbWr˔|0^>N5    Tt3N64 7m$z#(>&N*'I,,`(~_,%'[+%i)н#-&u!u$rB"r =KTE. 3 d1!]"U#O +#^ I$c \$p4!f$4!Ƥ$y"tV%#&U&W(ќ)L,-025> 81Q;:=@iAEEIE'HF,QJPG3vJ?Fg)IgCժFl@AC<;? 8:46$w13/21-%0G-,04.0.X1.O1VE.m0,.S%+U,,5)9*`''%&F$ v$$~#ZQ$Ҩ#%.%(]'),+g41U0m5e48?7:if8R9_77 54402P0w-*,v(&?(# &@-:J["[ (i?i? 8y 6i  0Jc#DoP`s*!-k\<S@X ^W) GU P[wy : 5I7ؓl?ȫ3Pmb瘛L;h盰yH*hLdpm↤N%,'ێUېֽT=:J렳iUnRK0)\pd6hδ+o%0(c]T4ܹjͅi 4܂nلr˱/|%ٮeqD۩%F*59Ն_J!کoحTqj堢.ꞾɛX zd:x"W?hiF졅isW`܁p1W)kS,et҃tћѡeх(Eh`UW"UCҹ>HZ %+*Y7°ԌSn֡٬SمPXwWtJFsB[ep,\]p0Y8sݸs\U Grtޝ2x)UݹC'޷2GrPἄ"j}㎙nZ/[*66!"-k1@"8D Z`|Td4[^F$zsb).)n[)c 6#b-_^v ? 2,gxP$tS   A#6"%$G(?&XL*'+) >-6)-)-}(,C'*+%(#X&y!1${ #+!#(" $Ω#F&,%(ƞ'B+)- ,.0.=B2{/3#04y0mx40c3B/C2/1u.a1VO.|0.#1$Y/1Mh0m*31 42q5r3E63I793%6q1=47=/Ik1,+,-(<** s%u&"<#%r cݸ7 I!"#f%j`&(8('**%B++҂++**T)W){x('{&l%@?%(#}#B*")#nB!; #V!$Љ"W&$0r(D'*)F, +,]/+`+=)b)/'$&k$XN# Js@gT^vMJE Ce/u;1DB03f|&: 6 _PL7YK$HCRLgu0c̍`!x8,/oOLp; 0R-}F2^h6x>'k峈jX굜JirpI*8CD-y/>i܊ q1ݿ+߯|㶎dis@)EhD|\]Ӛ5B2 #t2OӖ's,h};R^Z`hu1M^^հldؿ*?ՄyiRϦccϢѴЪҀH˶ɉعqIHؼO4A_؆1]M\ֱӫ*{/)j^ђX51~b9#֞|1ldۄ S ڹLH؆?%~ִ %}՞MԒH·Ն'aa!>ً "9ܜs)羗g ( sU2`!N*:n8c'k,BnsKxzORIuetmbM'xEZm@7wA yXb8m*-JT腰K[9mF '9gJ %azVu|Y> 5xMF~ ~r dt&S W [i e s | L$ LA 8: a ;T ri Ji! 3 Fe{IRJNg ) @/#p@ $/%)V).5-X10c`5?3Z8t5:7<7i=ҁ7X<521;38 0u5.x2t+/)8-(+<>&J)7/$' "ȵ%5#{@"  .ީ(F )kAKrrI@d P${$'c"(*+A-Zl./Dv0k0b1þ01x/}f/K&-,"*U)e&%Z#N"A!4vYVf+h5!!Exiq^u>plTo= 0> T$!X( %J,3u*I0i.2+1O94P2 3$11h/.+6*a'%"_w%ȱ68ɰ<  h ͧC{Qo4No~G )_3^e;gQɐO qbD& <"gX36d7aJ쟼9趶s@e`޴s9E嗬B(ľL{IFߖ(gK2(o݌pḥQ|ZD;4^I J2lWGSIFΌlt$[3 vi;Je/+}߅jj =ؿf30׹;֏v#6wXպ"b$ҬZ7 ΆD9b0ʩF<xoS404Bɱ4ktѦ_4}CSj!Bc0]V=VF[4|o4٭">k:BxvwzҤҮD\fWS(֟wـHھn*܄K~ޙQߖ\i2ew'oo*}ҷ+['iZe}cC | htu`K'+A$. >'{c[aFdt5x:*\0Jq!6zi]lhgq,-.lN06 WU$6:z 7 S ; = =  @ k3 ˷ ̆/ {/`4I)Z I^w  1 f- E/+'3_ ]#1 B%A"{']$\(?&+[)P-+vz/d- 1zH.1-k1,w08g+'/T) -((V+1&)y#&= #˹*oyS[tfq"-r ,=sXQ]irJJsDoY{HaT8[ F" #~!$"6`%܇#%&$17&a$A&?$z%"$c#g a!/lQfzJHLZr0`>cO7!D|# #!%B#'$'\%'#%{ 'k0$1%"$4! l#ϭ"l"Q"SL#**$ %!|%u"A㸛Ҍ5V*d"*AW2 4LN鞂ч']H '.e3V!%:db.P鳶AiWh' ՛)18j|KatX [D| ;EGK7` /sCۼLpd~4Tͪ~)t"f1w=r˪{ R = C Y+r *q _+n *KY]- E mo.,tQI$WϓaUs"5%J/ 2;  ./  K\X ; z4bmg] !  rU/[E $ !u!Ђ!i!!5"!ع! H nN}0۵<Ek"dC0XH7n 3l Sb >Ͱ  p5 f^ Y gK2?&~"#xZ%!2(6$~X*'&,y(6-)H-ov)(,!()%/'"kY$ԉ!<@ J##HOOo-$8#DK,ZjA>Q '  mթ-, 3lO!~H$%4&c &;$a&!@O#tYM Q zVv6\px#Dgr< g+S"lC0te]cQo  r[r /v2qQ:/O٧H&^k铺M1Q'@޶<"O Ã܂p܆ڣؤ\aD־?ܒ՞si>ֶXbY|y6BEv'~j"]'9$(? kQL8ձڗڅ ׉$\ ԋ )՘փ*bfG^+qԪt<ӡULҳԷcҺIӟԹسHw py nQ Dv zc.ۅ%TRx{?Tw}X>7;J;"EFBVs[ҿIl"> .@cYP"<\x?P f # R "m&&X"JGNx Dٿkr j ݌=/|{tzwi["mW:rOvmsuDf@zox)V'y)|L[0 . 9 ^l k{x* M%bC{ Op T6 `+|JVJۡQ w}j(s?[?K3A( N $d  ZM1.tCsd*&^kt Qf!]"""*6c"F!L`m >/00c 6 P dX!LP) .YW":@N 9Lh ~\RsBaZՈ>|!b~^;,j5E;5qMdsn`("r"咗TX"s>RٮRצ׍xdĤٮ۰VO6J;To(wo<D- ʖ ܾ݁^m;64"&΂KIq`}a sRx/l)̇Ѻδp@5`oT S傠?&_ؾd\mF#`are(rD-3)uyt{o\{8@9dfǴ>5U-KTtD#f;|W@w˓c>#<#(1s7nOڇT $^-3_mJ{N;EmDaZEV+n٩ײ2vV C , á i<IGh&Znhm)"BP2%!{'"(ym#7/)rn"'%~ V)IP ' 6r9fzٵswAxpNY'&H6GSp:>\O>Z\Hiʾ-  D R5C O ^ "($"C}F j{P _(z)[ x'#?Wx^\ t[IZBB8g=r7Z^1/^ 8 +\ ' 6 Dn^ b  R "+ 06ɷYQ!aj%6rp"8>︝yNAXP u+t~02:䭦3K̎wk,p@H1x9ꀧUR湎8n=] qmjV ]f 5pf&A)\ I 1.8wPǔsq-߬?UStVcJĭaM/q8.JaGxK*xĤ Gl0t " O 7, *öZzч#J6jɿSu[E.9- t^V` K_% vGK&~#9Ke*& !qa $##o:'*%)Ϫ(q,f+/O-0n/1+05q10 0װ/--N*[+1('("#B)ykgx 6#";lALM@D0I[ = u  7^y c [B  ܷ g  oIbQwK1 I8RB {u M ] h F,(I:=݌SZ~1^ HG7gpp x<+mIBXަͿڂ|Wѽ*SBg:[Q1Slp |i4X # 1v'ܕz }"?"@ ͧr @&*mQKg5}E{ P0A$z"Tt [JzsGq006T{!ꨂwT%b̭FJ . ś R/'5 + ,s^p{e{T}.*^T(_fYClT%l'3T`w"{^j= ;cw8='V!} :<=gj#rKr c !m08S3fUKx1[oJ뵑't8yZQ4j;J61poر 0ۑt(Kct 摹$2*HjlP ` ͪ8^ _ n|N E{(a8PU? {@ \K_nkOƣi;?[b4亭tC]係g=/l"ƙ[%w.r`D Ox$R \ObO` d)Q_ N G  0  t { o   1 ֌ Q6i u*]4C4U])Kx{I:EuID9!^9[W0 + !['\Fգ%Q"ғus#0i#"ޛ@PLJ pUG6% s"o@#^#""!DMgPlGU +~; =Q Y  IJZ  VvS%  ;& ̵  M|R 1 e>28N3c$vkX4ع !Ͳ  UD  Ro w77? A9Ti&H힝b饚~^14&Q/ϴVF8;3얱on_x7H@쐮8gij黒?jw96HhVuAQfu7LV  0 K"9(I?'U#N53 ; ʵܖٰ\~֯z DƄI`܈㍀ a禩+?hE XK^W= Bێ߸@۳ N0UqSpV$쭑+|[Fd7gT~Ud*ࢆޝ}!Usu@Ϫ# Ң5 Oޱc|)"~)gE [쾡h (q N_5K3sOW#E @s5 ?O0|[, hܣ s m= RZ:%sX*ūuErTUX%ovH vmM> "(Cz#aHt"6mv , * N <*6fo.5a7[AD:Zt 9b=!Nrf=GFS#G@샦3M 43蘸:3 L݄m7='nx ` g > @X Y t .>l XOlF*^2v/?~F L 2   \m P4p U 8 cYM . 4 Zm Y ݏ }WȺ ZOXk~~"(5+P ]oӔ jZ;e"stZ scm =` |:%z#') %)W8u6ԫK2|}"T!8!{a%K.$ߣ(^&=H+!(,p(^-'?,~V%f)I!{%$ h1EJHφX/x %1r?#"'&_[+45)-*i.*F.)q-"(Nw+U&j)%:'#y& s# O&#I&Z$"'$n( %t( $4Q'"$5!/̰'m g ^DTkΨ2 $ oOW*F*壘 B;qV<v`@闃.NQ煶s~颪'fg_Z\۬++쩔TAhKݿ-mo^kQ٧'Ս׎Ӓ tDڅU4V$A/lbޘڀ;T}3ĻPԸ>.H׳E(`=BӉڙ֊5OVf_<8gIu~5Ύ~* P$e{~$ig#09=n yR84 ْ0E.@~n"Z߁ْ[io ќtٲ ״ ұx׍{Ą+7i؞_.iBMeMH 1z! =}xZ"z B bE j yƗz"ӈ(X7\>p)#)lUm0tW_}'KװQXXS O pngbdT! G%%+()ʋ)t+!U)B+;'ٻ)$K&M "^DERCa` duQM@OBwx_!a\ävBO$Umx>5kP (Rvb?uD^& st][ ( ()ﶕpr 3joe}kbec/ic)w )Ve[sG(X|&y+Qh[` d}t= h=qU59!8cmJ$.!&&Z<"3&?!%H ##Ҥ j$ Ճ !iy otE9,#K  cW } ~t4L4>Dm 2 &\#&@HiPDzU !ζr٣!hYAKs+W; (Ͷ C$.y63LMR J $;pCGA@wt7z |0 OcE >sj,z36'}M Z%y'A  9G C ԕ l2 E  8k o=Rp0as!N"Ztq!.M}Q"&%I"[.   YD^x^0m_ S ! k Ӵ) (2;=iH+4ᚎ4Iު18ۊVSܡO*Ć{ѣܤN&2v+ݤN6sø)V!ָQDG7ԓ%_֤a?(>Yt~5ބ߈mAdLۺKkW6u3}N3wBέZgz Ԩ Boܸb]9?bR(RaJ>Jl|d^71 sdYXu?Q ΄  TNem n 0qOO~T%>g N\sh咒wd鰴C+JWt r'S PnM-~5l7N+" ܊C'yS#BR @e f @<[p,BNMzn \F j  ܽ{!k!#i^$&ش&)~(.+)Cf-ؓ*"U.+.L+et/u4, 0,0-Sl15.^1[.%2-1h-/a1+50+X)?._8&N8+Q "x&s!yrj  ux*XfBufQVUxu.03`1/{:z\Emm0;*Qu&iL(-Zбkua+h hWEרV(D+A-XN>$ z\ѐ0yIuINE;Ə~﯒+FSQh$He}tR5?JQrB=~ s. 9n  ;  '  vQo/vI9~AAKB ~kQp CNjE31sTzϛ+ #H rOT&}d[xErLZY &.:!Spgp7rp:6@3b/pDzZ7Kdg?/[S09ޠIU':#@xy).P ې݌ypXf))nֆIkڈݥgb⊽O5.$D`0r}}agT玆X硨T"W*1kQk%Ų< >upͥ{DXqvaOp^XX9hf8W[R4DP)L*W9$/tPG#9K\:daqubgx C  p٩'i'&-P[a8 !?3>8*^rnq y ] > C GT_+hOk4 vQB  ?ui!Kz!e%m?$"(%)7%!2)W"X&~7!tlR4 =a# .e^K9T7Z8]V` `꣪Hư*r!Pު,k d)+   - yf   6 a 4 Sb2+1(PP#(^M͢kPHVوQ7lE][ie"y&kA'EƝ"~R׈ xVYyw d} ePػ iH X K~rAfpJ'/J1ːy|fṚ(P7Kf R"n)HgSƔ Jd&-ǻTlrhO^~θ*v9 1D( 1= ; eObp\*r>ccX&^xά9mkD8^kKDgxܫfUˬ 3aK9F]SO㎐:0~[2Va|cOxv lT5~^>E[籿u( ԵU-Z쳈BvMs!2B˯͍4U\œ&.|= ?TG5jh!UW)]kvXJoDX^hsMuoF][2K_(a P G!W h, La 9 y &e ǮKpo f k-{ Y&c.o=P 8ǻ6 , >q |7jF8*[/Gv!C 3V#|h!,'.%s+ķ(m/++2~.050*=7282 8n2H830=6-v2c).$b)= i%{!֐ew ̃$hS= n'E}3qc 1!!"و#d( $&N$4t$nm$$ _E%p!%bh"r&5#['~#'t"!&T!0$|O!U"7~) '20 :ջEe!l " Yj$v(F+ :_y| @`pD*z}cXTM$P 3y( dNtK T' nN ; d7 + CAN#&xom[k蓳懶uM['mKͼGtLdwhr92Ui c]iY7O-6zF(.l1%_ESD>am熱p5CI]u MldPLoޖ/cI;Zߝޗ N`ӆܻHԷߚٍ>p# 2'7|JkpҀpGY6Pݣ8gC:|dkhb1_ρ)NJp_ġdDYaKN 3)g GNK&Ss#^+m$~iUHbBcX 8tH,@7~GZ猨^sb1b6ܥG ޚXE|!ꁴ輪t6a$P6]>ȡ/djL8y_偨}_݁ގ7祰#,4*\@_v˜ő Wc ?hl Bw/=փ2P!5B!FoXZ { -YpoRؙ T@4B  ~DC"@$2:%:$g!n}q )I u xx: 7֊ Oq m\z >h@  /2'(h4 ]>}#X]q:Oz;f{Yo/B #Ѓ!m&~$)L&M+',S(C-S' -7&l,e%Um+#*!2*(%;#ԡ! 9!a<"|Y<# bI un}:R"r_2T26)0g{D9XzL2j ^R73! m3|pv _?q 9 , Y ~ &6)&:r,4$( Htzt\+ ]棙#ej\QI]wz ~^ `W߱lrnj[$ 0;e`%fp= eܵ@h1n"]PJw뉾ɕ縠YH念:qMc'.H|r)4-伿8<&eO]u *<'j5 \ j#P, (X 6{+ H~E`숖85ک8[-6C@wq*D樒܆5FON-yD&w*H'9Mj d`KVD q&B@i!*z rﱝ/OuIfKۡnQ,; uݻb0jI@fѐӰJ=r{.әjզLq<,'T}ڠ:ܠ`># n1|̀DCU l:~$88HQ i QvQ`_q(J/?Mgz4۷TWAj!7C4鿈;?Q(5[쾰6xJuvLq?0~;[9u!QME/'y5WlJ&Zt( z*) "b B2 ӊ` dFҴc WT8 1&oQPQ!N8+ b|sS:hIQF rD!C^ 9-MU\{cab#7g8 7A/J0ybx#K&@+8.J24H77L;i9<975YަD/ꖫZ܍Wya- ml-ԝ r݂;F(7{쟣O",!7[6;G2-W5į곕 geA3I5_ps<\PY63t?q[IwhZq g k , K$ }] c <  ] 1r) cO2%({ |.kPׯ I %h P cs^MuA : Vl[*GBU5J NĜq@֖ bZ j=! z'`E920ze V S@ O0q) : ?LSsW'X "B#%$H.&p#$B!!xbV{AiDB9!S Si }7;#_S] d20CV,3|S\]8 O Xtd}scH!;{b H@_ [G- t9 g:_4/52 *t ?IE<9>]<.OjX, k<}TnrEn,`)\X^~!\0Vz\ D<8p 09Q ;7.Fޖ`l•>"kl|k@y\|m ̲b 2oz} )# %g=&`l%$$"&!j;K1t ^ vR9 a oAkRCh bu )'bJp@F( ɬ 2bi ԫ n~ '^  a Y  d  _ =_ H' 2  c m /VkaMݡN"pdK8]: k,\yIlB|yL:;I?,gJ^?dwǼ75wׂo(ƠU6t &Q*b{;t0vvbdiC걖#; }*_xf6 KBi;Rp }*˳(m$UI^ʸkCd?ޠ螓ꞤCKKpRV#37pH_[|zG`݁,JHn8 C=VKt[XwǝI2gD%c O5oY1r;XEDCtwwJ@ B 7  J:Po bFB GT=t'!]|,hQF/EXE@Zd[{P>9GXi'HO6l8@r@L j{ܞx_ԓ.&8*0SlN M+ a 2 \ z jI|pbN/wl_#ngQD̿Xw.>1 ` ,l/Jj# S& Ej2Pn@۔`!>t"Y#_#%$\t#j#w߄"Jq!g ٕ- '/)4ϛۄ ~N >r;u  q &z ~}=  9N0C"ޡ%'H L3)#d!y*C"*P#߫+$MO-&)/M})2",5.#8D09<1Э: e1O|:0x9ē/7z-n5+Oj2'.[#)*n>U& t";2 6DDz!Lbkv#u-#%It &/G&';%N$Mw#Ub7" +r9x|q^V  |`KJ"V`NKc  { P9АCNkXhgr'S)XTTnB?$O,B7/q;+kU8#:8뼞!Ol nm+6NX/`L&;``6j?xW6@S 6 75樐sd0agȁC^D+GqS m /q0{ G rF ;8bUr{CjN|c&kEd#+z*2hFm{f,N]4 {s J[ }j^^H\" ayoN+==c2 e?-TTh;.geTa 5o=)rT&k _ K#t%o [Wn'eR% >Y + c  b& }C o R Nh  ׹iiQh15YcZs5F v/_^"D%p)"o<-6Q&y0*)3+Y5+l5!a+R5p)L"39'M0H&$,h I)2%""MXS Ye"=~< O`O"L\#Ʀ$_%' &!'w#K)c%26,'..|*C1|,4/ .8 1;4?7,B9?D;f!F@s3;q:1W8)/26W2-a4J+2Fs)^0^'Zk.C&],U%t*3$(و#7G'"V%="4~$m!\#~ !% d !u!z"$!%X';(0+,a{.00412)2+43f4i3 32020/G.o,*Kp(d%5# [t&5{!Y- Bvf > -  @"6ؤT 514U =ͺ갨[VICF=hO2?CW}UD4|tM֒9L٦֡odQ~J˛jz:ŷ]y‡ƔW lr\;>Q$Pq GšM$ H t 8 z Al%F vR X Dc" _k+ e/ t JN  + ) K\~ sb]Ϲ*X*ȅ8ķ F E;{ʹ\(7~Ƣ N_#9ag g  [v 1IQ_DU ٚ"6"6iP")( ,|,nI#`X!L%=#q4+>)ͷ1h0E9cB7@C>GcD+M^H,RKlT^LQTEK>vSH P@E"M ABI&g>كE';/=By8?#6`=n5=k5<05EGoh&@AcFUo),;㳀\ې,A~u,T ٘NL:;0Xʾ;ȓQQXͶ;K͌)ϫ?1ɭ.0'_ʜvςq-1jȎ3UÇs ĹjEylڸl8.]sRS 1צHO/pO~^^ξB36]Ҽ 5\Ȉ0Iȋgɏp6Ʃd8mŦs Z}~NGƭVZ:KƆAƳg_^ŭĺÎ!2!7:,U7Vʶܷ1 c]cVl =f4%ŸeZ44_I ʸ?R)QϽQQԗ҆ԕ0Yқhb1ل doE23؈kjZz!?hGqN5vL'AC?=Uĩ 쇫tGTGyxz0Hq.a h_vg>TP΍#'<p-Q} ;8 * w^g lut sNrGE(G < zI&hYql ~ XZYBP H5dƫ "kӬ-V hw i^<\mT#Y bi#%)%_1(%=T#!SxSY3U@ޗuGU?w k$Kw"X'$()&p**&*\%p)#k'!($wf"tW S&EBrXj!#%:,(I*<.5`1418M:i>?CC/FkfDVHHC7GyfAjND=a8@`u9vn; 5ۂ6 111 -X:.4++Z*ň**i+*e-?,f0/884&3r7i^6D:8{<:P =Z97= : AT=>$C0@EEtAVE#-ACF?&'A <\=78&3u4I/.O0),(j&|*$)"(&"(G")S" *#]2,${m-%j.&/i'u-/'].'.' .(-(.>a)|.e*.|X+3YkD$KTy##ղtc)7H8aQ?|0R3T ͏ihC ϾY 8q   $w" -z% , - \Ք{4^h.RJU &gt j  K  p[ ;( w'4 SK_ U 3 ##n&&P((l))ie)-)X('('Jm'%%V!$*n#(Q"b!! 9 Dm"`M!%$/+)1ko0s8Xf7>>`DzC?H|AG"QJ IJHIF4FWCBBj>h=^9x9|4g4m/|l1DD, |/8%*M)/)i0"+ 2-m508)3:5;6 :غ4*C8 1\4A2.0f)b&-R4&f)2#' E{&^& (:#, (32(.F8i48?;DDAIEEZLSDH5MH:L7lGcI[DhF@GA<;r 4!B ۜX<;SȞP;/̤Y6ɚpřnjrO2BzÄ~MgQ+p$h͉svgq 2ˏbX˰̡W'IJd߾(fk$Ѓ$ q)Yt-w+#-GZIAmi=:2ǞE7V{ɪ;ˇ|vHT֕wz ܏Yޓ m⢊d%{rM邿O nÀN)jj{`j:&j'w/ZM7;=8Qa Dv0հ1̴OO621":]o+.+UGhy@fov}M*Nep1o t3dN^G=T"˰$M49@~V=-%=Jye,DlE])BKtx 6<˞FT x V#"y$$%%%&W&a'!&' &'!&'v&G''()$*,0-//2R24@35,<4+5p3z311T/H/1,,))p&Q?'#%O!˩#{#s%s!s( %E-)24r/74`<9~?N=QtA p?nA @CA5?l?=ٞb'Jsex֥W\" 3k4Q  1EkU iٔbp %{VP,,&}r`!e[Wsi? {mDw ͳPXx<8uBgm@Y => 3\IcbCl~gdpguRr}RDz[bei֠ԜzC^8ԇ`6[\z* DMvϬ3Ejo5WGs!w֘o.^ݖXޔ| g, x!Շw֍7E֞|oL֧Ed9Tҏivl̝ Ɋ GǫkĆJcjEL7ǼfGA8fwj ԅA\ جٲ@dcXU!} ܇t7CښΥдbKΦFB &gmH ̘lQF̯͐LΫ h,V˝ɍˍ9nS_Ƌj 0Rid<ѶЫ&Qՙ2CpQ$sJ2 .ފ"A|)"ü+\Zf8J ARqWĔjw{bN*[e #qj8[/B, _(< `O/2bU=h~aG*Z;ܲ Xf\i,Q|*  x {m aIzSst6N¦0-oV0~Cd6J:*ǚ8KpH#6qCO "M?$!uZ%V".%&u#&=$ə'V%ɂ(Bt&)'8+(Z_-+3N0.64}28H6[=;Bi@X F;E IiHJ{JQKK(KJpJHhHqFl:E^Bk*AN>˜<w:86P4D31M2M/(1/}2 /T3\1535d 55"5B4352j3 00Ʌ,,((h$n$ } WX-Tqf~ ?W"?$o&D)*+y/P..ŭ2e/[]4/35-P1*-W&n(g"3#q TPܰLj  { 9 +fQ SlnD7",tu̅ݒ\f.3$  "к9 eS s"'Z(-"-1R041[503.0G)?+ю$w&Cq cTaita| KDS ~  n N hE\loj:r(} y ( LEx+J}Iu: 4m7@~ u\])j\"eҎ4Ά"MͅX̄'̀qN{DΞ@̡kɋ18Z)*b4b^55ܻ2վu¿{ڍ]R̿ԍ›Ntж˕eJ5UЦ֯]6Z@Ѥ'ձ)Z)q~=͸ЮUt:N3 нͲѳ·oMԷY+ ԃ|C7!/ױ:6t$ܞ%6;܃VޟoPvކEmjIo unT _kQm^V߲^\Es`|D,\A;s~!ؼ+1R!|/q Btt w5Y/lF&A@6?b:?A{c Q 1S ά  ?r<W*Sʥ< S%ɕCAde6Z#YՀId&j ]<o [Om,qa6 øH!E"I$@&E(0)*k,v./2Խ2M6Y4'69iU6g5;6B< 6.kY2<뾄mB) j="dLԳo,УvERֈ0ц~Й1ՍК٥ΩhB(P$z587ʌƟY_,DŽPa%9(9dۚ۝+CaE'7_W5}doʺO^83A,,NNfRIeP1oH%1\OOg..) }}m=bp& >9, F;U jo+-U.B xs40f"Fh[k˿7tO"1;#%E\KJ\JL16zV7 RR]~,t&_W HN 4 d(k [|ֵj{Rh?}' )0j *p!R"Zm$ p&&_"8j(K$[*% D+&g&+ն&39, &,&|+y6&*+%)x$F9(@#&&"2$=!f#)!}#T!&# "0#f#%$VN&$SA'$'A$U'[$&!#G&#%-#Q%$Z%Ol%1%&J&9(m(E*'*(,,Θ//?m2,345b60767a6c674410.,+ٻ()$&!$Q#M F#z$ʒ& "λ(%*'X+A)D,M*+)3)`('`%b}%8# #Ş !hVJcYKuoL]!x %J#1)D(Kl-E-0103423z42260s/7,$*0g'$J!tU>HG l ~9 Z &3 ) HO 5 .E5  aX i3zz4j#z`9"E<*9BM6'c<)MFf kj tDBc %~"n9:׵_ M{%6*"cyc]g--gmD. Px WsN{L,^qhZ`z ^+)[%+ %ܖ빔3+nwyO5m浜®r=r8I܈۬$BR, U{aԨcV ִgװn3H0f%fت~ڌXxw~xMٟLlؓ m!׍LJ׊Rl@^ph@M;#!;rܕzD}&}/K?h^ T`x;$T m3}e^7. dlY~=]?!T2븰Uzs߯*uYahdfUjJ~Lʴ=*9n\| E/T<ʭ*,}啸ހ-*:d7Ð0g|&yLr] "Hg _4NnE4 k+Ymq<q {5ǐU R wG L/ isd?EV+1 u  !n 2y5 ; Z /ds % Zi ZvW cjH  P V" \> bqͩ5vHS ] g4 U<tFavW7UwL?Z "`$v} o%* 3%#"hXP.Y|r[* 2i5X޻x{g? z2! &")L#ws $Z%WP h?'r")%UB-)C0Ld.427ּ69\l9::.;>;;:1::/98(9Ձ7 85y6l34M5~22!4 0c33&0?3! 0N3-0ϱ2/1|./,-,))2)$#2&" "J \z]pU/ىe?;OY! n6#6rG+%W+%#'_!Hن#JXK / kn ug1_`O վ} :k+ 3 5K $tSsbvB 0hא]3ܶ l'paM[\xI^CL*oWg&框Z Q-߶e-n^\Uol qQ.<ꙑI%qz:$cސ:q}&pTpݴH0#߬ly;/kgoh+>|m =gHt VO -3NYOہhۇhN[ܓ4rRA(wo KsEP"-VdLd謟Fz. ,tfM__ $Ɇ퉋!z+ /j)iE"zj6Z҇YUyR "OxTu%ɹa~g\fMNZ.q > <" %(5X R_ Zq  ?Gb l A L` R! { 5 u`gv #Db;55TaYf`jMIg FA TW nd x AH 6y=-=jmjFx&Md%mXw$3X[*>/lt4svUW|i{?CL  Z _ pD_ zN } dǖy64]~v*CRHrU Tݤ!Cr"m#$&0)L#~2+&,_(P-t),( *&z^'z #T#?k@}E7%po ~  P !;T X" z| uB oTmgmdY8O4RWtH@Y9~oW̥G ![BcMȖ5 Xs%?4jCqpݰ5ic#,icg)<%ǖ+S{l;5L~6oj[d{Eٙx%C^Q,z9Ê'U&C:N/B c3k\<+TFgi c.UgKV-1#8`U}Rlx!-R1w,*I|'#Ra䁩gYw{n JGB9Bl ^ViBU+49iJ=2E$<`~ 4m&DDm! . ߢ > y F E  M  Z T    n pl t ;>IRpe[ V #G!}# #Oj!l] ~u~~="1 E r 9|D*)# qlF#D0'6UvAA0i좭D !iQ.ԅ}֭T YI)1W[0:N4# =#b8 TQM9Qa/4?ȣ^Eӏ˂+}6Z]]jRtd0v_iW:HD~]R vT$ 7l/?sg}̎ 7 6?E *?c@1~~9v!EmjzEWsb=R6&7 E-%1?.w`W|Ei X  e ;O(Z\׉! zM 5s M;dr;/s Y [D >  ge nv Vg\#~\ 0c $@"  Av,FsȰ8^ "9K #v #E"$|!O~ k(_P, MF; p5 n u T p )_#.MT^bp?nfG}In2E*X RQd2f>d7T+ }LvHCT{N5qHMu`{bs'鮔PO"l<:!'37e\ecSL衳>% ےk^fmPI9Ueb\{P@WD~Z|Pe hw'yHszW sQ?DF;5Ox 9x)o:8M*=UsG/6`Dk4$W#8V_QI]K A P %  6'4isifԁ2C%N)t&e( ^  ^B7ڢlC {LGW,vAZ`m!8d'EeˁO?+K2[] C(& .'7 <, :^X\N =DהHF3p m  t . l[0b 6Z(M & 6 |;kofc5*"`\ʆP Dt`0jc*x<Vj'##\Qj? n߷ޭⷉ-X.6p6ycN(VKHR[ YyG zܧJ3ؓcꇠA鳃EN/O{ӝe!XH#ad TlسXv,k9Z 8:nhK!V&Hc?1SPWeU@+tߵhtAq PzV6HI];TeG)upN9qJc'+*Br*4'+=\]xn3tj/  W K ?LO rv8 $XU <# U4 , HI ,M !h nznBe Uc 5: mYg30vq ,& rox qYQ _ԳI`Nr17E RvHW{=y8h.M:[K:;zPȧ^[nWe[x3xq$0G|I:"v#K1s_F}\Yj{Jn!)|8˪ d_A,NP {W }`MtD 84 q 7ji{Lj6j v8bQd{=zJrt5T7tT=k~ 0`sk}Q+c U 0C u=wZ2xe[q{bf"Y2OQY~|RT BD'cB&;#Wݳl k0A)Sx@;~spujJ9BQ,swC >:kvc&J"T^;E =}m ݓ-ݽ`;MLץٌ: DJZa  .c:5KdirUb*f SRHReja"=|>' =H-i`} d@&H:Ypj.IKzD y=bZ9Sb^ D cHOy ½LdgeZ]tN#"yHmJrW|)TF5/s}x1,⽻'~h!>CKhDFӻ~书u|_5-`=s3xw%eM4)|(~j(E8a |Kr:%cj B\J'O:nz!dr'E|쵘\&ֵ^]`J_ﶨ{p.+XvXxƋS  0 5 q !M 17YRx_#%Ic]+try! &|W ;8=7o}$W]uLE^D>cL z{_10R5k N?vT[+ma죣295e?Uv=#&(ܠoq̿|?/,m`캞#뉯:$h-;4UYp.**= |u OjZ{8_U2qӡ,CrqᒿTNSֹ % `0*ψW!ﴟm?mES do8WZn3 ɃIVeT$o%.ZlbYM\<%(Km|`BbFBp ]Spebi|I11S~# 5M NOH*j .< 7 xCz/$|I\t"o`L2VJry' G A{ _j d^ EU N{+ [BoB*yMN!$U q\ L "   To0: #|;\ Í u "b u M `X  U.U4p@MkN&JgCˉ#&Ho B\N C} R!FS `"p!#:"$#%=$! %J1$F%$:#:y"s"P .!T|â nkF{[{7LN J@ A = C1 1 o ت &K "WrImb\6}Z_@tM?DJC89Dv7)mVt}arh9q }G_ZG%asLvtY['|0kQ's`yIYLCЗXyeS2 a{  ܆ Ը f Z :@ ^ vc M [ Fdhue: 5y@*dLM`KIuׅ|wRQ8,L= FDJ:OiE1,l단L|֣Xn/'m1,cx*Ǻ j]h~']md+{5 .٧jYNypE1G'`~>d衇"`Au!*i`em x gqlp5 GnY&  x   F lv , h2 7a 9ۦ"qu07rr1֖3(owo) 2. 7*:AA1k#`R`6=f ( Db }t~ ~10qpx]u 2G@% EKY ^ k( T w 7O_  A s% @ U D XAB&zt~q\ޡyjމ OPo%DY&2 4 s ^T Z*RHlXr s1C} J]hf l؞޼'u tqWRNNKDkҺ_[v2F3_q$6P\/7PdM"kT[|h33L!jbLt.]bj*0P+j X-5jz~Zy3 9 5!&$R<JF%_HKmX,V;q:!1~W3_l>5@ a!C%%ƃ,0J%Ћ6r'c@o>^[<j@cET4snLu i6t(~KaJDt`X(XkE#\Oӛcj c'QQ@ xGaV&P8Ӳ[>-xpAѧ  g @B g >L 9 uf8 mw?̲8@ ] ʓ ! e xN U   >z +Y ̋B RE-cTy>U2'zD2!:k^j]efLWvh-O.50ckX&K$(ߘ k~)y0 51( Z di z ^ ';X pH  k хu a8oQTD3  CE S?A ~u. +u]6?pa<]~ 4s d  [@  / k%z)Q5V b 7Yg Ab PX 7ho`H2m:2lFvUF /BFfj-<]t}s0g.32M'8$X!BtM:-/`]!n.\>%rc[s/̢̾=O0H1YŌAfgJ"v!O;Hl.I nF.F<8gAoI"Yq=w ,uckó,#t O;BwbMQ~_4zm$v,iF4nf(175+,Ay}\y5(dݒӷ9Iq>gpG6}dh88aLGWc85Nw־ gX.~mCV&rZblhL*i \hP @] E  9 YA (p qc z ;uJuy&z - #>    /-#/V(0 o 3 w H v<  f n qnK z  V l :$.LaD]e ]d 2  " X 3 u }.w 6\wz2'yitog !O" W"b"w!!?B Mmk&lqfc  6GW6M80m `+|N?` 1 F   B iVt ?w t? gZ V  *z ]*27:h?52QV71zFwiX 2 pI1gpM-6}Tb^;` j:IKRkDhzc]${ZX@(#si/sϙ%Q5|^`$6F)q p  ҔhW\ ۡ1usfxrDM'{Wwge7'ԾAgS jUE|鶧$^釩^e&9.0#O_N!edS9| %9'aT 9m!˳eHu%&-tN,X{FfSgKxk51 HA-\)|(*s)/_)p[9ĵ bS7'.ļ$IhKfZ<ٝc|g#^aiB|Um9}Rxphۇľ(;5sE){RK  : a 3 =_  2 []I 70 H C ƙSbpmϩyEr/["J!f"Z  F< mD 0 l*rk!js4*)p?()`OO\[7.v 2d!p!\{Q,)  ` 3F!':! >/ zS 'dgxs#&F qY|3`RxR5]+2H<GlqmCԱ.dAGWk=dvNY$ho  >OSx. _Hanktwy5 .r$Zy N h4iU 64x1 umwD)> IJG%&wijW!n{G6$  ÀxuLH/zx ^8ttŕѐ/ i N+ p1~ nnc1#~ Qⴴ▂n rmL~ܘwupልB˛ETKX`w]p[vr=4ucmك$sեnTԗFԱPԕނޏ'\={lf߾j݌J6TJU!a҆oGO eP"B੝6leU$X蕎p聲}m5UTߘֺX֝ԫgՎw֝8-ނJwjsFDIsee1 jYLAz#0To@݀( j:܂m?ݩj4/9拌a=x.F!t)2LXڼ7[gr_bCO*;XC85Sgtƿ$D ]  9 Z nQK Y x  e϶7(@}e ZV \$i oa|(43ٵ7mޔ| r   T LLR֞i\&N ' 9  U. k Uq H t[  ۈhC*  z S } vi Oj Nc $O ;  Pd E# s?ST9c'SA[6\( k 2u1Ɏ 1.P[ Ʀ1!&!G;"0"χI"ef"&>"E"qQ# j# !$ @$:!$>!Ґ$!%# -"Q+ h!'|r&pOw_ <[ OA ]o2 rWr%Z%-o8П Wz_VuI4,-MEc>9}* _bkWDInl(T׊x3?yg,9U%(H%+U3n\Y's/ u;mX_Jmo tY;'px'7IOSxM,R2f,d+b6 oL$ P K| 3hSUl:5}KtG}:[%FǠe6j 4P%/㵖߃4ݨw.KW޳MݻQ؂eXEɅwS"z;J6eE⛏'ބߺ ݳܫ٨׿pъcњΑ ̌x<=f:gڸϮ̃H%qCj;YO\hЩ^Kʄ/-HE.lJm~m7\2dS0 Dx۫e#+"碃Ƞ㸆姃FI`wbݯk?T}ڃ"Mр#p'7ՐBR׸яٸAܾձJ(׬_|پߋ(ƽ^T}}YP"Ys,֗ !)9֙{ {DgXs-j}(-X+cqldHyw9> cO` 'H87M}? ws/gj7J i x+&  =?  W ,6~w*q]VVt/ $ $!>&"'B"'; &֨*$ĵ3!eavGz R .pG^B + rg0GwYgh"MхK d( 2@u 7Z͏έ " v.`K`  1 }/HI B!7  Us S H { .tk { @1F vY n hH z[Iguw@T_v }* bX^}e9 /<"uv~$sj&Vw*K( 5)\ Y*!"~*"+#*$*A$)I$W)M$(#[4( #^'P"B'VS!s&]1 / &tF%ߝ1$0+" *l0և.FFL* v\ȳl-H + UnVR$|DD u|cWg.p= d,t8>.' R yAٽޓJ;՘!KګBү"Kѱ7N5&҃\5)e4H̷ؒh(>4Su6W |Z&e z  ' 9?  I2 38)))v=.q# 2x&PBX#=&d+1)+W*K* .')C'^o$$d!IA UD W7 bzd  ҂ :4 s & r8!ă_"05G"׈!jUY C  C, |_ m G;sE Q2#WiL'%X*,aR.T.a".F-]Y+)&a$"`["A!cMK""# ;<$eh%v0v&g0'?e'H&f% #b.$j#J"} : !imȵ[p'ϹTӄm@ Ԁ;! "t"~ ^|">>!. 1[&*)%o+'40JApByQN ə ϋ  Ц \ p jp o  H s | 6KQA\2; j-O2ņ;jɮ/# & :  - s ²,o?R,^ Xu5u REss8,ld_9wQZق7Cw,ꃅИYS?t6\[+U]kx-W%^ Ep<] b歩]1SEb\]ٺؗ؇@:&.긫sjٱ.(B7 ݑ8L_.n # {*fUڗg:Mxؠaױa(WקKf,[skךp:Bֲ6*֣\9 ZK_"Dߖ3qљȖҳ~ ԯSՄם";'vh斜I`>ٺ᭎j\IQg/ɹ@(2I!a2Da mr{,y >Gs~hpFD~pn IN,x-=J-"h )^.n2x2dENda 98U Xѭ Ed lkr suh4 ^ Xd j^ d\ jg; w+ NRn@<vfnCN ?P ]{ * W   Ns V,#hQ3A i oU!(%)P\- a0j!R2H)!2Xwh214v-/7 ,=SL*'0%E$e$ mI%x',&)E%+R,~-{=,w_q+ŋ)],'$ !3R:1.>nk Ifc%F!%#lR%& %`%NSӮ#y!JFe )* [H  d  <  2h\uxK84vXHHb+!44p(?xN\/xh=lL\{03koM,8&"Ji"Ew@I,`Đ+q_d.'FK =O n ;#K kJ  6cI9  >$ x}!~-  Ԇ7zxW,^%b6c O[f_bA VMiC1]l;y]^GQz%keWKj,:P]9q;4w X髺甍</´ :c8Ei4ٝ2d(~/s^q d"j eQiR_ vIgC(g.bmT]gGT%IGoX5Ci 2<~Ԣg!r]޶6,A{ ϹDDAinΐ[قκٮ2ϦGϐУP90 1p"5%|?j)!- %x1(ߺ4u*6_+*7)LE6!':4$%1!.QX+X'fJ$Kx!ԗ|f>gۮ uH"#$r | " tR&Esr nU+fdۈ5Xnf$' ܄rdP%K=U^H.yI E k !S j RN ?ge|W j5 IO  oeѴ׵rY!w8JE~N<~w" ug}篽@FգU93 vnjUgH FZ\}*iozdꩵ(ْ)Y_7htu{ %DhC>鶤ކ8qj@M bkeӨgxutw'+Uq0J9"ޜ)QC0;Soa䳻 LxId5Bh oƆF.$sE)z1ij^Cؑ F,kEbnߚF-iե X^tm]ߊScވ^&xָވ#ޑ,c!5{NWvy!:P}1a rپި)6es@(<'~>lQ,+/b4uW\=_:xseG^%q周@R l;"DoIy#gE~9idݔX\l+=DDl'mWGMq#\@el]qT21V޳ݟt؄ݖݘVs޾*TzFZY(2HĦy) s3Mhb(PP ! 7K6*K~춨s jx,H[]&NTM2K.Tj}'[lnXQ뺬c$Z)žnC Ao/N1窓+L+_6)[xxoh熆QL왵4 Gm&y#tM}-b?Xcl [eR?>glÑO?N90GR1_(g6i<^:|a0^JJgy|4539U@RP* aW1f q $DRyڗ}{4D!z\OX-dmY}3XbuK{QeAGz%,қ1"']ַr<FI=C/[(qf72?XrKc`!ĔG?mD +WU&vkksw\bG>I#G-Ѿ-{'2C_8  1RqY0ZtD8OLT8+3G   = w  t n t6 Q| : Z5 7[ V h :   9# i{|o 6P k ) i ʜPo Y41 Q1< `l  d'( 0Y Bpr? r0T^  &] ј G  * XQ4 uu-2VNΟtMx5 u ! * VaJ 2meKF<K%% D }  U eUn' n    s ) ڻ < s Ga4 hLaZλ! d  tT&OV' f$l 7N  ڷ B n 6 F M@ ( Q&r o. @  wa%Y-c  *ov:M@}ڱJqTx_M:Z`Q{5ŷ6v6q^Dv;쾾CW^;OD 7oik%[o.N0Bm?EYY2UkT'}x J@~wRmey$34HfC;﵎V(wg>ukXf0t \9 Nf!k %E"ufo:RUSP%d{RD܅ ON)q/-Ox4}E nU c} ̒ J# && = Z  R /k 7 - F 5 F ܷ a G E = -LbuqX'XER">eAS t a a$r* _d:-q Gj0.!U}&QP k4Kš}/,QAO"||`. ^(z:!*p(ӨjP5SFTp4_P7{iuB7QbBB] n767U8 \- X{y4%«I1$  B)i  2  & Q | |) } l O!0GT|i~vr<t?"eR9H+QUҼa!-_lF(k)AM U $(:tDe 2< z2 " w Z A  ;6 68//_a >k]0cR31IJUR cU -  G5 3 1 > ; x F M }S ƍm;zq05.ܒm0(m\2Ҭg  T b'/ (wivy>.v"܍<:gPpY0R4wiEϮ3UZ Nt6 s/ n Ufgx/(c~V  f V  /6 6' uX  {  %zG6!J^/_I256Zo+ea#dLjc.L}M'1,$ 7f~ljjP*Z:,if:v ts IgE%(-W |" =uZT 4]Tb?fUJIǬf\ݹfGdxB!Ov~h Pڠ1TehvS\zIlo4Uq3~"sl}Z5IIPIQ朦@oH%/CK'U7PP b9郵n&]I;)N ;Pyih@C1 B4R\Kz0;d(Vs4Z2~Qnhӎ6zґ&7#h~ӇU |@lAFd]NJ?) f"+*_h^hq3kY6V~Te: IOZ?P YjrsQR5R@ hHb w41}B2RG ~Cd 'ܬm v|s3;{,/P;|DLs;% E*^wF]FZ8 ;*$ feީ8t:b>C`$'K#[x-<09qzG 0q{$9f sǙFrӨLD8 /ִ9J4մV# hakE{{;dR/!~e>yaw;gzǍS3KE-fA6W^maqQc益T-;^쮵!cq\XjvvMjG8Uƻ;q6R90~︡ BAZZЮz ٝ!u=OOq9% Ax4OPYj%Mx 44:˃B >1N|Dbi. Q[ӟUv7k*k6A _܉9Zw?oc4j~^%.yZco f  Ʃ h` ,  -lr &( DD\~ Fr݁hz (8  @ X &  ݿ % pr O 2 w h# J .Q > Q s 5  Y 19:}.ʡpc^`Xfy3:T - 6   ` \^Rxjܠtx  N / #   N y BK%(D A a@ {L )&cfA'GVsAgu5.Y11Z2H.[* w; r t݌  B} 8 ab h Df Neiz 3gBD lJ  s$ _A/ CtQWe+m= Z s %U ;F2 m]<Uws˘D-9D9ja f-@P okASX,/g \|@D|Ib(QGW'hk2ַԃu 6Mj,!%g42SgÙ"j:V,mt GAFHuUbހtt, x#A;,uB&'uVK m@u.ѿ|gVg2u s6~e  KJ$q^hx{bUaQ~ gv9xQ65Jl./kC+pmw2J v ɋӟTH ͳPLO5B/)طRe5y@ggh'M3U ~r>puT'LJF2o o2@je X1NMqo#x8fRou%4e=> pĘ9 p+57?=xi=D t LeS9QJ MW`rȻaNLl7~y HMT2?+pEezc~f_\FaKrpG=c 1DA!%Hc-f 1z w Eu  ܼ VG<} _ V  ##5Dz@q:Qa7z$y\f`VM*nkBx 1y C s y [>)  /c I N'  #UhZ eC-6L4l=*wNܥN x/ VV do e 4 oR6 #I5xV~E'L l|,@dbAZm.d_ t J/<z"5l5Xu$F,'o]D aRDLh U  p I  9v~@ L SQ J S 5 +5utc}ۤaZ~PL!b|]!e#z [*>ƦUx1cD;=BJZ"cH%h&f ~8t2iH+6l8Pa^<xZo {iSe<ޙG'/ _VVHq)>( ar3&0x~Q';S e_5 * ]fU{   : 6F % t t $ 1  {?]{8Hdg`[{nZ?yYwȡ! pU?vQr|ﵻl 5[e)%\D?qxNT#rFBʱo[]k(1Ma-7 H>e!_( \]=s}7"`3CS^ -x'~)9 cu 5 " 8 >vW _ ) Y 4E C;+ ?v _ iL'),OLd A66Wuʟ۵hlP+^8glNBM g-<-CI$j&,pZL߼H #[< Af n 5j/G ~$ C -&(F_R)n Qt hb 3 4Ku 9Tk!  ӄV[ K c$> {  # ys  " F 1f  J os4 xՈ!?\ c/ l + d*  ׎w q    _H )GE3 E? [ \ggigaq$di!++Q\]5i=P jDvy>Ft T@R@UMr:|2r>jR*wo#X^&"6g[)oywuQ);sCKeUlvbxTlhбPKw<]b !({+3>ڇbleUpCd$eԫW#0 nLB26:%>fdYr{)_Е"*E k+Cb*" J3xb&#mb~R+ J,QY-_)al8:n 2Dԗ59mF6;ljTuYA) 1x7f: MPO<7#-W`TD=NT~kOC_^`WFMyXR=C!2=@8|@V1t.,]lt ?W̵W0b}YZLa Q?=x;c*fpF0x>U a7hF|)IcW*s%=c[ x&#ao>"f[?U)TjH @HN[1.@xkb}O:n3_@W6Ddg$QI?&s-_?;M aY P " z >*  ^? cj b y[X ph m0  PBB 1 o5[< md%E[5 ) = S 8 dU/Kȯ`(  is ~ w&K zљs+GܩU +%VT f ZSbVݑt7ehzE.PBlX"/ MP Zgt  G ` BŽ UH&!qS}wJD_1 cV< TK 'z  ")Q  ah!5mV|I{gIVL'7-m[[T\LC_Y5b!at[n &s.iJ$҃Eރ`9$<)C%J{ `sPirk2B^ra)e좈9-|dHꊳm]82ꩩFĹ"> ew3kEMt=]ө?Mn*BA那!FDbQ3a̘ TeܳfR?4si;h&`DH-~@_iUjJHq5/\T sۡbxX'B jjae_6kW+H(,^LPQP4)xX90"D|q 9J!؝m*'n:1^ [ք*#m y#_@!IsQqa IRW}!EUN%hUu&T hD, dd r 4 S 6  { zN&uEqhJs"Oebbm=0bOMB*1 LTe;? .{W;hSe+^ g  .`a \o} )\fvqIE9LxpKK?#wC ` + T ( A ~7 )uc@ ~b 9 ? E2I j x[r \b C/ ;( 7 ؟a tH  ? 23 ć W(˧ &/62\ZV]9<=p'`Ei[ H o I b ,jRVy3D!*LFG  " R T s ; `z h i a 0 +6 yf & 5 f ( y  &$ z<YLh-BgKPu b D Vc [lc[4cbdMXT^hN%T ,~Q  O H 7 6+ `( U _ $Uz{+<NtAB:B=} qgӟRNT%z9<Ky;rZZ_\Cwq~(50IUp])Ox.F=:y[F~~B+6 ǪٓG7\?u^Wm쟷Ҽ鲀mz =ko]c/Pl;%_UaRF;HsO, 켵YgP;e sz-뭯{20?]K5v"M]i}%}P;㕧*Y]#%g$D`pX4Hxgb"P g<] Ea, G>!!|I?PM *px( '= 0 5u oD&< `YVL=t cN'9 ^j;:4EeMa &xSa? 2 5 w R0 8U h ;j Tz j 4qYz*z!Q;6fu::#pDx~ Z - c ܮ)'QF,*L s,.~Y C r - x > ` 8+jz;; 82d'v-@ 3. mgm[cE#'dAf: [, 5d )  5U -  | uB B _ ! 0>  /1QzK%CWwn(b R :G 7 - [' "OS b p {  l 'm> Q i NiB  E J  E# vG K 7j3NqS{G3tr ׏ 3' N : ax8 M7[>  D _a PO  GtT 4:9 3u H&r   T ? ! # I* Fs\ 5 6{ N'  n- 3KNT%n~e>^m7tƏ{x/JMTNc |o[^X N(;LbS8+L;uB1K&T@Xyy{ݕM6t\3RMi9N]]=4F9 I~PcP2멄RSY|7 CGRj܏WhT $ۆ)<ܒ":ᓠe1JzuU)旒Onj烂bj㒢Kk[Ķ] Fh\[\MOꛡbddB_ϱgq6}=q R& VM;4K#?t鴫g}fq@9a| In%Pr0(eYY0r+1SO)!]o^_lƅIRSPg$dy(9X0 Q5Eʐ~9} Ean^Yt"gV}N)o R 0 a $ C As;D<2K/40FvTarXPb.(x9p1ی1dC< b,!z x z  }h t| j . n P k Eqjhˇ" JE2Cmm:F < L= S.   Һ +ST  [<@ c) U[ L o p  h [ .Q < 5I   v < * OJ D iD i Q Dj U _ J3 *  ~X /  o  $ VVe#o:zxW~m'9ݫ\]6Z&mÝt!c8 . q+Q Fl }[ V(c|0 LD = Y| oZG+OّT:>H8 D v)  X _  Fy aZ ,- [ 5  ?*< ղ Zs`5 :9L R 8*$?OÒ'P6RC}m . Y 5 Q * N { /  , F v _ e Vm z1 ]i  ӟg } )   X Ǵ% ~   'ۑ 3#gs>PW$1{00#Cm*bpmllܤ2|1P&e7(8g넦FVPexw6BȧEۼފAAJRsl׎m"0tغ8GkIC#e҃ m ː߳I޺'ߠn ି-?)MZn)F4GjN" |ּ蟟NR=]."Z7퀽$Pg@BR-K58׊vssW*aR{ `w#mƽ́@@djaz*}(_QFRʼ 'qv!2Ap#n5vwA`8a gӗqy(4  t6  .x h9 ]#Y)(f0# B G 3 בgdAdeJ7@3=>u&[=Z 6Eإ p C +^ ~ ^ x M _ Y\ }YS ~ cr _F[JHZPi.(Sk 81'V 2 x C- " @ n Oш yS  | eI IA (w  ׻M 2H ċ v B jL,< |Y OEգ |Fo+JMhO r s a0N U@: v ktT  |7g  ϧ$7IPKFI,My'r~ t^/.{.uRWK0g8UbFfi$<=9p A 2> ? ܚ 4n  iW[ ̣ h h uy8S Y YB x  KH h6 FnP g   0P  Ia& B} >f LB  ְ )8 }oNV 7u1ms11?S^9[ďs LM+l\{]T~3)K @=n] l% 6@y|B< k9'Np !Ar5ՙzD]㣙k[K&氣PGUWvbS.10 F×`icRVUc :xܶۨܰNC]ޛy_ OG 㱶R M)4/Z?tݬ!+2n`Zo{+0ͭA7ㆱP,Q)9ܧeKIsE>_赡ME\ NvWLj$=z7TfoLQ.Y /ֿi F`iKgtO_o=) 04_rmҜiVq<JN\)lYl2@ei!t3Pcfe9f Dp\gyYW9N.?۽LцG 2idME pY T XA ~fyG,--?U~HtC: (  xL&G;  .1gtHi'+  } %0 z I XAj~$)p #h VS  Z@ z١ vSr 4 g<   .Q ~[ x8Kf *_ ~& "dLkdayO#:H2(z"GUʘ W! aG*(Cs T P FMkgm;:L:}#`;e =ydn!/XH t 1 C =4˯  J 3}}.T4dzmi   @jd F>jIQ@N`<WR;b?QQXvI` D*xnprBC+wUOUUcq~:^is}T%qv ϧh L7l, /v&I#Y{|}SExBq%3on pIO_#qSqFQO*!yG$*7޽be.a_;#H?v넫Rᜐ`M E)gZQ ԗ#lUSY4]iුQh$\[W;LL.{^dgsZk鈑ANC2T#~z=|P=1U=ZF[_Mzz_ )Vq6is8!V"#r9(nN";  l{ ߗ w;@WOeGtG u t+ ʠ “ ) =ok mg  x   h Q( L &q4 - @ uY 8| C 2vTc)e0|Jo eE  l6 b(5 6r\\8j{sT~N0b3o G7z@Fpܖ+Of`7G@ $05ղTW/0ofJuCUBYVj a 0hEXO)3j\rU-j7lAt}/`LPED6"?gF">8\6;RhR &^z?F(lweA=icNw᮶߰`pZ阸 ꬈βзd ⊀3 ' <ю*G _UOENh21w6Iiuj`5ٮ+R{)WWmO!bPv?)jW-zAn}ߢlT`ZJۮ}2"gP ݺmJ߱$։:\,"l9=챯>#?XY8-aT'@FL]a@bXVɡ"agC1W kʉV|0Q^gV53u eo ,,o K &) W9[o 3~ ? ։(tž@R ͱ T[ |z yOr ~{D6 5,H6 A ,pې#D S7W3"Uѐp! %X K 5 n% $g !%i 4 J\vDƖ"jm+LlE Fq Q_ #ܛ npB]r[]FT ksZc( .ޯ}.$Y=甬*V 1by8@Z5֑2 `m턒e,!G:`cY:9?,و9Q ٨dk+@ eMHDh7+rnvH)'ӈ(4} +D|Wa2Wgf@D " $f m A< b \9%FLS5" :X&[0Zi Q@# B" q!es/ "u}WqGӒE&@]|7. $| nl omJIyg  = pD2Jnj]bS O  0`J9{ Q׺ ,O / >\ N .k 0\ 6 uAE/os<> 6"p,$""%J; N% $Z# 4j"F L<1%$Ԉ?ͲvpC{oF&d(P4URs[{E,)CfGD]Rg" -'x@Uy t#3)>FXM|OH(55p ɦ 1 V d NKyolA%(e |{ % @q K D *X Wψl0_P)q^,S ae4 8e` @8 HB  $ F \< 4{%7?dv2&k^"Aj@oq3RvU9xH&4A?Jt5 |m?d>VD'9ͽU3WDÁ07ubqͨ,N> <Sl穩~oZO6 0tł\:=X\;Ɋ*}zMS4cVSѩ JAgt tH vN_Yps0 ~3P)/qW1Uui7~꾙 UnGL 62M1:IzCZ:uVna 1Q7UT.6*1m!n2fIb3,z_UI/5M/=`Bm0 *UKhJ: >  M* VW.9I u =r EQl8G5j@HaPC*.fo)J2  :[  1 S}  =| <;* r   HI k Q9 VIK Z-> ':0  ~n 6rX*N JMocX XP]/mcX D GeKȆK[+Krt 7I0U.wGdg'~TkxsV\ 4s,V1σqq3&4!Jz/=P ],nF, B)| |BoYH*Â;aX CMo % % ʦ n Q p0 H1.qt{Z^|b1nZ  o + K a \ T V A u ` ,@2NO  3+FxVJeeN_&iQ7.6zm*-K ~NjZ3 @.d?VhrJ;K@y(lkd-% A#^uXT#̪`D-w yd FecJc曒4NriFOjVOrn`_bu{m;L[wD4 >"B_ZZA_i8` )1v 9T_PNi`+ꌛ x |詋糖X=u;[Y>[UlilHӏ.ԛ"tYgD#N6v!+k/% Jwi_~z/gPS~C&#$+Jt"_:+rPF҇v +n-e2x~6aEUf >eGeeO'Za}sl|CH  *i17UQ1Fpx^Z>E  0B~]}O~T7a ;\Tx$"7U)nNFFүb D -f Ӹx rBo5\qe t P ٜ3J 9 34=,8=-yv}wt#" D0L(KGgkn@7p}DL[PX24q ѽ`T- R Z n )`W8D l 'jӤ 9c, Yl @ CXS>nh N= Cc. 1 |; l ! YD 8Ue TJU0@EvV]ֵ/3&jrWg+ i pX x 8@5 u VҗYkߍN ; 1y zv WpE +l  R 0 2a{pku4U%'^zsۋpZBpI'%Af YЭPx͞T^ =h Ή TG = , o % + h n}  s sA>b $DHަnsX[3H,_-R?,*Z_+MWu5N`'>-oV-IOd~r}n e^*|H eGQ",xSE$)2[]홓 ]3W"% h@,1so"2LMWU:#-2\wdD$@f^j9zk@TuRaz>|]![q4WxfzT0c A2\r%H?IsH=HxSEDVEDNeN| hj5vW\L) rSZuvk*4V}^w+4O_ˢML2R 2& 54o 9̍  ]Z  0N } G ʻ  M @ * vl  K Z N7֘'f%t"O2EWwӕAHsH -xwJϝTlʰWA97fA:Y "4NՔFY\p@/k{sg|i?MXz!e}MpPsq: Il % $2 R a 3bzDm[,w[+tv9/#u]Dylny 8Cm8 @KJeӊmCU&zN~ z { l0 8@%=V=5yER|A:X1"oS,U!a.#Vf^kx J#֫1F_ҥ*0G@4!M?z: YB-Vhm: '; / \`}Z7;ɿg+=HlJ= Fc$Hx|E,6cjID:OmLhxA7T172 3mU'A]4u:ՀBCp?*Hi"Z~kYhs,jo}IS3o<_\{H UeumhOl,TY97rc,i}SrR-h/.6m2gh0AnX :`{Hw]3~qұ$ 1ICmMʰ <n Q3ck "  8t g ݿ Z O y3  I Dov yq sn3)DE)(P[^{Jiy1EO]04sZoz t9dXT?˕e6QIP8jD)){{KeF%2KlP\6l-=/>to0WF5 zt:st({ZwTzeqswχ'u2W x3o\**_LAc9~pmlH=yc`2O (|Hk,V!Q~ ^be7mjS P}@nc XCB E"PC;k|Tq< y :/ ? 8 Y qM  ]oRmƸ|y l+(5z:Ge$(W s Z g ݹ aWA y  i L Rw g3 ގ .j u 8n  r E 8TM_L0_}pjpD9V hN  Ob + n zPՎ\3w#Ts;d zB [ f[p } QC\S X=7B:%OLo%8i ª  o @ OCP  Q Ѿm2F( 8khOB{meNW#  TMh oIv 4} ďh`We#HL9 dڒ!%aY7 Ⱦ9 T ' d %  ` oR @! ܄  l }I > Qv H=Y+q{q*qcnMiZå%hnK&E^0&1Y,g e S>{7CG@;cu7=\0) GW Yb clqG  XR`d=|MXdC:\eݍ]ӁU=%vSיs0 AgVn1$˳2 2kCbۢ|QhܖFU\Af /(iBE^2*}`(}fs<#>pm\.OQV7@^&v=_s)q"dW3QLDL~'nnO54`NM]{r_-. mKtUNe{?%M[ T,N1yĄE߻ g -YyY:iS;߭(F !G*\"=Zj$SvM"Ν6Zk\RX4jbdƘUTv05a$?tN'nzO\+ZezœF.,+ X23yɿb92TN%?0~$,w`4(3|6qɠq  x&; %?aX :>OQ n1 s x r Vqԯ7FrUi_ku`P}7 @5~yX*fz(cO}sN@Ao*=&HGW/BW # ]ax" '{ / r { ,mBƆ̄ D@Z. k%*  L )  d Kx d AJ|L%SL"PYw8gSf3 )Q 3 R "  ( } u l] a ck n Vn & 9-cSB<G)   3 W5 G 6* M $ A  Ir "ӎ=eaOpqx1%{: AOs[5;YH < q __v { %MK *g#cԷ5e dAJQv9H@"!WWsnk0tIOYCy=pTP8xkfKwDj yF [W)QUO`@--dJyM`Lt^9;pHy' vcrWNjt{P}о,Sȫ_{Jn`}5ƅG'01 !|)'{>>(frm$:Af,-\i`" L6"+|Hgh >R2H+30+}q}/m`꯮?`꺉eJ`5nGNI$ꕪ96F@bOR/e#꠲O#k_vVU4[;^A=rnw]vl]ZnznHyT >9j~.XT+Qzo@~;On T}rq9I~!$NeqW> /3 ѐm = ga  Qe u6//`y 0?lHF3Yth Z eO X  % k Th2 U #o ?="  B   d h "ll  {o tx~@k 6M[N }O!l҇6Ni!a%x$L"ٴ0s/js4/&F6`V4p^t4}k(6zS ~KZFqP{' v ~Q ۄ Vo Wa( C '} (> - ۏ C s D u4^m-Vn h]h>W3pWBg@ ;^jwOL$E ]y| , 3a7 SI s_ 7 aV !ZQ 6!nL y7HzSG`]I.I:CUdPKʩ8rF>\(&ظcO d?r_HJXS290U97JL@@3?c>wC\SEIy@E%N8{I-zoc=%QTdog25q7 ^&L^@&i(<? _q;/7\a,L.G 'Ex َhXtL<%(Ud='c룤Z쏴7_6I}*B }O . N%ZH  |  BB + r p  ; 6]  N& 1  : ?  9t3 h>.  p y c r & j  8D: -K% > T4 ( D[ M BZ T qW =% uO wd9 Ev 23 A x %Q V5?>^c]LO< ( N xw ^ k 5 +av & p _a dO4  X ǻ` ( Cԓ84DUi3B  {rr{ȨJVM $paIa8}7tgЃչqmQai_i"X119!yfL?G &2Rh# R U/kIT90Nsy8ey`hwqhdO0%S"͟& 52X L~NHGnYoJUj!;od l%hO$i`=b \6xDCvCCV߾0q|C,0}8OBuwdσ(L@C}F7jm[8;Ba+T4O4Jx}܁7;7G]`91_/O0Zxf҅10Xu=dQ3UU'w#bVt#f^d4tjX/y<" 6/;>v#`DRtG_xbR J +E ϻZpf/w~9_>`8, ./jzfЁ$woj:Av :Ud%_ *s J]n2FJi!AΖa 4؝  Up "³ 9T H WUo hLǂ>= Cte34v v> 9 q i v~ @ y p O 7 aQ g  7g  m 1  Oj ' ) Y Fl 7  n).$5(,E 9g n C f C T{ # &  <ɐ & ;hxv.H_=&,tN3}:@IGm_Ap9.id@֯=ij;4 U *zo- oS m; .kx= @Q|wއ,l2BF >Wj3 L*l$ IE `kDaCnI9NNe!d>NF`DCWU"DsV \KTr aķRA[@X8n6 -J1]:j٪ er6?JeH[ Fm[ 53taL4N-L2_-mD:?fSH K4ի78ga H{OJ@ikG i$6 jKls,"dF~LkV-ul^Tz,emӝ.\NxX{}_ T4ok Qg6osS ,<&ia~Em.pCiZ#uAq>JTjY( [=677dEqsYGwۣ5h{M~,za2}d&\1m:g=w<RUaܼ4sG+>_e_5Bf[vaR z^S`&`dB (t%4)%b'nŐ~`eN!FP!%xi]" K A*_ ~vf QtvUP[X bJn \ z+ (Y Z #UJS8tM,^0-=ZFuP$|7GkNpՖ L:[2P ba +g (O < R iI 1H u-@.O5 Bpj h(\' $z&1.06F#A4x|UaMdiW j26|_9/e  ,7 A d DZ  B p* A #0V_n8ݜUH  ;diq1y.qw[2<HU"?Er~ž4i7Xx^@[cvN >j.&6rxHn$7 jjp p8}| e)/f"x~XXl=XnAHaeEqJ rLY17G] IЈ;IfѧN\l/FH0ph) ?zC @\0v10c3of\7nQTȏx g':uwug.:BGb`ay<?UP<Z#;XB5.*Nџ 6 0 * | \ & ` t 7  |'?TxD%L|qlAMN qeo `  9 C 2ql hCAP]9u"N~֫ *lb ' S q [B T A@D frWBv$zr/M8!LxL~[ ña> MI ] < Q v j $L V T W9+tYGJb@X߉Dq y( E )! F C { _{ ?X5>zPe /%7o9x *U 3 3;, 'b>h/<,ړ `9/9X^ O\Cj!&E]Hbb:redЦ}B`VdSI(G77g ;.i Z)ZqO2hXwQo$p~`AO5kraB-1M@7b(pT{G+gT 'v ߺzZ{RН|%L> =:*}rG+n0Lʩ\](t2JO]\ 3fZqHLEo|i`puV.a{3q \mb ixZ(CNПL$RBҾb,T=$Io,VKjb},HD9{_r8wopˍ,~‘<A73z!3V[w5Et39@ѷ,<W,Lјp- Ul`?wA=YLH byHCLPw V>#W)X@ %;IjC]k.nsS@^oΠZ)K  T O q [  Q Dp  (   i> c ?. T  {  q  $e h5 g%p %] nd^ _I #9 i\ o$n 7r jg_K<=v(UYg%=s`'w 5 ?  e& " N /' " X c < 6f' []mG!S,*&^& VF$v?|]  ws p1@z<MJX8Im}m!t ^ ] cCE& r  n~  d+ V=Ф*oO}6n\ku29Ja+K >/j 5`hhR[kKH ytF5X{qog0NWb OUG9@qŋs{< V# QcEm;Hcg~D#V 5j49|uzVOJu1|emt)Yb?OOW[eWflnoȇ(rD'|Dx*EsǴXV!TQ&0-6nzX&uܱڷܢ U.2T.<=D3B( &#3 psSeטb]c P ũ :; [ x 5  O ! `y @ 1 د J  s t hd ̈ ] L  z k6  6  V( u u  ^ N _ {R 3 |  ; Q  # l I k WMݚDDhs' {pRHw\*%;2e*Yp@ځPVZ/9`%I?B]`[ IwYp : . 0 ~ c TAa >y I & "S   h (  f W ђ z : . j f  )! :'uiD+^^'fυ}".  N o  T ] *j @ W - F u5z efW='^y9mAܽij > V # CA  +& TnMqAlqDeE:YNy O, 5 :' M *v  Ip J FI T ^I320Vsx<͟UvNkΓ_7   o9j { 3  clzD d"'I"E$Mv?27u^[>U ^'#pUωfptz#w)!9 N'4H QW am M fm zJR pf .j 2 ^1 v : P= rS{ VJn6ns}$sFR]@gS؄< 6̸ PI odlZ0-v 9DY 6 k] :,Fޮw>VH}n (O1=<9s-$eɕ|1mJtIl;;p#WO!Ah<HQ+R T} 5]ԶSB1cM WF`=jyy`2_؟\I-^uI{(41/]e`ObHDUrjW8kiJ42 /Ǔ=Q#Yy4 4*N3fJO|V[m_l:~sC@Jf"7qJD+p.Mh V"8“*C6a\GBN* (PvLhMNaJ l,VH$s\xNsugZx^>ScOx"fG ~iHBw} R(B<2r%0Vz J w pR IE G OR Q j oea Y 6 u; b ljBz ( 3  )1=vp5^=?hA i > Rƺ e m | j2 [ 7 M ٻL a `2 , Z <L 2H "" !r= TGkV : 0 Y]  ν {K 'Y :/ Ͼ[ 8 W7 6't 1  PN 5 9; 'y z 5 Ц  H (  }x H/ k p z /T  [y     _1 L oD HV P 'vw&\}_#1 ^2,K glr Ԁє ?j ؜Wc ( o=yN@wd I A  ɲs   3/y &3 JN :! -j|=iY;yn 9[<C@~a_Ov(o'*Õ'O;PXHzp_=b<_#'Z_3Kc<ET+dm-CV-~*2U=N(G8O eh)GBQw86R%V/=J'7AxgP ɩ۳WX>)(y\TQpэ<'.2^(b/6=gX0޴vTї>-n' Zq:"USmѯu] MU Ƒ QB? pa{ m] : o %  0 w y& 0 z N @  .  j, &  ;  P^ J  e? N fQ $ ^H ~ jMB G'eM-%:   g3uxNg},$ 8@Su`d M |%d @x @jg CM ; <W ,F % F !r^ W9}9 A/; 'b <&O x Q@r ?2 tC O9օ ol Q )P{  2< )   m 8 u.D 4  ߥ ~ !3 ^  { a   ' t Y t#  -jQ˃i Qz ># L +G_ ;V : " GV Z2* y z{ ]#0)@1.B_&3m)vFpxXt+kY Aٵhw'dtj83w. 7 ?{ :0x *p usx 4S>c֣֗}]8Ci.5Rr+!â{"Hc_@Eo]8&d[IXV-ARw~7vg_+HbkR.L$)*&cF7v 5XP!wcxnXk< ^_We섲-Ŝb,C_ehtRVgOUe ?9zuStĶo<4H9Q`ݵXs({ՃH m([BEó e\Jl#]}#MJ##{`v <&ꑥWM곯ژ#I~:ge 'ץG |TR.Ti,EaI8+#fӠc~d+r Q6) Kyt Vp H) Ƥ+ YG˵B4U5SzU}و3 k9W"c3p`ZU?} =^jo4e/ @Y 'j Ye { Y 3mW Vp a + ; d ] }p+ < ~Z |E IW i 56 | z1 7   ^%AyF4֙;mhSlA2/ x / e2 | y$ f -p G  NƠ u&)  yX, x u[8 Qd ~ m $Z UVϊ x 2H%I~$8$iM Ntg {f vw] s7 "k  \} *_ e-$ / (vD M r! DV W) p5 {xq y r '- : ! y M ^a P 9*' y |~alC7Af5Bqs4j p  * D = 0 & {+ 8 %r W &  I h / @ F|e  f1t0J ]0Lz>33-qG  V-tat{sMv\/wI޴|7bP c1̆NʧsIm1 VcXh 4fJke`5X+7BYmr֗ouORwi}Xbs;\$6+s0b&͢_ԌNg7^z}3I .3-uQD[3-8J{b.YY 6p:g ߘB}>5!D[?)2 15)v9m]C{E8͐n\q'vQ-y>hn; Zq{_Cl1)87;Wi>Eq[|S) %`ENQ0CkM\KﮈGpF{ K"|nH3nML`xt W~s0q(ZKE9*glU  " `4 '  ҂ ?N g=;d)'ebHSb>FRJY q?c+] YL@rQi ȯ a +P x : 5 kŔ "ۅ 56 r~X"hiQ4JJ | o 7 } % sh Q@ f W#: o# ,BzB^w0bhjY} 9PUi˝d 0Wz! GF^a$JAUHuKXA(|C'zV P<}&[P}tHxgUUcmzXaSj= (}vo/H~ -xFIjЊ*`rG l)GzmaE$nɲ)+3c5#6g R/DAZʋrV̮0CkpD-M2%+Zh_S{I&r8b#>a)UWQY@UxEI^> jY0֢O߃ jK=|`P[jpնdX&"9"i@i\,(GxZ9J:\ >msu}980H8u2IMe o}Gٱc&Ha\  -2 (  rNLj ?Q  SK 3v G Ė axX q 5 f+~ I | ohSwVF hV ^%za  q 9I ,<B ta $ 3 )-EJ {1ۼ  1 Gw KP. 52~N?/Qd]?a#@e&Oi;q\хd!ݧW0<  m = H*1< )a NM s  H( * N K 2 ܍ F [= X  6f  =9  W f B ;, Ȥ N e ) W n ٖ .   {{OVk1M0UZ̜U9y4{=rIZ\.1 l vZiP?^ m^j#aM L qHGW_ӆ`_l[)0<QnP^VdzHR$ѽ'58D@Tp;VxWwrmdQVBUnf7O(Sr[L3<ɴ4<}TW0: S2Gq}+X5l4~[|.O) hxU3CPvhc!@/KAuN{Xn'&F.yAO|Bqk/% xC aJg[7V-֮a?mlz"0V40!(`V lkfQ1>qE>۪RrHJ-g eSsfm|5λ  &ec @n6.Xfs_LĨ?[%FE{Z*D=sXY.}US(tZ?yI2#M{p?s^ FSmFs~Rհ,j]zxA; -íM)%<Kn ;p]ěC6NG@7*:u} _R.bPj~e,C 9^  F P[= & dv  R *) eR KjZ+&{[1 ]; D_ *  }F8> 0S N( >Y Q0* R h 6* {y   y]rV-l`m4ɔV _ %n   IR,6W:-A ieOUQ->LJrv6ؓGR!IWBu]UVs`t4NeemKh5YP;ܼ|Lb29JY\4gfc 5Ir /lR+ 1ƛ_n<6(Bf٣|yw}>3)FݹsWwz)K>mTVCk6P\P]]<K7ޅ @aQ}Kzf9eI[e4>ej%-cSHTa/J6gOR5I}M|%]LM]T.ٟ.n,$8 2=pRͺM$%')ԓPHpRJ{N>HCō7XqL6e Y3^8(\Nf;tygDxA04b>ؓ>0-=v{sr[|ؙf?d/Uyw]>6JATɭ FSM5-bN.[Yt  h}:ixeM&VldAz$ 1nawltt}<17*cE)@nV'NzlQD{|~$bg_G>LPRxu=F{ LfF*PVi tz@&E5&'Ŀ4Qn>oe*jd]PBM!@13ذZ$:i;JOgM?_+;#-.g>uV I`FJ0yNЪeJ/oxr#ss6 [t * ( . [Y 7k (r J(z9`%y{M3rJɣa=jbHn9Oi3j.nvQ}M *z8݄mbTvcv|V->B{^\t's<'m TcFK@odós qAr0|MY>[|+rkwmӕӃD*6"R7{UK'htS/+2o]G3v9_.j6 ^)'8@l`s_0:xBrqMO0d?/!2` 3M9D?S&7O`@|I1W@HE $j,1KNL{ȩ7Jq>3@hr_Zt#uPpqn`wqIY220Go$xyBdrٷ&:@:kBk`>E4~;-%pq*"mgF.iWWzw@ngq|Wf[C_B7 q=b1/8  C(Wj=b-ئs!Y!!hZCb^=*{Hҳ*H2E`cȣjU7c6O@l -4b!~cח.J%34L 63iL_f1t(%v]Yeoo~ @cC IES0\nS=OI)/C>\`Jv8O8הB_Ml$E0b]YhG#>;"تG!yR/ug2Bz-S_ Ha _aPg?-f!~Sn|owk./_0 bzU M] NQ *7 M! aN}a3E Gb1M_csI).{­ K  u M Φ 6 hN 8   R  V  5Na Q N UfgA:S)JMIjQve$lqLh G*)rT(M4ʄ7.<da]Nu`NW D *[ * | T7 1RhabLV-cy$ ]YF1 AAJ ɮK P: @- TFRvvd$HV_^ML? RSg >XU K 6 Vi{}GyZ)DgT%z>\VJGU3IWO6\ d:Ea=nn{\^L}n53FYThFW h7;cJ G  Wa*](56MoQb=CצZ8w(#9Z`EjsG?be<& T"XY}G 0acV)iI4ya*;Lϡ'2ǞV0 %&5I~ }@S$G= zN 1am؝v(̣erA{C.YYn l  a3\o`YEuGqEsc u.޲<Qi\_e.:I0iA^7E6@5 D-.sf0UBc)]0b ! TN_(Og\`y`eS6ɺyuBnQi+D1zETR^ ,ft*`mWG]s@6PYoq?6iT~Q[~tP1|B'<BveTT" T#aª2yiTxDV:҄+~+<&acTwf,z5 '  p<с < !dmoj'K S~rKbsPW+ƹۜ*K xS _  m s U/ 6! L B Y  2" y7  r  1 y g ۷ܓ n| ^ ', wr. q LD kE # N^ _' 1 Y *+ O: O : a t i m ^ 1 n %  2 h  @# W^a Bx g #XD[dWg m!V{z!  =)a՚M E Ij%n0;;aZxXW1*=Z:,y ~sdQ eUIFϻFZuaa5O65Nw}L!:Jz_\fvvHxNpel"z7,Lq&|SݵZg4 UkNwɔe6bn(Pv8Ȉ.ibp4PS1R2/_Bop td Uf@ [o>aG~LE(6?;o 7 q| HY : / ' = |   0* #6* 3# / P3 DB EaG  F ?  Uy1wG a$#Lw`sUc/VR4Bџf=0 k(i%C[[}(L: OE?p֏z[G4X l*  PO R {? ev +q  .  !b ( L1 ^h {_: Oi#e_$Lhw0vQm<ITL[~ BV_+_LB `K>c?DT(P h/c]ؓ6qv.2iJ|oȨGhJBgL. u8dn<";5xij1Oʷ${88\* E|u_ b4,Aw5q3:Ci|KTI|!PI: "h4j QW>V PK-=$;)+]Xѣ+sK"7ziI=y+a7Gn,e0D'?; Y!~;C=aPd~wo=N&+"Vdk2p+֯Nq~ ` sq2+¼z19bև 漢X^߇m\S&C4*ӷDZvPM OdhkUGjVc3b;%S%InoDgz.y`e$7d C DA R آ 3 ހ Ζ C5  !NF WA.LWZlanpyth]BL& ) N K; ! V| T ,% $ >U< @K 7` U J/ z c3 #ryIv~.6 We` 0 g n\ [)& h|* `w ? 5   s; R .s B /") O' I ? ɸ* Q O@ I, @u hi 1 V`͟ $ j \ ]#& N _K rŊ3!x؍5mF@MF y@jA% 0[gA@)P`a;\1[,lw`: )#)k_+bk?M ,b& '6suqѪ֫vWg]FR^M(Qm-٬"5B97JGFP!944`@a;SB5P8 Ms'2hZ0^ucJ<-@(6}RWǹT|<6m$>3YQh1wMXZ O۷K+4%6b4">(E>@AHn&# d /719FwӔfbrnhJg.ͥM|•4  KwO"`|:wQK?pq2c l!@[ v%5Z5U=$Mk"Wƛoe. Qd90=$7IK.A7Zbwv]դ32vӱ=48 FE\^PeެH"lx^{fVxZpPaRO5& Wo ? FN 2I#BmGi?%.kNyQ]l*ĵٸm1RY6 kg}6*j!h5a?k D<G:&".RH9UC   t >  I  R` m) PG  <t " .j - H4w [   N> ( AY | cd a $ ä P # \wd  (H qZ OtW 1{~ IJ ` ;I fx R h} kh>  o L /ijI&L)'߾&m !s10?Ac3S6k[yB\wAdƍVz?9/`@&z!>k.jzO@wī)dHq@$<2Ӯ\*b~u551 N4VONy`4 .zs}7{6z-"g`3.vK }"N)ӯCHOf}br.HX-$Zwٰ8iA8 IGzWsE,qgx5d1t49CfWv*'r g%T 9.N#iUrK?ڥRaA"4bHB[ E!IX5)Q*+@vn+C|Jb_B"#VN+QxtJ`_byOW_!  f1ɂw oac+dL8|o_*p-mjxARtiB+$TzUvN'29u~},G#]~ ((XZ,g_ ;5I @V27ցXuRZH'O3uLqi2\H/.+T[=;DL8֍0lcKf׭q+08"WIchp/GpG55)n+_e?!]o SE  x%q@:hE-D+iHlF N*"J9$th='6YM̝yaĀջjubҦki#ޕ̃}7R1J77S  9uH ~ m=] $U [L}!|*BvZR r)F8}""V2?eV$c4Yf]fY ӫ+fZ^Sq"d R4LbK[>I'G?_oiNdpR/?A)-MRܻa)e u {51< w24dDYE@J8 U9"&qu:ʇE"F"}e9ZFn6uk~vӑ?nB}[S~~rk_*lO 8,xf(P91a`j@gX>%Dt{`i!0haiW|}Y\\,Fx/x3kro\A8vXk6 5O6 8:S^)5N6?&Nd͑Ij?0F4ֳ=bGy\h[PE"Bz6;uDxK&h fW LYVqq] $?!j/9:R:S|>&fO< __ H1 wz+  wl+|9omd,7r?\k &l2̞fq#ui\Qq)Vu^&kI9$73u' aB:4M?iwxLm2HMcsUo,'@mYO}.v qV!L=#\2I_gbTqH9`,[GliE) )b8cZ` ,vp%\agDI]>\ie6M4_^q8vQӈpRob:\7SgU HkR>x Qh'#z EZ[P>Qy$X~m%ZyeVXH&͢jmIegZN@>I|b)2W76UQ BtK[H>>l21KRGVUiю @Ru q h`3|&+ v1PbZ[xnAzɢ^z.[ <4C"Ƌvg-/`^j]HL_sDw2*j*j*=ng+ QENY_+ OwU^EO׌a4?LC+wf1tiZ*X?J`(T=c]7*;D$9%.@.E?);qȝ!s,[&mr.(0ot |M 8@D00;s#mhg>oPbA~*-pݯF}{flN̐-&#gvA6-5 4Kus l(y*ۼ& mt(k$С@3#{insE > 7]d |p1y <, 1 OT &wn@[\ܿwXzuk1@%qE'YrJi3Y+dF7kYIV.hg tWI_uThNNSd*9t#5^uc !C{ED)ٻ*vA;S-Q.`}n{yTIJ$ZKE_x8&GW "+SjO~<*7)C\%w"ql0ɓ@r#@K@-yML:+xL[ja U-FyYW ;U,èeUx_0T$zBbsqR 1G$M6F^ w`^lpЃ/4_>^g*GR^"A dd!&'k,b/c5QDZLEA?o^$UAr)j,"LXlf FǰtI]n?٪UA7WBooU \N4.y-3bS6 *Dȭ iڃ o|3 `o@ŭGZ/N"TOE?pJm,ym(K/{G2$űJ}Z Gx0Y,j:Ïc#B%:W h mJ ?k >O ^ D ^^گ'nX$5{DzcEsM),=v RP/T8(mJ"E5 fZЯy_d;+ԑh"lĈ:rn}{)J]puCE 2(v362,V&o't^2Jpvr 0>(TNgp< I}_H9_|O < 5 hBOOzIQ gYMMWN# 4*Q3|ήx"># s &[zo[^b\w+WO*!} MƿH&\=M9&LV2Z0mR53z>o%D Zoq"3;DϔHb-0KbxZw r8deOcp]"Kv(ܧK:F.';%'r3S$AVw@O$Q25#\3f&V3aȫPZ--IxAv&0 L620e+nrhGr /rէ"ߎ>h0Bb /j/'XvxB1GZ`z0U2Q 2u'D Jh>rFiԁ=ys 8e7@ac ^ f u }6 EY{-11<:D Gyou6qw  u y n { E LS /o< #2IEDW&c>-$M ipPS 1B7   s/_  ) UT  pJ  RPŒ=]$v 6C Om lZ I!# G m %>_p+7;"s6r | Fʎ Gc T1U MZH V-7 5 6p g } mMT]v*2u[m) ֪f#dCQ β  O V mf|G`^V` QCg͏(mn@PKs-eA@H >ugtgJ[w!x I 68_y Su7G * N !hr ZY& (љA>=6~ *W,]N0pX[dܓGȅ|~O@x?1aGk:eRbIBHR,jAH[[{J yHl.x;lnxtn03Ψ8yo7P4V%Xʮwܽ,Gc(` /\ g-0 oT7 )M6  }  pYT}(fHXQ_wm$K$B?XKAd.m{:{XVwM:u&p{@Srgo5'ΈU`J~z>#R9hujJx+i*^     %  r zb y! ` (I * V i l- 8~ ܳ [ ȧ,{ ԋ E & h f q Ah _p R- & S " ? k &  AUl )~Z ^NU*q+I ʹf -1B  = 8S< 1u _s[ & JW 1OÓ I Ja`LGʬ5!^U/%BZ/Si%%Ѣ 97c&!JخSh*+[!Z9me5."l"|S1Gl0k|Je-/^YkڌOTc5Wa 140sih`{si¦E'/ t */Hl`9<%SC{jiPUɳYiOl])(x2퓧3]9:`~B|v:CG3t,T.C x63(aBE&ctZi.J 5~Šy 5Zkb&rqS"0d2wZctw;@"Q"$U%c4ˏut> 76b)_NI_ߥ1koyD%H1A)C(bmNʆ2k pD{=|*~ +l8_?[F+:Z<{qXy; |B :. Na yN 9^ E "j <J V^A _  7 ٥4 L S s  >~4 h Ή N :2})SC2nb`XQ^,l`t>5n)>Y.4_t|~:H"&+y]1$N{'7aQ")5wH^IelN} OdBQ , JQ B %t yo 6* pԷ  * }o R;  "o / " w  R af e /  j J4 Y ˊ އx M pE P[ J :c !   !t2 X s& ZaJ ^   ! # 1 Mh m :=#y L  m" [b; 6 z;$sN4 ,aٙ F nnNG Cb YEP  * :DZb"Q, is?TLxMV EJϷJT,kHP[ ^#c Y[ay1-ddE}Q9ZW@kKT)c/lp`(@n0M'?|ql`1bOvS+v8S(iEs`_E6ﮕ0#-C5S;[wp8/J)`d+ j*7goϒ?:VWUe CCjb;=iPdիk_Md=|:1=7 ?ѓ \I{ dTjO+1(H-]MWyI E-Yn/XArr,LokD"ؖ)LPhYR`Fǿ%z/J̢-`&x;2lK^s*3JQramnW-Di`U{G+%w  t ( 4_4 n .Z 8ا  HG L>w s 5R 5 r{ ':  B   hx i jE < W q N ` . u Kz KM m i 9 x a | eg } 7 OKaFtM7RyWp;x@TRuf9.\.G]6s~Q4QIiqck2jl=.fΖ Rҥ&Y.k.MdV~8l .zi 7QA'x}av@9=R>Lf^8iXUiZ&z94=R 'u,2N3OZMu9\%pwZ`>t/I083;8$yWRήn^/8fXfEa;XZ/$EGqĠ U<fT8sE҉~p [ﱑ.E%'6!`oP ~:*T)#[NC}']{x];Pw3ہ8r%^'jb v9}k=;sB4V#;? +lv^[Bxyg#TUA+h#U'"@>"R}Q|yiޮ|X+NE/;G^!6~_-`5 T j1R kUF R_ ҒZ NK BH yd  z! t qc d PK - h +   G  7 |I {x WE< R 3 & A = ]$ qb ?    ( v X? 8  k , M 1 a -  L:  # S( ,b% @.$I ΞF ^F ,Y h ? 1d=fAg 3"8%IYJjXOnf8Ws O| r ͓B  G %P{ v'; ( G rp 5  U~W Pr Xkqc-IBݷJ`*']ho1wKjkGKoJ&7YtI qj9Cm"'~m"yZo:N]X(-vbڃXiaT;;W g~ :(=f0D5Gv]wrU~uK N:kS >B4TwUd<3p']MmsZ'OPo:!^r`G֭GA[NA"}4ÂS"LTzycozg>O>;`q4e "Ff@C#WCa4z {5 ZHe6LsU [K!? ;  ERH `a 3g d|_ bBS N s^   j\ * 0 5 M0 JT b 1f  l  ji \ C wf  " '  s ~  5 n >  / m b    CV $ k '  `*V   @_C  YU' Y] >} X  {(  y )O MBu |Au/jUz 9mK֋JDNў&=4s?cl7uNEO_u093s$"XXi'$|޵$`͙zh1F;+i \2w:ڴgU=L]NY&gw]&dRcTFlGC^=uho# ߗ Qwrg viZeXr;H%i^ݿ;N)A%$ktm?]Al#"@ZdD0/+.M2@Xr Q [48z|2eqXǥNpA`%|6ټ,`D`M#O9U3=I-tr|T@D'}oOXVOndfN4sOrth=89T O=Hؓ'nD7lYxf[;M/΁RhL:xEp'+7)1‰XI=q*<<u2g ~=pz0D2DYzeL3zI#Ԝjw7YWD8w?lY7HCgUCVwV|D8ڲXi~=u'և@Y#8^AG˓j׭ZcI)vd)nɽ9;Rf5 }VH=ܤPy$ZH2{. ? 0A\0 TZ%V;) v- US  :3  @ ) ; W ܷ z L c, ` ;UD> % ' Y Y|m])<QrX|_dg=R4dc+^n! -RiM? 78;FB(524o9یMUb  E8Zc/ }eɤ0\ 80Cq3YL.ݸX(h'EC;GinTfpc:<QrU E C_#\M=N o22~C[:/rvxV-%@3h+0lf@[ɄsX?Ic LB5y;j]9zSr+e"sğVT-ɩUX]Cp|~:K)&,A/@Z~oZh'{b"J:Y| g4]NMI1hM#kskgVIp}7[}M^EJ`=q!+fE=d:DQ z36:N+&XXgfmB18R7.vSa.cEn ]<\ttx : u| Pm,?)rvPr>M!F Qx [Y2V;9S# }p^#}(fHDO3$|/\ZiJxtx-]aNQr$#Ust/)qqOFnv>-23Ϊ}- m$~ƕCѣPK/g}ۂZO `а\{SO3\ܳ;H-_KMk11. _HlĞJPyc ? %I nyj;Ct7 H1ԝx5]Fݱ('UÔbXeS{`t9niAS-.)qx31h6*Þ6*v9_Y25]bLZX3c uKG}/{lbZZNWllv<=l =V05 &$"WS2Q} Z; b X 1~^ ]F }}  eJ'u39]\[(iRοz6[|0][L6u/A.}y !cƋ`V$jGƹKҟ+ ;!R wr ?  l -[NisY'š3K YZzJPY2VHk}l,vwj=?!SV&z?[Teٗ>i~dnOOPB)LtxSt;NA~"0{\^+(4 ІT_) !t`qXH?;4*'tv{wĔN%:{tF>wՀGj'<@"ab3?7]¸ED]sX 0{GtxWhpm#`x"&g( eU g}.VRUx wZ A>?}[9`GvT_kߧ3mP' S*E4G9NbV'9l;['< 9%><|U,.%T f>yۨo7xhp(e#R?&5ot0 )6v32jLxyfF+/|'fn oU9\0pnS::$&1XzC@Jׅox(\ :0Y%V~Q-X;m{w=[3w]i\{äZKv9;{;Q9>A]Y+lƹFK4m2BQ_#P|,2Ȥ|:3 Z ~o@$@' A)Y k Z]i c k h n P H p a J . dD  , M b 8 - {  :,   4 v n ] ? U Ю /  Td % 3 , ޽ a  N  s4 G0 WW / d ^ O !  8 c? [ b u g D u FN@ 5~ .y gJ ^= D0 P N 5/4 u ڵF4Pī`$2u[.:ߌg!m/zg dY_Ǯ(_HRI=]V6f jn\o7:jL!8t'nAZ04z  gUH|GPx{&L= ;:A)F0#B{,0$MMy;`xJ0<7S32F koy6mK?c^@0Tu#TUCOf=@iwDc35"E-_Pi!94 V}Ybl&)Ve=O ؞>6SZΙDQʩEcc ;E˒l!)UKxijOrLQJ~n\}PȔL]u.Iw1#&'s@>1V+w[ X |gayA%u+"6e 8~ #<.~_b_R$P"pNZ7",,ԭ#W&$cV_4]^Gc^HLE^yBQz179kP?2Ύ/j;f[&gdQ עy\hɸG%lR@n);wxL x#x}}"1.c*?!3XYU_"c%\PhCp! |l-@ T,pSL{xDR0^t@|IKg+OsrfmqwmV)zZRlI%ۊGp 0Y3Bo.+ dӫj@27NIр}# &L , h,WxJ<I3oV@-ay:H zHus'Ž<DjCʱmDYK)=ĩ)sXw*L6хI$d+3O_}6H5U_(ct&"sH7#&m"$yR)$ޖ\kYpas>D\ihX[uS t } % O - ~; 3 Nv j# b {;ɯ  g o  Do :" ek@ 8G  q - H5 * C]  kj  1Od"_xnj{q@ '{4[$UX$T8TRZs8qGxA Zd`8*3&+.lx@.g]is6#+qİ7ΰmX\| }I]3D6qgie H2e#lswT^ee"u1/u_Nj:L˨G$(%UA}.0_m1׼j]S'o46p { ]O>?/ce>5AtuS_&b]&`_>li1~y!OkX#k "\8xc)&)7,MH!` &?EߜOgve(m[(bД"]b%)%cp~v+9QkU[OTh 7epAKx~ӵcO| ,BDCr``wm·}W%O9GD=`{7?\_}gNX{<@^Le$] y ESZCpp VVjulFJBP roShzesKLh>{eHϨfw]{ RGV DaELK_y}fGi!M++M IG,v\PݒGR  Kk ZaKASV'@7e Yޚ:9OiTO6Bgz{[sgDWSEw8#<Ԥ^:HYb#&vYaÖa U\[X mc5*b}mg>! i4NY D_f t,PN  re#$bJ|.5=4rFT&0e>%OG iԁHz)7N}6VT@xJlMGzDIR/r&Y]\MKH;T~q$}`<Df;}vyL2|%@/y#0DLIVJU sڌ#~G+'#</7L;:p6Fs`J.>r[6q) 9TR<\Ҩda=@5DnMp3n;! k &V{C.:PkG[3t3Rj6mb DO^ͰnlHM+j(5n5l4O=-p=B@ ν=t(aRs{ ?m/"͉Y&TW8ٿA%_]m'Pc*!>vfQnR Y0G )dv%N+oS)wMtVu!:&cN"jh ; ͼ*SJcPPaVs|q's7e%!CnN:qoEE/BByh[Nnnl+ aZyR~  =rh/\G^-(Qu ?nU[9cbSl-' 09{ +X@}_GVPb0aEf8(|};d1mD4j>Y6HibSSj!s[ WJoeR<" `Ȅ1g|d'q%2Ƕ"\pia]"oN;'lޅ@)Ʌ4=qk.`%3ZMjQ4qk³{w@4JL/JnIES:&-$knLAzrȗ9 g U*IAHj:7Y%V(TDbS_IE$"X"{zaHN1K\H0Զkkx [#ԽhCn0ts|äM%ZIZo{g,N'kEZ+qx8EX|{A`IP QH*YA$jhAg!PG2^J&Ziq`PAhuQă~K98Z,AZg </siHWatrG&LdF 9g#DkTxopCk+lз;P=jHMHA xЊ38rHy3W C2PBa_cnn[&[KJ bEl{ yk YcL>M`tB-m`/@ѭ,A8֙z*)<3^34)=ln)`at^!B?@*'3R-higY0*bo8/.'P kq~aBq3QVoŵRF$"RP&  0 0|`z)H^#/m Eω_NJ?x}fQDtfp2tvN{H7Ye4CeHD/R~Ut=]ww>@&/X>V~Sõnmmĩ!y2}'iD0Kl[ρqKH8mH1XpG%-JWbIV[M}j#T!yTxZחce55 baqM0C^k*}+(n;fUl4`3OtDNwt<6?659Y|˓dQdeQ0@ ^]Kusl@³#tWRI tUT32iNUUm;UqZCXdLP6aIl~^y@*}/]6@wYLpdExY%~McylVE] }Yb` %vPlt:m0 , Chqա =\gI=<+"C Y"tzL~.n% xѕB_ 'm VXwԜωe#q|eo5Btab0omu|v%gaf4\L³v}A;}y__AƄqi.uk'wS @F7r;X5I֫ 9E ykW$6JZk`8N@WHA[f@aZR38+?mt(cJ`%2z2&8STG@+*Y^}39YDYvg^*ls[m/gR!2gJO~TV[Ym9w(g?*uq]YF^{hY{~_@{]V9<X]M ZVXPPloWqRш*4eH#xRԯ*A.idP+N28*?,6F& )CI {a? I,zpGQ3@S_tgdz*o* NE4)NF6#z!;JmtW1k?A]S)U&wRFC%'jD'݊;@T8+m9%SV-pDf*$?v D1]=-GgҨu|^2K[,֯ZE!a64n9@ .HdH[#$/oaieb$! }ƱZm`k .Dug!om;V!×vܸl7$|<nc^ $niwH?l=Tey+% NqmCDwR`A{"gEӱ%fa 8`S2b7"4-ZåY ϰJ\PwX.]ʘ * j0nq7*, FNZ;cshsp%.O-% 8"O>&_I@`vPtҍbqa?hJdW up?6^QOSj1r5Uu2 NZ&''E_{"kVC6VPz0&(Zۓ *%!P}Wb   4ZRFwB6@~_g:HyDf=Hi Pvͽw|Xg L!D`38&6:{.ZhEf>' q&rGn[$S~ndbT5~+nA$d.%*h>9ȔS~ S|ފ~]b~P|m6XvY-.QfczKBIM&$^U)HLܪ=y<B/5*>1Ѫ4Vx|< q.$2uF2]PpT-IJ, I:=+NQ,-b!UE(>m#QPLR(4@UmۥQ>ŕ{9 6x|LޤA˒ŇZwR[ELxhC 6(E[WS|8?c92%(v?)M{Aʜ<5 rn=2elߐ^!RjquS ]kCO'ob{{@  q02]=gtZUrHqy&C(1ז~%Y>v9ѱo-U=IZ=;+-˞IXl%;3HUwp~Z;%ajJ[o "Z o@  1-1@,t'{mp^Éj+#xV2}/yl8Jx LQ^1z>}H_+j*]0n~_LJ"\`11X[r*:4yaCX5 sEr>I{Pj}&##ٛPlA^Zg¡WyzS(Ch),3 nY% + |= K4  f('nz\xq*D@[,f Jh jM4EX{#U-=]iT\-l D:Y3n>uXjX&AW_ICn'a'`\:Ѭs=u' 0k08tL[!GDR)$O>K#Co5i|.A.#]3m500,#Y@a]o{(pDl Xib St20wj( dhE^װ&&;1xc74Pr9a&M0f&'XĠYM;LtpLn`SjTnϬ ;"Q(ax*7M)7j{,6u:x tC,&kDvw e'!kxj;. 1"7udo[Ӓ{7ӛiXxnC5aT!qwZu=S54xAL79si{T)-*pKh!$ s-~@8#r?WC_Q} ͶUF4Z1 @e(YU7]IsXA'/ q{=  h / /[-  :.ڴ} UQ {| Z o Y '7 1H * X- g 3 }' @W 7 !rC|] !%^%'4arf:Wy'n] :d &bu.RV9rKuXE{.@(U7SsR&&t3Vmplb)t82)*!=X^5=j{K*_omMgw@b1z$/t, ^Ta_ ͜Z^ ΠJsg^@a@XBY:0#G6*\~A}]S\`Wc3peX'1YH* O6%ؿ%8x1b,.MS6c ?mhݬ7&)))N+Vj -PQu.}gT$ߊQwaVW ?h 3DeWa~?UHm[bo%zS.#OT`^it<}q @?/0UFԜg3xoeGR #*9c-P-.8l[ԝۈ.,MunfF/HM8z %Ǥ %AOi3[19524BCG8uLs2& WNbEN'Y f[d'/d>#5DCfpLE 4zcPUV#qZz'>N .#G{S]kpa#k<[? B%oW>7b1M&'+UX cQ a{xiL'm m4}) .mE#{ L+رNAb-_;D"Q5J]o.DGXtrB? Mg?".(V6XpR ؼK;sQyNOundY Q?2/(]&%%*u>Ќl.u[M-3,E,~pNH3PwTqBg&>1q\&~?>t4Blӂ7;E ASC%#\3 1&Bpq\E8#AΣUI@{wKy[M%DdV c44Iͭ &H J R S ͨ ޺ "  G y pL ø t  G} ' rT cvD$4Lp^W+2?C7K %e ' v . $ R  wWX[ܫ|_\MFWƒDk̓H¡Dvnؔ%]+&  o }"]^WTb* 3'ce6*EwCDg^ɡ&1aK_p(cIimJ۬3C84Z =:997 [ Sb6~K1Pee˲kt>'nncӦͻ&n}ʸNJEnU* &)62>TQ !y +;>Pg]T3J4@GM?@oe(a*w6 "d2?1`,{ܛܞ'߁pQ/evSVN8J,~}A[\umJqE )tE yUcPDsp\T7.C 6UU8c,%Hq7tTC92i4:g2KD'Uv(N qa#U[Bh?lvf;0iGra]  X $ ! - * 5 hu AiO!FS`#~ 6pOBfMQ L S * c w p 4 O  D -0oH&ml*NB#e5tj~c)|V{L] hVLvBOضx,Ggq'af߽(I-V6 > #Sonܡ2HTr.Cs4g>bQIc@ s3.OZ%ZU/ s10R._PKd[;هk]}s).;ő%g ,z[^\6{Kn :*M>meD^ \ A#SRVyT\h8kDͯr^?eGnbEM{K4iW2;Wjus|KҸAev?0E8SdZ-~ 4ChbOG+j9Jl G$xF gLXAŲVNNT'P Uop2lVXVa@A0b)w_+B' [àd+8EldF5tW ,#T3dlWYFE#4Qs].[I$*H;/N0,7j=3i9,.ISlvQPX^̂ n-=-imE!6=~;,yߴQt?%Vqߴqt/ ~6Ze TVoKT>;iQ,obR Ydhjv:qD! RWN "~o : V I{p   V  \EA?+ܘZ ,  h=g6K>- dk`)c ua+ .Ccרv)R^pulSW9kiVʽIWC;2"_o($(& ~ >_~$9v$%4PmIfVWG=46_{Cg^΃F[}_r]$* q/D\ok+Y.i~ g;(;g'|sV<;i;,mVK ,~7WajȽEI;O.lV\ E! /R2%GxZrfe+i_|tl U2].J9Q6G+3{\o5n'z$Y͏.dg.J ͚o7ݢ1n6WRB% s]XGԗ:ȍ/@ROBΌM7Ցhsм.DdE7_W?oۂ)TM=LKEPVI:G  3A.<*Xa_:(GfC7e1JXt,I\ R[[d[<ӌ1%%tsE#^bk.`x'wKR1S/H `\T.̬`nm'!k1F:[ 9тTXX rZrkj* @ump|^Y"ve=yqHn7v#mh. 9!,_#$=@9T2%?MÞ%pK\qR{V)k;x0At BSQ"XO[ ,}լQ.3/FY-τA`!'<`[M-g/a]_=+k#W .MbPOs~ay$_g4O cp%<ӄw$wEm:+5S&9A>~Ot&#,9f<*/C:YYNm]N2 I Zmd}ios1ܖF-[ cl!dZ6"`lN7`_}Gۃ@-tդ E 5#q sJAU=hD''p}nTu4dOtݵ`* ܂}d7:wZNV??J_#Q˝arHW["S2Q NI }C g^91"(UAmgweZC"!mk $JD"Lթ?Zbgğs'{|5.ouQJ$%C+)L < cM,,Sv=S N.OY{pfc7fZrY^+ n s9q~3R]BF 5Aҫ9fO_ l#!<1Z.1NumMNrvyf;{D1 y<-ׂSI[aW:e 0^gRZY|d+DX` ReG*cdD^7[U>Rs>jY|I+rf5,~0ۜ"8g.}(*! T~ũ|kaIH.'{%fWo6):"|i{|*JI#xo M0oNV/͂B|EA+fz/Gc}?i3j6̽/ Kyz|g& Wp aN~k j|\&=0AuqY#u aQm/ij]_HؤdMU*qwGB-m,e8 Sm\a{`B n85x^.;*`kS\ fo+5G Ri;x/RcHlVU# GsŁ@N]>WE48/td+tk%ֺy3˥?aIKPA&2x7{kOKIV4\*J|uGA6_FatG0pLJ?oUbY!AP fw#v#u-7!^HBEK)5ll )0^y =3-|܁Jj$!.4UX~KEreqsX=~=@y/ %Kk o"3/M ?8z_u,/vS:qk!%M@ m0o+?x,5lI^=9,'L#Nx|R0:pAmt MoSD Ca5`wA(pJ'),{NΡ:vӏ\OG K>W{/0tyЀ 2i.LIp=i|yw"_ P@4MAhX+vtoa$ٿx9-c/ wG X H:'(hllf ,[c'n"gQxN{ r=bk{WYW e9mzUO%,2`S W&)/d0<JgQ['$jr.;=_(Iu7b7.B \tM"#rY:DNm1=.r*bӆ$l=^-x|Lay G U[LuiA8РKuL2RP}3J |Bqr0~a.CtslЮ%~65QSǕ 5`tL]]e_(^ dʼn.Sycj.'ovd@&C}Ru"_,\ 9dR H7=fMfm[gJe03r:)i;v4h49fsFsju{T^vot@ɡqͰW.^Q~Hh+d[x:Jva/}lpVumDF4 v}+L] yS ?zA 'F/,q2Qh1'Sp-|%!>-29snlHcq%IwۢSZ|V-k̢]}#@<'~pneqW9|P_J oym1,qk. \A2 tc-A9IvVNZN?1@u/ZmX$Y mTdqUKN5`.Jt+w%ݪ6q2m |hWg"o_l EټHpasW&Z8,U|-*_r:"II0ZJ1z !88{`8.LTC|J-9=V4/eFJ|, _RtjItY9ƕy_EFGt,. _&FuJ, i3=G01>AW$ Y$ r:k+i ; @Al\S*IYCzmGEq79~# 9i%NyѠ"3\W&;#Rr .,YNTv9"+^LDgcz^,>G{L,Wmו :* viTz3$sfN;4v9M_HL xr!IA,1x5Oyc0< 0;cBLkP+Iݏ-J6 +tNzFvҁjP.BVOix ,\bturƇ'u$TH%DQ@3;|B"u`gHi wt2PmV 0To?`"K!t>39kO5Aqu& >QVm!zl_+CK'^T8?/+M\2S4w[}"Á9hӉP_AT4q{c 6P55n"?iq N&@}?lWF8gqӅ6hKuL,qɣ'nq ei5*lң nt &2M[Ca^hkXO; ,f s`}>u 9>`.zMIU4aNCfȐo8}WQhUt| `R3QɹHYj6 xx kϯ5GPnNMQH[oU, -Ҿ}&жqBh8\Ehfa‰&EJ}%)Zn\Zj+U :ytμWz??[/.Fg :7mr$FqZ >9c s&F}O\wh-;%?e[tVY-5/13]{+P#fvZrYMtb[in,1G T'KVs1*pha=uÂG9wG4|)4I.$6(^:!w)j_K$>d j>۝[W3B${ivV]>Jykv3/' o dttMsHGAw7[iAb^S./b  zG|9jwx+`F05V+N8WO/!uI)u@eosG#2M@oJkS*pWpv`0vle Xa]ze+4vm~2I(%HVgSH <:<& DdE8KG+>:SJkrQL_syޝ y1uW-t:n*~H_5jK b νI,vcFz:ZFcH$dWjH-KgW>G4+wr>nnΕiDԺ]j8zPQgG_WAc+vukb{:k21H_Ϲ[ׁ]hTk3Q3K@0u|4`&o_LVoE3V{.D-oq!el6߰nlĝ}c]9:e ^j6%@AKkf Q pW,Y"ڍ<#iO{j2&OmvQJzW@ejF+80fJvd ϲe)jdxMz |yc^Ul VmZQ@!NgcZųxJINL +P4~\_J iԯj/`T\TT;?6T 6nz$xZvM=6iE lJt"@iX$HI/7dLC<:|H@5'z'iFcU@'4$.Lao1dlY?KG#] ZթyDԿ*t M~*S?wtA^ftlm=g{C<I:SX"U;G[z+"# <m{rF(49 1tHڙNO`DWg q.+_"ɝB[+ wu tSdWw?#^"Gϼ;g:H}UV_SʂjM7X34UD2)DJ m4uk9dO5ePt %| {MFA~/ABpS[uͳS?EsQtx= W,?b'wb=[0'l%sސ<pv 9 ,X>hG ].$htFv.: ձ]\';k5yPt(9dE,+O1joS 9,+Ux4G &y~Ae͘]e sKxV-u=j@lhHڎİ0Y:]ˢ4#/I'kTҮrn%ΧӃBDReJUK6-r<^>H{S[L{%q@@Z'l+ !f'  Oy= ~)j9 IVWf2Hj$6rAvBdBZBn"/~BPQ OH,kHRĝT&oZeW8l:b|[fe:d pcE9#`5t=L@%hPurT\Y()+^6 t;('%5lO[EPakEq1g-d-vFߞDo5-Nl`'xlqlXSz8X\&[! (&7hyX 0NhtF\t% W8+R ((_"#j~Y i-I5X?[/cfÝ!GJY[kqdLqC(J^r YA׌ iJԬ[SLjD$a<Ӱ'4;V<\J,$xT~Qj6P׍y.R`vIXЁi22jwsR6Ce )&+y ;cBxH4[) |82OgZ7N,4S_qiA_ o3t4_ufD@n-B: 4ҁL7l2H`i1/ ЭH.1K;tL}K!ZoFHbI|!e+ 6J6Z6xL{c2'UP_lh03DW~$+ o/z5KO~MWs1a_P2ǵjSktbIO:i`|sHr-?Zg C.!Q%{0ӆ_-]*{ҨTT<+ GA\/~TD./:k _PPr;E"}qg |ƥ^%f&C.{$$aO;eBb@2 Q85ŋCf(s,Z05v:=^"(&mq`>gS\y,*#>Z?aAR-@\"Z !b0 [lMU7F dH6>_)S>S$1R^JycFJ;=:Nd_T$nO|JE_<'s=dB1ֻ\@4zt=PJm^{y8b1m-[#9,TK)x%'u*?+o;k]?e-M@oMs  /JyH)ĒmSm{Ndyo+]I|[)sTOhWK`9MI~X{ݐf6%e~$a%Z /!io(l|?*'bK̶(WFPd%AW3eG0,  `K|ZHP~mڥ2;spsr"/2S '_Vj;Kk$m70y_=+%!.&2aT1!4KDO B`|ԨLo ,IsZWu78|g5Ebr| np ڐĩ3z3TE}BK,4O$@44G1C, eG f D <|HC+[S٨dy9J*-ڶd<{;:<w1}zؚ$6<->~5Dě#88ćnş*8{{"_=|rM@K{~b~vg~Ti7j_NvSf^C|m\uIpj%j]ugVN]]]ctz= EinsEL7CY?IG)jž~HC7',Z9b9: Ix22\7(G'c aiޅ*n?UA}V:^Df|Ti'#m2-5 v5sc "|$S,ZX oE>t[_;($ 4W3uYWسRR&S]ahZl03v(LT1kkR? d)II*^RCDJFAM4Ha~KG4BO]b$3lm-hWlL* :c#rA!9%OOqW -?\bW~:x>4j%H/rV({ 'w?tHG+ c;5.<!PeBk9mvd4$vXW|k7BXb5fQeLo(Sb6MZb ` 1,x=FQ܉Q|w2% a~r(B   4l<U4],D9PQ$άbۍQo}6>Kz pQaLJNP\#]/5_d ^&nIGOEeZ\/9JԘ5W.cHHkFa &@ 1C;(oǶ_#`A3 &|CSCX e$ k~"Ar:/NC G+PtSBy2Ii:N#3< B &cBckK-t)F1=#3F)P7+L~VF@*6}UK#a>LNjG'0+@xD[ZqvO :~S*CSSH'ޏ YI ]ac Y;&+4+z7u# @Zm{: TcsOXc۵P.MgY]TT+SOue_L Vexa~&;y~P-'H*|q^7gTQi/nh]r)&O",O+hUFN˥B&.N\qh?!y>J=R>PBA[!'ge>e[(Gz)Qp<]FwUS=x5]lgkACjk =k{)m,|O$˛Z@CW9?64'3A 8; #M c&gH#Jz ^{ `_h<pVK2v% xeZBU{u`ASJB_B7~q)#e 4\[x߯@ٺr^2ϼ"KS/|5>9ke<6aO3W@3=C8 =OI,h ;*CFjk.G|PɾY3 &k4>Ev]xN78V97+YY2 zĨ/ xtMrk6aaY`YI_d=p]>Iw:_]b-܉sXn ?.5f6%}N<RzuDvzȇKj}<RBp%.{!i=wjcɟ0c7FccxC?c&aN fwp'hPx*%KpT+%[{:7M=$lq:4W]&-Ggjc/ǯ$l05h`3<`M~;U˗Ll L/fRQSvG(T+{w !da?2]sAn)pw a~05~E~~i;˛?RSHQѲ#- hvEmsaQYüau%!9?́ObII( !&8oeC>zaNb3ҏ77&E*Ly'O# 4f 7V4WmGy= ^%@!%.=zOW|dΨ';R, fcjDTpH>o]PHjLSml2{C%^Syp"pH  S};@  u>E [Wr&+"\'~ ̦O+ Ajdzn͗(K`T:(ǎl^t=O<7 g* rNyp=zݞZ_F,AKdh 9^3)-c@:;#(bOķ  pF0^S#RF! Ff>YɃ)8_"'leTvw]>Ag ,,&,[.<=E*H> " .ӣ2~yn@iVxe3l%{+ְ^fˢIs C Tu|WG.=<+#3ȸ53{eEk&YbBVo$*$eAd(c_A( (=Uwsu>8i!ywY~(Yt>D$#&TBq8)z5@<6]L:b ̹jlTpecpw2^:63(VaZ4l^YBi[EqCt+V4n3FupL};DoH:+%K7W}:  -URG?a=`@f>@Zlcagc)."isGorfs1kH40nuÿrtzߴKtVt=utZ$$5FwMq"v$)dnbhpeqTe6p Z[HH0~nr^iJxYB({FE05;>3$+Rw_Q]I?!PA<'[5i /us{HHhg07aë,S^Ȉ@G?X<O/ Zݚ]w l'QpԶx&$ gZ IP<>gO\3\yJ8FB,w l"M"7^zOՒ;?v%sì1g,;L!#'h[.M;[ZNBn@́ƭ!%lzBi=Z^^YÄ]CRn 'dռXGQ:HIzP][rKu.ѥc%3.yO:UEcWoOJnAyp_Q3P@fzG`g e#"OӰ 7JoY@7 e {ZEY(Aj d:tp+PA _ a@XShZC R~_-8ͪOhrXlAkګk{gm\MF!0"i07j;XJ`VaFH)YxI: Jƻ] @Ua,l#87~r=hjZ.h9|?@;$g2*j\V* &}2^No}-XQY{LgO1k;>!,<q_MW7"b{G PsTs4{ > )ZSa>"ϐXu^]J:1"2A;lMc'AzNy/MMj,a Ynxaiց:@Ќ>hs`SЕ*,m) /i]DžgmETs'< +(*6A=cP\omjTz4Om1S#;B( E #~ 'I) W(J DFcAKFx`.1ao'j?ql0B!h7sz9K+JfS&\xժ,o3ӫ[9*`2s`2opD,sKThETx<AI3zVAYHEEV* !|*I_J^B;QOzV:.~O+@siT:w !9ޱE%2'T|oW:X'9h'T7*5%_Kd/F yPXLJ+U&je iyE|4mFisHj4| DX~fFe0w-|Gٖ|LrC7,ۣʫ+ϭzĖr2AF~ _ ֩N ~2mzy{pHj]d&\˧kMǽ3' KsmRF.RWqZ!P{S=aX!pQ~!6SH>eQW5K*jt?&R&Cic8 1@`}MR 1,<0f:wU M4~A_JotP|/q3 N8Y|wZP uJmS,Ecx@όaUdV)V! "|a{˯9f7\gtfYy$@$lE@ەkNΟ^ scH{W(wg3ےFj.eڏ~֢\'2pqQ (LYT93ѯ ~dGE\&\S2l7"c|T?* V#9@4Uo6G $̡լ{%yѥ+"vO < 7EW1(Z|W!{&?)\--s\E&?Oc̸WXTk- BMa[Z* -R+nK'KSff_y`#+&xj}%5ZNgUy4qn$.|H1k a$U]}?-r> M[ ?x9|$ؖr"afӾuP \A4 [VZ5c{k{^@ (*a#Rl[7N rVu6ش(pruu_y 9t, X ofN Dxs+;%c`X ?z&}dEhIXA)L@5b2)Aid%[w'eVS"]d{ez>J^*3Dft6QFV8NIDEVUhuE}(ots s*uS5 16 !< L_c 1HF u+r KeiӧށيJe2LJ?m2[X)b-)2t`ZPCg)jucǴJ7͈ST|= {,K(z  =k.A2c778Z.l4=VTD.:ʎ&=)|K}H` vAֈm;(TY/m#YDuMa=u}]uhB]F2OCW{> ~ȿ^/J/`h8 gE%3/ `$#psd!XjlRrkhDBX Th9& Ew9_+L=4**G(fW׈lZn@ )EYzJcg^)̃51tv UcܴP{]=c]%wlMC7TڠxQq2K$?vZA3 )SWbqS@z8`VX_,'j^yٱb4.zac78/0${  "HWe$DU^;\=R>A(qkll*6gFi+^LpDt0S4ylԐ0scH?%ɭ]MD9tSU)jDfm>p_=@ʲdSZhtwL-7|F5/O ]JQ4r[ 9/Ma HzK jN"[9A<E$US[sO8E%tcWB2  @H . e{s҃[E4qy{Of(xcӯZuF0<u_=b~3Y=G:!WB1hd{4ٯ|psB?|/&8*t[{I#'"Z$&<˘v VC4b 0r݊F={]7K=',wT\ Nw LYjuΠ%BcAtW9|r "3=9xkwiezkRj/U2U$'>%/]JsWcT/F=YVwAG2VcCV?SCw]uWEZR+sG4ŶRZH&~)xgk2Oe7؛| n7NJ*XP C2J!lZUS I"S-&7Mm[uMc".iR*NX?t0njS;;Th gGRn=vL] eIcJAM: s. >pmE8{ϮF Eo(Q3W3M)?7M|# £QuvC*4^aA#Wn.1}j#cx>K^8Wp`5BM P*Px ge>_-I$X6o?59Sr*Et) k8IDq@ s/cgYR1b%5w py$g *2Q+TqU @~d"KSϓ&4ZU~KCYC (v^pziGH,[n\&" yAZsݽR:Wn6+o<=Sk'> gIF<$ Ck Um]do3GS_"lO, }T#\m @nWF^eSp(9iÉ !O4җh, e}6P m~CZK;2(s9 F<( >kc/U&4>5ݖ$]+oNK_ythl$uV&1w q#<";nZKP[K<)6Yix~6x?bŶ#:hƉf=)NcFs¬L\,cr<,.^=&1_;  1!lalT=9ȧ:n%TwP $7K%ctzm qN{#I)Qe"!;?!}cib <0oy?eW%P)tm]q#FOv-uZ[h+GHiϣK#!N"wەQ!ƇTaYZ?!rxNw3N!7{7"Yi y" ϡʞ{xPo3X pN-^^pFMM%Lٙ)<7|S9$ A%n4\N7Kb~ 'ǯPrmRSUi(Cǀq sd@n_iC-B='M3PU&,[6/s-_*5WͥU wMLux"[q=MԙT ȓ3-^GU~ѷ1^b3f$ӉdH:kI5+ a)CQH9'V֟&H5vJ$ C|nM}WL$@,i>zs wj|fgrjn?sllFl[n u!KvymL&~k J'EPer?X ظ0} }n?aH*@bV/w |C?1~ƣ"j~FB~,>~*֝?0j"9YkEo pNjg$tS'oa+P84=(yK`\/cd|Lm^pF5M!P!L(ag*a_Z4s|MvAU&,^OZ(06 -mL.+C`wTV>.D e%w%5}Ztq{hc1WWSw`@pM +s0q%vU,OjQ"84Tɴ˗:Ng)n'ڽnfQj `Bh'<ӨEسucl&I-H  / ;?x@Ud?LKW)iyf60lWgM)(#+>cyu% +xD-6&cIq4ݪ\l qy[W(@vom+yɣΒU=x!P6MwtDa^ӔjMC.˿h:Ǘ>MNm Sb\r[KsrR>QA]T~   (e4.9ylXV@ 12.x7itR6qWxE."P HV#<6 NRpE8j-/;V> ]&;zYd:>'+|JCx6Fv =i5 bHdky-Xrj9x"DMd`X;}S6 ̦x7F6wac%[REOvrb/PZ0Y<]Z\(i`w!<&^=]nxH   k_?:c;oqՆ f0ګh7Um+X4?},ȒU2-pH') .@EGPkYj|XK";3X$X{\Pw]x؉ yv̏rȽr&'ZUb\82YFC G &|K?H]s- MO?C_(iDc\RcQD|A'Z\uyrN:۩/pж8 wm\:(g(d<"cS]X_l ]tOl0n Jl:!f>HmmsfqP40 }O|6$Xf>koRGX7zIG*LN+2}J)1R`Arʃ;s[ I?EV’*M bY3YҀ GdnY@0QLy& >/M9U+$X=4X04YZ] `Id^TT=:?Q1MYV bA_etr6mrOܯ^lvV3' 0t 02S_A.5H Hot7Z@X~l vA zXTՐi|r&"uxNpJp:P&'IK3=TS;IfG4o`;!4R  MZO*maYF a#&{-+dvo$':S\Uuv#HPbj\~Du5и4i )-}"f@(u6N{7( Ei\,=rjs$3Z% C }?R;]<p`TSnDR\֫f2+O~_vfhmA|kpPt@3F%k.8yV`çbDYL`?H_{AZ}qCm<wMSuz}i)zjL.NGh3!*jW,kY)=>V U:KDq31 BuID3c!|{Yh3;N()Gqi *=oHŠ 1@t4%TzMr˒(9P9paI]AKb1g& %qLk0pi9$ٍ.dJ_{LH*82 u) A} 7N hf7nŔ@p=fc@7h/ F_i dP3{ /)Cebզx/v*VBH9I--14JGO&]ʟnzx93 XPofXTT  GiG\d gj tb6/`8^[F ('>Ia1iu*\N)  Mgz4RBsr6Gaԅi8\MN;LV%gaFYkK;D{j[e<yz(sT9S 1e7VJ>.:p~D;P"# Fj7ňPmMuP$8P>vUj?ukl@'_S_"6rh_/gTfH1TZe1NHFNùimbv,OCZUqfV;B0W``tZy.PVM&CtnDP[gxbznyh'^QKj<+Ec0u_oW2$zv.N J; sgQi9ɿppa_~ڍYy`j)P],}(R."i+Fkx"W" a:@Rtbe~ UV18F (ŷH hoT?ނ2v/^i5^,AUNIIbD5&*xYRyn7^pq!$}MNP-=z0DHC:Q#bb[#qM|>Vݒ ߜWkY"+VL:WjucREǿ"nGXok;o.nG5 u8rSPPVrnc)!xskhݦZ @n>o[tOm +ttEqkgOn[/TYq^(|3;ElJa2^bEzS}pX";NO{& } "RH:pMSY7iF4"&5g~>-q8z\"x# q<3x>s*+ZMLoE 2bs'EB(F%E4TdDqN L u:`Ki5T} k}dqMpJusl0Ҋys`ZBcZq~/WMx'8]j\T&>B*^#J<$x'p&)Bvw&R"֧Z"x ) ,6D ExNcN"A2+A4r \[1K D@+J"\^7N%u)/J*F;Ÿee9,RC ?2 MNXV`8"AK?QЫwnXC\=:3 @!/ TQ~݈y- [$b\;0s[,qaWkiD7<% zHPY0ˤ CJ%&١Tkz7tN&2g"kEpHED;`k:)SvMv!7wWiXtG{N%Q4ȱ_iN."Skg2Ry4%Vm3|M^d dǞd eolϋܔ` *92[G#+ .G SgDE:B[XR=@έ tq!)fm(B ;lUIeg  [YF0<b^G; oG%r^}2Du:y@#! ?+a<9`C_3ϑqB{r{s1w }vcyD" BNO@(7%$Cno-¢x~Z 4O֪V{AB#`!%9/^ZZl)g-_݃ I<C-- ~[-#V~8@6#nPY(kV$5S$,(K AߣqrtMT5*=2]!F;}srǽ ETSUImAHUR\I-U7V CK} g"?@(]dvÅ^Z-nsF_O/sʽؘм-cS#$Pw4|t=eT@P$[;gY6>((wL;lHWvG0W͞e" @;Zo '4J8sTb8hg]:T'JG*S{O<</v>mb~L@1:' xn  A}viw7F% 4ן+°" @m:|Z%g)_q0D7kTV% ".~%dne^"kd_%HxP[AZ5bvRRcM')DG[HUqIE[wOqS3awяcNFlddAp( !KZ o$%Fn'34"f$`QAY;umEnT,/!o!((.0Y9'!EAqRF$Gɹ> a( yoC4Iq t'w i%jJG ! C/g*7(C8Q%-O2; bmr@M7H#e.,U@}JC K{GD!!9i$-$7 Zx yuhhkSwzMyOs TtQDk.-My 1PYS̷I' {j-\)!(HͣzzTR,4/;.6Zz_q @2k?2TMCd KME' 8Û.d~Ht$JC-Ic7;hDŽ]JxfdoZ,?[1qDczv;-2xXL=ׂ{ޛkLKwcC I_xh͍ßߟ1!ׁ.qQ|T@i+d@-9Nrq|({RX*BK Rakx"^;_ * -j]ڧ m}PVeV:3-2dEp_+L7yb4 '"]/'á/62P+sۿ  pT`3+ihb%fz "})1Fbha12njzBj?OnJB*G@sImT&Z p:-fMʖwnCUmvuP{ mvX!TXH@Tv|Jr_'sdYp:߶ *)jd3:/> kA>Ar> 8ti1[-S3[IokrɉG& I85s{I{QuZ !?#SL^W V"$3¥]Ag V^21 tdxklTDb6p@+}^y{@<` <Z'\1OchY"5_5WK4( @GV.{W*OK^3Q~i6YxPF%t[SV jC>IEC-Rɿg=XO$)C1+I>gaTu# 05Hj3fRr^Qo7eN_8ߙh"AE-p#Lii^(ߗS"LpŷC{ta_=@c` Ҥ03ubF l~qb kycJX]pM5 S P:U=r}G1ܭg\m#Rwa0F Pe| <uY/"d?jd#%]22!)X ҩ9I#& #A 8V 0MIQ|˄{T,z̕Q|Anh-h;xCJIermb[C(ϳ (eyt'[J=j 0%Vq8~ةubI$.'"G&Kso) vCX\GqVzq<sT=8 h(~3&)uX'8E0lr_A%4+H5Jp!MhViPq=}"-3NiCIj"Z^TYϝ=h|ȞVk&S1jm>F6p^چ ]߳!5"} k*J&muta*a8 I['9ޏeUPSvn + E 6OPsTI>@][D~BF#t0X'[HLR+nV[Stk}kUL#wCVZ"8w45{PfY?jtdP bf? oQWq.Lr JȘupƶՀzcs@C1|n_gejsC8,m՗<`5scwWcms3x:U (U-975rLWdMTAR!'Y.4?>tڎ3.!7^b`g֛,FwDZ8S !~D'B}v 2/]sMj_/XzTß|3 4 \\ O7re ܟLTbwoP@wQpMk ҟo3B܂^&}}7ց-qM*v=,6Mchn yk X4wws/l;i%H5^1VzN ŔJUgK5^veKE.c"&? 7m/7EQ!b!a?gKMHJ6 gl:Paм#UN4G\ tn|~!}mU9 r*Z uO uV=pY>p{&z9z p^&$KDq6:"Ipbe_,P](U#.SQ ]!YP&U<JN~"SP?$ud1&Y=/<a4 *B%@b,rB£j~,Yjc#h: ç7Ydf CˮZu(Dh.D:!p3fe;c;o6NO0d$,g1}1D9g'G%MS sW`|:k>p60¶_9Q7%fh{#V8Vv@#_b1 |iY)NjfG: Nj:)U;y~O V'ewjv_Mf?}2$~([1֎rxTC<O/Ӵ5Q/q`e ɟCo0#|uFd=[#`!m2x|BNKm[ n,DuՏgxz{+yڢ"=ҫh"Md5YN\_?^ <fw3.lzwQR/v V+ةSQ2C6vpW|w;}srqy[/U/P+7{q^ `  f"Zt*VMh~49{eSݹ|=G26¸֫az VۣNkdF98vG;p2zSB<xcŽeһՎ/QnoL1˰_ߤy:"F{t@R~db6 q!2L1G)a/AvG-"+Ӡ@gpw(d?/{TQf=ni]Y@q't(hHv_&#BSkoo2A&T @q*TM+aj&!@ [P(g&ep}3: HGG $w+`K? _&`MMR(*sB bV0@5eyhv288 cu[*TgAU:QV!-Fi1{+JSsبE[H .q(9?/LGRhVTWd`o[ zE._mE)h9t Zh H.8]2~)v8MM,X}N[XThN%v_=u(Mc7@e^+}`su^\@ak/+4FGe a}J=õ]e&X ;8 U+؜9M~jWY -SAV>+npr!eJi(Γ8n`~(i5b ?ZJD/IAK}w ޕ xW_a3qdPg8 Mg. $`-T{AxNZt8sX_/IDzθ-g~7G* FGXYRg+?܃_ 2xa3N 3Dp+.}͆;!%7ɿ[6&ui7uunV^u/d*P=hpniYSLO.t SMC&oOb.G([RJ?mkQhZTY4OB(3^?"D 6>iߤ +/0t:8.wY>A<r%$W= Fx ?&l@CBfGfiPX]&_+{^R]qqp_fcQlXxwY/rT/:E\'Ht rn-Cϊdo;EKt0T`EyR#uBj)w3 Dfm#n_yBj Cr=hrd57:t3 9\W&lzciCoh)1_1G /b _V>bG" GjT_v~۟DgU& <-U9}q1ő#T@eQ |* a+bLp+ ȫ@˺T=ĭaeUhY-?M9_zƣ{KTV\-f;UIXx/i)x} Y~lorVa]+RGBCC XC2:@qc<:>n4(+39)Pfxtqo{H<o/,Aeh u[F}zM>,Q[+|Bs'NO,T +qYP&^c,fYd`afun~3 u+W\I*~/дyA~dAA,\$)u +=ZKU:(511&5*-: Y*"@RX["Y:fpn_ n2B(jz5<|R<X&yu37Dg`8x\1-o{A) IKiqIhH~ycv*3z8b!-'/"`^rXI7.Ʊ_#"#'U,B, E&T#xwNXג1O[  use=_XQ;J}G~7)A`=;;!>LBHw5PͿBVVwL-5]^Sf+~ V@,x|6btaQI& O>wEynM~9}4yUBeޟB YPXÆ7+^:kQppE~Xw:|?&g~D\~Aܾ!rb6 vvB>w =Y/q^p%,,$\DCOnd]`m|8qjqt\K%f9<^k1PuP,%L-40\CXa*um7Xs.TB}}?9 @xe.:LXk~t+h _Θ}:{`PITe@ztF[F}R>9cXuև*(ap^1N~3)23Y821@/H/L:LJH+KBw <o 84.2"Q1ET09qdU O "?)=fA#\޸OBCc8[(ǃPgCU:PSmbuIYIv+Hy,Dw9u,phq`J]+)i 1Ŵ`Ц'InZJגiy:өRpb(^I EOP--ntN4Xz̽Fd#Ug=O&C!64RVF4N* Z{g>[~%U#P B _~y#B}m04@+h)BQ)Q_H,TN-1LtO<vf`dTdBZHu . \ExrkSP$fke*Y`]~CDW W\(( ++"J\_>S{9yW[<·&P2JcYA]b!<{xM6k :TT>I\ŕv" ܤeV},i'Z+7tDWouG~o3{M(J1W SƼ)C/ s$0aHC= jRsj'Z$=PSC kۗng',/qFVw:t9r8c+=]R'*֌(imDFxJ9uUDEc(CF|R!qsvP#&z+{,x.4u74Ifa+5R |Wʺ#.-Scc'0kl=,:Pm/)t2oCls@rژZmW Z /vS%u*Б+y*z,bT4?1KklPP,K4:;*E?4?j)4"}ߊlՊPhmnv/[I$d?yyKD0cXJ_!]oWxË.}@LAh{p q^ E_+/-˰VOsuQ,P?mF#o>5O^TygNF/C$: >m T$8~F]V:tt ߠucG05^[u0B~h_S(P*$T=f#-E >YQ>x&~٩faj5^ D4r{r6d2}o 1koʧAHѺK/6R9?1h! %ZU %Fʜ&'|nTxl*o:?KEzwtЈ~{VGA,WN:ʼ-,znz?*tdBgL#AVUr^yiFmq(_x zWnCt9l5)o30U+:">ueg\K|UoojZtm̙wdW_jn 5`S /I@N?e#$c-*!^4E:? CMFY|F5EFfLzyZ?oj{\roDXyR RgUnԕ;[]9\0"ncފ-l6T$d&]TEM$,sQ5_<JbDIt`^Axw'z uzprU<&6`NSC Q!~#3tSZH-(u ?*!dkx;\McP/Y(y m<z&L^) qp [z}@tZ\.ձ&1R4RclsƑ̪o&:}X #j&ofhVa:Q0nإ10yU۸l*t#s$LLC+ nP '+!#5:'AgGjRg]pThK t9/VސW;6ml$>zfhaPD٣ JkJy]+yhw_Ļi\4Z{ EUF *LH}yjH$zK^(MNEqA2?<\<(>?!BLAc4JCI@JļEON[/@;H-ЎK#L$4$5@fVـլ8ͳv,r+Sc8A@@;Nf|:ܯ#͵=Q[txu^eRdce5-X|EC^4.r@dy> j5`)cV+xҮ{LόPۏBu`ޣZ8'1X4c0H!{=7CfG{RVD cl-q!3*Uqk|(.^#N'U}aT ˝6~OOo–Pr3eWr-L]{S1_lstє3+ ed\U+ %yP0]v8(4^` UmdsGi. A<<&4u |L*}+ba"@)YmɟTW”gyIvy"Aff6Y hp \ fP3:2F1qiÙܧZ՞{ʃ\Ls-/M(+>+ ܳ9w qjL,U!3am BF_e ġ."WQ<zr2RFKBl+ RxC8fG:K / Q,{ 8WO;"'6K'~ t8Qs3{ts}d+KTRD >*UfB׼#(B=U%jk{NtTӴ"t:fMUfK VK0 6U+׵0 ^SuWT$,|Ii]ؒ~swc{u;)ut -~w9gVJwVw#|q}gscVI/1%5~ߏ9BWY+s< E?k!pA tj9Ñ$f/ (B~]JVd,m5Eu j[.B{( *BǷR+U|z"GZ'H<%c!d* EA+YAOsY`sSAK7D>j6)uO'tR!'yϫpUid%bIbvdTmgi(u ndp1p޼jD` Q^A/q.m G)-POu%Dtn4`QkjMN@HBw{ U[<4fU =7R.\]r>Dg)p6C{woa\\m)\r^$ZqU1S˜SV^QTV G/)yG1w@8ior d?Ҿr,uD>8"(ufFV9'-1,1$_ &;·Nܩl(LkW .؎OdtjPp^PRC91}i .g6c ::΃V۔c"'=PA,4$-D~" `>&`p^ƭ3_pLM;mny@6qTڹ)ZXxYFEmYj  1eLFYY7[¡8X}bX< d? B^V U>;-=6&)K OW`ņ+kcr:vG30Zv;}_Im%PetIyZ UU *~hXº%cF{'7ef3B BG;E%QHS oqة`R0ia*KjCĎK$zZ5qRL(,i'SE]X1o&n.-aiH3И'~`8"CZB&_ RA)޶K"E48k'HP[V3XIf(8}3eH~I&k+wW&Pn Rkj,O;]8HVRnW~WPSL@z/Lc@̰^6&@TԪ[z|\d4 H4)'7_ضCMnIM/.ګGnq6[ r])o5b@IjVN/OH8F!VnxW :m)S^y~7?C=%zj=Pw/ċy|h<ѡ^nfH,1=9n5vD_hvàzo1;s[:j`aB' Fˋ.Hjah).x$uCRKD)V K?sTqX]P?.+z XR0&}T MCPQ7gX`~=rD{}VaӒ~T`D7NVZ%&LHZx^'/$> 7B HLM IA7-|%j %^ }{'  oACekD7܆l5{'|A'b\ uN!kܼ(͞;2Ir˃ޚfS e?_0US}W|g}8\buV-or ԃT}!pUb d $QsQ#`>3.ECwk+b@ c_-bx]<gh #ŖA ;;Ey!"_M^TƬ/ەok6ae "֖O`+ ,?:su9K3y_K ]_01]R/E#4b@DÔ 6JF\:qo~Bv@GӲjQQ,{x U9CiUVdS[dL;EX6Dr-Xk[9W# ')U1/k} DZa=wm}l_LiQCwwCIQŸ7yEoop9WxB~. {@h5F~3X+}b $!B~k8XR]"o:*z#Fd4 f8k1A#^6UVBu˘GcqFLH.X nesV1yUNUD4d:.>wo`3L1Ҧڥ[!7mU2o+" \<  got#:rdZBH,_r)|SWv/ȁgP<i,{g VLQZf/1vjQo5ʜjwNR-k>ZV3e158եl cQuU%.gTF$>|Yh8_`ElR~9p0Zx$ b;H=bjp$o!`bI{.g@%/1*w/x7{0BMKA5PBN'[3  !%.Lx_v t}C:=B Qo[(h|]N 3+F^SH[8[PI7k` ta5f+DBj %||Qt<?.[6ID^"cIxX N7w J6BF!#=FW unH.*w;Y[)F05m2Xf3c^ zk6T]1=+Ѯi>4wXREGvžbBj̞5shPӏDzm|K_Eig VHunw|e]?*D^Ol:{3D> pC<BS</%\K%eU9vJo lįG1i*[F#lE U;(jlk[ikUWn\N\oMR~W[Z~WkSPcQ+zQ=LSSiP5.IhAb;%Z=FU3kfr_csOz͖{Izx`wZtvmkVYl<=S"6/ A73`, B2"+Q)#AHJk |^ZrP H7// A3e.L2;fa?;k"2ȵ#JnowW@ɍm~Pcz=|o7kAlZqw{}A/|Hjwm^~KC+6Y"ԗ{ f<s^g7g:+ހA5aXo'!ehŧw5,nGt*fsf]nW-<X8A 13I&U@Ê UBG.:k41.Uh[C? YaCP%|,sBצTN*Y4KaH }MXJo';es_Z HHw7,UeEf6T\}$w^D*nnL)VtH)rN>$v nm%^c/Aoj Vvya#dn>G SlA` %Cӡ##_=obJM!kez;¤zLE$b2 h5&iUG m(Y6%3%- cQ8ʟzĞXS-{hvya|یAZ4 ]ȉlvXh D(39$>uy8A,"07`V]&| w/1BXWoї9=yWo6gJp'-f d?$.j.)@ax8`K>=}9nh(I 7lJ$si m 9>TnnQ=ܨdZm>rf86*hB:l0&<d"P^ad|t~Єoisq:daUJEDժ#D A9OS->iO+o:U@~Nj0Q(w'>:*0j3kG|WO^&s  7ToEO 4 ;!(O:x`[Rt :WVV8TwUn]Y%p<{jp|qw}-eb[ȇMy-z>mӱf8/B 'O] rO؋>Axmr90 90+k1:=O60$o9 iyl'q*; ?OidMzP]ld#;h<4[2LzJLS/vc$2u1?^msWM$C1]w)$)e`` l,&5J_u8  !3 !`S#&=q D+RiA?.|ARK 7OM5GIj: W&Y 7P@=_k%|`R=IUã#>_aȅJ]|~_dH_T/|:X9xwSnHvk;%n9+u.ˀ;1؍4U8d:6(L\ 8̐FR%S ; Q99db? v @ކpi]P6Wi1ظ5%8g 2H=K7 rJ7l:/hmeU d1>6)sn  zhۺ+2w--~}PtyVy26VAYHRg\ʌV9]/ r-f-C !0T3e2W" Ēat&t& AhgTG]2c(vC3QJEdw ~pPv1t^MU8%<vnc8L l!6`e,$#rJ[Q [}j(WxmCJ\B%:{ Ean" A~*<$$Bb}:T#hyvЋg-E\UTzYg ˥5M\74U07I@ OjMńiRiN6$9- ,60H:[f.HkYu"z:>zd xu+t^zui| 6݇Kg_PWHATPj&gNd-8)dujN;OHP/;:Pm&ey9HV9>5jLϹas8&Yl_ђ#O,0f>)c7s m&~ulA-Ykw2{xYy8qmg\5QiG?m;Ip.9 V*)q^36Xqe|d9v mkIqhz; :ً߄U Ŋ|tYM`(GTrcx{'0DpW$^=XHs4(i firz[] a;'q|;nv]P[laYh:^ PBe;R"{[ZKHwQ*ccGgSesMkc}7?P `TLB$@CF&IFV ; #1׳BlHW6+x/;? "J#(I IC|2!Vie\l@S9,,]OU*z/Ms$~ ] ,ctQa\s_e> .^n @auUQOKtn`)qWQb"u?G6:d^9 Dx~Ism) #- 9lWavsEhݝX3Ug~/z9+=V5[c/B"jPPː }8^zHH.ݭl)nod^Z`A`-bb m^+?AT^Eh6`+J'++6&FYpzi4lLq7|}xӳԶTm?-Fk1Rn1dn3D8\>(iX1YbE]VSLf04s}<z|rr#hwg'kytmeOEZ )uD\CpsȉͧrK\ "e6<c-n2.CM4S= )ll yMQV3;/42]PI)rm-:5T9\ )G#"j~1LFIq^f9y|!$]I lAXg<^13/JVwȓPPX1g.u63(:4I7/Ht6\^~6[hTw|0s:qko{jb;V1 FI2c<rOEx{!2NQ *t  +? Ik~,KKqMW>jyo)yJGVh -. x8e@4s roAQi^!#>Iq&=;uT13XcEk sLlβfn~D}.Ee}^H}DOOcF0zW1w=Xcj~<{) <1$l0-3y"-! q lD^U[#fR Q7dM(4Cl9Uf3j=[Z-CUxΊk9P?Xa4kLnkf``4X~L:+#!!uIʯ9u>FJ<V)@YY]mNcyUy}pff8?cnI{٪zCaYft [p8Pҿ2{ 9!@: hJ[8y?oW| X |[^-8FD44a5]$J aV9޵o=xsVV<% !j*W!*y~aNPCBJL W^wKOʹ5"WL v3QIu-_vk;SBx> ʶ> c}_<MZt5zy >_`v{=h,Ȯ/90zuubyy*[ĎUa4x19fIh)vicWQ^SY,cmRvxjlO ϪOxX&\;Z /jq3tF3Tf'UdvA*!T=nky:di]eKcT):(KlyS#hJ,wL,Uj`^j;mOfTQ F."j٬htc,!dlKHiBOc <~ I5X['~bndl=mWVt2K|n!&sY%DQZX;jŁo?i^LljgoP*4LC/qa@:`kpebK4odo۴x1oTZb5]?#K0I0vT-V>/yd_/TEF2T%&TC ,%:{ ZCVٯ9 L:f'e`-NZ&2C_Kr_o|Å%} :oTaGwVQsSZg6y?<=1 (Y 4/UvD~D"b|&T#gXXχRLg*5 =jKJ UYn\:`Sk}!a%f5BrKdsOV5LC]2m?Gz Y,$8!"i/NE#^$sSVx+w]Nnm7N'{O)r+@X L I*BSe7mvpwTs$=A^3^C1վ^ҾEoԟ_4H:j+R< O=-Mc'T +48ULc.y4|وql"lvlhXjj0a:O/T\*LdZ\+?V|[6dcq,K%<G;qLGk\bbyRr Pn@<c}57/*xO{ (hE5bruOn]B0 bNjƨ E]34Ei rh (^.;}E/CK7L'2K $bK.Pd ]/Oui_"669GOQt QG2rB 1kπS7wImy,]|juYEtAQs`lp]oE`]@&;J;%!f1o7@ )3%6<KN7Qy#/F+`ôIحSr[cKLA(D;J-8_(6~3.T%.jkqm#mD1:0+ox$dXI[gX|0\YeڅZs}Bo|\zGEc/DPnV}AG/e u:  Qci 2˷ԝWvrt@R_.= $( ,\>&): $z K"4Kme*d& PVFb"n78X q3?t)95nT@oA6+q>SO5A=3x >`&_uH=9qF1;܊id>%1j5 U/r @lid-[ <#*JC^)v=D): < ۏ{o#~, tY^KN^|F|"<W`VOiC_7S0;K~f%$~ 6GgZb`-s1A<.$ @)r_"oz,g/(ˢ6(/av+|jyqYlELq?@~ER#aFl;wpk:Q^-cG2)2(S#nsaaBfzIaD˷B '4wK,Ui+4Iֹ"K,|P6tҏ —(=aRg8`! o<)`T^Ò ,GͬP o&W6P?<(7_)) Ka 5\\X:lG%?himiYH!XXWe.4 4bݼLłx|0z)g͒'<} :X&p)0g:pTV29 V1L"L'e-x3b8~:m06NQ<(*^`B.Z<,5Oh| %>B Co<ߧBw$\hU@}6j+cDM)6i@;<~Q{@ pHISY)jYN97:PWSe`-#W|coLtJB!)Vz=5Pl$7m4:@QfǝސBf+R-#Q`Qzz _s?.\oeH {c,Il]Mf~@ey#^IfV8SW]eX{^2]Ki^f$7N21K6ELP1y;!.GN׻aRTlc+6<v D 28GXއͽ V2 j7vm&X=~#,5\pv@wzQ:!&_j7º..pu?Yb_4qC\3: o FS|v }L!=[H?H%}xCۢ4~y eJ5kZZcZAcEo`qz;|.nDUU/d&38 "{o2{% 2#6&@ZGAO9*0ܣM5zbr0u ix*OY%qvˊ#yՍ4{fOo:B`)7F/$ 6k Q mX'#e/3vbɭQEi->L<5?~(G&S1aCnX=vgitzpdkmG[[#`C' X2KEXKknL%{)yVr%%,HiV|=i_L4Pw}P%r^wv͑o%QoZ_#?(&iwĐj<(agT_Cg{1 |Ut{E\Z*mj-Q>xq..kmwMl?!P?R1WEQTG=9=KWa?|~`<N !Q-Y*>ӄP/lq$Y<,A\өux C7t5V#/.)~#b[(D+,&xa3-**`T[|w> IŨ5lUQEL%(pT. ; *2(b WssfL*Y $DX%D9j /^&. §K4lJfd=wEI#B( ep'AY?EEkw|sqqe{KR>$9[}l$nv{w'pX`!iOey  2\m (îvz5o{)ߗS~] *'Zt8y>׽`:, _Oh!]f9_N"_)yGD+[42a5Xx.A8$eB,Lx~v!ek\,UKvgS 8}{~eZtLC?77*:%)K2-gDcZǣ%n>|TkEtFuyPcKv0^JJJ<5)08@HKCR,gMSieĐ,|}Cloa71_(gsczpiw?%ǕјJl>Vj  ,2PJ@uclwhȂLw5"cI o?/Igm$E~m>%HUr/lv\A&R ǽ}g-8Nkг)(|s [6l%~f>_i|C'`1D*#++B14h/ZCmX;ͯʿir Sp}Scq'</8k[> d 2 %J[ =C } PytorCϓMp:z`v Z&OpTe9|ԗ;795HWe V5'^{)"[B3#-:z+zl+3G*,*&1. $GA9^U _RJlZݺuQRg_u2n$ˇ{zQog%5`BlZU{Rل R+T7V+fVN]<7!Il'ӳlyYcFLQEBOG7PG13ay.lv- ;+@$-=$_rv2h`N_ )ep%]~x)׊$`wQQ{1#fMa2b7pZV\4L"Bvu_d{tR}TCO{9o9~]DcHZ2xs W= -5-/07z5n#GC8Rf(qVCPURUVtRGv8F'0DYPRJ8L@5J/a:2<,qLp^qփrƼ*Ȉc4:}W]e%z= &ݱǺS<%-_Eݨ^pxy~!hH)_`sor wf t@xxR|"y45+6c': = nމ]a75{ B?d  @]+.e**!hq - &L} m$-Kon/u-Ծ.L^xa,S 5#= 9 ޟipi:B68#pW"(As)jy9la%W o 40 WGsPMDL9$4kq9rMo$FDwXљ!]dP3!]Ap#<Kb :'s+yCY$mΞJB9qNL'%3 uYϮʉcvEqu7%>Yl(tlCD0--;~;0&RC<ԣ&oj^e|C>{6+,`8>iBVyPdCW@Vcz~cV|6t`z06<ѧ<cJfwewDYdeUOX9ga4!Djgnn&i|)YE@=ec=OGa-2zGkL 7D)-z+A/D6;t =Ve:K<$4)A,"%' v5!Jn)b8zyOÐl OMkfr,N'Ko}JraEwjq/poNquqLm2dHU@{(F O">`Ɇ=b?fImorm4,]~M]Z8;.a&Kh>(yM9y)b{N>@s*dDMW9--EkGNpxB$"0؇9P$# z) A9la`OۅYj}7Fr:(QZ],9 p z #lRJjT|*pOu`vhpf4e7EW:H7A#' 3i!I|L/tKq!-8Γ9#o.Oqq_ݤMYe,9z͕hh!~}  ,:O3YJCXmaIWt/- l#yOks\b|O}RGEKX@PkPInd[IU1%t {2\uWn<|lkpܱ'x&3cjBy>S4)RrȰ XƓBT|[2fS)NF&0q(} / =Rloo܊X,ICDP9i1M4{, P3q*&bBmGPg ~bЍ^}it/B_smz$r{Hxx~ a 3 /43c O,<$XrF9$B,75R?oaGcMZO+I[M0D4Q!ZdAh%Jg3rR%J!Q'fz5eH ]s t#a-AT\xZP:AR 6m1A84+LYElNѻ"q w:`C3#;2$0¸YsZQ;e87~DEDd#rdڢ1!>Zt<Vz/\irPG67!R2F}|&C k`!In5bdZN= Ԗf]9o5em@Cp8FCr^ !ɡO9o~>p'Wo9Cgu*5"wXk/7Ud!4);@Z; .R~ ;~a\t<'$ t3)`;4M[Yr_6baSb!`h\&e?SBJfBy1(*= t)b/K¶g2~)ʼn}y }piBRN+;5*&<~G GN</&DYT~i[gUrX~b=sy tJvs~ |U}lJ3k):k<t A e' 3+ 9gaIK~[D6նǪH`q'wӊaJxKfd95P>-\ D͢%p1:>bkV\u^ɒVh~v³N0 |pC\>{8l`7 mGwf5wUf8FY9PZ3I3B<9PM-fS % ?0M%vj?[^؁5^ǎ s@zrpeLZLPzIܹ GE AUI5vp^iD*Lߔ_#.PƎo'm1D |wr2mvԎDջ@ q>S>\W;G/Fue`V՝;"i5?ZN3lr|_J P96(0EX57dLJboD@,s!Cf(B{#<\RA-XGQL@h.#ts^(:M\ub \IE("hC_-}~7eoEmwS*NWZ(6#"`Jx[v-`|BB7#q>fmWY\(Pb>%vuq#|:Qe9m {D:E{Ϩ{;KH+=?vuh6݋ NCdli܊<x ukifdiln~?m|"8Z8< , [m zQM( Qzg A{-*WLS3>m9LMO U]gb_WOIv0HKIQYYCc*pЏ?PfS7? 8{?bs/EZHS@uAxGLY``}AU C#jHZf[HԴQxDaXˌ\7NJ `C1i&+-1ՉoIQ$3aڿ)[ yi"}FDqk3ieNeiPqy.ƚ~ysiFRN7̧ۛcԘ0ߖgCl֣(1>3A.k&A #:HMYT^]$Y*S=1Lk5 E04;L+14'Nde52؏ Ї Pt.gg<u@ i. e@y"%w\'7&!,&'#3e  | 'K!n3'p-e3x6Qs4g+cfq?=!33=;fRTՑ`aZ O+DIM=`9o^9yt-;np=f0AX4DJEv>qDG2<$+Aҿ{dr\xU_wLj)#[&THzו`?zʁ,l=ne`'i^AvkiHQ 0KBR)rA3p lzo2\vGf=SAjemU$ŏ;9o@.I= "G4'@%^Av%oi0Vtd9wD.&O2.zdLgO^= oz|7C9iV_6fg[B neE֥'*<| i]'b(tF^ h d#q8]/q ?UPI9lLs JH >i3/E*a e&!"(|A/id|9BI(OTY >`5f|h]qe+i[dKd8:i,'ssu" ?4M mMv]GTI6zj)z/ /v\ :1$|O!O` 9SeߺkЛqz,O= qOAX`4^jCܝG@e^# ,~-F(z*oA372VsΣ;DEըtBEh6ĨSgh_u|~%|ltfMPf3u&H6EiEPI# ,_x-Ox{wui `;t[djZ\lbfGldz<3*C * &,9ABS2E`Avg9Xe/ ZU%Gy0-!HE&B`n{a*$PAinZXJ"ew(G^_}ktj$dh\OD8 )! J COzU/'a D1*c8olܖUW% zn7Vln/V_zk=b$i4ye="78BTwrT;!`*$mQ+8O$9ezwdmp-UuG:pg,D+;yU|_FRd\nMk7ê 0~]KJܶZi{>Z@Zaº"V,=R<iBDe/"{.T @9a)Sx^2 ۣ]# /ʢ4b31sD1 c>5-W?RRVBncwC>Ƹ$!,a)Z׾\4mPdQqH=/3$3 ; HWd#l1lA gS7]leQtEI}:g{X0`l%=P)*,/\}>mofciWfIVn*?z7W'r}ǨeiAT6z}vy-ҟu%x42c˵$rWa_j/yKJ+Xr.̸3`)ДF050)KԄH|s txgZDLn?:A4B)c[Gq udFLlExS(15cۗnºȵL6E(NQN||E 7(Vusű^Jj)/k19pO!6)*B@;m][K eP3D=Yc>)v%6}}))ymw `\pKS>Ch:4@Oy)f>Q)^eGd`5\[w`GakH|rob:[_ q9if:y[X_^).Α#jׇ@oK[9Hu4\eGح~npnXW iFq-;21s,1&8l!|7hkqDD~6MizˆMo[a^ eu4+i 8%g6bgyN/!Qۣ{HS1{. 0|x 5&(.O<90C997,! QByzIZXjD5e;j AzeUiv`՟'n_I}ɒ#h>: z>KU:*d>GbGi?1D"45 U#joHy St#0~-F0)NWsTlv[Gu/g]HHR8H,%_#9;Av{D*OY}\O?a% rJTҢh qV~MgN7OW8wd&p9w`seFN3(# !+m 3=+K`otif9kv >/Z 'z;Hni7awR^C6/=0+8EFxS$V]`y`\RF9f8/fM'(7$&&.?)ZB{?i=pA9fa 9֗Aا p,Đ!EJoGlrae78CC;yX0N$# @ie"l1Fd]%qt-116Y{̓esW7ܤv.pOUM; b& U I   .X4.98n< > aq;bTLBALR] [iWrr6Jwxx/z|y߇2d\\dΟ|102h:^#H(!3V/D&rn^;eOgI'tN)s])r7b5ʜݟPB;Ng^GQ3+k ȑ?^ .4 [HA.?b2Z"f?L&!o /g?##"=M/4yl65601MO' `7(m+]cWYkaH^n=@p^MM,A.s+t XX B+ 8_<N0mI5l_q́N._]ޞN3ҾϞhu O$="*ut,)wo"xmSnF*>1Ѭ'PذZo mk(`%bR%7~e*k`{7?vlPoPy52 LX]'g+%1V|7ZtT#  1#+~8*Jb[>|@y  4 kcFd<<_ڿ~q[:LjWKuٻE|ZW̷znu|Q]_GXF5&2)o$&,l:$*K+Zn0b`.`"#S ~;Wq+p{bq0},sm.iwq}L(='E@k00˻tۺ]wqPn k@odRV BX.*no:.pehDdyL %va8 WO=33,7peTN\Q{X_qW`JXMNEM)N T_Jqm<Ͳ)MivfrM 2rN#jc,F0F&-  Up?uZ71@T)|X9p@=)12!w/0<xA? 9$T2-, /78DXvUwGf̐tܣNEV|gxMdAIT)( bX!:C4f$I_{9n}>MlXa[7W=g1.:D4uxG_)%K1D=81(:'t6i.i #c~ GHW['H1"N,1 kCț2l .&<% B2r5 %&%#&>221G;_e] Dj8S} &0%52O d"vOf-ajRY zGguTtG[-GA%" t،~VsDp?Yau;|fzJrEiF:`YrCT|5SWvb:sS9@×, 0KKY%[J\U,~WkO80HeDI|F eN|Z>]]rFoߍz8`cۀUL.guL`EOI@]!/DwssUuCQ(wCs&g0i _}f[%iqYfnRsDvq,0x x!xyow}Fh Li-֓C:1iGwgӦV.2Fؾ7-o*ƣ{/><&(Qj/}sAm }cQfH[u'z!Ѥ${SV25| ..I[K&_X>iXMgp$\Jh7Pf'BwPbI,.>#TmOaEhL!fOlґ2mIz7+3{$<,A2iYc.r?cgC%k܊*ɭz(@:BW]P>}$wݠrqq`m>dt LWE0kAg˰ F\"K*S\|_!1=Q3[ZM`5KzƵdHTB-vHX{u~X=>$+T"$h3CNr:-z%c1.kY}rjk6 |[+,ycYUq%LM0sIV5JG2DM(@:T30j+#eWAA%<(/S:PSo"sCZXAx 7\N@c(u9 *SŒňMz- hVmEA68j+χ%e#'HQ041B,J\3T|BE$_wzaç0{dwّ^C ~&xh 1wvYzZ*n" qO[ d=MP &eX!M9lv-p>*w02vC37[q@&.tܟX|"2-Wk4<Dvw/o`n+fqB3uVvb,pbu`XFCI"( _o|_wh~ht4M+ E}śtI,dSf˥h?.1<8U4t}K[IPCIL]zx|&֫^`00<;60PAb=CN)9cF-3QI\m`Biqzk{ }جzqUga^EY1nYOc|tލ4d(V~rd5M:J-ͻy$qt iegp9$˂*K/1#/+'%RH(t-q4ٜc9N:^61\+'OD%K 9!`8^|]pe=`_l3VWDI6)/45NH h9lL=QY)xo&&l~0:̇%E2DPz0]rZmkIjǜo"qyՑx(-0~y'dAw0G\tM{ 3&w?p1R{pD]B\Nq7Gd%0F.r-&g; Ы/I9+;ʿ4&ذPޡϏ0?}]tmd=3d)(pAe2:XrPՄ6ld5İobXz@Tp,  /CYl$gwMx^2 m9sUP3  X0NttkǜDXٙCOxM:O֔)QbMAs-Zq}8B ] /(ܶR.e12۽و\ޞ:=$mgMTN;#+4:V9ZJA}ccQ~U!S>qFsW';{| X1QQ %((سE9L\,hZig=$YC7)(&biMNGM~`_oySloi/ڷ8 oFhg>6So&,i `.".8=C !?;;qt2%HH8; ;7b1KFDf[Q%pA$ۨɏz~mSjrY* t) jDG,@99 =4.3p9/LKqi]6 ^_]:kR w X`jH&^et}b/TgIu@4<$ CA7c.7 F {9*]KmQBflxeF'N4bhrv^*WSR8\NR% Zje m*pkJ] GN-+J l2tCǔ1Ofl#{5*l;4ɳ!Bi<+vg?Gz$1c#H{['[~ UyY1IuDH$% ,"9^P@b &l=%Gk6za?,Ry?A74)+(|+.2s(]J =UdF12hrȂ )KuK+c$Hv( + |ڿ]0E/Zmv~WўN* /ɱZ7pUglpqtbzMLϨ *\&?wQ_ZU\;X%OE<o7 ;H|ibVntR,OB@;Yd\qYŠД٢dv1gذ:^Qe!u kfGY"ۋ]0fk:Cr&e,"J)jZǛRfV0~|>!lK+]Q LMbW"h%~h9JadTS:gH3r)fGL8O*h%̸i(c38E]x@o OnLc,5bG5yk !^N;"' BdT&uqUh'Fc." $;0Db.[o$~y& {&kVTC:!p b !AO9b&Cw^YR8?+:In_VT\$n.7;7<'><;)7Ͽ32V5SbX?7M; _"sU(}ZÜ+ތsTR^%+ wZ^APNzUWke[Y#|Rx VOF`ilvxasexR< '&ods / *WG9"_[n~^tӝ!nô]ddDO(zUCƴ] & !x7O i0ǜ:-;..0]Gґ&D]U"b8y` hP^W[o_f!mVQr"tqlbW&K:@I:S :WCvTYmMV|D:z2,4,Ow'#^ .,c,4 e:rF:ȽF\xR- bXD4jYW-JCBKdi?vLAI>/J<xXGkt]vxЙzāFbCH@!>zWb 7γ`ԨmvuofPL b&hz..(٦v-Ngwv~{6v rsxƂc~6n+ŭS 9["id&C! Nxl5K v#7+=W,qjIYdjyo?7t~آ;on ^uNQC>>IE$R c,"8z6JG[&'gkh_T.JؐB}?b|>{h@CxHO%Y{dXpY{~>]f|H_r})cm R?C,Cz~1tJ^UHo>`z &|!umgig9PoRW#7I!>u:x}З9 E*ZK 5pFX Q`TSNtE:!z/A%J O %-O46>'0ڰv ٙxwk,ZW`1FX=&VBZSxd qt6\R-;2L/! (lY YGL&iJ;_Us0  e94Si׆l<W>JGPd͵σ4]Ew|B0ݐy<@љ_?;5y/m*eL'?bM&fO(ssj,B/[.Ȯ?#4 PϲDyo=\G?^Lj!uoHuiW% 44@)GnYN"MrV-dwϜvTgzIws*6^/H:6>Oe({ٚ )ğa9Y&J#![҄akHpy X&>'zH#yXj1KVD<Tz\\UrSH\64"P ͞mwĽXR!B޶CCyKZ}u;j}9 -$,^Hk^j]l Vc%Pl>7S`beii}2dY[RK(G sH{#N,XDPg YwhVte7|ȕI)+zўf&:SB,7367/D;>ZFu_HC7%L Agt Ctw.u 42#C"N*T~YQT^,d $ldt{؂/;7( l!#%3 o=0_TO R^.rn Booq&p(y$"v1v$Ɓ۸2 '.Hc {Hcp v#Y^Cgi6t2$6mA6Q,d_ ^xm%CY-2Xٷv! o` t/zb]nFh12h!o5z@ j,N9xjc5O!=d0RW+'*/.<;?PtYf,}|w4=ٛO#{?8Rx[U_]CZ\( VtR@R]?YSEgE|k>2~{SpnIt^iNZ_UZZGNi|  8ޙ^ѱ6{'iz7[{b(CtR!!~Uoh8iVZRM~NN{Jw:Bo3 cR@0g#ʌdn![j,R?UY"bxviB b8# OfA6 U0*zIfQ*t=(=*<J oRSN% D7(:'a3@N"+\F6h~MrDcLzrxKtJfЍPsk65ZM5Ȗʏf'~QG|%?|uMxdsnU ^H0"EH HBZ`rxGu,2/)sZ00Y)>3) 6t0Gy,WmDaWa+dP6`VH8b8H(3l)cm 2FJd=}5K ?4X +m—ji};vs.ju3y7u Zs_?G-=d N`}ڎ/|Q  wOfъs'y>ufw]Pܜ L- NH[){gkljf b^jadMzYjIbrvMz<-C~"_wjXCu!,nMgK&7f,2+Z4>=DZ Ypp}ޞ`)xv= 53,f&+&"1"'%+g F6<E[.j[iMv&sikD7'8)GG1|S]ejmmkem[RL36\^6]veP.}g{)V,7Q3ehtKv[|{fuvlfwqQv|:}$;H Z}";isWp܂ ddy@c3IS0BE '8D?XWx>kƔwKzyq^5FD& ~P##t5}kmZ+,5C:(Aq ?'71Ccyjb8&G>2IjW$Y TYHe!s' 0h:4FJT|b%Dqs}~e`XQR_Qx˜8݊Kt47i=O`B_[hZ[l5^kEdfg"k`p^WtWOu[JvIv&NxT^~gZM*[ST*E~'/hB$ +,kKѾf+xήB<޵_~,_sleTC"D-3V&8UraL*<96I>W@b i(np`-rs$v{Nzla[U$Jjc;ͭ1/iK6E:[jw#drv/b AVM!KW_}fu olxCd[SM] JiHi)GDD?y7[F-8%!X~.QT3%jLS:ȡC"< ֋.h׆ ^=L|qn[. E m.IE D 5_.\PxdOW03lDOTd^r`xZ.z2MwO:t2%s3+xOn)wm]!&:kANϠarhHW'). Ϝl'hEjb+ 8o1:E3V#d9qL{ #&`Pe…ۆ%XP_9]|TjS߁rԇ<rfXarň6^:4UPbjr1hKp]U]hOK@<4/.'$/6%hD.ZViU{P`TxBb,Hk!U."L7.qDqb… ɪ 0EW;`qM`vpT.%>Ls0j^V Fjt9Q|/`z't *TnH1].>wipcrA)~!,+HauD#C^[1i߂j.s`)]MBY5&D vN]d]l2*TJ=^z*Ym-uIvx rp me Vq*G:9"1d/12> ;N L_aqwtm&ȑuM"s('^8Fy@-v:xy@-5 p4ީ > @$< NX^aQcocb'a)7`%_a0c\ epdO]NY8L  #)Yy .]b.P)EF @''A7 8EJA>PT SXUT"Q,OMD56<-7$/%t! <Q^YZ&)48BLOY$M_/>_~9iYAjNH?Ny.RUV XZ]aiQs5*Xb\h/3q']'1K=$41G6L$C V3p'76d>;S0;]B /&erZ+k_UB # \qF5E[/*B#b6Thktx{t?e-[Mp*0~݅fҶwxnd*cZMNe3AF.1{2hyMq4' * : Zz*Ւ7NB֤K̝QUW_'}+kjuZL}N7H|GHq/N_Z(GWlo(ǝjTZZ( :y#fULU&hKV9ITPof7j'ޠ_P&uy}* -%u#{k2y"jhfj%9IXF-!IASC2qAS*.a} r;*$@M?UgO#u7~CD< .{( huAt =5[UdvVs ؝p[ ~Itl>\:Qr=MMEP`R[bku}{BԺOG Cvt_K I!6f*& ,: O[emz}fș~(]rhϊ_~U>nI\V;IK++S<_1",*d+|W+WO(FK!d.+ DV^wğ8lY}y!< TSh'u~ VOُo7Q|ҏr<hL^}V uQiN[ZMFqN.'PRVVY]<^?4_0^b\}Z+YIOXiXRW$VkTQLvKGAs<99;^`BKW}zdipjzE@ƊiS(CB:[94d@jORd=|(Nrqk:Ii(vZe=V" _S4BbMby?nH}kY20 -t2Ϳe0ثG fYV\O5,M57z4t,^#sn!ʪ2*H_s:wS|^}DlV!(W!CtG~b\WH0; 56K<CJxOhQaRR STdU|VX8 \bn})99IֳY;{g42s|@ZKL|urgz_d\ _#g=^u6V[*j x=rMQ [!4+GgYk+k|ѕJnyP8?|}gM /|pg!c{ch{?ry~vm_N9j Ѯd:[_fء*oSMۖ0i8 x,G#g-w0>`,b$#Kt rv,l0jrp1dO q{K̫nr`TfrׯȵĜsܐq\؈HJr:S..$OM4{=|+\o>c&b<m &h"A2BgR ~_i&m%2>&IPR KQs:K}6@OR1Gg+zcM?J}to`|aOT)CIK:F7G7NQ=YqGg2U,v#eu1T&v_RQJSl'Mpu&Tهx_dNٝ$9Ƒ'߀}}I}R}-{="vP^l e^yM:j 'jˮ\4t(y6<N; 3%k&!+7# 2#s! w!|%g-U9D-G3 U a lvW3ļxqݥ-ib\Ntx#y,*"/-,k*%@   +9t @9^d&<*}*te$!ID(+ ȼ Nzֽx3ցGHRi&G:14=."gGaBIo&YH[?Q@5;IXLk}U T<I<WlVL@@.w%gy&h5]bP+WwVQ[ahDlk:k܅cړS=" ?}U|wxär_YQFB=716Ej03F+9'"$~!>qTx>P@E.]WU4B<o/o(?Q^jQ*].'( )dOg1ε˯ яZ%Hx$DF_IeGat4à+'/Q!#//VCX_s=Ɓv\r;s^x€>!Ώ 1uyafJ2ܾ \ {+F'dÁUn_k- k2#G-]Nqbj5|d|Cб]ppYw%I0?;GY<$m+?ƋBF aHI̮_JJD;L͎O Vy`dsope&pol5dU{i?!Z~"|2dGv43,o.=9&J&[jgu@y*aw0~cotaҩNƷ8eVVA!{_w| (yla0[YڦD_jSk{<x4BEɡǵ;ښmתv٪yEmיuvbng:u{ mX|4TupDs3b>wPZX"[ա`*eshh*e9\2,OqB)a-I&Q %;i53TS#0TuY8 4%a #C3&Y" l__<^ h<|ޖKf:nHB/_ mahF)#1̌6׋:iF=@E |NhrP4xB`4^N,h/I !,z#^+z5EpCTLibù "|a|NDAFF>&P[N]ikYzyR}0+_؁r^.G10r m7&E X*g5C>HCuC/r>@4 %'${ 1;DJmO&RFD;STe8PH<+kK|=.!.q,eZhTFX7r2/o.4Z=sFgLLFE,69# (o{#l:595E|NR_YIgYd;PX?E(-)q8!3%@ Sgx*6?F@ MS_.\MWY-v#*~" s\ԫC]+dp`UOLEKhHCB}9:."73xwlұ::"-7:HlS%Z0\4Y/PJ#F/: `18*%C# +#)# $#$"#Q2 2;];)N̞AL2 G1MW9B`HbD^6QU FH$9`_)C =R vҺtT|\^}p|({RrŘ*$]1KEݓ$QbTj PČ7F&B9^R+$  a_ s#ol,{0Kt-"/ha%YFiB¥þ[E9|Sog{gBtbxamuDbRlc^cN`h=X+I3 3EJ$8&6o=М8۩.sX:\>nw_աqK '"h. H/$ ?R2RJa<[P.BBQ[D NCGHAA+?<N=:=;A=CKVPYbmy|?/}3u4d>h DzP>ͩ8"#( +(AVa-@zifU}dIН@:14o.P'Ǭ LryhQac9`m'}s@etcE RRBL35+&2'j,7GG[Kqp4^zT8 h)ʲvEp|ftbe'Fo(( g7+Li8rs"W>)B Ӷ?g w % 4 FZ' q|Ç9SGӦ[`}miQn'giU+s*+QE.[@ k>|6aiCMyou۪M(7uG.pY|ns',` ]-rNgvnx/ZkO)QQP+[ ~qT{lEE/w&-? ()?>UT-f?u(/a1T7͐|זo|'kfo M>4Yp~ ڂ|jIbP3i/%Lu g_`~4g'V:M׻Kk;P;Y5ghvkѕO]ݸ6fpLKH}1E*@a[Knxxfq9Cd!\TWB80h-#[r'=V9j&-OH.ejwP^ۺҿA~ [w6q=xoqt{s?wK!E>|[ Nr';DY|{Bi6XM#,  D/3mh Ae*/ n-#d.Hm16J.MNY mrR&+=(^ m`XFqO{eZmdl t/bz6€ '9g$-R\׳V'SV %sX8 ~[h2oRK_;yR"'H?>7?40CV'љ.d f$P<#.$3!ԞV#z<*+a4͢?!KdT Z+&][VN{BVI5/&H 4|7¾8ʞk9y+f\STDr7;-(%D )Cc6\qa!ѭ3 o>0iV0Q?c08t;i`K~?eiS6WթtH3==Q7=4q59W@+InRRp[w[#cNbhK lQo_?uq7~ًSZ!c-&@I `ozv,v]oUdY.PKL6LOTvb.bqkOvGj`dO;R](Z"=3&; 5T}lZnc|]6J]B`le]yjl4lbg]A\w^If\2NvYӌTdo*" P F5] 8hPc$qBwCx} un˸g`hhZ 'VT5&87= kAe EbxEsAh)=c:;N<eD{R~eoz׎Zf TSk5PS5ɟ r їۛ p2 {O8m?eӇh$."ҫ1m_Jv_7 o=isX,vG+nNΦ/C T pf5^>‚(.*"PI9u.__L =J3d40ԡ1L4ZD773*+U Ά7t-pd1YUTT![xe@tnrq^n >i`|T8El2Gx~4pkifíFesg\plTs< z&} }RMvGiDW;C-m  %D3M a]NےOx .\+3AE+*<}ayewN3a% 6FgTld]_(e[2JRe5D'45X! &f"N*6;F2X,!h2vF,X0 dӊwg{a5R;>za&rqk$cQ4Y:L]=*H%EO"|? P I֜¾_y4pd+nGGr c[z~q|,iIJ zo[ i8!_ @! 0z-08ݰ|OfJooU_4C*859\wCQL bZ4swmvmȑ`=]c]\q* z@Ybih0kZQSwYklâĸIduD#)Y9<$: g-,-BܸWk}ǎ ֟2p>u<^Db<xE [&0?De-Ғma]dZaBnח$('Ҵ:xV*qc+I>}MOW]@aLdi<s]p|veyyBl= ](z+T2'*: ZS7L+۷$y'd23g-נ#wk c+QFDp 9<l:@2`@LKrh[Mjuk=zP>uokfG O11[i?mp@ }Xf_*$1j2i.L9'qu KP& .!=$!(" cv^t6(T9%͆gCY2:gG] ]>hr%]=M/W >1bȥmәhW7DrU7V/)6-17~y?FaLԛJOOB_N^L?KKLNU $_3Tju=.uA#}AY?z# T3#EAV`Pa"}b*X*C&l{TLU}xtvto1ymoђs+vg0tȣjYy}>L\5g uڶ5UAqfAocsfٽ n,wz&~yj%U;ε!it w~Y=&};Z &g<8  ,  !>oO%"-\-~o; AM˝9D:pϫ0)aT'hkKX,P _T;%6 w,R6,,LAgQ[y` aܢb:cffnsxfNXdH%:D-7#~j%~0L>—Md{[`fKjk=>j6:Dd^@RXP>H j5Њ$#Us78PL4Y]`Y d_ e CgfVjYo wm%AϒD]T:#5.~`k+V?p*{  ,@HVi٣ǒDQW~8PX?v} $6workrave-1.10.50/frontend/common/share/sounds/bells/daily-limit.wav0000644000175100001710000173403214221624107024216 0ustar00gdm00000000000000RIFFWAVEfmt D bextZREAPER2020-09-0820-28-21junkJdata:                !%) .$2)8/=6C<GAJEMHOKROVTYX]\_`abbccddfegfigkgmhnhnhmgkfheeccbb`a_`]^[[WWSQNLKHGEDC@A<>6:04*-#'!  wlc\xUoMeEY>N8C3:02.-.*.)0(3'5'6(8*;.A5H?OHVR\[cajfqlyt~.<I&T-a4q=J[q -AV/kI~`ur]Ez+fT?&sL([ 8pQa7<" ukc]VLy=m,\G2 0H \q2Ii ?yO0nM@59h6d'XL| soUX=I)INL<"j8 `A)`*pc^0k.c"3x-a$yBrAQ> SCAY K l]edZjBJ9h-&ESa&/0]-_Ydu7{BA "'  P f   ; P o 148)u;k <tRG6Y o   g G   lD &k#}k+/ Ba49-Jnb ]Ir:5BUhx&NPk15pSt;E1m  y H  s, !]!;!!#!7" "E V!oY K=  h0LZ": yh [ W 7   H C Vx9/gU *X  p - q K  m ~ o  n"_Yp/I_ sf1WruZQJ_#[_  t>i  M bEx0"u2]M ]k&zSĺ2Ӵ ߩU3wé9; R&z}}{|wzQtypvyam {k~fmpu|v/ lH\6^.M# U{Y'$9z96wUf 1;?~#iƠ:B b@>TD#Cnx v?" ncT2P Allld*<~Vr0tF@4d/v~[Bjӫ*ezmq:J e 6 wll!12 Y3$$O*FNs,R._& |/=kh` 8J q ^΄_{ SM\>o)=Q3Y%>JF$ g:ٓ"d |/3BmWӔ ]n Ε3A*n}d4(9,=8)m `N[}ZR7D |-yJ E'$ W + l Q +8nP0 5rvu N:Ȥ8 d& /\  st>eEE2gI 1ED@a5Vu 矺Cr(},ףGSYc|Cm+≐ULuހ뱰씋w$QJ-k% 9p7 γp J 8nG$G-#N&$ !x)o%L0? )0+)Y+A(t%)(%'=(t&j'+(*'/!4"ntb|C+1U0 - D ب }3 {MBWsZ>6h%},i9ċ6_;dw9jA-0m툐 V !y VQu |S i<]8Q0COwg${.ȡoJC lZ 0‡)w< A E/fI0Z:A0B ʞ 49od o6 n]J1d  0"woqC3[\4 ?~ !ZX` DԷ!jeʋ sڍTlz0@XUe؁ͱzB~9bHx2x뀲 .RPH 0F{ b ": % p(%!|'9f8-Y0B N1^ 5N4_0IQ1X1 =1**"38#/+%^,'?!_$S"(>+,50\͡2)[.6ݴ& 4 SP˜ Kyܱ4 " p I% >  k}$ DfaRMl@ 6NjՒ;}0rKF6 s Aiva` faRm,5NW:-5?A ;Tkc!'MsItWelx!Dq:uW|lۢ,rܭփ!s{9ݶ{,ם`Պmیa5 ΁ᾲ| M8 kơ ֘U;6|ͨ׹t=,ݗnDkۥn҈?Rղjي"6c^F|%mD8'Fe) T*&4ĵ,#C5 7>k!1 ,3?1'E# %^mv(&'Ze!,#Q, #A.#(/# G'q6Ȃ S  F 8U ^ # +|% *dp4  cx~3NŽ:~ Ok`]K -wUc gR 5%Y!. v ̫ f6 J Ж gr ] e8 )n ObP7h-Ľo%2( Z* 9 Ro#  3 yb SNK]!~ȳ>(o6cO2 LxX/<Ь)ՠ9I (c_t ?GCxϞV~NJ*qV aG4 6 uGuM \[BazS Z%=.,*sB615*s1B~+5'r!$#"#SP Xͩ!W!7"$~1VI] <fi-Ki$"Jg/6X.WSgp!5* kZr[ v#(D+gB˿A' XtK Lz$)uYa2tya~`eBS1\e3wO&aum(Go!c{8f2jݵ]ڲ܉(M؈O(W!Ÿ 㼶~vԭܜiuqT=~MߓїTH:g^ι*˙˯}۴Kmް.4&  ݀pU.j1  (z .5|J;6"$Z7z!X1̵Z.*$#C)VG++ *"Ș,W%_. (5/ v(32l)΅.'6$!mW pY`FP  6K k: ujE CL } * _3 . N(!< Z 0 ` !{0* 'AϞ' E \  XQ   ׂ +v)=@Q9X j5!"b F[ jJ߸۶ ;;< қ #j h } D y=[0-̐[Z\.WM<mhy"i (/Z 5db3r,!.(L| # \bDY( QGx$6ɾ*k2} }. D {ʧQ1^0?S8 v/ں`$N/V`C"6T>M!S?U aj *z;f+7DX(gj'I趺 B_lR6/!f]OEk-dAX|H•,O/!sVSJ5mڤW96iϟ}`N吩jMܖƶݧV*ܺ7XYK w#ۏ0̫Jٝ ͟—Ԭb/ ߓUm }3#VVb5 T" q 2J *z ;WEzl% Xl,PW>2g\9-I94E4m0f+zLo'RM)*6'O(B ٻ+3%$F,&L.u)K.)&#wza|nq r  s p3s+ +f`am[  B tlZq C, Qa Qb@6$(y^$};. j$9 ֯I *}ɑ<F۩{"ɐj<O.<h mhH p y X "*]5(! w̛USwiwȇT||[/EN7wC$z8'uilp }CMJ͜L IBGj! L ޝ9PRn/=5)S{"QI u)?},.[P:5t7UZ1o+ӨK%&@ [) e5rl6rYg#Dl*nܽ  azg`%xFAX ,+Yepbr5JQ6A! j+Ye)e m^%^@O1RD&u; ylݺWɱKh~pn|kŴ^ͅ6{ !j̰Tx͹&Oْߌ> M'利 BVX1 < 6t] )Z  1#nGw8! )W c.Α,P5 9(5?z/HuB+i&٭%W0j'>%èA$h'CpȦ(3 ) #+[''y"&Nv&b"iJh^]B ߍ I>L9Ϣ&  To! =]:  WaQ8S}Gf E Ry&  ' Rx[Q6_h I}f  o'W0k <>44$t hx [ <G=#@?Ͷ) j! Wt d?압 \S@#ؑƜ .P?oXNפ ><1ЊrLdKMkg!a&*+=,xKJ#+8vRO/B!q@Rm-mI >8*(.ɂ g. 'w,@2Q8T24 F_-'d"`QqQ"I3XbcdWS.ɶ`9,Z( 9XV;{4 f ©K|ܳ U4( u4)W5\,t6$?׃2{%vIUhLZW e H+XL޶e%yxH[kv7hWG<{R5jyޏ_f rqפYp{x}]l4cք<*͸Gă2農6aLfR>\J8Ʒ4лĿSj0QUqiӼGx)pϽ/(C⬇a;>ىg 咥}cGD,! epY b* `_ [mI;o]RA '% 6,@}28sF$70w,L'7[$zs%D-%E%#/Y$ &|q&a(C#Q1(%\R!EX,Ak`Mtu%c ]b*A )8 8Kqcq  ` ASCk  #'o^#G/ x )S([%cm7%$8ˏ  y0XcHbV ' s]Ϭ״{X?F 5\2O  N Q5>  +Z`ڋjԹ, gІn{Q_),g۱A8kA&]&r5to)l狺ȳ_wxN;LJm s <G?0" BaR&,h$_U *1ifL/I- 595.U(1 !"o 8 /  $)r o+ 9<$YF,m!kc9 Oz2Nn7jPX`X[r. _P2UU\0/G^w:3j -< "RjH jn^ MKL6 BfYSR[wzJ\oս2fQAc 伵(̉A<:O弫MH*: Hu 7S(0_v[Nj[W堽bގe߸VqϽfEĶPʯl곶 LkK֧d7әG*uәD䔋`7`b ?"znbBr:u`!AcY 4q ^ɋ*fwKp$Y9_+ R/ ~U5|7133y-I(Y$#Ma[+%{8#w}62"$Ovg%H"$&'#l"!% KGw Uͳ&l J8cC ݚ XIoT{/ t $ 12 }~ f z F} mu  2 ھ!%'&,!'C B $ 1L()ht3߀xWY B?J wJu <- oSG,~&rHNYy/ZVCgT~Z6쳸 %  v?+"{'~C7Fzԁ%Gl}=+ >YC[䕀~.ܢw,Yy;~E[(  h C/d]F# DB=>jKv*"*g( ), %14x0u0)F"%#77 Ɋ{ s l U 1 o1y^?~iF‚״ / zX%b9[Ae\NÞci?D?y5xyȖ TAXPieCu)hCEU :w2W -U | 0dgߺC#R03.XPz'>f~L>PTR|Y5ܪݡs߶hٲMY$EseT</ƚVfȰg²27ἢia^%<@PA8f=UJJ.a[`Le]W +76>+E%kW!! ގ%s"nR<7b/#}7~w3ظMΰԆ e iQ[!o5)m| @L=^/RY - oυ ZLI Nn `L&v9O0[__`un7 % ]* .\3g2eM+DO& 5 ox/4Yo /^`c: ?\uG SuP= DQ@]z,r8lN4Zy'G6C^TS#&L{L,_(>eA TK7Oa鯃wV{b#![nMFKG:k|,LHTH+܊ړqh]gケ&Uũ0Achᧇlʉݴ6یcչWiA/=̭*ӇU /ֈ.t 퀤FI H L"7|2Q9AO"_T `Ѥ"5:k6{lD.%()ĸkYLx\M $x*R? .-54qd57u0e-+s9&k"Ź RM![ ܜ" (T 8 vo!%"3Q#~%Gx(v jŰ Q؂H \ e Js(hkV ? lH  { uP fz *2 GK#yl(2]\'=!  abm00#(1S'.J7Bcv0IMst`}8_qꪝ6 Ό U~fs"%(+*$|) waPmI"DRIo-Y1 cv~]4n n%uJ Y`虹I瑚'9`uVVu2ګ31nKP} )DvѠ2[ _;e#\ r ظ&9矦0F6O$eB[+ 'D `F  F+t,b^ Gk iT ӧ 0! &%;+m/o4en2 +OC $esD>˽;IKKPy fw l S  dg/|f7;'(1CJe^0Tۭ$E4IE{%[`# kɳnD ltk G:"XAMrCO5_TK)^awp葌i{&OXJm6i͉7Rۊ-AֺیvLϕ,ڥ݇f_y-vP"&2݆J=β=h|DfE(&̎&9~iDѤ?E2+%T h)[hKLhp+s? X̲5 G g4|I%n)Axkv`r̾/cT)ϘUhܲ& m}{J az \@ ~?-Y Ot7&)q C c *+&y@G Ӷ jZxT3_ g   -g0ʆD0W zhj " E-> j!@v%'r*<+N_%Gʙz ;^= CnPg!nh&< W.s+Qit{e5G?!;am@[ ]㸮J0ٚ%ѽo͢xɉ8˛ΒіctڳJ"H[ j'Kv  vZOk)1 J JS ma{!3h0(e +t!T'c+C?0VW4t1E-)z m"nBEygtc1OLj,|8+ ܬ~hv]#&w'vTB)\Wr |Ff.BqQJ<y0ߓ>6:Û 5 jj@ =SoJh83SbUg0A]yt^b\Ɋ}/iIG+ԴҠGPZ6N ۩c#;L"Da?Όڙl,f/لÝ#ҙ`۬~ƂގwHROs! ?%JK? ά 2 EJ=@:Bujm' ;l 6UX)!&PD6<,g058!5ٳ-Ժ' 2@"=*jW DAsY` 2%s p ( q*L] F ez80 Ly)'dBY> # ; ` uq@. S/G Yc7jɟ)w, Kn{%2`}@1閰Wi6t;Zu:s5`״pfuGB`WݦΓ$ `"WW.8!FcfCF_G"A0B"?ޓ9i&HRgYfF+,o*v|sp j/J% tQ-?Lj (>E8#)4{g-2WoQ57/[( "" I=xy)BRdZ`+ 8r h, t R!2 7-Uuc1.vq`w, 7 BqG +%}fЅ6ø%A-A#h&pHb+jCU*f]#W}' *8 C__$ j[R,ňntbQ&7 m{373,+Lm $  녜 ~] DeZ aDh + -vg1\I,`m!Zc_GPg;n+ƺ5E`5ǚ!E'S++|5/Iy2_.V% Edg4@V-nF%990[EYz&":t8 ީ4&7vX!5"a\c sU=o' +KL:[^fx(mPų<; 5u҂Sp 5J' BgKR6ke6BKq;wꭓiqtˢ MJ;V\ϰ*ζ ÌFvRՈkˬDנʆ*/``$;k䲷9#׵|}jչ݌w(mDz#0z‹E~ֺ}}/Dg .EPP~z ]   >i91O4[oZ " *H@P >&1.+~.=ޭ3>Q19)"Z$ H~4ĻFti`YD:)܅+' T  c";% ;6J$t04UrbU I z| F$ׄ\%M^yt}X^/:v|zF,[!3r#dp(e+%B<z>o ! h $ k[-Ww6Z O`^2Z:(e*?2hJ߉kDݟneglzJp{f}ϩB[mSg!Р!Ӕ"Ʀ@Ӱ&ւ砦G֘Z ., Am}튢yRu _q[ej F~bA*!H Pwzxx7m4p4#5@$;( 2+0/V0SG(! O9 1?I+~'('>!-HG1J|TN[O G ;uv7U8k f8 ӌy`2.b*A^ N2 ?ia{o S kkxx$;cKh:}M2\tpfʡLf5 ꝛr> Jnک'kͽtBE+ˏWٯ"ȚBnĿi{{`oLgבƗhojC~sK|c:}O+$^/>7GߢvIglz~7a] d`<&{[?T.SE#^8x80w2""Be\(+0Y2WJ- ~&6a ^ #  WcGtzh)|*Z+!  J=G U3@KOұ ^͠ i\f_*].fQ  |+"& rawT  1 4fkbkK!!^%V)xW(+m A;d,BODa a * b< T  '{ s A kȞ~s'yUSA''%]~2YibџQv[Kd1YD<҈z){poBDw7**6>>FB; 2;9ǯF Y9W-=$@ ,* B}Q 1K;:Bd.0!o نc.U$8J'?4 _S$%9T(q,M0h,-b#"Y TXV~&EU XfR".~NC<1n w/_rU!4|hp+}/ wV0դ & d\@ZSG(C3=pm(= ${(Ir,V2O0<(!, -G xH$̝xz!q4r"-Ag6 jZ6q #7 | δc_CQ !Ç n p ( >j @ $> je "Uf-` o|`"DVg&ZRX*0O6/V >x&p?  u  U}U "+|@ _ 4S|0;VF: < ]5e!F'bq.4J  @E V/V+Uʑ"nzmCFN."U G#1r {tS `]zs=ħ;3QqT8o44_B4BwQMnjH)N%+˜`٩_Jaj7Ɛʪ7̐*=ϑjg `Q&' . ږ>ݜ‡G:hQ- 1[``y b)i!C^/ *]#| ]{c&E9JOQXUzaYJ 19, L3L4k7 &)j*z0<B1*#O}=@ _  (Vbk[W:7(!'!$)oud cs Z =j OnN \R6 /L-{˟"P  c"&M 'c #0 NWtǜ#\0/"Ug&n##wګء^!N e ] z0 }og 4   >tB9W$)E~ི oh R!E%NީgjW?$%p)ъa5ϙyq\5-׿j۸k'*M;+[RԳ 7Wz8{{K5 w G& {& !Q?Eb(F0'UJ~`CS`$F'Rc,,/s)j7#!>b )G<ߴF $>@IZ$kl T\9?5> la >EGC߆4_~2SDd '-^L 8lbb'[/^[Pm~+(DSA<]@}l  ( o(0/C$̿N(g,R1&-n &:L b0Mq UK X3 (zVp  Iy$b Q$Ee[&P`r"  o^: %.RG:FSL~"80&c5HZylo BLQ\& Y* P I;N! "4qeDic k- Ix  ]h h  0  + ZI { ApMO,Y[ഏe޸`_ ,w ;uVG\a;޴;%G(Ok S .)m؋TD051g Y"5 RF "_l r*kot%etK exɝܴT[ 1j(0Y̢2xco|Cbk TGI" w=f ӡ wa|Bld(w~CO^ !Y $./"VNr v=틸O@#at}?daF5X5G:OlٜmuҚy4'ᄦˁ2eɌ=ɷHۊб/S_cґE3ܛڃ3Au֖w1d27b wW_+\_ϴ)ptDi}=#ȥ( CJ3pkzP}WY\ X IJMk  hSP>Dk{:H_2S(` $6ka` ;%8)r /lO cQ0w֦( #N!%ڹ*#si 9 $bS @ m)  #^ !' ~"<yM&A XAϘYl{A*C4WGZLO n Q"g7O)'(r q a SWWp N 8@&?i1(s SkjJ .Sen @# # -[  , mo  A ̐A^Rߠ@*I3ݺ5LބL!AiI#>p * <X9W ld8Ev9F$kb/r!' %05Xt1k0S(G<{~  oEQ؀[ >aޯ.W<WwkJz i?1G/* T{OP$q'TܟB֙}"KʮJMV ̔eɥޤޫz%Ё;ԁ߽Ue߯ɋ2i}~&kjI٘/]Ȱe^X֖jrݙ ZPSM뚋#fu*l![d]yf#-en ?ل>=p?9.9 x xC"p &L!$+y!/"\7+a[*$Qc 9gv]#$ĬT ': 0 '#x 'A b'5 4~6<}H = @LE{]0uB<F!.C{vE~ܽ CMe ` d u~i pA vޤ xĸZr\ T7M/\ /4 q1 uk & tk # ٙ'RKg`hb+ ,ہ*3tWH<.W~$诊᠆ ۗ׵V ;`jI۽ֽw G@5աMDw #DU^5%00HrK^ csM?h*D M(jg JA azWc[7]s}G{8u^R"oC'U1+h/\.rWj&k:.!x1|/ ;8 q?Wlm ['$? [_ J-|M ZG{Dvt:v t>\  v P@t) >Tp hPdn`jZg) %GvQiNZB,-dUrH`a8^z {Eb*MFeF鴹Q뚁_KrS[vƟ5LW¯ܶiuۘ 6Bœܡ@q.v(㲹8Fj"즽y:觩F׷ ٔ O<    b !Cpbr<!!A{"B{\̀aU46q T&!m)C"/ʿ" A0V=!7)"|V3j3[LRG|8'"V? :$J M' :?* $ XEsiN4A 4}Lgk@Z 35D},1v;jvJg - Wf>& #! 7 }Sy,d So ESzY;m {*YrN{ + \R G MJ A H`  c4 c/&<?FUߩ$:hNE'KϿޤ_$R(@5 , +* z N}?HnA_Cʻ2sI+Jy$ e+D DDRיaDiyu#  @;$ F YR m R P~ !] uKb Y qK  װƪ 0ʑ ^C X7dv=.pfxo$f"ߗTRy|OѴR*ҕ\i=DޚPkqzBxf4΍;= ,1[ :>p;uROJA8TQ :9zKqٿN5g]XXV#jL)m.k_3mfJ61*$TQz6q &   g?sgsi Y!ˊ$ܪ#_?  GKoNk=:>풻WWHOf x  JIh`fa^lnO^2w? ;.jGhH?*^PAUOb~W*0  zƧ7'. mAy.6U L^"!lF) !-1."h6,$z9#54NE . C(! tB#;(!' t%$! x0! =#$s0"d}vAJ D` ZԷI2)z$M$] =ix.VZkUvO1~uM@h>'6 a'/7cHj/t$sF(Mm/wx/¨s)h' Ō& (%*"Q%p|e"˃ wD"f(%V%50h.U2/ 4'`$oP y(/!V2ljg&O5͛ Ys?r^׼Z<5z̽#g)R<\>" # /ۢXE4{o8+33%N7 vwv ˛r gz Upv,G#Nbޝ^MH hZj54==n{~6 2`^;Ϡuڍ8a]FGSqhc%.?3|K&&Clpw]> 2p[ fLe0~hYvGϲErzTXw c>%\*B|Gea3cY{<}bFxRN}뻺.JOQF"䂽!Gs/oU-{ s$O_XiOR,,mz%2: X / > qKGW)Pz-+li9l/h]C1h&*^m+#!2'i3׉4FG=xq>mDDI9s%ݮ <4/\mNtEwryEߕ_< ;U̻V0FԤ_2!wza޻|ވ>lQMٯR)wn,1< >sAI/v!6؛X&7U3Cfi]Uꬋ UT`ߊNSٙKc>Q=2  e [5j l' z8D"͡ /@Rި5.l.i mk x ek"`~"e\ i9pkF*rI?cL)f  i 0 R=!p/>; .#Y;ZcIu!-Qs!S@pڰH$O "d%AM*';rh?,V2 0g-P'.o‰(& C30/}T+m7)-#-#)%P 9PDTKԸ C 2,^#,!x-$8"wB*.>5@mzÜQH  o >7oBjV3 e# 2| tbk nu?òV\' 3҈ F쨌W s+!^kod˼#|ԙ¹&W$ƖJDU 5۱}ӥ&u^eBW  tRN0FvV:] ` -aKw$i'\I#LRĪ9\_A3jɺ]\|egM,itJm%Wb C/m;E@OMZOi*J)p)V ~Jcv  q _ *M*bts7^A)wD8"#C#MB%P{Gn )œC(* <*=v-<\/O#8.=0$Md6z`W;$T]`=`u>p\BJ%?bx#%d)6]ܾ@]U9݉Ud EN1R[\| FB!.?4/'kGh5QE֔|Ȧ`pΧd*Oƣgza۳֦%z۞wHqF2aƠ5䐘7$%%p/{p]۫q.reغNNJ]ͦ3ފ@ssj 6OnIrHPP  x N )d+xM33A GE"C_ )D`Dj #s;n5vb 5P0/Gt)%1WH;iVd=_ @T:I?Gf5kW=+ $¦ d?u7 77M@]%@5.kRj9ZIAU!)R'Cp5Z0)kpv`u 62<_c8>(EY^7h,n1vR* c o,|< Vu h̉"<M6*)6 ^횔;ksOO@LC躟N?? Elm⻺[7֝: ZjR$vRZc)7Օi:[:> KU {MCrM3 4~ x tZg% ̦^ ?$o{P2 9V*>!"W't#.%82>&C-rP#w% z 588:q z)s6 _g>!FL#P$KP "MI^F-GBru@}K E4{2uZ.3M+/V"6 + + QP)/_0m4O1z&W Xq~PR% TdR>B:VwJ<M=I/АD_YN 2P Em3xKtIj1T(Z[~ -K/5"D(?G1S^7(YGojsڥc,K-/'ir;{`j2=@ub=E0;xETj/ y'/at\ <W 8 ~s sA 'y5lBi}U51b6r5^vmlz"S>((#%&v!X? iL^& W|  / t_zw\? E#*/ f?p$ .*hLe7 _=!^\2]u>7'4F[#\ 会C,E̎jA戠͂"4 w"h}\wwغJPb$ڳ}kImvcFaFt,qV^`?~m Ir0& ob|`Hze;Q q;8 Y~CɎ y!T4C `"#":u#i@'"1pvd*gS︀p 3yfLCc(gGV\pN cu۾s۠:8kES)|-|wF59&tEaَP Fݨ]gs#U#8NF؟埈ZAi=]CiK |]C+r|l@ 3. /Ă!w^ % i-:/1תyb5Q'; E@wAH!En0#J%H:a&s,E%DB& =x%1c#/%H0f)CR,c)>+|)Mi-*%U(Z %Hy%Ή&$o eI {qw]P Bf6ssݯg=Tݳ|'-Mߙs=#ib<ſ%˒~-ϗԜ~2X]2%nU9)k*>{kCx&W FX}G&e?p} j۰sف z"} q#"T1 1 G~U|%KH?PV <п ȭ$ /jI׃XԱk,{Jђ勤ԲwR^v&? wK+Uwu8 W0_ G(NLAm. 76Y; >% >~;;wUa;d!"!0h 25#v${%h$u- 4B f4 4.3P QH2z 0( / Jj-_@ p- + $P$8 rf?)(PEG1"Gpe\&K7c )54eeX#0=ʨ1',86c}9gD-5İ2,J?!/}7+*"})ut( #$ |N=T wXTg_ v%yu>T6?S}(tTAtKZ֬mP$1&t!  3Uk . k6Q Hj^/–5š8@؈rn2XD)ibg^jJ< .Z6셈k#vpaC)%"ؕ+ P lTF| =MJ 06-5 95*.-[$£'Ea%%FT}acJ^  0  ( Hn+$4><+V:@#OZ>> N+q=QG}:9XY4t20p.'.y*%) 6''0+,.b,..-+V+O &5 R64{ 8;]N K92@drq(Yx?,jms  ? i|sp"%vT *{(g(t()F%%%tB)r t'o " Cc KY, 3g,E + ~yT{e]vLlR @#6:=re悚z#AK޾7![_^J˿qPFLäϲ:$x#Ҝhlo.Z3.鸢B[*Eeޏ54o$MWC2R. -u3P* {S +5*scΖ0 Y!g* 4Yu:a~>6I F5$E%k=5"!Fi2v2l+F0$)!!PP&A*Ǥ**OQ9*P"seL4Q8h#ps8u.u %ϓ#..b++wj|ܼ6 2N,nQHSڇ1f0{۹ZiHMXhzs ݲކD7ݰ&wu&XsWudsg/Y Oby]z xm株k6vZک,zI( >A,Zm=R5 <Og&o Mqx8V8Wpz'gb'AǻR{/ȉSύ9(A70Bۺs3桿UX#nV KH&Jn1ld  zLC"-Q:$!%/w(5;A+ D0h'}(f##&l!DO]x#)Ao#D1<(4j+<گ/B2Ct:1E$G4vRJpG6C!2u7*g.#% &}B  f#(Oc+t,:!0$-0R$x)s!^$2-$ bw \ Pr>Vu" 'aXh Ƈ:2haB7 GP 9P  1w ƞ(҅z{ \ >< )$e;+VO %6:a IB i ݄$@]LIs]Y )cMrI{mI o<oůM< S"LܟMT…"v14]sh; { 4d -:[EIE~0=d H]}+} \_ #08VJA3 e0&{@  iC rz:t;R?WB  JsST _{| IK%_scTW2Bix,l(5OlX{6;6gqqA褫蜅fݭ hp箺*vj[k/!㕢m ভ=JëD" ͘&%^BBߣ|i)ݨ9nY׊;ޯU׻=bՅ)Zgaq__˨л2\`'ۅXxٯ B$J}ՙ"X*v<7R5n)rԝ U> D+ 3 |=6  ! <Mi UCا:ih= yuG$RrI [^Z<L*Y~c8 hg0|h  n ,s[ 5T@? %waBFjFN\ v!3p<i Yr!3 *l/-x2CP:5h9Z@>0 *Z9u%m!G)qhO.FOG1T6$Y9. :8*"5a"l1 "+dg` " zBÑ M :  &r  [[.s/d+N2pe*So, |ӻQ ICR+9D% m34!IYaa~Rh!/ 1 3. 6o4% 2&49$; >5\`16ʌ/**9?(F+.) %g#O4:H(P]w"^Mf z5{rY_r; Fѳa9Ր0@_ӯ6BvhxBݴ+Aaʢ ;[,ʿ|EĤ \ v ? ͸ods dGb8 > ^c%?аB ^0\t]t7%F B"IA)gz)j ` q ;X6 3C ΂V ڄ5# `bbѝs "A$ve av x!G.P)~ h9 +<$u,rq.VD*D*})&͙"LTJ '1 7MLfWp~&H0106Z5=J!}CA#"a<*)h98UY6w0o`)Uj#] ZQ["26+T + _&_Y"2^"B p| /  #TMU) 2&pw-=ڛ ̦CFSrL?樷j4f{1C8wyHlfBѫmN΀rcѽƹ~ج@0uщm N[`X(<$&͝JȋwDz)L2X`@2>B *dDIS6Խ Щ7+NF=Z"i:lT" 0~Op;7>yc]iIS;qf3+MQuiIV+ N!E5X 4{7 ]mF?n lB i!gh &gnv%#Gq'  CG.DeQ6-\ ) $hsTj)OMT  /%/ m; p;H1\C8"04 } $ uPsh_} ޤdz?F+|Jﱪ]:2qQWoɩL$Xep|wE7k/ 騨䊈ٟߥ*$nYݓ Ryֿve[]Պ*vץ ӫ`2lIt& fWԲ2LG>m6xNn=; )4 3i bM1cI,(oiY>[ *RM&Yg,OUn2f;I"W.A'&j<4"WG4G11*-?f)v2Ph9G5 ;�AAd)oGn,{1HT,0K-MM /F@,:&ܮ0"'؅m(?q+  j!"#$|$\%'H&2&Q% !X>-ay }C+ Myc8x?G zlnxR  Gg5 r xr )9?SX@:V֤$}@h*9]L+ #wj:'?4r=9LdX nc\Ec1pf* =:u%1L~@]+!b%Tg ϝPa1S Uy%x=og 1F~xMpĆ?2I7J*Tv,8 +aij&qB-g㛂_>hm N!%ꯄCwα7E ڳ3{4#hn]:ޗQzp E TR!zm>_)N^6?06=o,[ ] {mA5Og)6p 88r 8 ZU8 LY#IgQN <8 $~ |!LD!C'`"RQ$ U!DoG|iq< P\W< q l 3Y k, a)| r zG# }S ʚ Esp:=,+Cjc y$DNV t 8 b TE+6xm[˹%%]5[ֺۨ%~ᵱ>n+ߩmV$q̹1}m|1f_#1E)ZhS_f{g9U>uD+X̺ &o6BoQ)]X5]+;< is PJ ȉ []_p9D (K 3SK<3[ Ng;\a:K"%R /U ɤir~塆 n2 0dO )` {#y]J362ۜj τ!G;!\z5*So&l]A}L|'^S($^ Tq(>i'ڇ0!lF s8ܔv7C   {"E T! !4 "n f ^ f=$l h LY$T^3 hV}OgI0l[-d8#߈ % !&)6&RM 6$I. %4 $ W ! q N +_ Y%C.X /[ m9I | MByj4U{VȀ.!xn~p뀗 r . PXD* MW[ ,S$ B h( Y}4FܬpQȊ. B T> 1yW6G`+PlUQb>aVC o@ a2f G 3o#pطBeOxL|"<!)T OK xh<+] [~ IٵqnQz e;Z!{_d3ߊJ۠gτ{aR09yNl~joި# 5v{E t<-LUKg.LQb.XD@W C} HR1l " ;$j&RO 9$ ǚXvQ3%t<@wsch=J%Etx57]b/8(|zET'lkG0zOJB фY2]y\Ci%D֔R$$ ǩG-\[س."E.e#B qbNW+K_U0c@'r \dI+'_fB<yX{| 1 }Ǽ % %R D k  W0lHR D f`# OY:> ef@ ܰ6%+ !$ wbA5.RB5Ug { d z~+# )E( E  ;orGrae =$)dd.4f71|5n(I64Z1Q 0]'m[3aF t$8% tL N#-)!Bo&$ٸ!e6kFz{S oJe' ΁Vp  lFj %c>/nm '蓘8NҍFTdJkjxImR.E+7 OmDQcQ;g >Z_yXJt@aSJcRu e^-$B zgkBxE d R  ' ԑsvvuqJrJ [.h% ^i<9KN~$x c$6<axk^ ': 4=c&DIɥN!5@|#I$G0}/HZa51'ٛ7Z!@Wf ã' IKg*  e+bl{==&60E#߆_ @OVB;h`U4Al \IܚUd<⊠ bd< hrb4^?@媭抾tXӥPWHSrϘ/ӺmQЀ ?ܢáF۫͘d˵ۄb`ތƑ۬8/o܊gUdƬ5w$ӑ"bJRE'^ΛUrߧvT i8  2<, kAA |4Y@tON<' oR&(&-*k'+&-&A+&@!)d% $ (.-xZ3Q!7%M;&\L(Ab)CYR*g>&L41,@$CF{Y!>&xv%Xr%/f@K(v&V&" 5*p&%[&#\-\ }y i`# DI0 +`m!c :U!3"WfM"7L'.7 & H P ə!H.Hc#V)'^!qP %0c: PD %qO0B(NX4  =L {Tn|IYd!zVNDyiW>\Ӓ&Oct `q +oNeO ,`ie~=h@6}ʘh#܌\":ןվ6k,U뾆w  + Õ % J@ `v^  s&F  #c h^k81##`Pe'C-C!e,=+*lP#Z ² I3 I HR0 dr ƃl u  7>Sҙg$-=~2Ea 6%a7h=zaذT@?b vEYXF;w[+ߚuuC?ܰՄχN/ L]VBtR؋y=(ҨIҎ6ВIg9ξ-љl"Y~p1~T=զpAel'}*K~Z߮$m^92X85q'5 c 1 js p0 nlǯ T1=? [$f% {^&y'k & _z$!q &\#H@)R#)%- ,_2}+2 +pd2 1g65K37[/bf4.T23ʉ*1 +cS'"΄("(c&})#A,&,i$*&@)*(X,,y,(W(\!:X I;F@ ߒl>UwSu"$HW%Ib,#o.y&U~6M @?@0 ,Hzƻ8 ~K% L%;> X& &iN f :#0, vÉ~bS4^d[4 Z  &`L?f0'E Q!ñ2eZJArhv]*ج"˄bu$y/!qOr${QI3L'=U,;3Y%*/~jb!~ T+/{<E2 9 ͿwoqҸԀ((W^U {B4#0/O^^D ŗ h9E -N1o ="9e2\F  f sVbҞ\1Amvu@+sJ*q|cAQdaFC7Z90v 巉:%+Pϙ|:Ջu˕mܩX{|oCp7uܹ2pݮzڕ0c٫imէvϡ0!4Ђ+'[ץ"X>Dd){'V%f쉄!) ̑K剮jGzkHҒg We+fOCvN9D=RV@x먌,ss7j9xw:f6u<2ٿ-:Cd曖g~6UV/?mPzsTgp !`%&4'P'rx)5 *n+ @.044U2O%3V5W\8 n9g#w9M+6;*1dS;t07/40l15+*K&C[%)s%c,'$JP.o gM3h 62 ^4Ak4\=88uL3!c-a2#d (4jA'~AS _eJ*{n$MyE^M46;:N2-J,0*ED QM zf\.u^ F \NE vR{L bpw vb C1 d<(rÕ-e,NM#,*< "P dYE_n! 7 nlfKLFO[S 4f|Rڣ[YBぃs&^ה0զVh׃D:ԓ>m~#bلG>J1әQ2fߖD!͛72 kQI~B&8"[n2ڞSI9 ֒sbLg{  & Y ؓ6 $d+  ۄ7E(~BYS3qX!tAUy0闅$m>9S GPKaNyϼ2BfoܯSԆlAչDm,u:SMޱ?tAae+ޘ"ڛٟᵠoTx0%pw' mtH /; "i1~A?n&a,d1y l?&3mB- q-wA*+{Tg Oz:7ɜH+[\X(CQ7 /g62PVP*y4ݙP+m"R}DK;na&tmbXO67PbF"ٽㆵ& [,@s< < y}m|ya P_  tR a{X}h c"!r>y)єoZ$`2tz԰# * _>ffFD2rJYQKM E 5D! |ܜnE8OA#醇αDHE3\ۄWPغx}uZ:ZϐҲ $l =% DD9]L6r' Q !!*%R+&f&g&#' W)i5*!-ދ*c-)j,P'-:'h.<&-o:%O0 &g^41C'w4`&7"& v=(!>&^=b9#yB(#yDY"`?1;Z-7,G)% &Î i&` J&9 ) )u! n&e|6%Y-TL&6 ?%@ Ȱ  i TL{'&RX j0ͳ 781O aA$ ˬ=R4h0dM7-% ݓ^BpJ͓^yd ( yD`~|iGT& DkarJz6hm\4 ,Hf7A +a!t/G"Xd!Ѣ}GηLNBݭT)8 ȹ,dJW/Ѵrͳ2׍ȏNNU›3TUgu̽m9(ҹU}s幒sܐ仜q јڻQil3$G#^z￸e>"F ;Sf+ Aގphüm`q1sr y3$ y#\!KL [^lD) o !O}/"kz %q#9!r !S  $ jTr9 ojUa%J s`9ja:EZCAL5V 8 E9.S!O6g`Mvd[anŞ~j̈ ~.\ ؇" `74c%JCWZ'= XKa4;H޺  'Q :cz Uu@a:%Fnt"ߕ5S+Vr㰠㗝aCh߲ݞܬrO yD˕,DG}Ӕ;̪U9Վ!ref4uA:nA\$g4L-Ν#uE>4o ^D >Y # !O@%"*9%=!MW_sF8 !&F2']*[ '*_)h+ry*.B-U'~,**q).:/k/-2R-(*f&{)R]$^&|!ԓ$A $!8$# $!l"b!Ci %%Bvg$U!EZ'(ˑ# p~rA& q ' e sHX U!Q*/  : !5 M H<5#F^;Opz  T$ ) G!T.@ v]@%'y厕xrдPgczs< I3>xnc ;s#?G]٫ff؍z1᪀W/䏎\+.)`A闲<`܊JYՈ␬LtےLSQ֔t ?]n * 6R5\i X J[xۂB"+#9u$@o'9m^&uc!M Q|eJ\u>6Js?FcK (CsXk*, *$ҀA*ൽ߀8%#A{q zH ~FʍG耉S(x*CᘩQߝ؉W~ؖ݌~#I(kH" 49k N7݇m-듲 P3oZu"6 "Zm, &H؂/`bnJ(|~뛕: f ZE_sv9xZ"sz4d hC w~ [< )cXwޏ7j LF j $ t 1 v: @n@-w U*i;2{ QF k *e2fCWLj  YV 1 s C2>`tm edomv } o\ s![˪'t,*'R. ,,u liQ{ePn1)[ b pK  a = Pc KjyǺUqlowCqXB>X)Wm.l6߼5 Q,)ziyBZ :*SP+S7մj'8 A_}\A&nI [RV{ [M bJ 9 N H. &| =; R #yT*E,5!K#-(gg%!ZZI[i: uNq Ȑ O4MzdE5=Ch t6nܣa{b̄_J5쉠RZ։dόf˄\;S%B25< OoR5uu(زq:>$ǢEhǹM`٪[7 %ór>E y?AE@.c.Y6BJcA A %z6/(O~>wwl#B$D W1!T"\cZ-dvG-PY*E=&,Zb')%H O(R < *#+ZNiA 5j S daAő(c/& ;;Q3 [I_̱)tCuy剾Cd`}CQ#IE~Ok-TnQX'`0 T\Z+~G 1_',·,S*J,XMgR@K ޢ ! G8.NKr%ñr5!Q{Oϥqį[*Pb{=ϥLQ fS?gܼؓa@Т@9MPNзi)0#p `䬔D쩨 L0^0BhB,%_g*"i:%1 ) ((<,b-2..G/,^f/*.S. /ZT1X/.c.ʟ)t,(+|%))O&M)0*7B+y4(35&33#e. -O4&4:-S )2$f'YJ4A#}"# H  MM r#lJ!*#&" L§18B  N^iY ~D:U6:kwr 9yrхɗj vc7k_c'qa[)Uo ~J8Q. Pt9}W}Sj|T-<8<+nr뛯#meFXMo&/$Rh ҞM9X뼡 v8i~꫄N>M:6 ,گ XV$ vflc%{$ nSTq$"zD5a~{d1{JxHIZ|?kT vW n |f&+WCHÔ^gZ:FS e`| '' "C0i% y"7 " Et@lH&d"h_RKYJi oaܗ|K C ~ | wwo0:G4|prw%xB*sE+{ Hg`ig$ޥA[|,\}ar 苺E ]ܢ㧮8ܾ.ҚْA`Ӣ'x35B{LVj! 68`ksd Z >q8rZ:>0@*榙XGbS{ SRfk0'$6ڊS"[1QnݻC*jFT9+Wcu1=<.Ab-E@^,p5'W-$(q!&Q!QO$ .6~$Ŷ3 +g2| %; _\i2'@B$ ru-KmZEQ68>}<16]B.] ^$04Jt}dro+Š- W2ҝ[ bʝN>G6Kn(!fV^Y?'z +W3=   Y_;1@#|% j(9*7r%;'b7W'~V$fg"V*&I"Z|/%".1Q /0. )7,Z$P}Y%af$  1>8[ Oi !J^cQ8_DC|tp? - -;wBf MD G   >R { A 8BH ]N {!5 h q?K 4 $: |] yR c jTx=I@OC?5 !_ 1= /}v-j]!O;.&8Ճ(F6nJ.L-O_B]Vq,߹i+捻 TBFÍKՔU ;֝3k5p:HF_}㟯<4nZDvfe[v}g1"Ѓ(؁˝dFeV`OQ.ݎ#PM7."V:BXJa;O5hmH w R/#S{MQ (` Onl JE|0N-c)y !-kj|3 ɇ+AGu ) 6F*1 .Te{~fFu"Q Rsx- C&nvu[ ^ؖh t?4EӕJ =/h{6F!o0uZj)D O_ U)T*; -鄨.\M&oА9 p6V<11T'1 1'wjL + =[`_AVcF1\" Mڼ9|5I> ܪeHL$yaj#A񵨇VZIyֶ@0$# dD3ێ' ēƽaBBW ;*!.("[%k"7$׭ -*p -ނ>,50[. n)}( - 0 '=) xQ`Z"t $r LxظDi%2 4v\^D %Tt$Nb)<,h1ng.8&'ST@n tK ܇pE"! +P zg fҞ#5(" Z$7T =m 8- q f[#d<R` oT]U+ ۺ^7uX}6%r:F连EӨtt}jѲڝ}^'C,ή 4睡Yby_V߲Dyvۥqin硊CSx 2("*9C>#AOo{-. KpRT%)RFx 2c?LXޤQݦ_`|:ygh"*YA4>5CL ֢*}[{ ܂F/l\ZH9;k]  '2;34.;fAGM'FGB-B j6ҷ#(%LTݑ%K%YYVM,X-/a+)h2*(x !("./@!J n^ <4WHb?8FbDѝ} Zڰh1^ٸ !2cdɇ#B>y?TwC RA4 >c4 o?F ;w r8&@b@:%!`>'z>,\3w+/?+v)E* %d!H_!!,{ !)d $!q>#Opk#a{C) 0)Mdz*X:zO;/b #?JVKk+.`1Kh PRPTN#\`s$k$);#a|ߑ - v``ZWW{V62,: \ aLVeiӨ2 hOpL &᲼f =Sͻ,ʸchQc"%hS͙]LՅ{$v! !z{BK@WF{QI<C5d0zu .6f8| 5 6 ?95#T7H)=SHHK#WcJ(rJ,F+.L Dʯ/QA0 8 1:B/u3[(41G)F5]7 5~<"= -,]}˯!ς$l 5$ٷO=vy貾 !1- IDa@rIs E M&Sv;­HgĄ%L"s݀"")"2y$Si$X% `'.A64b6UX7 -623ʚd2|:0\. D,wJv)!@A?%ZϺ##g\ sQ[kBLP;+ Cny*뫓I룙Y}^_Pec sG8dz9 Ĩq-q KW!&"^I%t@i*> !7<<Y S!N"sY{< 2j+n;e* .qosYFWp{5`ʍS"d.OnB I1>7[5Kk*^0YNezƝ0w3Nd9L %P f86m!Xb'~W\kܽ2r dsf& Za% JyH Ugh07O+/51[Kal։W"]xq 9،$ > M &8DZ'`e0;Moղ5Ri+ǯ}/l`ϳnːBҌn&>xvB;i#+XxMqsE X*@O?2 oye~9ZIn ;_%iy//O.( )?r$Nq GR*N3/#9'"3%%P5%K:(w{& (u%{)fm -#>?[XgSaCWl:< 1Ӎ ^O!xS\ڣ  UiQjX.YFPl!V"|k*g1of>-<-;, H+?ɖ١f;U',=1+\ ('f +,o"#/7.5-x#fԣ @C[<l 4! ^3 !31:% +%Uv)8+$v-$}-j JS?nF}\ƴN+TlblM %[3HDü]O\-&YCtDC)~?0 l|8"|I>!tf,Jx,V4E | Ul-OXu;>7Y$ bm$!Nj lzȉǁW%Vn+ iKZ Wi,uc +@ 3_ aJP9{y)yu6' BQ,-+k.hdA al k&mu [8_j"S>|oSSl8C2cwݵKzZ8PqpgлrNJ|)])BTޖeӵHRyWum"4 K$'C7A&lf!T8O_,k0Q(#|I?or ^2ȍt]!o \F D'>U/3!?3s4Q':_(=&w+AM4SQ@%LNYI"Fn2E|C6>xjB}"{G)B-t=0-900,0+0-(p2 2 V2W1~ 0C H0P 1 d0Z S20 4X٢2Y1m2.}&m!K:p+s'B,ec&T?] D =a& [e^n ֵ8|Inw#jX${'+(,2D\,hoDh)B,_J \? muSeuV('z[ +1lj/R٤hp0U؁c3޼OZS#uTK P){U0N.p1q<=TA>=+4iچӀ8y<0 j3d~,|-ґt{OQئFذ=يҞSrH&벟s祐pD葴 F`\u+ꡐϸ}%|:>"hQYL$SS\ᅃKǷ uNe Nv@"00-Z" _KmG쳅F7n?uC||AgGbAvcqpqBaxKj3⭲ jEi4d` /:rn]( -kDtl7r!ק8M%+ : z &R3/*,"= sP!A rý%h.#P}4Y$z; *(;G{,=4*R.*<)*S'{,P,2M+{y5{*%.5n#(7uQ!J:Y |$ ? t{V)PmSdɩz,z:m +VlTk+#<ip F n]h Try)NA/z}quU : 9; ܌ a a} mͺ f^8hH~HQ(jUS 7Y(35DLVQo>lvh8y}q]ztj߳gkOk/h?|W7l%R`0Hi䤛PR=i6|F)Z8둸 9H-ʘχԦ۴R}7ٯHIަ3giWs'* q $Ls:,R%-ނ+NZ\oU $Cje(\ Sz{1 O %遜Qty \ }] X%&|DtMpT= #E x!1Bl x+6 Wp y$P"(S')F+]&' K"%7 F2 j!'%6k)Js(Gz(p )!3,n\"3w9'J>-A=E,8y'6&0_"x+1F"4}#=-6R!+/#˗+$#!$t!]4"Sw$#%~.%I=H/ lhK  Z{ PXHtFhPbo9(,\ۄ@ngﯲ%Yv4' VGUM͉i6oUl=7֟@MIwA)Ȃ MIϊo{!"T&#'Ųڞ7Ui 〛z{Iꐗ !cc!#zeIzͰh4QWL9ߙ&r؝ myqBDC-.|xϗ6ȱ Vҙ ޗ[2PMuY8 FqXg@R쇨ш?:{c!, f ["&a =|Ik[^(#z v/ O |+ l*RR"g7f'^7_!qq*Aj  `W -1 l l} «UdQ`G{z#7s57b&4vzP5 J|? X|Z%;=x{/Ź\';֞qb̿%IN߁ VokK P  ~,/ o2PP7徏;?BMP'@ Z2 [< @ o >v.eyPwFLpF\ xh0&b +:u.7w6#6T ,c'(~'Tt# #i" !BI2&k..MY$N,% |  n&*Yw/  , aJ߸}!Ke~{ɥzGM|J>ad. ,YD]i@pRbj1f$)a u8FmL@jTj !A f* Olq,;m-t2e{vս'n^}!I]M .7 ?^Br΅ܳd;֕~eՐz 2Mw~&βe;v! ҝua p!kg0\'Iqgy|y g{y*=d塰 \\3+S c-!%P -STk XB*Y(͐Iq&OiBa> , U IBp?ޭ ^$ ݑ A2 +f> i kFMw=v1L) PY i_0]UD GB Zt?C A u  A/Fvǖ 3 D \ c`B3 q t\JI#rv Y0 {Lh#IRG",7 |&؍C& qTl1;L?f8>iы }6 nl Mw :~%w=}QKxE ZKR2Q  yUn;8$U.<;G$$GETeo_1iDM9N|%[%nL*|o+晭A;uESo /2zJ])n/|gz["Ŗp'+ Uҭ1{Kn}ie\ R/:f"Y}@?)l![=xAˇDL^os"A w'/&*M:  \C.9 9JP S5n  {kjH\ `P!$T p ΕgOh U:zX >6{ |Vk㱙vk\|GDžC _ hEA dh^@gzOZxg[س0H9B7*H~w  0۴Ct ` V !"HF7 wSMerD>{–sAZ &zg wq{h(ztdc btQ Е2a z=j+5;u|yg69t a"̎ NwS, {%5np_{ hO - ! > w׮z Gބ+*h1zhuVmg^"Ϙ.",i(P=:xIkRG/Bv\?D>鱨7V%I7XїT V@cUܕpɂ;H͒Jԁb [+ޠrv}R0ɇ[+۫װ4WDպАpotە&G#㗥wȄ/ ml9Kc!7J O9B_qoI :wՍLj'[ r#L+ E* . C @ '90 ]VL0w7 Rb Q;H$f7w[T/OoW G7\*yTzrh"ם1% )3#nH[!o[FNl!SHH`7Uj Y[b1~ uO|;} wx`  l QA I .4ZFP ?'* #YstE 7'gf b{}t * ǥ r0 noB堽#bFئy-J ·S7}r GQMR 7wUޑb fjb(1OpkW{x&dB ڕܿw0jͤ rNǜ=Hz # |. 3|50% mA #9  Tds-o!",%>>yl޾^j{+2> Ʌ G ` .dB.Dz!ţ% =&h  ilk4\*mX=%!YT:z *+ Е k#@&/v)" ã XG  ^ 3hP YOx  d¹B -a:pV]YY^k any_ͻ\ \sM|(ء{M`U\??\֬J癓v8 a^Pze5> ?MC_]B"ꌵ!حL>(/h8ε@Gn奟7&_yg;S2GT%@yLo{ⳇ dFnF֟ITF]#%Gx}Y>dΔmL>V _js+" ̼8q#€gv)yk Vjri:s _ ' WOC7 1,}q[#hO5(!S) $G/ g%d/nr8)qVZ&/$ނ M- !g#< XXN >)!G8$L %| C/ z 7 ^a 5 eJ όR- q1\wi]( #" =?~X;Lĩ"<)3O_RMdчfIX f]t#0D8,NjB- sB |W9}wp2=\'.}=32=.4bCqY_IЀC,MwaWz&'@LƝO-(Cnn#Q0C~;jPz5@kYaMtX|Rޤ:Hy?Z^<' # J $8t z _$   A "dp~jN40%^&C "L", J9Mp) Sn!5["^"F&4 D Gg -^;goEY51ָ 4蜢7]jR -VZ(XV2߭eоV[栂ꏢJCo5醽C1EP*m6_r+P窱"F 7-T!kB@쐄vXc x-P=n ?uk ~1-mٵ4"Ͷ>ᤌ]$n\]N USr}̯ݹ _ ot;)ׄ崙;[u@{B:ږ`عprصM ĭV x/W5`Wa P` xo % D~v"]fK(?,%z16e0.,-((!ۻ I~{VHDKj#7s"!#$d&P`E ɱ p K6> 6K 60 $O2 0Ep|day E +0]tc+ ݹ` Y<~j '("m53EDhRvT:kk$!ݢl 0F!2bt7~: (:2. qZ'A}+4*w(ċZfO8G /*fY[-҄Il;wVӶ@eכ]L{q F( ]: -UoGT,nʫ :) .U@8 ;pT[$2do;_AX&B84)kpqn oH ` +qX!{#pBe#R !M3Dž"YK9ؒ"8ꯋ'{m{(v2kH E,'kW7$kVsp zg{ $kF(ig d`t rTA1}r*/;m*IvT/.QCOnLniV|deTW]$je샗6'#L7<ۖ4{߈ƌDk>WOꠘfJr{Eum^zeIF|z 2:+FW? UI`U* N=VR 2|8㩿_ 6%QEzO ܂֟ XIJRFnbB!種ts;4lq( w}L3r N|x50R5X 5Xed fż   M2i#9fD j{qrշ . CV-w$@!{ $$C:$(}'?/V,-s*0&J$$X"Z! {EN7c %!Ha* @ #$k%6%'s%<+ue&&xs! weOE@E_~Sd'vx%(4"PRyKU P$ Hd =gS 6K pMU@>~c71ye)u^$pY5vts0#3.h7M eJ CX< E r κL:C(R? ަ, V # B + _x3ssS i Ё e)IHVXJFA&7K@2 K &q"r1hJGG~!3<hI,7 I7J eM} a 9upW|ZδŅM1 +6%6q^,N c\̔MlՀRd Y( CLҿ%h2)nk2Dr!71"I8"=N$$w?$457,F.d/(UY"ճMk!Se#&n*ڞb4-+lh+7-E` +]l"[" ^aCF _ NV rK eQyXvK2K!kHz!(w'&3'X_ 8Nq_LU͍ U!#xx" #& X*l/'!3x0$H|+6cq'7؛ ͟ pI"vmx 4H rP"XF#, ruH yO h(ί V1E>GGoNLfY$ڵkK ? ZoA2L޳kڀܻRܞS!$A ׷ͨ4׵Һ )5s|Brxʇ@Z젰䀈❡ý ┍`醶Sf1n! @Ow K8S1!`폩SQP\atC[Qu 7 H \@~K c$H*棐mu}/<CB[+ P2qh\^c M̥=!u< v8~Y3\F:7^lYMk{@, 6H " xihP O=Vp}ChO&8*CSz,G&ձ|(?&Ixb>Тw_[JE)zגk y ; Btw۪[wkbD) 7z؍V+o,8]8Tueaoy q=T QnLfȐgt HKK C(B f  }$i4 מ ǜ |] tO#N J! kVI Ne!$s%3"F ]&#|$'C$)*Eo#!ff  L"L s aPYY‰ok| ٭ Rn l]T?Ϯܛ8^+40.퍓Y;I숈(ށ7sBlj}KZ9Aӎ-<~9;S~Y|eG^GAc Ͳ  ^ Z}K*,5jz` ֵq@D4,x9{RyFrir6:R&;V+aՑ%煇Ӑn;؉ CW׺sxqzܟ=ۿ#_3o~uI`>ԏ"ʈ"ւo؂S|#߰q"0">jR{;[M%Kr..C1zQ1^ EGfj" 14 er",{&|@!! %BzZcw(B'U &ޕ:' a/$u7 CR!1SX] 1d4Jw;R+MuCZ  Tf|EKAWCj[ᘴW웋QvsGNEZ55 6}(苧8Wq()  LOaR mzDBm} 5 6 3 R k8 mq 1 l 4O lh H{F@ i ~p&1Qb RT^ Il$ + H{; ned~ꕽB绤3R^C([@: >T  铝<狸@/&{9 /FlJsk/"u%٘'N;"7 ˊ hOC!#3a#C(D$h2f(z&5'X5ӡ&ʊ(w+\B# xaHȏOD$ni]G?4hhd|.`W-&>b=MtI.ns '|/]af/ YT\trU I n6r#p YM K( Dnn*J.a5#x#v bQ_% INIAR C1 ^ UIی .c Fw Ew!%/2%OK5!p P):0 F1~r,yp:栣BPhU6SM*P hUrr 6@.c( 5= mV@DQ AiPR< H|)8J5lj` kz 9 ]6V(X*Dv| k <æSAXLΙB WzꢬQHG%%K3O4p DM= 3cHyo*i˭ $4 Ux vv,K p  H*C)cd e9 %i<{YھR U5 ?s,"_ ^ )}bIJEŠi().]xCu.HLLȆL-pH{;OUZp77GIrDᅤN]]]70o4tTKV Su TgO >T]gQS f|7O[ 7BA  < _* º r Ej U -jQ{&}}7'%pjQm< }'aeX_P5 ?Rg HSCd>d1|vߊu(.5ߌ4RQRr Y!  L Jsz&[k&#fN?-^i͏ r# U(?*/2ٖ4lQO3j 6)6,93 &\fXr A*b ]i f "$ ?}qfi9[| N?y_{[T<Ph),r,~}\AM 1B4zR 2e zo GtZ4I҅ؼs[^- v i%}h'2 "w mUh d31< ze@YYk?g)z` .jy( V+:-Q4=@:bR"{CO$wHM( 1s۸oڏUծ!11 clٺnm N֓^3k܂Fs߽/' q!G9_n_0B+T ZL,EB 3) Hp3"-#=\}:=YlxO1j4~AqJw;]h7 !bw`5R /کnُIpB9 ۦrpyRRH\ QFՉgi7S[KGmi4yV(k7'}O-m ‡ ZsKJN Fx160 ^!Lj&<k[[knI: $o{ B*>cj[l1lHlgIǩ¯猂;,^MyC? bTT-Ljٿ'n<iJ-H>sRs%ͣ V 9uu\z ^#p2 f%6" [![ WM# ih?i c!!$$`k$%iJ$z's$! Tguks-OMaJ 5 /3 $4I y% e o 8A m"K;[YQ1K:KWHnT:8.] iF!]S"'s~r!? Ҝ  6~f@p$>` ӊg6|28 @r O>[ QQb EE=P݉CĿ Y\{> ja4ͭ5 S|?( ;?<37XWmfI#f6R?L7Y'3HF ,AxS6_su0 !7 =!N%;&T'q(o(/*xQ59)-$5rV.`4v.M.+"O&Pu<7 u)S4:>'J-@s0  6?+;-Xd.bff o7yQlw a=DA#\l%s*qhZ~h cf:$Th $"!%mZ7 X6dD|HS S c[!a+1"2"m6yY$7" F/) 5&Hf 3 V^j z;jB    V`I$=u'Ui~,a6=G+Fz4|q :|oXEV7eŵ 2]#նj(khKClc : I J ?F Xմ (ñ uF;:VF3!/## @s_KP    !* 72 6 8 yA_ /RhgP]#xcH0BK B*Kr+jYmF_:뉷Ⲧhtu=q ߱_}'xks%kq^6 P u S47a2;`B' ,vnn:4F(?y i^kl9AjV{]GYN.+gWz.'*vP2uYz.8^6}Ҋ%hoqui6) 곾ض:ּHI{C+"-=(TQpP_#Ѯ1eb Q; f| D85#>mF5PeiTL 4 u 3Y 6D2 g;L F_ M d n K @GG(KED 3v,}T  = 8l W P &}KaF]d }  !0% +oL3T1&/#X\1$6tV0ٓh<2qc6Ek=D;*:q:.^?Q&8"+"Ǘ <  |  +`&, sSHaXBWs뭜KY=s% blVIsS | Xv E^egY!5q,3Mp\ 6  ^;^ KW8.DWXq+JpFxw_yro υ Sxc >0 1HQ|!#Fǹ\/{S<.E, @:֔jl&d}aO-"iN߰9() ]4:WlWy+VݸOa5<䒏WJ_Ux:wTha(Rf(bޘw .M_D$ %at XDF! f+& }D!)($$#%%UI O OPvJe(+ޱpQx.E TUO2 N$g]QႼL݉R ŤٛSÜ~+ڗٚBW ?GE٥)+!҆aa<Pv}=c:`r)D@ f&8 h? [Wp) a ζd 5[Mi ?߂ qA5Qh*&6)\]+Έغ-~=^f@㙪'ؽHh!j2W+,.oDQ!X镫sWDNU/Jnx1O2'zbIvXTY N@C.N;  3!Ҽc$M +!U1o&P<&L,=W 9=( >r!F$Id%PVG/%H&D%%6'!.y4+' (B,p)w'AYdm(&$gAT G2Z2Tc6zܭ^Z9IVu*R,,>L6h%wmy3d;^z5@gM #p?ܛvP 7y8F!k#p |&U#&#%x(U'&:&6!8.d ,Ʊ&\… {; @dLy9hdgMpaC7G,{ Ʌbj & $[e]܄\ՖګߪsbcdV@Qf7؂m&1}t%#N;~l<, i~C7hqy Gj5 pfrK3j][gAH} tkkf'| ]JT4b=n! ` j) H)(Yr[m~zb9[.㽕JC偂PB琐M:S؜".L6dpW6f !ۗ{\橪a2e Jpza XRЍ" ( @+4 re'`W W1 ymAOiL` ChjR:n0bYƤ7:o 6j cގ  ҽvndctvkؔ+٤R4THX 饬%hj:un '7yjT8k8}CW?Ñ[ (U~iu)nXD Um$ K!G |%? D"B %Wc#,]@'-9q ? WK| 5 % m ._ /Hޢ|'i xe +LULf   b w  #^ } T PTHr(}^ x !OC3Zefs  ;J Jg ۴@5W R 7FTHNoV˻i7&M|x :>փUbnFDO`9=.fs32B \C1~ *YIOsƖ# R ۴(e ?& D%T z$ Vc: w P!=\h!L#=-0-j0e4},08#ew 23i  @?  7Ge;c]=؇;H+)zH J甜 s-RGRj](Xb\cu\a/ss!N :kp;,r(wT1L  Si ٓ" |0alLx?<IGG-'}M+ה.|!4&d2i(.n).*y'r'@4u!CS;@f[ P <o/ =s H i3o$ 7t9 G# ^ABE#`/~$e4VICd4"Sml"UJ\N%rTGGgyhG/:ݬ '/VAcU[ Dl u>** Z# VÔ36,O;nAW&o~cXoZV{  %Oljb ӗޠA &Ohrdtc|" nQ8"K*+"{m- };12LSk SRE c$i hU :&>k6y|/4Gg pi&iIuZpgmQ~6wwD$\ MڅMI͐ШTo0A |s\ETcR]\F-)zu?2$1r?-Ai Z0InJB#[)!*nn0L6ê2?'l )XO n2$_8p95EugGSz=:o J.Ar fC{%7YN}Fp.1@_:Ncr?XĆ=s7<9ݕ\gj7< ɋ 9kr0耛2$jCB].h0V`'C1.,1fF  M,lF,=}Q<s1%A"R"u!Ð ]'W䲮Kb@)oNJ/@rzp A ۝ci "f떾}nͥ_j.Jy;ZUy\o{zބ'*5F޸~ʺi OKqE+ #; )qJvx.Sl]]yn!l2.7y8~. 9R/ 3 /. ,iCt\a R; ] u m!P 90} b+'dJ+H {|p@>ЄZ'<䛑sySi?p9o4Jrl.;۠wL#S$`t7iK~pF've) 3+{?seanR-@ }/ON"t|t"WW2(X!q$N"|܆ l,*HC{M)cmKET$jCsx&3f v@#5"i z?>Ӝ>8}y lTΞgn/#W;*+'(=N2!el>)s~'6FMp @9(%Q) # *OY*8N'2Ir6|&.zqC{_ e -"o\kZ4xL786 uoDH WX1~b`O&IMT@PոLaN P Jocw8SxR "㔍P6G_?4օ rlVXhxX"4!y?m25(L&:_ȑS 8 U0 Y4*swhVА $ ^Z !+ )9[mb+RO&ew*gyBZ +oɠT?܆hROs˼pBvGܭ^ D"qRG f l)^L! ړ=i:ӵ/FCm v<=%,*j# o>6f 8r  Au!Y M 2WN (*! TZ ;M M0\dA O bP _: .m7N U_wtXNC m6]Hzn'?d4驃-Fg܂9|1aF{3n' ֜dXПEߟFV3艌,q 빯"w)7-.:M > ʁ\4Vx3 %)v2 fZ#n/)<A&+%6jgt?ds=VrjN$@IJ9abQx>R 쟈pk;;I'Cm)RrWHi~c3s-@lI,ib ߃}C< QdB,K$t5u ~ w w34kGs h;A}e9xI .*@&9gZ;s!WE$_$C \#xd @ M0F[W@Nc\LfJCq>dFiא$-U;X1{ZsPyvR+w޳ bV MnK ~-qT&.C5\ =@ 6gI" 9n e d9Z' -f&h7O3фD}rcRF4I%O: @Lw$[9P a?k'`{ /O#W5f=[,ik aZe w&i9e`>Ԅy@ lIB%/Ҹ (Xwn(~J[i?ߠr!aZI 7++֎bR^\y?{OJ#j=HQ.F : cfH=^ Ί 4x| jB1U4N.TVb ypk $-X8fR5,hgMqeJ^m_~l ;ZEX $ƎiP3-cprKW!آfX _*Tlb纟+}ꪇ\/ {ǵQ!_煱 QqLAZK k#0G#IC8PI}rߤFSf厸~[:r] xx %p_ ױS>tdKDypN^zeA^䪤ي_[HУᩚوSD  :UMc =L>0ۀڎٟ٩APT.*l1N b %n7Dҙ7] doA?}S}k+( ߛWp $ Kvz< ~v NI 1ܩ ͒y dC @ UpA @ H\3,9'er*' 0, v3C ~14 h4 [/# k_  GU -C4X$  0 W0 r9ǒ~C:z5 4MpnkCU  e Gd8~ZwC^.!"c9k]ud*j e`auߋq{"YJ Bh X~ }UQt`5 &'Pb *q+ D 1c#|@"['O V+G$ S&hW4 #gMz3ht\< w Ԏ B _g4XC4W,M߇Q֩0.55{A2niyS29ٙ"XE#YPb^k :*}츱@21%8?] ߞ @hM~ C#K $Pcf"< -!:Dz1 6z#x`3hz~c .nP|&'S6iq)~} {bw8H|hy}h|Yިʴ]b#'>Ljא33硦<#\HDstHB-q߬m" 8QmUѕ'=/cߝ}R* cq{p !^`u<Q9@ޙ*Ba}(iTP v 7&Zո)Ve]ԁqd㇑ p֩ҏc"ף jP/9N#EQM j ctӺS׌QAA܇ r%U~  pWt &10I *m`&"J %/S ;6B73KPs-L '  %G07+d5x.:&N-;er|68f?L"C6'04U$0'N! ZL>!V-X%)c6"q!lO""s7X S ϓ_]MXLy UXa#Ao\9@ ؿ ҡn c m v^ml`3 o^i  iWF]#4#$ a Fa]t'bG 1 D\ i" C0"he&Yg&(?\I Sc/5 $@ cdM\AMrmT Fq/;N&9 ǭʣݦ8 ؗ<aёNzsk9 4r̹SGWKLۗޖ#E`[ݲpNgI=)h kH!/ OMuZKF NúG^,,][Nmc0 s ȁjx`eH(Tj&Qi|dߕ1M-L6:u_O^ob% 1i#-/<3YZk_opgdgUKNUx^CN&8砭RX;h; wJe(l{>9!n@%K%?y3o\HB1 ,Y 2Kxo 86= r@7OYuQ [z=HHF *+ o"- 0ۋ {o$ H %[ [  #Jƪ &v]u/ LU\t(靟62PLc}_!`&j.]* RZ$a۳n59hP 6V. K^ C n> S% MILb?b( v5F ap sM8Y>43-H* c# p 1 Ե f ,B.l<*$sNtkh* * y5@ah / QC5:t$B#lC`C}ܓ<2;Y:sQe o#>=FMTѮ}_Ft%K;0} t)Ck$U&^zL%gd-|(턄bm;i7 00j  G H?hX`_'նҪx^B긵~5RԒ_L:}AZno&|wFN$$%W盆怜v uCnN)$謁0+`sfS6%Yrg U4 |^rlqfAgHAF_^U0e!uC, 8K[q2fSo{1Ը4 ($ Y _< q9\ ܯ$Mtِu#Xݗ:s;R o^́? }׍V[/ 8d_Gkk+!+a. (Rw 8-6K 10L2khn%ԇdn }^ I~ !8 "x>,$v:,*2Y/ ՊQ WYGSB L aW idy cܦ ӊ X4 .!>; >: u"{(L*1 jVwO5+g7 x`xl jge"; _k^DJ:  &? )!;dn4 F˯ v S<i-9lR Gt a3D 7RdFR ,DD]Nb]$ G8_oLqc +BwB&If@DQUG`@GDER\-U!OIɚr\IpWJ 3?h0 ~9^Qa#@:. W l [ rq6q{Ey!ĄRR"IfUC !E0[GH!Ta`w3y|w4&VS fA Ǔ89ܯ>ֶd{߆&c⻸oJ}479<& hҥo^^!Nӽr ]m6(e6gqUTh4 iWAH{ax(S(H62ck [H?6r p% !` Z&_j x} 7$& 5`R$΅<8)797$ a0Y(BO`)QTf*x  [= R3X? Ye|"C?eUئ&V % {$֨ O%AsU V  f  oG"  IA goTkRL9g!gLFA ^9 = 0VewK[`n . + B C v 2 7 uKL?Qz[{2 XhyG&: ]\©~oT bu6hغX߲ux@V $O 27qbIl}5({_1"uzJk ' 8 + N F :A elfG/7jLq|q  T 74`4| * ienn@ֲP%|)U0P;i+zpΌ Z:HkIqsѭX sa8}  EH Ƭ R goYg H nqn5ƻ> Zjw#Km+9I@O!1^2 Anv8[*AYK}2iYJ[Xa0@C^IWC4`xޱu}> jmJC ϫ~nkGqL2ᰯ0;۫ z␋}QJ,SHgѻUj}PH:5T9$:醬`%.ZHon]R6 E5 LU  ha u3aq 8ܔv '<;l E87$U*'r&2#E9h O < c ?ָ zE 6?Ŀ4[IA^I;N>`Rq ,z m H>M.Sn1Z E Nc Z _  $sM}VM)060zr N¶.S[]XF fJZiU p#mfMW Tb0wYVR;U͍ 4vݍ/J!W7Ф: PmG jo C aL c 2XE4 z-4.ud\?-(*ܧXPXFxJڋ\$srެ/^IUv-Y#[ !O|.,TUV @s}-s_&{Eo`F Bh)vIuDhyObs[\[Vj * 8 %? ^s]8WUbc5SH"xW&gz9#a*},fV1+WJ2U|ci،EKq&6jk g:] g'nEew zU 6Y )ߘ8nNJk=xa  <% <ݠw3\$O8Ej@ $hG!iZ {ܦUrVtʲZ+SY\ J JRQnJs'p74 - :\/1Q Lv (T  855| }!\ %a*';c > V  d.@'L VU bn E{ ]P\/0!3.T 0B5j>ܕbXo.#MY_?UlcMOx2sX K[KâZ":7"!>kvsnqJf+: S ~^;pp$w{3adzL9OYQ\(G̖ NBoB'en)hyx!n q$ꗛhkb kKbr ob%" >kOzI;Ag}=8q 7eJc'pH%>4/5K ^Q nt&YDw T`QV}l6Z$6Fs\zBNR$Q? >!R >m $tT-5O#;z z}]+Z2>z>1M'€`ky8^Q `N 0lWo~PrANfW?KURi>K<{&ՙ}3j:t#i! ;N)YµHMbڰՆ,]lsCWPw a   1Y6^.Mؕ5MS  X > mbaO T*g ĉzPsZXFz> @;8;U  P[= }}AO]0e; DML' " N +y_@hk ?J! w Y ]OV;=Wb _U,2an tF C{@  T( AD>bxM$ tbRTQ3JVi;l2.t 4 L[? @iZVFlUz6_ '}5 j $g8 g`D6jDYߕ r?3k]́H>ú0?XKkaPdPy/N3[oze!Gy:5ہ[ > )) lqy2!MPb=AB <!e A \ 78  F5] \w^K?.2XZ4,0S qX nb DkF6 * xnM / ω ӻ X s` FF+- hu &`8 f7 9 . {i/t{,F0)80!:+R;إdX_J"5k)&T1r(bF.t)/ʹ+q, ֙*;m 5L!vdFPKEy`ޖKq9{ᕭD魯EqtA[R: VP"7[KX*t,y<§T~G -| LEs A:o- zg4\?G@8e}{$YcP&; x-7dJ"W-Ki>5Z“ˬ"u9}mrOK],y1l컊;WImZr\i=V2a(g%As)=-2) ["4BJ  € v լ %5o dPWkCKMyz*Dש5nD*1}P+"m*a TL?/e)HsH Mm2[Yd FlT5!Ԍ%<ػ6F*'⢰ymwꑋ N8l?v1#Ix颻i? )Y-pVuPʺ 2^zQ  vQ*% QDE _* Su^j ?: y > [-FNy~1[ , DR0`'pt [xB > Yѳ L W# mP"F qv#2/# ic 6YC1kIc F||?"¤_!D%6Cx)#?%IC ѵ9 Tp. V! not3mg>"b S> 9FptLQ?f : mYkpylczi $!"'HSPL»ޮww*0$A0T=HAY/i_:D"4'%F(<$?EgYOq^\bA Y@ N[Wz\b.r6&)ys>fR] }DT^ˣ3'o[ac|W%Fȫk70o.drQ>N\ Q3i @  ,  QdrQ`'p&2*cuyV!\3? [$<9M~7XwNۃ $ Dq;\c"rnp:CcSfX'3(媘b>;rT :w~5g {:3MAB*"> I2a3 s^@]v_4 j(/Zcc>d/gՇQ"B _b2i׫G2rzs~rPex8F_3N<{&ŘV뭖cH\AGn+gEel y2c8g X (~g y u ec%5Z!Po$!#` W aNs #}!y-('/-d"].b"V0#6)3%/")3M'h!o"sA $*AEOnB !l&S P AG:Q@ }fqmNDH5]c Q T#ێ6ED8 i.joQ# -+m e$M7 !ݒ* }^ }? Tbˀnw.L ǨT>Ir\Az[,N.&:z t5uzg!d&CxVl柖2Cѯ&*ƯR{.f\1>%cMsv5~S%`|B`e;#q0XYP[ h\i[h2 m!)TUl JCzd4˻Fe6Vbtϊ{Vdٞz5v7lMpNiǵn"@:_TQYث>ű@,C?@$wVj$65z)]tjM]%IͻP(1zi0>;i/uao7[z޺ ,< 0 h< ^ά _ڔ = W zW1JK!# F ʉy 5'wYWBgJ >}%;:57b WH4%W{N&# ,;J %'cF?~ _| v Y! ij"  !u 7#% 1J  |`6[f' P2;U   O G ~J p o% 1Z e0 %X2E+J#@[ 5, Y t8* HZpfqz N %f] _mDպ cRFZcAb_.3 wBo b I@"m +X 2 N{ S=  j M_F]$-~$7H5e2oJ,X +Er7x9J6`xțjWJ1RvI  X8u] ӝ>U #rDSU{ vllABԛ*Zh&r7l.Es7kGg$sOGģ:Xi!%géDn"L340k Z<_Jc F CNPEbm2U1)yl w 49 w?&fhW0vF)?ԹZ,A0C1ZKô|,hoC3G@7Jj[~~: t"#Jd?%l NԚBNwc$Չ339[M& wS3*6?zq,4& &i0 1f r; Pd \%;^ 36?SͿ dJ+ o  cM  28q S J,~C-<Ywr  5 0zth  f<x 6(f  z K 7»e9s R iBeCa/iW+uc+hBcʉY~JDkS(`G, $.V;xlvOk:Wgih }d Z u` 8Xt e W d *F \! X$A mU%R BQ=Uo.]AWsb}_g|Ftj= uYV :) X'f 9 |e + z LT % 0 <Ԝ B$P  ie äRԐoP e~1u? SJxWO0_Iسl,%Ԕ9h+}qafi JܟzߒS.[MG.ݒ aҶ;Ĉ?qC ;IM,%J8/S,d+3<*(2bH0ش~ + Z L`uA}$Ϋ7%Q7 Q x78: Z$3*Z8`-<7÷Sol uoD i35/jʭrV a7B >+b p,|kTEk+KOF O 0_XnH 7e$s( D#&g cp W&& b/7ʚr)oXYj ({Uez=jDOu_wsdirs{VIyk,D#YTYKLJ58=Sx뼃/ G&^cd%2 7^ }2G&Q((" MaY E2'< :mo úܽ; MS5}j'  gׂ?Bta!8_wEhIzhu_U>$B~3swd:] Qn>*9FM&646KK[t:7@Tg \ "{=S Eɻ2K"Kh8T1 \QpU @ p ` y * L ) IyC 4? Zv& OFo duC(2M D- `?iײTeEk-\L/b5X.3c5 8& Owr|#bjUiZlgPDt`811oXAWB*.WaBuۿqGw}%4p:|bbZE>/ awH;: ^huD @`T/A E<7_*^?3Q x _`HBQ"]eܖ 07 + XPD^uM!sI_!j9 eY 0 i; Lx !_?$ y>!Љ۪7 %  J H p BHW3 u N %nwmFOx}_ږ>Gsu{x (bP$;$Dѹx2C .zhW~ ?vC!=` ]T YOo,A s:1{W8]$[cd.6t2a e%aϏN+B8sCJJ2{"|_rOszy}foQOw"Dy2EBy.-La&:&WKIrSVg} w> %V J P źo.|NGM@ i_B U ~ק*'7&| !d7NKd V } X9 2Im7:5yw*s [0p}=#W.=+!rBRH%F4? ٌavןu'?ꩉt]O7(> ܷUE3OWaZ \ g2qFi6w i-  &P V jk }J/jD HOP%)VX 88o0Ҵ/[/-6IQ6DV"Zuڪ땟\`G LJ "$d/5>z%.XGgkE(s! ^!QD { U'sja DA~2s|wFt 7S*U#e$*(V*\DP#JEto t* )) c  @ ( }>: P4~*'o'L#[>2y^,z*KAkg-rd"^ aAP{DpJ귮1 V7J _6 X_ & :l8 <t#uo glxI pN w% &*hY #}`CV 8U`r/ ƧoRИ蕱vpOepaL 2dSM%wJxTL¾OjHיh~^AKVn?Ec*0 u 4 / i lr ~ haT x i tDjhb8 C_ `\]?_ӵA6dINJj`# e; o# \C ׳ iKo#b錎uB gxjz)-̄^Ap>9|WCњ`Yߎ{⪊ T"*a& ^Fy~7Ag.NE]|v(*}mrhZ, ;;w@s*,a[_l U ie5kC>FA`VEc-@Ö=(' L Ym*W%  TSzd: _|W T8=?H(!Btl C_R'rOhV#'(e1#'maٺ Ef}# *  *- ^ z u m1  v *x".un>cm(~I Bu&e+ۣ?DnXcpzi撏)v B,;NV xOE PrZ8Gy ?~/a7+B D(3zK }Q nI~M`PRr )7Һw8ѓed7T9jv!9> McM婄5.VQ߹I|!m'D!Kl$7{eanm60sy%R *r0FR->rd ?-  o"; U'NsIJ nPb YLKCٙ"#|@q8}<0`kAxS1A*R2Q&;^/7E?Z顢޳H>8JKzp=)$p*^v}ර\Jzkb0n㐉S9|xdA& ՘ 0 0sL ͏ L" L2tN @ R_Q+ %EE S  _ X7!f gsI8r$D<l WN .2c %JRv`0b X*[eo"n}CЏo+ p_ |R$` n kWl K$\TsJ\ j ۈ < /%QΟ 6l&gz #%N` +U! /5y|vp!^]#"$%S&N*jIJ**z}"OTV`74! ^ =b B mv t Ԭ0 #=szI,ac;bgB:w/S㱾'ǐ,^Ū4I`5@#r]X{eێ Rcu {Y s} *l~ ( <֝  d +K D * f{ & TxQ>N0y F9P\c NqrԠ7ЗH+ݩS!JSDk;2:|n%t0j>AjGk9!핵c@P"!417Y[I9E)^&=YuR ܥ i Zt -XZ < {du3]/gS K ^j ߯  u w p ן :, oX{„#6{I\0/`y>6{=vI 6 i"盜{$1l1٫sQ |Nq M}1oXbCYG!L$  ,W5bkEG !"|'$,A&-A%40X:%3I%/R"(>E#"/v oa"Vɺk-w & ( >*F~1( e! $| "/D&l{ã@ifKg(-D$=Њ4Ⱥ(2331: ֿC9 `GSɧ . ? A? ̃$ m g 1f{ Wn pO '`U4oA\53"J?t=zћ*84&C wc%V-Ӹ#)<;OG۽i钢 ]/oꛋh 8++6ݭ /xF`}OL.&o #,XJ ͦ ~hVH}åYNTs8u3GH D ~f+N}b^D]c2 'S69!S՝aa/o= ~đ #(S5SeC ͏{ \Un'o@#^x16 rVns R; x%F\#a~ֺT/R~ w!!!*$-'&v)} '5-vV(/)1N( 39}(2'z)"uC!=afb a`\=P΂q ?I hr> Y5E(;OsYsk^z%}K,,7g;+0C\R8x/T|¸ K0Mc^ d  I5q Z    d  ޤ K =@I {;^ =ci7 "c,%fzWʵ”[K9IѴ=Hkߌcz޸SAܸ#۾c! '9)U߼ [ȦS<dT^n ɄxWAQx` 훖!4KnX"v^VH  k% %x/}I߽tdI(% }1iQq`1   7WAKN3 {c5) Vfs79%jDY瞮k,CbotwZ؆l|,}LM6OA7XQk [a;۷_B_zxίק9߆rCPU3Y"A43H ת *,q 7dgrb GXY  ( E "M/U; j>V<Իbu& OT & +IQ@%!t&#!!$G$Q%$$HH%H%&o%&f $% i#E !<<!a]T)@/8z} ЖRlW  hK<H!m$+"r&Wc%[  ;Yk 8l  %A [ |8 7}V,E _]p~ 2urD0#8ಂ`n: K[Fq]耙r拦SS~:>*"ϯFs5Uy A" K 0'fiPP"| # #  6 |j 2E 6wI >"Oɍb  0v 75xX 7^X}28:{B28=]WY>Cm7iFԪlX#qSJIqA@brwgލnTu6|=zqSmA6Rz@rzv=URЛcv,h_6eI, a{ Rt o #\_C6  5K8 %8Qo 9Z%jhcD\ #ֈKsCYB%v3c\) jjn V$BL+_gO\ X_ | ZE$K h0ߪvuۉ^HIVvz]wSv~:s; *2\s5|B$v,|΄.L n Z] O.{M.C2+L'EFcUa0ljb8hax"@xwzR JAU}VuݵO^c QK T .zOWbF9P[ =;0e!+G"~kK 2$1#%6&3^%{LC< ^a}A<7Ǜo G.  ̥4o 56clJ fnqҧ\y ݒEqz cmu5y2Ͱ &5=|vSI%RJS?  ѐz00ӼIsb  H$ 'y:~Jw ?dtz k] Cve thY좉עO$]5s|bgb^ix5 @(( \ذ K 9Y  hMo'O ٙ|Y.߈@[D JW   kՌQPsU!j0 ] ? tEdH"AO7R$% ,7Xt糁/7 ?ʐ5#ze*o7%+ ojc  .8 #%/+Y  o ,vek#}S | #!$ {&!%'j"."R TB _BZE($Nu>NG{vC E Gjm>b|&pF޺zh$FۭOvAr+#iJ\꯾ڳ4Y9.xI^yP(m</g{́' e *G u `=Un bG ZVDVm9n  i{j+҃ iw! dMt  V /i)W S :J !eGY`c܊mWkz#x;Y~҉K8MAtɶ22O(lH I,UU@".2 o1j1 @0ɣ>f wY٠ X lǂ/H`H~<*/5 [a ?h ؕ 6B z5 H@2'"iKhy.Lۚm *W ~gmi6m0w 嵵[T!qܰ-?c$ X:YSGK`}M ֦Q<gL  ZX>AMmqadnbK# m d BQ& i @~E!#=sOۤ `jW0&\q?tGLS J[5>c$F.C39-`ՠDz%(`vH1.y-B-C?AQ,7 PbTug C y TJ 8H"b PR40 u2?9Ex(UQv l;ʒ 9R ?; `  Tp;:e_i#CMޏKJm_ߢH=l~0,{5nj.:B$ vʂT@s% o(|5] O)I}7 .\87Ə9qlxw4 ? P \P WC |K 9 !ep5^=fv C3> y0W^)yEC \\^YZH+H墈e%p ?H,r ;C=c0l{VYIYoȍs 1 ou;5B~ B.W<&shyw`NzJ!e$Ա y#x!Q#"k&$E# "Ao em Aq F ݉ p$ xV gze mc7O -8펈JVa&)Zqgꔋk0w{bLKl|DM?A黦Ʈ 96=RɧCe#c ùW TT ٩r0 H . 4sU X5| &? 6 ԣ= \ =W׉N@ ş} R^X у5j d@S,% BpBn#8'|5sP5qzO/w_x&4fz3Ei<ɚޟ7E Y=ߦr c @lD鵖i.lYgGr$ bo&  0VX$dQTH -J ? 6a -9 {y h33 ]-CZ;((wsu|]y=fOF&5D k =h @"J!:Q<ɟ#ꛝy1~i>l !:`+O?+]l|U變RLV-ddRG7~h c`t, Q. !*H lyY&`K" Vnr n . LB9$  `!*hf ,  PH|vOχ7P -&П l KOǟ\}$ iC5&ph7.aYdsvaFFXJmix< ?Smmi_ 'PJjm6L ? g:I #`vA_ 2  X ;8  i o@I  OjE   \eLl_\ 2_`5,C[$ <luzBko6bF흪 GD> |*N,g2t/.-kR XyVMaewBVX=#9%~  9'@g9 1t=? %\ ]c 4 N! XC f\1<   "C. 8U8xWL H7Ppnӂc-_{R7 4fY6,'WB!# \1L czL6DW22 Lu1c;]S ^08ʝ6 ttq*fgY ŝ% ]|D e2R~x~_a aЋR2`vcWk 6 {W<\֐%ni4^UuY`S Di%dpLO]Svֻp(GpaL V@/ M j Ÿ# Z 7}  0O,9pF# :kT[v)v 5 -?  1 0 o.,l7|"+z W a [h' E0aXgy1_!CS "  5frv } _] Hԇ  QtLo=bAյL[c2uM1`Uͣ7_bwy(KЍ 26;;ڻQ,PGi TBT`٫M/<kEEQ{iR̖7gc)j&Fd(K " ڣ W } 1mQ+eϳ0 ζ@eӉnL}2I6: e $ l n LJ gU Q#=Pp8 ?o25B ^_D3&T8{X r)ED.4  y<[iMQ7z#]#Q$g}f&')$[_؝o  ET ZA*qS1D!y#;u#yb$"8'? e4`bC|7He7b=zy ]_ ?>twpU>t8+u*oct|5懶UK&f=h, I= E&^%|!5'~_jr49j#R 0 6 H ; ihK3v^سJز/*{@|9KEQeL'kóx<P\*F~iV' i$y[E_*CfqiɘO L |N)sKu{ga rS9AV#-` us  (Y IN $ f Ygzul4   Y28@<q- vXfVp*W0_ I85Qzp߂1C"H`R(>A4^>^eDk庱Q2?wEy Qz8bxbp\-)EEB(t 7GEm\k /;Y´Z/48 \ NבLB< lz`?v3aZGv?}CIuE 5SoY ,rtnEq+ꅝpm ?DtRl/ĝ9' A~Ͳh @imbƏpoi\\ZuPao&5I}mαM 6B  `CopDDiO=ENF 7 cA € "< " \ 7 " <: 0 |p. 4 `$ P {*ctiA(h]l5+>k>A{CMi*qEC溣6Sx Ml{U卡K8VF _c= z(#A|rb]j8fUZ_5.d2:LE n). S9<Gx V:];y$L!:~Nvq0 N8LR3&E[C%N1ZE/T~x ucztSb&SLn>o즱 z4Ac:VC@p>Bm 8;]T_K$/ b d <8CS]?[Eς&ˮ0 !hR!5!0 X! y =" $Q c%?*$> n# 1" @ $X !n :b&Ro@ko4Fdo/uXDr+J ߘ< J v$ p} å>M  Cn(Fa JT7 X2/\w(L[$Mo1VFp/=U  =Tg kQ_9 q <),mt{%?gl  d  R*J{m~>ȓ\MBM6)u}t l+ gn~%6ZO@cl Z$ꑫQts^;炕ǽ[",a ܎0َ!؏۶WbW94gVElG"긪 vP_6>gPp'RtarzWeZ KU>)r^ h_N \姗Ncf Y䗈 X㈗ L L? N Lj / H>˭弱a+IG5{ HwN{:gm?{d ]Wbr7J',MK° F>t$p) = ch_HJf4߷T?_ 8& 6Ze  K{ 8^zWWX~@iXWh;Q95=Mp!zl|Oqum> Z EB#~ڴ[kO%Q)?J1 qq {*^irF = DSy€>qamw !< "% sRV,15[0 X 3M yRg @ `̸z\ 9dv ` 5_9Abkt;d?I"t.Xvq=7aL3`]C[i޼W2bVLF6   ~0 t [a sW  QG 27 o0V˝W tG E ?Jg Y B T>/Q<x u$\|} CEdg9wq]GK65ocy ʈ " # 1lK=h L #tZy-=;'d*/fg)cYL)B< c~'ﳍxFv4?v\P"y0GZR֤k`m[_ lqG&M031`|MBW rwdn!3<wK? N X\ Sqoz xO RlqaI臿XP+kF ]1CYvLTZ0flP,<~ ):Zе3PsHMo7+lW|-UӐPpL7-jN|hA6X \cup@&;D D&&I q :aJ Z yoka B 6_  <zYTJ 1xb:*ӱ0?O"F8&ܿRqaur NԶav\L$6me<$ ipͻS34H7#aH;Nm'T AY-8UQ!C8O\@3 o~LZ q3Fȋ Wg \ uנ#D5JW# !v<>0(6ragmH#T |lL4% R?e|G3o FN;"Oe=q\Kr#zhq14|&vr3[wQI&V)a,6Q1$N*Ԣ O&[<o6]Br(c;]n ϥ QjS 6!( !#{Z{ rm,7 ] 7: V { Gf W)  cnÏHu7՛HMP)# `ht!-`= >!C ;h"^閭GЗc4gH%@]-~1 bu rY(t1 rIf<$d'p3XfI; l ?4 F\ | >S  j%@ K&- " )} A ;  Kg T rahc>z`N32-JIR֝60n/u5OUP'tuQE_g_nmCG+?j.aMK=3:jK5 v`VY}|]3N3z  }4Hy +, ctY2 > aN,' o h;0L r'<no2  2n%#7.x&,7`C9 @u PF  P` bٰx:7OJ[[}sO[n53f)v Pg5A# X^byZs+P jw+2 Iu$8E`j3rn NLB ;{PQ) }]EyNj ?HFW;^`5RPsQǝLȫ 3 ,Y FbYOHn/ \_(ff !sPJ}U0|2Uml줸Rfh4dRRUsXztJz6%(1:LPD f{VVNLI5v0*J 5> p{A K@@saE|[|*\d9rxiCLWN!۠y.rooJ9pymmI/ݒiWlNq Z$$lv_&-{ b`8? Gmqg)Cp!@& .F3]C;A Ne  'JyT zp{Sdg.g a ` Z{"u i g @ -f j< US**^h+  5XHd93 ) n/ ]1!!: s REt*mvOx1]&o3 A FJt$41 Q7qƺ -X  St T.z ZZ 9: u k5jc ۖ `[w xY  2w?R:H5QB4"2: |H ,h ѱ P>> R[w wY $ t͵ u 61 # p,7ka~uW^r_a8!{D)?ll O^ER*iI6(KBf;Urq]e:e=6`iBQ4hؓ!&bOEb={}V O=9\&Ҳ !IV/ٸWzz-%|E5kO"@m&.͕QG\ C||"\"3>eU2G]B5OMkL:$R$p-1vj{fhjޫd l n ? Yj= p k~ trëH x_ ],K  _5r"]g"<QVT<L~A. YU(|&D\6 rd"Ur. b6OTqBܘpxx cyd L~# |/Y W $}{\~ /k:ly ; sNEa[+p'Zw F\ T 7Z zE DA O;|RvZo i KV tUP *M (  oJ F7e o! hA v] . n/ b! Cvs  ƛĶ /֙~;"L6!zdxEctW,_?MA`1Tʇ&<čej~IQ q*bl締鼍֨e0 ZEichtMhmg~.AFR"xQ4;-\ hIf~/u MV1-|:(9TBByc^ 2H, e5tN^-6:QяlA F 7)Z\<H)/a ȟ~w{XL驠T_uw`z?65wj#dd=Dk #2QJJ_jr'30YT f[SyLa[eKťݘiz pg @ ;m=jV^KhQC|fd7NjIgNcr{s;{ )ӌ'=;XAz`|Y |w;S~@k{jėu RZ8mac{ YrZHd B -J wKD-ll+hX ]Wu 9G# WZ"BEh~"(!# .gLRWE""!Wl2DY)w}pSRIv<VL٩Ox,S/h{Fd' -cS 7`K:g aZ lkI@ +H|  yus ^r p Y l : 6   e T-v? Ą~v p <Tp[P0H$7ƶ\ ; H~Te\ -y Sq lhWiI$QOLp 9Ry}S?5LxYMk3%f:aE sɈH,P#2h==+'eF ?:4vZ{YoŲKx*w(nZͰr J֫"k$N |& _{FKi`95lTD _}Rjm!'-F@ٝǓY'C ;x `,HM~{d{3HR;Bs  htG 6$e/A6D;QBekdSooZlB-.]u n:2SbB4-:4/pc5V*G++tW r'}5}Q8w{>:4FUv.k=}iipWJ>1p7~OfbBkb6 z cWm.:^(C# |@{]FTVr  z4 ieoVX@Nb#R R #ogE6]exj4 _ /G>VXzOȲEd4hI-wA ` fgC ^H 7 \v 7%3  XK,zOEHf`r1*p ^SaXݟ̯ 3 60tIs UEV WVZc ( G^`$ 5ˡ*^RA{rCP xs_ C} h cC g b "  y~ 5  D k} +@  3u dj ){TA-vO2|;n0zKEjo[07lP*:.>BQd^<58anyuԷ&QlAh<4'2'S50Lld\wm9kR `swD7 (~GNfP)%RcITPSzQ)B \z캹户 ^Dty>Peih퐕R3[jg-dr MT Qf7s2r - ݟC  Nl4P$1: t v " !El  ' ]{ xz|FQzCh[0WqYNxvY' !~aHPe{>pFAav^Sls#!^Up !^U|>7_lccv@ [u X  Ƣ !'{3a s%k2f0 4 2' < X;8"A W]k  g ,  u jsi\K  &M eu@i@[W9n0/sx >#hҐ;Ҡx|# WM dF 3*B `rPrߒ4'Z<!3  qX iR K .Nٜ 9j /WLhntW,k[l . ` .`{ 2 ?a-=/Cd\ʼO:jC`Q5gJ89}2@^8lcgl&)s@`)ZZh_Fg#DPZ5F gg 4&M(? Yk}T Rb " O&zЈ_Nf;  yO QPC#!)KB}m*ۯ 3}: gJ.V8AFOz&+\ إRF+yeGy1 C%"~)q2+ ohzE^KW%-Nܷ.v^s\&#CYU8 ˫$Nv 2iٴnH|}EY8( ֪H1THxvcD?vۨMqHm0'QoA 0IF_w;C X E%2< 2G%oir> eB  RKm  U+D ^V  M V X , o  'u #sC ]0 O4 e 4'L Sen LK Ω'  9 {R! x d[ zyY^ۚ["+u[Q aDEa8o g%OV% V>}h;;MhI \If'8e bs% B  _z-G|snn݉U`,"#IAT|,&)CӶ vR~SGjjsG~Ig j';SV'Zd|{ڸhaaBP@[kѤ3kX|?d#R3Ʃ-{s3TNfԘArKY9O#jVGz kGŃ."j= - Z x C  Ŀ @ǯd%\3=%ZNT2 bs /zMjN/ PS ٵ7_d @<|v;@dL VM_Vx8xq]dG@f0_z^LRE^\~KO,VJ57Dt#7}sGjp:h%PX=<h hz*'`? G+XVwC|[OY` ~?qiXV- 7byQi*<tR4n[ 3qj4a4A^@JI삜=&9<|@F@85wNzѳ~Z@ Zd,KO`Ns_hz420a M[ 5 x5&$ X  ] W: e; js Z; F`[O#+Au ,=Siݘ?  l .y 4 \< % -' Mށ oP D [ 3  \b˚v%s{3)oT;4īv| u=9j BoxZz|4`?S~rqn~7 Z dy 4] 9_*[ӫʽ   9\ S Z u0G X@8Y QԀ )7 , j wHH6kYKE ]Q$|̳[sV' -Q6 - J s ՈF ]Z }2   t%q XDx1N*AGoeksOj>x'{6p2;^=&M2>8yX|/4 KO4$F?%`8JuO _|6lX J86u  ~W BbL0,Z!SYYl/ M`! L]BC]yYn0 S 8'yo&vxN%E6$/FZ n  9 O >: M |7AIc =t c J2gDQz,XCi Z6  Z>7"L =! = u ( Ba8 N1SdB BZ.-)Za]1.h"[yRЙ5[^:{GVM"u'CwzQhœg>>_n*1FSKjRU` 6Jez_n<+r%oe(;~XNM3#` ,:Ҭζh7;' 'XrG˖hi\[a,&M `yE!=UU>d!qfa|'mӴ4Cywww DŪ0+3{=A]+dlK!; LH pn4 M4'FHV *I  7a8 r#0SOl-Ƣ2Vg (5 g]9 sn  ҵ}t 3 MLme#ARbU q_$}B}wpzbI΢2][M{ykrKS) ]}0WʏZ'Eh˰I2~6o7v{I4xW;us D[ g{Gzf # ~  _i <6lt TW >Zs ċnmHgc{ oq j 1+ _+W|SGfoDb=nWh!?f`Hs)9 M*"jSjM\s`|`xJi4$JoR176~d } ƕP5 <6+d t! ѠzcTA C wN / & (7 EQ_IPf<SI_ g u:OOB5scs4$ ](4#Z=?8kF yAJaI YpEA)0[ qy]^}bK6j%Yu =ZW@Z΄ `!SNN(B1%wHT|acu?攫59`滄iR_|]'*`5k/MdCUm3Q"g^p0gS4X5lv4F@am"MHB8 4SdR w#SQ fiү4F-Qy t, Ρ~] ~QEsO ( ! L Q < j 8~ S ߨ   VUZ1!,ͭJCAJNsT]F i  DKLM'U'm^]m   +7 "+@\ 1Ej:e&g4M$j~DڀuF{jb[k B$JI&"C}$ l?3xj>}_ogdqͮ \rG b(l@GHsBNZpK2,smm/7ۃXS >`TkR{cRv'O(]4dhb"$֫%<:9 SA0 Vx I< HB +4 @N ?}?O3K2y8c)~IcV#҆}y4% ]^qrT@'Ii`^H3~y PMQ3Ѵ7]gC COvDq8YAC[F! #3^5]?ҙ ,p[_ ?8 I] b& h^"ayURZi3{?k1 )2"rL ;dZ:q'U=i77A"n<7 y;\JaCXArq^>5$O}i9N*U:i1$BtCljKY7!3M}^a{ѯ .#$ 1 r=U9d. R$- *lWe  t / w 1 F{ "d %mv'=z;B3qaUkBIv,6z*6B >CHS8ˑAv2Y/g9 jswmKox^*ThunWA1eɿ/ƨ!QMhYD Yw Fm! eF}G sI h# gAs m  g JSw) ,IMKR{k?*w=*61Ŵ/RT,^p30dfP=謫<)Sf꿶yԫ,ׅE0)iHr/Q2zyD@}70bQtӹmQK CC m MAG  4 9QN @ 3' t O [O  5  Z= - 0U  0E\RarhcqDz= EI `L`=5Y'MhٚG &8pD>"IJ!IoVlg8.$TfMk  H [Y vr$~ '[ R8n|q~FeMn!*"K/$tG&8"B aC6 b9 2  "yM v{4 eT Ґ] 2jf ]]-> w5&: zB ~8 bX1keQkO7l/7%^F;ZC7 d$ n*i2m!$' 5I>[S˕h;NP`#Y=4cjL¤fKBBD Vg7 3 jz J-QDk: <5 >Z;wb} ]KkP )J8H;Ux4S G*8jp b%m׿_eZ^YF #gԒ3P(L|ͬ~`b @SW}"t*vYIBTښL0QDK^VFW7;  m_mK N 7~2 3tNOb ɤ !,V s- \ +33| Pa JKs,tU2""ףݚa% [NЬ\פ> ?:&XATSvʇH`+kO`&D_ b_ggh`z8AqyW]Y|d ,0  D-:o w(: .K'LC; (  *:HN KEv L l,%yjq*Ƣt53;f%&2U" Ύ^]Zx2PUos hBf 7R4EωrHm f 8C  &k~Ifs:[7~cC_]F 7nnZoo9@\U!7e668[ ۘ t n h /LJ] 5LwHA%5Ռ_\N\r!E]U/qj>6RU5l%96O3SkNW}Vvg}DB3[Ntڿ5 wuH\63 @CK x   Xgd9 Du\0B: E{00h-4 Ӆ5 pfڂI %N` O* pYX=%wSm--9^+b-Kvv3 k휣HbT{ՠcXz\'ZY>5=̾<;zy WmJ*ȝBTI 6 {_^, X IU è  iX ;B( TiMٕwe zʰ s  3 &c eh XH„ QJ?M8g):sИ]k$}䇘ӮwY%ysI2MYXeKcǾs{%ҨWK銈p*$a)sRCqƤPQL%Tcj(}g}۫tcN J?2 O f (I- >NE K= Z |  +{ K3+G'>Q}Rk%bBqmGXEoh l7SI0loqԋe.SMB+sYN